From 0cf27e91e26db5ee9584d4a7272126f58773b042 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 26 Nov 2018 10:56:56 -0600 Subject: [PATCH 1/6] Rename "autoloading playlists", add help texts --- .../application/forms/AddShowAutoPlaylist.php | 4 +-- .../scripts/form/add-show-autoplaylist.phtml | 2 ++ .../scripts/schedule/add-show-form.phtml | 2 +- airtime_mvc/public/css/add-show.css | 3 ++ airtime_mvc/public/css/radio-page/custom.css | 15 +++++++++ airtime_mvc/public/css/styles.css | 4 +-- .../public/js/airtime/schedule/add-show.js | 32 ++++++++++++------- 7 files changed, 46 insertions(+), 16 deletions(-) create mode 100644 airtime_mvc/public/css/radio-page/custom.css diff --git a/airtime_mvc/application/forms/AddShowAutoPlaylist.php b/airtime_mvc/application/forms/AddShowAutoPlaylist.php index bb4cead12..c987480b2 100644 --- a/airtime_mvc/application/forms/AddShowAutoPlaylist.php +++ b/airtime_mvc/application/forms/AddShowAutoPlaylist.php @@ -15,7 +15,7 @@ class Application_Form_AddShowAutoPlaylist extends Zend_Form_SubForm // Add autoplaylist checkbox element $this->addElement('checkbox', 'add_show_has_autoplaylist', array( - 'label' => _('Auto Schedule Playlist ?'), + 'label' => _('Add Autoloading Playlist ?'), 'required' => false, 'class' => 'input_text', 'decorators' => array('ViewHelper') @@ -29,7 +29,7 @@ class Application_Form_AddShowAutoPlaylist extends Zend_Form_SubForm $this->addElement($autoPlaylistSelect); // Add autoplaylist checkbox element $this->addElement('checkbox', 'add_show_autoplaylist_repeat', array( - 'label' => _('Repeat AutoPlaylist Until Show is Full ?'), + 'label' => _('Repeat Playlist Until Show is Full ?'), 'required' => false, 'class' => 'input_text', 'decorators' => array('ViewHelper') diff --git a/airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml b/airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml index 5d5eda5f6..a694866a8 100644 --- a/airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml +++ b/airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml @@ -7,9 +7,11 @@
element->getElement('add_show_has_autoplaylist') ?> +
+

More information"); ?>

-

+

