Browse code

Add English translation

Benjamin Roth authored on19/06/2017 15:28:58
Showing2 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,25 @@
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
+$GLOBALS['TL_LANG']['CTE']['slickSlider'] = "Slick Slider";
13
+$GLOBALS['TL_LANG']['CTE']['slickSliderStart'][0] = "Wrapper start";
14
+$GLOBALS['TL_LANG']['CTE']['slickSliderStart'][1] = "Beginning of a slider.";
15
+$GLOBALS['TL_LANG']['CTE']['slickSliderStop'][0] = "Wrapper stop";
16
+$GLOBALS['TL_LANG']['CTE']['slickSliderStop'][1] = "Ending of a slider.";
17
+$GLOBALS['TL_LANG']['CTE']['slickSliderSlideStart'][0] = "Slide start";
18
+$GLOBALS['TL_LANG']['CTE']['slickSliderSlideStart'][1] = "Beginning of a single slide.";
19
+$GLOBALS['TL_LANG']['CTE']['slickSliderSlideStop'][0] = "Slide stop";
20
+$GLOBALS['TL_LANG']['CTE']['slickSliderSlideStop'][1] = "Ending of a single slide.";
21
+$GLOBALS['TL_LANG']['CTE']['slickSliderWallpaper'][0] = "Wallpaper slide";
22
+$GLOBALS['TL_LANG']['CTE']['slickSliderWallpaper'][1] = "Special type of slide with background image and the option to place a text on it.";
23
+
24
+$GLOBALS['TL_LANG']['MSC']['slick_lazyLoad']['ondemand'] = 'On demand';
25
+$GLOBALS['TL_LANG']['MSC']['slick_lazyLoad']['progressive'] = 'Progressive';
0 26
\ No newline at end of file
1 27
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