Browse code

Modernize and adjust code to Contao 5

Benjamin Roth authored on26/10/2023 15:21:49
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,61 @@
1
+<?php
2
+
3
+/*
4
+ * This file is part of eSales Media ContentHelperBundle
5
+ *
6
+ * (c) Benjamin Roth
7
+ *
8
+ * @license proprietary
9
+ */
10
+
11
+/**
12
+ * Fields
13
+ */
14
+$GLOBALS['TL_LANG']['tl_content']['es_col_text'][0] = 'Mehrspaltiger Text';
15
+$GLOBALS['TL_LANG']['tl_content']['es_col_text'][1] = 'Der Text wird in Spalten ausgegeben.';
16
+$GLOBALS['TL_LANG']['tl_content']['es_spacing'][0] = 'Abstand nach dem Element';
17
+$GLOBALS['TL_LANG']['tl_content']['es_spacing'][1] = 'Fügt einen Abstand nach dem Element ein.';
18
+$GLOBALS['TL_LANG']['tl_content']['es_padding'][0] = 'Innenabstand';
19
+$GLOBALS['TL_LANG']['tl_content']['es_padding'][1] = 'Es wird Oben und Unten ein Innenabstand angewendet.';
20
+$GLOBALS['TL_LANG']['tl_content']['es_textAlign'][0] = 'Text-Ausrichtung';
21
+$GLOBALS['TL_LANG']['tl_content']['es_textAlign'][1] = 'Die Textausrichtung innerhalb des Elements. (Evtl. wird diese Einstellung durch spezifisches CSS überschrieben.)';
22
+$GLOBALS['TL_LANG']['tl_content']['es_rs_columns_valign'][0] = 'Vertikale Ausrichtung';
23
+$GLOBALS['TL_LANG']['tl_content']['es_rs_columns_valign'][1] = 'Vertikale Ausrichtung des Spalteninhalts.';
24
+$GLOBALS['TL_LANG']['tl_content']['es_rs_column_sort_large'][0] = 'Desktop-Sortierung';
25
+$GLOBALS['TL_LANG']['tl_content']['es_rs_column_sort_large'][1] = 'Anordnung der Spalte am Desktop.';
26
+$GLOBALS['TL_LANG']['tl_content']['es_rs_column_sort_medium'][0] = 'Tablet-Sortierung';
27
+$GLOBALS['TL_LANG']['tl_content']['es_rs_column_sort_medium'][1] = 'Anordnung der Spalte am Tablet.';
28
+$GLOBALS['TL_LANG']['tl_content']['es_rs_column_sort_small'][0] = 'Mobile-Sortierung';
29
+$GLOBALS['TL_LANG']['tl_content']['es_rs_column_sort_small'][1] = 'Anordnung der Spalte am Mobilgerät.';
30
+$GLOBALS['TL_LANG']['tl_content']['es_animate'][0] = 'Element animieren';
31
+$GLOBALS['TL_LANG']['tl_content']['es_animate'][1] = 'Animiert das Element, sobald es im sichtbaren Bereich ist.';
32
+$GLOBALS['TL_LANG']['tl_content']['es_animate_children'][0] = 'Kindelemente einzeln animieren';
33
+$GLOBALS['TL_LANG']['tl_content']['es_animate_children'][1] = 'Es werden die Kindelemente (z.B. mehrere Boxen/Spalten) einzeln animiert, anstatt das Hauptelement.';
34
+$GLOBALS['TL_LANG']['tl_content']['es_animate_type'][0] = 'Animationstyp';
35
+$GLOBALS['TL_LANG']['tl_content']['es_animate_type'][1] = 'Legt fest, wie das Element animiert werden soll.';
36
+$GLOBALS['TL_LANG']['tl_content']['es_animate_fade'][0] = 'Beim Animieren einblenden';
37
+$GLOBALS['TL_LANG']['tl_content']['es_animate_fade'][1] = 'Das Element wird während der Animation erst sichtbar.';
38
+
39
+/**
40
+ * Legends
41
+ */
42
+$GLOBALS['TL_LANG']['tl_content']['col_layout_legend'] = 'Spaltenlayout';
43
+$GLOBALS['TL_LANG']['tl_content']['es_animate_legend'] = 'Animations-Einstellungen';
44
+
45
+/**
46
+ * References
47
+ */
48
+$GLOBALS['TL_LANG']['tl_content']['REF']['es_col_text']['2col'] = '2-Spalten';
49
+$GLOBALS['TL_LANG']['tl_content']['REF']['es_spacing']['default'] = 'Standard';
50
+$GLOBALS['TL_LANG']['tl_content']['REF']['es_spacing']['paragraph'] = 'Absatz';
51
+$GLOBALS['TL_LANG']['tl_content']['REF']['es_rs_columns_valign']['top'] = 'Oben';
52
+$GLOBALS['TL_LANG']['tl_content']['REF']['es_rs_columns_valign']['center'] = 'Mitte';
53
+$GLOBALS['TL_LANG']['tl_content']['REF']['es_rs_columns_valign']['bottom'] = 'Unten';
54
+$GLOBALS['TL_LANG']['tl_content']['REF']['es_rs_columns_valign']['stretch'] = 'Gleiche Höhe';
55
+$GLOBALS['TL_LANG']['tl_content']['REF']['es_textAlign']['left'] = 'Linksbündig';
56
+$GLOBALS['TL_LANG']['tl_content']['REF']['es_textAlign']['center'] = 'Zentriert';
57
+$GLOBALS['TL_LANG']['tl_content']['REF']['es_textAlign']['right'] = 'Rechtsbündig';
58
+$GLOBALS['TL_LANG']['tl_content']['REF']['es_animate_type']['-move'] = 'Einfliegen von rechts';
59
+$GLOBALS['TL_LANG']['tl_content']['REF']['es_animate_type']['-move -move-right'] = 'Einfliegen von links';
60
+$GLOBALS['TL_LANG']['tl_content']['REF']['es_animate_type']['-move -move-top'] = 'Einfliegen von unten';
61
+$GLOBALS['TL_LANG']['tl_content']['REF']['es_animate_type']['-move -move-bottom'] = 'Einfliegen von oben';