autoplaylist; ?>
diff --git a/airtime_mvc/public/css/add-show.css b/airtime_mvc/public/css/add-show.css index 772c49007..371c471c3 100644 --- a/airtime_mvc/public/css/add-show.css +++ b/airtime_mvc/public/css/add-show.css @@ -85,6 +85,9 @@ label.wrapp-label input[type="checkbox"] { #schedule-add-show fieldset dd input[type="checkbox"] { margin-top: 6px; } +#schedule-show-auto input[type="checkbox"] { + margin-left: 6px; +} #add_show_day_check-element.block-display { margin-bottom: 15px; diff --git a/airtime_mvc/public/css/radio-page/custom.css b/airtime_mvc/public/css/radio-page/custom.css new file mode 100644 index 000000000..5e138b105 --- /dev/null +++ b/airtime_mvc/public/css/radio-page/custom.css @@ -0,0 +1,15 @@ +#schedule_iframe, .tab_content { + color: #fff; + text-align: center; + width: 770px; + max-width: 770px; + margin: -70px auto 0px -380px; + height: calc(100vh - 200px) !important; + padding: 10px; + padding-left: 10px; + margin-bottom: -100px; + padding-top: 50px; + position: absolute; + left: 50%; + overflow: hidden; +} \ No newline at end of file diff --git a/airtime_mvc/public/css/styles.css b/airtime_mvc/public/css/styles.css index e9e8ac4ff..cfcd3f51c 100644 --- a/airtime_mvc/public/css/styles.css +++ b/airtime_mvc/public/css/styles.css @@ -210,8 +210,9 @@ img.logo display:inline-block; zoom:1; width:14px; height:14px; background:url(images/icon_info.png) 0 0 no-repeat; - top:2px; right:7px; left: 3px; + left: 3px; line-height:16px !important; + vertical-align: text-top; } /* Clearfix */ @@ -2888,7 +2889,6 @@ dt.block-display.info-block { text-align:center; letter-spacing:-.3px; text-shadow: rgba(248,248,248,.3) 0 1px 0, rgba(0,0,0,.8) 0 -1px 0; - rgba(51,51,51,.9) } .error-content p { color: #acacac; diff --git a/airtime_mvc/public/js/airtime/schedule/add-show.js b/airtime_mvc/public/js/airtime/schedule/add-show.js index 130c684a8..4d9a8417b 100644 --- a/airtime_mvc/public/js/airtime/schedule/add-show.js +++ b/airtime_mvc/public/js/airtime/schedule/add-show.js @@ -310,17 +310,6 @@ function setAddShowEvents(form) { $(this).blur(); form.find("#add_show_playlist_dropdown").toggle(); form.find("#add_show_autoplaylist_repeat").toggle(); - - var checkBoxSelected = false; - - //must switch rebroadcast displays - if(form.find("#add_show_has_autoplaylist").attr('checked')) { - form.find("#add_show_playlist_dropdown").show(); - form.find("#add_show_autoplaylist_repeat").show(); - } - else { - form.find("#add_show_playlist_downdown").hide(); - } }); form.find("#add_show_repeats").click(function(){ @@ -491,6 +480,27 @@ function setAddShowEvents(form) { at: "right center" } }); + + form.find(".show_autoplaylist_help_icon").qtip({ + content: { + text: $.i18n._("Autoloading playlists' contents are added to shows one hour before the show airs. More information") + }, + hide: { + delay: 500, + fixed: true + }, + style: { + border: { + width: 0, + radius: 4 + }, + classes: "ui-tooltip-dark ui-tooltip-rounded" + }, + position: { + my: "left bottom", + at: "right center" + } + }); form.find(".airtime_auth_help_icon").qtip({ content: { From 1b537919a6b916ac56e89a1b07d7fbffa42fefa6 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 20 Nov 2018 12:22:27 -0600 Subject: [PATCH 2/6] rename to "autoloading playlists" in docs --- docs/manual/calendar/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/manual/calendar/index.md b/docs/manual/calendar/index.md index 5dc6def47..cc8e94830 100644 --- a/docs/manual/calendar/index.md +++ b/docs/manual/calendar/index.md @@ -9,7 +9,7 @@ In the top left corner of the page, you can go back or forward through the **Cal Adding a show ------------- -Only *Admins* and *Program Managers* can use this feature. To add a new show to the Calendar, click the **+ New Show** button in the top left corner of the page, or click on any future row or box in the Calendar which is empty. Either of these actions opens the **Add this show** box, which has seven sections, arranged vertically: **What**, **Automatic Playlist**, **When**, **Live Stream Input**, **Record & Rebroadcast**, **Who**, and **Style**. Click the small orange triangle to the left of the section name if you wish to minimize or maximize it. +Only *Admins* and *Program Managers* can use this feature. To add a new show to the Calendar, click the **+ New Show** button in the top left corner of the page, or click on any future row or box in the Calendar which is empty. Either of these actions opens the **Add this show** box, which has seven sections, arranged vertically: **What**, **Autoloading Playlist**, **When**, **Live Stream Input**, **Record & Rebroadcast**, **Who**, and **Style**. Click the small orange triangle to the left of the section name if you wish to minimize or maximize it. What ---- @@ -18,7 +18,7 @@ In the **What** box, enter the **Name**, public website **URL**, **Genre** and * ![](static/Screenshot453-Show_what.png) -Automatic Playlist +Autoloading Playlist ------------------ In this section, you can select a playlist that will be used for this show. The playlist must already be defined in your library. **Auto Schedule Playlist** needs to be checked for **Select Playlist** and **Repeat AutoPlaylist Until Show is Full** to be visible. From d3604592cee115006c005cf2f9bb992d63953187 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 26 Nov 2018 11:03:00 -0600 Subject: [PATCH 3/6] rename to "autoloading playlists" in translation files 1 --- airtime_mvc/locale/ast/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/az/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/hy/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/ja/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/ka/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/lt/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/si/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/template/airtime.po | 2 +- airtime_mvc/locale/tr/LC_MESSAGES/airtime.po | 2 +- airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po | 2 +- 34 files changed, 34 insertions(+), 34 deletions(-) diff --git a/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po index 3cc41e1dd..8a1ae6d32 100644 --- a/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po @@ -4934,7 +4934,7 @@ msgid "What" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po index 3ed69001b..a41ee8949 100644 --- a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po @@ -4934,7 +4934,7 @@ msgid "What" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po index 5a18a1907..20981421f 100644 --- a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po @@ -4940,7 +4940,7 @@ msgid "What" msgstr "Co" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po b/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po index 0824ba6ce..c1654503c 100644 --- a/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po @@ -4934,7 +4934,7 @@ msgid "What" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po index 06e90b569..73e389d5b 100644 --- a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po @@ -4953,7 +4953,7 @@ msgid "What" msgstr "Was" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po index 7ce30889c..e857f9cc5 100644 --- a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po @@ -4955,7 +4955,7 @@ msgid "What" msgstr "Was" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "Automatische Playlist" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po index 46b771ed4..ae9d90410 100644 --- a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po @@ -4940,7 +4940,7 @@ msgid "What" msgstr "Τι" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po index 5bdc0bcbd..700be5192 100644 --- a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po @@ -4940,7 +4940,7 @@ msgid "What" msgstr "What" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po index d8b37ba78..8fa9b8822 100644 --- a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po @@ -4944,7 +4944,7 @@ msgid "What" msgstr "What" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po index e3e8b1933..1c4154102 100644 --- a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po @@ -4940,7 +4940,7 @@ msgid "What" msgstr "What" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po index eb1740dc8..10983122d 100644 --- a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po @@ -4966,7 +4966,7 @@ msgid "What" msgstr "Qué" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "Lista de reproducción automática" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po index 0d991a8ca..b6d44cb93 100644 --- a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po @@ -4940,7 +4940,7 @@ msgid "What" msgstr "Quoi" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po index 7243ae784..32ec54bf2 100644 --- a/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po @@ -4939,7 +4939,7 @@ msgid "What" msgstr "Što" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po index 5d20ca65d..faf815a0d 100644 --- a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po @@ -5267,7 +5267,7 @@ msgid "What" msgstr "Mi" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "Automatikus lejátszási lista" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po index b9dfbf502..46f7b542c 100644 --- a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po @@ -4931,7 +4931,7 @@ msgid "What" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po index 3842bcdcb..a883d38bc 100644 --- a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po @@ -4934,7 +4934,7 @@ msgid "What" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po b/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po index d865d0252..8e1140284 100644 --- a/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po @@ -4934,7 +4934,7 @@ msgid "What" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po index 7324b1b19..dcef79e67 100644 --- a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po @@ -4941,7 +4941,7 @@ msgid "What" msgstr "Cosa" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po index 5273a215d..4592b5969 100644 --- a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po @@ -4939,7 +4939,7 @@ msgid "What" msgstr "番組内容" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po index 4acc92078..5b55ec87a 100644 --- a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po @@ -4932,7 +4932,7 @@ msgid "What" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po index bdbeb0f5c..d7b2c2b45 100644 --- a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po @@ -4934,7 +4934,7 @@ msgid "What" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po index f410f5ec3..b9279ed84 100644 --- a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po @@ -4937,7 +4937,7 @@ msgid "What" msgstr "무엇" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po b/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po index 72edc401a..0961f7ceb 100644 --- a/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po @@ -4935,7 +4935,7 @@ msgid "What" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po index 4e019d0b1..056879cdf 100644 --- a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po @@ -4943,7 +4943,7 @@ msgid "What" msgstr "Wat" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po index 372719152..e86f369d2 100644 --- a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po @@ -4940,7 +4940,7 @@ msgid "What" msgstr "Co" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po index fc7548259..69dc20b14 100644 --- a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po @@ -4941,7 +4941,7 @@ msgid "What" msgstr "O que" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po index 9747b18b6..fe50f891b 100644 --- a/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po @@ -4934,7 +4934,7 @@ msgid "What" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po index 62a35c89c..1ca364b9b 100644 --- a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po @@ -4982,7 +4982,7 @@ msgid "What" msgstr "Что" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "Автоматический Плейлист" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/si/LC_MESSAGES/airtime.po b/airtime_mvc/locale/si/LC_MESSAGES/airtime.po index b67d4a665..ce6065bff 100644 --- a/airtime_mvc/locale/si/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/si/LC_MESSAGES/airtime.po @@ -4934,7 +4934,7 @@ msgid "What" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po b/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po index 541f5a6e8..1fd057475 100644 --- a/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po @@ -4939,7 +4939,7 @@ msgid "What" msgstr "Шта" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 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 3f4dcb2e7..a9a718765 100644 --- a/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po @@ -4939,7 +4939,7 @@ msgid "What" msgstr "Šta" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/template/airtime.po b/airtime_mvc/locale/template/airtime.po index a476c9d77..956adb2ea 100644 --- a/airtime_mvc/locale/template/airtime.po +++ b/airtime_mvc/locale/template/airtime.po @@ -4934,7 +4934,7 @@ msgid "What" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po index 75aeea172..d6c15e7f4 100644 --- a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po @@ -4935,7 +4935,7 @@ msgid "What" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 diff --git a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po index dd40ebe43..c1843be7e 100644 --- a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po @@ -4939,7 +4939,7 @@ msgid "What" msgstr "名称" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:14 -msgid "Automatic Playlist" +msgid "Autoloading Playlist" msgstr "" #: airtime_mvc/application/views/scripts/schedule/add-show-form.phtml:18 From 76f46def18d3f2b03aba49305bb83aeca8503c6f Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 26 Nov 2018 11:16:53 -0600 Subject: [PATCH 4/6] add autoloading playlists help text to translation files --- airtime_mvc/locale/ast/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/az/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/hy/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/ja/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/ka/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/lt/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/si/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/template/airtime.po | 6 +++++- airtime_mvc/locale/tr/LC_MESSAGES/airtime.po | 6 +++++- airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po | 6 +++++- 34 files changed, 170 insertions(+), 34 deletions(-) diff --git a/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po index 8a1ae6d32..0f2c51031 100644 --- a/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ast/LC_MESSAGES/airtime.po @@ -2534,9 +2534,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po index a41ee8949..83c7803e2 100644 --- a/airtime_mvc/locale/az/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/az/LC_MESSAGES/airtime.po @@ -2534,9 +2534,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po index 20981421f..613050914 100644 --- a/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/cs_CZ/LC_MESSAGES/airtime.po @@ -2538,9 +2538,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Musíte počkat alespoň 1 hodinu před dalším vysíláním" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po b/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po index c1654503c..927dc22ff 100644 --- a/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/da_DK/LC_MESSAGES/airtime.po @@ -2534,9 +2534,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po index 73e389d5b..5a9cbc584 100644 --- a/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/de_AT/LC_MESSAGES/airtime.po @@ -2551,9 +2551,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po index e857f9cc5..00581aa5d 100644 --- a/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/de_DE/LC_MESSAGES/airtime.po @@ -2553,9 +2553,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Das Wiederholen einer Sendung ist erst nach einer Stunde Wartezeit möglich." #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po index ae9d90410..4de460ee3 100644 --- a/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/el_GR/LC_MESSAGES/airtime.po @@ -2538,9 +2538,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Πρέπει να περιμένετε τουλάχιστον 1 ώρα για την αναμετάδοση" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po index 700be5192..c7d068abf 100644 --- a/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_CA/LC_MESSAGES/airtime.po @@ -2538,9 +2538,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Must wait at least 1 hour to rebroadcast" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po index 8fa9b8822..0c45ef6ec 100644 --- a/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_GB/LC_MESSAGES/airtime.po @@ -2539,9 +2539,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Must wait at least 1 hour to rebroadcast" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po index 1c4154102..6f5882d2e 100644 --- a/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/en_US/LC_MESSAGES/airtime.po @@ -2538,9 +2538,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Must wait at least 1 hour to rebroadcast" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po index 10983122d..066efda42 100644 --- a/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/es_ES/LC_MESSAGES/airtime.po @@ -2548,9 +2548,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Debes esperar al menos 1 hora para reprogramar" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "¿Auto Programar Lista?" +#: 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 "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "Seleccionar Lista" diff --git a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po index b6d44cb93..f91cfae2a 100644 --- a/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/fr_FR/LC_MESSAGES/airtime.po @@ -2538,9 +2538,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Vous devez attendre au moins 1 heure pour retransmettre" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po index 32ec54bf2..21a343f94 100644 --- a/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hr_HR/LC_MESSAGES/airtime.po @@ -2537,9 +2537,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Moraš čekati najmanje 1 sat za re-emitiranje" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po index faf815a0d..2ce34a004 100644 --- a/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hu_HU/LC_MESSAGES/airtime.po @@ -2700,9 +2700,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Az újraközvetítésre legalább 1 órát kell várni" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "Lejátszási lista automatikus ütemezése?" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "Lejátszási lista kiválasztása" diff --git a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po index 46f7b542c..3764a6924 100644 --- a/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hy/LC_MESSAGES/airtime.po @@ -2531,9 +2531,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po index a883d38bc..7fe406a6c 100644 --- a/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/hy_AM/LC_MESSAGES/airtime.po @@ -2534,9 +2534,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po b/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po index 8e1140284..29d40c40b 100644 --- a/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/id_ID/LC_MESSAGES/airtime.po @@ -2534,9 +2534,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po index dcef79e67..091ee2bbc 100644 --- a/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/it_IT/LC_MESSAGES/airtime.po @@ -2539,9 +2539,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Aspettare almeno un'ora prima di ritrasmettere" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po index 4592b5969..fd0fbfb51 100644 --- a/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ja/LC_MESSAGES/airtime.po @@ -2537,9 +2537,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "再配信するには、1時間以上待たなければなりません" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po index 5b55ec87a..774fd3491 100644 --- a/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ja_JP/LC_MESSAGES/airtime.po @@ -2532,9 +2532,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po index d7b2c2b45..87f53468d 100644 --- a/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ka/LC_MESSAGES/airtime.po @@ -2534,9 +2534,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po index b9279ed84..83784846a 100644 --- a/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ko_KR/LC_MESSAGES/airtime.po @@ -2535,9 +2535,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "재방송 설정까지 1시간 기간이 필요합니다" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po b/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po index 0961f7ceb..0822f12cf 100644 --- a/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/lt/LC_MESSAGES/airtime.po @@ -2535,9 +2535,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po index 056879cdf..603b1a257 100644 --- a/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/nl_NL/LC_MESSAGES/airtime.po @@ -2541,9 +2541,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Ten minste 1 uur opnieuw uitzenden moet wachten" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po index e86f369d2..d8411c125 100644 --- a/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pl_PL/LC_MESSAGES/airtime.po @@ -2538,9 +2538,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Należy odczekać przynajmniej 1 godzinę przed ponownym odtworzeniem" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po index 69dc20b14..4ac6bfeec 100644 --- a/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/pt_BR/LC_MESSAGES/airtime.po @@ -2539,9 +2539,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "É preciso aguardar uma hora para retransmitir" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po index fe50f891b..46c72681e 100644 --- a/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ro_RO/LC_MESSAGES/airtime.po @@ -2534,9 +2534,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po index 1ca364b9b..0d5322d15 100644 --- a/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/ru_RU/LC_MESSAGES/airtime.po @@ -2554,9 +2554,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "1 час нужно подождать до ретрансляции" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "Выбрать плейлист" diff --git a/airtime_mvc/locale/si/LC_MESSAGES/airtime.po b/airtime_mvc/locale/si/LC_MESSAGES/airtime.po index ce6065bff..1ddab4c1e 100644 --- a/airtime_mvc/locale/si/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/si/LC_MESSAGES/airtime.po @@ -2534,9 +2534,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po b/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po index 1fd057475..fb76f0f2c 100644 --- a/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/sr_RS/LC_MESSAGES/airtime.po @@ -2537,9 +2537,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Мораш да чекаш најмање 1 сат за ре-емитовање" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" 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 a9a718765..e7661a526 100644 --- a/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/sr_RS@latin/LC_MESSAGES/airtime.po @@ -2537,9 +2537,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Moraš da čekaš najmanje 1 sat za re-emitovanje" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/template/airtime.po b/airtime_mvc/locale/template/airtime.po index 956adb2ea..741e5d302 100644 --- a/airtime_mvc/locale/template/airtime.po +++ b/airtime_mvc/locale/template/airtime.po @@ -2534,9 +2534,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po index d6c15e7f4..6aa5e813e 100644 --- a/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/tr/LC_MESSAGES/airtime.po @@ -2535,9 +2535,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "Tekrar yayın yapmak için en az bir saat bekleyiniz" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" diff --git a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po index c1843be7e..45275521d 100644 --- a/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po +++ b/airtime_mvc/locale/zh_CN/LC_MESSAGES/airtime.po @@ -2537,9 +2537,13 @@ msgid "Must wait at least 1 hour to rebroadcast" msgstr "至少间隔一个小时" #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:18 -msgid "Auto Schedule Playlist ?" +msgid "Add Autoloading Playlist ?" msgstr "" +#: airtime_mvc/application/views/scripts/form/add-show-autoplaylist.phtml:14 +msgid "Autoloading playlists' contents are added to shows one hour before the show airs. More information" +msgstr "" + #: airtime_mvc/application/forms/AddShowAutoPlaylist.php:25 msgid "Select Playlist" msgstr "" From cc112531b5e793062ea62a051daa2aae87a54620 Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 26 Nov 2018 11:22:19 -0600 Subject: [PATCH 5/6] add styles for autoloading playlists tootip --- airtime_mvc/public/css/styles.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtime_mvc/public/css/styles.css b/airtime_mvc/public/css/styles.css index cfcd3f51c..7e2d26018 100644 --- a/airtime_mvc/public/css/styles.css +++ b/airtime_mvc/public/css/styles.css @@ -204,7 +204,7 @@ img.logo .airtime_auth_help_icon, .custom_auth_help_icon, .stream_username_help_icon, .playlist_type_help_icon, .repeat_tracks_help_icon, .show_linking_help_icon, .admin_username_help_icon, .stream_type_help_icon, -.show_timezone_help_icon{ +.show_timezone_help_icon, .show_autoplaylist_help_icon { cursor: help; position: relative; display:inline-block; zoom:1; @@ -214,6 +214,9 @@ img.logo line-height:16px !important; vertical-align: text-top; } +.qtip a { + color: white; +} /* Clearfix */ .clearfix:after, .side_playlist li:after { content: "."; display: block; height: 0; clear: both; visibility: hidden;} From 5372014fd481351054e2a8204579044d520cdd9c Mon Sep 17 00:00:00 2001 From: ryan Date: Mon, 26 Nov 2018 11:27:17 -0600 Subject: [PATCH 6/6] delete file accidentally added to autoloading UI PR --- airtime_mvc/public/css/radio-page/custom.css | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 airtime_mvc/public/css/radio-page/custom.css diff --git a/airtime_mvc/public/css/radio-page/custom.css b/airtime_mvc/public/css/radio-page/custom.css deleted file mode 100644 index 5e138b105..000000000 --- a/airtime_mvc/public/css/radio-page/custom.css +++ /dev/null @@ -1,15 +0,0 @@ -#schedule_iframe, .tab_content { - color: #fff; - text-align: center; - width: 770px; - max-width: 770px; - margin: -70px auto 0px -380px; - height: calc(100vh - 200px) !important; - padding: 10px; - padding-left: 10px; - margin-bottom: -100px; - padding-top: 50px; - position: absolute; - left: 50%; - overflow: hidden; -} \ No newline at end of file