@kopexa/i18n 17.5.16 → 17.6.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.
- package/dist/{chunk-P53HSWLR.mjs → chunk-3SGU3FSG.mjs} +2 -2
- package/dist/{chunk-RPJL6DLK.mjs → chunk-73LRONJ6.mjs} +35 -1
- package/dist/{chunk-F5ZU6RFX.mjs → chunk-MPHRITEI.mjs} +35 -1
- package/dist/{chunk-IQ5JBG4T.mjs → chunk-SGF2CU23.mjs} +1 -1
- package/dist/{chunk-Y6K5VFSP.mjs → chunk-VKEW6EBM.mjs} +1 -1
- package/dist/hooks/use-built-in-messages.js +70 -2
- package/dist/hooks/use-built-in-messages.mjs +4 -4
- package/dist/i18n.js +70 -2
- package/dist/i18n.mjs +5 -5
- package/dist/index.js +70 -2
- package/dist/index.mjs +5 -5
- package/dist/lang/de.d.mts +35 -1
- package/dist/lang/de.d.ts +35 -1
- package/dist/lang/de.js +35 -1
- package/dist/lang/de.mjs +1 -1
- package/dist/lang/en.d.mts +35 -1
- package/dist/lang/en.d.ts +35 -1
- package/dist/lang/en.js +35 -1
- package/dist/lang/en.mjs +1 -1
- package/dist/loaders/index.js +70 -2
- package/dist/loaders/index.mjs +3 -3
- package/package.json +4 -4
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
de_default
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-MPHRITEI.mjs";
|
|
5
5
|
import {
|
|
6
6
|
en_default
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-73LRONJ6.mjs";
|
|
8
8
|
|
|
9
9
|
// src/loaders/index.ts
|
|
10
10
|
var CACHE = /* @__PURE__ */ new Map();
|
|
@@ -129,6 +129,16 @@ var en_default = {
|
|
|
129
129
|
"filter.operator.not_equals": "is not",
|
|
130
130
|
"filter.operator.starts_with": "starts with",
|
|
131
131
|
"filter.select_value": "Select value...",
|
|
132
|
+
"filter.loading": "Loading...",
|
|
133
|
+
"filter.boolean_true": "Yes",
|
|
134
|
+
"filter.boolean_false": "No",
|
|
135
|
+
"filter.range_min": "Min",
|
|
136
|
+
"filter.range_max": "Max",
|
|
137
|
+
"filter.remove_filter": "Remove {field} filter",
|
|
138
|
+
"filter.operator_label": "{field} operator",
|
|
139
|
+
"filter.value_label": "{field} value",
|
|
140
|
+
"filter.value_min_label": "{field} minimum value",
|
|
141
|
+
"filter.value_max_label": "{field} maximum value",
|
|
132
142
|
"grc.compliance.dora.label": "DORA",
|
|
133
143
|
"grc.compliance.dora.tooltip": "DORA Critical - Affects critical ICT functions",
|
|
134
144
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -169,7 +179,31 @@ var en_default = {
|
|
|
169
179
|
"grc.impact.title_cia": "CIA Impact",
|
|
170
180
|
"grc.impact.title_ciaa": "CIAA Impact",
|
|
171
181
|
"use_file_upload.file_exceeds_max": 'File "{name}" exceeds the maximum size of {max}.',
|
|
172
|
-
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.'
|
|
182
|
+
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.',
|
|
183
|
+
"filter-bar.add_filter": "Add Filter",
|
|
184
|
+
"filter-bar.apply": "Apply",
|
|
185
|
+
"filter-bar.cancel": "Cancel",
|
|
186
|
+
"filter-bar.clear_all": "Clear all",
|
|
187
|
+
"filter-bar.enter_value": "Enter value...",
|
|
188
|
+
"filter-bar.no_results": "No results found",
|
|
189
|
+
"filter-bar.operator.contains": "contains",
|
|
190
|
+
"filter-bar.operator.ends_with": "ends with",
|
|
191
|
+
"filter-bar.operator.equals": "is",
|
|
192
|
+
"filter-bar.operator.gt": "greater than",
|
|
193
|
+
"filter-bar.operator.gte": "greater or equal",
|
|
194
|
+
"filter-bar.operator.is_empty": "is empty",
|
|
195
|
+
"filter-bar.operator.is_not_empty": "is not empty",
|
|
196
|
+
"filter-bar.operator.lt": "less than",
|
|
197
|
+
"filter-bar.operator.lte": "less or equal",
|
|
198
|
+
"filter-bar.operator.not_contains": "does not contain",
|
|
199
|
+
"filter-bar.operator.not_equals": "is not",
|
|
200
|
+
"filter-bar.operator.starts_with": "starts with",
|
|
201
|
+
"filter-bar.operator_label": "{field} operator",
|
|
202
|
+
"filter-bar.remove_filter": "Remove {field} filter",
|
|
203
|
+
"filter-bar.search_placeholder": "Search...",
|
|
204
|
+
"filter-bar.select_value": "Select value...",
|
|
205
|
+
"filter-bar.selected_count": "{count} selected",
|
|
206
|
+
"filter-bar.value_label": "{field} value"
|
|
173
207
|
};
|
|
174
208
|
|
|
175
209
|
export {
|
|
@@ -132,6 +132,16 @@ var de_default = {
|
|
|
132
132
|
"filter.operator.not_equals": "ist nicht",
|
|
133
133
|
"filter.operator.starts_with": "beginnt mit",
|
|
134
134
|
"filter.select_value": "Wert ausw\xE4hlen...",
|
|
135
|
+
"filter.loading": "L\xE4dt...",
|
|
136
|
+
"filter.boolean_true": "Ja",
|
|
137
|
+
"filter.boolean_false": "Nein",
|
|
138
|
+
"filter.range_min": "Min",
|
|
139
|
+
"filter.range_max": "Max",
|
|
140
|
+
"filter.remove_filter": "{field}-Filter entfernen",
|
|
141
|
+
"filter.operator_label": "{field} Operator",
|
|
142
|
+
"filter.value_label": "{field} Wert",
|
|
143
|
+
"filter.value_min_label": "{field} Minimalwert",
|
|
144
|
+
"filter.value_max_label": "{field} Maximalwert",
|
|
135
145
|
"grc.compliance.dora.label": "DORA",
|
|
136
146
|
"grc.compliance.dora.tooltip": "DORA Critical - Betrifft kritische IKT-Funktionen",
|
|
137
147
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -170,7 +180,31 @@ var de_default = {
|
|
|
170
180
|
"grc.impact.scale.risk.4": "Hoch",
|
|
171
181
|
"grc.impact.scale.risk.5": "Kritisch",
|
|
172
182
|
"grc.impact.title_cia": "CIA-Auswirkung",
|
|
173
|
-
"grc.impact.title_ciaa": "CIAA-Auswirkung"
|
|
183
|
+
"grc.impact.title_ciaa": "CIAA-Auswirkung",
|
|
184
|
+
"filter-bar.add_filter": "Filter hinzuf\xFCgen",
|
|
185
|
+
"filter-bar.apply": "Anwenden",
|
|
186
|
+
"filter-bar.cancel": "Abbrechen",
|
|
187
|
+
"filter-bar.clear_all": "Alle l\xF6schen",
|
|
188
|
+
"filter-bar.enter_value": "Wert eingeben...",
|
|
189
|
+
"filter-bar.no_results": "Keine Ergebnisse gefunden",
|
|
190
|
+
"filter-bar.operator.contains": "enth\xE4lt",
|
|
191
|
+
"filter-bar.operator.ends_with": "endet mit",
|
|
192
|
+
"filter-bar.operator.equals": "ist",
|
|
193
|
+
"filter-bar.operator.gt": "gr\xF6\xDFer als",
|
|
194
|
+
"filter-bar.operator.gte": "gr\xF6\xDFer oder gleich",
|
|
195
|
+
"filter-bar.operator.is_empty": "ist leer",
|
|
196
|
+
"filter-bar.operator.is_not_empty": "ist nicht leer",
|
|
197
|
+
"filter-bar.operator.lt": "kleiner als",
|
|
198
|
+
"filter-bar.operator.lte": "kleiner oder gleich",
|
|
199
|
+
"filter-bar.operator.not_contains": "enth\xE4lt nicht",
|
|
200
|
+
"filter-bar.operator.not_equals": "ist nicht",
|
|
201
|
+
"filter-bar.operator.starts_with": "beginnt mit",
|
|
202
|
+
"filter-bar.operator_label": "{field} Operator",
|
|
203
|
+
"filter-bar.remove_filter": "{field}-Filter entfernen",
|
|
204
|
+
"filter-bar.search_placeholder": "Suchen...",
|
|
205
|
+
"filter-bar.select_value": "Wert ausw\xE4hlen...",
|
|
206
|
+
"filter-bar.selected_count": "{count} ausgew\xE4hlt",
|
|
207
|
+
"filter-bar.value_label": "{field} Wert"
|
|
174
208
|
};
|
|
175
209
|
|
|
176
210
|
export {
|
|
@@ -159,6 +159,16 @@ var de_default = {
|
|
|
159
159
|
"filter.operator.not_equals": "ist nicht",
|
|
160
160
|
"filter.operator.starts_with": "beginnt mit",
|
|
161
161
|
"filter.select_value": "Wert ausw\xE4hlen...",
|
|
162
|
+
"filter.loading": "L\xE4dt...",
|
|
163
|
+
"filter.boolean_true": "Ja",
|
|
164
|
+
"filter.boolean_false": "Nein",
|
|
165
|
+
"filter.range_min": "Min",
|
|
166
|
+
"filter.range_max": "Max",
|
|
167
|
+
"filter.remove_filter": "{field}-Filter entfernen",
|
|
168
|
+
"filter.operator_label": "{field} Operator",
|
|
169
|
+
"filter.value_label": "{field} Wert",
|
|
170
|
+
"filter.value_min_label": "{field} Minimalwert",
|
|
171
|
+
"filter.value_max_label": "{field} Maximalwert",
|
|
162
172
|
"grc.compliance.dora.label": "DORA",
|
|
163
173
|
"grc.compliance.dora.tooltip": "DORA Critical - Betrifft kritische IKT-Funktionen",
|
|
164
174
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -197,7 +207,31 @@ var de_default = {
|
|
|
197
207
|
"grc.impact.scale.risk.4": "Hoch",
|
|
198
208
|
"grc.impact.scale.risk.5": "Kritisch",
|
|
199
209
|
"grc.impact.title_cia": "CIA-Auswirkung",
|
|
200
|
-
"grc.impact.title_ciaa": "CIAA-Auswirkung"
|
|
210
|
+
"grc.impact.title_ciaa": "CIAA-Auswirkung",
|
|
211
|
+
"filter-bar.add_filter": "Filter hinzuf\xFCgen",
|
|
212
|
+
"filter-bar.apply": "Anwenden",
|
|
213
|
+
"filter-bar.cancel": "Abbrechen",
|
|
214
|
+
"filter-bar.clear_all": "Alle l\xF6schen",
|
|
215
|
+
"filter-bar.enter_value": "Wert eingeben...",
|
|
216
|
+
"filter-bar.no_results": "Keine Ergebnisse gefunden",
|
|
217
|
+
"filter-bar.operator.contains": "enth\xE4lt",
|
|
218
|
+
"filter-bar.operator.ends_with": "endet mit",
|
|
219
|
+
"filter-bar.operator.equals": "ist",
|
|
220
|
+
"filter-bar.operator.gt": "gr\xF6\xDFer als",
|
|
221
|
+
"filter-bar.operator.gte": "gr\xF6\xDFer oder gleich",
|
|
222
|
+
"filter-bar.operator.is_empty": "ist leer",
|
|
223
|
+
"filter-bar.operator.is_not_empty": "ist nicht leer",
|
|
224
|
+
"filter-bar.operator.lt": "kleiner als",
|
|
225
|
+
"filter-bar.operator.lte": "kleiner oder gleich",
|
|
226
|
+
"filter-bar.operator.not_contains": "enth\xE4lt nicht",
|
|
227
|
+
"filter-bar.operator.not_equals": "ist nicht",
|
|
228
|
+
"filter-bar.operator.starts_with": "beginnt mit",
|
|
229
|
+
"filter-bar.operator_label": "{field} Operator",
|
|
230
|
+
"filter-bar.remove_filter": "{field}-Filter entfernen",
|
|
231
|
+
"filter-bar.search_placeholder": "Suchen...",
|
|
232
|
+
"filter-bar.select_value": "Wert ausw\xE4hlen...",
|
|
233
|
+
"filter-bar.selected_count": "{count} ausgew\xE4hlt",
|
|
234
|
+
"filter-bar.value_label": "{field} Wert"
|
|
201
235
|
};
|
|
202
236
|
|
|
203
237
|
// src/lang/en.json
|
|
@@ -329,6 +363,16 @@ var en_default = {
|
|
|
329
363
|
"filter.operator.not_equals": "is not",
|
|
330
364
|
"filter.operator.starts_with": "starts with",
|
|
331
365
|
"filter.select_value": "Select value...",
|
|
366
|
+
"filter.loading": "Loading...",
|
|
367
|
+
"filter.boolean_true": "Yes",
|
|
368
|
+
"filter.boolean_false": "No",
|
|
369
|
+
"filter.range_min": "Min",
|
|
370
|
+
"filter.range_max": "Max",
|
|
371
|
+
"filter.remove_filter": "Remove {field} filter",
|
|
372
|
+
"filter.operator_label": "{field} operator",
|
|
373
|
+
"filter.value_label": "{field} value",
|
|
374
|
+
"filter.value_min_label": "{field} minimum value",
|
|
375
|
+
"filter.value_max_label": "{field} maximum value",
|
|
332
376
|
"grc.compliance.dora.label": "DORA",
|
|
333
377
|
"grc.compliance.dora.tooltip": "DORA Critical - Affects critical ICT functions",
|
|
334
378
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -369,7 +413,31 @@ var en_default = {
|
|
|
369
413
|
"grc.impact.title_cia": "CIA Impact",
|
|
370
414
|
"grc.impact.title_ciaa": "CIAA Impact",
|
|
371
415
|
"use_file_upload.file_exceeds_max": 'File "{name}" exceeds the maximum size of {max}.',
|
|
372
|
-
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.'
|
|
416
|
+
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.',
|
|
417
|
+
"filter-bar.add_filter": "Add Filter",
|
|
418
|
+
"filter-bar.apply": "Apply",
|
|
419
|
+
"filter-bar.cancel": "Cancel",
|
|
420
|
+
"filter-bar.clear_all": "Clear all",
|
|
421
|
+
"filter-bar.enter_value": "Enter value...",
|
|
422
|
+
"filter-bar.no_results": "No results found",
|
|
423
|
+
"filter-bar.operator.contains": "contains",
|
|
424
|
+
"filter-bar.operator.ends_with": "ends with",
|
|
425
|
+
"filter-bar.operator.equals": "is",
|
|
426
|
+
"filter-bar.operator.gt": "greater than",
|
|
427
|
+
"filter-bar.operator.gte": "greater or equal",
|
|
428
|
+
"filter-bar.operator.is_empty": "is empty",
|
|
429
|
+
"filter-bar.operator.is_not_empty": "is not empty",
|
|
430
|
+
"filter-bar.operator.lt": "less than",
|
|
431
|
+
"filter-bar.operator.lte": "less or equal",
|
|
432
|
+
"filter-bar.operator.not_contains": "does not contain",
|
|
433
|
+
"filter-bar.operator.not_equals": "is not",
|
|
434
|
+
"filter-bar.operator.starts_with": "starts with",
|
|
435
|
+
"filter-bar.operator_label": "{field} operator",
|
|
436
|
+
"filter-bar.remove_filter": "Remove {field} filter",
|
|
437
|
+
"filter-bar.search_placeholder": "Search...",
|
|
438
|
+
"filter-bar.select_value": "Select value...",
|
|
439
|
+
"filter-bar.selected_count": "{count} selected",
|
|
440
|
+
"filter-bar.value_label": "{field} value"
|
|
373
441
|
};
|
|
374
442
|
|
|
375
443
|
// src/loaders/index.ts
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
"use client";
|
|
3
3
|
import {
|
|
4
4
|
useBuiltInMessages
|
|
5
|
-
} from "../chunk-
|
|
6
|
-
import "../chunk-
|
|
7
|
-
import "../chunk-
|
|
8
|
-
import "../chunk-
|
|
5
|
+
} from "../chunk-SGF2CU23.mjs";
|
|
6
|
+
import "../chunk-3SGU3FSG.mjs";
|
|
7
|
+
import "../chunk-MPHRITEI.mjs";
|
|
8
|
+
import "../chunk-73LRONJ6.mjs";
|
|
9
9
|
export {
|
|
10
10
|
useBuiltInMessages
|
|
11
11
|
};
|
package/dist/i18n.js
CHANGED
|
@@ -163,6 +163,16 @@ var de_default = {
|
|
|
163
163
|
"filter.operator.not_equals": "ist nicht",
|
|
164
164
|
"filter.operator.starts_with": "beginnt mit",
|
|
165
165
|
"filter.select_value": "Wert ausw\xE4hlen...",
|
|
166
|
+
"filter.loading": "L\xE4dt...",
|
|
167
|
+
"filter.boolean_true": "Ja",
|
|
168
|
+
"filter.boolean_false": "Nein",
|
|
169
|
+
"filter.range_min": "Min",
|
|
170
|
+
"filter.range_max": "Max",
|
|
171
|
+
"filter.remove_filter": "{field}-Filter entfernen",
|
|
172
|
+
"filter.operator_label": "{field} Operator",
|
|
173
|
+
"filter.value_label": "{field} Wert",
|
|
174
|
+
"filter.value_min_label": "{field} Minimalwert",
|
|
175
|
+
"filter.value_max_label": "{field} Maximalwert",
|
|
166
176
|
"grc.compliance.dora.label": "DORA",
|
|
167
177
|
"grc.compliance.dora.tooltip": "DORA Critical - Betrifft kritische IKT-Funktionen",
|
|
168
178
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -201,7 +211,31 @@ var de_default = {
|
|
|
201
211
|
"grc.impact.scale.risk.4": "Hoch",
|
|
202
212
|
"grc.impact.scale.risk.5": "Kritisch",
|
|
203
213
|
"grc.impact.title_cia": "CIA-Auswirkung",
|
|
204
|
-
"grc.impact.title_ciaa": "CIAA-Auswirkung"
|
|
214
|
+
"grc.impact.title_ciaa": "CIAA-Auswirkung",
|
|
215
|
+
"filter-bar.add_filter": "Filter hinzuf\xFCgen",
|
|
216
|
+
"filter-bar.apply": "Anwenden",
|
|
217
|
+
"filter-bar.cancel": "Abbrechen",
|
|
218
|
+
"filter-bar.clear_all": "Alle l\xF6schen",
|
|
219
|
+
"filter-bar.enter_value": "Wert eingeben...",
|
|
220
|
+
"filter-bar.no_results": "Keine Ergebnisse gefunden",
|
|
221
|
+
"filter-bar.operator.contains": "enth\xE4lt",
|
|
222
|
+
"filter-bar.operator.ends_with": "endet mit",
|
|
223
|
+
"filter-bar.operator.equals": "ist",
|
|
224
|
+
"filter-bar.operator.gt": "gr\xF6\xDFer als",
|
|
225
|
+
"filter-bar.operator.gte": "gr\xF6\xDFer oder gleich",
|
|
226
|
+
"filter-bar.operator.is_empty": "ist leer",
|
|
227
|
+
"filter-bar.operator.is_not_empty": "ist nicht leer",
|
|
228
|
+
"filter-bar.operator.lt": "kleiner als",
|
|
229
|
+
"filter-bar.operator.lte": "kleiner oder gleich",
|
|
230
|
+
"filter-bar.operator.not_contains": "enth\xE4lt nicht",
|
|
231
|
+
"filter-bar.operator.not_equals": "ist nicht",
|
|
232
|
+
"filter-bar.operator.starts_with": "beginnt mit",
|
|
233
|
+
"filter-bar.operator_label": "{field} Operator",
|
|
234
|
+
"filter-bar.remove_filter": "{field}-Filter entfernen",
|
|
235
|
+
"filter-bar.search_placeholder": "Suchen...",
|
|
236
|
+
"filter-bar.select_value": "Wert ausw\xE4hlen...",
|
|
237
|
+
"filter-bar.selected_count": "{count} ausgew\xE4hlt",
|
|
238
|
+
"filter-bar.value_label": "{field} Wert"
|
|
205
239
|
};
|
|
206
240
|
|
|
207
241
|
// src/lang/en.json
|
|
@@ -333,6 +367,16 @@ var en_default = {
|
|
|
333
367
|
"filter.operator.not_equals": "is not",
|
|
334
368
|
"filter.operator.starts_with": "starts with",
|
|
335
369
|
"filter.select_value": "Select value...",
|
|
370
|
+
"filter.loading": "Loading...",
|
|
371
|
+
"filter.boolean_true": "Yes",
|
|
372
|
+
"filter.boolean_false": "No",
|
|
373
|
+
"filter.range_min": "Min",
|
|
374
|
+
"filter.range_max": "Max",
|
|
375
|
+
"filter.remove_filter": "Remove {field} filter",
|
|
376
|
+
"filter.operator_label": "{field} operator",
|
|
377
|
+
"filter.value_label": "{field} value",
|
|
378
|
+
"filter.value_min_label": "{field} minimum value",
|
|
379
|
+
"filter.value_max_label": "{field} maximum value",
|
|
336
380
|
"grc.compliance.dora.label": "DORA",
|
|
337
381
|
"grc.compliance.dora.tooltip": "DORA Critical - Affects critical ICT functions",
|
|
338
382
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -373,7 +417,31 @@ var en_default = {
|
|
|
373
417
|
"grc.impact.title_cia": "CIA Impact",
|
|
374
418
|
"grc.impact.title_ciaa": "CIAA Impact",
|
|
375
419
|
"use_file_upload.file_exceeds_max": 'File "{name}" exceeds the maximum size of {max}.',
|
|
376
|
-
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.'
|
|
420
|
+
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.',
|
|
421
|
+
"filter-bar.add_filter": "Add Filter",
|
|
422
|
+
"filter-bar.apply": "Apply",
|
|
423
|
+
"filter-bar.cancel": "Cancel",
|
|
424
|
+
"filter-bar.clear_all": "Clear all",
|
|
425
|
+
"filter-bar.enter_value": "Enter value...",
|
|
426
|
+
"filter-bar.no_results": "No results found",
|
|
427
|
+
"filter-bar.operator.contains": "contains",
|
|
428
|
+
"filter-bar.operator.ends_with": "ends with",
|
|
429
|
+
"filter-bar.operator.equals": "is",
|
|
430
|
+
"filter-bar.operator.gt": "greater than",
|
|
431
|
+
"filter-bar.operator.gte": "greater or equal",
|
|
432
|
+
"filter-bar.operator.is_empty": "is empty",
|
|
433
|
+
"filter-bar.operator.is_not_empty": "is not empty",
|
|
434
|
+
"filter-bar.operator.lt": "less than",
|
|
435
|
+
"filter-bar.operator.lte": "less or equal",
|
|
436
|
+
"filter-bar.operator.not_contains": "does not contain",
|
|
437
|
+
"filter-bar.operator.not_equals": "is not",
|
|
438
|
+
"filter-bar.operator.starts_with": "starts with",
|
|
439
|
+
"filter-bar.operator_label": "{field} operator",
|
|
440
|
+
"filter-bar.remove_filter": "Remove {field} filter",
|
|
441
|
+
"filter-bar.search_placeholder": "Search...",
|
|
442
|
+
"filter-bar.select_value": "Select value...",
|
|
443
|
+
"filter-bar.selected_count": "{count} selected",
|
|
444
|
+
"filter-bar.value_label": "{field} value"
|
|
377
445
|
};
|
|
378
446
|
|
|
379
447
|
// src/loaders/index.ts
|
package/dist/i18n.mjs
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
"use client";
|
|
3
3
|
import {
|
|
4
4
|
I18nProvider
|
|
5
|
-
} from "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
9
|
-
import "./chunk-
|
|
5
|
+
} from "./chunk-VKEW6EBM.mjs";
|
|
6
|
+
import "./chunk-SGF2CU23.mjs";
|
|
7
|
+
import "./chunk-3SGU3FSG.mjs";
|
|
8
|
+
import "./chunk-MPHRITEI.mjs";
|
|
9
|
+
import "./chunk-73LRONJ6.mjs";
|
|
10
10
|
import "./chunk-TYEI7NWI.mjs";
|
|
11
11
|
import "./chunk-DWCWMJZD.mjs";
|
|
12
12
|
import "./chunk-DRJHB4YN.mjs";
|
package/dist/index.js
CHANGED
|
@@ -187,6 +187,16 @@ var de_default = {
|
|
|
187
187
|
"filter.operator.not_equals": "ist nicht",
|
|
188
188
|
"filter.operator.starts_with": "beginnt mit",
|
|
189
189
|
"filter.select_value": "Wert ausw\xE4hlen...",
|
|
190
|
+
"filter.loading": "L\xE4dt...",
|
|
191
|
+
"filter.boolean_true": "Ja",
|
|
192
|
+
"filter.boolean_false": "Nein",
|
|
193
|
+
"filter.range_min": "Min",
|
|
194
|
+
"filter.range_max": "Max",
|
|
195
|
+
"filter.remove_filter": "{field}-Filter entfernen",
|
|
196
|
+
"filter.operator_label": "{field} Operator",
|
|
197
|
+
"filter.value_label": "{field} Wert",
|
|
198
|
+
"filter.value_min_label": "{field} Minimalwert",
|
|
199
|
+
"filter.value_max_label": "{field} Maximalwert",
|
|
190
200
|
"grc.compliance.dora.label": "DORA",
|
|
191
201
|
"grc.compliance.dora.tooltip": "DORA Critical - Betrifft kritische IKT-Funktionen",
|
|
192
202
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -225,7 +235,31 @@ var de_default = {
|
|
|
225
235
|
"grc.impact.scale.risk.4": "Hoch",
|
|
226
236
|
"grc.impact.scale.risk.5": "Kritisch",
|
|
227
237
|
"grc.impact.title_cia": "CIA-Auswirkung",
|
|
228
|
-
"grc.impact.title_ciaa": "CIAA-Auswirkung"
|
|
238
|
+
"grc.impact.title_ciaa": "CIAA-Auswirkung",
|
|
239
|
+
"filter-bar.add_filter": "Filter hinzuf\xFCgen",
|
|
240
|
+
"filter-bar.apply": "Anwenden",
|
|
241
|
+
"filter-bar.cancel": "Abbrechen",
|
|
242
|
+
"filter-bar.clear_all": "Alle l\xF6schen",
|
|
243
|
+
"filter-bar.enter_value": "Wert eingeben...",
|
|
244
|
+
"filter-bar.no_results": "Keine Ergebnisse gefunden",
|
|
245
|
+
"filter-bar.operator.contains": "enth\xE4lt",
|
|
246
|
+
"filter-bar.operator.ends_with": "endet mit",
|
|
247
|
+
"filter-bar.operator.equals": "ist",
|
|
248
|
+
"filter-bar.operator.gt": "gr\xF6\xDFer als",
|
|
249
|
+
"filter-bar.operator.gte": "gr\xF6\xDFer oder gleich",
|
|
250
|
+
"filter-bar.operator.is_empty": "ist leer",
|
|
251
|
+
"filter-bar.operator.is_not_empty": "ist nicht leer",
|
|
252
|
+
"filter-bar.operator.lt": "kleiner als",
|
|
253
|
+
"filter-bar.operator.lte": "kleiner oder gleich",
|
|
254
|
+
"filter-bar.operator.not_contains": "enth\xE4lt nicht",
|
|
255
|
+
"filter-bar.operator.not_equals": "ist nicht",
|
|
256
|
+
"filter-bar.operator.starts_with": "beginnt mit",
|
|
257
|
+
"filter-bar.operator_label": "{field} Operator",
|
|
258
|
+
"filter-bar.remove_filter": "{field}-Filter entfernen",
|
|
259
|
+
"filter-bar.search_placeholder": "Suchen...",
|
|
260
|
+
"filter-bar.select_value": "Wert ausw\xE4hlen...",
|
|
261
|
+
"filter-bar.selected_count": "{count} ausgew\xE4hlt",
|
|
262
|
+
"filter-bar.value_label": "{field} Wert"
|
|
229
263
|
};
|
|
230
264
|
|
|
231
265
|
// src/lang/en.json
|
|
@@ -357,6 +391,16 @@ var en_default = {
|
|
|
357
391
|
"filter.operator.not_equals": "is not",
|
|
358
392
|
"filter.operator.starts_with": "starts with",
|
|
359
393
|
"filter.select_value": "Select value...",
|
|
394
|
+
"filter.loading": "Loading...",
|
|
395
|
+
"filter.boolean_true": "Yes",
|
|
396
|
+
"filter.boolean_false": "No",
|
|
397
|
+
"filter.range_min": "Min",
|
|
398
|
+
"filter.range_max": "Max",
|
|
399
|
+
"filter.remove_filter": "Remove {field} filter",
|
|
400
|
+
"filter.operator_label": "{field} operator",
|
|
401
|
+
"filter.value_label": "{field} value",
|
|
402
|
+
"filter.value_min_label": "{field} minimum value",
|
|
403
|
+
"filter.value_max_label": "{field} maximum value",
|
|
360
404
|
"grc.compliance.dora.label": "DORA",
|
|
361
405
|
"grc.compliance.dora.tooltip": "DORA Critical - Affects critical ICT functions",
|
|
362
406
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -397,7 +441,31 @@ var en_default = {
|
|
|
397
441
|
"grc.impact.title_cia": "CIA Impact",
|
|
398
442
|
"grc.impact.title_ciaa": "CIAA Impact",
|
|
399
443
|
"use_file_upload.file_exceeds_max": 'File "{name}" exceeds the maximum size of {max}.',
|
|
400
|
-
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.'
|
|
444
|
+
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.',
|
|
445
|
+
"filter-bar.add_filter": "Add Filter",
|
|
446
|
+
"filter-bar.apply": "Apply",
|
|
447
|
+
"filter-bar.cancel": "Cancel",
|
|
448
|
+
"filter-bar.clear_all": "Clear all",
|
|
449
|
+
"filter-bar.enter_value": "Enter value...",
|
|
450
|
+
"filter-bar.no_results": "No results found",
|
|
451
|
+
"filter-bar.operator.contains": "contains",
|
|
452
|
+
"filter-bar.operator.ends_with": "ends with",
|
|
453
|
+
"filter-bar.operator.equals": "is",
|
|
454
|
+
"filter-bar.operator.gt": "greater than",
|
|
455
|
+
"filter-bar.operator.gte": "greater or equal",
|
|
456
|
+
"filter-bar.operator.is_empty": "is empty",
|
|
457
|
+
"filter-bar.operator.is_not_empty": "is not empty",
|
|
458
|
+
"filter-bar.operator.lt": "less than",
|
|
459
|
+
"filter-bar.operator.lte": "less or equal",
|
|
460
|
+
"filter-bar.operator.not_contains": "does not contain",
|
|
461
|
+
"filter-bar.operator.not_equals": "is not",
|
|
462
|
+
"filter-bar.operator.starts_with": "starts with",
|
|
463
|
+
"filter-bar.operator_label": "{field} operator",
|
|
464
|
+
"filter-bar.remove_filter": "Remove {field} filter",
|
|
465
|
+
"filter-bar.search_placeholder": "Search...",
|
|
466
|
+
"filter-bar.select_value": "Select value...",
|
|
467
|
+
"filter-bar.selected_count": "{count} selected",
|
|
468
|
+
"filter-bar.value_label": "{field} value"
|
|
401
469
|
};
|
|
402
470
|
|
|
403
471
|
// src/loaders/index.ts
|
package/dist/index.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
I18nProvider
|
|
4
|
-
} from "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
8
|
-
import "./chunk-
|
|
4
|
+
} from "./chunk-VKEW6EBM.mjs";
|
|
5
|
+
import "./chunk-SGF2CU23.mjs";
|
|
6
|
+
import "./chunk-3SGU3FSG.mjs";
|
|
7
|
+
import "./chunk-MPHRITEI.mjs";
|
|
8
|
+
import "./chunk-73LRONJ6.mjs";
|
|
9
9
|
import "./chunk-TYEI7NWI.mjs";
|
|
10
10
|
import {
|
|
11
11
|
useSafeIntl
|
package/dist/lang/de.d.mts
CHANGED
|
@@ -129,6 +129,16 @@ var de = {
|
|
|
129
129
|
"filter.operator.not_equals": "ist nicht",
|
|
130
130
|
"filter.operator.starts_with": "beginnt mit",
|
|
131
131
|
"filter.select_value": "Wert auswählen...",
|
|
132
|
+
"filter.loading": "Lädt...",
|
|
133
|
+
"filter.boolean_true": "Ja",
|
|
134
|
+
"filter.boolean_false": "Nein",
|
|
135
|
+
"filter.range_min": "Min",
|
|
136
|
+
"filter.range_max": "Max",
|
|
137
|
+
"filter.remove_filter": "{field}-Filter entfernen",
|
|
138
|
+
"filter.operator_label": "{field} Operator",
|
|
139
|
+
"filter.value_label": "{field} Wert",
|
|
140
|
+
"filter.value_min_label": "{field} Minimalwert",
|
|
141
|
+
"filter.value_max_label": "{field} Maximalwert",
|
|
132
142
|
"grc.compliance.dora.label": "DORA",
|
|
133
143
|
"grc.compliance.dora.tooltip": "DORA Critical - Betrifft kritische IKT-Funktionen",
|
|
134
144
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -167,7 +177,31 @@ var de = {
|
|
|
167
177
|
"grc.impact.scale.risk.4": "Hoch",
|
|
168
178
|
"grc.impact.scale.risk.5": "Kritisch",
|
|
169
179
|
"grc.impact.title_cia": "CIA-Auswirkung",
|
|
170
|
-
"grc.impact.title_ciaa": "CIAA-Auswirkung"
|
|
180
|
+
"grc.impact.title_ciaa": "CIAA-Auswirkung",
|
|
181
|
+
"filter-bar.add_filter": "Filter hinzufügen",
|
|
182
|
+
"filter-bar.apply": "Anwenden",
|
|
183
|
+
"filter-bar.cancel": "Abbrechen",
|
|
184
|
+
"filter-bar.clear_all": "Alle löschen",
|
|
185
|
+
"filter-bar.enter_value": "Wert eingeben...",
|
|
186
|
+
"filter-bar.no_results": "Keine Ergebnisse gefunden",
|
|
187
|
+
"filter-bar.operator.contains": "enthält",
|
|
188
|
+
"filter-bar.operator.ends_with": "endet mit",
|
|
189
|
+
"filter-bar.operator.equals": "ist",
|
|
190
|
+
"filter-bar.operator.gt": "größer als",
|
|
191
|
+
"filter-bar.operator.gte": "größer oder gleich",
|
|
192
|
+
"filter-bar.operator.is_empty": "ist leer",
|
|
193
|
+
"filter-bar.operator.is_not_empty": "ist nicht leer",
|
|
194
|
+
"filter-bar.operator.lt": "kleiner als",
|
|
195
|
+
"filter-bar.operator.lte": "kleiner oder gleich",
|
|
196
|
+
"filter-bar.operator.not_contains": "enthält nicht",
|
|
197
|
+
"filter-bar.operator.not_equals": "ist nicht",
|
|
198
|
+
"filter-bar.operator.starts_with": "beginnt mit",
|
|
199
|
+
"filter-bar.operator_label": "{field} Operator",
|
|
200
|
+
"filter-bar.remove_filter": "{field}-Filter entfernen",
|
|
201
|
+
"filter-bar.search_placeholder": "Suchen...",
|
|
202
|
+
"filter-bar.select_value": "Wert auswählen...",
|
|
203
|
+
"filter-bar.selected_count": "{count} ausgewählt",
|
|
204
|
+
"filter-bar.value_label": "{field} Wert"
|
|
171
205
|
};
|
|
172
206
|
|
|
173
207
|
export { de as default };
|
package/dist/lang/de.d.ts
CHANGED
|
@@ -129,6 +129,16 @@ var de = {
|
|
|
129
129
|
"filter.operator.not_equals": "ist nicht",
|
|
130
130
|
"filter.operator.starts_with": "beginnt mit",
|
|
131
131
|
"filter.select_value": "Wert auswählen...",
|
|
132
|
+
"filter.loading": "Lädt...",
|
|
133
|
+
"filter.boolean_true": "Ja",
|
|
134
|
+
"filter.boolean_false": "Nein",
|
|
135
|
+
"filter.range_min": "Min",
|
|
136
|
+
"filter.range_max": "Max",
|
|
137
|
+
"filter.remove_filter": "{field}-Filter entfernen",
|
|
138
|
+
"filter.operator_label": "{field} Operator",
|
|
139
|
+
"filter.value_label": "{field} Wert",
|
|
140
|
+
"filter.value_min_label": "{field} Minimalwert",
|
|
141
|
+
"filter.value_max_label": "{field} Maximalwert",
|
|
132
142
|
"grc.compliance.dora.label": "DORA",
|
|
133
143
|
"grc.compliance.dora.tooltip": "DORA Critical - Betrifft kritische IKT-Funktionen",
|
|
134
144
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -167,7 +177,31 @@ var de = {
|
|
|
167
177
|
"grc.impact.scale.risk.4": "Hoch",
|
|
168
178
|
"grc.impact.scale.risk.5": "Kritisch",
|
|
169
179
|
"grc.impact.title_cia": "CIA-Auswirkung",
|
|
170
|
-
"grc.impact.title_ciaa": "CIAA-Auswirkung"
|
|
180
|
+
"grc.impact.title_ciaa": "CIAA-Auswirkung",
|
|
181
|
+
"filter-bar.add_filter": "Filter hinzufügen",
|
|
182
|
+
"filter-bar.apply": "Anwenden",
|
|
183
|
+
"filter-bar.cancel": "Abbrechen",
|
|
184
|
+
"filter-bar.clear_all": "Alle löschen",
|
|
185
|
+
"filter-bar.enter_value": "Wert eingeben...",
|
|
186
|
+
"filter-bar.no_results": "Keine Ergebnisse gefunden",
|
|
187
|
+
"filter-bar.operator.contains": "enthält",
|
|
188
|
+
"filter-bar.operator.ends_with": "endet mit",
|
|
189
|
+
"filter-bar.operator.equals": "ist",
|
|
190
|
+
"filter-bar.operator.gt": "größer als",
|
|
191
|
+
"filter-bar.operator.gte": "größer oder gleich",
|
|
192
|
+
"filter-bar.operator.is_empty": "ist leer",
|
|
193
|
+
"filter-bar.operator.is_not_empty": "ist nicht leer",
|
|
194
|
+
"filter-bar.operator.lt": "kleiner als",
|
|
195
|
+
"filter-bar.operator.lte": "kleiner oder gleich",
|
|
196
|
+
"filter-bar.operator.not_contains": "enthält nicht",
|
|
197
|
+
"filter-bar.operator.not_equals": "ist nicht",
|
|
198
|
+
"filter-bar.operator.starts_with": "beginnt mit",
|
|
199
|
+
"filter-bar.operator_label": "{field} Operator",
|
|
200
|
+
"filter-bar.remove_filter": "{field}-Filter entfernen",
|
|
201
|
+
"filter-bar.search_placeholder": "Suchen...",
|
|
202
|
+
"filter-bar.select_value": "Wert auswählen...",
|
|
203
|
+
"filter-bar.selected_count": "{count} ausgewählt",
|
|
204
|
+
"filter-bar.value_label": "{field} Wert"
|
|
171
205
|
};
|
|
172
206
|
|
|
173
207
|
export { de as default };
|
package/dist/lang/de.js
CHANGED
|
@@ -132,6 +132,16 @@ var de_default = {
|
|
|
132
132
|
"filter.operator.not_equals": "ist nicht",
|
|
133
133
|
"filter.operator.starts_with": "beginnt mit",
|
|
134
134
|
"filter.select_value": "Wert ausw\xE4hlen...",
|
|
135
|
+
"filter.loading": "L\xE4dt...",
|
|
136
|
+
"filter.boolean_true": "Ja",
|
|
137
|
+
"filter.boolean_false": "Nein",
|
|
138
|
+
"filter.range_min": "Min",
|
|
139
|
+
"filter.range_max": "Max",
|
|
140
|
+
"filter.remove_filter": "{field}-Filter entfernen",
|
|
141
|
+
"filter.operator_label": "{field} Operator",
|
|
142
|
+
"filter.value_label": "{field} Wert",
|
|
143
|
+
"filter.value_min_label": "{field} Minimalwert",
|
|
144
|
+
"filter.value_max_label": "{field} Maximalwert",
|
|
135
145
|
"grc.compliance.dora.label": "DORA",
|
|
136
146
|
"grc.compliance.dora.tooltip": "DORA Critical - Betrifft kritische IKT-Funktionen",
|
|
137
147
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -170,5 +180,29 @@ var de_default = {
|
|
|
170
180
|
"grc.impact.scale.risk.4": "Hoch",
|
|
171
181
|
"grc.impact.scale.risk.5": "Kritisch",
|
|
172
182
|
"grc.impact.title_cia": "CIA-Auswirkung",
|
|
173
|
-
"grc.impact.title_ciaa": "CIAA-Auswirkung"
|
|
183
|
+
"grc.impact.title_ciaa": "CIAA-Auswirkung",
|
|
184
|
+
"filter-bar.add_filter": "Filter hinzuf\xFCgen",
|
|
185
|
+
"filter-bar.apply": "Anwenden",
|
|
186
|
+
"filter-bar.cancel": "Abbrechen",
|
|
187
|
+
"filter-bar.clear_all": "Alle l\xF6schen",
|
|
188
|
+
"filter-bar.enter_value": "Wert eingeben...",
|
|
189
|
+
"filter-bar.no_results": "Keine Ergebnisse gefunden",
|
|
190
|
+
"filter-bar.operator.contains": "enth\xE4lt",
|
|
191
|
+
"filter-bar.operator.ends_with": "endet mit",
|
|
192
|
+
"filter-bar.operator.equals": "ist",
|
|
193
|
+
"filter-bar.operator.gt": "gr\xF6\xDFer als",
|
|
194
|
+
"filter-bar.operator.gte": "gr\xF6\xDFer oder gleich",
|
|
195
|
+
"filter-bar.operator.is_empty": "ist leer",
|
|
196
|
+
"filter-bar.operator.is_not_empty": "ist nicht leer",
|
|
197
|
+
"filter-bar.operator.lt": "kleiner als",
|
|
198
|
+
"filter-bar.operator.lte": "kleiner oder gleich",
|
|
199
|
+
"filter-bar.operator.not_contains": "enth\xE4lt nicht",
|
|
200
|
+
"filter-bar.operator.not_equals": "ist nicht",
|
|
201
|
+
"filter-bar.operator.starts_with": "beginnt mit",
|
|
202
|
+
"filter-bar.operator_label": "{field} Operator",
|
|
203
|
+
"filter-bar.remove_filter": "{field}-Filter entfernen",
|
|
204
|
+
"filter-bar.search_placeholder": "Suchen...",
|
|
205
|
+
"filter-bar.select_value": "Wert ausw\xE4hlen...",
|
|
206
|
+
"filter-bar.selected_count": "{count} ausgew\xE4hlt",
|
|
207
|
+
"filter-bar.value_label": "{field} Wert"
|
|
174
208
|
};
|
package/dist/lang/de.mjs
CHANGED
package/dist/lang/en.d.mts
CHANGED
|
@@ -126,6 +126,16 @@ var en = {
|
|
|
126
126
|
"filter.operator.not_equals": "is not",
|
|
127
127
|
"filter.operator.starts_with": "starts with",
|
|
128
128
|
"filter.select_value": "Select value...",
|
|
129
|
+
"filter.loading": "Loading...",
|
|
130
|
+
"filter.boolean_true": "Yes",
|
|
131
|
+
"filter.boolean_false": "No",
|
|
132
|
+
"filter.range_min": "Min",
|
|
133
|
+
"filter.range_max": "Max",
|
|
134
|
+
"filter.remove_filter": "Remove {field} filter",
|
|
135
|
+
"filter.operator_label": "{field} operator",
|
|
136
|
+
"filter.value_label": "{field} value",
|
|
137
|
+
"filter.value_min_label": "{field} minimum value",
|
|
138
|
+
"filter.value_max_label": "{field} maximum value",
|
|
129
139
|
"grc.compliance.dora.label": "DORA",
|
|
130
140
|
"grc.compliance.dora.tooltip": "DORA Critical - Affects critical ICT functions",
|
|
131
141
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -166,7 +176,31 @@ var en = {
|
|
|
166
176
|
"grc.impact.title_cia": "CIA Impact",
|
|
167
177
|
"grc.impact.title_ciaa": "CIAA Impact",
|
|
168
178
|
"use_file_upload.file_exceeds_max": "File \"{name}\" exceeds the maximum size of {max}.",
|
|
169
|
-
"use_file_upload.file_not_accepted": "File \"{name}\" is not an accepted file type."
|
|
179
|
+
"use_file_upload.file_not_accepted": "File \"{name}\" is not an accepted file type.",
|
|
180
|
+
"filter-bar.add_filter": "Add Filter",
|
|
181
|
+
"filter-bar.apply": "Apply",
|
|
182
|
+
"filter-bar.cancel": "Cancel",
|
|
183
|
+
"filter-bar.clear_all": "Clear all",
|
|
184
|
+
"filter-bar.enter_value": "Enter value...",
|
|
185
|
+
"filter-bar.no_results": "No results found",
|
|
186
|
+
"filter-bar.operator.contains": "contains",
|
|
187
|
+
"filter-bar.operator.ends_with": "ends with",
|
|
188
|
+
"filter-bar.operator.equals": "is",
|
|
189
|
+
"filter-bar.operator.gt": "greater than",
|
|
190
|
+
"filter-bar.operator.gte": "greater or equal",
|
|
191
|
+
"filter-bar.operator.is_empty": "is empty",
|
|
192
|
+
"filter-bar.operator.is_not_empty": "is not empty",
|
|
193
|
+
"filter-bar.operator.lt": "less than",
|
|
194
|
+
"filter-bar.operator.lte": "less or equal",
|
|
195
|
+
"filter-bar.operator.not_contains": "does not contain",
|
|
196
|
+
"filter-bar.operator.not_equals": "is not",
|
|
197
|
+
"filter-bar.operator.starts_with": "starts with",
|
|
198
|
+
"filter-bar.operator_label": "{field} operator",
|
|
199
|
+
"filter-bar.remove_filter": "Remove {field} filter",
|
|
200
|
+
"filter-bar.search_placeholder": "Search...",
|
|
201
|
+
"filter-bar.select_value": "Select value...",
|
|
202
|
+
"filter-bar.selected_count": "{count} selected",
|
|
203
|
+
"filter-bar.value_label": "{field} value"
|
|
170
204
|
};
|
|
171
205
|
|
|
172
206
|
export { en as default };
|
package/dist/lang/en.d.ts
CHANGED
|
@@ -126,6 +126,16 @@ var en = {
|
|
|
126
126
|
"filter.operator.not_equals": "is not",
|
|
127
127
|
"filter.operator.starts_with": "starts with",
|
|
128
128
|
"filter.select_value": "Select value...",
|
|
129
|
+
"filter.loading": "Loading...",
|
|
130
|
+
"filter.boolean_true": "Yes",
|
|
131
|
+
"filter.boolean_false": "No",
|
|
132
|
+
"filter.range_min": "Min",
|
|
133
|
+
"filter.range_max": "Max",
|
|
134
|
+
"filter.remove_filter": "Remove {field} filter",
|
|
135
|
+
"filter.operator_label": "{field} operator",
|
|
136
|
+
"filter.value_label": "{field} value",
|
|
137
|
+
"filter.value_min_label": "{field} minimum value",
|
|
138
|
+
"filter.value_max_label": "{field} maximum value",
|
|
129
139
|
"grc.compliance.dora.label": "DORA",
|
|
130
140
|
"grc.compliance.dora.tooltip": "DORA Critical - Affects critical ICT functions",
|
|
131
141
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -166,7 +176,31 @@ var en = {
|
|
|
166
176
|
"grc.impact.title_cia": "CIA Impact",
|
|
167
177
|
"grc.impact.title_ciaa": "CIAA Impact",
|
|
168
178
|
"use_file_upload.file_exceeds_max": "File \"{name}\" exceeds the maximum size of {max}.",
|
|
169
|
-
"use_file_upload.file_not_accepted": "File \"{name}\" is not an accepted file type."
|
|
179
|
+
"use_file_upload.file_not_accepted": "File \"{name}\" is not an accepted file type.",
|
|
180
|
+
"filter-bar.add_filter": "Add Filter",
|
|
181
|
+
"filter-bar.apply": "Apply",
|
|
182
|
+
"filter-bar.cancel": "Cancel",
|
|
183
|
+
"filter-bar.clear_all": "Clear all",
|
|
184
|
+
"filter-bar.enter_value": "Enter value...",
|
|
185
|
+
"filter-bar.no_results": "No results found",
|
|
186
|
+
"filter-bar.operator.contains": "contains",
|
|
187
|
+
"filter-bar.operator.ends_with": "ends with",
|
|
188
|
+
"filter-bar.operator.equals": "is",
|
|
189
|
+
"filter-bar.operator.gt": "greater than",
|
|
190
|
+
"filter-bar.operator.gte": "greater or equal",
|
|
191
|
+
"filter-bar.operator.is_empty": "is empty",
|
|
192
|
+
"filter-bar.operator.is_not_empty": "is not empty",
|
|
193
|
+
"filter-bar.operator.lt": "less than",
|
|
194
|
+
"filter-bar.operator.lte": "less or equal",
|
|
195
|
+
"filter-bar.operator.not_contains": "does not contain",
|
|
196
|
+
"filter-bar.operator.not_equals": "is not",
|
|
197
|
+
"filter-bar.operator.starts_with": "starts with",
|
|
198
|
+
"filter-bar.operator_label": "{field} operator",
|
|
199
|
+
"filter-bar.remove_filter": "Remove {field} filter",
|
|
200
|
+
"filter-bar.search_placeholder": "Search...",
|
|
201
|
+
"filter-bar.select_value": "Select value...",
|
|
202
|
+
"filter-bar.selected_count": "{count} selected",
|
|
203
|
+
"filter-bar.value_label": "{field} value"
|
|
170
204
|
};
|
|
171
205
|
|
|
172
206
|
export { en as default };
|
package/dist/lang/en.js
CHANGED
|
@@ -129,6 +129,16 @@ var en_default = {
|
|
|
129
129
|
"filter.operator.not_equals": "is not",
|
|
130
130
|
"filter.operator.starts_with": "starts with",
|
|
131
131
|
"filter.select_value": "Select value...",
|
|
132
|
+
"filter.loading": "Loading...",
|
|
133
|
+
"filter.boolean_true": "Yes",
|
|
134
|
+
"filter.boolean_false": "No",
|
|
135
|
+
"filter.range_min": "Min",
|
|
136
|
+
"filter.range_max": "Max",
|
|
137
|
+
"filter.remove_filter": "Remove {field} filter",
|
|
138
|
+
"filter.operator_label": "{field} operator",
|
|
139
|
+
"filter.value_label": "{field} value",
|
|
140
|
+
"filter.value_min_label": "{field} minimum value",
|
|
141
|
+
"filter.value_max_label": "{field} maximum value",
|
|
132
142
|
"grc.compliance.dora.label": "DORA",
|
|
133
143
|
"grc.compliance.dora.tooltip": "DORA Critical - Affects critical ICT functions",
|
|
134
144
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -169,5 +179,29 @@ var en_default = {
|
|
|
169
179
|
"grc.impact.title_cia": "CIA Impact",
|
|
170
180
|
"grc.impact.title_ciaa": "CIAA Impact",
|
|
171
181
|
"use_file_upload.file_exceeds_max": 'File "{name}" exceeds the maximum size of {max}.',
|
|
172
|
-
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.'
|
|
182
|
+
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.',
|
|
183
|
+
"filter-bar.add_filter": "Add Filter",
|
|
184
|
+
"filter-bar.apply": "Apply",
|
|
185
|
+
"filter-bar.cancel": "Cancel",
|
|
186
|
+
"filter-bar.clear_all": "Clear all",
|
|
187
|
+
"filter-bar.enter_value": "Enter value...",
|
|
188
|
+
"filter-bar.no_results": "No results found",
|
|
189
|
+
"filter-bar.operator.contains": "contains",
|
|
190
|
+
"filter-bar.operator.ends_with": "ends with",
|
|
191
|
+
"filter-bar.operator.equals": "is",
|
|
192
|
+
"filter-bar.operator.gt": "greater than",
|
|
193
|
+
"filter-bar.operator.gte": "greater or equal",
|
|
194
|
+
"filter-bar.operator.is_empty": "is empty",
|
|
195
|
+
"filter-bar.operator.is_not_empty": "is not empty",
|
|
196
|
+
"filter-bar.operator.lt": "less than",
|
|
197
|
+
"filter-bar.operator.lte": "less or equal",
|
|
198
|
+
"filter-bar.operator.not_contains": "does not contain",
|
|
199
|
+
"filter-bar.operator.not_equals": "is not",
|
|
200
|
+
"filter-bar.operator.starts_with": "starts with",
|
|
201
|
+
"filter-bar.operator_label": "{field} operator",
|
|
202
|
+
"filter-bar.remove_filter": "Remove {field} filter",
|
|
203
|
+
"filter-bar.search_placeholder": "Search...",
|
|
204
|
+
"filter-bar.select_value": "Select value...",
|
|
205
|
+
"filter-bar.selected_count": "{count} selected",
|
|
206
|
+
"filter-bar.value_label": "{field} value"
|
|
173
207
|
};
|
package/dist/lang/en.mjs
CHANGED
package/dist/loaders/index.js
CHANGED
|
@@ -157,6 +157,16 @@ var de_default = {
|
|
|
157
157
|
"filter.operator.not_equals": "ist nicht",
|
|
158
158
|
"filter.operator.starts_with": "beginnt mit",
|
|
159
159
|
"filter.select_value": "Wert ausw\xE4hlen...",
|
|
160
|
+
"filter.loading": "L\xE4dt...",
|
|
161
|
+
"filter.boolean_true": "Ja",
|
|
162
|
+
"filter.boolean_false": "Nein",
|
|
163
|
+
"filter.range_min": "Min",
|
|
164
|
+
"filter.range_max": "Max",
|
|
165
|
+
"filter.remove_filter": "{field}-Filter entfernen",
|
|
166
|
+
"filter.operator_label": "{field} Operator",
|
|
167
|
+
"filter.value_label": "{field} Wert",
|
|
168
|
+
"filter.value_min_label": "{field} Minimalwert",
|
|
169
|
+
"filter.value_max_label": "{field} Maximalwert",
|
|
160
170
|
"grc.compliance.dora.label": "DORA",
|
|
161
171
|
"grc.compliance.dora.tooltip": "DORA Critical - Betrifft kritische IKT-Funktionen",
|
|
162
172
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -195,7 +205,31 @@ var de_default = {
|
|
|
195
205
|
"grc.impact.scale.risk.4": "Hoch",
|
|
196
206
|
"grc.impact.scale.risk.5": "Kritisch",
|
|
197
207
|
"grc.impact.title_cia": "CIA-Auswirkung",
|
|
198
|
-
"grc.impact.title_ciaa": "CIAA-Auswirkung"
|
|
208
|
+
"grc.impact.title_ciaa": "CIAA-Auswirkung",
|
|
209
|
+
"filter-bar.add_filter": "Filter hinzuf\xFCgen",
|
|
210
|
+
"filter-bar.apply": "Anwenden",
|
|
211
|
+
"filter-bar.cancel": "Abbrechen",
|
|
212
|
+
"filter-bar.clear_all": "Alle l\xF6schen",
|
|
213
|
+
"filter-bar.enter_value": "Wert eingeben...",
|
|
214
|
+
"filter-bar.no_results": "Keine Ergebnisse gefunden",
|
|
215
|
+
"filter-bar.operator.contains": "enth\xE4lt",
|
|
216
|
+
"filter-bar.operator.ends_with": "endet mit",
|
|
217
|
+
"filter-bar.operator.equals": "ist",
|
|
218
|
+
"filter-bar.operator.gt": "gr\xF6\xDFer als",
|
|
219
|
+
"filter-bar.operator.gte": "gr\xF6\xDFer oder gleich",
|
|
220
|
+
"filter-bar.operator.is_empty": "ist leer",
|
|
221
|
+
"filter-bar.operator.is_not_empty": "ist nicht leer",
|
|
222
|
+
"filter-bar.operator.lt": "kleiner als",
|
|
223
|
+
"filter-bar.operator.lte": "kleiner oder gleich",
|
|
224
|
+
"filter-bar.operator.not_contains": "enth\xE4lt nicht",
|
|
225
|
+
"filter-bar.operator.not_equals": "ist nicht",
|
|
226
|
+
"filter-bar.operator.starts_with": "beginnt mit",
|
|
227
|
+
"filter-bar.operator_label": "{field} Operator",
|
|
228
|
+
"filter-bar.remove_filter": "{field}-Filter entfernen",
|
|
229
|
+
"filter-bar.search_placeholder": "Suchen...",
|
|
230
|
+
"filter-bar.select_value": "Wert ausw\xE4hlen...",
|
|
231
|
+
"filter-bar.selected_count": "{count} ausgew\xE4hlt",
|
|
232
|
+
"filter-bar.value_label": "{field} Wert"
|
|
199
233
|
};
|
|
200
234
|
|
|
201
235
|
// src/lang/en.json
|
|
@@ -327,6 +361,16 @@ var en_default = {
|
|
|
327
361
|
"filter.operator.not_equals": "is not",
|
|
328
362
|
"filter.operator.starts_with": "starts with",
|
|
329
363
|
"filter.select_value": "Select value...",
|
|
364
|
+
"filter.loading": "Loading...",
|
|
365
|
+
"filter.boolean_true": "Yes",
|
|
366
|
+
"filter.boolean_false": "No",
|
|
367
|
+
"filter.range_min": "Min",
|
|
368
|
+
"filter.range_max": "Max",
|
|
369
|
+
"filter.remove_filter": "Remove {field} filter",
|
|
370
|
+
"filter.operator_label": "{field} operator",
|
|
371
|
+
"filter.value_label": "{field} value",
|
|
372
|
+
"filter.value_min_label": "{field} minimum value",
|
|
373
|
+
"filter.value_max_label": "{field} maximum value",
|
|
330
374
|
"grc.compliance.dora.label": "DORA",
|
|
331
375
|
"grc.compliance.dora.tooltip": "DORA Critical - Affects critical ICT functions",
|
|
332
376
|
"grc.compliance.nis2.label": "NIS2",
|
|
@@ -367,7 +411,31 @@ var en_default = {
|
|
|
367
411
|
"grc.impact.title_cia": "CIA Impact",
|
|
368
412
|
"grc.impact.title_ciaa": "CIAA Impact",
|
|
369
413
|
"use_file_upload.file_exceeds_max": 'File "{name}" exceeds the maximum size of {max}.',
|
|
370
|
-
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.'
|
|
414
|
+
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.',
|
|
415
|
+
"filter-bar.add_filter": "Add Filter",
|
|
416
|
+
"filter-bar.apply": "Apply",
|
|
417
|
+
"filter-bar.cancel": "Cancel",
|
|
418
|
+
"filter-bar.clear_all": "Clear all",
|
|
419
|
+
"filter-bar.enter_value": "Enter value...",
|
|
420
|
+
"filter-bar.no_results": "No results found",
|
|
421
|
+
"filter-bar.operator.contains": "contains",
|
|
422
|
+
"filter-bar.operator.ends_with": "ends with",
|
|
423
|
+
"filter-bar.operator.equals": "is",
|
|
424
|
+
"filter-bar.operator.gt": "greater than",
|
|
425
|
+
"filter-bar.operator.gte": "greater or equal",
|
|
426
|
+
"filter-bar.operator.is_empty": "is empty",
|
|
427
|
+
"filter-bar.operator.is_not_empty": "is not empty",
|
|
428
|
+
"filter-bar.operator.lt": "less than",
|
|
429
|
+
"filter-bar.operator.lte": "less or equal",
|
|
430
|
+
"filter-bar.operator.not_contains": "does not contain",
|
|
431
|
+
"filter-bar.operator.not_equals": "is not",
|
|
432
|
+
"filter-bar.operator.starts_with": "starts with",
|
|
433
|
+
"filter-bar.operator_label": "{field} operator",
|
|
434
|
+
"filter-bar.remove_filter": "Remove {field} filter",
|
|
435
|
+
"filter-bar.search_placeholder": "Search...",
|
|
436
|
+
"filter-bar.select_value": "Select value...",
|
|
437
|
+
"filter-bar.selected_count": "{count} selected",
|
|
438
|
+
"filter-bar.value_label": "{field} value"
|
|
371
439
|
};
|
|
372
440
|
|
|
373
441
|
// src/loaders/index.ts
|
package/dist/loaders/index.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
loadBuiltinMessages
|
|
4
|
-
} from "../chunk-
|
|
5
|
-
import "../chunk-
|
|
6
|
-
import "../chunk-
|
|
4
|
+
} from "../chunk-3SGU3FSG.mjs";
|
|
5
|
+
import "../chunk-MPHRITEI.mjs";
|
|
6
|
+
import "../chunk-73LRONJ6.mjs";
|
|
7
7
|
export {
|
|
8
8
|
loadBuiltinMessages
|
|
9
9
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kopexa/i18n",
|
|
3
|
-
"version": "17.
|
|
3
|
+
"version": "17.6.0",
|
|
4
4
|
"description": "i18n provider for kopexa apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"i18n"
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
"react": ">=19.0.0-rc.0",
|
|
29
29
|
"react-dom": ">=19.0.0-rc.0",
|
|
30
30
|
"motion": ">=12.23.6",
|
|
31
|
-
"@kopexa/theme": "17.
|
|
31
|
+
"@kopexa/theme": "17.20.0"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"react-intl": "^7.1.14",
|
|
35
|
-
"@kopexa/react-utils": "17.0.
|
|
36
|
-
"@kopexa/shared-utils": "17.0.
|
|
35
|
+
"@kopexa/react-utils": "17.0.36",
|
|
36
|
+
"@kopexa/shared-utils": "17.0.36"
|
|
37
37
|
},
|
|
38
38
|
"clean-package": "../../../clean-package.config.json",
|
|
39
39
|
"module": "dist/index.mjs",
|