Merge branch 'master' into smartblock-overflow
This commit is contained in:
commit
c7b55f60e4
|
@ -60,12 +60,6 @@ Vagrant.configure("2") do |config|
|
||||||
os.vm.box = "bento/debian-9.2"
|
os.vm.box = "bento/debian-9.2"
|
||||||
provision_libretime(os, "debian.sh", installer_args)
|
provision_libretime(os, "debian.sh", installer_args)
|
||||||
end
|
end
|
||||||
config.vm.define "debian-wheezy" do |os|
|
|
||||||
STDERR.puts 'WARNING: The "debian-wheezy" option is deprecated. Please migrate to "debian-stretch".'
|
|
||||||
STDERR.puts
|
|
||||||
os.vm.box = "bento/debian-7.11"
|
|
||||||
provision_libretime(os, "debian.sh", installer_args)
|
|
||||||
end
|
|
||||||
config.vm.define "centos" do |os|
|
config.vm.define "centos" do |os|
|
||||||
os.vm.box = 'centos/7'
|
os.vm.box = 'centos/7'
|
||||||
provision_libretime(os, "centos.sh", installer_args + "--selinux")
|
provision_libretime(os, "centos.sh", installer_args + "--selinux")
|
||||||
|
|
|
@ -15,7 +15,7 @@ class Application_Form_AddShowAutoPlaylist extends Zend_Form_SubForm
|
||||||
|
|
||||||
// Add autoplaylist checkbox element
|
// Add autoplaylist checkbox element
|
||||||
$this->addElement('checkbox', 'add_show_has_autoplaylist', array(
|
$this->addElement('checkbox', 'add_show_has_autoplaylist', array(
|
||||||
'label' => _('Auto Schedule Playlist ?'),
|
'label' => _('Add Autoloading Playlist ?'),
|
||||||
'required' => false,
|
'required' => false,
|
||||||
'class' => 'input_text',
|
'class' => 'input_text',
|
||||||
'decorators' => array('ViewHelper')
|
'decorators' => array('ViewHelper')
|
||||||
|
@ -29,7 +29,7 @@ class Application_Form_AddShowAutoPlaylist extends Zend_Form_SubForm
|
||||||
$this->addElement($autoPlaylistSelect);
|
$this->addElement($autoPlaylistSelect);
|
||||||
// Add autoplaylist checkbox element
|
// Add autoplaylist checkbox element
|
||||||
$this->addElement('checkbox', 'add_show_autoplaylist_repeat', array(
|
$this->addElement('checkbox', 'add_show_autoplaylist_repeat', array(
|
||||||
'label' => _('Repeat AutoPlaylist Until Show is Full ?'),
|
'label' => _('Repeat Playlist Until Show is Full ?'),
|
||||||
'required' => false,
|
'required' => false,
|
||||||
'class' => 'input_text',
|
'class' => 'input_text',
|
||||||
'decorators' => array('ViewHelper')
|
'decorators' => array('ViewHelper')
|
||||||
|
|
|
@ -485,15 +485,6 @@ class Application_Form_SmartBlockCriteria extends Zend_Form_SubForm
|
||||||
$limitValue->setValue(1);
|
$limitValue->setValue(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
//getting block content candidate count that meets criteria
|
|
||||||
$bl = new Application_Model_Block($p_blockId);
|
|
||||||
if ($p_isValid) {
|
|
||||||
$files = $bl->getListofFilesMeetCriteria();
|
|
||||||
$showPoolCount = true;
|
|
||||||
} else {
|
|
||||||
$files = null;
|
|
||||||
$showPoolCount = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
$generate = new Zend_Form_Element_Button('generate_button');
|
$generate = new Zend_Form_Element_Button('generate_button');
|
||||||
$generate->setAttrib('class', 'sp-button btn');
|
$generate->setAttrib('class', 'sp-button btn');
|
||||||
|
|
|
@ -1475,7 +1475,7 @@ SQL;
|
||||||
foreach ($out as $crit) {
|
foreach ($out as $crit) {
|
||||||
$criteria = $crit->getDbCriteria();
|
$criteria = $crit->getDbCriteria();
|
||||||
$modifier = $crit->getDbModifier();
|
$modifier = $crit->getDbModifier();
|
||||||
$value = htmlspecialchars($crit->getDbValue());
|
$value = $crit->getDbValue();
|
||||||
$extra = $crit->getDbExtra();
|
$extra = $crit->getDbExtra();
|
||||||
|
|
||||||
if ($criteria == "limit") {
|
if ($criteria == "limit") {
|
||||||
|
|
|
@ -1,251 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Skeleton subclass for representing a row from the 'imported_podcast' table.
|
|
||||||
*
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* You should add additional methods to this class to meet the
|
|
||||||
* application requirements. This class will only be generated as
|
|
||||||
* long as it does not already exist in the output directory.
|
|
||||||
*
|
|
||||||
* @package propel.generator.airtime
|
|
||||||
*/
|
|
||||||
class ImportedPodcast extends BaseImportedPodcast
|
|
||||||
{
|
|
||||||
// These fields should never be modified with POST/PUT data
|
|
||||||
private static $privateFields = array(
|
|
||||||
"id",
|
|
||||||
"url",
|
|
||||||
"type",
|
|
||||||
"owner"
|
|
||||||
);
|
|
||||||
|
|
||||||
/** Creates a Podcast object from the given podcast URL.
|
|
||||||
* This is used by our Podcast REST API
|
|
||||||
*
|
|
||||||
* @param $data An array containing the URL for a Podcast object.
|
|
||||||
*
|
|
||||||
* @return array - Podcast Array with a full list of episodes
|
|
||||||
* @throws Exception
|
|
||||||
* @throws InvalidPodcastException
|
|
||||||
* @throws PodcastLimitReachedException
|
|
||||||
*/
|
|
||||||
public static function create($data)
|
|
||||||
{
|
|
||||||
if (Application_Service_PodcastService::podcastLimitReached()) {
|
|
||||||
throw new PodcastLimitReachedException();
|
|
||||||
}
|
|
||||||
|
|
||||||
$rss = Application_Service_PodcastService::getPodcastFeed($data["url"]);
|
|
||||||
if (!$rss) {
|
|
||||||
throw new InvalidPodcastException();
|
|
||||||
}
|
|
||||||
|
|
||||||
// Ensure we are only creating Podcast with the given URL, and excluding
|
|
||||||
// any extra data fields that may have been POSTED
|
|
||||||
$podcastArray = array();
|
|
||||||
$podcastArray["url"] = $data["url"];
|
|
||||||
|
|
||||||
$podcastArray["title"] = $rss->get_title();
|
|
||||||
$podcastArray["description"] = $rss->get_description();
|
|
||||||
$podcastArray["link"] = $rss->get_link();
|
|
||||||
$podcastArray["language"] = $rss->get_language();
|
|
||||||
$podcastArray["copyright"] = $rss->get_copyright();
|
|
||||||
$podcastArray["creator"] = $rss->get_author()->get_name();
|
|
||||||
$podcastArray["category"] = $rss->get_categories();
|
|
||||||
|
|
||||||
$itunesChannel = "http://www.itunes.com/dtds/podcast-1.0.dtd";
|
|
||||||
|
|
||||||
$itunesSubtitle = $rss->get_channel_tags($itunesChannel, 'subtitle');
|
|
||||||
$podcastArray["itunes_subtitle"] = isset($itunesSubtitle[0]["data"]) ? $itunesSubtitle[0]["data"] : "";
|
|
||||||
|
|
||||||
$itunesCategory = $rss->get_channel_tags($itunesChannel, 'category');
|
|
||||||
$categoryArray = array();
|
|
||||||
foreach ($itunesCategory as $c => $data) {
|
|
||||||
foreach ($data["attribs"] as $attrib) {
|
|
||||||
array_push($categoryArray, $attrib["text"]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
$podcastArray["itunes_category"] = implode(",", $categoryArray);
|
|
||||||
|
|
||||||
$itunesAuthor = $rss->get_channel_tags($itunesChannel, 'author');
|
|
||||||
$podcastArray["itunes_author"] = isset($itunesAuthor[0]["data"]) ? $itunesAuthor[0]["data"] : "";
|
|
||||||
|
|
||||||
$itunesSummary = $rss->get_channel_tags($itunesChannel, 'summary');
|
|
||||||
$podcastArray["itunes_summary"] = isset($itunesSummary[0]["data"]) ? $itunesSummary[0]["data"] : "";
|
|
||||||
|
|
||||||
$itunesKeywords = $rss->get_channel_tags($itunesChannel, 'keywords');
|
|
||||||
$podcastArray["itunes_keywords"] = isset($itunesKeywords[0]["data"]) ? $itunesKeywords[0]["data"] : "";
|
|
||||||
|
|
||||||
$itunesExplicit = $rss->get_channel_tags($itunesChannel, 'explicit');
|
|
||||||
$podcastArray["itunes_explicit"] = isset($itunesExplicit[0]["data"]) ? $itunesExplicit[0]["data"] : "";
|
|
||||||
|
|
||||||
self::validatePodcastMetadata($podcastArray);
|
|
||||||
|
|
||||||
try {
|
|
||||||
$podcast = new ImportedPodcast();
|
|
||||||
$podcast->fromArray($podcastArray, BasePeer::TYPE_FIELDNAME);
|
|
||||||
$podcast->setDbOwner(self::getOwnerId());
|
|
||||||
$podcast->setDbType(IMPORTED_PODCAST);
|
|
||||||
$podcast->save();
|
|
||||||
|
|
||||||
return self::_generatePodcastArray($podcast, $rss);
|
|
||||||
} catch(Exception $e) {
|
|
||||||
$podcast->delete();
|
|
||||||
throw $e;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fetches a Podcast's rss feed and returns all its episodes with
|
|
||||||
* the Podcast object
|
|
||||||
*
|
|
||||||
* @param $podcastId
|
|
||||||
*
|
|
||||||
* @throws PodcastNotFoundException
|
|
||||||
* @throws InvalidPodcastException
|
|
||||||
* @return array - Podcast Array with a full list of episodes
|
|
||||||
*/
|
|
||||||
public static function getPodcastById($podcastId)
|
|
||||||
{
|
|
||||||
$podcast = PodcastQuery::create()->findPk($podcastId);
|
|
||||||
if (!$podcast) {
|
|
||||||
throw new PodcastNotFoundException();
|
|
||||||
}
|
|
||||||
|
|
||||||
$rss = Application_Service_PodcastService::getPodcastFeed($podcast->getDbUrl());
|
|
||||||
if (!$rss) {
|
|
||||||
throw new InvalidPodcastException();
|
|
||||||
}
|
|
||||||
|
|
||||||
return self::_generatePodcastArray($podcast, $rss);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Given a podcast object and a SimplePie feed object,
|
|
||||||
* generate a data array to pass back to the front-end
|
|
||||||
*
|
|
||||||
* @param Podcast $podcast Podcast model object
|
|
||||||
* @param SimplePie $rss SimplePie feed object
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
private static function _generatePodcastArray($podcast, $rss) {
|
|
||||||
$podcastArray = $podcast->toArray(BasePeer::TYPE_FIELDNAME);
|
|
||||||
|
|
||||||
$podcastArray["episodes"] = array();
|
|
||||||
foreach ($rss->get_items() as $item) {
|
|
||||||
/** @var SimplePie_Item $item */
|
|
||||||
array_push($podcastArray["episodes"], array(
|
|
||||||
"guid" => $item->get_id(),
|
|
||||||
"title" => $item->get_title(),
|
|
||||||
"author" => $item->get_author()->get_name(),
|
|
||||||
"description" => $item->get_description(),
|
|
||||||
"pub_date" => $item->get_date("Y-m-d H:i:s"),
|
|
||||||
"link" => $item->get_link(),
|
|
||||||
"enclosure" => $item->get_enclosure()
|
|
||||||
));
|
|
||||||
}
|
|
||||||
|
|
||||||
return $podcastArray;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Updates a Podcast object with the given metadata
|
|
||||||
*
|
|
||||||
* @param $podcastId
|
|
||||||
* @param $data
|
|
||||||
* @return array
|
|
||||||
* @throws Exception
|
|
||||||
* @throws PodcastNotFoundException
|
|
||||||
*/
|
|
||||||
public static function updateFromArray($podcastId, $data)
|
|
||||||
{
|
|
||||||
$podcast = PodcastQuery::create()->findPk($podcastId);
|
|
||||||
if (!$podcast) {
|
|
||||||
throw new PodcastNotFoundException();
|
|
||||||
}
|
|
||||||
|
|
||||||
self::removePrivateFields($data);
|
|
||||||
self::validatePodcastMetadata($data);
|
|
||||||
|
|
||||||
$podcast->fromArray($data, BasePeer::TYPE_FIELDNAME);
|
|
||||||
$podcast->save();
|
|
||||||
|
|
||||||
return $podcast->toArray(BasePeer::TYPE_FIELDNAME);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Deletes a Podcast and its podcast episodes
|
|
||||||
*
|
|
||||||
* @param $podcastId
|
|
||||||
* @throws Exception
|
|
||||||
* @throws PodcastNotFoundException
|
|
||||||
*/
|
|
||||||
public static function deleteById($podcastId)
|
|
||||||
{
|
|
||||||
$podcast = PodcastQuery::create()->findPk($podcastId);
|
|
||||||
if ($podcast) {
|
|
||||||
$podcast->delete();
|
|
||||||
} else {
|
|
||||||
throw new PodcastNotFoundException();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Trims the podcast metadata to fit the table's column max size
|
|
||||||
*
|
|
||||||
* @param $podcastArray
|
|
||||||
*/
|
|
||||||
private static function validatePodcastMetadata(&$podcastArray)
|
|
||||||
{
|
|
||||||
$podcastTable = PodcastPeer::getTableMap();
|
|
||||||
|
|
||||||
foreach ($podcastArray as $key => &$value) {
|
|
||||||
try {
|
|
||||||
// Make sure column exists in table
|
|
||||||
$columnMaxSize = $podcastTable->getColumn($key)->getSize();
|
|
||||||
} catch (PropelException $e) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (strlen($value) > $columnMaxSize) {
|
|
||||||
$value = substr($value, 0, $podcastTable->getColumn($key)->getSize());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private static function removePrivateFields(&$data)
|
|
||||||
{
|
|
||||||
foreach (self::$privateFields as $key) {
|
|
||||||
unset($data[$key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
//TODO move this somewhere where it makes sense
|
|
||||||
private static function getOwnerId()
|
|
||||||
{
|
|
||||||
try {
|
|
||||||
if (Zend_Auth::getInstance()->hasIdentity()) {
|
|
||||||
$service_user = new Application_Service_UserService();
|
|
||||||
return $service_user->getCurrentUser()->getDbId();
|
|
||||||
} else {
|
|
||||||
$defaultOwner = CcSubjsQuery::create()
|
|
||||||
->filterByDbType('A')
|
|
||||||
->orderByDbId()
|
|
||||||
->findOne();
|
|
||||||
if (!$defaultOwner) {
|
|
||||||
// what to do if there is no admin user?
|
|
||||||
// should we handle this case?
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
return $defaultOwner->getDbId();
|
|
||||||
}
|
|
||||||
} catch(Exception $e) {
|
|
||||||
Logging::info($e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -7,9 +7,11 @@
|
||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<?php echo $this->element->getElement('add_show_has_autoplaylist') ?>
|
<?php echo $this->element->getElement('add_show_has_autoplaylist') ?>
|
||||||
|
<span class="show_autoplaylist_help_icon" aria-describedby="ui-tooltip-2"></span>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<div id="add_show_playlist_dropdown">
|
<div id="add_show_playlist_dropdown">
|
||||||
|
<p><?php echo _("Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"); ?></p>
|
||||||
<dt id="add_show_autoplaylist_id">
|
<dt id="add_show_autoplaylist_id">
|
||||||
<label for="add_show_autoplaylist_id" class="required">
|
<label for="add_show_autoplaylist_id" class="required">
|
||||||
<?php echo $this->element->getElement('add_show_autoplaylist_id')->getLabel()?>
|
<?php echo $this->element->getElement('add_show_autoplaylist_id')->getLabel()?>
|
||||||
|
|
|
@ -2,6 +2,23 @@
|
||||||
$items = $this->contents;
|
$items = $this->contents;
|
||||||
$isSmartBlock = ($this->obj instanceof Application_Model_Block);
|
$isSmartBlock = ($this->obj instanceof Application_Model_Block);
|
||||||
$isPlaylist = ($this->obj instanceof Application_Model_Playlist);
|
$isPlaylist = ($this->obj instanceof Application_Model_Playlist);
|
||||||
|
if ($this->showPoolCount) { ?>
|
||||||
|
<div class='sp_text_font sp_text_font_bold'>
|
||||||
|
<span id='sp_pool_count' class='sp_text_font sp_text_font_bold'>
|
||||||
|
<?php
|
||||||
|
echo $this->poolCount;
|
||||||
|
echo ngettext(" track matches your search criteria.", " tracks match your search criteria.", $this->poolCount);
|
||||||
|
?>
|
||||||
|
</span>
|
||||||
|
<?php if ($this->poolCount > 0) { ?>
|
||||||
|
<span class='checked-icon sp-checked-icon' id='sp_pool_count_icon'></span>
|
||||||
|
<?php }
|
||||||
|
else { ?>
|
||||||
|
<span class='sp-warning-icon' id='sp_pool_count_icon'></span>
|
||||||
|
<?php } ?>
|
||||||
|
</div>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
if (count($items) && ($isSmartBlock || $isPlaylist)) : ?>
|
if (count($items) && ($isSmartBlock || $isPlaylist)) : ?>
|
||||||
<?php $i = 0; ?>
|
<?php $i = 0; ?>
|
||||||
<?php if ($isSmartBlock && !($this->obj->isStatic())) {
|
<?php if ($isSmartBlock && !($this->obj->isStatic())) {
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
<?php echo $this->repeats; ?>
|
<?php echo $this->repeats; ?>
|
||||||
</div>
|
</div>
|
||||||
<h3 class="collapsible-header"><span class="arrow-icon"></span><?php echo _("Automatic Playlist") ?></h3>
|
<h3 class="collapsible-header"><span class="arrow-icon"></span><?php echo _("Autoloading Playlist") ?></h3>
|
||||||
<div id="schedule-show-auto" class="collapsible-content">
|
<div id="schedule-show-auto" class="collapsible-content">
|
||||||
<?php echo $this->autoplaylist; ?>
|
<?php echo $this->autoplaylist; ?>
|
||||||
</div>
|
</div>
|
||||||
|
@ -33,12 +33,6 @@
|
||||||
<div id="live-stream-override" class="collapsible-content">
|
<div id="live-stream-override" class="collapsible-content">
|
||||||
<?php echo $this->live; ?>
|
<?php echo $this->live; ?>
|
||||||
</div>
|
</div>
|
||||||
<h3 class="collapsible-header"><span class="arrow-icon"></span><?php echo _("Record & Rebroadcast")?></h3>
|
|
||||||
<div id="schedule-record-rebroadcast" class="collapsible-content">
|
|
||||||
<?php echo $this->rr; ?>
|
|
||||||
<?php echo $this->absoluteRebroadcast; ?>
|
|
||||||
<?php echo $this->rebroadcast; ?>
|
|
||||||
</div>
|
|
||||||
<h3 class="collapsible-header"><span class="arrow-icon"></span><?php echo _("Who") ?></h3>
|
<h3 class="collapsible-header"><span class="arrow-icon"></span><?php echo _("Who") ?></h3>
|
||||||
<div id="schedule-show-who" class="collapsible-content">
|
<div id="schedule-show-who" class="collapsible-content">
|
||||||
<?php echo $this->who; ?>
|
<?php echo $this->who; ?>
|
||||||
|
|
|
@ -2534,13 +2534,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4934,7 +4942,7 @@ msgid "What"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2534,13 +2534,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4934,7 +4942,7 @@ msgid "What"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2538,13 +2538,21 @@ 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"
|
msgstr "Musíte počkat alespoň 1 hodinu před dalším vysíláním"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4940,7 +4948,7 @@ msgid "What"
|
||||||
msgstr "Co"
|
msgstr "Co"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2534,13 +2534,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4934,7 +4942,7 @@ msgid "What"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2551,13 +2551,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich."
|
msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich."
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4953,7 +4961,7 @@ msgid "What"
|
||||||
msgstr "Was"
|
msgstr "Was"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2553,13 +2553,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich."
|
msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich."
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4955,7 +4963,7 @@ msgid "What"
|
||||||
msgstr "Was"
|
msgstr "Was"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr "Automatische Playlist"
|
msgstr "Automatische Playlist"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2538,13 +2538,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση"
|
msgstr "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4940,7 +4948,7 @@ msgid "What"
|
||||||
msgstr "Τι"
|
msgstr "Τι"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2538,13 +2538,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Must wait at least 1 hour to rebroadcast"
|
msgstr "Must wait at least 1 hour to rebroadcast"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4940,7 +4948,7 @@ msgid "What"
|
||||||
msgstr "What"
|
msgstr "What"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2539,13 +2539,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Must wait at least 1 hour to rebroadcast"
|
msgstr "Must wait at least 1 hour to rebroadcast"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4944,7 +4952,7 @@ msgid "What"
|
||||||
msgstr "What"
|
msgstr "What"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2538,13 +2538,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Must wait at least 1 hour to rebroadcast"
|
msgstr "Must wait at least 1 hour to rebroadcast"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4940,7 +4948,7 @@ msgid "What"
|
||||||
msgstr "What"
|
msgstr "What"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
Binary file not shown.
|
@ -2548,13 +2548,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Debes esperar al menos 1 hora para reprogramar"
|
msgstr "Debes esperar al menos 1 hora para reprogramar"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
msgstr "¿Auto Programar Lista?"
|
msgstr "¿Programar Lista Auto-Cargada?"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
|
msgstr "Se le agrega los contenidos de las listas auto-cargadas a programas una hora antes de que suenen. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>Mas información</a>"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr "Seleccionar Lista"
|
msgstr "Seleccionar Lista"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr "Repitir lista hasta que termine el programa?"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4966,8 +4974,8 @@ msgid "What"
|
||||||
msgstr "Qué"
|
msgstr "Qué"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr "Lista de reproducción automática"
|
msgstr "Lista Auto-Cargada"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
msgid "When"
|
msgid "When"
|
||||||
|
|
|
@ -2538,13 +2538,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Vous devez attendre au moins 1 heure pour retransmettre"
|
msgstr "Vous devez attendre au moins 1 heure pour retransmettre"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4940,7 +4948,7 @@ msgid "What"
|
||||||
msgstr "Quoi"
|
msgstr "Quoi"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2537,13 +2537,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Moraš čekati najmanje 1 sat za re-emitiranje"
|
msgstr "Moraš čekati najmanje 1 sat za re-emitiranje"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4939,7 +4947,7 @@ msgid "What"
|
||||||
msgstr "Što"
|
msgstr "Što"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2700,13 +2700,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Az újraközvetítésre legalább 1 órát kell várni"
|
msgstr "Az újraközvetítésre legalább 1 órát kell várni"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
msgstr "Lejátszási lista automatikus ütemezése?"
|
msgstr "Lejátszási lista automatikus ütemezése?"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr "Lejátszási lista kiválasztása"
|
msgstr "Lejátszási lista kiválasztása"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -5267,7 +5275,7 @@ msgid "What"
|
||||||
msgstr "Mi"
|
msgstr "Mi"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr "Automatikus lejátszási lista"
|
msgstr "Automatikus lejátszási lista"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2531,13 +2531,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4931,7 +4939,7 @@ msgid "What"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2534,13 +2534,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4934,7 +4942,7 @@ msgid "What"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2534,13 +2534,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4934,7 +4942,7 @@ msgid "What"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2539,13 +2539,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Aspettare almeno un'ora prima di ritrasmettere"
|
msgstr "Aspettare almeno un'ora prima di ritrasmettere"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4941,7 +4949,7 @@ msgid "What"
|
||||||
msgstr "Cosa"
|
msgstr "Cosa"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2537,13 +2537,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "再配信するには、1時間以上待たなければなりません"
|
msgstr "再配信するには、1時間以上待たなければなりません"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4939,7 +4947,7 @@ msgid "What"
|
||||||
msgstr "番組内容"
|
msgstr "番組内容"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2532,13 +2532,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4932,7 +4940,7 @@ msgid "What"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2534,13 +2534,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4934,7 +4942,7 @@ msgid "What"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2535,13 +2535,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "재방송 설정까지 1시간 기간이 필요합니다"
|
msgstr "재방송 설정까지 1시간 기간이 필요합니다"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4937,7 +4945,7 @@ msgid "What"
|
||||||
msgstr "무엇"
|
msgstr "무엇"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2535,13 +2535,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4935,7 +4943,7 @@ msgid "What"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2541,13 +2541,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Ten minste 1 uur opnieuw uitzenden moet wachten"
|
msgstr "Ten minste 1 uur opnieuw uitzenden moet wachten"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4943,7 +4951,7 @@ msgid "What"
|
||||||
msgstr "Wat"
|
msgstr "Wat"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2538,13 +2538,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem"
|
msgstr "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4940,7 +4948,7 @@ msgid "What"
|
||||||
msgstr "Co"
|
msgstr "Co"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2539,13 +2539,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "É preciso aguardar uma hora para retransmitir"
|
msgstr "É preciso aguardar uma hora para retransmitir"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4941,7 +4949,7 @@ msgid "What"
|
||||||
msgstr "O que"
|
msgstr "O que"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2534,13 +2534,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4934,7 +4942,7 @@ msgid "What"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2554,13 +2554,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "1 час нужно подождать до ретрансляции"
|
msgstr "1 час нужно подождать до ретрансляции"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr "Выбрать плейлист"
|
msgstr "Выбрать плейлист"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4982,7 +4990,7 @@ msgid "What"
|
||||||
msgstr "Что"
|
msgstr "Что"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr "Автоматический Плейлист"
|
msgstr "Автоматический Плейлист"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2534,13 +2534,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4934,7 +4942,7 @@ msgid "What"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2537,13 +2537,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Мораш да чекаш најмање 1 сат за ре-емитовање"
|
msgstr "Мораш да чекаш најмање 1 сат за ре-емитовање"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4939,7 +4947,7 @@ msgid "What"
|
||||||
msgstr "Шта"
|
msgstr "Шта"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2537,13 +2537,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Moraš da čekaš najmanje 1 sat za re-emitovanje"
|
msgstr "Moraš da čekaš najmanje 1 sat za re-emitovanje"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4939,7 +4947,7 @@ msgid "What"
|
||||||
msgstr "Šta"
|
msgstr "Šta"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2534,13 +2534,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4934,7 +4942,7 @@ msgid "What"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2535,13 +2535,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "Tekrar yayın yapmak için en az bir saat bekleyiniz"
|
msgstr "Tekrar yayın yapmak için en az bir saat bekleyiniz"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4935,7 +4943,7 @@ msgid "What"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -2537,13 +2537,21 @@ msgid "Must wait at least 1 hour to rebroadcast"
|
||||||
msgstr "至少间隔一个小时"
|
msgstr "至少间隔一个小时"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18
|
||||||
msgid "Auto Schedule Playlist ?"
|
msgid "Add Autoloading Playlist ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14
|
||||||
|
msgid "Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25
|
||||||
msgid "Select Playlist"
|
msgid "Select Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32
|
||||||
|
msgid "Repeat Playlist Until Show is Full ?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
#: airtime_mvc/application/forms/AddShowLiveStream.php:11
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Use %s Authentication:"
|
msgid "Use %s Authentication:"
|
||||||
|
@ -4939,7 +4947,7 @@ msgid "What"
|
||||||
msgstr "名称"
|
msgstr "名称"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14
|
||||||
msgid "Automatic Playlist"
|
msgid "Autoloading Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
#: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18
|
||||||
|
|
|
@ -7,6 +7,11 @@
|
||||||
font-size: 12px;
|
font-size: 12px;
|
||||||
/*width: 25%;*/
|
/*width: 25%;*/
|
||||||
width: 310px;
|
width: 310px;
|
||||||
|
max-height: calc(100vh - 144px);
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
.usability_hint:not(.hidden) + .wrapper #schedule-add-show{
|
||||||
|
max-height: calc(100vh - 172px);
|
||||||
}
|
}
|
||||||
|
|
||||||
#schedule-add-show textarea {
|
#schedule-add-show textarea {
|
||||||
|
@ -85,6 +90,9 @@ label.wrapp-label input[type="checkbox"] {
|
||||||
#schedule-add-show fieldset dd input[type="checkbox"] {
|
#schedule-add-show fieldset dd input[type="checkbox"] {
|
||||||
margin-top: 6px;
|
margin-top: 6px;
|
||||||
}
|
}
|
||||||
|
#schedule-show-auto input[type="checkbox"] {
|
||||||
|
margin-left: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
#add_show_day_check-element.block-display {
|
#add_show_day_check-element.block-display {
|
||||||
margin-bottom: 15px;
|
margin-bottom: 15px;
|
||||||
|
|
|
@ -314,6 +314,7 @@ a.fc-event {
|
||||||
.fc-event-time,
|
.fc-event-time,
|
||||||
.fc-event-title {
|
.fc-event-title {
|
||||||
padding: 0 1px;
|
padding: 0 1px;
|
||||||
|
height: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fc .ui-resizable-handle { /*** TODO: don't use ui-resizable anymore, change class ***/
|
.fc .ui-resizable-handle { /*** TODO: don't use ui-resizable anymore, change class ***/
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g data-name="Layer 2"><g data-name="clock"><rect width="24" height="24" transform="rotate(180 12 12)" opacity="0"/><path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm4 11h-4a1 1 0 0 1-1-1V8a1 1 0 0 1 2 0v3h3a1 1 0 0 1 0 2z" fill="#fff"/></g></g></svg>
|
After Width: | Height: | Size: 313 B |
|
@ -204,14 +204,18 @@ img.logo
|
||||||
.airtime_auth_help_icon, .custom_auth_help_icon, .stream_username_help_icon,
|
.airtime_auth_help_icon, .custom_auth_help_icon, .stream_username_help_icon,
|
||||||
.playlist_type_help_icon, .repeat_tracks_help_icon, .show_linking_help_icon,
|
.playlist_type_help_icon, .repeat_tracks_help_icon, .show_linking_help_icon,
|
||||||
.admin_username_help_icon, .stream_type_help_icon, .overflow_tracks_help_icon,
|
.admin_username_help_icon, .stream_type_help_icon, .overflow_tracks_help_icon,
|
||||||
.show_timezone_help_icon{
|
.show_timezone_help_icon, .show_autoplaylist_help_icon {
|
||||||
cursor: help;
|
cursor: help;
|
||||||
position: relative;
|
position: relative;
|
||||||
display:inline-block; zoom:1;
|
display:inline-block; zoom:1;
|
||||||
width:14px; height:14px;
|
width:14px; height:14px;
|
||||||
background:url(images/icon_info.png) 0 0 no-repeat;
|
background:url(images/icon_info.png) 0 0 no-repeat;
|
||||||
top:2px; right:7px; left: 3px;
|
left: 3px;
|
||||||
line-height:16px !important;
|
line-height:16px !important;
|
||||||
|
vertical-align: text-top;
|
||||||
|
}
|
||||||
|
.qtip a {
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Clearfix */
|
/* Clearfix */
|
||||||
|
@ -2040,7 +2044,7 @@ span.errors.sp-errors{
|
||||||
margin: 0 0 8px 0;
|
margin: 0 0 8px 0;
|
||||||
}
|
}
|
||||||
#schedule-add-show .button-bar.bottom {
|
#schedule-add-show .button-bar.bottom {
|
||||||
margin: 16px 0 0;
|
margin: 16px 0 8px;
|
||||||
}
|
}
|
||||||
.schedule {
|
.schedule {
|
||||||
text-align:left;
|
text-align:left;
|
||||||
|
@ -2268,14 +2272,15 @@ span.errors.sp-errors{
|
||||||
height:10px;
|
height:10px;
|
||||||
float:right;
|
float:right;
|
||||||
margin-left:3px;
|
margin-left:3px;
|
||||||
margin-top:2px;
|
|
||||||
}
|
}
|
||||||
.small-icon.linked {
|
.small-icon.linked {
|
||||||
background:url(images/icon_link.png) no-repeat 0 0;
|
background:url(images/icon_link.png) no-repeat 0 0;
|
||||||
margin-top: 0px !important;
|
margin-top: 0px !important;
|
||||||
}
|
}
|
||||||
.small-icon.autoplaylist {
|
.small-icon.autoplaylist {
|
||||||
background:url(images/icon_alert_cal_autoplaylist.png) no-repeat 0 0;
|
background: url(images/icon-clock.svg) black no-repeat center center;
|
||||||
|
border-radius: 2px;
|
||||||
|
background-size: contain;
|
||||||
}
|
}
|
||||||
|
|
||||||
.small-icon.recording {
|
.small-icon.recording {
|
||||||
|
@ -2888,7 +2893,6 @@ dt.block-display.info-block {
|
||||||
text-align:center;
|
text-align:center;
|
||||||
letter-spacing:-.3px;
|
letter-spacing:-.3px;
|
||||||
text-shadow: rgba(248,248,248,.3) 0 1px 0, rgba(0,0,0,.8) 0 -1px 0;
|
text-shadow: rgba(248,248,248,.3) 0 1px 0, rgba(0,0,0,.8) 0 -1px 0;
|
||||||
rgba(51,51,51,.9)
|
|
||||||
}
|
}
|
||||||
.error-content p {
|
.error-content p {
|
||||||
color: #acacac;
|
color: #acacac;
|
||||||
|
|
|
@ -310,17 +310,6 @@ function setAddShowEvents(form) {
|
||||||
$(this).blur();
|
$(this).blur();
|
||||||
form.find("#add_show_playlist_dropdown").toggle();
|
form.find("#add_show_playlist_dropdown").toggle();
|
||||||
form.find("#add_show_autoplaylist_repeat").toggle();
|
form.find("#add_show_autoplaylist_repeat").toggle();
|
||||||
|
|
||||||
var checkBoxSelected = false;
|
|
||||||
|
|
||||||
//must switch rebroadcast displays
|
|
||||||
if(form.find("#add_show_has_autoplaylist").attr('checked')) {
|
|
||||||
form.find("#add_show_playlist_dropdown").show();
|
|
||||||
form.find("#add_show_autoplaylist_repeat").show();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
form.find("#add_show_playlist_downdown").hide();
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
|
||||||
form.find("#add_show_repeats").click(function(){
|
form.find("#add_show_repeats").click(function(){
|
||||||
|
@ -492,6 +481,27 @@ function setAddShowEvents(form) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
form.find(".show_autoplaylist_help_icon").qtip({
|
||||||
|
content: {
|
||||||
|
text: $.i18n._("Autoloading playlists' contents are added to shows one hour before the show airs. <a target='_blank' href='http://libretime.org/manual/calendar/#autoloading-playlist'>More information</a>")
|
||||||
|
},
|
||||||
|
hide: {
|
||||||
|
delay: 500,
|
||||||
|
fixed: true
|
||||||
|
},
|
||||||
|
style: {
|
||||||
|
border: {
|
||||||
|
width: 0,
|
||||||
|
radius: 4
|
||||||
|
},
|
||||||
|
classes: "ui-tooltip-dark ui-tooltip-rounded"
|
||||||
|
},
|
||||||
|
position: {
|
||||||
|
my: "left bottom",
|
||||||
|
at: "right center"
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
form.find(".airtime_auth_help_icon").qtip({
|
form.find(".airtime_auth_help_icon").qtip({
|
||||||
content: {
|
content: {
|
||||||
text: $.i18n._("This follows the same security pattern for the shows: only users assigned to the show can connect.")
|
text: $.i18n._("This follows the same security pattern for the shows: only users assigned to the show can connect.")
|
||||||
|
|
|
@ -218,7 +218,7 @@ function eventRender(event, element, view) {
|
||||||
} else if (event.show_has_auto_playlist === true) {
|
} else if (event.show_has_auto_playlist === true) {
|
||||||
$(element)
|
$(element)
|
||||||
.find(".fc-event-time")
|
.find(".fc-event-time")
|
||||||
.before('<span class="small-icon autoplaylist"></span><span class="small-icon show-empty"></span>');
|
.before('<span class="small-icon autoplaylist"></span>');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$(element)
|
$(element)
|
||||||
|
@ -233,7 +233,7 @@ function eventRender(event, element, view) {
|
||||||
} else if (event.show_has_auto_playlist === true) {
|
} else if (event.show_has_auto_playlist === true) {
|
||||||
$(element)
|
$(element)
|
||||||
.find(".fc-event-time")
|
.find(".fc-event-time")
|
||||||
.before('<span class="small-icon autoplaylist"></span><span class="small-icon show-partial-filled"></span>');
|
.before('<span class="small-icon autoplaylist"></span>');
|
||||||
} else {
|
} else {
|
||||||
$(element)
|
$(element)
|
||||||
.find(".fc-event-time")
|
.find(".fc-event-time")
|
||||||
|
@ -259,7 +259,7 @@ function eventRender(event, element, view) {
|
||||||
} else if (event.show_has_auto_playlist === true) {
|
} else if (event.show_has_auto_playlist === true) {
|
||||||
$(element)
|
$(element)
|
||||||
.find(".fc-event-title")
|
.find(".fc-event-title")
|
||||||
.after('<span title="'+$.i18n._("Show has an automatic playlist")+'"class="small-icon autoplaylist"></span><span title="'+$.i18n._("Show is empty")+'" class="small-icon show-empty"></span>');
|
.after('<span title="' + $.i18n._("Show has an automatic playlist") + '"class="small-icon autoplaylist"></span>');
|
||||||
} else {
|
} else {
|
||||||
$(element)
|
$(element)
|
||||||
.find(".fc-event-title")
|
.find(".fc-event-title")
|
||||||
|
@ -273,7 +273,7 @@ function eventRender(event, element, view) {
|
||||||
} else if (event.show_has_auto_playlist === true) {
|
} else if (event.show_has_auto_playlist === true) {
|
||||||
$(element)
|
$(element)
|
||||||
.find(".fc-event-title")
|
.find(".fc-event-title")
|
||||||
.after('<span title="'+$.i18n._("Show has an automatic playlist")+'"class="small-icon autoplaylist"></span><span title="'+$.i18n._("Show is partially filled")+'" class="small-icon show-partial-filled"></span>');
|
.after('<span title="' + $.i18n._("Show has an automatic playlist") + '"class="small-icon autoplaylist"></span>');
|
||||||
} else {
|
} else {
|
||||||
$(element)
|
$(element)
|
||||||
.find(".fc-event-title")
|
.find(".fc-event-title")
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
//Serbian Latin
|
//Serbian Latin
|
||||||
|
|
||||||
{
|
{
|
||||||
"sProcessing": "Obrada...",
|
"sProcessing": "Obrada...",
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/*
|
/*
|
||||||
* jQuery.stickyPanel
|
* jQuery.stickyPanel
|
||||||
* ----------------------
|
* ----------------------
|
||||||
* version: 1.4.1
|
* version: 1.4.1
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
// Serbian Latin
|
// Serbian Latin
|
||||||
plupload.addI18n({
|
plupload.addI18n({
|
||||||
'Select files' : 'Izaberite fajlove',
|
'Select files' : 'Izaberite fajlove',
|
||||||
'Add files to the upload queue and click the start button.' : 'Dodajte fajlove u listu i kliknite na dugme Start.',
|
'Add files to the upload queue and click the start button.' : 'Dodajte fajlove u listu i kliknite na dugme Start.',
|
||||||
|
|
|
@ -1,57 +0,0 @@
|
||||||
/*
|
|
||||||
Code taken from http://www.jspatterns.com/book/7/observer-game.html
|
|
||||||
|
|
||||||
Pub/Sub
|
|
||||||
*/
|
|
||||||
|
|
||||||
var publisher = {
|
|
||||||
subscribers: {
|
|
||||||
any: []
|
|
||||||
},
|
|
||||||
on: function (type, fn, context) {
|
|
||||||
type = type || 'any';
|
|
||||||
fn = typeof fn === "function" ? fn : context[fn];
|
|
||||||
|
|
||||||
if (typeof this.subscribers[type] === "undefined") {
|
|
||||||
this.subscribers[type] = [];
|
|
||||||
}
|
|
||||||
this.subscribers[type].push({fn: fn, context: context || this});
|
|
||||||
},
|
|
||||||
remove: function (type, fn, context) {
|
|
||||||
this.visitSubscribers('unsubscribe', type, fn, context);
|
|
||||||
},
|
|
||||||
fire: function (type, publication) {
|
|
||||||
this.visitSubscribers('publish', type, publication);
|
|
||||||
},
|
|
||||||
reset: function (type) {
|
|
||||||
|
|
||||||
},
|
|
||||||
visitSubscribers: function (action, type, arg, context) {
|
|
||||||
var pubtype = type || 'any',
|
|
||||||
subscribers = this.subscribers[pubtype],
|
|
||||||
i,
|
|
||||||
max = subscribers ? subscribers.length : 0;
|
|
||||||
|
|
||||||
for (i = 0; i < max; i += 1) {
|
|
||||||
if (action === 'publish') {
|
|
||||||
subscribers[i].fn.call(subscribers[i].context, arg);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
if (subscribers[i].fn === arg && subscribers[i].context === context) {
|
|
||||||
subscribers.splice(i, 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
function makePublisher(o) {
|
|
||||||
var i;
|
|
||||||
for (i in publisher) {
|
|
||||||
if (publisher.hasOwnProperty(i) && typeof publisher[i] === "function") {
|
|
||||||
o[i] = publisher[i];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
o.subscribers = {any: []};
|
|
||||||
}
|
|
|
@ -1,25 +0,0 @@
|
||||||
<form class="form-inline">
|
|
||||||
<select id="time_format">
|
|
||||||
<option value="seconds">seconds</option>
|
|
||||||
<option value="thousandths">thousandths</option>
|
|
||||||
<option value="hh:mm:ss">hh:mm:ss</option>
|
|
||||||
<option value="hh:mm:ss.uu">hh:mm:ss + hundredths</option>
|
|
||||||
<option value="hh:mm:ss.uuu">hh:mm:ss + milliseconds</option>
|
|
||||||
</select>
|
|
||||||
<input id="audio_start" type="text" class="input-small">
|
|
||||||
<input id="audio_end" type="text" class="input-small">
|
|
||||||
<input id="audio_pos" type="text" class="input-small">
|
|
||||||
<select id="audio_resolution">
|
|
||||||
<option>4000</option>
|
|
||||||
<option>5000</option>
|
|
||||||
<option>6000</option>
|
|
||||||
<option>7000</option>
|
|
||||||
<option>8000</option>
|
|
||||||
<option>9000</option>
|
|
||||||
<option>10000</option>
|
|
||||||
<option>11000</option>
|
|
||||||
<option>12000</option>
|
|
||||||
<option>15000</option>
|
|
||||||
<option>20000</option>
|
|
||||||
</select>
|
|
||||||
</form>
|
|
|
@ -9,7 +9,8 @@ Recommendations:
|
||||||
- It is not recommended that you install LibreTime on the same computer you are using as a desktop.
|
- It is not recommended that you install LibreTime on the same computer you are using as a desktop.
|
||||||
- Please review the release notes of the version you are planning on installing.
|
- Please review the release notes of the version you are planning on installing.
|
||||||
|
|
||||||
Once you have downloaded and extracted LibreTime, run the instalation script by navigating into the folder containing the LibreTime codebase, and run it's install script from the command line:
|
Once you have downloaded and extracted LibreTime, run the installation script by navigating into the
|
||||||
|
folder containing the LibreTime codebase, and run it's install script from the command line:
|
||||||
|
|
||||||
```
|
```
|
||||||
sudo ./install
|
sudo ./install
|
||||||
|
@ -18,7 +19,9 @@ sudo ./install
|
||||||
By default, the installer will install and configure all dependencies.
|
By default, the installer will install and configure all dependencies.
|
||||||
|
|
||||||
## Alternative OS installations
|
## Alternative OS installations
|
||||||
Instalation in Debian 9 and other Linux distributions is possible, but multiple outstanding issues have yet to be resolved. Instalation on Ubuntu 14.04.5 LTS (Trusty Tahr) is also working, but deprecated due to the fact that this version will reach its official end of life in April 2019.
|
Installation in Debian 9 and other Linux distributions is possible, but multiple outstanding issues have yet
|
||||||
|
to be resolved. Installation on Ubuntu 14.04.5 LTS (Trusty Tahr) is also working, but deprecated due to the
|
||||||
|
fact that this version will reach its official end of life in April 2019.
|
||||||
|
|
||||||
Plans are in the works for `.deb` and `.rpm` packages, as well as Docker and AWS images.
|
Plans are in the works for `.deb` and `.rpm` packages, as well as Docker and AWS images.
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ In the top left corner of the page, you can go back or forward through the **Cal
|
||||||
Adding a show
|
Adding a show
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
Only *Admins* and *Program Managers* can use this feature. To add a new show to the Calendar, click the **+ New Show** button in the top left corner of the page, or click on any future row or box in the Calendar which is empty. Either of these actions opens the **Add this show** box, which has seven sections, arranged vertically: **What**, **Automatic Playlist**, **When**, **Live Stream Input**, **Record & Rebroadcast**, **Who**, and **Style**. Click the small orange triangle to the left of the section name if you wish to minimize or maximize it.
|
Only *Admins* and *Program Managers* can use this feature. To add a new show to the Calendar, click the **+ New Show** button in the top left corner of the page, or click on any future row or box in the Calendar which is empty. Either of these actions opens the **Add this show** box, which has seven sections, arranged vertically: **What**, **Autoloading Playlist**, **When**, **Live Stream Input**, **Record & Rebroadcast**, **Who**, and **Style**. Click the small orange triangle to the left of the section name if you wish to minimize or maximize it.
|
||||||
|
|
||||||
What
|
What
|
||||||
----
|
----
|
||||||
|
@ -18,7 +18,7 @@ In the **What** box, enter the **Name**, public website **URL**, **Genre** and *
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
Automatic Playlist
|
Autoloading Playlist
|
||||||
------------------
|
------------------
|
||||||
|
|
||||||
In this section, you can select a playlist that will be used for this show. The playlist must already be defined in your library. **Auto Schedule Playlist** needs to be checked for **Select Playlist** and **Repeat AutoPlaylist Until Show is Full** to be visible.
|
In this section, you can select a playlist that will be used for this show. The playlist must already be defined in your library. **Auto Schedule Playlist** needs to be checked for **Select Playlist** and **Repeat AutoPlaylist Until Show is Full** to be visible.
|
||||||
|
@ -64,15 +64,7 @@ A reminder of the connection **Host**, **Port** and **Mount** for the live input
|
||||||
Record & Rebroadcast
|
Record & Rebroadcast
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
In the **Record & Rebroadcast** section, checking the **Record from Line In?** box enables automatic recording of the soundcard line input, if your LibreTime server has one, at the time of the show. Shows set for line-in recording should not also contain files or playlists. The default audio format for live recordings is 256kbps Ogg Vorbis, and the files are saved in the *recorded* folder, under the **Import Folder** path set in the **Media Folders** page on the **System** menu. See the chapter *Host configuration* for details of recorder settings.
|
The **Record & Rebroadcast** section is currently not working, and so has been removed from the web interface. If this feature is important to you, please search for relevant issues in the [LibreTime github repository](https://github.com/LibreTime/libretime/search?q=record&type=Issues) and help us make it happen!
|
||||||
|
|
||||||
If you wish the recording to be played out at a later time, check the **Rebroadcast?** box, and then select up to ten date and time slots in the **Choose Days** box.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
Shows set for rebroadcast have a white loop icon in the calendar.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
Who
|
Who
|
||||||
---
|
---
|
||||||
|
|
|
@ -1,16 +1,17 @@
|
||||||
If the server is only being used for Airtime and has a web browser installed, you can access the administration interface directly on that server by opening the address:
|
If the server is only being used for LibreTime and has a web browser installed, you can access the administration interface directly on that server by opening the address:
|
||||||
|
|
||||||
http://localhost/
|
http://localhost/
|
||||||
|
|
||||||
If you have set up Airtime so that it can be accessed from other computers, you would use a domain name instead. For example:
|
If you have set up LibreTime so that it can be accessed from other computers, you would use a domain name instead. For example:
|
||||||
|
|
||||||
https://airtime.example.com/
|
https://libretime.example.com/
|
||||||
|
|
||||||
You can log in for the first time with the user name *admin* and the password set during installation. Your browser should automatically focus on the **Username** field.
|
You can log in for the first time with the user name *admin* and the password set during installation. Your browser should automatically focus on the **Username** field.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
If you enter the password incorrectly three times, you will be presented with a reCAPTCHA challenge to prove that you are a human, and not a password-guessing robot. This feature helps protect your Airtime installation against brute force attacks.
|
If you enter the password incorrectly three times, you will be presented with a reCAPTCHA challenge to prove that you are a human, and not a password-guessing robot. This feature helps protect your LibreTime installation against brute force
|
||||||
|
attacks.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
@ -22,50 +23,48 @@ The **E-mail** address you enter must match the address stored in the database f
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
Register Airtime
|
|
||||||
----------------
|
|
||||||
|
|
||||||
After you have logged in as *admin* for the first time, a pop-up window will ask if you wish to send technical support data about your server to Sourcefabric.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
These details can be viewed by clicking on the **Show me what I am sending** link, which expands a scrolling window. The data helps Sourcefabric engineers resolve any problems with your Airtime installation, as well as count the number of installations worldwide.
|
|
||||||
|
|
||||||
<img src="static/Screenshot546-Remind_me_never_250.png" width="535" height="275" />
|
|
||||||
|
|
||||||
Sourcefabric has a privacy policy regarding data collection, which you can read by clicking the link to <http://www.sourcefabric.org/en/about/policy/> further down. After checking the **Send support feedback** and **privacy policy** boxes, you can submit the data by clicking the **Yes, help Airtime** button.
|
|
||||||
|
|
||||||
This window also offers the opportunity to **Promote my station on Sourcefabric.org** (on the page <http://www.sourcefabric.org/en/airtime/whosusing/>) by checking the box. Fill in the form which will appear with some details about your station. The contact details are only requested for verification purposes, and will not be made available to the public. Click the **Browse** button to select a **Station Logo** image from the file manager on your computer.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
The Master Panel
|
The Master Panel
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
After the pop-up window is closed, you should now see the **Master Panel**, which is present at the top of every page of the Airtime interface. On the left hand side, the Master Panel displays the details of the **Previous** file played out, the current file playing (with an orange progress bar and time elapsed/time remaining), and the details of the **Next** file due to play. It also displays the name and scheduled time of the current show, with a blue progress bar.
|
The **Master Panel** is present at the top of every page of the LibreTime interface. On the left hand side, the Master Panel displays the details of the **Previous** file played out,
|
||||||
|
the current file playing (with an orange progress bar and time elapsed/time remaining), and the details of the **Next**
|
||||||
|
file due to play. It also displays the name and scheduled time of the current show, with a blue progress bar.
|
||||||
|
|
||||||
Beneath this side of the Master Panel is the main navigation menu, with sub-menus labelled **Now Playing**, **Add Media**, **Library**, **Calendar**, **System**, **History** and **Help**. We'll be looking at the contents of these menus in the following chapters of this book.
|

|
||||||
|
|
||||||
<img src="static/Screenshot542-Main_menus_250.png" width="595" height="145" />
|
Beneath this side of the Master Panel is the main navigation menu. We'll be looking at the contents of these menus in the
|
||||||
|
following chapters of this book.
|
||||||
|
|
||||||
On the right hand side of the Master Panel are the switches for the **Source Streams**, which enable you to switch from scheduled play to remote live sources, and back. (See the chapter *Stream settings* for details of this feature). The **On Air** indicator turns from dark grey to red whenever audio is being played out. Underneath this indicator is a **Listen** button, which opens a pop-up player that can be used to audition the available playout streams.
|

|
||||||
|
|
||||||
There is also a clock indicating the **Station time** and time zone. Beneath the clock and just to the left, the name of the user currently logged in is displayed, and there is the link for you to **Logout**.
|
On the right hand side of the Master Panel are the switches for the **Source Streams**, which enable you to switch from
|
||||||
|
scheduled play to remote live sources, and back. (See the chapter *Stream settings* for details of this feature). The
|
||||||
|
**On Air** indicator turns from dark grey to red whenever audio is being played out. Underneath this indicator is a
|
||||||
|
**Listen** button, which opens a pop-up player that can be used to audition the available playout streams.
|
||||||
|
|
||||||
|
There is also a clock indicating the **Station time** and time zone. Beneath the clock and just to the left, the name of
|
||||||
|
the user currently logged in is displayed, and there is the link for you to **Logout**.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
Clicking the username link opens a page in which you can update your Airtime password, contact details, language and time zone preferences. Click the **Save** button once you have made the changes that you require.
|
Clicking the username link opens a page in which you can update your LibreTime password, contact details, language and time
|
||||||
|
zone preferences. Click the **Save** button once you have made the changes that you require.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
On the right of the Logout link, clicking the green check mark opens a pop-up window with information about the version of Airtime installed. If your Airtime installation is not the latest version available, the green check mark changes to a green upgrade arrow. Should your Airtime installation get too far out of date, this arrow will change to a red exclamation mark.
|
On the right of the Logout link, clicking the green check mark opens a pop-up window with information about the version of
|
||||||
|
LibreTime installed. If your LibreTime installation is not the latest version available, the green check mark changes to a
|
||||||
|
green upgrade arrow. Should your LibreTime installation get too far out of date, this arrow will change to a red exclamation
|
||||||
|
mark.
|
||||||
|
|
||||||
<img src="static/Screenshot543-Running_latest_version_250.png" width="595" height="230" />
|
<img src="static/Screenshot543-Running_latest_version_250.png" width="595" height="230" />
|
||||||
|
|
||||||
Checking an Icecast server
|
Checking an Icecast server
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
||||||
If you have installed an Icecast streaming media server, you can check that Icecast is running by opening its default server port of 8000 in your web browser. For example, on the server itself, you can use:
|
If you have installed an Icecast streaming media server, you can check that Icecast is running by opening its default server
|
||||||
|
port of 8000 in your web browser. For example, on the server itself, you can use:
|
||||||
|
|
||||||
http://localhost:8000
|
http://localhost:8000
|
||||||
|
|
||||||
|
@ -73,6 +72,7 @@ or from another machine, using the domain name of the Icecast server:
|
||||||
|
|
||||||
http://streaming.example.com:8000
|
http://streaming.example.com:8000
|
||||||
|
|
||||||
You should see the Icecast status page, with details of any connections that your Airtime server has made to this Icecast server. If you have only just installed Airtime, there may not be any media playing out yet.
|
You should see the Icecast status page, with details of any connections that your LibreTime server has made to this Icecast
|
||||||
|
server. If you have only just installed LibreTime, there may not be any media playing out yet.
|
||||||
|
|
||||||

|

|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 57 KiB |
Binary file not shown.
After Width: | Height: | Size: 34 KiB |
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
Binary file not shown.
Before Width: | Height: | Size: 60 KiB |
Binary file not shown.
Before Width: | Height: | Size: 20 KiB |
|
@ -234,11 +234,6 @@ and then run the command (as root):
|
||||||
|
|
||||||
This should make sure that **rabbitmq-server** starts after the next reboot.
|
This should make sure that **rabbitmq-server** starts after the next reboot.
|
||||||
|
|
||||||
libav on Debian squeeze and .m4a files
|
|
||||||
--------------------------------------
|
|
||||||
|
|
||||||
The version of libav shipped with Debian 6.0 'squeeze' is known to cause problems when Airtime analyses .m4a files containing the AAC codec for silence, using Silan (see <https://github.com/x42/silan/issues/2>). It is recommended that Debian servers are upgraded to the current stable 'wheezy' 7.2 release. As a short-term measure, updated libav packages from the squeeze-backports repository can be used to work around this problem. This work-around is only required if you do not wish to upgrade to 'wheezy' yet, but have AAC codec .m4a files in your Airtime library.
|
|
||||||
|
|
||||||
Mail server
|
Mail server
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
LibreTime 3.x versions support upgrading from Airtime 2.5.x versions. LibreTime
|
## LibreTime versioning
|
||||||
follows the [Semantic Versioning (semver)](http://semver.org/spec/v2.0.0.html) standards.
|
|
||||||
|
LibreTime 3.x versions support upgrading from Airtime 2.5.x versions. LibreTime follows the [Semantic Versioning (semver)](http://semver.org/spec/v2.0.0.html) standards.
|
||||||
|
|
||||||
In a nutshell, given a version number MAJOR.MINOR.PATCH we increment the:
|
In a nutshell, given a version number MAJOR.MINOR.PATCH we increment the:
|
||||||
|
|
||||||
|
@ -7,45 +8,17 @@ In a nutshell, given a version number MAJOR.MINOR.PATCH we increment the:
|
||||||
2. MINOR version when we add functionality in a backwards-compatible manner, and
|
2. MINOR version when we add functionality in a backwards-compatible manner, and
|
||||||
3. PATCH version when we make backwards-compatible bug fixes.
|
3. PATCH version when we make backwards-compatible bug fixes.
|
||||||
|
|
||||||
Any pre-release versions of LibreTime are denoted by appending a hyphen and a series
|
Any pre-release versions of LibreTime are denoted by appending a hyphen and a series of dot separated identifiers immediately following the patch version. This pre-release indicates that the version is unstable in a sense that it might contain incomplete features or not satisfy the intended compatibility requirements as per semver.
|
||||||
of dot separated identifiers immediately following the patch version. This pre-release
|
|
||||||
indicates that the version is unstable in a sense that it might contain incomplete
|
|
||||||
features or not satisfy the intended compatibility requirements as per semver.
|
|
||||||
|
|
||||||
Before upgrading a production LibreTime server, you should back up both the PostgreSQL
|
## Upgrading
|
||||||
database and the storage server used by LibreTime. This is especially important if you
|
|
||||||
have not already set up a regular back up routine. This extra back up is a safety measure
|
|
||||||
in case of accidental data loss during the upgrade, for example due to the wrong command
|
|
||||||
being entered when moving files. See [Backing up the server](../backing-up-the-server/)
|
|
||||||
in this manual for details of how to perform these back ups.
|
|
||||||
|
|
||||||
If you have deployed LibreTime using the method shown in [Automated installation](../automated-installation/),
|
Before upgrading a production LibreTime server, you should back up both the PostgreSQL database and the storage server used by LibreTime. This is especially important if you have not already set up a regular back up routine. This extra back up is a safety measure in case of accidental data loss during the upgrade, for example due to the wrong command being entered when moving files. See [Backing up the server](../backing-up-the-server/) in this manual for details of how to perform these back ups.
|
||||||
you can upgrade in the same way. A new LibreTime package available in
|
|
||||||
the repository can be installed with:
|
|
||||||
|
|
||||||
sudo apt-get update
|
The LibreTime [installation script](../install) will detect an existing LibreTime or Airtime deployment and back up any configuration files that it finds. We recommend taking your own manual backups of the configuration yourself nevertheless. The install script also tries to restart the needed services during an upgrade. In any case you should monitor if this happened and also take a quick look at the logs files to be sure everything is still fine. Now might be the time to reboot the system or virtual machine LibreTime is running on since regular reboots are part of a healthy system anyway.
|
||||||
sudo apt-get upgrade
|
|
||||||
|
|
||||||
If you have used the method shown in [Manual installation](../manual-installation/), you should
|
After the upgrade has completed, you may need to clear your web browser's cache before logging into the new version of the LibreTime administration interface. If the playout engine starts up and detects that a show should be playing at the current time, it will skip to the correct point in the current item and start playing.
|
||||||
repeat the installation steps of downloading and unpacking the tarball to an
|
|
||||||
installation directory, or pulling from the git repository with `git pull`, and
|
|
||||||
running the `./install` script. The installation script will detect an existing
|
|
||||||
LibreTime deployment and back up any configuration files that it finds. We recommend
|
|
||||||
taking your own manual backups of the configuration yourself nevertheless.
|
|
||||||
|
|
||||||
The install script tries to restart the needed services during an upgrade. In any case
|
There will be tested ways to switch from a LibreTime pre-release to a packaged version of LibreTime.
|
||||||
you should monitor if this happened and also take a quick look at the logs files to
|
|
||||||
be sure everything is still fine. Now might be the time to reboot the system or
|
|
||||||
virtual machine LibreTime is running on since regular reboots are part of a healthy
|
|
||||||
system anyway.
|
|
||||||
|
|
||||||
After the upgrade has completed, you may need to clear your web browser's cache
|
|
||||||
before logging into the new version of the LibreTime administration interface. If
|
|
||||||
the playout engine starts up and detects that a show should be playing at the
|
|
||||||
current time, it will skip to the correct point in the current item and start playing.
|
|
||||||
|
|
||||||
There will be tested ways to switch from a LibreTime pre-release to a packaged version
|
|
||||||
of LibreTime.
|
|
||||||
|
|
||||||
Airtime 2.5.x versions support upgrading from version 2.3.0 and above. If you are
|
Airtime 2.5.x versions support upgrading from version 2.3.0 and above. If you are
|
||||||
running a production server with a version of Airtime prior to 2.3.0, you should
|
running a production server with a version of Airtime prior to 2.3.0, you should
|
||||||
|
|
|
@ -1,76 +1,9 @@
|
||||||
[Sourcefabric Manuals](http://sourcefabric.booktype.pro/)
|
|
||||||
|
|
||||||
- [Sign In / Create Account](http://sourcefabric.booktype.pro/accounts/signin/?redirect=/airtime-25-for-broadcasters/using-the-airtime-import-script/)
|
|
||||||
|
|
||||||
English | <a href="index.html#" class="langes">Español</a> | <a href="index.html#" class="langfr">Français</a> | <a href="index.html#" class="langit">Italiano</a> | <a href="index.html#" class="langpt">Português</a> | <a href="index.html#" class="langru">Русский</a> | <a href="index.html#" class="langsq">Shqip</a>
|
|
||||||
|
|
||||||
- [Books](http://sourcefabric.booktype.pro/list-books/)
|
|
||||||
- [Groups](http://sourcefabric.booktype.pro/list-groups/)
|
|
||||||
- [People](http://sourcefabric.booktype.pro/list-people/)
|
|
||||||
|
|
||||||
Airtime 2.5 for Broadcasters
|
|
||||||
----------------------------
|
|
||||||
|
|
||||||
- **Introduction**
|
|
||||||
- [What is Airtime?](../index.html)
|
|
||||||
- [Rights and royalties](../rights-and-royalties/index.html)
|
|
||||||
- **Using Airtime**
|
|
||||||
- [On air in 60 seconds!](../on-air-in-60-seconds/index.html)
|
|
||||||
- [Getting started](../getting-started/index.html)
|
|
||||||
- [Smartphone journalism](../smartphone-journalism/index.html)
|
|
||||||
- **The System menu**
|
|
||||||
- [Preferences](../preferences/index.html)
|
|
||||||
- [Users](../users/index.html)
|
|
||||||
- [Media folders](../media-folders/index.html)
|
|
||||||
- [Stream settings](../stream-settings/index.html)
|
|
||||||
- [Support feedback](../support-feedback/index.html)
|
|
||||||
- [Status](../status/index.html)
|
|
||||||
- [Listener stats](../listener-stats/index.html)
|
|
||||||
- **The main menus**
|
|
||||||
- [Now playing](../now-playing/index.html)
|
|
||||||
- [Add media](../add-media/index.html)
|
|
||||||
- [Library](../library/index.html)
|
|
||||||
- [Calendar](../calendar/index.html)
|
|
||||||
- [History](../playout-history/index.html)
|
|
||||||
- [Listen](../listen/index.html)
|
|
||||||
- [Help](../help/index.html)
|
|
||||||
- **Airtime in the studio**
|
|
||||||
- [Recording shows](../recording-shows/index.html)
|
|
||||||
- [Live shows with Mixxx](../live-shows-with-mixxx/index.html)
|
|
||||||
- [Icecast and SHOUTcast](../icecast-and-shoutcast/index.html)
|
|
||||||
- **Installation**
|
|
||||||
- [Preparing the server](../preparing-the-server/index.html)
|
|
||||||
- [Easy setup](../easy-setup/index.html)
|
|
||||||
- [Automated installation](../automated-installation/index.html)
|
|
||||||
- [Manual installation](../manual-installation/index.html)
|
|
||||||
- [Setting the server time](../setting-the-server-time/index.html)
|
|
||||||
- **Administration**
|
|
||||||
- [Preparing media for ingest](../preparing-media-for-ingest/index.html)
|
|
||||||
- [Using the airtime-import script](index.html)
|
|
||||||
- [The airtime-log command](../the-airtime-log-command/index.html)
|
|
||||||
- [Backing up the server](../backing-up-the-server/index.html)
|
|
||||||
- [Upgrading](../upgrading/index.html)
|
|
||||||
- [Troubleshooting](../troubleshooting/index.html)
|
|
||||||
- [Using Monit](../using-monit/index.html)
|
|
||||||
- **Advanced configuration**
|
|
||||||
- [Automated file import](../automated-file-import/index.html)
|
|
||||||
- [Icecast handover](../icecast-handover/index.html)
|
|
||||||
- [Promoting your station](../promoting-your-station/index.html)
|
|
||||||
- [Stream player for your website](../stream-player-for-your-website/index.html)
|
|
||||||
- [Exporting the schedule](../exporting-the-schedule/index.html)
|
|
||||||
- [Interface customization](../interface-customization/index.html)
|
|
||||||
- [Interface localization and Git](../interface-localization/index.html)
|
|
||||||
- [Host configuration](../host-configuration/index.html)
|
|
||||||
- [Airtime API authentication](../airtime-api-authentication/index.html)
|
|
||||||
- [Secure login with SSL or TLS](../secure-login-with-ssl/index.html)
|
|
||||||
- [Icecast statistics with Piwik](../icecast-statistics-with-piwik/index.html)
|
|
||||||
- **Appendix**
|
|
||||||
- [HD Audio Models](../hd-audio-models/index.html)
|
|
||||||
- [About this manual](../about-this-manual/index.html)
|
|
||||||
|
|
||||||
Using the import script
|
Using the import script
|
||||||
=======================
|
=======================
|
||||||
|
|
||||||
|
###NOTE: This page has issues, as the import script is not currently functional
|
||||||
|
|
||||||
|
|
||||||
If you have a large number of files in your media library, importing these files one at a time into a broadcast automation system would be time-consuming and tedious. That's why Airtime includes a script that can import an entire directory of files in one go.
|
If you have a large number of files in your media library, importing these files one at a time into a broadcast automation system would be time-consuming and tedious. That's why Airtime includes a script that can import an entire directory of files in one go.
|
||||||
|
|
||||||
Copying versus watching
|
Copying versus watching
|
||||||
|
|
|
@ -35,7 +35,6 @@ With the above instructions LibreTime is installed on Ubuntu Xenial Xerus. The V
|
||||||
| ------ | ------------------- | ------- |
|
| ------ | ------------------- | ------- |
|
||||||
| Debian 9.2 | `vagrant up debian-stretch` | Install on current Debian Stretch. |
|
| Debian 9.2 | `vagrant up debian-stretch` | Install on current Debian Stretch. |
|
||||||
| Debian 8.7 | `vagrant up debian-jessie` | Install on Debian Jessie. |
|
| Debian 8.7 | `vagrant up debian-jessie` | Install on Debian Jessie. |
|
||||||
| Debian 7.11 | `vagrant up debian-wheezy` | Deprecated install on Debian Wheezy. Please switch to debian-stretch. |
|
|
||||||
| Ubuntu 18.04 | `vagrant up ubuntu-bionic` | Experimental install on current Ubuntu Bionic Beaver. |
|
| Ubuntu 18.04 | `vagrant up ubuntu-bionic` | Experimental install on current Ubuntu Bionic Beaver. |
|
||||||
| Ubuntu 16.04 | `vagrant up ubuntu-xenial` | Install on Ubuntu Xenial Xerus. |
|
| Ubuntu 16.04 | `vagrant up ubuntu-xenial` | Install on Ubuntu Xenial Xerus. |
|
||||||
| Ubuntu 14.04 | `vagrant up ubuntu-trusty` | Deprecated install on Ubuntu Trusty Tahir. Recommended by legacy upstream. |
|
| Ubuntu 14.04 | `vagrant up ubuntu-trusty` | Deprecated install on Ubuntu Trusty Tahir. Recommended by legacy upstream. |
|
||||||
|
|
7
install
7
install
|
@ -586,7 +586,6 @@ fi
|
||||||
is_debian_dist=false
|
is_debian_dist=false
|
||||||
is_debian_stretch=false
|
is_debian_stretch=false
|
||||||
is_debian_jessie=false
|
is_debian_jessie=false
|
||||||
is_debian_wheezy=false
|
|
||||||
is_ubuntu_dist=false
|
is_ubuntu_dist=false
|
||||||
is_ubuntu_bionic=false
|
is_ubuntu_bionic=false
|
||||||
is_ubuntu_xenial=false
|
is_ubuntu_xenial=false
|
||||||
|
@ -636,9 +635,9 @@ case "${dist}-${code}" in
|
||||||
is_debian_jessie=true
|
is_debian_jessie=true
|
||||||
;;
|
;;
|
||||||
debian-7|debian-wheezy)
|
debian-7|debian-wheezy)
|
||||||
code="wheezy"
|
echo -e "ERROR: Debian Wheezy is archived and does not receive any security or other updates since 2018-05-31." >&2
|
||||||
is_debian_dist=true
|
echo -e "The LibreTime installer dropped support for installing LibreTime on Wheezy in 3.0.0-alpha.6." >&2
|
||||||
is_debian_wheezy=true
|
exit 1
|
||||||
;;
|
;;
|
||||||
centos-7)
|
centos-7)
|
||||||
is_centos_dist=true
|
is_centos_dist=true
|
||||||
|
|
Loading…
Reference in New Issue