| 1 | 1 |
new file mode 100644 |
| ... | ... |
@@ -0,0 +1,66 @@ |
| 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 |
+ 11 => '11 %', |
|
| 37 |
+ 15 => '15 %', |
|
| 38 |
+ '16_5' => '16,5 %', |
|
| 39 |
+ 20 => '20 %', |
|
| 40 |
+ 22 => '22 %', |
|
| 41 |
+ 25 => '25 %', |
|
| 42 |
+ 30 => '30 %', |
|
| 43 |
+ 33 => '33 %', |
|
| 44 |
+ 35 => '35 %', |
|
| 45 |
+ 40 => '40 %', |
|
| 46 |
+ 44 => '44 %', |
|
| 47 |
+ 45 => '45 %', |
|
| 48 |
+ 50 => '50 %', |
|
| 49 |
+ 55 => '55 %', |
|
| 50 |
+ 60 => '60 %', |
|
| 51 |
+ 65 => '65 %', |
|
| 52 |
+ 66 => '66 %', |
|
| 53 |
+ 70 => '70 %', |
|
| 54 |
+ 75 => '75 %', |
|
| 55 |
+ 80 => '80 %', |
|
| 56 |
+ 85 => '85 %', |
|
| 57 |
+ 90 => '90 %', |
|
| 58 |
+ 95 => '95 %', |
|
| 59 |
+ 100 => '100 %', |
|
| 60 |
+); |
|
| 61 |
+ |
|
| 62 |
+$GLOBALS['TL_LANG']['tl_form_field']['ref_alignment'] = array |
|
| 63 |
+( |
|
| 64 |
+ 'fl_left' => 'Links', |
|
| 65 |
+ 'fl_right' => 'Rechts', |
|
| 66 |
+); |
|
| 0 | 67 |
\ No newline at end of file |