Please unzip the downloaded theme zip file, you will get folder 'qualisaude'
+
+
Copy folder 'qualisaude' and put into theme folder of your moodle system
+
+
Next login as Site administrator
+
+
Go to 'Site administration' -> 'Notifications' , here on 'Plugins check' page you will see the qualisaude theme in listing.
+
+
Click the "Upgrade Moodle database now" button displayed on bottom of the page
+
+
You will get success message once the theme installed successfully.
+
+
By clicking "Continue" button on success page , you will get options to change the qualisaude theme settings.
+
+
You can modify the settings later too :-)
+
+
+
+
+
Steps to set qualisaude theme as default theme for your moodle system
+
+
+
+
Login as site administrator
+
+
Go to Site administration -> Appearance -> Themes -> Theme selector
+
+
Click the "Change theme" button for device type as "Default"
+
+
It will list all the available themes for "Default device"
+
+
Then click "Use theme" button on "qualisaude theme"
+
+
Next click the "Continue" button ,thats it.
+
+
Cheers, you have done it !!!
+
+
If you need any support related to this theme , kindly send a mail to info@lmsace.com
+
+
+
+
+
+
+
+
+
+
diff --git a/config.php b/config.php
new file mode 100644
index 0000000..c49238b
--- /dev/null
+++ b/config.php
@@ -0,0 +1,95 @@
+.
+
+/**
+ * Theme Config details
+ *
+ * @package theme_qualisaude
+ * @copyright 2015 LmsaceDev Team , lmsace.com
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ *
+ */
+defined('MOODLE_INTERNAL') || die;
+
+$THEME->name = 'qualisaude';
+
+$THEME->sheets = ['custom'];
+
+$THEME->editor_sheets = [];
+
+$THEME->parents = ['boost'];
+
+$THEME->enable_dock = false;
+
+$THEME->yuicssmodules = array();
+
+$THEME->rendererfactory = 'theme_overridden_renderer_factory';
+
+$THEME->requiredblocks = '';
+
+$THEME->addblockposition = BLOCK_ADDBLOCK_POSITION_FLATNAV;
+
+$THEME->prescsscallback = 'theme_qualisaude_get_pre_scss';
+
+$THEME->scss = function($theme) {
+ return theme_qualisaude_get_main_scss_content($theme);
+};
+
+$THEME->csspostprocess = 'theme_qualisaude_process_css';
+
+$THEME->extrascsscallback = 'theme_qualisaude_get_extra_scss';
+
+$THEME->javascripts_footer = ['theme'];
+
+$THEME->layouts = array(
+ // The site home page.
+
+ // Standard layout with blocks, this is recommended for most pages with general information.
+ 'standard' => array(
+ 'file' => 'columns2.php',
+ 'regions' => array('side-pre'),
+ 'defaultregion' => 'side-pre',
+ ),
+ 'admin' => array(
+ 'file' => 'columns2.php',
+ 'regions' => array('side-pre'),
+ 'defaultregion' => 'side-pre',
+ ),
+ 'frontpage' => array(
+ 'file' => 'frontpage.php',
+ 'regions' => array('side-pre'),
+ 'defaultregion' => 'side-pre',
+ 'options' => array('nonavbar' => true),
+ ),
+ 'login' => array(
+ 'file' => 'login.php',
+ 'regions' => array('side-pre'),
+ 'defaultregion' => 'side-pre',
+ 'options' => array('nonavbar' => true),
+ ),
+ 'mydashboard' => array(
+ 'file' => 'my.php',
+ 'regions' => array('side-pre'),
+ 'defaultregion' => 'side-pre',
+ 'options' => array('nonavbar' => true),
+ ),
+ 'course' => array(
+ 'file' => 'course.php',
+ 'regions' => array('side-pre'),
+ 'defaultregion' => 'side-pre',
+ 'options' => array('nonavbar' => false, ),
+ )
+);
\ No newline at end of file
diff --git a/javascript/bootstrap-transition.js b/javascript/bootstrap-transition.js
new file mode 100644
index 0000000..5fca5e7
--- /dev/null
+++ b/javascript/bootstrap-transition.js
@@ -0,0 +1,47 @@
+/* ===================================================
+ * bootstrap-transition.js v2.0.4
+ * http://twitter.github.com/bootstrap/javascript.html#transitions
+ * ===================================================
+ * Copyright 2012 Twitter, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ========================================================== */
+
+!function($) {
+ $(function() {
+ "use strict"; // Jshint ;_;.
+ /* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
+ * ======================================================= */
+ $.support.transition = (function() {
+ var transitionEnd = (function() {
+ var el = document.createElement('bootstrap')
+ , transEndEventNames = {
+ 'WebkitTransition' : 'webkitTransitionEnd',
+ 'MozTransition' : 'transitionend',
+ 'OTransition' : 'oTransitionEnd',
+ 'msTransition' : 'MSTransitionEnd',
+ 'transition' : 'transitionend'
+ }
+ , name;
+ for (name in transEndEventNames) {
+ if (el.style[name] !== undefined) {
+ return transEndEventNames[name];
+ }
+ }
+ }());
+ return transitionEnd && {
+ end: transitionEnd
+ };
+ })();
+ });
+}(window.jQuery);
\ No newline at end of file
diff --git a/javascript/theme.js b/javascript/theme.js
new file mode 100644
index 0000000..d9b1230
--- /dev/null
+++ b/javascript/theme.js
@@ -0,0 +1,59 @@
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// Moodle is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with Moodle. If not, see .
+
+/**
+ * theme.js
+ * @package theme_qualisaude
+ * @copyright 2015 onwards LMSACE Dev Team (http://www.lmsace.com)
+ * @author LMSACE Dev Team
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
+
+(function($) {
+ var img = $("nav#header").find('.avatar').find('img[src$="/u/f2"]');
+ var src = img.attr('src');
+ img.attr('src', src + "_white");
+ /* var msg = $("header#header").find('#nav-message-popover-container .nav-link').find("img[src$='t/message']");
+ msgsrc = msg.attr('src');
+ msg.attr('src', msgsrc + "_white");
+ var note = $("header#header").find('#nav-notification-popover-container .nav-link').find("img[src$='i/notifications']");
+ var notesrc = note.attr('src');
+ note.attr('src', notesrc + "_white");*/
+ /* ------- Check navbar button status -------- */
+ if ($("#header .navbar-nav button").attr('aria-expanded') === "true") {
+ $("#header .navbar-nav").find('button').addClass('is-active');
+ }
+ /* ------ Event for change the drawer navbar style ------ */
+ $("#header .navbar-nav button").click(function() {
+ $this = $(this);
+ setTimeout(function() {
+ if ($this.attr('aria-expanded') === "true") {
+ $("#header .navbar-nav").find('button').addClass('is-active');
+ } else {
+ $("#header .navbar-nav").find('button').removeClass('is-active');
+ }
+ }, 200);
+ });
+
+ var foothtml = $('footer#page-footer').text();
+ if ($.trim(foothtml).length == 0) {
+ $('footer#page-footer').addClass('empty-footer');
+ }
+ addhtml = $('.address-head').text();
+ if ($.trim(addhtml).length == 0) {
+ $('.address-head').addClass('empty-address');
+ }
+
+})(jQuery);
\ No newline at end of file
diff --git a/lang/ar/theme_qualisaude.php b/lang/ar/theme_qualisaude.php
new file mode 100644
index 0000000..cba8846
--- /dev/null
+++ b/lang/ar/theme_qualisaude.php
@@ -0,0 +1,175 @@
+.
+
+/**
+ * Strings for component 'theme_qualisaude', language 'en'
+ *
+ * @package theme_qualisaude
+ * @copyright 2015 LMSACE Dev Team, lmsace.com
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
+defined('MOODLE_INTERNAL') || die;
+
+$string['about'] = 'حول';
+$string['aboutus'] = 'معلومات عنا';
+$string['address'] = 'عنوان';
+$string['calendar'] = 'تقويم';
+$string['choosereadme'] = '
قروض موضوع
Moodle qualisaude موضوع
ويستند هذا الموضوع على موضوع Boost موودل.
+
+المؤلف: LMSACE فريق ديف
+الاتصال: info@lmsace.com
+موقع الكتروني: www.lmsace.com
';
+$string['configtitle'] = 'qualisaude';
+$string['connectus'] = 'اتصل بنا';
+$string['contact'] = 'اتصال';
+$string['copyright_footer'] = 'حق النشر';
+$string['copyright_default'] = 'حقوق الطبع والنشر والنسخ. 2017 - وضعت من قبل LMSACE.com. مشغل بواسطة Moodle';
+$string['customcss'] = 'لغة تنسيق ويب حسب الطلب';
+$string['customcssdesc'] = 'وأيا كان CSS قواعد تضيفها إلى هذا جزء النص أن تنعكس في كل صفحة، مما يجعل من الأسهل لتخصيص هذا الموضوع.';
+$string['defaultaddress'] = '308 نيجرا حارة ضيقة، Albeeze، نيويورك، 87104';
+$string['defaultemailid'] = 'info@example.com';
+$string['defaultphoneno'] = '(000) 123-456';
+$string['emailid'] = 'البريد الإلكتروني';
+$string['fburl'] = 'فيس بوك';
+$string['fburl_default'] = 'https://www.facebook.com/yourfacebookid';
+$string['fburldesc'] = 'عنوان الموقع الفيسبوك المؤسسة.';
+$string['fcourses'] = 'دورات مميزة';
+$string['fcoursesdesc'] = 'يرجى اختيار دورات مميزة';
+$string['featuredcoursesheading'] = 'دورات مميزة';
+$string['footbgimg'] = 'الصورة الخلفية';
+$string['footbgimgdesc'] = 'حجم صورة الخلفية يجب أن يكون متبعا حجم 1345 X 517';
+$string['footerheading'] = 'تذييل';
+$string['enable'] = 'فوتيرلوغو تمكين';
+$string['footnote'] = 'حاشية';
+$string['footnotedefault'] = '
أبجد هوز هو مجرد دمية النص من صناعة المطابع ودور النشر. وكان أبجد هوز في هذه الصناعة القياسية دمية النص من أي وقت مضى منذ 1500s، عندما مجهول مقعدا الطابعة الطباعة من نوع والتنضيد ترونيك، وصحائف taining الممرات أبجد هوز. اقرأ أكثر »
';
+$string['footnotedesc'] = 'أيا كان ما أضفنا إلى هذا جزء النص سيتم عرضها في تذييل في جميع أنحاء الموقع موودل الخاص بك.';
+$string['frontpageheading'] = 'الصفحة الأمامية';
+$string['gpurl'] = 'جوجل +';
+$string['gpurl_default'] = 'https://www.google.com/+yourgoogleplusid';
+$string['gpurldesc'] = 'عنوان الموقع على + Google لمؤسستك.';
+$string['headerheading'] = 'جنرال لواء';
+$string['homebanner'] = 'الصفحة الرئيسية راية';
+$string['homebanner_slogan'] = 'لدينا أكبر مجموعة من الدورات';
+$string['homebannerdesc'] = 'يجب أن تكون الصورة 1345px X 535px.';
+$string['infoblockheading'] = 'معلومات بلوك';
+$string['infoblocktext'] = 'نص معلومات كتلة';
+$string['infoblocktextdefault'] = '
أبجد هوز هو مجرد دمية النص من صناعة المطابع ودور النشر. وكان أبجد هوز النص القياسي في هذه الصناعة وهمية من أي وقت مضى منذ 1500s، عندما مجهول مقعدا الطابعة الطباعة من نوع وسارعت الى تقديم نوع العينة الكتاب. وقد نجا خمسة قرون فحسب اقرأ أكثر
';
+$string['infoblocktextdesc'] = 'نص كتلة من المعلومات';
+$string['infoblocktitle'] = 'معلومات كتلة عنوان';
+$string['infoblocktitledefault'] = 'من نحن';
+$string['infoblocktitledesc'] = 'عنوان كتلة من المعلومات';
+$string['infolink'] = 'معلومات سريعة';
+$string['infolinkdefault'] = 'المجتمع موودل|https://moodle.org
+الدعم المجاني موودل|https://moodle.org/support
+تطوير موودل|https://moodle.org/development
+موودل|http://docs.moodle.org|Moodle Docs
+Moodle.com|http://moodle.com/';
+$string['infolink_desc'] = 'يمكنك تكوين معلومات العرف سريعة هنا ليتم عرضها حسب المواضيع. يتكون كل سطر من بعض النصوص القائمة، وURL رابط (اختياري)، وهو اللقب تلميح الأدوات (اختياري) ورمز اللغة أو مفصولة بفواصل قائمة رموز (اختياري، لعرض خط لمستخدمي اللغة المحددة فقط)، مفصولة الأنابيب characters.For سبيل المثال:
المجتمع موودل|https://moodle.org
+الدعم المجاني موودل|https://moodle.org/support
+تطوير موودل|https://moodle.org/development
+موودل|http://docs.moodle.org|Moodle Docs
+موودل الألمانية|http://docs.moodle.org/de|Documentation in German|de
+Moodle.com|http://moodle.com/
';
+$string['logo'] = 'شعار';
+$string['logodesc'] = 'يرجى تحميل شعار مخصص هنا إذا كنت ترغب في إضافته إلى الرأس يجب أن تكون الصورة 37px عالية وأي عرض معقول (الحد الأدنى: 250px) أن الدعاوى.';
+$string['newsblockcontent'] = 'أخبار وأحداث بلوك المحتوى';
+$string['newsblockcontentdesc'] = 'أيا كان ما أضفنا إلى هذا جزء النص سيتم عرضها في الأخبار والأحداث بلوك.';
+$string['newsblockheading'] = 'أخبار وأحداث بلوك';
+$string['newseventbg'] = 'أخبار وأحداث كتلة صورة الخلفية';
+$string['newseventbgdesc'] = 'يجب أن تكون الصورة 1345px X 760px.';
+$string['newseventcontent'] = '
news & events of 2017
أبجد هوز هو مجرد دمية النص من صناعة المطابع ودور النشر. وكان أبجد هوز النص القياسي في هذه الصناعة وهمية من أي وقت مضى منذ 1500s، عندما مجهول مقعدا الطابعة الطباعة من نوع وسارعت الى تقديم نوع العينة الكتاب. وقد نجا خمسة قرون فحسب، بل أيضا قفزة في التنضيد الالكتروني، وصحائف taining أبجد هوز الممرات، ومؤخرا في التنضيد الالكتروني، وصحائف taining أبجد هوز الممرات، وأكثر من ذلك recentwith برامج النشر المكتبي مثل PageMaker ألدوس بما في ذلك إصدارات أبجد هوز.
أبجد هوز هو مجرد دمية النص من صناعة الطباعة والتنضيد.
';
+$string['sb4_default_title'] = 'كسب المال';
+$string['signup'] = 'سجل';
+$string['sitefblock1'] = 'موقع اخبارى بلوك الأولى';
+$string['sitefblock2'] = 'موقع اخبارى بلوك الثانية';
+$string['sitefblock3'] = 'موقع اخبارى بلوك الثالث';
+$string['sitefblock4'] = 'موقع اخبارى كتلة الرابع';
+$string['sitefblockbuttontext'] = 'نص الارتباط';
+$string['sitefblockbuttontextdesc'] = 'النص الذي يظهر على الزر.';
+$string['sitefblockbuttonurl'] = 'URL رابط';
+$string['sitefblockbuttonurldesc'] = 'URL على زر سوف يشير إلى.';
+$string['sitefblockcontent'] = 'محتوى';
+$string['sitefblockcontentdesc'] = 'يتم عرض المحتوى في الموقع ميزات بلوك. يبقيه قصيرة وحلوة.';
+$string['sitefblockimage'] = 'صورة';
+$string['sitefblockimagedesc'] = 'وهذا يوفر خيار عرض صورة فوق النص في الموقع ميزات بلوك';
+$string['sitefblockimgcolors'] = 'لون صورة الخلفية';
+$string['sitefblockimgcolorsdesc'] = 'تغيير الألوان على الموقع ميزة كتل صورة لون الخلفية';
+$string['sitefblocksheading'] = 'بنات موقع اخبارى';
+$string['sitefblocktitle'] = 'عنوان';
+$string['sitefblocktitledesc'] = 'العنوان لتظهر في هذا الموقع ميزات بلوك';
+$string['sitefblockurltarget'] = 'الهدف الارتباط';
+$string['sitefblockurltargetdesc'] = 'اختيار الكيفية التي ينبغي أن يتم فتح الرابط';
+$string['sitefblockurltargetnew'] = 'صفحة جديدة';
+$string['sitefblockurltargetparent'] = 'الإطار الأصل';
+$string['sitefblockurltargetself'] = 'الصفحة الحالية';
+$string['sitefeaturebg'] = 'يعرض الموقع صورة الخلفية';
+$string['sitefeaturebgdesc'] = 'يجب أن تكون الصورة 1345px X 379px.';
+$string['sitenews'] = 'موقع أخبار';
+$string['slidecapbgcolor'] = 'شريحة اللون توضيحية الخلفية';
+$string['slidecapbgcolordesc'] = 'ما لون يجب أن تكون التسمية التوضيحية خلفية الشريحة.';
+$string['slidecapcolor'] = 'الشريحة لون النص تسمية توضيحية';
+$string['slidecapcolordesc'] = 'ما لون يجب أن يكون عنوان النص والشرائح.';
+$string['slidecaption'] = 'شرح الشرائح';
+$string['slidecaptiondefault'] = 'التمهيد القائم المتزلج - {$a->slideno}';
+$string['slidecaptiondesc'] = 'أدخل النص شرح لاستخدامه في الشريحة';
+$string['slideimage'] = 'صورة الشريحة';
+$string['slideimagedesc'] = 'يجب أن تكون الصورة 1400px X 418px.';
+$string['slidedescbgcolor'] = 'شريحة اللون الوصف الخلفية';
+$string['slidedescbgcolordesc'] = 'ما لون وينبغي أن يكون وصفا خلفية الشريحة.';
+$string['slidedesccolor'] = 'الشريحة لون نص الوصف';
+$string['slidedesccolordesc'] = 'ما لون وينبغي أن يكون وصفا نص الشريحة.';
+$string['slideno'] = 'الانزلاق {$a->slide}';
+$string['slidenodesc'] = 'أدخل إعدادات الشريحة {$a->slide}.';
+$string['slideshowdesc'] = 'وهذا يخلق عرض الشرائح لمدة تصل إلى اثني عشر الشرائح لتتمكن من تعزيز العناصر الهامة من موقع الويب الخاص بك. المعرض هو استجابة حيث يتم تعيين ارتفاع الصورة وفقا لحجم الشاشة. ارتفاع الموصى به هو 418px. ومن المقرر عرض في 100٪، وبالتالي فإن الارتفاع الفعلي سيكون أقل إذا كان العرض أكبر من حجم الشاشة. في أحجام الشاشة الصغيرة يتم تقليل ارتفاع حيوي دون الحاجة إلى توفير صور منفصلة. للإشارة عرض الشاشة <767px = ارتفاع 438px، العرض بين 768px 979px و= ارتفاع 418px والعرض> 980px = ارتفاع 418px. إذا لم يتم تحديد صورة لشريحة، ثم يتم استخدام الصور default_slide في المجلد بيكسل.';
+$string['slideshowheading'] = 'عرض الشرائح';
+$string['slideshowheadingsub'] = 'عرض الشرائح في الصفحة الاولى';
+$string['slidedesc'] = 'الوصف الشرائح';
+$string['slidedesctext'] = 'أدخل وصف الشريحة.';
+$string['slidedescdefault'] = '
Neque بورو quisquam بتوقيت شرق الولايات المتحدة خامسة dolorem هوز quia دولور الجلوس امات، consectetur، adipisci velit
';
+$string['toggleslideshow'] = 'عرض الشرائح';
+$string['toggleslideshowdesc'] = 'اختيار ما إذا كنت ترغب في إخفاء أو إظهار عرض الشرائح.';
+$string['twurl'] = 'تغريد';
+$string['twurl_default'] = 'https://twitter.com/yourtwittername';
+$string['twurldesc'] = 'رابط تويتر المؤسسة.';
+$string['contact_us'] = "اتصل بنا";
+$string['followus'] = "تابعنا";
+$string['info'] = "معلومات";
+$string['phone'] = "هاتف";
+$string['email'] = "البريد الإلكتروني";
+$string['callus'] = "اتصل بنا";
+$string['home'] = "الصفحة الرئيسية";
+$string['moodle_community'] = "المجتمع موودل";
+$string['moodle_docs'] = "موودل";
+$string['moodle_support'] = "دعم موودل";
\ No newline at end of file
diff --git a/lang/en/theme_qualisaude.php b/lang/en/theme_qualisaude.php
new file mode 100644
index 0000000..91f6642
--- /dev/null
+++ b/lang/en/theme_qualisaude.php
@@ -0,0 +1,202 @@
+.
+
+/**
+ * English lang file
+ * @package theme_qualisaude
+ * @copyright 2015 onwards LMSACE Dev Team (http://www.lmsace.com)
+ * @author LMSACE Dev Team
+ * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
+
+$string['about'] = 'About';
+$string['aboutus'] = 'About Us';
+$string['address'] = 'Address';
+$string['calendar'] = 'Calendar';
+$string['configtitle'] = "qualisaude Settings";
+$string['choosereadme'] = '
Theme Credits
Moodle qualisaude theme
This theme is based on the Boost Moodle theme.
Authors: LMSACE Dev Team Contact: info@lmsace.com Website: www.lmsace.com
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and tronic typesetting, sheets taining Lorem Ipsum passages. Read More »
';
+$string['footnotedesc'] = 'Whatever you add to this textarea will be displayed in the footer throughout your Moodle site.';
+$string['frontpageheading'] = 'Front page';
+$string['gpurl'] = 'Google+';
+$string['gpurl_default'] = 'https://www.google.com/+yourgoogleplusid';
+$string['gpurldesc'] = 'The Google+ url of your organisation.';
+$string['headerheading'] = 'General';
+$string['homebanner'] = 'Home Page Banner';
+$string['homebanner_slogan'] = 'We have the largest collection of courses';
+$string['homebannerdesc'] = 'The image should be 1345px X 535px.';
+$string['infoblockheading'] = 'Info Block';
+$string['infoblocktext'] = 'Info Block Text';
+$string['infoblocktextdefault'] = '
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries ReadMore
';
+$string['infoblocktextdesc'] = 'The text of the info block';
+$string['infoblocktitle'] = 'Info Block Title';
+$string['infoblocktitledefault'] = 'Who we are';
+$string['infoblocktitledesc'] = 'The title of the info block';
+$string['infolink'] = 'Info Links';
+$string['infolinkdefault'] = 'Moodle community|https://moodle.org
+Moodle free support|https://moodle.org/support
+Moodle development|https://moodle.org/development
+Moodle Docs|http://docs.moodle.org|Moodle Docs
+Moodle.com|http://moodle.com/';
+$string['infolink_desc'] = 'You can configure a custom Info Links here to be shown by themes. Each line consists of some menu text, a link URL (optional), a tooltip title (optional) and a language code or comma-separated list of codes (optional, for displaying the line to users of the specified language only), separated by pipe characters.For example:
+
';
+
+$string['logo'] = 'Logo';
+$string['logodesc'] = 'Please upload your custom logo here if you want to add it to the header. The image should be 37px high and any reasonable width (minimum:250px) that suits.';
+
+$string['newsblockcontent'] = 'News & Events Block Content';
+$string['newsblockcontentdesc'] = 'Whatever you add to this textarea will be displayed in the News & Events Block.';
+$string['newsblockheading'] = 'News & Events Block';
+$string['newseventbg'] = 'News & Events Block Background Image';
+$string['newseventbgdesc'] = 'The image should be 1345px X 760px.';
+$string['newseventcontent'] = '
+
+
+
+
+
+
+
+
+
+
news & events of 2017
+
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, sheets taining Lorem Ipsum passages, and more recently into electronic typesetting, sheets taining Lorem Ipsum passages, and more recentwith desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Lorem Ipsum is simply dummy text of the printing and typesetting industry.
';
+$string['sb4_default_title'] = 'Earn Money';
+$string['signup'] = 'Sign up';
+$string['sitefblock1'] = 'Site Feature First Block';
+$string['sitefblock2'] = 'Site Feature Second Block';
+$string['sitefblock3'] = 'Site Feature Third Block';
+$string['sitefblock4'] = 'Site Feature Fourth Block';
+$string['sitefblockbuttontext'] = 'Link text';
+$string['sitefblockbuttontextdesc'] = 'Text to appear on the button.';
+$string['sitefblockbuttonurl'] = 'Link URL';
+$string['sitefblockbuttonurldesc'] = 'URL the button will point to.';
+$string['sitefblockcontent'] = 'Content';
+$string['sitefblockcontentdesc'] = 'Content to display in the Site Features Block. Keep it short and sweet.';
+$string['sitefblockimage'] = 'Image';
+$string['sitefblockimagedesc'] = 'This provides the option of displaying an image above the text in the Site Features Block';
+$string['sitefblockimgcolors'] = 'Image Background colour';
+$string['sitefblockimgcolorsdesc'] = 'Change the colours on the Site Feature Blocks Image Background color';
+$string['sitefblocksheading'] = 'Site Feature blocks';
+$string['sitefblocktitle'] = 'Title';
+$string['sitefblocktitledesc'] = 'Title to show in this Site Features Block';
+$string['sitefblockurltarget'] = 'Link target';
+$string['sitefblockurltargetdesc'] = 'Choose how the link should be opened';
+$string['sitefblockurltargetnew'] = 'New page';
+$string['sitefblockurltargetparent'] = 'Parent frame';
+$string['sitefblockurltargetself'] = 'Current page';
+$string['sitefeaturebg'] = 'Site Features Background Image';
+$string['sitefeaturebgdesc'] = 'The image should be 1345px X 379px.';
+$string['sitenews'] = 'Site News';
+$string['slidecapbgcolor'] = 'Slide Caption Background colour';
+$string['slidecapbgcolordesc'] = 'What colour the slide caption background should be.';
+$string['slidecapcolor'] = 'Slide Caption text colour';
+$string['slidecapcolordesc'] = 'What colour the slide caption text should be.';
+$string['slidecaption'] = 'Slide caption';
+$string['slidecaptiondefault'] = 'Bootstrap Based Slider - {$a->slideno}';
+$string['slidecaptiondesc'] = 'Enter the caption text to use for the slide';
+$string['slideimage'] = 'Slide image';
+$string['slideimagedesc'] = 'The image should be 1400px X 418px.';
+$string['slidedescbgcolor'] = 'Slide Description Background colour';
+$string['slidedescbgcolordesc'] = 'What colour the slide description background should be.';
+$string['slidedesccolor'] = 'Slide Description text colour';
+$string['slidedesccolordesc'] = 'What colour the slide description text should be.';
+$string['slideno'] = 'Slide {$a->slide}';
+$string['slidenodesc'] = 'Enter the settings for slide {$a->slide}.';
+$string['slideshowdesc'] = 'This creates a slide show of up to twelve slides for you to promote important elements of your site. The show is responsive where image height is set according to screen size. The recommended height is 418px. The width is set at 100% and therefore the actual height will be smaller if the width is greater than the screen size. At smaller screen sizes the height is reduced dynamically without the need to provide separate images. For reference screen width < 767px = height 438px, width between 768px and 979px = height 418px and width > 980px = height 418px. If no image is selected for a slide, then the default_slide images in the pix folder is used.';
+$string['slideshowheading'] = 'Slide show';
+$string['slideshowheadingsub'] = 'Slide show for the front page';
+$string['slidedesc'] = 'Slide Description';
+$string['slidedesctext'] = 'Enter the description of the slide.';
+$string['slidedescdefault'] = '
Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris