... | ... |
@@ -28,6 +28,10 @@ $GLOBALS['TL_LANG']['tl_article_layouts']['bgStyle'][0] = 'Eigener Inline-CSS Co |
28 | 28 |
$GLOBALS['TL_LANG']['tl_article_layouts']['bgStyle'][1] = 'Hier können Sie einen eigenen Inline-CSS Code für das Hintergrundbild angeben. ##bg_image## wird ersetzt durch den Bildpfad.'; |
29 | 29 |
$GLOBALS['TL_LANG']['tl_article_layouts']['useHelper'][0] = 'Zusätzlicher Content-Wrapper'; |
30 | 30 |
$GLOBALS['TL_LANG']['tl_article_layouts']['useHelper'][1] = 'Fügt einen zusätzlichen Content-Wrapper innerhalb des inside Containers hinzu.'; |
31 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['restrictContentElements'][0] = 'Artikel Content-Elemente einschränken'; |
|
32 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['restrictContentElements'][1] = 'Erlaubt es, die im Artikel zur Verfügung stehenden Content-Elemente einzuschränken.'; |
|
33 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['allowedElements'][0] = 'Erlaubte Content Elemente'; |
|
34 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['allowedElements'][1] = 'Nur die ausgewählten Content-Elemente stehen im Artikel zur Verfügung.'; |
|
31 | 35 |
|
32 | 36 |
/** |
33 | 37 |
* Legends |
... | ... |
@@ -35,3 +39,4 @@ $GLOBALS['TL_LANG']['tl_article_layouts']['useHelper'][1] = 'Fügt einen zusätz |
35 | 39 |
$GLOBALS['TL_LANG']['tl_article_layouts']['title_legend'] = 'Titel/Klassenname'; |
36 | 40 |
$GLOBALS['TL_LANG']['tl_article_layouts']['content_legend'] = 'Inhalt-Einstellungen'; |
37 | 41 |
$GLOBALS['TL_LANG']['tl_article_layouts']['image_legend'] = 'Bild-Einstellungen'; |
42 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['expert_legend'] = 'Experten-Einstellungen'; |
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,37 @@ |
1 |
+<?php |
|
2 |
+ |
|
3 |
+/** |
|
4 |
+ * ArtLayout for Contao |
|
5 |
+ * |
|
6 |
+ * Copyright (c) 2016 Benjamin Roth |
|
7 |
+ * |
|
8 |
+ * @link http://www.esales-media.de |
|
9 |
+ * @license commercial |
|
10 |
+ */ |
|
11 |
+ |
|
12 |
+/** |
|
13 |
+ * Fields |
|
14 |
+ */ |
|
15 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['title'][0] = 'Titel'; |
|
16 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['title'][1] = 'Der Titel des Layouts'; |
|
17 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['alias'][0] = 'Alias'; |
|
18 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['alias'][1] = 'Das Layoutalias wird für die CSS Klassen verwendet.'; |
|
19 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['maxWidth'][0] = 'Breite einschränken'; |
|
20 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['maxWidth'][1] = 'Schränkt die Breite des Inhaltes auf einen global definierten Wert ein.'; |
|
21 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['center'][0] = 'Inhalte zentrieren'; |
|
22 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['center'][1] = 'Verwende eine zentrierte Textausrichtung.'; |
|
23 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['showBackgroundImage'][0] = 'Hintergrundbild'; |
|
24 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['showBackgroundImage'][1] = 'Erlaubt die Definition eines Hintergrundbildes in den Artikeleinstellungen.'; |
|
25 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['bgImageSize'][0] = 'Bildgröße'; |
|
26 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['bgImageSize'][1] = 'Hier können Sie die Abmessungen des Bildes und den Skalierungsmodus festlegen.'; |
|
27 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['bgStyle'][0] = 'Eigener Inline-CSS Code'; |
|
28 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['bgStyle'][1] = 'Hier können Sie einen eigenen Inline-CSS Code für das Hintergrundbild angeben. ##bg_image## wird ersetzt durch den Bildpfad.'; |
|
29 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['useHelper'][0] = 'Zusätzlicher Content-Wrapper'; |
|
30 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['useHelper'][1] = 'Fügt einen zusätzlichen Content-Wrapper innerhalb des inside Containers hinzu.'; |
|
31 |
+ |
|
32 |
+/** |
|
33 |
+ * Legends |
|
34 |
+ */ |
|
35 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['title_legend'] = 'Titel/Klassenname'; |
|
36 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['content_legend'] = 'Inhalt-Einstellungen'; |
|
37 |
+$GLOBALS['TL_LANG']['tl_article_layouts']['image_legend'] = 'Bild-Einstellungen'; |