From aadc254c88870cae508a23fac77b6848728f231a Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 22 Jan 2019 19:06:41 -0600 Subject: [PATCH 1/9] remove individual podcast "overwrite" checkbox, improve layout --- .../views/scripts/podcast/podcast.phtml | 16 ++++------------ airtime_mvc/public/css/styles.css | 8 ++++---- 2 files changed, 8 insertions(+), 16 deletions(-) diff --git a/airtime_mvc/application/views/scripts/podcast/podcast.phtml b/airtime_mvc/application/views/scripts/podcast/podcast.phtml index f2b7b57e0..2f44bb0fe 100644 --- a/airtime_mvc/application/views/scripts/podcast/podcast.phtml +++ b/airtime_mvc/application/views/scripts/podcast/podcast.phtml @@ -16,24 +16,16 @@ {{podcast.url}}
+
- -
-
-
- -
-
- -
-
+
-
diff --git a/airtime_mvc/public/css/styles.css b/airtime_mvc/public/css/styles.css index 8327080a4..fda213553 100644 --- a/airtime_mvc/public/css/styles.css +++ b/airtime_mvc/public/css/styles.css @@ -4145,15 +4145,15 @@ li .ui-state-hover { float: none; } .podcast-metadata-row > *:first-child { - flex: 0 0 25%; - max-width: 25%; + flex: 0 0 40%; + max-width: 40%; text-align: right; padding-right: 2%; box-sizing: border-box; } .podcast-metadata-row > *:last-child { - flex: 0 0 75%; - max-width: 75%; + flex: 0 0 60%; + max-width: 60%; box-sizing: border-box; text-align: left; } From 42c1731273ad8d71db8b8a4cbf07d3515896e69f Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 22 Jan 2019 19:54:34 -0600 Subject: [PATCH 2/9] Improve general settings labels --- .../application/forms/GeneralPreferences.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/airtime_mvc/application/forms/GeneralPreferences.php b/airtime_mvc/application/forms/GeneralPreferences.php index ec9390e5c..2b6cb2db9 100644 --- a/airtime_mvc/application/forms/GeneralPreferences.php +++ b/airtime_mvc/application/forms/GeneralPreferences.php @@ -102,13 +102,13 @@ class Application_Form_GeneralPreferences extends Zend_Form_SubForm $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( _("Disabled"), _("Enabled"), )); $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
between radio buttons $podcast_album_override->addDecorator('HtmlTag', array('tag' => 'dd', 'id'=>"podcastAlbumOverride-element", @@ -117,14 +117,13 @@ class Application_Form_GeneralPreferences extends Zend_Form_SubForm $this->addElement($podcast_album_override); $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( _("Disabled"), _("Enabled"), )); $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 will be created when a new podcast is added. This depends upon the Podcast Album Override to work.')); + $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_auto_smartblock->setSeparator(' '); //No
between radio buttons $podcast_auto_smartblock->addDecorator('HtmlTag', array('tag' => 'dd', 'id'=>"podcastAutoSmartblock-element", @@ -135,14 +134,14 @@ class Application_Form_GeneralPreferences extends Zend_Form_SubForm //TODO add and insert Podcast Smartblock and Playlist autogenerate options $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->setMultiOptions(array( _("Disabled"), _("Enabled"), )); $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.')); $third_party_api->setSeparator(' '); //No
between radio buttons //$third_party_api->addDecorator(new Zend_Form_Decorator_Label(array('tag' => 'dd', 'class' => 'radio-inline-list'))); From 455d3a15006cf3fbfaa8acc390bfb37207f86588 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 22 Jan 2019 20:01:49 -0600 Subject: [PATCH 3/9] disable by default podcast playlist/smartblock generation setting --- airtime_mvc/build/sql/defaultdata.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/build/sql/defaultdata.sql b/airtime_mvc/build/sql/defaultdata.sql index 818276196..7712e23f2 100644 --- a/airtime_mvc/build/sql/defaultdata.sql +++ b/airtime_mvc/build/sql/defaultdata.sql @@ -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 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 \ No newline at end of file From d2167f6f2c155570c9e38b64f6fd33ce4713b2aa Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 23 Jan 2019 07:18:54 -0600 Subject: [PATCH 4/9] update podcast tab name upon smartblock generation --- airtime_mvc/public/js/airtime/library/podcast.js | 1 + 1 file changed, 1 insertion(+) diff --git a/airtime_mvc/public/js/airtime/library/podcast.js b/airtime_mvc/public/js/airtime/library/podcast.js index 99805f1bc..8365ba32d 100644 --- a/airtime_mvc/public/js/airtime/library/podcast.js +++ b/airtime_mvc/public/js/airtime/library/podcast.js @@ -85,6 +85,7 @@ var AIRTIME = (function (AIRTIME) { }) .success(function () { 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 From b6e554edfe982542002100085d1db3ce7b0743e3 Mon Sep 17 00:00:00 2001 From: r Date: Sat, 23 Feb 2019 01:55:38 -0600 Subject: [PATCH 5/9] include gemerated smartblock/playlist name in success message --- .../application/views/scripts/podcast/podcast.phtml | 4 ++-- airtime_mvc/public/css/styles.css | 11 ++++++++++- airtime_mvc/public/js/airtime/common/common.js | 2 +- airtime_mvc/public/js/airtime/library/podcast.js | 1 - 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/airtime_mvc/application/views/scripts/podcast/podcast.phtml b/airtime_mvc/application/views/scripts/podcast/podcast.phtml index 2f44bb0fe..d008ade42 100644 --- a/airtime_mvc/application/views/scripts/podcast/podcast.phtml +++ b/airtime_mvc/application/views/scripts/podcast/podcast.phtml @@ -27,7 +27,7 @@ - +
@@ -46,6 +46,6 @@ - + diff --git a/airtime_mvc/public/css/styles.css b/airtime_mvc/public/css/styles.css index fda213553..3015350a0 100644 --- a/airtime_mvc/public/css/styles.css +++ b/airtime_mvc/public/css/styles.css @@ -1990,6 +1990,10 @@ div.success{ -moz-box-sizing: border-box; box-sizing: border-box; } +div.success.pc-sb-success { + height: auto; + text-align: left; +} div.errors, span.errors{ color:#902d2d; @@ -4157,7 +4161,12 @@ li .ui-state-hover { box-sizing: border-box; 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 { white-space: nowrap; overflow: hidden; diff --git a/airtime_mvc/public/js/airtime/common/common.js b/airtime_mvc/public/js/airtime/common/common.js index 41a25395c..9f27a1d03 100644 --- a/airtime_mvc/public/js/airtime/common/common.js +++ b/airtime_mvc/public/js/airtime/common/common.js @@ -11,7 +11,7 @@ $(document).ready(function() { //}); //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); }); /* diff --git a/airtime_mvc/public/js/airtime/library/podcast.js b/airtime_mvc/public/js/airtime/library/podcast.js index 8365ba32d..7682b868b 100644 --- a/airtime_mvc/public/js/airtime/library/podcast.js +++ b/airtime_mvc/public/js/airtime/library/podcast.js @@ -71,7 +71,6 @@ var AIRTIME = (function (AIRTIME) { function() { // show success message var successMsg = $('.active-tab .pc-sb-success') - successMsg.text($.i18n._('Smartblock and playlist generated')); successMsg.show("fast"); setTimeout(function(){ successMsg.hide("fast"); From 04388f314704fc96624c83e95a3424ca0f004788 Mon Sep 17 00:00:00 2001 From: r Date: Sat, 23 Feb 2019 10:18:41 -0600 Subject: [PATCH 6/9] ensure visibility of podcast episode table on smaller screens --- airtime_mvc/public/css/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/public/css/styles.css b/airtime_mvc/public/css/styles.css index 3015350a0..456d1389d 100644 --- a/airtime_mvc/public/css/styles.css +++ b/airtime_mvc/public/css/styles.css @@ -4090,7 +4090,7 @@ li .ui-state-hover { -o-flex: 1 100%; flex: 1 100%; /*margin: 4px 0 0 !important;*/ - min-height: 0; + min-height: 200px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; From 8d6420f934fad659f709869bf883005cbabf3c66 Mon Sep 17 00:00:00 2001 From: r Date: Sun, 24 Feb 2019 11:59:20 -0600 Subject: [PATCH 7/9] update podcast UI translation strings --- airtime_mvc/locale/ast/LC_MESSAGES/airtime.po | 30 +++++++++++++--- airtime_mvc/locale/az/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/cs_CZ/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/da_DK/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/de_AT/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/de_DE/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/el_GR/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/en_CA/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/en_GB/LC_MESSAGES/airtime.po | 34 ++++++++++++++---- .../locale/en_US/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/es_ES/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/fr_FR/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/hr_HR/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/hu_HU/LC_MESSAGES/airtime.po | 36 ++++++++++++++----- airtime_mvc/locale/hy/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/hy_AM/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/id_ID/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/it_IT/LC_MESSAGES/airtime.po | 30 +++++++++++++--- airtime_mvc/locale/ja/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/ja_JP/LC_MESSAGES/airtime.po | 30 +++++++++++++--- airtime_mvc/locale/ka/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/ko_KR/LC_MESSAGES/airtime.po | 30 +++++++++++++--- airtime_mvc/locale/lt/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/nl_NL/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/pl_PL/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/pt_BR/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/ro_RO/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/ru_RU/LC_MESSAGES/airtime.po | 30 +++++++++++++--- airtime_mvc/locale/si/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/sr_RS/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/sr_RS@latin/LC_MESSAGES/airtime.po | 30 +++++++++++++--- airtime_mvc/locale/template/airtime.po | 30 +++++++++++++--- airtime_mvc/locale/tr/LC_MESSAGES/airtime.po | 30 +++++++++++++--- .../locale/zh_CN/LC_MESSAGES/airtime.po | 30 +++++++++++++--- 34 files changed, 854 insertions(+), 176 deletions(-) diff --git a/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po index b7e4e67f3..425b8610a 100644 --- a/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po @@ -3039,7 +3039,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3053,11 +3061,11 @@ msgid "Enabled" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3066,7 +3074,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4848,7 +4856,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po index 7a97e7e58..bcf3d0621 100644 --- a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po @@ -3039,7 +3039,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3053,11 +3061,11 @@ msgid "Enabled" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3066,7 +3074,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4848,7 +4856,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po index 18c9e24e0..1c6248a75 100644 --- a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po @@ -3043,7 +3043,15 @@ msgid "Default Fade Out (s):" msgstr "Přednastavení Fade Out:" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3057,11 +3065,11 @@ msgid "Enabled" msgstr "Povoleno" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3070,7 +3078,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4854,7 +4862,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po b/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po index c39759bb5..0bfaa75d2 100644 --- a/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po @@ -3039,7 +3039,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3053,11 +3061,11 @@ msgid "Enabled" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3066,7 +3074,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4848,7 +4856,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po index 56542f78b..0a06976c0 100644 --- a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po @@ -3056,7 +3056,15 @@ msgid "Default Fade Out (s):" msgstr "Standard Fade Out (s):" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3070,11 +3078,11 @@ msgid "Enabled" msgstr "Aktiviert" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3083,7 +3091,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4867,7 +4875,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po index e0b2a98ba..bfa1d5e9b 100644 --- a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po @@ -3058,7 +3058,15 @@ msgid "Default Fade Out (s):" msgstr "Standard Fade Out (s):" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3072,11 +3080,11 @@ msgid "Enabled" msgstr "Aktiviert" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3085,7 +3093,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4869,7 +4877,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po index 811f2cc33..bc5bf1fda 100644 --- a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po @@ -3043,7 +3043,15 @@ msgid "Default Fade Out (s):" msgstr "Προεπιλεγμένο Fade Out (s):" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3057,11 +3065,11 @@ msgid "Enabled" msgstr "Ενεργοποιημένο" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3070,7 +3078,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4854,7 +4862,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po index 909fae53a..2ca96d1a2 100644 --- a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po @@ -3043,7 +3043,15 @@ msgid "Default Fade Out (s):" msgstr "Default Fade Out (s):" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3057,11 +3065,11 @@ msgid "Enabled" msgstr "Enabled" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3070,7 +3078,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4854,7 +4862,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po index 70717361d..e5d23d780 100644 --- a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po @@ -3044,7 +3044,15 @@ msgid "Default Fade Out (s):" msgstr "Default Fade Out (s):" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3058,12 +3066,12 @@ msgid "Enabled" msgstr "Enabled" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" -msgstr "Public Airtime API" +msgid "Public LibreTime API" +msgstr "Public LibreTime API" #: airtime_mvc/application/forms/GeneralPreferences.php:123 msgid "Required for embeddable schedule widget." @@ -3071,9 +3079,9 @@ msgstr "Required for embeddable schedule widget." #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." -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 msgid "Allowed CORS URLs" @@ -4858,7 +4866,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po index 8fcd0a71b..64b1a5639 100644 --- a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po @@ -3043,7 +3043,15 @@ msgid "Default Fade Out (s):" msgstr "Default Fade Out (s):" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3057,11 +3065,11 @@ msgid "Enabled" msgstr "Enabled" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3070,7 +3078,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4854,7 +4862,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po index 78aff978e..81ad57a82 100644 --- a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po @@ -3053,9 +3053,17 @@ msgid "Default Fade Out (s):" msgstr "Fade Out preseterminado (s):" #: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Podcast Album Override" +msgid "Overwrite Podcast Episode Metatags" 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:125 msgid "Disabled" @@ -3067,11 +3075,11 @@ msgid "Enabled" msgstr "Activado" #: 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." #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "API Pública de Libretime" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3080,7 +3088,7 @@ msgstr "Requerido para el widget de programación incrustado" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" "Habilitar esta función permite a Libretime proporcionar datos de programación\n" @@ -4882,9 +4890,21 @@ msgid "Podcast URL: " msgstr "URL del Podcast: " #: 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?" +#: 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 msgid "Override album name with podcast name during ingest." msgstr "Sobrescribir el nombre del álbum con el nombre del podcast durante el procesamiento" diff --git a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po index 0c86021f5..4b3cc5f8a 100644 --- a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po @@ -3043,7 +3043,15 @@ msgid "Default Fade Out (s):" msgstr "Fondu en Sorti par défaut (s):" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3057,11 +3065,11 @@ msgid "Enabled" msgstr "Activé" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3070,7 +3078,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4854,7 +4862,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po index 958dcbd10..aab0acddc 100644 --- a/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po @@ -3042,7 +3042,15 @@ msgid "Default Fade Out (s):" msgstr "Zadano Zatamnjenje (s):" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3056,11 +3064,11 @@ msgid "Enabled" msgstr "Omogućeno" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3069,7 +3077,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4853,7 +4861,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po index 70522bc48..2736724e3 100644 --- a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po @@ -3211,9 +3211,17 @@ msgid "Default Fade Out (s):" msgstr "Alapértelmezett Leúsztatás (mp)" #: airtime_mvc/application/forms/GeneralPreferences.php:105 -msgid "Podcast Album Override" +msgid "Overwrite Podcast Episode Metatags" 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:125 msgid "Disabled" @@ -3226,14 +3234,12 @@ msgstr "Engedélyezve" #: airtime_mvc/application/forms/GeneralPreferences.php:111 msgid "" -"Enabling this means that podcast tracks will always contain the podcast name" -" in their album field." -msgstr "" -"Ha engedélyezett, a podcast sávok album mezőjébe mindig a podcast neve kerül." +"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 "Ha engedélyezett, a podcast sávok album mezőjébe mindig a podcast neve kerül." #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" -msgstr "Public Airtime API" +msgid "Public LibreTime API" +msgstr "Public LibreTime API" #: airtime_mvc/application/forms/GeneralPreferences.php:123 msgid "Required for embeddable schedule widget." @@ -3241,7 +3247,7 @@ msgstr "Kötelező a beágyazható ütemezés felületi elemhez." #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -5177,9 +5183,21 @@ msgid "Podcast URL: " msgstr "Podcast URL: " #: 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?" +#: 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 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." diff --git a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po index 52bf3c7af..bd69a0ce2 100644 --- a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po @@ -3036,7 +3036,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3050,11 +3058,11 @@ msgid "Enabled" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3063,7 +3071,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4845,7 +4853,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po index 3f4ec08ac..4fdbd53fa 100644 --- a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po @@ -3039,7 +3039,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3053,11 +3061,11 @@ msgid "Enabled" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3066,7 +3074,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4848,7 +4856,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po b/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po index d0231319d..e6ee8c72a 100644 --- a/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po @@ -3039,7 +3039,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3053,11 +3061,11 @@ msgid "Enabled" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3066,7 +3074,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4848,7 +4856,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po index 64c0ea64d..6df85af5f 100644 --- a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po @@ -3044,7 +3044,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3058,11 +3066,11 @@ msgid "Enabled" msgstr "Abilitato" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3071,7 +3079,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4855,7 +4863,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po index c761b6f29..b1b605803 100644 --- a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po @@ -3042,7 +3042,15 @@ msgid "Default Fade Out (s):" msgstr "デフォルトフェードアウト(初期値):" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3056,11 +3064,11 @@ msgid "Enabled" msgstr "有効" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3069,7 +3077,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4853,7 +4861,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po index 0a9896f58..cfc90b5ba 100644 --- a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po @@ -3037,7 +3037,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3051,11 +3059,11 @@ msgid "Enabled" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3064,7 +3072,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4846,7 +4854,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po index d27a90f8d..7624d1f34 100644 --- a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po @@ -3039,7 +3039,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3053,11 +3061,11 @@ msgid "Enabled" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3066,7 +3074,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4848,7 +4856,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po index b1e6178f2..e83ccf9e7 100644 --- a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po @@ -3040,7 +3040,15 @@ msgid "Default Fade Out (s):" msgstr "기본 페이드 아웃(s)" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3054,11 +3062,11 @@ msgid "Enabled" msgstr "사용" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3067,7 +3075,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4851,7 +4859,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po b/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po index e7f64ba2c..61cf9151d 100644 --- a/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po @@ -3040,7 +3040,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3054,11 +3062,11 @@ msgid "Enabled" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3067,7 +3075,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4849,7 +4857,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po index ef103279f..8ed9625c5 100644 --- a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po @@ -3046,7 +3046,15 @@ msgid "Default Fade Out (s):" msgstr "standaard fade uit (s):" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3060,11 +3068,11 @@ msgid "Enabled" msgstr "Ingeschakeld" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3073,7 +3081,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4857,7 +4865,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po index 8decd1ebb..ca6ccc214 100644 --- a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po @@ -3043,7 +3043,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3057,11 +3065,11 @@ msgid "Enabled" msgstr "Włączone" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3070,7 +3078,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4854,7 +4862,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po index 47f8b063e..b9e24cc21 100644 --- a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po @@ -3044,7 +3044,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3058,11 +3066,11 @@ msgid "Enabled" msgstr "Ativo" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3071,7 +3079,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4855,7 +4863,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po index 5552b9f3e..61ea18d5d 100644 --- a/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po @@ -3039,7 +3039,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3053,11 +3061,11 @@ msgid "Enabled" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3066,7 +3074,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4848,7 +4856,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po index f256aba77..a90ef3cca 100644 --- a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po @@ -3059,9 +3059,17 @@ msgid "Default Fade Out (s):" msgstr "Затухание по умолчанию:" #: 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 "" + #: airtime_mvc/application/forms/GeneralPreferences.php:107 #: airtime_mvc/application/forms/GeneralPreferences.php:125 msgid "Disabled" @@ -3073,11 +3081,11 @@ msgid "Enabled" msgstr "Активировано" #: 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 "Включение данной функции будет записывать в файлы подкастов их название поле альбома" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "Публичный LibreTime API" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3086,7 +3094,7 @@ msgstr "Требуется для встраиваемого виджета-ра #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" "Активация данной функции позволит LibreTime предоставлять данные\n" @@ -4894,9 +4902,21 @@ msgid "Podcast URL: " msgstr "Ссылка на подкаст: " #: 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 "" + #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 msgid "Override album name with podcast name during ingest." msgstr "Перезаписывать название альбома на название подкаста в процессе загрузки." diff --git a/airtime_mvc/locale/si/LC_MESSAGES/airtime.po b/airtime_mvc/locale/si/LC_MESSAGES/airtime.po index d0f0e4f9d..8d48c0ab4 100644 --- a/airtime_mvc/locale/si/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/si/LC_MESSAGES/airtime.po @@ -3039,7 +3039,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3053,11 +3061,11 @@ msgid "Enabled" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3066,7 +3074,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4848,7 +4856,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po b/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po index d5903931f..30543350c 100644 --- a/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po @@ -3042,7 +3042,15 @@ msgid "Default Fade Out (s):" msgstr "Подразумевано Затамњење (s):" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3056,11 +3064,11 @@ msgid "Enabled" msgstr "Омогућено" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3069,7 +3077,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4853,7 +4861,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po b/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po index 3a1886849..3e88acc75 100644 --- a/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po @@ -3042,7 +3042,15 @@ msgid "Default Fade Out (s):" msgstr "Podrazumevano Zatamnjenje (s):" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3056,11 +3064,11 @@ msgid "Enabled" msgstr "Omogućeno" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3069,7 +3077,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4853,7 +4861,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/template/airtime.po b/airtime_mvc/locale/template/airtime.po index c4bd1a53c..fe80762dc 100644 --- a/airtime_mvc/locale/template/airtime.po +++ b/airtime_mvc/locale/template/airtime.po @@ -3039,7 +3039,15 @@ msgid "Default Fade Out (s):" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3053,11 +3061,11 @@ msgid "Enabled" msgstr "" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3066,7 +3074,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4848,7 +4856,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po index 334270f4a..94f7666c5 100644 --- a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po @@ -3040,7 +3040,15 @@ msgid "Default Fade Out (s):" msgstr "Varsayılan Fade Out geçişi (s)" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3054,11 +3062,11 @@ msgid "Enabled" msgstr "Aktif" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3067,7 +3075,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4849,7 +4857,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 diff --git a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po index a7fda2121..94734fc4c 100644 --- a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po @@ -3042,7 +3042,15 @@ msgid "Default Fade Out (s):" msgstr "默认淡出效果(秒):" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:107 @@ -3056,11 +3064,11 @@ msgid "Enabled" msgstr "启用" #: 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 "" #: airtime_mvc/application/forms/GeneralPreferences.php:122 -msgid "Public Airtime API" +msgid "Public LibreTime API" msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:123 @@ -3069,7 +3077,7 @@ msgstr "" #: airtime_mvc/application/forms/GeneralPreferences.php:129 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." msgstr "" @@ -4853,7 +4861,19 @@ msgid "Podcast URL: " msgstr "" #: 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 "" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 From c903a6dfd3cd209c8e9500474500801d05ee4e96 Mon Sep 17 00:00:00 2001 From: r Date: Mon, 25 Feb 2019 10:59:14 -0600 Subject: [PATCH 8/9] Add missing translateable strings in js to php translation method --- .../application/controllers/LocaleController.php | 16 ++++++++++++++++ airtime_mvc/public/js/airtime/library/podcast.js | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/airtime_mvc/application/controllers/LocaleController.php b/airtime_mvc/application/controllers/LocaleController.php index c20142f99..01810176c 100644 --- a/airtime_mvc/application/controllers/LocaleController.php +++ b/airtime_mvc/application/controllers/LocaleController.php @@ -63,6 +63,16 @@ final class LocaleController extends Zend_Controller_Action //"Adding 1 Item" => _("Adding 1 Item"), //"Adding %s Items" => _("Adding %s Items"), //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"), "Add to selected show" => _("Add to selected show"), "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?"), "Uploading in progress..." => _("Uploading in progress..."), "Retrieving data from the server..." => _("Retrieving data from the server..."), + //library/podcast.js + "Import" => _("Import"), + "Imported?" => _("Imported?"), + "View" => _("View"), // 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.", "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"), "Remove selected scheduled items" => _("Remove selected scheduled items"), "Jump to the current playing track" => _("Jump to the current playing track"), + "Jump to Current" => _("Jump to Current"), "Cancel current show" => _("Cancel current show"), //already in schedule/schedule.js //"Cancel Current Show?" => _("Cancel Current Show?"), @@ -355,6 +370,7 @@ final class LocaleController extends Zend_Controller_Action "View listener stats" => _("View listener stats"), //dataTables/ColVis.js "Show / hide columns" => _("Show / hide columns"), + "Columns" => _("Columns"), //datatables.columnFilter.js "From {from} to {to}" => _("From {from} to {to}"), "kbps" => _("kbps"), diff --git a/airtime_mvc/public/js/airtime/library/podcast.js b/airtime_mvc/public/js/airtime/library/podcast.js index 7682b868b..5f0cec344 100644 --- a/airtime_mvc/public/js/airtime/library/podcast.js +++ b/airtime_mvc/public/js/airtime/library/podcast.js @@ -636,7 +636,7 @@ var AIRTIME = (function (AIRTIME) { podcastEpisodeButtons = AIRTIME.widgets.Table.getStandardToolbarButtons(); $.extend(true, podcastEpisodeButtons[AIRTIME.widgets.Table.TOOLBAR_BUTTON_ROLES.NEW], { - title: "Import", + title: $.i18n._("Import"), eventHandlers: { click: function () { var episodes = mod.episodeTables[podcastId].getSelectedRows(); From 9e9157f29ccef1936aaaaaac63cb324010cea00a Mon Sep 17 00:00:00 2001 From: r Date: Mon, 25 Feb 2019 11:21:59 -0600 Subject: [PATCH 9/9] Add newly translateable strings to .po files --- airtime_mvc/locale/ast/LC_MESSAGES/airtime.po | 30 +++++++++++- airtime_mvc/locale/az/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/cs_CZ/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/da_DK/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/de_AT/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/de_DE/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/el_GR/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/en_CA/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/en_GB/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/en_US/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/es_ES/LC_MESSAGES/airtime.mo | Bin 80918 -> 81527 bytes .../locale/es_ES/LC_MESSAGES/airtime.po | 46 ++++++++++++++---- .../locale/fr_FR/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/hr_HR/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/hu_HU/LC_MESSAGES/airtime.po | 30 +++++++++++- airtime_mvc/locale/hy/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/hy_AM/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/id_ID/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/it_IT/LC_MESSAGES/airtime.po | 30 +++++++++++- airtime_mvc/locale/ja/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/ja_JP/LC_MESSAGES/airtime.po | 30 +++++++++++- airtime_mvc/locale/ka/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/ko_KR/LC_MESSAGES/airtime.po | 30 +++++++++++- airtime_mvc/locale/lt/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/nl_NL/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/pl_PL/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/pt_BR/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/ro_RO/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/ru_RU/LC_MESSAGES/airtime.po | 30 +++++++++++- airtime_mvc/locale/si/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/sr_RS/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/sr_RS@latin/LC_MESSAGES/airtime.po | 30 +++++++++++- airtime_mvc/locale/template/airtime.po | 30 +++++++++++- airtime_mvc/locale/tr/LC_MESSAGES/airtime.po | 30 +++++++++++- .../locale/zh_CN/LC_MESSAGES/airtime.po | 30 +++++++++++- 35 files changed, 994 insertions(+), 42 deletions(-) diff --git a/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po index 425b8610a..8ec8c5bfb 100644 --- a/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po @@ -858,6 +858,18 @@ msgstr "" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "" @@ -2022,6 +2034,10 @@ msgstr "" msgid "Jump to the current playing track" msgstr "" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "" @@ -3047,7 +3063,7 @@ 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." +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 @@ -4275,6 +4291,18 @@ msgstr "" msgid "Add" msgstr "" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "" diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po index bcf3d0621..d73d4b08e 100644 --- a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po @@ -858,6 +858,18 @@ msgstr "" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "" @@ -2022,6 +2034,10 @@ msgstr "" msgid "Jump to the current playing track" msgstr "" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "" @@ -3047,7 +3063,7 @@ 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." +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 @@ -4275,6 +4291,18 @@ msgstr "" msgid "Add" msgstr "" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "" diff --git a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po index 1c6248a75..c84beede8 100644 --- a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po @@ -860,6 +860,18 @@ msgstr "Náhled" msgid "Add to Playlist" 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 msgid "Add to Smart Block" 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" 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 msgid "Cancel current show" msgstr "Zrušit aktuální vysílání" @@ -3051,7 +3067,7 @@ 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." +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 @@ -4281,6 +4297,18 @@ msgstr "Vyberte dny:" msgid "Add" 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 msgid "Repeat Days:" msgstr "Opakovat dny:" diff --git a/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po b/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po index 0bfaa75d2..9621d11db 100644 --- a/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po @@ -858,6 +858,18 @@ msgstr "" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "" @@ -2022,6 +2034,10 @@ msgstr "" msgid "Jump to the current playing track" msgstr "" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "" @@ -3047,7 +3063,7 @@ 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." +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 @@ -4275,6 +4291,18 @@ msgstr "" msgid "Add" msgstr "" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "" diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po index 0a06976c0..1b21afcba 100644 --- a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po @@ -860,6 +860,18 @@ msgstr "Vorschau" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "Hinzufügen zu Smart Block" @@ -2039,6 +2051,10 @@ msgstr "Gewähltes Objekt entfernen" msgid "Jump to the current playing track" msgstr "Springe zu aktuellem Titel" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "Aktuelle Sendung abbrechen" @@ -3064,7 +3080,7 @@ 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." +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 @@ -4294,6 +4310,18 @@ msgstr "Tag wählen:" msgid "Add" 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 msgid "Repeat Days:" msgstr "Wiederholungstage:" diff --git a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po index bfa1d5e9b..ac5381629 100644 --- a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po @@ -864,6 +864,18 @@ msgstr "Vorschau" msgid "Add to Playlist" 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 msgid "Add to Smart Block" 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" msgstr "Springe zu aktuellem Titel" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "Aktuelle Sendung abbrechen" @@ -3066,7 +3082,7 @@ 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." +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 @@ -4296,6 +4312,18 @@ msgstr "Tage wählen:" msgid "Add" 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 msgid "Repeat Days:" msgstr "Wiederholen Tage:" diff --git a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po index bc5bf1fda..5975c2f42 100644 --- a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po @@ -860,6 +860,18 @@ msgstr "Προεπισκόπηση" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "Προσθήκη στο Smart Block" @@ -2026,6 +2038,10 @@ msgstr "Αφαίρεση επιλεγμένων προγραμματισμένω msgid "Jump to the current playing track" msgstr "Μετάβαση στο τρέχον κομμάτι " +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "Ακύρωση τρέχουσας εκπομπής" @@ -3051,7 +3067,7 @@ 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." +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 @@ -4281,6 +4297,18 @@ msgstr "Επιλέξτε Ημέρες:" msgid "Add" msgstr "Προσθήκη" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "Επανάληψη Ημερών:" diff --git a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po index 2ca96d1a2..78ef6a9b9 100644 --- a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po @@ -860,6 +860,18 @@ msgstr "Preview" msgid "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 msgid "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" 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 msgid "Cancel current show" msgstr "Cancel current show" @@ -3051,7 +3067,7 @@ 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." +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 @@ -4281,6 +4297,18 @@ msgstr "Choose Days:" msgid "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 msgid "Repeat Days:" msgstr "Repeat Days:" diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po index e5d23d780..b3f5d8bb7 100644 --- a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po @@ -861,6 +861,18 @@ msgstr "Preview" msgid "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 msgid "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" 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 msgid "Cancel current show" msgstr "Cancel current show" @@ -3052,7 +3068,7 @@ 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." +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 @@ -4285,6 +4301,18 @@ msgstr "Choose Days:" msgid "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 msgid "Repeat Days:" msgstr "Repeat Days:" diff --git a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po index 64b1a5639..ac0f3ad72 100644 --- a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po @@ -860,6 +860,18 @@ msgstr "Preview" msgid "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 msgid "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" 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 msgid "Cancel current show" msgstr "Cancel current show" @@ -3051,7 +3067,7 @@ 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." +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 @@ -4281,6 +4297,18 @@ msgstr "Choose Days:" msgid "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 msgid "Repeat Days:" msgstr "Repeat Days:" diff --git a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.mo b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.mo index 05dba596f726093ccd913eec84eefa6411f3c7dc..e55673f15a073b3c9c5a88387344fbb4df4e3960 100644 GIT binary patch delta 21393 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 UBI6_b#~w*f*tH{@SHH0T1F;>Nl>h($ delta 20887 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 diff --git a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po index 81ad57a82..f6c35fb82 100644 --- a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po @@ -870,6 +870,18 @@ msgstr "Previsualizar" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "Agregar un bloque inteligente" @@ -2036,6 +2048,10 @@ msgstr "Eliminar los ítems programados seleccionados" msgid "Jump to the current playing track" 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 msgid "Cancel current show" msgstr "Cancelar el show actual" @@ -2551,17 +2567,17 @@ msgstr "Debes esperar al menos 1 hora para reprogramar" msgid "Add Autoloading Playlist ?" msgstr "¿Programar Lista Auto-Cargada?" -#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 -msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" -msgstr "Se le agrega los contenidos de las listas auto-cargadas a programas una hora antes de que suenen. Mas información" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "Se le agrega los contenidos de las listas auto-cargadas a programas una hora antes de que suenen. Mas información" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "Seleccionar Lista" -#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 -msgid "Repeat Playlist Until Show is Full ?" -msgstr "Repitir lista hasta que termine el programa?" +#: airtime_mvc/application/forms/AddShowAutoPlaylist.php:32 +msgid "Repeat Playlist Until Show is Full ?" +msgstr "Repitir lista hasta que termine el programa?" #: airtime_mvc/application/forms/AddShowLiveStream.php:11 #, php-format @@ -3061,7 +3077,7 @@ 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." +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 @@ -4311,6 +4327,18 @@ msgstr "Elige los días:" msgid "Add" 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 msgid "Repeat Days:" msgstr "Días de repetición:" @@ -4895,11 +4923,11 @@ msgstr "¿Descargar automáticamente los últimos episodios?" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:26 msgid "Scheduling:" -msgstr "" +msgstr "Programación:" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:28 msgid "Generate Smartblock and Playlist" -msgstr "" +msgstr "Generar Bloque y Lista" #: airtime_mvc/application/views/scripts/podcast/podcast.phtml:30 msgid "Smartblock and Playlist Generated" diff --git a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po index 4b3cc5f8a..9812992c7 100644 --- a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po @@ -860,6 +860,18 @@ msgstr "Pré-Visualisation" msgid "Add to Playlist" 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 msgid "Add to Smart Block" 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" 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 msgid "Cancel current show" msgstr "Annuler l'émission en cours" @@ -3051,7 +3067,7 @@ 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." +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 @@ -4281,6 +4297,18 @@ msgstr "Choix des Jours:" msgid "Add" 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 msgid "Repeat Days:" msgstr "Jours de Répétition:" diff --git a/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po index aab0acddc..792e0566c 100644 --- a/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po @@ -859,6 +859,18 @@ msgstr "Pregled" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "Dodaj u Smart Block" @@ -2025,6 +2037,10 @@ msgstr "Ukloni odabrane zakazane stavke" msgid "Jump to the current playing track" 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 msgid "Cancel current show" msgstr "Poništi trenutnu emisiju" @@ -3050,7 +3066,7 @@ 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." +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 @@ -4280,6 +4296,18 @@ msgstr "Odaberi Dane:" msgid "Add" 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 msgid "Repeat Days:" msgstr "Ponovljeni Dani:" diff --git a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po index 2736724e3..0b6e8820b 100644 --- a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po @@ -897,6 +897,18 @@ msgstr "Előnézet" msgid "Add to Playlist" 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 msgid "Add to Smart Block" 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" 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 msgid "Cancel current show" msgstr "A jelenlegi műsor megszakítása" @@ -3219,7 +3235,7 @@ 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." +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 @@ -4544,6 +4560,18 @@ msgstr "Válasszon napokat:" msgid "Add" 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 msgid "Repeat Days:" msgstr "Ismétlések napjai:" diff --git a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po index bd69a0ce2..278608fca 100644 --- a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po @@ -855,6 +855,18 @@ msgstr "" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "" @@ -2019,6 +2031,10 @@ msgstr "" msgid "Jump to the current playing track" msgstr "" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "" @@ -3044,7 +3060,7 @@ 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." +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 @@ -4272,6 +4288,18 @@ msgstr "" msgid "Add" msgstr "" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "" diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po index 4fdbd53fa..b2f5b80c4 100644 --- a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po @@ -858,6 +858,18 @@ msgstr "" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "" @@ -2022,6 +2034,10 @@ msgstr "" msgid "Jump to the current playing track" msgstr "" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "" @@ -3047,7 +3063,7 @@ 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." +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 @@ -4275,6 +4291,18 @@ msgstr "" msgid "Add" msgstr "" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "" diff --git a/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po b/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po index e6ee8c72a..6349c5946 100644 --- a/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po @@ -858,6 +858,18 @@ msgstr "" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "" @@ -2022,6 +2034,10 @@ msgstr "" msgid "Jump to the current playing track" msgstr "" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "" @@ -3047,7 +3063,7 @@ 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." +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 @@ -4275,6 +4291,18 @@ msgstr "" msgid "Add" msgstr "" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "" diff --git a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po index 6df85af5f..c7d820d86 100644 --- a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po @@ -861,6 +861,18 @@ msgstr "Anteprima" msgid "Add to 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 msgid "Add to Smart Block" msgstr "Aggiungi al blocco intelligente" @@ -2027,6 +2039,10 @@ msgstr "Rimuovi la voce selezionata" msgid "Jump to the current playing track" 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 msgid "Cancel current show" msgstr "Cancella show attuale" @@ -3052,7 +3068,7 @@ 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." +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 @@ -4282,6 +4298,18 @@ msgstr "Scegli giorni:" msgid "Add" 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 msgid "Repeat Days:" msgstr "Ripeti giorni:" diff --git a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po index b1b605803..11228a3c8 100644 --- a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po @@ -861,6 +861,18 @@ msgstr "プレビュー" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "スマートブロックに追加" @@ -2025,6 +2037,10 @@ msgstr "選択した項目を削除" msgid "Jump to the current playing track" msgstr "現在再生中のトラックに移動" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "配信中の番組をキャンセル" @@ -3050,7 +3066,7 @@ 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." +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 @@ -4280,6 +4296,18 @@ msgstr "日付選択: " msgid "Add" msgstr "追加" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "再配信日:" diff --git a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po index cfc90b5ba..2a1c16f5e 100644 --- a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po @@ -856,6 +856,18 @@ msgstr "" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "" @@ -2020,6 +2032,10 @@ msgstr "" msgid "Jump to the current playing track" msgstr "" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "" @@ -3045,7 +3061,7 @@ 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." +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 @@ -4273,6 +4289,18 @@ msgstr "" msgid "Add" msgstr "" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "" diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po index 7624d1f34..0a51b2105 100644 --- a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po @@ -858,6 +858,18 @@ msgstr "" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "" @@ -2022,6 +2034,10 @@ msgstr "" msgid "Jump to the current playing track" msgstr "" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "" @@ -3047,7 +3063,7 @@ 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." +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 @@ -4275,6 +4291,18 @@ msgstr "" msgid "Add" msgstr "" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "" diff --git a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po index e83ccf9e7..2aa42936e 100644 --- a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po @@ -859,6 +859,18 @@ msgstr "프리뷰" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "스마트 블록에 추가" @@ -2023,6 +2035,10 @@ msgstr "선택된 아이템 제거" msgid "Jump to the current playing track" msgstr "현재 방송중인 트랙으로 가기" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "현재 쇼 취소" @@ -3048,7 +3064,7 @@ 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." +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 @@ -4278,6 +4294,18 @@ msgstr "날짜 선택" msgid "Add" msgstr "추가" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "반복 날짜:" diff --git a/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po b/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po index 61cf9151d..bc32ea60c 100644 --- a/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po @@ -859,6 +859,18 @@ msgstr "" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "" @@ -2023,6 +2035,10 @@ msgstr "" msgid "Jump to the current playing track" msgstr "" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "" @@ -3048,7 +3064,7 @@ 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." +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 @@ -4276,6 +4292,18 @@ msgstr "" msgid "Add" msgstr "" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "" diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po index 8ed9625c5..55fb61bcc 100644 --- a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po @@ -863,6 +863,18 @@ msgstr "Voorbeeld" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "Toevoegen aan slimme blok" @@ -2029,6 +2041,10 @@ msgstr "Geselecteerde geplande items verwijderen" msgid "Jump to the current 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 msgid "Cancel current show" msgstr "Annuleren van de huidige show" @@ -3054,7 +3070,7 @@ 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." +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 @@ -4284,6 +4300,18 @@ msgstr "Kies dagen:" msgid "Add" 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 msgid "Repeat Days:" msgstr "Herhaal dagen:" diff --git a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po index ca6ccc214..5b469dc6f 100644 --- a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po @@ -860,6 +860,18 @@ msgstr "Podgląd" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "Dodaj do smartblocku" @@ -2026,6 +2038,10 @@ msgstr "Usuń wybrane elementy" msgid "Jump to the current playing track" 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 msgid "Cancel current show" msgstr "Skasuj obecną audycję" @@ -3051,7 +3067,7 @@ 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." +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 @@ -4281,6 +4297,18 @@ msgstr "Wybierz dni:" msgid "Add" 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 msgid "Repeat Days:" msgstr "Dni powtarzania:" diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po index b9e24cc21..2e3b9f946 100644 --- a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po @@ -861,6 +861,18 @@ msgstr "Visualizar" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "Adicionar ao Bloco" @@ -2027,6 +2039,10 @@ msgstr "Remover seleção de itens agendados" msgid "Jump to the current playing track" 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 msgid "Cancel current show" msgstr "Cancelar programa atual" @@ -3052,7 +3068,7 @@ 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." +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 @@ -4282,6 +4298,18 @@ msgstr "Selecione os Dias:" msgid "Add" 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 msgid "Repeat Days:" msgstr "Dias para reexibir:" diff --git a/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po index 61ea18d5d..a4460f441 100644 --- a/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po @@ -858,6 +858,18 @@ msgstr "" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "" @@ -2022,6 +2034,10 @@ msgstr "" msgid "Jump to the current playing track" msgstr "" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "" @@ -3047,7 +3063,7 @@ 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." +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 @@ -4275,6 +4291,18 @@ msgstr "" msgid "Add" msgstr "" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "" diff --git a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po index a90ef3cca..3238c5e9a 100644 --- a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po @@ -875,6 +875,18 @@ msgstr "Прослушать" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "Добавить в умный блок" @@ -2041,6 +2053,10 @@ msgstr "Удалить выбранные запланированные эле msgid "Jump to the current playing track" msgstr "Перейти к текущей проигрываемой дорожке" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "Отмена текущей программы" @@ -3067,7 +3083,7 @@ 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." +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 @@ -4319,6 +4335,18 @@ msgstr "Выберите дни:" msgid "Add" msgstr "Добавить" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "Повторить в дни:" diff --git a/airtime_mvc/locale/si/LC_MESSAGES/airtime.po b/airtime_mvc/locale/si/LC_MESSAGES/airtime.po index 8d48c0ab4..f17760c4a 100644 --- a/airtime_mvc/locale/si/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/si/LC_MESSAGES/airtime.po @@ -858,6 +858,18 @@ msgstr "" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "" @@ -2022,6 +2034,10 @@ msgstr "" msgid "Jump to the current playing track" msgstr "" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "" @@ -3047,7 +3063,7 @@ 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." +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 @@ -4275,6 +4291,18 @@ msgstr "" msgid "Add" msgstr "" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "" diff --git a/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po b/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po index 30543350c..6ead9c7d6 100644 --- a/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po @@ -859,6 +859,18 @@ msgstr "Преглед" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "Додај у Smart Block" @@ -2025,6 +2037,10 @@ msgstr "Уклони одабране заказане ставке" msgid "Jump to the current playing track" msgstr "Скочи на тренутну свирану песму" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "Поништи тренутну емисију" @@ -3050,7 +3066,7 @@ 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." +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 @@ -4280,6 +4296,18 @@ msgstr "Одабери Дане:" msgid "Add" msgstr "Додај" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "Поновљени Дани:" diff --git a/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po b/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po index 3e88acc75..1b169a035 100644 --- a/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po @@ -859,6 +859,18 @@ msgstr "Pregled" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "Dodaj u Smart Block" @@ -2025,6 +2037,10 @@ msgstr "Ukloni odabrane zakazane stavke" msgid "Jump to the current playing track" 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 msgid "Cancel current show" msgstr "Poništi trenutnu emisiju" @@ -3050,7 +3066,7 @@ 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." +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 @@ -4280,6 +4296,18 @@ msgstr "Odaberi Dane:" msgid "Add" 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 msgid "Repeat Days:" msgstr "Ponovljeni Dani:" diff --git a/airtime_mvc/locale/template/airtime.po b/airtime_mvc/locale/template/airtime.po index fe80762dc..053f7549d 100644 --- a/airtime_mvc/locale/template/airtime.po +++ b/airtime_mvc/locale/template/airtime.po @@ -858,6 +858,18 @@ msgstr "" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "" @@ -2022,6 +2034,10 @@ msgstr "" msgid "Jump to the current playing track" msgstr "" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "" @@ -3047,7 +3063,7 @@ 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." +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 @@ -4275,6 +4291,18 @@ msgstr "" msgid "Add" msgstr "" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "" diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po index 94f7666c5..dda42ddf1 100644 --- a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po @@ -859,6 +859,18 @@ msgstr "Ön izleme" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "" @@ -2023,6 +2035,10 @@ msgstr "" msgid "Jump to the current playing track" msgstr "" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "" @@ -3048,7 +3064,7 @@ 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." +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 @@ -4276,6 +4292,18 @@ msgstr "" msgid "Add" 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 msgid "Repeat Days:" msgstr "" diff --git a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po index 94734fc4c..eea0f5018 100644 --- a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po @@ -859,6 +859,18 @@ msgstr "预览" msgid "Add to Playlist" 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 msgid "Add to Smart Block" msgstr "添加到智能模块" @@ -2025,6 +2037,10 @@ msgstr "移除所选的项目" msgid "Jump to the current playing track" msgstr "跳转到当前播放的项目" +#: airtime_mvc/application/controllers/LocaleController.php:331 +msgid "Jump to Current" +msgstr "" + #: airtime_mvc/application/controllers/LocaleController.php:314 msgid "Cancel current show" msgstr "取消当前的节目" @@ -3050,7 +3066,7 @@ 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." +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 @@ -4280,6 +4296,18 @@ msgstr "选择天数:" msgid "Add" msgstr "添加" +msgid "New" +msgstr "" + +msgid "Columns" +msgstr "" + +msgid "Import" +msgstr "" + +msgid "Imported?" +msgstr "" + #: airtime_mvc/application/views/scripts/form/add-show-rebroadcast.phtml:4 msgid "Repeat Days:" msgstr "重复天数:"