@art-design-digital/payload-plugin-forms-v3 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. package/README.md +175 -0
  2. package/dist/collections/Forms.d.ts +3 -0
  3. package/dist/collections/Forms.js +64 -0
  4. package/dist/collections/Forms.js.map +1 -0
  5. package/dist/components/FormFieldRowLabel.d.ts +1 -0
  6. package/dist/components/FormFieldRowLabel.js +23 -0
  7. package/dist/components/FormFieldRowLabel.js.map +1 -0
  8. package/dist/components/OptionRowLabel.d.ts +1 -0
  9. package/dist/components/OptionRowLabel.js +21 -0
  10. package/dist/components/OptionRowLabel.js.map +1 -0
  11. package/dist/constants.d.ts +36 -0
  12. package/dist/constants.js +41 -0
  13. package/dist/constants.js.map +1 -0
  14. package/dist/exports/client.d.ts +2 -0
  15. package/dist/exports/client.js +4 -0
  16. package/dist/exports/client.js.map +1 -0
  17. package/dist/exports/rsc.d.ts +1 -0
  18. package/dist/exports/rsc.js +2 -0
  19. package/dist/exports/rsc.js.map +1 -0
  20. package/dist/fields/formFields/autocompleteField.d.ts +2 -0
  21. package/dist/fields/formFields/autocompleteField.js +63 -0
  22. package/dist/fields/formFields/autocompleteField.js.map +1 -0
  23. package/dist/fields/formFields/conditionGroup.d.ts +2 -0
  24. package/dist/fields/formFields/conditionGroup.js +36 -0
  25. package/dist/fields/formFields/conditionGroup.js.map +1 -0
  26. package/dist/fields/formFields/dateRow.d.ts +2 -0
  27. package/dist/fields/formFields/dateRow.js +29 -0
  28. package/dist/fields/formFields/dateRow.js.map +1 -0
  29. package/dist/fields/formFields/emptyDefaultField.d.ts +2 -0
  30. package/dist/fields/formFields/emptyDefaultField.js +13 -0
  31. package/dist/fields/formFields/emptyDefaultField.js.map +1 -0
  32. package/dist/fields/formFields/fieldTypeField.d.ts +2 -0
  33. package/dist/fields/formFields/fieldTypeField.js +64 -0
  34. package/dist/fields/formFields/fieldTypeField.js.map +1 -0
  35. package/dist/fields/formFields/index.d.ts +12 -0
  36. package/dist/fields/formFields/index.js +14 -0
  37. package/dist/fields/formFields/index.js.map +1 -0
  38. package/dist/fields/formFields/labelDescriptionRow.d.ts +6 -0
  39. package/dist/fields/formFields/labelDescriptionRow.js +31 -0
  40. package/dist/fields/formFields/labelDescriptionRow.js.map +1 -0
  41. package/dist/fields/formFields/lengthRow.d.ts +2 -0
  42. package/dist/fields/formFields/lengthRow.js +27 -0
  43. package/dist/fields/formFields/lengthRow.js.map +1 -0
  44. package/dist/fields/formFields/numberRow.d.ts +2 -0
  45. package/dist/fields/formFields/numberRow.js +37 -0
  46. package/dist/fields/formFields/numberRow.js.map +1 -0
  47. package/dist/fields/formFields/optionsArray.d.ts +6 -0
  48. package/dist/fields/formFields/optionsArray.js +44 -0
  49. package/dist/fields/formFields/optionsArray.js.map +1 -0
  50. package/dist/fields/formFields/placeholderDefaultRow.d.ts +6 -0
  51. package/dist/fields/formFields/placeholderDefaultRow.js +29 -0
  52. package/dist/fields/formFields/placeholderDefaultRow.js.map +1 -0
  53. package/dist/fields/formFields/requiredWidthRow.d.ts +2 -0
  54. package/dist/fields/formFields/requiredWidthRow.js +30 -0
  55. package/dist/fields/formFields/requiredWidthRow.js.map +1 -0
  56. package/dist/fields/formFields/textareaRow.d.ts +2 -0
  57. package/dist/fields/formFields/textareaRow.js +14 -0
  58. package/dist/fields/formFields/textareaRow.js.map +1 -0
  59. package/dist/fields/formFieldsArray.d.ts +6 -0
  60. package/dist/fields/formFieldsArray.js +41 -0
  61. package/dist/fields/formFieldsArray.js.map +1 -0
  62. package/dist/fields/index.d.ts +3 -0
  63. package/dist/fields/index.js +5 -0
  64. package/dist/fields/index.js.map +1 -0
  65. package/dist/fields/messagesGroup.d.ts +6 -0
  66. package/dist/fields/messagesGroup.js +37 -0
  67. package/dist/fields/messagesGroup.js.map +1 -0
  68. package/dist/fields/senderReceiverGroup.d.ts +2 -0
  69. package/dist/fields/senderReceiverGroup.js +54 -0
  70. package/dist/fields/senderReceiverGroup.js.map +1 -0
  71. package/dist/i18n/locales/de.d.ts +193 -0
  72. package/dist/i18n/locales/de.js +195 -0
  73. package/dist/i18n/locales/de.js.map +1 -0
  74. package/dist/i18n/locales/en.d.ts +193 -0
  75. package/dist/i18n/locales/en.js +195 -0
  76. package/dist/i18n/locales/en.js.map +1 -0
  77. package/dist/i18n/locales/es.d.ts +193 -0
  78. package/dist/i18n/locales/es.js +195 -0
  79. package/dist/i18n/locales/es.js.map +1 -0
  80. package/dist/i18n/locales/fr.d.ts +193 -0
  81. package/dist/i18n/locales/fr.js +195 -0
  82. package/dist/i18n/locales/fr.js.map +1 -0
  83. package/dist/i18n/locales/index.d.ts +5 -0
  84. package/dist/i18n/locales/index.js +7 -0
  85. package/dist/i18n/locales/index.js.map +1 -0
  86. package/dist/i18n/locales/nl.d.ts +193 -0
  87. package/dist/i18n/locales/nl.js +195 -0
  88. package/dist/i18n/locales/nl.js.map +1 -0
  89. package/dist/i18n/translations.d.ts +1166 -0
  90. package/dist/i18n/translations.js +223 -0
  91. package/dist/i18n/translations.js.map +1 -0
  92. package/dist/index.d.ts +4 -0
  93. package/dist/index.js +15 -0
  94. package/dist/index.js.map +1 -0
  95. package/dist/types.d.ts +104 -0
  96. package/dist/types.js +5 -0
  97. package/dist/types.js.map +1 -0
  98. package/dist/utils/conditions.d.ts +46 -0
  99. package/dist/utils/conditions.js +79 -0
  100. package/dist/utils/conditions.js.map +1 -0
  101. package/package.json +122 -0
