Merge pull request #716 from frecuencialibre/podcast-ui-2
Clarify podcast settings and workflow
This commit is contained in:
commit
bc14230281
|
@ -63,6 +63,16 @@ final class LocaleController extends Zend_Controller_Action
|
||||||
//"Adding 1 Item" => _("Adding 1 Item"),
|
//"Adding 1 Item" => _("Adding 1 Item"),
|
||||||
//"Adding %s Items" => _("Adding %s Items"),
|
//"Adding %s Items" => _("Adding %s Items"),
|
||||||
//library/library.js
|
//library/library.js
|
||||||
|
"Add" => _("Add"),
|
||||||
|
"New" => _("New"),
|
||||||
|
"Edit" => _("Edit"),
|
||||||
|
"Add to Schedule" => _("Add to Schedule"),
|
||||||
|
"Add to next show" => _("Add to next show"),
|
||||||
|
"Add to current show" => _("Add to current show"),
|
||||||
|
"Add after selected items" => _("Add after selected items"),
|
||||||
|
"Delete" => _("Delete"),
|
||||||
|
"Publish" => _("Publish"),
|
||||||
|
"Remove" => _("Remove"),
|
||||||
"Edit Metadata" => _("Edit Metadata"),
|
"Edit Metadata" => _("Edit Metadata"),
|
||||||
"Add to selected show" => _("Add to selected show"),
|
"Add to selected show" => _("Add to selected show"),
|
||||||
"Select" => _("Select"),
|
"Select" => _("Select"),
|
||||||
|
@ -108,6 +118,10 @@ final class LocaleController extends Zend_Controller_Action
|
||||||
"Are you sure you want to delete the selected item?" => _("Are you sure you want to delete the selected item?"),
|
"Are you sure you want to delete the selected item?" => _("Are you sure you want to delete the selected item?"),
|
||||||
"Uploading in progress..." => _("Uploading in progress..."),
|
"Uploading in progress..." => _("Uploading in progress..."),
|
||||||
"Retrieving data from the server..." => _("Retrieving data from the server..."),
|
"Retrieving data from the server..." => _("Retrieving data from the server..."),
|
||||||
|
//library/podcast.js
|
||||||
|
"Import" => _("Import"),
|
||||||
|
"Imported?" => _("Imported?"),
|
||||||
|
"View" => _("View"),
|
||||||
// SOUNDCLOUD
|
// SOUNDCLOUD
|
||||||
"Are you sure? SoundCloud stats and comments for this track will be permanently removed." => "Are you sure? SoundCloud stats and comments for this track will be permanently removed.",
|
"Are you sure? SoundCloud stats and comments for this track will be permanently removed." => "Are you sure? SoundCloud stats and comments for this track will be permanently removed.",
|
||||||
"Your track is being deleted from SoundCloud" => "Your track is being deleted from SoundCloud",
|
"Your track is being deleted from SoundCloud" => "Your track is being deleted from SoundCloud",
|
||||||
|
@ -314,6 +328,7 @@ final class LocaleController extends Zend_Controller_Action
|
||||||
"Trim overbooked shows" => _("Trim overbooked shows"),
|
"Trim overbooked shows" => _("Trim overbooked shows"),
|
||||||
"Remove selected scheduled items" => _("Remove selected scheduled items"),
|
"Remove selected scheduled items" => _("Remove selected scheduled items"),
|
||||||
"Jump to the current playing track" => _("Jump to the current playing track"),
|
"Jump to the current playing track" => _("Jump to the current playing track"),
|
||||||
|
"Jump to Current" => _("Jump to Current"),
|
||||||
"Cancel current show" => _("Cancel current show"),
|
"Cancel current show" => _("Cancel current show"),
|
||||||
//already in schedule/schedule.js
|
//already in schedule/schedule.js
|
||||||
//"Cancel Current Show?" => _("Cancel Current Show?"),
|
//"Cancel Current Show?" => _("Cancel Current Show?"),
|
||||||
|
@ -355,6 +370,7 @@ final class LocaleController extends Zend_Controller_Action
|
||||||
"View listener stats" => _("View listener stats"),
|
"View listener stats" => _("View listener stats"),
|
||||||
//dataTables/ColVis.js
|
//dataTables/ColVis.js
|
||||||
"Show / hide columns" => _("Show / hide columns"),
|
"Show / hide columns" => _("Show / hide columns"),
|
||||||
|
"Columns" => _("Columns"),
|
||||||
//datatables.columnFilter.js
|
//datatables.columnFilter.js
|
||||||
"From {from} to {to}" => _("From {from} to {to}"),
|
"From {from} to {to}" => _("From {from} to {to}"),
|
||||||
"kbps" => _("kbps"),
|
"kbps" => _("kbps"),
|
||||||
|
|
|
@ -117,13 +117,13 @@ class Application_Form_GeneralPreferences extends Zend_Form_SubForm
|
||||||
|
|
||||||
|
|
||||||
$podcast_album_override = new Zend_Form_Element_Radio('podcastAlbumOverride');
|
$podcast_album_override = new Zend_Form_Element_Radio('podcastAlbumOverride');
|
||||||
$podcast_album_override->setLabel(_('Podcast Metadata Override'));
|
$podcast_album_override->setLabel(_('Overwrite Podcast Episode Metatags'));
|
||||||
$podcast_album_override->setMultiOptions(array(
|
$podcast_album_override->setMultiOptions(array(
|
||||||
_("Disabled"),
|
_("Disabled"),
|
||||||
_("Enabled"),
|
_("Enabled"),
|
||||||
));
|
));
|
||||||
$podcast_album_override->setValue(Application_Model_Preference::GetPodcastAlbumOverride());
|
$podcast_album_override->setValue(Application_Model_Preference::GetPodcastAlbumOverride());
|
||||||
$podcast_album_override->setDescription(_('Enabling this means that podcast tracks will get their metadata set from the podcast feed values'));
|
$podcast_album_override->setDescription(_('Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks.'));
|
||||||
$podcast_album_override->setSeparator(' '); //No <br> between radio buttons
|
$podcast_album_override->setSeparator(' '); //No <br> between radio buttons
|
||||||
$podcast_album_override->addDecorator('HtmlTag', array('tag' => 'dd',
|
$podcast_album_override->addDecorator('HtmlTag', array('tag' => 'dd',
|
||||||
'id'=>"podcastAlbumOverride-element",
|
'id'=>"podcastAlbumOverride-element",
|
||||||
|
@ -132,14 +132,13 @@ class Application_Form_GeneralPreferences extends Zend_Form_SubForm
|
||||||
$this->addElement($podcast_album_override);
|
$this->addElement($podcast_album_override);
|
||||||
|
|
||||||
$podcast_auto_smartblock = new Zend_Form_Element_Radio('podcastAutoSmartblock');
|
$podcast_auto_smartblock = new Zend_Form_Element_Radio('podcastAutoSmartblock');
|
||||||
$podcast_auto_smartblock->setLabel(_('Podcast Automatic Smartblock and Playlist'));
|
$podcast_auto_smartblock->setLabel(_('Generate a smartblock and a playlist upon creation of a new podcast'));
|
||||||
$podcast_auto_smartblock->setMultiOptions(array(
|
$podcast_auto_smartblock->setMultiOptions(array(
|
||||||
_("Disabled"),
|
_("Disabled"),
|
||||||
_("Enabled"),
|
_("Enabled"),
|
||||||
));
|
));
|
||||||
$podcast_auto_smartblock->setValue(Application_Model_Preference::GetPodcastAutoSmartblock());
|
$podcast_auto_smartblock->setValue(Application_Model_Preference::GetPodcastAutoSmartblock());
|
||||||
$podcast_auto_smartblock->setDescription(_('Enabling this means that a smartblock and playlist matching the newest track of a
|
$podcast_auto_smartblock->setDescription(_('If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the "Overwrite Podcast Episode Metatags" feature must also be enabled in order for smartblocks to reliably find episodes.'));
|
||||||
podcast will be created when a new podcast is added. This depends upon the Podcast Album Override to work.'));
|
|
||||||
$podcast_auto_smartblock->setSeparator(' '); //No <br> between radio buttons
|
$podcast_auto_smartblock->setSeparator(' '); //No <br> between radio buttons
|
||||||
$podcast_auto_smartblock->addDecorator('HtmlTag', array('tag' => 'dd',
|
$podcast_auto_smartblock->addDecorator('HtmlTag', array('tag' => 'dd',
|
||||||
'id'=>"podcastAutoSmartblock-element",
|
'id'=>"podcastAutoSmartblock-element",
|
||||||
|
@ -150,14 +149,14 @@ class Application_Form_GeneralPreferences extends Zend_Form_SubForm
|
||||||
//TODO add and insert Podcast Smartblock and Playlist autogenerate options
|
//TODO add and insert Podcast Smartblock and Playlist autogenerate options
|
||||||
|
|
||||||
$third_party_api = new Zend_Form_Element_Radio('thirdPartyApi');
|
$third_party_api = new Zend_Form_Element_Radio('thirdPartyApi');
|
||||||
$third_party_api->setLabel(_('Public Airtime API'));
|
$third_party_api->setLabel(_('Public LibreTime API'));
|
||||||
$third_party_api->setDescription(_('Required for embeddable schedule widget.'));
|
$third_party_api->setDescription(_('Required for embeddable schedule widget.'));
|
||||||
$third_party_api->setMultiOptions(array(
|
$third_party_api->setMultiOptions(array(
|
||||||
_("Disabled"),
|
_("Disabled"),
|
||||||
_("Enabled"),
|
_("Enabled"),
|
||||||
));
|
));
|
||||||
$third_party_api->setValue(Application_Model_Preference::GetAllow3rdPartyApi());
|
$third_party_api->setValue(Application_Model_Preference::GetAllow3rdPartyApi());
|
||||||
$third_party_api->setDescription(_('Enabling this feature will allow Airtime to provide schedule data
|
$third_party_api->setDescription(_('Enabling this feature will allow LibreTime to provide schedule data
|
||||||
to external widgets that can be embedded in your website.'));
|
to external widgets that can be embedded in your website.'));
|
||||||
$third_party_api->setSeparator(' '); //No <br> between radio buttons
|
$third_party_api->setSeparator(' '); //No <br> between radio buttons
|
||||||
//$third_party_api->addDecorator(new Zend_Form_Decorator_Label(array('tag' => 'dd', 'class' => 'radio-inline-list')));
|
//$third_party_api->addDecorator(new Zend_Form_Decorator_Label(array('tag' => 'dd', 'class' => 'radio-inline-list')));
|
||||||
|
|
|
@ -16,26 +16,18 @@
|
||||||
<a href="{{podcast.url}}" target="_blank" class="podcast-url">{{podcast.url}}</a>
|
<a href="{{podcast.url}}" target="_blank" class="podcast-url">{{podcast.url}}</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="podcast-metadata-row">
|
<div class="podcast-metadata-row">
|
||||||
|
<label for="podcast_auto_ingest"><?php echo _("Download latest episodes:") ?></label>
|
||||||
<div>
|
<div>
|
||||||
<input name="podcast_auto_ingest" id="podcast_auto_ingest" ng-model="podcast.auto_ingest" type="checkbox"/>
|
<input name="podcast_auto_ingest" id="podcast_auto_ingest" ng-model="podcast.auto_ingest" type="checkbox"/>
|
||||||
</div>
|
</div>
|
||||||
<label for="podcast_auto_ingest"><?php echo _("Automatically download latest episodes") ?></label>
|
|
||||||
</div>
|
|
||||||
<div class="podcast-metadata-row">
|
|
||||||
<div>
|
|
||||||
<input name="podcast_album_override" id="podcast_album_override" ng-model="podcast.album_override" type="checkbox" />
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<label for="podcast_album_override"><?php echo _("Overwrite episode track metadata"); ?></label> <span class='album_names help_icon'></span>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="podcast-metadata-row" >
|
<div class="podcast-metadata-row" >
|
||||||
<div></div>
|
<label><?php echo _("Scheduling:") ?></label>
|
||||||
<div>
|
<div>
|
||||||
<button ng-click="createSmartblock()" ng-disabled="!podcast.album_override" class="btn" type="button" name="smartblock">
|
<button ng-click="createSmartblock()" class="btn" type="button" name="smartblock">
|
||||||
<?php echo _("Generate Smartblock and Playlist for Podcast") ?>
|
<?php echo _("Generate Smartblock and Playlist") ?>
|
||||||
</button>
|
</button>
|
||||||
<div class='pc-sb-success success' style='display:none'></span></div>
|
<div class='pc-sb-success success' style='display:none'>"{{podcast.title}}" <br> <?php echo _("Smartblock and Playlist generated") ?></span></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
@ -54,6 +46,6 @@
|
||||||
<?php echo _("Save") ?>
|
<?php echo _("Save") ?>
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<div class='success' style='display:none'></div>
|
<div class='pc-save-success success' style='display:none'></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -391,5 +391,5 @@ INSERT INTO cc_pref("keystr", "valstr") VALUES('whats_new_dialog_viewed', 1);
|
||||||
|
|
||||||
--added for LibreTime to turn on podcast album override by default 3.0.0.alpha6
|
--added for LibreTime to turn on podcast album override by default 3.0.0.alpha6
|
||||||
INSERT INTO cc_pref("keystr", "valstr") VALUES('podcast_album_override', 1);
|
INSERT INTO cc_pref("keystr", "valstr") VALUES('podcast_album_override', 1);
|
||||||
INSERT INTO cc_pref("keystr", "valstr") VALUES('podcast_auto_smartblock', 1);
|
INSERT INTO cc_pref("keystr", "valstr") VALUES('podcast_auto_smartblock', 0);
|
||||||
-- end
|
-- end
|
|
@ -858,6 +858,18 @@ msgstr ""
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2022,6 +2034,10 @@ msgstr ""
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3039,7 +3055,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3053,11 +3077,11 @@ msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3066,7 +3090,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4267,6 +4291,18 @@ msgstr ""
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4848,7 +4884,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -858,6 +858,18 @@ msgstr ""
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2022,6 +2034,10 @@ msgstr ""
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3039,7 +3055,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3053,11 +3077,11 @@ msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3066,7 +3090,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4267,6 +4291,18 @@ msgstr ""
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4848,7 +4884,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -860,6 +860,18 @@ msgstr "Náhled"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Přidat do Playlistu"
|
msgstr "Přidat do Playlistu"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Přidat do chytrého bloku"
|
msgstr "Přidat do chytrého bloku"
|
||||||
|
@ -2026,6 +2038,10 @@ msgstr "Odebrat vybrané naplánované položky"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Přejít na aktuálně přehrávanou skladbu"
|
msgstr "Přejít na aktuálně přehrávanou skladbu"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Zrušit aktuální vysílání"
|
msgstr "Zrušit aktuální vysílání"
|
||||||
|
@ -3043,7 +3059,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Přednastavení Fade Out:"
|
msgstr "Přednastavení Fade Out:"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3057,11 +3081,11 @@ msgid "Enabled"
|
||||||
msgstr "Povoleno"
|
msgstr "Povoleno"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3070,7 +3094,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4273,6 +4297,18 @@ msgstr "Vyberte dny:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Přidat"
|
msgstr "Přidat"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Opakovat dny:"
|
msgstr "Opakovat dny:"
|
||||||
|
@ -4854,7 +4890,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -858,6 +858,18 @@ msgstr ""
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2022,6 +2034,10 @@ msgstr ""
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3039,7 +3055,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3053,11 +3077,11 @@ msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3066,7 +3090,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4267,6 +4291,18 @@ msgstr ""
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4848,7 +4884,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -860,6 +860,18 @@ msgstr "Vorschau"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Zu Playlist hinzufügen"
|
msgstr "Zu Playlist hinzufügen"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Hinzufügen zu Smart Block"
|
msgstr "Hinzufügen zu Smart Block"
|
||||||
|
@ -2039,6 +2051,10 @@ msgstr "Gewähltes Objekt entfernen"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Springe zu aktuellem Titel"
|
msgstr "Springe zu aktuellem Titel"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Aktuelle Sendung abbrechen"
|
msgstr "Aktuelle Sendung abbrechen"
|
||||||
|
@ -3056,7 +3072,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Standard Fade Out (s):"
|
msgstr "Standard Fade Out (s):"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3070,11 +3094,11 @@ msgid "Enabled"
|
||||||
msgstr "Aktiviert"
|
msgstr "Aktiviert"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3083,7 +3107,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4286,6 +4310,18 @@ msgstr "Tag wählen:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Hinzufügen"
|
msgstr "Hinzufügen"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Wiederholungstage:"
|
msgstr "Wiederholungstage:"
|
||||||
|
@ -4867,7 +4903,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -864,6 +864,18 @@ msgstr "Vorschau"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Zur Playlist hinzufügen"
|
msgstr "Zur Playlist hinzufügen"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Zum Smart Block hinzufügen"
|
msgstr "Zum Smart Block hinzufügen"
|
||||||
|
@ -2041,6 +2053,10 @@ msgstr "Ausgewählte Elemente aus dem Programm entfernen"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Springe zu aktuellem Titel"
|
msgstr "Springe zu aktuellem Titel"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Aktuelle Sendung abbrechen"
|
msgstr "Aktuelle Sendung abbrechen"
|
||||||
|
@ -3058,7 +3074,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Standard Fade Out (s):"
|
msgstr "Standard Fade Out (s):"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3072,11 +3096,11 @@ msgid "Enabled"
|
||||||
msgstr "Aktiviert"
|
msgstr "Aktiviert"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3085,7 +3109,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4288,6 +4312,18 @@ msgstr "Tage wählen:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Hinzufüg."
|
msgstr "Hinzufüg."
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Wiederholen Tage:"
|
msgstr "Wiederholen Tage:"
|
||||||
|
@ -4869,7 +4905,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -860,6 +860,18 @@ msgstr "Προεπισκόπηση"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Προσθήκη στη λίστα αναπαραγωγής"
|
msgstr "Προσθήκη στη λίστα αναπαραγωγής"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Προσθήκη στο Smart Block"
|
msgstr "Προσθήκη στο Smart Block"
|
||||||
|
@ -2026,6 +2038,10 @@ msgstr "Αφαίρεση επιλεγμένων προγραμματισμένω
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Μετάβαση στο τρέχον κομμάτι "
|
msgstr "Μετάβαση στο τρέχον κομμάτι "
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Ακύρωση τρέχουσας εκπομπής"
|
msgstr "Ακύρωση τρέχουσας εκπομπής"
|
||||||
|
@ -3043,7 +3059,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Προεπιλεγμένο Fade Out (s):"
|
msgstr "Προεπιλεγμένο Fade Out (s):"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3057,11 +3081,11 @@ msgid "Enabled"
|
||||||
msgstr "Ενεργοποιημένο"
|
msgstr "Ενεργοποιημένο"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3070,7 +3094,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4273,6 +4297,18 @@ msgstr "Επιλέξτε Ημέρες:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Προσθήκη"
|
msgstr "Προσθήκη"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Επανάληψη Ημερών:"
|
msgstr "Επανάληψη Ημερών:"
|
||||||
|
@ -4854,7 +4890,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -860,6 +860,18 @@ msgstr "Preview"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Add to Playlist"
|
msgstr "Add to Playlist"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Add to Smart Block"
|
msgstr "Add to Smart Block"
|
||||||
|
@ -2026,6 +2038,10 @@ msgstr "Remove selected scheduled items"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Jump to the current playing track"
|
msgstr "Jump to the current playing track"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Cancel current show"
|
msgstr "Cancel current show"
|
||||||
|
@ -3043,7 +3059,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Default Fade Out (s):"
|
msgstr "Default Fade Out (s):"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3057,11 +3081,11 @@ msgid "Enabled"
|
||||||
msgstr "Enabled"
|
msgstr "Enabled"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3070,7 +3094,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4273,6 +4297,18 @@ msgstr "Choose Days:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Add"
|
msgstr "Add"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Repeat Days:"
|
msgstr "Repeat Days:"
|
||||||
|
@ -4854,7 +4890,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -861,6 +861,18 @@ msgstr "Preview"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Add to Playlist"
|
msgstr "Add to Playlist"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Add to Smart Block"
|
msgstr "Add to Smart Block"
|
||||||
|
@ -2027,6 +2039,10 @@ msgstr "Remove selected scheduled items"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Jump to the current playing track"
|
msgstr "Jump to the current playing track"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Cancel current show"
|
msgstr "Cancel current show"
|
||||||
|
@ -3044,7 +3060,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Default Fade Out (s):"
|
msgstr "Default Fade Out (s):"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3058,12 +3082,12 @@ msgid "Enabled"
|
||||||
msgstr "Enabled"
|
msgstr "Enabled"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr "Public Airtime API"
|
msgstr "Public LibreTime API"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
msgid "Required for embeddable schedule widget."
|
msgid "Required for embeddable schedule widget."
|
||||||
|
@ -3071,9 +3095,9 @@ msgstr "Required for embeddable schedule widget."
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr "Enabling this feature will allow Airtime to provide schedule data to external widgets that can be embedded in your website."
|
msgstr "Enabling this feature will allow LibreTime to provide schedule data to external widgets that can be embedded in your website."
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:141
|
#: airtime_mvc/application/forms/GeneralPreferences.php:141
|
||||||
msgid "Allowed CORS URLs"
|
msgid "Allowed CORS URLs"
|
||||||
|
@ -4277,6 +4301,18 @@ msgstr "Choose Days:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Add"
|
msgstr "Add"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Repeat Days:"
|
msgstr "Repeat Days:"
|
||||||
|
@ -4858,7 +4894,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -860,6 +860,18 @@ msgstr "Preview"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Add to Playlist"
|
msgstr "Add to Playlist"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Add to Smart Block"
|
msgstr "Add to Smart Block"
|
||||||
|
@ -2026,6 +2038,10 @@ msgstr "Remove selected scheduled items"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Jump to the current playing track"
|
msgstr "Jump to the current playing track"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Cancel current show"
|
msgstr "Cancel current show"
|
||||||
|
@ -3043,7 +3059,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Default Fade Out (s):"
|
msgstr "Default Fade Out (s):"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3057,11 +3081,11 @@ msgid "Enabled"
|
||||||
msgstr "Enabled"
|
msgstr "Enabled"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3070,7 +3094,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4273,6 +4297,18 @@ msgstr "Choose Days:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Add"
|
msgstr "Add"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Repeat Days:"
|
msgstr "Repeat Days:"
|
||||||
|
@ -4854,7 +4890,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
Binary file not shown.
|
@ -870,6 +870,18 @@ msgstr "Previsualizar"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Agregar a lista de reproducción."
|
msgstr "Agregar a lista de reproducción."
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr "Añadir al show próximo"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr "Añadir al show actual"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr "Añadir al show próximo"
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Agregar un bloque inteligente"
|
msgstr "Agregar un bloque inteligente"
|
||||||
|
@ -2036,6 +2048,10 @@ msgstr "Eliminar los ítems programados seleccionados"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Saltar a la pista en reproducción actual"
|
msgstr "Saltar a la pista en reproducción actual"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr "Saltar a la pista actual"
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Cancelar el show actual"
|
msgstr "Cancelar el show actual"
|
||||||
|
@ -3053,9 +3069,17 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Fade Out preseterminado (s):"
|
msgstr "Fade Out preseterminado (s):"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
msgstr "Sobrescribir el álbum del podcast"
|
msgstr "Sobrescribir el álbum del podcast"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:125
|
#: airtime_mvc/application/forms/GeneralPreferences.php:125
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
|
@ -3067,11 +3091,11 @@ msgid "Enabled"
|
||||||
msgstr "Activado"
|
msgstr "Activado"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr "Habilitar esto significa que las pistas del podcast siempre contendrán el nombre del podcast en su campo de álbum."
|
msgstr "Habilitar esto significa que las pistas del podcast siempre contendrán el nombre del podcast en su campo de álbum."
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr "API Pública de Libretime"
|
msgstr "API Pública de Libretime"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3080,7 +3104,7 @@ msgstr "Requerido para el widget de programación incrustado"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Habilitar esta función permite a Libretime proporcionar datos de programación\n"
|
"Habilitar esta función permite a Libretime proporcionar datos de programación\n"
|
||||||
|
@ -4303,6 +4327,18 @@ msgstr "Elige los días:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Añadir"
|
msgstr "Añadir"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr "Nuevo"
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr "Columnas"
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr "Importar"
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr "Importado?"
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Días de repetición:"
|
msgstr "Días de repetición:"
|
||||||
|
@ -4882,9 +4918,21 @@ msgid "Podcast URL: "
|
||||||
msgstr "URL del Podcast: "
|
msgstr "URL del Podcast: "
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
msgstr "¿Descargar automáticamente los últimos episodios?"
|
msgstr "¿Descargar automáticamente los últimos episodios?"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr "Programación:"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr "Generar Bloque y Lista"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
msgid "Override album name with podcast name during ingest."
|
msgid "Override album name with podcast name during ingest."
|
||||||
msgstr "Sobrescribir el nombre del álbum con el nombre del podcast durante el procesamiento"
|
msgstr "Sobrescribir el nombre del álbum con el nombre del podcast durante el procesamiento"
|
||||||
|
|
|
@ -860,6 +860,18 @@ msgstr "Pré-Visualisation"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Ajouter une"
|
msgstr "Ajouter une"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Ajouter un bloc Intelligent"
|
msgstr "Ajouter un bloc Intelligent"
|
||||||
|
@ -2026,6 +2038,10 @@ msgstr "Supprimer les éléments programmés selectionnés"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Aller à la piste en cours de lecture"
|
msgstr "Aller à la piste en cours de lecture"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Annuler l'émission en cours"
|
msgstr "Annuler l'émission en cours"
|
||||||
|
@ -3043,7 +3059,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Fondu en Sorti par défaut (s):"
|
msgstr "Fondu en Sorti par défaut (s):"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3057,11 +3081,11 @@ msgid "Enabled"
|
||||||
msgstr "Activé"
|
msgstr "Activé"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3070,7 +3094,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4273,6 +4297,18 @@ msgstr "Choix des Jours:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Ajouter"
|
msgstr "Ajouter"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Jours de Répétition:"
|
msgstr "Jours de Répétition:"
|
||||||
|
@ -4854,7 +4890,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -859,6 +859,18 @@ msgstr "Pregled"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Dodaj na Popis Pjesama"
|
msgstr "Dodaj na Popis Pjesama"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Dodaj u Smart Block"
|
msgstr "Dodaj u Smart Block"
|
||||||
|
@ -2025,6 +2037,10 @@ msgstr "Ukloni odabrane zakazane stavke"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Skoči na trenutnu sviranu pjesmu"
|
msgstr "Skoči na trenutnu sviranu pjesmu"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Poništi trenutnu emisiju"
|
msgstr "Poništi trenutnu emisiju"
|
||||||
|
@ -3042,7 +3058,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Zadano Zatamnjenje (s):"
|
msgstr "Zadano Zatamnjenje (s):"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3056,11 +3080,11 @@ msgid "Enabled"
|
||||||
msgstr "Omogućeno"
|
msgstr "Omogućeno"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3069,7 +3093,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4272,6 +4296,18 @@ msgstr "Odaberi Dane:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Dodaj"
|
msgstr "Dodaj"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Ponovljeni Dani:"
|
msgstr "Ponovljeni Dani:"
|
||||||
|
@ -4853,7 +4889,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -897,6 +897,18 @@ msgstr "Előnézet"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Hozzáadás lejátszási listához"
|
msgstr "Hozzáadás lejátszási listához"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Hozzáadás Okosblokkhoz"
|
msgstr "Hozzáadás Okosblokkhoz"
|
||||||
|
@ -2176,6 +2188,10 @@ msgstr "A kijelölt ütemezett elemek eltávolítása"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Ugrás a jelenleg játszott sávra"
|
msgstr "Ugrás a jelenleg játszott sávra"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "A jelenlegi műsor megszakítása"
|
msgstr "A jelenlegi műsor megszakítása"
|
||||||
|
@ -3211,9 +3227,17 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Alapértelmezett Leúsztatás (mp)"
|
msgstr "Alapértelmezett Leúsztatás (mp)"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
msgstr "Podcast album felülírása"
|
msgstr "Podcast album felülírása"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:125
|
#: airtime_mvc/application/forms/GeneralPreferences.php:125
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
|
@ -3226,14 +3250,12 @@ msgstr "Engedélyezve"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this means that podcast tracks will always contain the podcast name"
|
"Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
" in their album field."
|
msgstr "Ha engedélyezett, a podcast sávok album mezőjébe mindig a podcast neve kerül."
|
||||||
msgstr ""
|
|
||||||
"Ha engedélyezett, a podcast sávok album mezőjébe mindig a podcast neve kerül."
|
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr "Public Airtime API"
|
msgstr "Public LibreTime API"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
msgid "Required for embeddable schedule widget."
|
msgid "Required for embeddable schedule widget."
|
||||||
|
@ -3241,7 +3263,7 @@ msgstr "Kötelező a beágyazható ütemezés felületi elemhez."
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be"
|
" to external widgets that can be"
|
||||||
" embedded in your website."
|
" embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4538,6 +4560,18 @@ msgstr "Válasszon napokat:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Hozzáadás"
|
msgstr "Hozzáadás"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Ismétlések napjai:"
|
msgstr "Ismétlések napjai:"
|
||||||
|
@ -5177,9 +5211,21 @@ msgid "Podcast URL: "
|
||||||
msgstr "Podcast URL: "
|
msgstr "Podcast URL: "
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
msgstr "Legutolsó epizódok automatikus letöltése?"
|
msgstr "Legutolsó epizódok automatikus letöltése?"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
msgid "Override album name with podcast name during ingest."
|
msgid "Override album name with podcast name during ingest."
|
||||||
msgstr "Album nevének felülírása a podcast nevével a beküldés során."
|
msgstr "Album nevének felülírása a podcast nevével a beküldés során."
|
||||||
|
|
|
@ -855,6 +855,18 @@ msgstr ""
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2019,6 +2031,10 @@ msgstr ""
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3036,7 +3052,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3050,11 +3074,11 @@ msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3063,7 +3087,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4264,6 +4288,18 @@ msgstr ""
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4845,7 +4881,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -858,6 +858,18 @@ msgstr ""
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2022,6 +2034,10 @@ msgstr ""
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3039,7 +3055,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3053,11 +3077,11 @@ msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3066,7 +3090,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4267,6 +4291,18 @@ msgstr ""
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4848,7 +4884,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -858,6 +858,18 @@ msgstr ""
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2022,6 +2034,10 @@ msgstr ""
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3039,7 +3055,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3053,11 +3077,11 @@ msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3066,7 +3090,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4267,6 +4291,18 @@ msgstr ""
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4848,7 +4884,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -861,6 +861,18 @@ msgstr "Anteprima"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Aggiungi a playlist"
|
msgstr "Aggiungi a playlist"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Aggiungi al blocco intelligente"
|
msgstr "Aggiungi al blocco intelligente"
|
||||||
|
@ -2027,6 +2039,10 @@ msgstr "Rimuovi la voce selezionata"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Salta alla traccia dell'attuale playlist"
|
msgstr "Salta alla traccia dell'attuale playlist"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Cancella show attuale"
|
msgstr "Cancella show attuale"
|
||||||
|
@ -3044,7 +3060,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3058,11 +3082,11 @@ msgid "Enabled"
|
||||||
msgstr "Abilitato"
|
msgstr "Abilitato"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3071,7 +3095,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4274,6 +4298,18 @@ msgstr "Scegli giorni:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Aggiungi "
|
msgstr "Aggiungi "
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Ripeti giorni:"
|
msgstr "Ripeti giorni:"
|
||||||
|
@ -4855,7 +4891,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -861,6 +861,18 @@ msgstr "プレビュー"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "プレイリストに追加"
|
msgstr "プレイリストに追加"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "スマートブロックに追加"
|
msgstr "スマートブロックに追加"
|
||||||
|
@ -2025,6 +2037,10 @@ msgstr "選択した項目を削除"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "現在再生中のトラックに移動"
|
msgstr "現在再生中のトラックに移動"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "配信中の番組をキャンセル"
|
msgstr "配信中の番組をキャンセル"
|
||||||
|
@ -3042,7 +3058,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "デフォルトフェードアウト(初期値):"
|
msgstr "デフォルトフェードアウト(初期値):"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3056,11 +3080,11 @@ msgid "Enabled"
|
||||||
msgstr "有効"
|
msgstr "有効"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3069,7 +3093,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4272,6 +4296,18 @@ msgstr "日付選択: "
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "追加"
|
msgstr "追加"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "再配信日:"
|
msgstr "再配信日:"
|
||||||
|
@ -4853,7 +4889,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -856,6 +856,18 @@ msgstr ""
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2020,6 +2032,10 @@ msgstr ""
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3037,7 +3053,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3051,11 +3075,11 @@ msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3064,7 +3088,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4265,6 +4289,18 @@ msgstr ""
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4846,7 +4882,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -858,6 +858,18 @@ msgstr ""
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2022,6 +2034,10 @@ msgstr ""
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3039,7 +3055,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3053,11 +3077,11 @@ msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3066,7 +3090,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4267,6 +4291,18 @@ msgstr ""
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4848,7 +4884,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -859,6 +859,18 @@ msgstr "프리뷰"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "재생 목록에 추가"
|
msgstr "재생 목록에 추가"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "스마트 블록에 추가"
|
msgstr "스마트 블록에 추가"
|
||||||
|
@ -2023,6 +2035,10 @@ msgstr "선택된 아이템 제거"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "현재 방송중인 트랙으로 가기"
|
msgstr "현재 방송중인 트랙으로 가기"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "현재 쇼 취소"
|
msgstr "현재 쇼 취소"
|
||||||
|
@ -3040,7 +3056,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "기본 페이드 아웃(s)"
|
msgstr "기본 페이드 아웃(s)"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3054,11 +3078,11 @@ msgid "Enabled"
|
||||||
msgstr "사용"
|
msgstr "사용"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3067,7 +3091,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4270,6 +4294,18 @@ msgstr "날짜 선택"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "추가"
|
msgstr "추가"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "반복 날짜:"
|
msgstr "반복 날짜:"
|
||||||
|
@ -4851,7 +4887,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -859,6 +859,18 @@ msgstr ""
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2023,6 +2035,10 @@ msgstr ""
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3040,7 +3056,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3054,11 +3078,11 @@ msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3067,7 +3091,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4268,6 +4292,18 @@ msgstr ""
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4849,7 +4885,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -863,6 +863,18 @@ msgstr "Voorbeeld"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Toevoegen aan afspeellijst"
|
msgstr "Toevoegen aan afspeellijst"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Toevoegen aan slimme blok"
|
msgstr "Toevoegen aan slimme blok"
|
||||||
|
@ -2029,6 +2041,10 @@ msgstr "Geselecteerde geplande items verwijderen"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Jump naar de huidige playing track"
|
msgstr "Jump naar de huidige playing track"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Annuleren van de huidige show"
|
msgstr "Annuleren van de huidige show"
|
||||||
|
@ -3046,7 +3062,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "standaard fade uit (s):"
|
msgstr "standaard fade uit (s):"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3060,11 +3084,11 @@ msgid "Enabled"
|
||||||
msgstr "Ingeschakeld"
|
msgstr "Ingeschakeld"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3073,7 +3097,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4276,6 +4300,18 @@ msgstr "Kies dagen:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "toevoegen"
|
msgstr "toevoegen"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Herhaal dagen:"
|
msgstr "Herhaal dagen:"
|
||||||
|
@ -4857,7 +4893,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -860,6 +860,18 @@ msgstr "Podgląd"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Dodaj do listy odtwarzania"
|
msgstr "Dodaj do listy odtwarzania"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Dodaj do smartblocku"
|
msgstr "Dodaj do smartblocku"
|
||||||
|
@ -2026,6 +2038,10 @@ msgstr "Usuń wybrane elementy"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Przejdź do obecnie odtwarzanej ściezki"
|
msgstr "Przejdź do obecnie odtwarzanej ściezki"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Skasuj obecną audycję"
|
msgstr "Skasuj obecną audycję"
|
||||||
|
@ -3043,7 +3059,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3057,11 +3081,11 @@ msgid "Enabled"
|
||||||
msgstr "Włączone"
|
msgstr "Włączone"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3070,7 +3094,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4273,6 +4297,18 @@ msgstr "Wybierz dni:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Dodaj"
|
msgstr "Dodaj"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Dni powtarzania:"
|
msgstr "Dni powtarzania:"
|
||||||
|
@ -4854,7 +4890,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -861,6 +861,18 @@ msgstr "Visualizar"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Adicionar à Lista"
|
msgstr "Adicionar à Lista"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Adicionar ao Bloco"
|
msgstr "Adicionar ao Bloco"
|
||||||
|
@ -2027,6 +2039,10 @@ msgstr "Remover seleção de itens agendados"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Saltar para faixa em execução"
|
msgstr "Saltar para faixa em execução"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Cancelar programa atual"
|
msgstr "Cancelar programa atual"
|
||||||
|
@ -3044,7 +3060,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3058,11 +3082,11 @@ msgid "Enabled"
|
||||||
msgstr "Ativo"
|
msgstr "Ativo"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3071,7 +3095,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4274,6 +4298,18 @@ msgstr "Selecione os Dias:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Adicionar"
|
msgstr "Adicionar"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Dias para reexibir:"
|
msgstr "Dias para reexibir:"
|
||||||
|
@ -4855,7 +4891,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -858,6 +858,18 @@ msgstr ""
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2022,6 +2034,10 @@ msgstr ""
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3039,7 +3055,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3053,11 +3077,11 @@ msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3066,7 +3090,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4267,6 +4291,18 @@ msgstr ""
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4848,7 +4884,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -875,6 +875,18 @@ msgstr "Прослушать"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Добавить в плейлист"
|
msgstr "Добавить в плейлист"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Добавить в умный блок"
|
msgstr "Добавить в умный блок"
|
||||||
|
@ -2041,6 +2053,10 @@ msgstr "Удалить выбранные запланированные эле
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Перейти к текущей проигрываемой дорожке"
|
msgstr "Перейти к текущей проигрываемой дорожке"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Отмена текущей программы"
|
msgstr "Отмена текущей программы"
|
||||||
|
@ -3059,9 +3075,17 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Затухание по умолчанию:"
|
msgstr "Затухание по умолчанию:"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
msgstr "Перезаписать альбом подкаста"
|
msgstr "Перезаписать альбом подкаста"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:125
|
#: airtime_mvc/application/forms/GeneralPreferences.php:125
|
||||||
msgid "Disabled"
|
msgid "Disabled"
|
||||||
|
@ -3073,11 +3097,11 @@ msgid "Enabled"
|
||||||
msgstr "Активировано"
|
msgstr "Активировано"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr "Включение данной функции будет записывать в файлы подкастов их название поле альбома"
|
msgstr "Включение данной функции будет записывать в файлы подкастов их название поле альбома"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr "Публичный LibreTime API"
|
msgstr "Публичный LibreTime API"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3086,7 +3110,7 @@ msgstr "Требуется для встраиваемого виджета-ра
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Активация данной функции позволит LibreTime предоставлять данные\n"
|
"Активация данной функции позволит LibreTime предоставлять данные\n"
|
||||||
|
@ -4311,6 +4335,18 @@ msgstr "Выберите дни:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Добавить"
|
msgstr "Добавить"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Повторить в дни:"
|
msgstr "Повторить в дни:"
|
||||||
|
@ -4894,9 +4930,21 @@ msgid "Podcast URL: "
|
||||||
msgstr "Ссылка на подкаст: "
|
msgstr "Ссылка на подкаст: "
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
msgstr "Автоматически загружать последние эпизоды?"
|
msgstr "Автоматически загружать последние эпизоды?"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
msgid "Override album name with podcast name during ingest."
|
msgid "Override album name with podcast name during ingest."
|
||||||
msgstr "Перезаписывать название альбома на название подкаста в процессе загрузки."
|
msgstr "Перезаписывать название альбома на название подкаста в процессе загрузки."
|
||||||
|
|
|
@ -858,6 +858,18 @@ msgstr ""
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2022,6 +2034,10 @@ msgstr ""
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3039,7 +3055,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3053,11 +3077,11 @@ msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3066,7 +3090,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4267,6 +4291,18 @@ msgstr ""
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4848,7 +4884,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -859,6 +859,18 @@ msgstr "Преглед"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Додај на Списак Песама"
|
msgstr "Додај на Списак Песама"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Додај у Smart Block"
|
msgstr "Додај у Smart Block"
|
||||||
|
@ -2025,6 +2037,10 @@ msgstr "Уклони одабране заказане ставке"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Скочи на тренутну свирану песму"
|
msgstr "Скочи на тренутну свирану песму"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Поништи тренутну емисију"
|
msgstr "Поништи тренутну емисију"
|
||||||
|
@ -3042,7 +3058,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Подразумевано Затамњење (s):"
|
msgstr "Подразумевано Затамњење (s):"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3056,11 +3080,11 @@ msgid "Enabled"
|
||||||
msgstr "Омогућено"
|
msgstr "Омогућено"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3069,7 +3093,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4272,6 +4296,18 @@ msgstr "Одабери Дане:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Додај"
|
msgstr "Додај"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Поновљени Дани:"
|
msgstr "Поновљени Дани:"
|
||||||
|
@ -4853,7 +4889,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -859,6 +859,18 @@ msgstr "Pregled"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "Dodaj na Spisak Pesama"
|
msgstr "Dodaj na Spisak Pesama"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "Dodaj u Smart Block"
|
msgstr "Dodaj u Smart Block"
|
||||||
|
@ -2025,6 +2037,10 @@ msgstr "Ukloni odabrane zakazane stavke"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "Skoči na trenutnu sviranu pesmu"
|
msgstr "Skoči na trenutnu sviranu pesmu"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "Poništi trenutnu emisiju"
|
msgstr "Poništi trenutnu emisiju"
|
||||||
|
@ -3042,7 +3058,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Podrazumevano Zatamnjenje (s):"
|
msgstr "Podrazumevano Zatamnjenje (s):"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3056,11 +3080,11 @@ msgid "Enabled"
|
||||||
msgstr "Omogućeno"
|
msgstr "Omogućeno"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3069,7 +3093,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4272,6 +4296,18 @@ msgstr "Odaberi Dane:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Dodaj"
|
msgstr "Dodaj"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "Ponovljeni Dani:"
|
msgstr "Ponovljeni Dani:"
|
||||||
|
@ -4853,7 +4889,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -858,6 +858,18 @@ msgstr ""
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2022,6 +2034,10 @@ msgstr ""
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3039,7 +3055,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3053,11 +3077,11 @@ msgid "Enabled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3066,7 +3090,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4267,6 +4291,18 @@ msgstr ""
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4848,7 +4884,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -859,6 +859,18 @@ msgstr "Ön izleme"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -2023,6 +2035,10 @@ msgstr ""
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -3040,7 +3056,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "Varsayılan Fade Out geçişi (s)"
|
msgstr "Varsayılan Fade Out geçişi (s)"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3054,11 +3078,11 @@ msgid "Enabled"
|
||||||
msgstr "Aktif"
|
msgstr "Aktif"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3067,7 +3091,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4268,6 +4292,18 @@ msgstr ""
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Ekle"
|
msgstr "Ekle"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -4849,7 +4885,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -859,6 +859,18 @@ msgstr "预览"
|
||||||
msgid "Add to Playlist"
|
msgid "Add to Playlist"
|
||||||
msgstr "添加到播放列表"
|
msgstr "添加到播放列表"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:70
|
||||||
|
msgid "Add to next show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:71
|
||||||
|
msgid "Add to current show"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||||
|
msgid "Add to Schedule"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LibraryController.php:114
|
#: airtime_mvc/application/controllers/LibraryController.php:114
|
||||||
msgid "Add to Smart Block"
|
msgid "Add to Smart Block"
|
||||||
msgstr "添加到智能模块"
|
msgstr "添加到智能模块"
|
||||||
|
@ -2025,6 +2037,10 @@ msgstr "移除所选的项目"
|
||||||
msgid "Jump to the current playing track"
|
msgid "Jump to the current playing track"
|
||||||
msgstr "跳转到当前播放的项目"
|
msgstr "跳转到当前播放的项目"
|
||||||
|
|
||||||
|
#: airtime_mvc/application/controllers/LocaleController.php:331
|
||||||
|
msgid "Jump to Current"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/controllers/LocaleController.php:314
|
#: airtime_mvc/application/controllers/LocaleController.php:314
|
||||||
msgid "Cancel current show"
|
msgid "Cancel current show"
|
||||||
msgstr "取消当前的节目"
|
msgstr "取消当前的节目"
|
||||||
|
@ -3042,7 +3058,15 @@ msgid "Default Fade Out (s):"
|
||||||
msgstr "默认淡出效果(秒):"
|
msgstr "默认淡出效果(秒):"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
#: airtime_mvc/application/forms/GeneralPreferences.php:105
|
||||||
msgid "Podcast Album Override"
|
msgid "Overwrite Podcast Episode Metatags"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:120
|
||||||
|
msgid "Generate a smartblock and a playlist upon creation of a new podcast"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/forms/GeneralPreferences.php:126
|
||||||
|
msgid "If this option is enabled, a new smartblock and playlist matching the newest track of a podcast will be generated immediately upon creation of a new podcast. Note that the \"Overwrite Podcast Episode Metatags\" feature must also be enabled in order for smartblocks to reliably find episodes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
#: airtime_mvc/application/forms/GeneralPreferences.php:107
|
||||||
|
@ -3056,11 +3080,11 @@ msgid "Enabled"
|
||||||
msgstr "启用"
|
msgstr "启用"
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
#: airtime_mvc/application/forms/GeneralPreferences.php:111
|
||||||
msgid "Enabling this means that podcast tracks will always contain the podcast name in their album field."
|
msgid "Enabling this feature will cause podcast episode tracks to have their Artist, Title, and Album metatags set from podcast feed values. Note that enabling this feature is recommended in order to ensure reliable scheduling of episodes via smartblocks."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
#: airtime_mvc/application/forms/GeneralPreferences.php:122
|
||||||
msgid "Public Airtime API"
|
msgid "Public LibreTime API"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
#: airtime_mvc/application/forms/GeneralPreferences.php:123
|
||||||
|
@ -3069,7 +3093,7 @@ msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
#: airtime_mvc/application/forms/GeneralPreferences.php:129
|
||||||
msgid ""
|
msgid ""
|
||||||
"Enabling this feature will allow Airtime to provide schedule data\n"
|
"Enabling this feature will allow LibreTime to provide schedule data\n"
|
||||||
" to external widgets that can be embedded in your website."
|
" to external widgets that can be embedded in your website."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -4272,6 +4296,18 @@ msgstr "选择天数:"
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "添加"
|
msgstr "添加"
|
||||||
|
|
||||||
|
msgid "New"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Columns"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Import"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Imported?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
#: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4
|
||||||
msgid "Repeat Days:"
|
msgid "Repeat Days:"
|
||||||
msgstr "重复天数:"
|
msgstr "重复天数:"
|
||||||
|
@ -4853,7 +4889,19 @@ msgid "Podcast URL: "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:22
|
||||||
msgid "Automatically download latest episodes?"
|
msgid "Download latest episodes:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
msgid "Scheduling:"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28
|
||||||
|
msgid "Generate Smartblock and Playlist"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30
|
||||||
|
msgid "Smartblock and Playlist Generated"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
#: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26
|
||||||
|
|
|
@ -1966,6 +1966,10 @@ div.success{
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
div.success.pc-sb-success {
|
||||||
|
height: auto;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
div.errors, span.errors{
|
div.errors, span.errors{
|
||||||
color:#902d2d;
|
color:#902d2d;
|
||||||
|
@ -4062,7 +4066,7 @@ li .ui-state-hover {
|
||||||
-o-flex: 1 100%;
|
-o-flex: 1 100%;
|
||||||
flex: 1 100%;
|
flex: 1 100%;
|
||||||
/*margin: 4px 0 0 !important;*/
|
/*margin: 4px 0 0 !important;*/
|
||||||
min-height: 0;
|
min-height: 200px;
|
||||||
-webkit-box-sizing: border-box;
|
-webkit-box-sizing: border-box;
|
||||||
-moz-box-sizing: border-box;
|
-moz-box-sizing: border-box;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
@ -4121,19 +4125,24 @@ li .ui-state-hover {
|
||||||
float: none;
|
float: none;
|
||||||
}
|
}
|
||||||
.podcast-metadata-row > *:first-child {
|
.podcast-metadata-row > *:first-child {
|
||||||
flex: 0 0 25%;
|
flex: 0 0 40%;
|
||||||
max-width: 25%;
|
max-width: 40%;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
padding-right: 2%;
|
padding-right: 2%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
.podcast-metadata-row > *:last-child {
|
.podcast-metadata-row > *:last-child {
|
||||||
flex: 0 0 75%;
|
flex: 0 0 60%;
|
||||||
max-width: 75%;
|
max-width: 60%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
.editor_pane_wrapper .podcast-metadata-row:last-child {
|
||||||
|
align-items: flex-start;
|
||||||
|
}
|
||||||
|
.editor_pane_wrapper .podcast-metadata-row:last-child label {
|
||||||
|
padding-top: 5px;
|
||||||
|
}
|
||||||
.podcast-url {
|
.podcast-url {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
|
@ -11,7 +11,7 @@ $(document).ready(function() {
|
||||||
//});
|
//});
|
||||||
|
|
||||||
//this statement tells the browser to fade out any success message after 5 seconds
|
//this statement tells the browser to fade out any success message after 5 seconds
|
||||||
setTimeout(function(){$(".success").fadeOut("slow", function(){$(this).empty()});}, 5000);
|
setTimeout(function(){$(".success").fadeOut("slow")}, 5000);
|
||||||
});
|
});
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -71,7 +71,6 @@ var AIRTIME = (function (AIRTIME) {
|
||||||
function() {
|
function() {
|
||||||
// show success message
|
// show success message
|
||||||
var successMsg = $('.active-tab .pc-sb-success')
|
var successMsg = $('.active-tab .pc-sb-success')
|
||||||
successMsg.text($.i18n._('Smartblock and playlist generated'));
|
|
||||||
successMsg.show("fast");
|
successMsg.show("fast");
|
||||||
setTimeout(function(){
|
setTimeout(function(){
|
||||||
successMsg.hide("fast");
|
successMsg.hide("fast");
|
||||||
|
@ -85,6 +84,7 @@ var AIRTIME = (function (AIRTIME) {
|
||||||
})
|
})
|
||||||
.success(function () {
|
.success(function () {
|
||||||
AIRTIME.library.podcastDataTable.fnDraw();
|
AIRTIME.library.podcastDataTable.fnDraw();
|
||||||
|
self.$scope.tab.setName(self.$scope.podcast.title);
|
||||||
});
|
});
|
||||||
|
|
||||||
// redraw list of smartblocks just in case they have it visible on the left
|
// redraw list of smartblocks just in case they have it visible on the left
|
||||||
|
@ -636,7 +636,7 @@ var AIRTIME = (function (AIRTIME) {
|
||||||
podcastEpisodeButtons = AIRTIME.widgets.Table.getStandardToolbarButtons();
|
podcastEpisodeButtons = AIRTIME.widgets.Table.getStandardToolbarButtons();
|
||||||
$.extend(true, podcastEpisodeButtons[AIRTIME.widgets.Table.TOOLBAR_BUTTON_ROLES.NEW],
|
$.extend(true, podcastEpisodeButtons[AIRTIME.widgets.Table.TOOLBAR_BUTTON_ROLES.NEW],
|
||||||
{
|
{
|
||||||
title: "Import",
|
title: $.i18n._("Import"),
|
||||||
eventHandlers: {
|
eventHandlers: {
|
||||||
click: function () {
|
click: function () {
|
||||||
var episodes = mod.episodeTables[podcastId].getSelectedRows();
|
var episodes = mod.episodeTables[podcastId].getSelectedRows();
|
||||||
|
|
Loading…
Reference in New Issue