... | ... |
@@ -33,13 +33,17 @@ $GLOBALS['TL_LANG']['tl_form_field']['formilicious_legend'] = 'Formilicious Fra |
33 | 33 |
$GLOBALS['TL_LANG']['tl_form_field']['ref_width'] = array |
34 | 34 |
( |
35 | 35 |
10 => '10 %', |
36 |
+ 11 => '11 %', |
|
36 | 37 |
15 => '15 %', |
38 |
+ '16_5' => '16,5 %', |
|
37 | 39 |
20 => '20 %', |
40 |
+ 22 => '22 %', |
|
38 | 41 |
25 => '25 %', |
39 | 42 |
30 => '30 %', |
40 | 43 |
33 => '33 %', |
41 | 44 |
35 => '35 %', |
42 | 45 |
40 => '40 %', |
46 |
+ 44 => '44 %', |
|
43 | 47 |
45 => '45 %', |
44 | 48 |
50 => '50 %', |
45 | 49 |
55 => '55 %', |
... | ... |
@@ -37,6 +37,7 @@ $GLOBALS['TL_LANG']['tl_form_field']['ref_width'] = array |
37 | 37 |
20 => '20 %', |
38 | 38 |
25 => '25 %', |
39 | 39 |
30 => '30 %', |
40 |
+ 33 => '33 %', |
|
40 | 41 |
35 => '35 %', |
41 | 42 |
40 => '40 %', |
42 | 43 |
45 => '45 %', |
... | ... |
@@ -44,6 +45,7 @@ $GLOBALS['TL_LANG']['tl_form_field']['ref_width'] = array |
44 | 45 |
55 => '55 %', |
45 | 46 |
60 => '60 %', |
46 | 47 |
65 => '65 %', |
48 |
+ 66 => '66 %', |
|
47 | 49 |
70 => '70 %', |
48 | 50 |
75 => '75 %', |
49 | 51 |
80 => '80 %', |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,60 @@ |
1 |
+<?php |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * eSales Media Formilicious for Contao Open Source CMS |
|
5 |
+ * |
|
6 |
+ * Copyright (C) 2013-2014 eSalesMedia |
|
7 |
+ * |
|
8 |
+ * @package eSM_formilicious |
|
9 |
+ * @link http://www.esales-media.de |
|
10 |
+ * @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL |
|
11 |
+ * |
|
12 |
+ * @author Benjamin Roth <benjamin@esales-media.de> |
|
13 |
+ */ |
|
14 |
+ |
|
15 |
+ |
|
16 |
+/** |
|
17 |
+ * Fields |
|
18 |
+ */ |
|
19 |
+$GLOBALS['TL_LANG']['tl_form_field']['eSM_fl_clear'] = array('Neue Zeile', 'Erzwingt einen Zeilenumbruch'); |
|
20 |
+$GLOBALS['TL_LANG']['tl_form_field']['eSM_fl_width'] = array('Feldbreite', 'Die gewünschte Feldbreite in Prozent'); |
|
21 |
+$GLOBALS['TL_LANG']['tl_form_field']['eSM_fl_class'] = array('Widget-Container CSS-Klasse', 'Eigene CSS-Klassen im Widget-Container ergänzen'); |
|
22 |
+$GLOBALS['TL_LANG']['tl_form_field']['eSM_fl_lblpadding'] = array('Oberer Abstand', 'Fügt einen Abstand über dem Button ein, damit dieser auf der gleichen Höhe wie andere Formularfelder steht.'); |
|
23 |
+$GLOBALS['TL_LANG']['tl_form_field']['eSM_fl_alignment'] = array('Button-Ausrichtung', 'Die Ausrichtung des Buttons.'); |
|
24 |
+ |
|
25 |
+/** |
|
26 |
+ * Legends |
|
27 |
+ */ |
|
28 |
+$GLOBALS['TL_LANG']['tl_form_field']['formilicious_legend'] = 'Formilicious Framework'; |
|
29 |
+ |
|
30 |
+/** |
|
31 |
+ * References |
|
32 |
+ */ |
|
33 |
+$GLOBALS['TL_LANG']['tl_form_field']['ref_width'] = array |
|
34 |
+( |
|
35 |
+ 10 => '10 %', |
|
36 |
+ 15 => '15 %', |
|
37 |
+ 20 => '20 %', |
|
38 |
+ 25 => '25 %', |
|
39 |
+ 30 => '30 %', |
|
40 |
+ 35 => '35 %', |
|
41 |
+ 40 => '40 %', |
|
42 |
+ 45 => '45 %', |
|
43 |
+ 50 => '50 %', |
|
44 |
+ 55 => '55 %', |
|
45 |
+ 60 => '60 %', |
|
46 |
+ 65 => '65 %', |
|
47 |
+ 70 => '70 %', |
|
48 |
+ 75 => '75 %', |
|
49 |
+ 80 => '80 %', |
|
50 |
+ 85 => '85 %', |
|
51 |
+ 90 => '90 %', |
|
52 |
+ 95 => '95 %', |
|
53 |
+ 100 => '100 %', |
|
54 |
+); |
|
55 |
+ |
|
56 |
+$GLOBALS['TL_LANG']['tl_form_field']['ref_alignment'] = array |
|
57 |
+( |
|
58 |
+ 'fl_left' => 'Links', |
|
59 |
+ 'fl_right' => 'Rechts', |
|
60 |
+); |
|
0 | 61 |
\ No newline at end of file |