@@ -0,0 +1,193 @@
1
+ export declare const de: {
2
+ readonly collection: {
3
+ readonly description: "Formulare für Ihre Webseite verwalten";
4
+ readonly plural: "Formulare";
5
+ readonly singular: "Formular";
6
+ };
7
+ readonly fields: {
8
+ readonly name: {
9
+ readonly description: "Interner Name des Formulars";
10
+ readonly label: "Name";
11
+ };
12
+ };
13
+ readonly formFields: {
14
+ readonly description: "Felder des Formulars";
15
+ readonly fallback: "Feld";
16
+ readonly fields: {
17
+ readonly autocomplete: {
18
+ readonly description: "Browser-Autofill-Hinweis";
19
+ readonly label: "Autovervollständigung";
20
+ readonly options: {
21
+ readonly name: "Vollständiger Name";
22
+ readonly 'address-level2': "Stadt";
23
+ readonly country: "Land";
24
+ readonly email: "E-Mail";
25
+ readonly 'family-name': "Nachname";
26
+ readonly 'given-name': "Vorname";
27
+ readonly off: "Aus";
28
+ readonly organization: "Firma";
29
+ readonly 'postal-code': "Postleitzahl";
30
+ readonly 'street-address': "Straße";
31
+ readonly tel: "Telefon";
32
+ readonly url: "Webseite";
33
+ };
34
+ };
35
+ readonly condition: {
36
+ readonly description: "Feld nur anzeigen, wenn ein anderes Feld einen bestimmten Wert hat";
37
+ readonly field: {
38
+ readonly description: "Zu prüfendes Feld";
39
+ readonly label: "Bedingungsfeld";
40
+ };
41
+ readonly label: "Bedingung";
42
+ readonly value: {
43
+ readonly description: "Wert, der die Anzeige auslöst";
44
+ readonly label: "Bedingungswert";
45
+ };
46
+ };
47
+ readonly default: {
48
+ readonly description: "Standardwert für das Feld";
49
+ readonly label: "Standardwert";
50
+ };
51
+ readonly description: {
52
+ readonly description: "Zusätzliche Beschreibung für das Feld";
53
+ readonly label: "Beschreibung";
54
+ };
55
+ readonly emptyDefault: {
56
+ readonly description: "Standardmäßig keine Option auswählen";
57
+ readonly label: "Leere Standardauswahl";
58
+ };
59
+ readonly fieldType: {
60
+ readonly label: "Feldtyp";
61
+ readonly options: {
62
+ readonly checkbox: "Checkbox";
63
+ readonly date: "Datum";
64
+ readonly datetime: "Datum & Zeit";
65
+ readonly dropdown: "Dropdown";
66
+ readonly email: "E-Mail";
67
+ readonly number: "Nummer";
68
+ readonly radio: "Radio-Buttons";
69
+ readonly tel: "Telefon";
70
+ readonly text: "Text";
71
+ readonly textarea: "Textbereich";
72
+ readonly time: "Zeit";
73
+ readonly url: "URL";
74
+ };
75
+ };
76
+ readonly label: {
77
+ readonly description: "Beschriftung des Feldes";
78
+ readonly label: "Label";
79
+ };
80
+ readonly maxDate: {
81
+ readonly description: "Spätestes erlaubtes Datum";
82
+ readonly label: "Max. Datum";
83
+ };
84
+ readonly maxLength: {
85
+ readonly label: "Max. Länge";
86
+ };
87
+ readonly maxValue: {
88
+ readonly label: "Max. Wert";
89
+ };
90
+ readonly minDate: {
91
+ readonly description: "Frühestes erlaubtes Datum";
92
+ readonly label: "Min. Datum";
93
+ };
94
+ readonly minLength: {
95
+ readonly label: "Min. Länge";
96
+ };
97
+ readonly minValue: {
98
+ readonly label: "Min. Wert";
99
+ };
100
+ readonly options: {
101
+ readonly description: "Optionen für Dropdown- oder Radio-Felder";
102
+ readonly label: "Optionen";
103
+ readonly optionLabel: {
104
+ readonly description: "Anzeigetext der Option";
105
+ readonly label: "Label";
106
+ };
107
+ readonly value: {
108
+ readonly description: "Wert, der mit dem Formular gesendet wird";
109
+ readonly label: "Wert";
110
+ };
111
+ };
112
+ readonly placeholder: {
113
+ readonly description: "Platzhaltertext für das Feld";
114
+ readonly label: "Platzhalter";
115
+ };
116
+ readonly required: {
117
+ readonly label: "Pflichtfeld";
118
+ };
119
+ readonly rows: {
120
+ readonly description: "Anzahl der Zeilen für das Textfeld";
121
+ readonly label: "Zeilen";
122
+ };
123
+ readonly step: {
124
+ readonly description: "Schrittweite (z.B. 0.01 für Dezimalzahlen)";
125
+ readonly label: "Schrittweite";
126
+ };
127
+ readonly width: {
128
+ readonly description: "Breite des Feldes im Formular";
129
+ readonly label: "Breite";
130
+ };
131
+ };
132
+ readonly label: "Formularfelder";
133
+ readonly optionFallback: "Option";
134
+ readonly plural: "Felder";
135
+ readonly singular: "Feld";
136
+ };
137
+ readonly groups: {
138
+ readonly messages: {
139
+ readonly description: "Meldungen und Beschriftungen für das Formular";
140
+ readonly fields: {
141
+ readonly errorMessage: {
142
+ readonly defaultValue: "Es ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.";
143
+ readonly label: "Fehlermeldung";
144
+ };
145
+ readonly submitLabel: {
146
+ readonly defaultValue: "Absenden";
147
+ readonly label: "Absenden-Button";
148
+ };
149
+ readonly successMessage: {
150
+ readonly defaultValue: "Vielen Dank für Ihre Nachricht!";
151
+ readonly label: "Erfolgsmeldung";
152
+ };
153
+ };
154
+ readonly label: "Meldungen";
155
+ };
156
+ readonly senderReceiver: {
157
+ readonly description: "E-Mail-Einstellungen für Absender und Empfänger";
158
+ readonly fields: {
159
+ readonly receiver: {
160
+ readonly description: "E-Mail-Adresse des Empfängers";
161
+ readonly label: "Empfänger";
162
+ };
163
+ readonly senderMail: {
164
+ readonly description: "E-Mail-Adresse des Absenders";
165
+ readonly label: "Absender E-Mail";
166
+ };
167
+ readonly senderName: {
168
+ readonly description: "Name des Absenders";
169
+ readonly label: "Absender Name";
170
+ };
171
+ readonly subject: {
172
+ readonly description: "E-Mail-Betreff";
173
+ readonly label: "Betreff";
174
+ };
175
+ };
176
+ readonly label: "Absender & Empfänger";
177
+ };
178
+ };
179
+ readonly tabs: {
180
+ readonly formFields: {
181
+ readonly description: "Felder für das Formular konfigurieren";
182
+ readonly label: "Formularfelder";
183
+ };
184
+ readonly messages: {
185
+ readonly description: "Meldungen und Beschriftungen für das Formular";
186
+ readonly label: "Meldungen";
187
+ };
188
+ readonly senderReceiver: {
189
+ readonly description: "E-Mail-Einstellungen für Absender und Empfänger";
190
+ readonly label: "Absender & Empfänger";
191
+ };
192
+ };
193
+ };
@@ -0,0 +1,195 @@
1
+ export const de = {
2
+ collection: {
3
+ description: 'Formulare für Ihre Webseite verwalten',
4
+ plural: 'Formulare',
5
+ singular: 'Formular'
6
+ },
7
+ fields: {
8
+ name: {
9
+ description: 'Interner Name des Formulars',
10
+ label: 'Name'
11
+ }
12
+ },
13
+ formFields: {
14
+ description: 'Felder des Formulars',
15
+ fallback: 'Feld',
16
+ fields: {
17
+ autocomplete: {
18
+ description: 'Browser-Autofill-Hinweis',
19
+ label: 'Autovervollständigung',
20
+ options: {
21
+ name: 'Vollständiger Name',
22
+ 'address-level2': 'Stadt',
23
+ country: 'Land',
24
+ email: 'E-Mail',
25
+ 'family-name': 'Nachname',
26
+ 'given-name': 'Vorname',
27
+ off: 'Aus',
28
+ organization: 'Firma',
29
+ 'postal-code': 'Postleitzahl',
30
+ 'street-address': 'Straße',
31
+ tel: 'Telefon',
32
+ url: 'Webseite'
33
+ }
34
+ },
35
+ condition: {
36
+ description: 'Feld nur anzeigen, wenn ein anderes Feld einen bestimmten Wert hat',
37
+ field: {
38
+ description: 'Zu prüfendes Feld',
39
+ label: 'Bedingungsfeld'
40
+ },
41
+ label: 'Bedingung',
42
+ value: {
43
+ description: 'Wert, der die Anzeige auslöst',
44
+ label: 'Bedingungswert'
45
+ }
46
+ },
47
+ default: {
48
+ description: 'Standardwert für das Feld',
49
+ label: 'Standardwert'
50
+ },
51
+ description: {
52
+ description: 'Zusätzliche Beschreibung für das Feld',
53
+ label: 'Beschreibung'
54
+ },
55
+ emptyDefault: {
56
+ description: 'Standardmäßig keine Option auswählen',
57
+ label: 'Leere Standardauswahl'
58
+ },
59
+ fieldType: {
60
+ label: 'Feldtyp',
61
+ options: {
62
+ checkbox: 'Checkbox',
63
+ date: 'Datum',
64
+ datetime: 'Datum & Zeit',
65
+ dropdown: 'Dropdown',
66
+ email: 'E-Mail',
67
+ number: 'Nummer',
68
+ radio: 'Radio-Buttons',
69
+ tel: 'Telefon',
70
+ text: 'Text',
71
+ textarea: 'Textbereich',
72
+ time: 'Zeit',
73
+ url: 'URL'
74
+ }
75
+ },
76
+ label: {
77
+ description: 'Beschriftung des Feldes',
78
+ label: 'Label'
79
+ },
80
+ maxDate: {
81
+ description: 'Spätestes erlaubtes Datum',
82
+ label: 'Max. Datum'
83
+ },
84
+ maxLength: {
85
+ label: 'Max. Länge'
86
+ },
87
+ maxValue: {
88
+ label: 'Max. Wert'
89
+ },
90
+ minDate: {
91
+ description: 'Frühestes erlaubtes Datum',
92
+ label: 'Min. Datum'
93
+ },
94
+ minLength: {
95
+ label: 'Min. Länge'
96
+ },
97
+ minValue: {
98
+ label: 'Min. Wert'
99
+ },
100
+ options: {
101
+ description: 'Optionen für Dropdown- oder Radio-Felder',
102
+ label: 'Optionen',
103
+ optionLabel: {
104
+ description: 'Anzeigetext der Option',
105
+ label: 'Label'
106
+ },
107
+ value: {
108
+ description: 'Wert, der mit dem Formular gesendet wird',
109
+ label: 'Wert'
110
+ }
111
+ },
112
+ placeholder: {
113
+ description: 'Platzhaltertext für das Feld',
114
+ label: 'Platzhalter'
115
+ },
116
+ required: {
117
+ label: 'Pflichtfeld'
118
+ },
119
+ rows: {
120
+ description: 'Anzahl der Zeilen für das Textfeld',
121
+ label: 'Zeilen'
122
+ },
123
+ step: {
124
+ description: 'Schrittweite (z.B. 0.01 für Dezimalzahlen)',
125
+ label: 'Schrittweite'
126
+ },
127
+ width: {
128
+ description: 'Breite des Feldes im Formular',
129
+ label: 'Breite'
130
+ }
131
+ },
132
+ label: 'Formularfelder',
133
+ optionFallback: 'Option',
134
+ plural: 'Felder',
135
+ singular: 'Feld'
136
+ },
137
+ groups: {
138
+ messages: {
139
+ description: 'Meldungen und Beschriftungen für das Formular',
140
+ fields: {
141
+ errorMessage: {
142
+ defaultValue: 'Es ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.',
143
+ label: 'Fehlermeldung'
144
+ },
145
+ submitLabel: {
146
+ defaultValue: 'Absenden',
147
+ label: 'Absenden-Button'
148
+ },
149
+ successMessage: {
150
+ defaultValue: 'Vielen Dank für Ihre Nachricht!',
151
+ label: 'Erfolgsmeldung'
152
+ }
153
+ },
154
+ label: 'Meldungen'
155
+ },
156
+ senderReceiver: {
157
+ description: 'E-Mail-Einstellungen für Absender und Empfänger',
158
+ fields: {
159
+ receiver: {
160
+ description: 'E-Mail-Adresse des Empfängers',
161
+ label: 'Empfänger'
162
+ },
163
+ senderMail: {
164
+ description: 'E-Mail-Adresse des Absenders',
165
+ label: 'Absender E-Mail'
166
+ },
167
+ senderName: {
168
+ description: 'Name des Absenders',
169
+ label: 'Absender Name'
170
+ },
171
+ subject: {
172
+ description: 'E-Mail-Betreff',
173
+ label: 'Betreff'
174
+ }
175
+ },
176
+ label: 'Absender & Empfänger'
177
+ }
178
+ },
179
+ tabs: {
180
+ formFields: {
181
+ description: 'Felder für das Formular konfigurieren',
182
+ label: 'Formularfelder'
183
+ },
184
+ messages: {
185
+ description: 'Meldungen und Beschriftungen für das Formular',
186
+ label: 'Meldungen'
187
+ },
188
+ senderReceiver: {
189
+ description: 'E-Mail-Einstellungen für Absender und Empfänger',
190
+ label: 'Absender & Empfänger'
191
+ }
192
+ }
193
+ };
194
+
195
+ //# sourceMappingURL=de.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../src/i18n/locales/de.ts"],"sourcesContent":["export const de = {\n collection: {\n description: 'Formulare für Ihre Webseite verwalten',\n plural: 'Formulare',\n singular: 'Formular',\n },\n fields: {\n name: {\n description: 'Interner Name des Formulars',\n label: 'Name',\n },\n },\n formFields: {\n description: 'Felder des Formulars',\n fallback: 'Feld',\n fields: {\n autocomplete: {\n description: 'Browser-Autofill-Hinweis',\n label: 'Autovervollständigung',\n options: {\n name: 'Vollständiger Name',\n 'address-level2': 'Stadt',\n country: 'Land',\n email: 'E-Mail',\n 'family-name': 'Nachname',\n 'given-name': 'Vorname',\n off: 'Aus',\n organization: 'Firma',\n 'postal-code': 'Postleitzahl',\n 'street-address': 'Straße',\n tel: 'Telefon',\n url: 'Webseite',\n },\n },\n condition: {\n description: 'Feld nur anzeigen, wenn ein anderes Feld einen bestimmten Wert hat',\n field: { description: 'Zu prüfendes Feld', label: 'Bedingungsfeld' },\n label: 'Bedingung',\n value: { description: 'Wert, der die Anzeige auslöst', label: 'Bedingungswert' },\n },\n default: { description: 'Standardwert für das Feld', label: 'Standardwert' },\n description: { description: 'Zusätzliche Beschreibung für das Feld', label: 'Beschreibung' },\n emptyDefault: {\n description: 'Standardmäßig keine Option auswählen',\n label: 'Leere Standardauswahl',\n },\n fieldType: {\n label: 'Feldtyp',\n options: {\n checkbox: 'Checkbox',\n date: 'Datum',\n datetime: 'Datum & Zeit',\n dropdown: 'Dropdown',\n email: 'E-Mail',\n number: 'Nummer',\n radio: 'Radio-Buttons',\n tel: 'Telefon',\n text: 'Text',\n textarea: 'Textbereich',\n time: 'Zeit',\n url: 'URL',\n },\n },\n label: { description: 'Beschriftung des Feldes', label: 'Label' },\n maxDate: { description: 'Spätestes erlaubtes Datum', label: 'Max. Datum' },\n maxLength: { label: 'Max. Länge' },\n maxValue: { label: 'Max. Wert' },\n minDate: { description: 'Frühestes erlaubtes Datum', label: 'Min. Datum' },\n minLength: { label: 'Min. Länge' },\n minValue: { label: 'Min. Wert' },\n options: {\n description: 'Optionen für Dropdown- oder Radio-Felder',\n label: 'Optionen',\n optionLabel: { description: 'Anzeigetext der Option', label: 'Label' },\n value: { description: 'Wert, der mit dem Formular gesendet wird', label: 'Wert' },\n },\n placeholder: { description: 'Platzhaltertext für das Feld', label: 'Platzhalter' },\n required: { label: 'Pflichtfeld' },\n rows: { description: 'Anzahl der Zeilen für das Textfeld', label: 'Zeilen' },\n step: { description: 'Schrittweite (z.B. 0.01 für Dezimalzahlen)', label: 'Schrittweite' },\n width: { description: 'Breite des Feldes im Formular', label: 'Breite' },\n },\n label: 'Formularfelder',\n optionFallback: 'Option',\n plural: 'Felder',\n singular: 'Feld',\n },\n groups: {\n messages: {\n description: 'Meldungen und Beschriftungen für das Formular',\n fields: {\n errorMessage: {\n defaultValue: 'Es ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.',\n label: 'Fehlermeldung',\n },\n submitLabel: { defaultValue: 'Absenden', label: 'Absenden-Button' },\n successMessage: {\n defaultValue: 'Vielen Dank für Ihre Nachricht!',\n label: 'Erfolgsmeldung',\n },\n },\n label: 'Meldungen',\n },\n senderReceiver: {\n description: 'E-Mail-Einstellungen für Absender und Empfänger',\n fields: {\n receiver: { description: 'E-Mail-Adresse des Empfängers', label: 'Empfänger' },\n senderMail: { description: 'E-Mail-Adresse des Absenders', label: 'Absender E-Mail' },\n senderName: { description: 'Name des Absenders', label: 'Absender Name' },\n subject: { description: 'E-Mail-Betreff', label: 'Betreff' },\n },\n label: 'Absender & Empfänger',\n },\n },\n tabs: {\n formFields: { description: 'Felder für das Formular konfigurieren', label: 'Formularfelder' },\n messages: { description: 'Meldungen und Beschriftungen für das Formular', label: 'Meldungen' },\n senderReceiver: {\n description: 'E-Mail-Einstellungen für Absender und Empfänger',\n label: 'Absender & Empfänger',\n },\n },\n} as const\n"],"names":["de","collection","description","plural","singular","fields","name","label","formFields","fallback","autocomplete","options","country","email","off","organization","tel","url","condition","field","value","default","emptyDefault","fieldType","checkbox","date","datetime","dropdown","number","radio","text","textarea","time","maxDate","maxLength","maxValue","minDate","minLength","minValue","optionLabel","placeholder","required","rows","step","width","optionFallback","groups","messages","errorMessage","defaultValue","submitLabel","successMessage","senderReceiver","receiver","senderMail","senderName","subject","tabs"],"mappings":"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"}
@@ -0,0 +1,193 @@
1
+ export declare const en: {
2
+ readonly collection: {
3
+ readonly description: "Manage forms for your website";
4
+ readonly plural: "Forms";
5
+ readonly singular: "Form";
6
+ };
7
+ readonly fields: {
8
+ readonly name: {
9
+ readonly description: "Internal name of the form";
10
+ readonly label: "Name";
11
+ };
12
+ };
13
+ readonly formFields: {
14
+ readonly description: "Fields of the form";
15
+ readonly fallback: "Field";
16
+ readonly fields: {
17
+ readonly autocomplete: {
18
+ readonly description: "Browser autofill hint";
19
+ readonly label: "Autocomplete";
20
+ readonly options: {
21
+ readonly name: "Full Name";
22
+ readonly 'address-level2': "City";
23
+ readonly country: "Country";
24
+ readonly email: "Email";
25
+ readonly 'family-name': "Last Name";
26
+ readonly 'given-name': "First Name";
27
+ readonly off: "Off";
28
+ readonly organization: "Company";
29
+ readonly 'postal-code': "Postal Code";
30
+ readonly 'street-address': "Street Address";
31
+ readonly tel: "Phone";
32
+ readonly url: "Website";
33
+ };
34
+ };
35
+ readonly condition: {
36
+ readonly description: "Only show this field when another field has a specific value";
37
+ readonly field: {
38
+ readonly description: "Field to check";
39
+ readonly label: "Conditional Field";
40
+ };
41
+ readonly label: "Condition";
42
+ readonly value: {
43
+ readonly description: "Value that triggers display";
44
+ readonly label: "Conditional Value";
45
+ };
46
+ };
47
+ readonly default: {
48
+ readonly description: "Default value for the field";
49
+ readonly label: "Default Value";
50
+ };
51
+ readonly description: {
52
+ readonly description: "Additional description for the field";
53
+ readonly label: "Description";
54
+ };
55
+ readonly emptyDefault: {
56
+ readonly description: "No option selected by default";
57
+ readonly label: "Empty Default";
58
+ };
59
+ readonly fieldType: {
60
+ readonly label: "Field Type";
61
+ readonly options: {
62
+ readonly checkbox: "Checkbox";
63
+ readonly date: "Date";
64
+ readonly datetime: "Date & Time";
65
+ readonly dropdown: "Dropdown";
66
+ readonly email: "Email";
67
+ readonly number: "Number";
68
+ readonly radio: "Radio Buttons";
69
+ readonly tel: "Phone";
70
+ readonly text: "Text";
71
+ readonly textarea: "Textarea";
72
+ readonly time: "Time";
73
+ readonly url: "URL";
74
+ };
75
+ };
76
+ readonly label: {
77
+ readonly description: "Label of the field";
78
+ readonly label: "Label";
79
+ };
80
+ readonly maxDate: {
81
+ readonly description: "Latest allowed date";
82
+ readonly label: "Max Date";
83
+ };
84
+ readonly maxLength: {
85
+ readonly label: "Max Length";
86
+ };
87
+ readonly maxValue: {
88
+ readonly label: "Max Value";
89
+ };
90
+ readonly minDate: {
91
+ readonly description: "Earliest allowed date";
92
+ readonly label: "Min Date";
93
+ };
94
+ readonly minLength: {
95
+ readonly label: "Min Length";
96
+ };
97
+ readonly minValue: {
98
+ readonly label: "Min Value";
99
+ };
100
+ readonly options: {
101
+ readonly description: "Options for dropdown or radio fields";
102
+ readonly label: "Options";
103
+ readonly optionLabel: {
104
+ readonly description: "Display text for the option";
105
+ readonly label: "Label";
106
+ };
107
+ readonly value: {
108
+ readonly description: "Value submitted with the form";
109
+ readonly label: "Value";
110
+ };
111
+ };
112
+ readonly placeholder: {
113
+ readonly description: "Placeholder text for the field";
114
+ readonly label: "Placeholder";
115
+ };
116
+ readonly required: {
117
+ readonly label: "Required";
118
+ };
119
+ readonly rows: {
120
+ readonly description: "Number of rows for the textarea";
121
+ readonly label: "Rows";
122
+ };
123
+ readonly step: {
124
+ readonly description: "Step increment (e.g. 0.01 for decimals)";
125
+ readonly label: "Step";
126
+ };
127
+ readonly width: {
128
+ readonly description: "Width of the field in the form";
129
+ readonly label: "Width";
130
+ };
131
+ };
132
+ readonly label: "Form Fields";
133
+ readonly optionFallback: "Option";
134
+ readonly plural: "Fields";
135
+ readonly singular: "Field";
136
+ };
137
+ readonly groups: {
138
+ readonly messages: {
139
+ readonly description: "Messages and labels for the form";
140
+ readonly fields: {
141
+ readonly errorMessage: {
142
+ readonly defaultValue: "An error occurred. Please try again.";
143
+ readonly label: "Error Message";
144
+ };
145
+ readonly submitLabel: {
146
+ readonly defaultValue: "Submit";
147
+ readonly label: "Submit Button";
148
+ };
149
+ readonly successMessage: {
150
+ readonly defaultValue: "Thank you for your message!";
151
+ readonly label: "Success Message";
152
+ };
153
+ };
154
+ readonly label: "Messages";
155
+ };
156
+ readonly senderReceiver: {
157
+ readonly description: "Email settings for sender and receiver";
158
+ readonly fields: {
159
+ readonly receiver: {
160
+ readonly description: "Receiver email address";
161
+ readonly label: "Receiver";
162
+ };
163
+ readonly senderMail: {
164
+ readonly description: "Sender email address";
165
+ readonly label: "Sender Email";
166
+ };
167
+ readonly senderName: {
168
+ readonly description: "Sender display name";
169
+ readonly label: "Sender Name";
170
+ };
171
+ readonly subject: {
172
+ readonly description: "Email subject line";
173
+ readonly label: "Subject";
174
+ };
175
+ };
176
+ readonly label: "Sender & Receiver";
177
+ };
178
+ };
179
+ readonly tabs: {
180
+ readonly formFields: {
181
+ readonly description: "Configure fields for the form";
182
+ readonly label: "Form Fields";
183
+ };
184
+ readonly messages: {
185
+ readonly description: "Messages and labels for the form";
186
+ readonly label: "Messages";
187
+ };
188
+ readonly senderReceiver: {
189
+ readonly description: "Email settings for sender and receiver";
190
+ readonly label: "Sender & Receiver";
191
+ };
192
+ };
193
+ };