1 |
efrain |
1 |
<?php
|
|
|
2 |
// This file is part of Moodle - http://moodle.org/
|
|
|
3 |
//
|
|
|
4 |
// Moodle is free software: you can redistribute it and/or modify
|
|
|
5 |
// it under the terms of the GNU General Public License as published by
|
|
|
6 |
// the Free Software Foundation, either version 3 of the License, or
|
|
|
7 |
// (at your option) any later version.
|
|
|
8 |
//
|
|
|
9 |
// Moodle is distributed in the hope that it will be useful,
|
|
|
10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
12 |
// GNU General Public License for more details.
|
|
|
13 |
//
|
|
|
14 |
// You should have received a copy of the GNU General Public License
|
|
|
15 |
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
|
|
16 |
|
|
|
17 |
/**
|
|
|
18 |
* Language file.
|
|
|
19 |
*
|
|
|
20 |
* @package theme_monocolor
|
|
|
21 |
* @copyright 2022 - 2024 Marcin Czaja (https://rosea.io)
|
|
|
22 |
* @license Commercial https://themeforest.net/licenses
|
|
|
23 |
*/
|
|
|
24 |
|
|
|
25 |
defined('MOODLE_INTERNAL') || die();
|
|
|
26 |
$siteurl = $CFG->wwwroot;
|
|
|
27 |
|
|
|
28 |
$string['bootswatch'] = 'Bootswatch';
|
|
|
29 |
$string['bootswatch_desc'] = 'A bootswatch is a set of Bootstrap variables and css to style Bootstrap';
|
|
|
30 |
$string['choosereadme'] = 'Simple and aesthetic interface. Monocolor has a unique feature which is a course page with additional tabs. It\'s pretty cool';
|
|
|
31 |
$string['currentinparentheses'] = '(current)';
|
|
|
32 |
$string['configtitle'] = 'monocolor';
|
|
|
33 |
$string['hgeneralnav'] = 'Main navgation items';
|
|
|
34 |
$string['hgeneralnav_desc'] = 'Here you can turn off elements of the main navigation.';
|
|
|
35 |
$string['generalsettings'] = 'General settings';
|
|
|
36 |
$string['displaysitehome'] = 'Site home';
|
|
|
37 |
$string['displaydashboard'] = 'Dashboard';
|
|
|
38 |
$string['displaycalendar'] = 'Calendar';
|
|
|
39 |
$string['displayprivatefiles'] = 'Private files';
|
|
|
40 |
$string['displaycontentbank'] = 'Content Bank';
|
|
|
41 |
$string['displaynavitems_desc'] = '';
|
|
|
42 |
|
|
|
43 |
$string['nobootswatch'] = 'None';
|
|
|
44 |
$string['pluginname'] = 'monocolor (1.8.2)';
|
|
|
45 |
$string['privacy:metadata'] = 'The monocolor theme does not store any personal data about any user.';
|
|
|
46 |
$string['rawscss'] = 'Raw SCSS';
|
|
|
47 |
$string['rawscss_desc'] = 'Use this field to provide SCSS or CSS code which will be injected at the end of the style sheet.
|
|
|
48 |
<a class="underline--anim" href="https://rosea.gitbook.io/monocolor/demo-content/front-page-blocks/advanced-options/custom-css-scss-for-blocks" target="_blank" class="btn btn-sm btn-secondary m-2">Learn more</a>';
|
|
|
49 |
$string['rawscsspre'] = 'Raw initial SCSS';
|
|
|
50 |
$string['rawscsspre_desc'] = 'In this field you can provide initialising SCSS code, it will be injected before everything else. Most of the time you will use this setting to define variables.';
|
|
|
51 |
|
|
|
52 |
$string['empty_desc'] = '';
|
|
|
53 |
|
|
|
54 |
// Navigation improvements.
|
|
|
55 |
$string['myactivecourses'] = 'My active courses';
|
|
|
56 |
$string['coursesections'] = 'Course sections';
|
|
|
57 |
|
|
|
58 |
// Privacy.
|
|
|
59 |
$string['privacy:metadata:preference:sidebaropen'] = 'The user\'s preference for hiding or showing the right sidebar.';
|
|
|
60 |
$string['privacy:metadata:preference:darkmodeon'] = 'The user\'s preference for dark mode';
|
|
|
61 |
$string['privacy:rightdrawerclosed'] = 'The current preference for the navigation drawer is closed.';
|
|
|
62 |
$string['privacy:rightdraweropen'] = 'The current preference for the navigation drawer is open.';
|
|
|
63 |
$string['privacy:darkmodeoff'] = 'The current preference for the dark mode is off.';
|
|
|
64 |
$string['privacy:darkmodeon'] = 'The current preference for the dark mode is on.';
|
|
|
65 |
$string['privacy:metadata:preference:draweropennav'] = 'The user\'s preference for hiding or showing the drawer menu navigation.';
|
|
|
66 |
$string['privacy:drawernavclosed'] = 'The current preference for the navigation drawer is closed.';
|
|
|
67 |
$string['privacy:drawernavopen'] = 'The current preference for the navigation drawer is open.';
|
|
|
68 |
|
|
|
69 |
$string['totop'] = 'Go to top';
|
|
|
70 |
|
|
|
71 |
$string['region-fpblocks-t'] = 'Frontpage Blocks Area #1 (Top)';
|
|
|
72 |
$string['region-fpblocks-b'] = 'Frontpage Blocks Area #2 (Bottom)';
|
|
|
73 |
$string['region-side-pre'] = 'Hidden Sidebar';
|
|
|
74 |
$string['region-dtopblocks'] = 'Dashboard Top Blocks';
|
|
|
75 |
$string['region-dbottomblocks'] = 'Dashboard Bottom Blocks';
|
|
|
76 |
$string['region-ctopbl'] = 'Course - Top Blocks';
|
|
|
77 |
$string['region-cbottombl'] = 'Course - Bottom Blocks';
|
|
|
78 |
$string['region-cstopbl'] = 'Course Sections - Top Blocks';
|
|
|
79 |
$string['region-csbottombl'] = 'Course Sections - Bottom Blocks';
|
|
|
80 |
$string['region-sidebartopblocks'] = 'Sidebar - Top Blocks';
|
|
|
81 |
$string['region-sidebarbottomblocks'] = 'Sidebar - Bottom Blocks';
|
|
|
82 |
$string['region-coursetab-a'] = 'Course Tab #1';
|
|
|
83 |
$string['region-coursetab-b'] = 'Course Tab #2';
|
|
|
84 |
$string['region-coursetab-c'] = 'Course Tab #3';
|
|
|
85 |
$string['region-coursetab-d'] = 'Course Tab #4';
|
|
|
86 |
$string['region-coursetab-e'] = 'Course Tab #5';
|
|
|
87 |
|
|
|
88 |
$string['darkmodetheme'] = 'Dark Mode Switcher';
|
|
|
89 |
$string['darkmodetheme_desc'] = '';
|
|
|
90 |
$string['topbareditmode'] = 'Display the "Edit mode" switcher on the top bar';
|
|
|
91 |
$string['topbareditmode_desc'] = 'Similar to the default Moodle theme.';
|
|
|
92 |
$string['darkmodefirst'] = 'Only Dark Mode UI';
|
|
|
93 |
$string['darkmodefirst_desc'] = 'Force Dark Interface Only. When enabled the Dark Mode Switcher will not be displayed.';
|
|
|
94 |
$string['sdarkmode'] = 'Dark Mode (Button Title/Tooltip)';
|
|
|
95 |
$string['sdarkmode_desc'] = '<span class="badge-sq badge-info mb-2">FAQ</span> <ul><li><span>Displaying text in multiple languages </span><a class="underline--anim" href="https://docs.moodle.org/400/en/Multi-language_content_filter" target="_blank">Learn more</a></li></ul>';
|
|
|
96 |
$string['slightmode'] = 'Light Mode (Button Title/Tooltip)';
|
|
|
97 |
$string['slightmode_desc'] = '<span class="badge-sq badge-info mb-2">FAQ</span> <ul><li><span>Displaying text in multiple languages </span><a class="underline--anim" href="https://docs.moodle.org/400/en/Multi-language_content_filter" target="_blank">Learn more</a></li></ul>';
|
|
|
98 |
|
|
|
99 |
$string['themeauthor'] = 'Theme Author';
|
|
|
100 |
$string['themeauthor_desc'] = 'Show information about the author of the theme - in the source code.';
|
|
|
101 |
|
|
|
102 |
$string['fontawesome'] = 'FontAwesome (v6.5.1)';
|
|
|
103 |
$string['fontawesome_desc'] = 'Self-hosted - Web Fonts.';
|
|
|
104 |
|
|
|
105 |
$string['showcolorcoursecardmask'] = 'Display Course Card Image Mask';
|
|
|
106 |
$string['colorcoursecardmask'] = 'Course Card Image Mask Color';
|
|
|
107 |
|
|
|
108 |
$string['courselistview'] = 'Simple list (Course List)';
|
|
|
109 |
$string['courselistview_desc'] = '<p>Display a simple list instead default course cards. Only on the /course/index.php.</p><img src="'.$siteurl.'/theme/monocolor/doc/course-simple-list.png" class="img-fluid mt-2 rounded" width="100%" alt="Course Simple List" />';
|
|
|
110 |
|
|
|
111 |
$string['courselangbadge'] = 'Course Language Badge';
|
|
|
112 |
$string['courselangbadge_desc'] = '<p>If you have made the course language, you can display a badge for it. (Course - Settings - Appearance - Force Language).</p><img src="'.$siteurl.'/theme/monocolor/doc/course-lang-badge.jpg" class="img-fluid mt-2 rounded" width="100%" alt="Course Simple List" />';
|
|
|
113 |
|
|
|
114 |
$string['thiscourse'] = 'Course Sections';
|
|
|
115 |
$string['nothiscourse'] = 'We cannot identify any course sections or topics';
|
|
|
116 |
|
|
|
117 |
$string['showhintcoursehiddensetting'] = 'Show hints in hidden courses';
|
|
|
118 |
$string['showhintcoursehiddensetting_desc'] = 'With this setting a hint will appear in the course header as long as the visibility of the course is hidden. This helps to identify the visibility state of a course at a glance without the need for looking at the course settings.';
|
|
|
119 |
$string['showhintcoursehiddensettingslink'] = 'You can change the visibility in the <a class="underline--anim" href="{$a->url}">course settings</a>.';
|
|
|
120 |
$string['showhintcoursehiddengeneral'] = 'This course is currently <strong>hidden</strong>. Only enrolled teachers can access this course when hidden.';
|
|
|
121 |
$string['showhintcourseguestaccesslink'] = 'To have full access to the course, you can <a class="underline--anim" href="{$a->url}">self enrol into this course</a>.';
|
|
|
122 |
|
|
|
123 |
|
|
|
124 |
// Edit Button Text.
|
|
|
125 |
$string['editon'] = 'Turn Edit On';
|
|
|
126 |
$string['editoff'] = 'Turn Edit Off';
|
|
|
127 |
$string['left'] = 'Left';
|
|
|
128 |
$string['center'] = 'Center';
|
|
|
129 |
$string['right'] = 'Right';
|
|
|
130 |
|
|
|
131 |
|
|
|
132 |
// Custom Alert.
|
|
|
133 |
$string['alertsettings'] = 'Custom Alert';
|
|
|
134 |
$string['displaycustomalert'] = 'Display Custom Alert';
|
|
|
135 |
$string['displaycustomalert_desc'] = '';
|
|
|
136 |
$string['closecustomalert'] = 'Close Custom Alert Permanently';
|
|
|
137 |
$string['closecustomalert_desc'] = '';
|
|
|
138 |
$string['customalerthtml'] = 'Custom Alert Content';
|
|
|
139 |
$string['customalerthtml_desc'] = '';
|
|
|
140 |
$string['customalertid'] = 'Custom Alert ID';
|
|
|
141 |
$string['customalertid_desc'] = 'Change the ID to show the alert again.';
|
|
|
142 |
|
|
|
143 |
// SEO.
|
|
|
144 |
$string['seosettings'] = 'SEO';
|
|
|
145 |
$string['seometadesc'] = 'Meta Description';
|
|
|
146 |
$string['seometadesc_desc'] = '';
|
|
|
147 |
$string['seoappletouchicon'] = 'Apple Touch Icon';
|
|
|
148 |
$string['seoappletouchicon_desc'] = '';
|
|
|
149 |
$string['seothemecolor'] = 'SEO Theme Color';
|
|
|
150 |
$string['seothemecolor_desc'] = 'The theme-color value for the name attribute of the <meta> element indicates a suggested color that user agents should use to customize the display of the page or of the surrounding user interface.
|
|
|
151 |
<a class="underline--anim" href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name/theme-color" target="_blank">Learn more about theme-color tag</a>';
|
|
|
152 |
$string['seomanifestjson'] = 'Manifest JSON';
|
|
|
153 |
$string['seomanifestjson_desc'] = '';
|
|
|
154 |
|
|
|
155 |
// Course Card.
|
|
|
156 |
$string['cccteachers'] = 'Display teachers section';
|
|
|
157 |
$string['cccteachers_desc'] = 'Display teachers section <strong>on the main course page.</strong>';
|
|
|
158 |
|
|
|
159 |
$string['cccteacherslist'] = 'Display teachers list section';
|
|
|
160 |
$string['cccteacherslist_desc'] = 'Auto-generated teachers list in tab #5';
|
|
|
161 |
|
|
|
162 |
$string['cccsummary'] = 'Display Course Summary';
|
|
|
163 |
$string['cccsummary_desc'] = '';
|
|
|
164 |
|
|
|
165 |
$string['coursecarddesclimit'] = 'Course Card Description - Text Limit';
|
|
|
166 |
$string['coursecarddesclimit_desc'] = '<span class="badge-sm badge-secondary"><strong class="mr-1">Example (text length - letters):</strong> 120</span>';
|
|
|
167 |
|
|
|
168 |
$string['cccdesc'] = 'Display course description';
|
|
|
169 |
$string['cccdesc_desc'] = 'Display course description on the course card.';
|
|
|
170 |
|
|
|
171 |
$string['cccteacheravatar'] = 'Display teachers (Course Card)';
|
|
|
172 |
$string['cccteacheravatar_desc'] = '';
|
|
|
173 |
|
|
|
174 |
$string['cccfooter'] = 'Display "Get access" buttons';
|
|
|
175 |
$string['cccfooter_desc'] = '';
|
|
|
176 |
|
|
|
177 |
$string['stringaccess'] = 'Get access';
|
|
|
178 |
$string['stringaccess_desc'] = '';
|
|
|
179 |
|
|
|
180 |
$string['cccdfooter'] = 'Show Course Card Footer <small>(Get access)</small>';
|
|
|
181 |
$string['cccdfooter_desc'] = '';
|
|
|
182 |
|
|
|
183 |
$string['coursecarddesclimit'] = 'Course Card Description - Text Limit';
|
|
|
184 |
$string['coursecarddesclimit_desc'] = '<span class="badge-sm badge-secondary"><strong class="mr-1">Example (text length - letters):</strong> 120</span>';
|
|
|
185 |
|
|
|
186 |
$string['maxcoursecardtextheight'] = 'Course Card Description - Max Height';
|
|
|
187 |
$string['maxcoursecardtextheight_desc'] = '<span class="badge-sm badge-secondary"><strong class="mr-1">Default:</strong> 127px</span>';
|
|
|
188 |
|
|
|
189 |
|
|
|
190 |
// Course Index Page.
|
|
|
191 |
$string['ipcoursesummary'] = 'Display course summary (Course Index Page)';
|
|
|
192 |
$string['ipcoursesummary_desc'] = '';
|
|
|
193 |
$string['ipcourseimage'] = 'Display course image (Course Index Page)';
|
|
|
194 |
$string['ipcourseimage_desc'] = '';
|
|
|
195 |
$string['ipcoursedetails'] = 'Display course details (Course Index Page)';
|
|
|
196 |
$string['ipcoursedetails_desc'] = 'Course start date, Modification date and Course end date';
|
|
|
197 |
|
|
|
198 |
$string['hcoursepagetabs'] = 'Course Tabs';
|
|
|
199 |
$string['hcoursepagetabs_desc'] = 'Customize course tabs layout.';
|
|
|
200 |
$string['coursetablayout'] = 'Course Tab Layout';
|
|
|
201 |
$string['coursetablayout_desc'] = '<span class="badge-sq badge-info mb-2">FAQ</span> <ul><li><span>Displaying text in multiple languages </span>
|
|
|
202 |
<a class="underline--anim" href="https://docs.moodle.org/400/en/Multi-language_content_filter" target="_blank">Learn more</a></li></ul>';
|
|
|
203 |
|
|
|
204 |
$string['coursedescwidth'] = 'Custom width of the Course Description Wrapper (First Tab)';
|
|
|
205 |
$string['coursedescwidth_desc'] = 'If empty then the container will be full width.';
|
|
|
206 |
|
|
|
207 |
$string['incoursedescwidth'] = 'Custom width of the Course Description Wrapper (Course subpages)';
|
|
|
208 |
$string['incoursedescwidth_desc'] = 'If empty then the container will be full width.';
|
|
|
209 |
|
|
|
210 |
|
|
|
211 |
$string['titlecoursetab1'] = 'Course Tab #1';
|
|
|
212 |
$string['titlecoursetab1_desc'] = '';
|
|
|
213 |
$string['titlecoursetab2'] = 'Course Tab #2';
|
|
|
214 |
$string['titlecoursetab2_desc'] = '';
|
|
|
215 |
$string['titlecoursetab3'] = 'Course Tab #3';
|
|
|
216 |
$string['titlecoursetab3_desc'] = '';
|
|
|
217 |
$string['titlecoursetab4'] = 'Course Tab #4';
|
|
|
218 |
$string['titlecoursetab4_desc'] = '';
|
|
|
219 |
$string['titlecoursetab5'] = 'Course Tab #5';
|
|
|
220 |
$string['titlecoursetab5_desc'] = '';
|
|
|
221 |
|
|
|
222 |
$string['coursetab1content'] = 'Course Tab #1 (Repeatable Content)';
|
|
|
223 |
$string['coursetab2content'] = 'Course Tab #2 (Repeatable Content)';
|
|
|
224 |
$string['coursetab3content'] = 'Course Tab #3 (Repeatable Content)';
|
|
|
225 |
$string['coursetab4content'] = 'Course Tab #4 (Repeatable Content)';
|
|
|
226 |
|
|
|
227 |
|
|
|
228 |
// Headings.
|
|
|
229 |
$string['hlogin'] = 'Login Page';
|
|
|
230 |
$string['hlogin_desc'] = 'Login page customization. You can select three layouts, add background and more.';
|
|
|
231 |
$string['hsignup'] = 'Sign up Page';
|
|
|
232 |
$string['hsignup_desc'] = 'Customization of the sign up page.';
|
|
|
233 |
$string['hcoursecard'] = 'Course Card';
|
|
|
234 |
$string['hcoursecard_desc'] = 'Customize course card.';
|
|
|
235 |
$string['hcoursemainpage'] = 'Course Main Page';
|
|
|
236 |
$string['hcoursemainpage_desc'] = 'Customize course page.';
|
|
|
237 |
|
|
|
238 |
$string['loginidprovtop'] = 'Display list of identity providers before the login form';
|
|
|
239 |
$string['loginidprovtop_desc'] = '';
|
|
|
240 |
|
|
|
241 |
// Settings -- Advanced.
|
|
|
242 |
$string['advancedsettings'] = 'Advanced settings';
|
|
|
243 |
$string['googleanalytics'] = 'Google Analytics V4 Code';
|
|
|
244 |
$string['googleanalyticsdesc'] = 'Please enter your Google Analytics V4 code to enable analytics on your website. The code format should be like [G-XXXXXXXXXX].<br />To meet all GPDR rules, the code will be visible only for logged-in users. Don\'t forget to add a cookie popup with information about cookie collecting.';
|
|
|
245 |
$string['favicon'] = 'Custom favicon';
|
|
|
246 |
$string['favicon_desc'] = 'Upload your own favicon. It should be an <strong>.ico</strong> file. <a class="underline--anim" href="https://www.favicon-generator.org/" target="_blank">Favicon generator</a>';
|
|
|
247 |
$string['favicon16'] = 'Custom favicon (16x16)';
|
|
|
248 |
$string['favicon32'] = 'Custom favicon (32x32)';
|
|
|
249 |
$string['favicon32'] = 'Custom favicon (32x32)';
|
|
|
250 |
$string['faviconsafaritab'] = 'Safari Pinned Tab (svg)';
|
|
|
251 |
$string['faviconsafaritabcolor'] = 'Safari Pinned Tab (color)';
|
|
|
252 |
|
|
|
253 |
$string['fontfilessetting'] = 'Font files';
|
|
|
254 |
$string['fontfilessetting_desc'] = '';
|
|
|
255 |
// Section: Custom fonts. Credits: Boost_Union
|
|
|
256 |
$string['customfontsheading'] = 'Custom fonts';
|
|
|
257 |
// Setting: Custom fonts.
|
|
|
258 |
$string['customfontssetting'] = 'Custom fonts';
|
|
|
259 |
$string['customfontssetting_desc'] = 'With this dialogue you can upload own font files. The uplaod is resricted to the font files of type .eot, .woff, .woff2, .ttf and .svg. <br/><br/>
|
|
|
260 |
<strong>Important:</strong> To be able to use the uploaded fonts within this theme, you have to add related code to your "Raw SCSS" area in the tab "Advanced Tab". <a class="underline--anim" href="https://rosea.gitbook.io/monocolor/theme-settings/google-custom-fonts-and-gdpr" target="_blank">Learn more</a>.<br /> The advantage of uploading fonts to this file area is that those fonts can be delivered without a check if the user is logged in and can be used as locally installed fonts everywhere on the site. As soon as you have uploaded at least one font to this filearea and have stored the settings, a list will appear underneath which will give you CSS code snippets which you can use as a boilerplate to reference particular fonts in your custom SCSS.';
|
|
|
261 |
// Information: Custom fonts list.
|
|
|
262 |
$string['customfontslistsetting'] = '<br /><br />Custom fonts list';
|
|
|
263 |
$string['customfontslistsetting_desc'] = '<br /><br />This is the list of fonts which you have uploaded to the custom fonts filearea. The given CSS snippets can be used to add these fonts to your custom SCSS. Please note that you will have to take care of the font format value as well as the font-family, font-style and font-weight CSS properties yourself for now as Boost Union is not able yet to parse the font files.';
|
|
|
264 |
$string['customfontsfileurlpersistent'] = 'URL (persistent)';
|
|
|
265 |
$string['customfontsfileurlrevisioned'] = 'URL (revisioned)';
|
|
|
266 |
|
|
|
267 |
// Settings -- Login page.
|
|
|
268 |
$string['settingslogin'] = 'Login Page';
|
|
|
269 |
$string['setloginlayout'] = 'Login Page Image Position';
|
|
|
270 |
$string['setloginlayout_desc'] = '';
|
|
|
271 |
$string['loginlayout1'] = '#1 - Box - Background image (middle)';
|
|
|
272 |
$string['loginlayout2'] = '#2 - Box - Image on the right (middle)';
|
|
|
273 |
$string['loginlayout3'] = '#3 - Box - Image on the left (middle)';
|
|
|
274 |
$string['loginlayout4'] = '#4 - Full height (left)';
|
|
|
275 |
$string['loginlayout5'] = '#5 - Full height (right)';
|
|
|
276 |
$string['loginhtmlcontent1'] = 'HTML Content #1';
|
|
|
277 |
$string['loginhtmlcontent1_desc'] = 'Custom HTML content<br />
|
|
|
278 |
<ul>
|
|
|
279 |
<li>for layout #1: before the logo</li>
|
|
|
280 |
<li>for layout #2, #3: before the login box</li>
|
|
|
281 |
</ul>';
|
|
|
282 |
$string['loginhtmlcontent2'] = 'HTML Content #2';
|
|
|
283 |
$string['loginhtmlcontent2_desc'] = 'Custom HTML content<br />
|
|
|
284 |
<ul>
|
|
|
285 |
<li>for layout #1: after HTML content #2</li>
|
|
|
286 |
<li>for layout #2, #3: next to the login form</li>
|
|
|
287 |
</ul>';
|
|
|
288 |
$string['loginhtmlcontent3'] = 'HTML Content #3';
|
|
|
289 |
$string['loginhtmlcontent3_desc'] = 'Custom HTML content<br />
|
|
|
290 |
<ul>
|
|
|
291 |
<li>for layout #1: after the login form</li>
|
|
|
292 |
<li>for layout #2, #3: under the login box</li>
|
|
|
293 |
</ul>';
|
|
|
294 |
$string['logincustomfooterhtml'] = 'Custom Footer HTML or JS';
|
|
|
295 |
$string['logincustomfooterhtml_desc'] = '';
|
|
|
296 |
$string['loginhtmlblockbottom'] = 'Custom HTML Block (under the login form)';
|
|
|
297 |
$string['loginhtmlblockbottom_desc'] = '';
|
|
|
298 |
$string['loginfootercontent'] = 'Footer Content';
|
|
|
299 |
$string['loginfootercontent_desc'] = 'Custom HTML content<br />
|
|
|
300 |
<ul>
|
|
|
301 |
<li>for layout #1: after the login form and HTML Content #2</li>
|
|
|
302 |
<li>for layout #2, #3: under the login box</li>
|
|
|
303 |
</ul>';
|
|
|
304 |
$string['loginbg'] = 'Login Page Background';
|
|
|
305 |
$string['loginbg_desc'] = '';
|
|
|
306 |
$string['loginbgcolor'] = 'Login Background Color (Image Container)';
|
|
|
307 |
$string['loginbgcolor_desc'] = '';
|
|
|
308 |
$string['customloginlogo'] = 'Custom Logo on the Login Page';
|
|
|
309 |
$string['customloginlogo_desc'] = '<strong>Recommendation:</strong> SVG files or png files with transparent background.';
|
|
|
310 |
$string['loginintrotext'] = 'Log in - Introduction';
|
|
|
311 |
$string['loginintrotext_desc'] = '';
|
|
|
312 |
$string['stringca'] = 'Label next to "Create an account" button.';
|
|
|
313 |
$string['stringca_desc'] = 'Label displays on the Sign in page';
|
|
|
314 |
$string['stringbacktologin'] = 'Label next to "Log in"';
|
|
|
315 |
$string['stringbacktologin_desc'] = 'Label displays on the Sign up page';
|
|
|
316 |
$string['signuptext'] = 'Sign up Content';
|
|
|
317 |
$string['signuptext_desc'] = '';
|
|
|
318 |
$string['signupintrotext'] = 'Sign up - Introduction';
|
|
|
319 |
$string['signupintrotext_desc'] = '';
|
|
|
320 |
$string['loginlogooutside'] = 'Logo outside the container';
|
|
|
321 |
$string['loginlogooutside_desc'] = '';
|
|
|
322 |
$string['customsignupoutside'] = 'Sign up link outside the container';
|
|
|
323 |
$string['customsignupoutside_desc'] = 'Display the sign-up link in the top right corner. If disabled, the sign-up button will be displayed below the log-in button.';
|
|
|
324 |
$string['hideforgotpassword'] = 'Hide "Forgot password" link';
|
|
|
325 |
$string['hideforgotpassword_desc'] = '';
|
|
|
326 |
$string['logininfobox'] = 'Additional content under the password input field.';
|
|
|
327 |
$string['logininfobox_desc'] = 'Code snippet:<pre class="rui-pre"><code><div class="mt-3"><p class="small">Sample text</p></div></code></pre>
|
|
|
328 |
<br /><h5>Available content fields areas.</h5>
|
|
|
329 |
<a href="'.$siteurl.'/theme/monocolor/doc/login-area-info.jpg" target="_blank" class="mt-3"><img src="'.$siteurl.'/theme/monocolor/doc/login-area-info.jpg" class="img-fluid rounded" alt="Login area" width="200" /></a>';
|
|
|
330 |
|
|
|
331 |
// Repeatable.
|
|
|
332 |
$string['none'] = 'None';
|
|
|
333 |
$string['haccordionend'] = '';
|
|
|
334 |
$string['haccordionend_desc'] = '';
|
|
|
335 |
$string['blockintrosubtitle'] = 'Subheading';
|
|
|
336 |
$string['blockintrosubtitle_desc'] = '';
|
|
|
337 |
$string['blockintrotitle'] = 'Block Title';
|
|
|
338 |
$string['blockintrotitle_desc'] = '';
|
|
|
339 |
$string['blockintrocontent'] = 'Block Intro Content';
|
|
|
340 |
$string['blockintrocontent_desc'] = '';
|
|
|
341 |
$string['blockhtmlcontent'] = 'HTML Content';
|
|
|
342 |
$string['blockhtmlcontent_desc'] = '<a href="https://rosea.gitbook.io/monocolor/demo-content/front-page-blocks" target="_blank" class="btn btn-sm btn-info">HTML Code Snippets Library</a>';
|
|
|
343 |
$string['blockfootercontent'] = 'Block Footer Content';
|
|
|
344 |
$string['blockfootercontent_desc'] = '';
|
|
|
345 |
$string['turnon'] = 'Turn on';
|
|
|
346 |
$string['turnon_desc'] = '';
|
|
|
347 |
$string['blockfw'] = 'Full-width container';
|
|
|
348 |
$string['blockfw_desc'] = '';
|
|
|
349 |
|
|
|
350 |
|
|
|
351 |
// Settings -- Course page.
|
|
|
352 |
$string['settingscourses'] = 'Course Page';
|
|
|
353 |
$string['courseprogressbar'] = 'Display Course Progress Bar';
|
|
|
354 |
$string['courseprogressbar_desc'] = 'Course progress bar displays on the course index sidebar<br /><div class="mt-2 w-100 text-left"><img src="'.$siteurl.'/theme/monocolor/doc/course-progressbar.png" class="img-fluid rounded w-100" alt="monocolor Moodle Theme" /></div>';
|
|
|
355 |
|
|
|
356 |
$string['istab2active'] = 'Course Tab #2 Course Content (active by default)';
|
|
|
357 |
$string['istab2active_desc'] = '';
|
|
|
358 |
|
|
|
359 |
// Settings -- Top Bar.
|
|
|
360 |
$string['settingstopbar'] = 'Top Bar';
|
|
|
361 |
$string['hidenodesprimarynavigationsetting'] = 'Hide nodes in primary navigation';
|
|
|
362 |
$string['hidenodesprimarynavigationsetting_desc'] = 'With this setting, you can hide one or multiple nodes from the primary navigation.';
|
|
|
363 |
|
|
|
364 |
$string['hmycoursesbtn'] = 'My Courses';
|
|
|
365 |
$string['hmycoursesbtn_desc'] = 'Customize the sidebar "My Courses" area.';
|
|
|
366 |
$string['stringmycourses'] = 'My Courses';
|
|
|
367 |
$string['stringmycourses_desc'] = '';
|
|
|
368 |
$string['stringdetails'] = 'Details';
|
|
|
369 |
$string['stringdetails_desc'] = '';
|
|
|
370 |
$string['stringallcourses'] = 'List of all available courses';
|
|
|
371 |
$string['stringallcourses_desc'] = 'Leave this field empty if you want to hide this button.';
|
|
|
372 |
$string['stringnocourses'] = 'You are not enrolled in any courses.';
|
|
|
373 |
$string['stringnocourses_desc'] = '';
|
|
|
374 |
$string['topbarcustomhtml'] = 'Custom HTML Area';
|
|
|
375 |
$string['topbarcustomhtml_desc'] = 'Sample code snippets:<br /><pre class="rui-pre"><span class="d-inline-flex align-items-center">
|
|
|
376 |
<span class="mr-3">
|
|
|
377 |
<svg width="24px" height="24px" stroke-width="1.5" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" color="currentColor">
|
|
|
378 |
<path d="M12 11.5v5M12 7.51l.01-.011M12 22c5.523 0 10-4.477 10-10S17.523 2 12 2 2 6.477 2 12s4.477 10 10 10z" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
|
379 |
</svg>
|
|
|
380 |
</span>
|
|
|
381 |
<span>monocolor 1.1 is there!<br><a href="#" class="underline--anim" target="_blank">Get this theme today!</a>
|
|
|
382 |
</span>
|
|
|
383 |
</span></pre>';
|
|
|
384 |
|
|
|
385 |
$string['topbaradditionalbtn'] = 'Additional Button *';
|
|
|
386 |
$string['topbaradditionalbtn_desc'] = 'The button will be displayed next to the "Log in" button, only for non-logged-in users.<br /><span class="badge-sq badge-info mb-2">How to revert the buttons?</span><span class="badge-sq badge-light mb-2">Add this custom CSS code to: Advanced - Raw SCSS</span><pre class="rui-pre">.notloggedin .rui-icon-menu { flex-direction: row-reverse; }</pre>';
|
|
|
387 |
$string['stopbaradditionalbtn'] = 'Button Label';
|
|
|
388 |
$string['stopbaradditionalbtn_desc'] = '<span class="badge-sq badge-info mb-2">FAQ</span> <ul><li><span>Displaying text in multiple languages </span><a class="underline--anim" href="https://docs.moodle.org/400/en/Multi-language_content_filter" target="_blank">Learn more</a></li></ul>';
|
|
|
389 |
$string['topbaradditionalbtnurl'] = 'Button URL';
|
|
|
390 |
$string['topbaradditionalbtnurl_desc'] = 'Button URL';
|
|
|
391 |
$string['topbaradditionalbtnhtml'] = 'Custom HTML';
|
|
|
392 |
$string['topbaradditionalbtnhtml_desc'] = 'You can use also custom HTML code';
|
|
|
393 |
|
|
|
394 |
$string['htopbarcolors'] = 'Colors Customization';
|
|
|
395 |
$string['htopbarcolors_desc'] = 'Options for color customization.';
|
|
|
396 |
$string['colortopbarbg'] = 'Topbar Background';
|
|
|
397 |
$string['colortopbartext'] = 'Text';
|
|
|
398 |
$string['colortopbarlink'] = 'Link Color';
|
|
|
399 |
$string['colortopbarlink_desc'] = 'Link color inside "Custom HTML Area"';
|
|
|
400 |
$string['colortopbarlinkhover'] = 'Link (Hover)';
|
|
|
401 |
$string['colortopbarbtn'] = 'Button Background';
|
|
|
402 |
$string['colortopbarbtntext'] = 'Button Text';
|
|
|
403 |
$string['colortopbarbtnhover'] = 'Button Background Hover';
|
|
|
404 |
$string['colortopbarbtnhovertext'] = 'Button Hover Text';
|
|
|
405 |
|
|
|
406 |
|
|
|
407 |
|
|
|
408 |
// Settings -- Footer.
|
|
|
409 |
$string['settingsfooter'] = 'Footer';
|
|
|
410 |
$string['footerblock1'] = 'Footer Block #1';
|
|
|
411 |
$string['footerblock1_desc'] = '';
|
|
|
412 |
$string['footerblock1hr'] = 'Display Footer Block #1 separator (hr)';
|
|
|
413 |
$string['footerblock1hr_desc'] = '<span class="small">CSS class: .rui-footer-hr--1</small>';
|
|
|
414 |
$string['footerblock2'] = 'Footer Block #2';
|
|
|
415 |
$string['footerblock2_desc'] = '';
|
|
|
416 |
$string['footerblock2hr'] = 'Display Footer Block #2 separator (hr)';
|
|
|
417 |
$string['footerblock2hr_desc'] = '<span class="small">CSS class: .rui-footer-hr--2</small>';
|
|
|
418 |
$string['footerblock3'] = 'Footer Block #3';
|
|
|
419 |
$string['footerblock3_desc'] = '';
|
|
|
420 |
$string['footercopy'] = 'Footer Copy';
|
|
|
421 |
$string['footercopy_desc'] = '';
|
|
|
422 |
$string['hfootercolors'] = 'Footer Color Customization';
|
|
|
423 |
$string['hfootercolors_desc'] = '';
|
|
|
424 |
$string['colorfooterbg'] = 'Footer Background Color';
|
|
|
425 |
$string['colorfootertext'] = 'Footer Text Color';
|
|
|
426 |
$string['colorfooterlink'] = 'Footer Link Color';
|
|
|
427 |
$string['colorfooterlinkhover'] = 'Footer Link Hover Color';
|
|
|
428 |
$string['colorfooterborder'] = 'Footer Border Color';
|
|
|
429 |
$string['footerbgimg'] = 'Footer Background (Image)';
|
|
|
430 |
$string['footerbgimg_desc'] = '';
|
|
|
431 |
$string['footercustomcss'] = 'Footer Custom CSS';
|
|
|
432 |
$string['showfooterbuttons'] = 'Display Footer Buttons';
|
|
|
433 |
$string['showfooterbuttons_desc'] = 'Default Moodle buttons on the footer like: Moodle Doc, Data retention summary, etc.';
|
|
|
434 |
$string['hfooterblocks'] = 'Footer Custom Blocks';
|
|
|
435 |
$string['hfooterblocks_desc'] = '';
|
|
|
436 |
$string['hfootersocial'] = 'Footer Social Icons';
|
|
|
437 |
$string['hfootersocial_desc'] = '';
|
|
|
438 |
$string['showbasicinfolist'] = 'Display footer info list';
|
|
|
439 |
$string['showbasicinfolist_desc'] = 'Website, Mail, Mobile';
|
|
|
440 |
$string['showsociallist'] = 'Display footer social list';
|
|
|
441 |
$string['showsociallist_desc'] = 'Check this field to show up social icons list.';
|
|
|
442 |
$string['website'] = 'Website Title';
|
|
|
443 |
$string['website_desc'] = 'Main company Website Title';
|
|
|
444 |
$string['cwebsiteurl'] = 'Website URL';
|
|
|
445 |
$string['cwebsiteurl_desc'] = 'Main company Website';
|
|
|
446 |
$string['mobile'] = 'Mobile';
|
|
|
447 |
$string['mobile_desc'] = 'Enter Mobile Number';
|
|
|
448 |
$string['mail'] = 'E-Mail';
|
|
|
449 |
$string['mail_desc'] = 'Enter E-Mail ID';
|
|
|
450 |
$string['facebook'] = 'Facebook URL';
|
|
|
451 |
$string['facebook_desc'] = 'Enter the URL of your Facebook. (i.e http://www.facebook.com/moodlehq)';
|
|
|
452 |
$string['customsocialicon'] = 'More icons';
|
|
|
453 |
$string['customsocialicon_desc'] = '<br>More icons you can find here:
|
|
|
454 |
<ul>
|
|
|
455 |
<li><a class="underline--anim" href="https://fontawesome.com/icons" target="_blank">FontAwesome</a></li>
|
|
|
456 |
<li><a class="underline--anim" href="https://iconic.app/" target="_blank">iconic</a></li>
|
|
|
457 |
<li><a class="underline--anim" href="https://css.gg/" target="_blank">css.gg</a></li>
|
|
|
458 |
<li><a class="underline--anim" href="https://coolicons.cool/" target="_blank">coolicons</a></li>
|
|
|
459 |
</ul>
|
|
|
460 |
<br><strong>Sample code snippet (remember to switch Atto editor to HTML view): </strong> <pre class="rui-pre"><code><li>
|
|
|
461 |
<a href="#URL" target="_blank" class="youtube">
|
|
|
462 |
<svg width="30" height="30" fill="none" viewBox="0 0 24 24">
|
|
|
463 |
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M4.75 6.75C4.75 5.64543 5.64543 4.75 6.75 4.75H17.25C18.3546 4.75 19.25 5.64543 19.25 6.75V17.25C19.25 18.3546 18.3546 19.25 17.25 19.25H6.75C5.64543 19.25 4.75 18.3546 4.75 17.25V6.75Z"></path>
|
|
|
464 |
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M15.25 12L9.75 8.75V15.25L15.25 12Z"></path>
|
|
|
465 |
</svg>
|
|
|
466 |
</a>
|
|
|
467 |
</li></code></pre>';
|
|
|
468 |
$string['twitter'] = 'Twitter URL';
|
|
|
469 |
$string['twitter_desc'] = 'Enter the URL of your twitter. (i.e http://www.twitter.com/moodlehq)';
|
|
|
470 |
$string['linkedin'] = 'Linkedin URL';
|
|
|
471 |
$string['linkedin_desc'] = 'Enter the URL of your LinkedIn. (i.e http://www.linkedin.com/moodlehq)';
|
|
|
472 |
$string['youtube'] = 'Youtube URL';
|
|
|
473 |
$string['youtube_desc'] = 'Enter the URL of your Youtube. (i.e https://www.youtube.com/user/moodlehq)';
|
|
|
474 |
$string['instagram'] = 'Instagram URL';
|
|
|
475 |
$string['instagram_desc'] = 'Enter the URL of your Instagram. (i.e https://www.instagram.com/moodlehq)';
|
|
|
476 |
|
|
|
477 |
|
|
|
478 |
// Content Builder.
|
|
|
479 |
$string['scbsettings'] = 'Blocks Order';
|
|
|
480 |
$string['block0'] = 'Block #0 <span class="mt-1 small d-block text-light w-100">Main Moodle Content</span><span class="badge-xs badge-light mt-2">Go to the settings - <a class="underline--anim" href="'.$siteurl.'/admin/settings.php?section=frontpagesettings" target="_blank">Edit</a></span>';
|
|
|
481 |
$string['block0_desc'] = '';
|
|
|
482 |
$string['block1'] = 'Block #1 <span class="mt-1 small d-block text-light w-100">Hero Slider #1</span>';
|
|
|
483 |
$string['block1_desc'] = '';
|
|
|
484 |
$string['block2'] = 'Block #2 <span class="mt-1 small d-block text-light w-100">Hero Video</span>';
|
|
|
485 |
$string['block2_desc'] = '';
|
|
|
486 |
$string['block3'] = 'Block #3 <span class="mt-1 small d-block text-light w-100">Hero Image</span>';
|
|
|
487 |
$string['block3_desc'] = '';
|
|
|
488 |
$string['block4'] = 'Block #4 <span class="mt-1 small d-block text-light w-100">Hero Slider #2</span>';
|
|
|
489 |
$string['block4_desc'] = '';
|
|
|
490 |
$string['block5'] = 'Block #5 <span class="mt-1 small d-block text-light w-100">Grid Content #1</span>';
|
|
|
491 |
$string['block5_desc'] = '';
|
|
|
492 |
$string['block6'] = 'Block #6 <span class="mt-1 small d-block text-light w-100">Grid Content #2</span>';
|
|
|
493 |
$string['block6_desc'] = '';
|
|
|
494 |
$string['block7'] = 'Block #7 <span class="mt-1 small d-block text-light w-100">Grid Content #3</span>';
|
|
|
495 |
$string['block7_desc'] = '';
|
|
|
496 |
$string['block8'] = 'Block #8 <span class="mt-1 small d-block text-light w-100">Grid Content #4</span>';
|
|
|
497 |
$string['block8_desc'] = '';
|
|
|
498 |
$string['block9'] = 'Block #9 <span class="mt-1 small d-block text-light w-100">Grid Content #5</span>';
|
|
|
499 |
$string['block9_desc'] = '';
|
|
|
500 |
$string['block10'] = 'Block #10 <span class="mt-1 small d-block text-light w-100">Grid Content #6</span>';
|
|
|
501 |
$string['block10_desc'] = '';
|
|
|
502 |
$string['block11'] = 'Block #11 <span class="mt-1 small d-block text-light w-100">Grid Content #7</span>';
|
|
|
503 |
$string['block11_desc'] = '';
|
|
|
504 |
$string['block12'] = 'Block #12 <span class="mt-1 small d-block text-light w-100">Content #1</span>';
|
|
|
505 |
$string['block12_desc'] = '';
|
|
|
506 |
$string['block13'] = 'Block #13 <span class="mt-1 small d-block text-light w-100">Content #2</span>';
|
|
|
507 |
$string['block13_desc'] = '';
|
|
|
508 |
$string['block14'] = 'Block #14 <span class="mt-1 small d-block text-light w-100">Testimonials</span>';
|
|
|
509 |
$string['block14_desc'] = '';
|
|
|
510 |
$string['block15'] = 'Block #15 <span class="mt-1 small d-block text-light w-100">Logotypes</span>';
|
|
|
511 |
$string['block15_desc'] = '';
|
|
|
512 |
$string['block16'] = 'Block #16 <span class="mt-1 small d-block text-light w-100">Stats #1</span>';
|
|
|
513 |
$string['block16_desc'] = '';
|
|
|
514 |
$string['block17'] = 'Block #17 <span class="mt-1 small d-block text-light w-100">Team</span>';
|
|
|
515 |
$string['block17_desc'] = '';
|
|
|
516 |
$string['block18'] = 'Block #18 <span class="mt-1 small d-block text-light w-100">FAQ</span>';
|
|
|
517 |
$string['block18_desc'] = '';
|
|
|
518 |
$string['block19'] = 'Block #19 <span class="mt-1 small d-block text-light w-100">Categories List #1</span>';
|
|
|
519 |
$string['block19_desc'] = '';
|
|
|
520 |
$string['block20'] = 'Block #20 <span class="mt-1 small d-block text-light w-100">CTA #1</span>';
|
|
|
521 |
$string['block20_desc'] = '';
|
|
|
522 |
$string['block21'] = 'Block #21 <span class="mt-1 small d-block text-light w-100">CTA #2</span>';
|
|
|
523 |
$string['block21_desc'] = '';
|
|
|
524 |
$string['block22'] = 'Block #22 <span class="mt-1 small d-block text-light w-100">CTA #3</span>';
|
|
|
525 |
$string['block22_desc'] = '';
|
|
|
526 |
$string['block23'] = 'Block #23 <span class="mt-1 small d-block text-light w-100">Blocks area</span>';
|
|
|
527 |
$string['block23_desc'] = '';
|
|
|
528 |
|
|
|
529 |
$string['displayblockhr'] = 'Show Block Separator (hr)';
|
|
|
530 |
$string['displayblockhr_desc'] = '';
|
|
|
531 |
|
|
|
532 |
|
|
|
533 |
// Block 0 - Main Moodle Content.
|
|
|
534 |
$string['settingsblock0'] = 'Block #0';
|
|
|
535 |
$string['displayblock0_desc'] = '';
|
|
|
536 |
|
|
|
537 |
// Block 1.
|
|
|
538 |
$string['settingsblock1'] = 'Block #1 (Hero Slider #1)';
|
|
|
539 |
$string['displayblock1_desc'] = '<small>Script: <a class="underline--anim" href="https://swiperjs.com/" target="_blank">Swiper</a>.
|
|
|
540 |
MIT Licensed, v7.0.8 released on October 4, 2021<br /><a class="underline--anim" href="https://rosea.gitbook.io/monocolor/demo-content/front-page-blocks/hero-blocks/block-1-hero-slider">Learn how to set up this block</a></small>';
|
|
|
541 |
$string['hblock1slide'] = 'Slide';
|
|
|
542 |
$string['hblock1slide_desc'] = '';
|
|
|
543 |
$string['block1count'] = 'Slider count';
|
|
|
544 |
$string['block1count_desc'] = '';
|
|
|
545 |
$string['block1slideimg'] = 'Slide Image';
|
|
|
546 |
$string['block1slideimg_desc'] = '';
|
|
|
547 |
$string['block1slidetitle'] = 'Slide Heading';
|
|
|
548 |
$string['block1slidetitle_desc'] = '';
|
|
|
549 |
$string['block1slidecaption'] = 'Slide Caption';
|
|
|
550 |
$string['block1slidecaption_desc'] = '<br />If you want to display or hide some elements for non-logged-in users use dedicated class names:<br /><ul><li>For non-logged-in users: <strong>hidefornotloggedin</strong></li><li>For logged-in users: <strong>hideforloggedin</strong></li></ul>';
|
|
|
551 |
$string['block1slidecss'] = 'Slide Custom CSS';
|
|
|
552 |
$string['block1slidecss_desc'] = '<a class="underline--anim" href="https://css-tricks.com/almanac/properties/b/background/" target="_blank">Learn more about CSS background properties</a>';
|
|
|
553 |
$string['showblock1sliderwrapper'] = 'Show Colorized Content Wrapper';
|
|
|
554 |
$string['showblock1sliderwrapper_desc'] = '';
|
|
|
555 |
$string['block1sliderwrapperbg'] = 'Content Wrapper Color';
|
|
|
556 |
$string['block1sliderwrapperbg_desc'] = '';
|
|
|
557 |
$string['block1wrapperalign'] = 'Content Wrapper Alignment';
|
|
|
558 |
$string['block1wrapperalign_desc'] = '';
|
|
|
559 |
|
|
|
560 |
// Block 2.
|
|
|
561 |
$string['settingsblock2'] = 'Block #2 (Hero Video)';
|
|
|
562 |
$string['displayblock2_desc'] = '<small>Script: <strong>vidbg.js v2.1</strong> is licensed under The MIT License.<br />
|
|
|
563 |
<a class="underline--anim" href="https://rosea.gitbook.io/monocolor/demo-content/front-page-blocks/hero-blocks/block-2-video-hero">Learn how to set up this block</a></small>';
|
|
|
564 |
$string['showblock2wrapper'] = 'Show Colorized Content Wrapper';
|
|
|
565 |
$string['showblock2wrapper_desc'] = '';
|
|
|
566 |
$string['block2wrapperbg'] = 'Content Wrapper Color';
|
|
|
567 |
$string['block2wrapperbg_desc'] = '';
|
|
|
568 |
$string['block2wrapperalign'] = 'Content Wrapper Alignment';
|
|
|
569 |
$string['block2wrapperalign_desc'] = '';
|
|
|
570 |
$string['block2videoposter'] = 'Video Background<br />(poster)';
|
|
|
571 |
$string['block2videoposter_desc'] = '';
|
|
|
572 |
$string['block2videomp4'] = 'Video Background<br />(mp4)';
|
|
|
573 |
$string['block2videomp4_desc'] = '';
|
|
|
574 |
$string['block2videowebm'] = 'Video Background<br />(webm)';
|
|
|
575 |
$string['block2videowebm_desc'] = '';
|
|
|
576 |
$string['block2herotitle'] = 'Heading';
|
|
|
577 |
$string['block2herotitle_desc'] = '';
|
|
|
578 |
$string['block2herocaption'] = 'Caption';
|
|
|
579 |
$string['block2herocaption_desc'] = '<br />If you want to display or hide some elements for non-logged-in users use dedicated class names:<br /><ul><li>For non-logged-in users: <strong>hidefornotloggedin</strong></li><li>For logged-in users: <strong>hideforloggedin</strong></li></ul>';
|
|
|
580 |
|
|
|
581 |
|
|
|
582 |
// Block 3.
|
|
|
583 |
$string['settingsblock3'] = 'Block #3 (Hero Image)';
|
|
|
584 |
$string['displayblock3_desc'] = '<small><a class="underline--anim" href="https://rosea.gitbook.io/monocolor/demo-content/front-page-blocks/hero-blocks/block-3-hero-image">Learn how to set up this block</a></small>';
|
|
|
585 |
$string['showblock3wrapper'] = 'Show Colorized Content Wrapper';
|
|
|
586 |
$string['showblock3wrapper_desc'] = '';
|
|
|
587 |
$string['block3wrapperbg'] = 'Content Wrapper Color';
|
|
|
588 |
$string['block3wrapperbg_desc'] = '';
|
|
|
589 |
$string['block3wrapperalign'] = 'Content Wrapper Alignment';
|
|
|
590 |
$string['block3wrapperalign_desc'] = '';
|
|
|
591 |
$string['block3img'] = 'Hero Image';
|
|
|
592 |
$string['block3img_desc'] = '';
|
|
|
593 |
$string['block3videowebm_desc'] = '';
|
|
|
594 |
$string['block3herotitle'] = 'Heading';
|
|
|
595 |
$string['block3herotitle_desc'] = '';
|
|
|
596 |
$string['block3herocaption'] = 'Caption';
|
|
|
597 |
$string['block3herocaption_desc'] = '<br />If you want to display or hide some elements for non-logged-in users use dedicated class names:<br /><ul><li>For non-logged-in users: <strong>hidefornotloggedin</strong></li><li>For logged-in users: <strong>hideforloggedin</strong></li></ul>';
|
|
|
598 |
|
|
|
599 |
// Block 4.
|
|
|
600 |
$string['settingsblock4'] = 'Block #4 (Hero Slider #2)';
|
|
|
601 |
$string['displayblock4_desc'] = '<small>Script: <a class="underline--anim" href="https://swiperjs.com/" target="_blank">Swiper</a>.
|
|
|
602 |
MIT Licensed, v7.0.8 released on October 4, 2021<br /><a class="underline--anim" href="https://rosea.gitbook.io/monocolor/demo-content/front-page-blocks/hero-blocks/block-1-hero-slider">Tutorial</a></small>';
|
|
|
603 |
$string['hblock4slide'] = 'Slide';
|
|
|
604 |
$string['hblock4slide_desc'] = '';
|
|
|
605 |
$string['block4count'] = 'Slider count';
|
|
|
606 |
$string['block4count_desc'] = '';
|
|
|
607 |
$string['block4slideimg'] = 'Slide Image';
|
|
|
608 |
$string['block4slideimg_desc'] = '';
|
|
|
609 |
$string['block4slidetitle'] = 'Slide Heading';
|
|
|
610 |
$string['block4slidetitle_desc'] = '';
|
|
|
611 |
$string['block4slidecaption'] = 'Slide Caption';
|
|
|
612 |
$string['block4slidecaption_desc'] = '<br />If you want to display or hide some elements for non-logged-in users use dedicated class names:<br /><ul><li>For non-logged-in users: <strong>hidefornotloggedin</strong></li><li>For logged-in users: <strong>hideforloggedin</strong></li></ul>';
|
|
|
613 |
$string['block4slidecss'] = 'Slide Custom CSS';
|
|
|
614 |
$string['block4slidecss_desc'] = '<a class="underline--anim" href="https://css-tricks.com/almanac/properties/b/background/" target="_blank">Learn more about CSS background properties</a>';
|
|
|
615 |
$string['showblock4sliderwrapper'] = 'Show Colorized Content Wrapper';
|
|
|
616 |
$string['showblock4sliderwrapper_desc'] = '';
|
|
|
617 |
$string['block4sliderwrapperbg'] = 'Content Wrapper Color';
|
|
|
618 |
$string['block4sliderwrapperbg_desc'] = '';
|
|
|
619 |
$string['block4wrapperalign'] = 'Content Wrapper Alignment';
|
|
|
620 |
$string['block4wrapperalign_desc'] = '';
|
|
|
621 |
$string['sliderinterval'] = 'Slider interval';
|
|
|
622 |
$string['sliderinterval_desc'] = 'Units: 1000 -> 1s. Enable slider interval must be checked.';
|
|
|
623 |
|
|
|
624 |
// Block 5.
|
|
|
625 |
$string['settingsblock5'] = 'Block #5 (Grid Content #1)';
|
|
|
626 |
$string['displayblock5_desc'] = '';
|
|
|
627 |
|
|
|
628 |
// Block 6.
|
|
|
629 |
$string['settingsblock6'] = 'Block #6 (Grid Content #2)';
|
|
|
630 |
$string['displayblock6_desc'] = '';
|
|
|
631 |
|
|
|
632 |
// Block 7.
|
|
|
633 |
$string['settingsblock7'] = 'Block #7 (Grid Content #3)';
|
|
|
634 |
$string['displayblock7_desc'] = '';
|
|
|
635 |
|
|
|
636 |
// Block 8.
|
|
|
637 |
$string['settingsblock8'] = 'Block #8 (Grid Content #4)';
|
|
|
638 |
$string['displayblock8_desc'] = '';
|
|
|
639 |
|
|
|
640 |
// Block 9.
|
|
|
641 |
$string['settingsblock9'] = 'Block #9 (Grid Content #5)';
|
|
|
642 |
$string['displayblock9_desc'] = '';
|
|
|
643 |
|
|
|
644 |
// Block 10.
|
|
|
645 |
$string['settingsblock10'] = 'Block #10 (Grid Content #6)';
|
|
|
646 |
$string['displayblock10_desc'] = '';
|
|
|
647 |
|
|
|
648 |
// Block 11.
|
|
|
649 |
$string['settingsblock11'] = 'Block #11 (Grid Content #7)';
|
|
|
650 |
$string['displayblock11_desc'] = '';
|
|
|
651 |
|
|
|
652 |
// Block 12.
|
|
|
653 |
$string['settingsblock12'] = 'Block #12 (Content #1)';
|
|
|
654 |
$string['displayblock12_desc'] = '';
|
|
|
655 |
$string['hblock12item'] = 'Item';
|
|
|
656 |
$string['hblock12item_desc'] = '';
|
|
|
657 |
$string['settingsblock12'] = 'Block #12 (Content)';
|
|
|
658 |
$string['displayblock12_desc'] = '';
|
|
|
659 |
$string['block12slidesperrow'] = 'Sldies per row';
|
|
|
660 |
$string['block12slidesperrow_desc'] = '';
|
|
|
661 |
$string['block12count'] = 'Number of items';
|
|
|
662 |
$string['block12count_desc'] = '';
|
|
|
663 |
$string['block12itemimg'] = 'Image';
|
|
|
664 |
$string['block12itemimg_desc'] = '';
|
|
|
665 |
$string['block12itemtitle'] = 'Title (Alt)';
|
|
|
666 |
$string['block12itemtitle_desc'] = '';
|
|
|
667 |
$string['block12itemurl'] = 'URL with (https:// or http://)';
|
|
|
668 |
$string['block12itemurl_desc'] = '';
|
|
|
669 |
|
|
|
670 |
|
|
|
671 |
// Block 13.
|
|
|
672 |
$string['settingsblock13'] = 'Block #13 (Content #2)';
|
|
|
673 |
$string['displayblock13_desc'] = '';
|
|
|
674 |
|
|
|
675 |
// Block 14.
|
|
|
676 |
$string['settingsblock14'] = 'Block #14 (Testimonials)';
|
|
|
677 |
$string['displayblock14_desc'] = '';
|
|
|
678 |
|
|
|
679 |
// Block 15.
|
|
|
680 |
$string['settingsblock15'] = 'Block #15 (Logotypes)';
|
|
|
681 |
$string['displayblock15_desc'] = '';
|
|
|
682 |
|
|
|
683 |
// Block 16.
|
|
|
684 |
$string['settingsblock16'] = 'Block #16 (Stats)';
|
|
|
685 |
$string['displayblock16_desc'] = '';
|
|
|
686 |
|
|
|
687 |
// Block 17.
|
|
|
688 |
$string['settingsblock17'] = 'Block #17 (Team)';
|
|
|
689 |
$string['displayblock17_desc'] = '';
|
|
|
690 |
|
|
|
691 |
// Block 18.
|
|
|
692 |
$string['settingsblock18'] = 'Block #18 (FAQ)';
|
|
|
693 |
$string['displayblock18_desc'] = '';
|
|
|
694 |
$string['hblock18'] = 'Custom HTML';
|
|
|
695 |
$string['hblock18_desc'] = 'You can use HTML to display accordion items or just add it using simple form below.';
|
|
|
696 |
$string['hblock18_2'] = 'FAQ Items';
|
|
|
697 |
$string['hblock18_2_desc'] = 'Add FAQ items manually.';
|
|
|
698 |
$string['block18count'] = 'Number of items';
|
|
|
699 |
$string['block18count_desc'] = 'Number of items';
|
|
|
700 |
$string['block18answer'] = 'Answer';
|
|
|
701 |
$string['block18answer_desc'] = '';
|
|
|
702 |
$string['block18question'] = 'Question';
|
|
|
703 |
$string['block18question_desc'] = '';
|
|
|
704 |
|
|
|
705 |
// Block 19.
|
|
|
706 |
$string['settingsblock19'] = 'Block #19 (Categories List)';
|
|
|
707 |
$string['displayblock19_desc'] = '';
|
|
|
708 |
|
|
|
709 |
// Block 20.
|
|
|
710 |
$string['settingsblock20'] = 'Block #20 (CTA #1)';
|
|
|
711 |
$string['displayblock20_desc'] = '';
|
|
|
712 |
|
|
|
713 |
// Block 21.
|
|
|
714 |
$string['settingsblock21'] = 'Block #21 (CTA #2)';
|
|
|
715 |
$string['displayblock21_desc'] = '';
|
|
|
716 |
|
|
|
717 |
// Block 22.
|
|
|
718 |
$string['settingsblock22'] = 'Block #22 (CTA #3)';
|
|
|
719 |
$string['displayblock22_desc'] = '';
|
|
|
720 |
|
|
|
721 |
$string['blockbg'] = 'Background Image';
|
|
|
722 |
$string['blockbg_desc'] = '';
|
|
|
723 |
$string['blockcustomcss'] = 'Custom CSS';
|
|
|
724 |
$string['blockcustomcss_desc'] = '<p class="mb-3">Tutorial:
|
|
|
725 |
<a class="underline--anim" href="https://css-tricks.com/almanac/properties/b/background/" target="_blank">css-tricks - background properties</a>.</p>
|
|
|
726 |
<p class="mt-3">Sample code:</p>
|
|
|
727 |
<pre>background-position: bottom center; background-size: 100%; background-color: #000; background-repeat: no-repeat;</pre>
|
|
|
728 |
<p class="mt-3">Background Gradient Generator - <a class="underline--anim" href="https://mycolor.space/gradient" target="_blank">mycolor.space/gradient</a></p>';
|
|
|
729 |
$string['blocktextalign'] = 'Text alignment';
|
|
|
730 |
$string['blocktextalign_desc'] = '';
|
|
|
731 |
$string['blocktitle'] = 'Heading';
|
|
|
732 |
$string['blocktitle_desc'] = '';
|
|
|
733 |
$string['blocktitlesize'] = 'Heading Size';
|
|
|
734 |
$string['blocktitlesize_desc'] = 'Normal: 40px , Large: 60px , Extra large: 80px';
|
|
|
735 |
$string['blocktitleweight'] = 'Heading Font Weight';
|
|
|
736 |
$string['blocktitleweight_desc'] = '';
|
|
|
737 |
$string['blocktitlecolor'] = 'Heading Color';
|
|
|
738 |
$string['blocktitlecolor_desc'] = '';
|
|
|
739 |
|
|
|
740 |
// Block 23.
|
|
|
741 |
$string['settingsblock23'] = 'Block #23 (Blocks Area)';
|
|
|
742 |
$string['displayblock23_desc'] = '';
|
|
|
743 |
|
|
|
744 |
// Customization.
|
|
|
745 |
$string['settingscustomization'] = 'Customization';
|
|
|
746 |
$string['hfontsettings'] = 'Fonts Settings';
|
|
|
747 |
$string['hfontsettings_desc'] = 'Customize Font Properties';
|
|
|
748 |
$string['hgooglefont'] = 'Google Font';
|
|
|
749 |
$string['hgooglefont_desc'] = 'Google Fonts is a library of 1,284 free licensed font families.
|
|
|
750 |
<a class="underline--anim" href="https://fonts.google.com" target="_blank">Google Fonts Library</a>.';
|
|
|
751 |
$string['googlefonturl'] = 'Google Font URL';
|
|
|
752 |
$string['googlefonturl_desc'] = "Leave empty if you don't want to use Google Font.";
|
|
|
753 |
$string['fontbody'] = 'Font Name (Body)';
|
|
|
754 |
$string['fontbody_desc'] = "";
|
|
|
755 |
$string['fontheadings'] = 'Font Name (Headings)';
|
|
|
756 |
$string['fontheadings_desc'] = "Leave empty if you don't use additional font for headings.";
|
|
|
757 |
$string['fontweightregular'] = 'Font weight: Regular';
|
|
|
758 |
$string['fontweightregular_desc'] = 'e.g 400';
|
|
|
759 |
$string['fontweightmedium'] = 'Font weight: Medium';
|
|
|
760 |
$string['fontweightmedium_desc'] = 'e.g 500, 600';
|
|
|
761 |
$string['fontweightbold'] = 'Font weight: Bold';
|
|
|
762 |
$string['fontweightbold_desc'] = 'e.g 700, 800, 900';
|
|
|
763 |
$string['fontweightheadings'] = 'Font weight (Headings)';
|
|
|
764 |
$string['fontweightheadings_desc'] = 'e.g 700, 800, 900';
|
|
|
765 |
|
|
|
766 |
$string['hgeneral'] = 'General';
|
|
|
767 |
$string['hgeneral_desc'] = '';
|
|
|
768 |
$string['colorbodybg'] = 'Body Background Color';
|
|
|
769 |
$string['colorborder'] = 'Border Color (Global)';
|
|
|
770 |
$string['btnborderradius'] = 'Button Border Radius (px)';
|
|
|
771 |
|
|
|
772 |
$string['topbarlogoareaon'] = 'Turn on a logo area';
|
|
|
773 |
$string['topbarlogoareaon_desc'] = 'Select to turn on a logo area on the top bar. You can upload an image, use
|
|
|
774 |
<a class="underline--anim" href="#admin-customlogotxt">custom text</a>
|
|
|
775 |
or <a class="underline--anim" href="'.$siteurl.'/admin/settings.php?section=frontpagesettings" target="_blank">default moodle site name (shortname).</a>';
|
|
|
776 |
$string['customlogo'] = 'Logo (Top Bar)';
|
|
|
777 |
$string['customlogo_desc'] = '';
|
|
|
778 |
$string['customdmlogo'] = 'Dark mode - Logo (Top Bar)';
|
|
|
779 |
$string['customdmlogo_desc'] = '';
|
|
|
780 |
$string['customlogotxt'] = 'Logo (Text)';
|
|
|
781 |
$string['customlogotxt_desc'] = '';
|
|
|
782 |
$string['customlogoandname'] = 'Display Text Next to The Logo';
|
|
|
783 |
$string['customlogoandname_desc'] = 'You have to add Company/Site Name';
|
|
|
784 |
|
|
|
785 |
$string['hcolorstxt'] = 'Text Colors <span class="badge badge-sm badge-light mx-2">Not recommended to change</span>';
|
|
|
786 |
$string['hcolorstxt_desc'] = '<p>Compatible with WCAG Principles.</p><p>Change only when you really need to.</p>';
|
|
|
787 |
$string['colorheadings'] = 'Headings';
|
|
|
788 |
$string['colorbody'] = 'Text Color';
|
|
|
789 |
$string['colorbodysecondary'] = 'Text Color (Secondary)';
|
|
|
790 |
$string['colorbodylight'] = 'Text Color (Light)';
|
|
|
791 |
$string['colorlink'] = 'Link Color';
|
|
|
792 |
$string['colorlinkhover'] = 'Link Color (Hover)';
|
|
|
793 |
|
|
|
794 |
$string['hcolorsgrays'] = 'Grays <span class="badge badge-sm badge-light mx-2">Not recommended to change</span>';
|
|
|
795 |
$string['hcolorsgrays_desc'] = '<p>I used gray shades compatible with WCAG Principles.</p>
|
|
|
796 |
<p>Change only when you really need to.</p><br /><div class="d-inline-flex flex-wrap"><div class="sqcolor bg-gray-100 bg--desc m-1"></div>
|
|
|
797 |
<div class="sqcolor bg-gray-200 bg--desc m-1"></div><div class="sqcolor bg-gray-300 bg--desc m-1"></div><div class="sqcolor bg-gray-400 bg--desc m-1"></div>
|
|
|
798 |
<div class="sqcolor bg-gray-500 bg--desc m-1"></div><div class="sqcolor bg-gray-600 bg--desc m-1"></div><div class="sqcolor bg-gray-700 bg--desc m-1"></div>
|
|
|
799 |
<div class="sqcolor bg-gray-800 bg--desc m-1"></div><div class="sqcolor bg-gray-900 bg--desc m-1"></div></div>';
|
|
|
800 |
$string['colorgray100'] = 'Gray 100';
|
|
|
801 |
$string['colorgray200'] = 'Gray 200';
|
|
|
802 |
$string['colorgray300'] = 'Gray 300<br /><small class="mx-2">e.g main borders color</small>';
|
|
|
803 |
$string['colorgray400'] = 'Gray 400';
|
|
|
804 |
$string['colorgray500'] = 'Gray 500';
|
|
|
805 |
$string['colorgray600'] = 'Gray 600';
|
|
|
806 |
$string['colorgray700'] = 'Gray 700';
|
|
|
807 |
$string['colorgray800'] = 'Gray 800';
|
|
|
808 |
$string['colorgray900'] = 'Gray 900';
|
|
|
809 |
$string['colorgray_desc'] = '';
|
|
|
810 |
|
|
|
811 |
$string['hcolorsprimary'] = 'Primary colors';
|
|
|
812 |
$string['hcolorsprimary_desc'] = 'Primary buttons, top bar, all important/primary UI elements.<br />
|
|
|
813 |
<div class="d-inline-flex flex-wrap"><div class="sqcolor bg-primary-100 bg--desc m-1"></div>
|
|
|
814 |
<div class="sqcolor bg-primary-200 bg--desc m-1"></div><div class="sqcolor bg-primary-300 bg--desc m-1"></div>
|
|
|
815 |
<div class="sqcolor bg-primary-400 bg--desc m-1"></div><div class="sqcolor bg-primary-500 bg--desc m-1"></div>
|
|
|
816 |
<div class="sqcolor bg-primary-600 bg--desc m-1"></div><div class="sqcolor bg-primary-700 bg--desc m-1"></div>
|
|
|
817 |
<div class="sqcolor bg-primary-800 bg--desc m-1"></div><div class="sqcolor bg-primary-900 bg--desc m-1"></div>
|
|
|
818 |
</div>';
|
|
|
819 |
$string['colorprimary100'] = 'Primary 100';
|
|
|
820 |
$string['colorprimary200'] = 'Primary 200';
|
|
|
821 |
$string['colorprimary300'] = 'Primary 300';
|
|
|
822 |
$string['colorprimary400'] = 'Primary 400';
|
|
|
823 |
$string['colorprimary500'] = 'Primary 500';
|
|
|
824 |
$string['colorprimary600'] = 'Primary 600 - Main Theme Color';
|
|
|
825 |
$string['colorprimary700'] = 'Primary 700';
|
|
|
826 |
$string['colorprimary800'] = 'Primary 800';
|
|
|
827 |
$string['colorprimary900'] = 'Primary 900';
|
|
|
828 |
$string['colorprimary_desc'] = '<span class="badge badge-sq badge-warning">To generate automatically the colour palette just set up the "Main Theme Color - 600"</span>
|
|
|
829 |
<p class="mt-2">
|
|
|
830 |
<small>If you want to change any color from the palette just add custom HEX color value to the field.</small>
|
|
|
831 |
</p>';
|
|
|
832 |
$string['color_desc'] = '';
|
|
|
833 |
|
|
|
834 |
$string['additionalid'] = 'Custom Block ID';
|
|
|
835 |
$string['additionalid_desc'] = '<strong class="badge badge-danger mr-2">Only for developers.</strong>Custom, unique ID for the block.';
|
|
|
836 |
$string['additionalblock0id_desc'] = '<strong class="badge badge-danger mr-2">Only for developers.</strong>Custom, unique ID for the block.
|
|
|
837 |
<br /><h4>Main Moodle Content</h4>
|
|
|
838 |
<span>This is the section designated for the default blocks on the Moodle front page, such as the course list and categories list.</span>
|
|
|
839 |
<div class="mt-2"><p>Front page settings - <a class="underline--anim" href="'.$siteurl.'/admin/settings.php?section=frontpagesettings" target="_blank">Edit</a></p>
|
|
|
840 |
<p class="mt-2">Learn more about block customization - <a href="https://rosea.gitbook.io/monocolor-moodle-theme/demo-content/front-page-block-0" target="_blank">Theme Documentation</a></p></div>';
|
|
|
841 |
|
|
|
842 |
$string['additionalclass'] = 'Additional Class Name';
|
|
|
843 |
$string['additionalclass_desc'] = '<strong class="badge badge-warning mr-2">Only for developers.</strong><span>You can add multiple class names e.g class1 class2 class3 </span>
|
|
|
844 |
<a class="underline--anim" href="https://rosea.gitbook.io/monocolor/demo-content/front-page-blocks/advanced-options/custom-css-field" target="_blank">Learn more</a>';
|
|
|
845 |
|
|
|
846 |
$string['hintro'] = '<img src="'.$siteurl.'/theme/monocolor/doc/monocolor-icon.svg" class="img-fluid rounded my-3" width="80" height="80" alt="monocolor Moodle Theme" />
|
|
|
847 |
<div class="lead-3">monocolor for Moodle 4.3</div>';
|
|
|
848 |
$string['hintro_desc'] = '
|
|
|
849 |
<div class="mt-1 small">by <a class="underline--anim" href="https://rosea.io">RoseaThemes</a></div><hr class="mt-3" />
|
|
|
850 |
<div class="mt-3"><span class="badge badge-light">Version: 1.8.2</span></div>
|
|
|
851 |
<div class="mt-4"><h3 class="lead-4 mb-2">Need help with theme customization?<br />Or you want to report a bug?</h3>Just let me know.
|
|
|
852 |
Open <a class="underline--anim" href="https://roseathemes.ticksy.com" target="_blank">a ticket</a> or contact me via support form on the ThemeForest item page.</div>
|
|
|
853 |
<a class="underline--anim" href="https://rosea.gitbook.io/monocolor/" target="_blank" class="btn btn-sm btn-dark mt-3">Online documentation</a>
|
|
|
854 |
';
|
|
|
855 |
|
|
|
856 |
// Credits: BoostCampus.
|
|
|
857 |
// Setting: Show hint for switched role setting.
|
|
|
858 |
$string['showswitchedroleincoursesetting'] = 'Show hint for switched role';
|
|
|
859 |
$string['showswitchedroleincoursesetting_desc'] = 'Enabling this option shows a hint in the course header if the user switched roles in the course. It also provides a link to switch back within the course page.
|
|
|
860 |
<br /><img src="{$a->siteurl}/theme/monocolor/doc/hints.png" class="img-fluid rounded my-3" style="max-height: 200px; width: auto; max-width: 100%;" alt="Monocolor Theme for Moodle" />';
|
|
|
861 |
$string['switchedroleto'] = 'You are viewing this course currently with the role: <strong>{$a->role}</strong>';
|
|
|
862 |
// Setting: Show hint for hidden course.
|
|
|
863 |
$string['showhintcoursehiddensetting'] = 'Show hint in hidden courses';
|
|
|
864 |
$string['showhintcoursehiddensetting_desc'] = 'A hint appears in the course header when the course is hidden, indicating its visibility state without checking the settings.';
|
|
|
865 |
$string['showhintcoursehiddengeneral'] = 'This course is currently <strong>hidden</strong>. Only enrolled teachers can access this course when hidden.';
|
|
|
866 |
$string['showhintcoursehiddensettingslink'] = 'You can change the visibility in the <a href="{$a->url}">course settings</a>.';
|
|
|
867 |
// Setting: Show hint for guest access.
|
|
|
868 |
$string['showhintcoursguestaccesssetting'] = 'Show hint for guest access';
|
|
|
869 |
$string['showhintcourseguestaccesssetting_desc'] = 'When guests access the course, a hint appears in the header. If self-enrollment is available, a link to that page is also provided.';
|
|
|
870 |
$string['showhintcourseguestaccessgeneral'] = 'You are currently viewing this course as <strong>{$a->role}</strong>.';
|
|
|
871 |
$string['showhintcourseguestaccessgeneralinfo'] = 'Please log in to check how to enrol into the course and get full access.';
|
|
|
872 |
$string['showhintcourseguestaccesslink'] = 'To have full access to the course, you can <a href="{$a->url}">self enrol into this course</a>.';
|
|
|
873 |
// Setting: Show hint for unrestricted self enrolment.
|
|
|
874 |
$string['showhintcourseselfenrolsetting'] = 'Show hint for self enrolment without enrolment key';
|
|
|
875 |
$string['showhintcourseselfenrolsetting_desc'] = 'A hint appears in the course header when enrolment without enrolment key is possible.';
|
|
|
876 |
$string['showhintcourseselfenrolstartcurrently'] = 'This course is currently visible to everyone and <strong>self enrolment without an enrolment key</strong> is possible.';
|
|
|
877 |
$string['showhintcourseselfenrolstartfuture'] = 'This course is currently visible to everyone and <strong>self enrolment without an enrolment key</strong> is planned to become possible.';
|
|
|
878 |
$string['showhintcourseselfenrolunlimited'] = 'The <strong>{$a->name}</strong> enrolment instance allows unrestricted self enrolment indefinitely.';
|
|
|
879 |
$string['showhintcourseselfenroluntil'] = 'The <strong>{$a->name}</strong> enrolment instance allows unrestricted self enrolment until {$a->until}.';
|
|
|
880 |
$string['showhintcourseselfenrolfrom'] = 'The <strong>{$a->name}</strong> enrolment instance allows unrestricted self enrolment from {$a->from} on.';
|
|
|
881 |
$string['showhintcourseselfenrolsince'] = 'The <strong>{$a->name}</strong> enrolment instance allows unrestricted self enrolment currently.';
|
|
|
882 |
$string['showhintcourseselfenrolfromuntil'] = 'The <strong>{$a->name}</strong> enrolment instance allows unrestricted self enrolment from {$a->from} until {$a->until}.';
|
|
|
883 |
$string['showhintcourseselfenrolsinceuntil'] = 'The <strong>{$a->name}</strong> enrolment instance allows unrestricted self enrolment until {$a->until}.';
|
|
|
884 |
$string['showhintcourseselfenrolinstancecallforaction'] = 'If you don\'t want any Moodle user to have access to this course freely, please restrict the self enrolment settings.';
|
|
|
885 |
|
|
|
886 |
// Moodle 4..
|
|
|
887 |
$string['showfooter'] = 'Show footer';
|
|
|
888 |
$string['privacy:metadata:preference:draweropenblock'] = 'The user\'s preference for hiding or showing the drawer with blocks.';
|
|
|
889 |
$string['privacy:metadata:preference:draweropenindex'] = 'The user\'s preference for hiding or showing the drawer with course index.';
|
|
|
890 |
$string['privacy:metadata:preference:draweropennav'] = 'The user\'s preference for hiding or showing the drawer menu navigation.';
|
|
|
891 |
$string['privacy:drawerindexclosed'] = 'The current preference for the index drawer is closed.';
|
|
|
892 |
$string['privacy:drawerindexopen'] = 'The current preference for the index drawer is open.';
|
|
|
893 |
$string['privacy:drawerblockclosed'] = 'The current preference for the block drawer is closed.';
|
|
|
894 |
$string['privacy:drawerblockopen'] = 'The current preference for the block drawer is open.';
|
|
|
895 |
$string['privacy:drawernavclosed'] = 'The current preference for the navigation drawer is closed.';
|
|
|
896 |
$string['privacy:drawernavopen'] = 'The current preference for the navigation drawer is open.';
|
|
|
897 |
$string['unaddableblocks'] = 'Unneeded blocks';
|
|
|
898 |
$string['unaddableblocks_desc'] = 'The blocks specified are not needed when using this theme and will not be listed in the \'Add a block\' menu.';
|
|
|
899 |
|
|
|
900 |
// Monocolor (1.5.2+).
|
|
|
901 |
$string['hcoursenavitems'] = 'Course Navigation Items';
|
|
|
902 |
$string['hcoursenavitems_desc'] = 'Turn on/off any navigation items like: Participants, Grades, Competencies, Badges.';
|
|
|
903 |
$string['isitemongrades'] = 'Grade';
|
|
|
904 |
$string['isitemongrades_desc'] = '';
|
|
|
905 |
$string['isitemonparticipants'] = 'Participants';
|
|
|
906 |
$string['isitemonparticipants_desc'] = '';
|
|
|
907 |
$string['isitemonbadges'] = 'Badges';
|
|
|
908 |
$string['isitemonbadges_desc'] = '';
|
|
|
909 |
$string['isitemoncompetencies'] = 'Competencies';
|
|
|
910 |
$string['isitemoncompetencies_desc'] = '';
|
|
|
911 |
|
|
|
912 |
$string['hmainnav'] = 'Main Navigation Items';
|
|
|
913 |
$string['hmainnav_desc'] = 'Customization of the Main Navigation Items';
|
|
|
914 |
$string['isitemonsitehome'] = 'Site home';
|
|
|
915 |
$string['isitemonsitehome_desc'] = '';
|
|
|
916 |
$string['isitemondashboard'] = 'Dashboard';
|
|
|
917 |
$string['isitemondashboard_desc'] = '';
|
|
|
918 |
$string['isitemoncalendar'] = 'Calendar';
|
|
|
919 |
$string['isitemoncalendar_desc'] = '';
|
|
|
920 |
$string['isitemonprivatefiles'] = 'Private files';
|
|
|
921 |
$string['isitemonprivatefiles_desc'] = '';
|
|
|
922 |
$string['isitemoncontentbank'] = 'Content bank';
|
|
|
923 |
$string['isitemoncontentbank_desc'] = '';
|
|
|
924 |
$string['isitemonmycourses'] = 'My courses';
|
|
|
925 |
$string['isitemonmycourses_desc'] = '';
|
|
|
926 |
|
|
|
927 |
$string['settingsdashboard'] = 'Dashboard';
|
|
|
928 |
$string['setdashboardlayout'] = 'Dashboard Page Layout';
|
|
|
929 |
$string['dashboardblock1'] = 'Dashboard HTML Block #1 (On the top)';
|
|
|
930 |
$string['dashboardblock1_desc'] = '';
|
|
|
931 |
$string['dashboardblock2'] = 'Dashboard HTML Block #2 (On the bottom)';
|
|
|
932 |
$string['dashboardblock2_desc'] = '';
|
|
|
933 |
|
|
|
934 |
$string['settingsmycourses'] = 'My Courses';
|
|
|
935 |
$string['mycoursesblock1'] = 'My Courses HTML Block #1 (On the top)';
|
|
|
936 |
$string['mycoursesblock1_desc'] = '<img src="{$a->siteurl}/theme/monocolor/doc/mycourses-html-area.png" width="w-100 rounded" style="max-width:100%;" />';
|
|
|
937 |
$string['mycoursesblock2'] = 'My Courses HTML Block #2 (On the bottom)';
|
|
|
938 |
$string['mycoursesblock2_desc'] = '<img src="{$a->siteurl}/theme/monocolor/doc/mycourses-html-area-2.png" width="w-100 rounded" style="max-width:100%;" />';
|
|
|
939 |
|
|
|
940 |
$string['hvpcss'] = 'H5P CSS';
|
|
|
941 |
$string['hvpcss_desc'] = 'Custom CSS code to be applied to H5P activities';
|
|
|
942 |
|
|
|
943 |
$string['hidecourseindexnav'] = 'Hide Course Index Navigation';
|
|
|
944 |
$string['hidecourseindexnav_desc'] = 'Hide or show the Course Index drawer navigation.';
|
|
|
945 |
|
|
|
946 |
// Activity Icons.
|
|
|
947 |
$string['hactivityicons'] = 'Activity Icons';
|
|
|
948 |
$string['hactivityicons_desc'] = 'Customize activity icon colors.<br />To change the icon color from black to white just add a custom CSS (Advanced - Raw SCSS). <pre>.activityiconcontainer .activityicon, .activityiconcontainer .icon { filter: invert(1); }</pre>';
|
|
|
949 |
|
|
|
950 |
$string['iconadministration'] = 'Activity Icon (administration)';
|
|
|
951 |
$string['iconassessment'] = 'Activity Icon (assessment)';
|
|
|
952 |
$string['iconcolleboration'] = 'Activity Icon (colleboration)';
|
|
|
953 |
$string['iconcommunication'] = 'Activity Icon (communication)';
|
|
|
954 |
$string['iconcontent'] = 'Activity Icon (content)';
|
|
|
955 |
$string['iconinterface'] = 'Activity Icon (interface)';
|
|
|
956 |
|
|
|
957 |
// Monocolor 1.5
|
|
|
958 |
$string['backtotop'] = 'Back to top button';
|
|
|
959 |
$string['backtotop_desc'] = '';
|
|
|
960 |
|
|
|
961 |
$string['showcustomfields'] = 'Show custom fields';
|
|
|
962 |
$string['showcustomfields_desc'] = '';
|
|
|
963 |
|
|
|
964 |
$string['secnavgroupitem'] = 'Include Groups Item to the Secondary Navigation';
|
|
|
965 |
$string['secnavgroupitem_desc'] = 'For users who have capabilities such as moodle/course:managegroups. <br /><img src="{$a->siteurl}/theme/monocolor/doc/secondary-nav-course-tmpl.png" width="w-100 rounded" style="max-height:150px;" />';
|
|
|
966 |
|
|
|
967 |
$string['settingscoursesnav'] = 'Course Page - Secondary Navigation';
|
|
|
968 |
|
|
|
969 |
$string['secnavitems'] = 'Turn on additional menu items';
|
|
|
970 |
$string['secnavitems_desc'] = 'Select and save to turn on additional options for customizing secondary navigation.';
|
|
|
971 |
|
|
|
972 |
$string['hsecnavitem'] = 'Item';
|
|
|
973 |
$string['hsecnavitem_desc'] = '';
|
|
|
974 |
|
|
|
975 |
$string['secnavitemscount'] = 'Number of custom items';
|
|
|
976 |
$string['secnavitemscount_desc'] = '';
|
|
|
977 |
|
|
|
978 |
$string['secnavcustomnavlabel'] = 'Label';
|
|
|
979 |
$string['secnavcustomnavlabel_desc'] = '';
|
|
|
980 |
|
|
|
981 |
$string['secnavcustomnavurl'] = 'URL';
|
|
|
982 |
$string['secnavcustomnavurl_desc'] = 'To add course ID to the URL, just use {{courseID}}. eg. https://localhost/group/index.php?id={{courseID}}';
|
|
|
983 |
|
|
|
984 |
$string['secnavuserrole1'] = 'Select user role';
|
|
|
985 |
$string['secnavuserrole1_desc'] = 'Add restrictions depends on user roles.';
|
|
|
986 |
$string['secnavuserrole'] = 'Select user role';
|
|
|
987 |
$string['secnavuserrole_desc'] = 'Add restrictions depends on user roles.';
|
|
|
988 |
$string['secnavuserroles'] = 'Select user role';
|
|
|
989 |
$string['secnavuserroles_desc'] = 'Add restrictions depends on user roles.';
|
|
|
990 |
|
|
|
991 |
$string['backtotopbutton'] = 'Go to top';
|
|
|
992 |
|
|
|
993 |
$string['forcefwvideo'] = 'Force full-width video';
|
|
|
994 |
$string['forcefwvideo_desc'] = 'Turn off this option to revert to the default Moodle video size settings.
|
|
|
995 |
<br /><img src="{$a->siteurl}/theme/monocolor/doc/video-size.jpg" class="img-fluid rounded my-3" style="max-height: 200px; width: auto; max-width: 100%;" alt="Monocolor Theme for Moodle" />';
|
|
|
996 |
|
|
|
997 |
|
|
|
998 |
// Dark mode more options.
|
|
|
999 |
$string['dmcolor_desc'] = '';
|
|
|
1000 |
|
|
|
1001 |
$string['hdmgeneral'] = 'General <span class="badge badge-xs badge-dark mx-2">Dark Mode</span>';
|
|
|
1002 |
$string['hdmgeneral_desc'] = 'Background and border color, button radius';
|
|
|
1003 |
$string['dmcolorbodybg'] = 'Body Background Color';
|
|
|
1004 |
$string['dmcolorborder'] = 'Border Color (Global)';
|
|
|
1005 |
|
|
|
1006 |
$string['hdmcolorstxt'] = 'Text Colors <span class="badge badge-xs badge-dark mx-2">Dark Mode</span> <span class="badge badge-sm badge-light mx-2">Not recommended to change</span>';
|
|
|
1007 |
$string['hdmcolorstxt_desc'] = '<p>Compatible with WCAG Principles.</p><p>Change only when you really need to.</p>';
|
|
|
1008 |
$string['dmcolorheadings'] = 'Headings';
|
|
|
1009 |
$string['dmcolorbody'] = 'Text Color';
|
|
|
1010 |
$string['dmcolorbodysecondary'] = 'Text Color (Secondary)';
|
|
|
1011 |
$string['dmcolorbodylight'] = 'Text Color (Light)';
|
|
|
1012 |
$string['dmcolorlink'] = 'Link Color';
|
|
|
1013 |
$string['dmcolorlinkhover'] = 'Link Color (Hover)';
|
|
|
1014 |
|
|
|
1015 |
$string['hdmcolorsgrays'] = 'Grays <span class="badge badge-xs badge-dark mx-2">Dark Mode</span> <span class="badge badge-sm badge-light mx-2">Not recommended to change</span>';
|
|
|
1016 |
$string['hdmcolorsgrays_desc'] = '<p>I used gray shades compatible with WCAG Principles.</p>
|
|
|
1017 |
<p>Change only when you really need to.</p><br /><div class="d-inline-flex flex-wrap">
|
|
|
1018 |
<div class="sqcolor bg-dm-gray-100 bg--desc m-1"></div><div class="sqcolor bg-dm-gray-200 bg--desc m-1"></div>
|
|
|
1019 |
<div class="sqcolor bg-dm-gray-300 bg--desc m-1"></div><div class="sqcolor bg-dm-gray-400 bg--desc m-1"></div>
|
|
|
1020 |
<div class="sqcolor bg-dm-gray-500 bg--desc m-1"></div><div class="sqcolor bg-dm-gray-600 bg--desc m-1"></div>
|
|
|
1021 |
<div class="sqcolor bg-dm-gray-700 bg--desc m-1"></div><div class="sqcolor bg-dm-gray-800 bg--desc m-1"></div>
|
|
|
1022 |
<div class="sqcolor bg-dm-gray-900 bg--desc m-1"></div></div>';
|
|
|
1023 |
$string['dmcolorgray100'] = 'Gray 100';
|
|
|
1024 |
$string['dmcolorgray200'] = 'Gray 200';
|
|
|
1025 |
$string['dmcolorgray300'] = 'Gray 300<br /><small class="mx-2">e.g main borders color</small>';
|
|
|
1026 |
$string['dmcolorgray400'] = 'Gray 400';
|
|
|
1027 |
$string['dmcolorgray500'] = 'Gray 500';
|
|
|
1028 |
$string['dmcolorgray600'] = 'Gray 600';
|
|
|
1029 |
$string['dmcolorgray700'] = 'Gray 700';
|
|
|
1030 |
$string['dmcolorgray800'] = 'Gray 800';
|
|
|
1031 |
$string['dmcolorgray900'] = 'Gray 900';
|
|
|
1032 |
$string['dmcolorgray_desc'] = '';
|
|
|
1033 |
|
|
|
1034 |
$string['colorgradientheading1'] = 'Heading Gradient #1';
|
|
|
1035 |
$string['colorgradientheading2'] = 'Heading Gradient #2';
|
|
|
1036 |
$string['dmcolorgradientheading1'] = 'Heading Gradient #1';
|
|
|
1037 |
$string['dmcolorgradientheading2'] = 'Heading Gradient #2';
|
|
|
1038 |
|
|
|
1039 |
|
|
|
1040 |
// E-mail Template Branding.
|
|
|
1041 |
$string['email_tab_title'] = 'Email';
|
|
|
1042 |
$string['email_general_heading'] = 'General';
|
|
|
1043 |
|
|
|
1044 |
$string['customemailtmpl'] = 'Email Custom Template';
|
|
|
1045 |
$string['customemailtmpl_desc'] = '';
|
|
|
1046 |
|
|
|
1047 |
|
|
|
1048 |
// Logo.
|
|
|
1049 |
$string['email_logo_heading'] = 'Logo';
|
|
|
1050 |
$string['email_logo_file'] = 'Upload logo for email template.';
|
|
|
1051 |
$string['email_logo_file_desc'] = 'SVG logo is not allowed.';
|
|
|
1052 |
$string['email_logo_height'] = 'Height of logo';
|
|
|
1053 |
$string['email_logo_alt'] = 'Logo alt text';
|
|
|
1054 |
$string['email_logo_href'] = 'Logo link';
|
|
|
1055 |
$string['email_preview'] = '';
|
|
|
1056 |
$string['email_preview_desc'] = '<strong>eMail Test Plugin</strong> - <a href="https://moodle.org/plugins/local_mailtest" target="_blank">Download</a>
|
|
|
1057 |
<br />Moodle eMailTest is a powerful tool that enables administrators to test Moodle\'s email system with ease.
|
|
|
1058 |
<br /><br /><strong>Once you have added any options, please make sure to save your changes and clear the cache.</strong><br />(Go to: Dashboard → Site administration → Development → Purge all cache)';
|
|
|
1059 |
|
|
|
1060 |
// Footer.
|
|
|
1061 |
$string['email_footer_heading'] = 'Footer';
|
|
|
1062 |
|
|
|
1063 |
$string['email_footer_text'] = 'Footer text';
|
|
|
1064 |
$string['email_footer_copyright'] = 'Copyright';
|
|
|
1065 |
$string['email_footer_displaylogo'] = 'Display logo';
|
|
|
1066 |
|
|
|
1067 |
// Typography.
|
|
|
1068 |
$string['email_typo_heading'] = 'Typography';
|
|
|
1069 |
|
|
|
1070 |
$string['email_typo_heading'] = 'Typography';
|
|
|
1071 |
$string['email_typo_fontfamily'] = 'Font-family';
|
|
|
1072 |
|
|
|
1073 |
$string['email_typo_text_fontsize'] = 'Body font size';
|
|
|
1074 |
$string['email_typo_text_color'] = 'Body font color';
|
|
|
1075 |
|
|
|
1076 |
$string['email_typo_link_color'] = 'Link font color';
|
|
|
1077 |
|
|
|
1078 |
$string['email_typo_footer_fontsize'] = 'Footer font size';
|
|
|
1079 |
$string['email_typo_footer_color'] = 'Footer font color';
|
|
|
1080 |
|
|
|
1081 |
$string['customemailsettings'] = 'Custom E-mail';
|
|
|
1082 |
|
|
|
1083 |
$string['rolemanager'] = 'Manager';
|
|
|
1084 |
$string['rolecoursecreator'] = 'Course Creator';
|
|
|
1085 |
$string['roleeditingteacher'] = 'Teacher (editing)';
|
|
|
1086 |
$string['rolenoneditingteacher'] = 'Teacher (non-editing)';
|
|
|
1087 |
$string['roleguest'] = 'Guest';
|
|
|
1088 |
$string['rolestudent'] = 'Student';
|
|
|
1089 |
$string['roleauthenticateduser'] = 'Authenticated user';
|
|
|
1090 |
|
|
|
1091 |
global $CFG, $PAGE, $OUTPUT;
|
|
|
1092 |
$logo_img = '';
|
|
|
1093 |
$theme = theme_config::load('monocolor');
|
|
|
1094 |
|
|
|
1095 |
|
|
|
1096 |
if(!empty(get_config('theme_monocolor', 'email_logo_file'))) {
|
|
|
1097 |
$logo_img = 'https:' . $PAGE->theme->setting_file_url('email_logo_file', 'email_logo_file');
|
|
|
1098 |
} else {
|
|
|
1099 |
$logo_img = 'https:' . $PAGE->theme->setting_file_url('customlogo', 'customlogo');
|
|
|
1100 |
}
|
|
|
1101 |
|
|
|
1102 |
$footer_text = get_config('theme_monocolor', 'email_footer_text');
|
|
|
1103 |
$footer_copyright = get_config('theme_monocolor', 'email_footer_copyright');
|
|
|
1104 |
$email_logo_alt = get_config('theme_monocolor', 'email_logo_alt');
|
|
|
1105 |
$email_logo_height = get_config('theme_monocolor', 'email_logo_height');
|
|
|
1106 |
$email_logo_href = get_config('theme_monocolor', 'email_logo_href');
|
|
|
1107 |
$email_footer_displaylogo = get_config('theme_monocolor', 'email_footer_displaylogo');
|
|
|
1108 |
$email_typo_link_color = get_config('theme_monocolor', 'email_typo_link_color');
|
|
|
1109 |
$email_typo_footer_fontsize = get_config('theme_monocolor', 'email_typo_footer_fontsize');
|
|
|
1110 |
$email_typo_footer_color = get_config('theme_monocolor', 'email_typo_footer_color');
|
|
|
1111 |
$email_typo_text_fontsize = get_config('theme_monocolor', 'email_typo_text_fontsize');
|
|
|
1112 |
$email_typo_fontfamily = get_config('theme_monocolor', 'email_typo_fontfamily');
|
|
|
1113 |
$email_typo_text_color = get_config('theme_monocolor', 'email_typo_text_color');
|
|
|
1114 |
|
|
|
1115 |
$string['tmpl_footer_copyright'] = $footer_copyright;
|
|
|
1116 |
$string['tmpl_footer_text'] = $footer_text;
|
|
|
1117 |
$string['tmple_typography_link_color'] = 'color:' . $email_typo_link_color. ';';
|
|
|
1118 |
$string['tmple_typography_link_color_h'] = $email_typo_link_color;
|
|
|
1119 |
$string['tmple_typography_footer_fontsize'] = 'font-size:' . $email_typo_footer_fontsize. ';';
|
|
|
1120 |
$string['tmple_typography_footer_color'] = 'color:' . $email_typo_footer_color. ';';
|
|
|
1121 |
$string['tmple_typography_text_fontsize'] = 'font-size:' . $email_typo_text_fontsize. ';';
|
|
|
1122 |
$string['tmple_typography_fontfamily'] = 'font-family:' . $email_typo_fontfamily. ';';
|
|
|
1123 |
$string['tmple_typography_text_color'] = 'color:' . $email_typo_text_color . ';';
|
|
|
1124 |
|
|
|
1125 |
if(!empty($email_logo_href)) {
|
|
|
1126 |
$string['tmpl_logo_img'] = '<a href="' . $email_logo_href . '"><img src="'. $logo_img . '" height="' . $email_logo_height . '" alt="' . $email_logo_alt . '" title="' . $email_logo_alt . '" style="border:none;" /></a>';
|
|
|
1127 |
} else {
|
|
|
1128 |
$string['tmpl_logo_img'] = '<img src="'. $logo_img . '" height="' . $email_logo_height . '" alt="' . $email_logo_alt . '" title="' . $email_logo_alt . '" style="border:none;" />';
|
|
|
1129 |
}
|
|
|
1130 |
|
|
|
1131 |
if($email_footer_displaylogo == 1) {
|
|
|
1132 |
if(!empty($email_logo_href)) {
|
|
|
1133 |
$string['email_footer_displaylogo_ch'] = '<a href="' . $email_logo_href . '"><img src="'. $logo_img . '" height="' . $email_logo_height . '" alt="' . $email_logo_alt . '" title="' . $email_logo_alt . '" style="border:none;" /></a>';
|
|
|
1134 |
} else {
|
|
|
1135 |
$string['email_footer_displaylogo_ch'] = '<img src="'. $logo_img . '" height="' . $email_logo_height . '" alt="' . $email_logo_alt . '" title="' . $email_logo_alt . '" style="border:none;" />';
|
|
|
1136 |
}
|
|
|
1137 |
} else {
|
|
|
1138 |
$string['email_footer_displaylogo_ch'] = '';
|
|
|
1139 |
}
|