... | ... |
@@ -50,6 +50,8 @@ $GLOBALS['TL_LANG']['tl_content']['eSM_slick_bgRepeat'][0] = "Background i |
50 | 50 |
$GLOBALS['TL_LANG']['tl_content']['eSM_slick_bgRepeat'][1] = "Defines if the background image is meant to be repeated."; |
51 | 51 |
$GLOBALS['TL_LANG']['tl_content']['eSM_addText'][0] = "Add text"; |
52 | 52 |
$GLOBALS['TL_LANG']['tl_content']['eSM_addText'][1] = "Add a text to the image slide."; |
53 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_addImageLink'][0] = "Add image link"; |
|
54 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_addImageLink'][1] = "Adds an link to the image slide."; |
|
53 | 55 |
/** |
54 | 56 |
* Legends |
55 | 57 |
*/ |
... | ... |
@@ -48,6 +48,8 @@ $GLOBALS['TL_LANG']['tl_content']['eSM_slick_bgOpacity'][0] = "Background i |
48 | 48 |
$GLOBALS['TL_LANG']['tl_content']['eSM_slick_bgOpacity'][1] = "The opacity of the background image."; |
49 | 49 |
$GLOBALS['TL_LANG']['tl_content']['eSM_slick_bgRepeat'][0] = "Background image repetition."; |
50 | 50 |
$GLOBALS['TL_LANG']['tl_content']['eSM_slick_bgRepeat'][1] = "Defines if the background image is meant to be repeated."; |
51 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_addText'][0] = "Add text"; |
|
52 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_addText'][1] = "Add a text to the image slide."; |
|
51 | 53 |
/** |
52 | 54 |
* Legends |
53 | 55 |
*/ |
... | ... |
@@ -38,6 +38,16 @@ $GLOBALS['TL_LANG']['tl_content']['eSM_slick_adaptiveHeight'][0] = "Adaptive hei |
38 | 38 |
$GLOBALS['TL_LANG']['tl_content']['eSM_slick_adaptiveHeight'][1] = "The slider height adapts to the currently showing slides."; |
39 | 39 |
$GLOBALS['TL_LANG']['tl_content']['eSM_slick_text'][0] = "Text"; |
40 | 40 |
$GLOBALS['TL_LANG']['tl_content']['eSM_slick_text'][1] = "Text to be placed on background image."; |
41 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_bgPosition'][0] = "Image position"; |
|
42 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_bgPosition'][1] = "Defines the position of the image."; |
|
43 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_bgSize'][0] = "Background image size"; |
|
44 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_bgSize'][1] = "Defines the image size in relation to it's container."; |
|
45 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_minHeight'][0] = "Force min-height"; |
|
46 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_minHeight'][1] = "The minimum height of the slide is based on the image aspect ratio."; |
|
47 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_bgOpacity'][0] = "Background image opacity"; |
|
48 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_bgOpacity'][1] = "The opacity of the background image."; |
|
49 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_bgRepeat'][0] = "Background image repetition."; |
|
50 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_bgRepeat'][1] = "Defines if the background image is meant to be repeated."; |
|
41 | 51 |
/** |
42 | 52 |
* Legends |
43 | 53 |
*/ |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,50 @@ |
1 |
+<?php |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * Slick slider for Contao |
|
5 |
+ * |
|
6 |
+ * Copyright (c) 2016 Benjamin Roth |
|
7 |
+ * |
|
8 |
+ * @license LGPL-3.0+ |
|
9 |
+ */ |
|
10 |
+ |
|
11 |
+ |
|
12 |
+/** |
|
13 |
+ * Fields |
|
14 |
+ */ |
|
15 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_autoPlaySpeed'][0] = "Autoplay speed"; |
|
16 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_autoPlaySpeed'][1] = "Time in milliseconds between slides. 0 deactivates autoplay."; |
|
17 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_speed'][0] = "Slide speed"; |
|
18 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_speed'][1] = "Transition time in milliseconds."; |
|
19 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_initialSlide'][0] = "Initial slide"; |
|
20 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_initialSlide'][1] = "Slide to start on. Iteration starts with 0."; |
|
21 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_slidesToShow'][0] = "Slides to show"; |
|
22 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_slidesToShow'][1] = "Number of slides to show."; |
|
23 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_slidesToScroll'][0] = "Slides to scroll"; |
|
24 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_slidesToScroll'][1] = "Number of slides to scroll."; |
|
25 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_infinite'][0] = "Infinite"; |
|
26 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_infinite'][1] = "Infinte loop sliding. Will start over after reaching end or start."; |
|
27 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_arrows'][0] = "Show navigation"; |
|
28 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_arrows'][1] = "Shows navigation elements."; |
|
29 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_pagination'][0] = "Show pagination"; |
|
30 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_pagination'][1] = "Shows pagination elements."; |
|
31 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_pause'][0] = "Pause on hover"; |
|
32 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_pause'][1] = "Pause slider on mouse hover"; |
|
33 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_lazyLoad'][0] = "Lazy loading technique"; |
|
34 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_lazyLoad'][1] = "Defines the used lazy loading technique."; |
|
35 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_fade'][0] = "Fade"; |
|
36 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_fade'][1] = "Slides will fade over instead of sliding in."; |
|
37 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_adaptiveHeight'][0] = "Adaptive height"; |
|
38 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_adaptiveHeight'][1] = "The slider height adapts to the currently showing slides."; |
|
39 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_text'][0] = "Text"; |
|
40 |
+$GLOBALS['TL_LANG']['tl_content']['eSM_slick_text'][1] = "Text to be placed on background image."; |
|
41 |
+/** |
|
42 |
+ * Legends |
|
43 |
+ */ |
|
44 |
+$GLOBALS['TL_LANG']['tl_content']['slickSlider_legend'] = "Slick Slider settings"; |
|
45 |
+ |
|
46 |
+/** |
|
47 |
+ * Misc |
|
48 |
+ */ |
|
49 |
+ |
|
50 |
+$GLOBALS['TL_LANG']['tl_content']['includeTemplatesJQuery'] = "The <em>%s</em> template needs to be included in the page layout."; |
|
0 | 51 |
\ No newline at end of file |