@kopexa/i18n 17.8.7 → 17.9.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-E52HNK4E.mjs → chunk-35YYNHY7.mjs} +1 -1
- package/dist/{chunk-2IWMR3YG.mjs → chunk-ATBVTBSC.mjs} +4 -0
- package/dist/{chunk-JVVEC6UZ.mjs → chunk-EOO6QQTZ.mjs} +1 -1
- package/dist/{chunk-Y3UYTT3V.mjs → chunk-KCSPBCHV.mjs} +5 -1
- package/dist/{chunk-ZEVJC7JD.mjs → chunk-N4234BFC.mjs} +2 -2
- package/dist/hooks/use-built-in-messages.js +9 -1
- package/dist/hooks/use-built-in-messages.mjs +4 -4
- package/dist/i18n.js +9 -1
- package/dist/i18n.mjs +5 -5
- package/dist/index.js +9 -1
- package/dist/index.mjs +5 -5
- package/dist/lang/de.d.mts +5 -1
- package/dist/lang/de.d.ts +5 -1
- package/dist/lang/de.js +5 -1
- package/dist/lang/de.mjs +1 -1
- package/dist/lang/en.d.mts +4 -0
- package/dist/lang/en.d.ts +4 -0
- package/dist/lang/en.js +4 -0
- package/dist/lang/en.mjs +1 -1
- package/dist/loaders/index.js +9 -1
- package/dist/loaders/index.mjs +3 -3
- package/package.json +4 -4
|
@@ -221,6 +221,10 @@ var en_default = {
|
|
|
221
221
|
"grc.risk.likelihood": "Likelihood",
|
|
222
222
|
"grc.risk.not_rated_hint": "Risk has not been assessed yet",
|
|
223
223
|
"grc.risk.rating": "Rating",
|
|
224
|
+
"pdf_viewer.error_hint": "Please try again.",
|
|
225
|
+
"pdf_viewer.error_title": "Something went wrong while loading the document.",
|
|
226
|
+
"pdf_viewer.loading": "Loading document\u2026",
|
|
227
|
+
"pdf_viewer.page_label": "Page {page} of {total}",
|
|
224
228
|
"use_file_upload.file_exceeds_max": 'File "{name}" exceeds the maximum size of {max}.',
|
|
225
229
|
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.'
|
|
226
230
|
};
|
|
@@ -241,7 +241,11 @@ var de_default = {
|
|
|
241
241
|
"filter-bar.search_placeholder": "Suchen...",
|
|
242
242
|
"filter-bar.select_value": "Wert ausw\xE4hlen...",
|
|
243
243
|
"filter-bar.selected_count": "{count} ausgew\xE4hlt",
|
|
244
|
-
"filter-bar.value_label": "{field} Wert"
|
|
244
|
+
"filter-bar.value_label": "{field} Wert",
|
|
245
|
+
"pdf_viewer.error_hint": "Bitte versuche es erneut.",
|
|
246
|
+
"pdf_viewer.error_title": "Beim Laden des Dokuments ist ein Fehler aufgetreten.",
|
|
247
|
+
"pdf_viewer.loading": "Dokument wird geladen\u2026",
|
|
248
|
+
"pdf_viewer.page_label": "Seite {page} von {total}"
|
|
245
249
|
};
|
|
246
250
|
|
|
247
251
|
export {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
de_default
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-KCSPBCHV.mjs";
|
|
5
5
|
import {
|
|
6
6
|
en_default
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-ATBVTBSC.mjs";
|
|
8
8
|
|
|
9
9
|
// src/loaders/index.ts
|
|
10
10
|
var CACHE = /* @__PURE__ */ new Map();
|
|
@@ -268,7 +268,11 @@ var de_default = {
|
|
|
268
268
|
"filter-bar.search_placeholder": "Suchen...",
|
|
269
269
|
"filter-bar.select_value": "Wert ausw\xE4hlen...",
|
|
270
270
|
"filter-bar.selected_count": "{count} ausgew\xE4hlt",
|
|
271
|
-
"filter-bar.value_label": "{field} Wert"
|
|
271
|
+
"filter-bar.value_label": "{field} Wert",
|
|
272
|
+
"pdf_viewer.error_hint": "Bitte versuche es erneut.",
|
|
273
|
+
"pdf_viewer.error_title": "Beim Laden des Dokuments ist ein Fehler aufgetreten.",
|
|
274
|
+
"pdf_viewer.loading": "Dokument wird geladen\u2026",
|
|
275
|
+
"pdf_viewer.page_label": "Seite {page} von {total}"
|
|
272
276
|
};
|
|
273
277
|
|
|
274
278
|
// src/lang/en.json
|
|
@@ -492,6 +496,10 @@ var en_default = {
|
|
|
492
496
|
"grc.risk.likelihood": "Likelihood",
|
|
493
497
|
"grc.risk.not_rated_hint": "Risk has not been assessed yet",
|
|
494
498
|
"grc.risk.rating": "Rating",
|
|
499
|
+
"pdf_viewer.error_hint": "Please try again.",
|
|
500
|
+
"pdf_viewer.error_title": "Something went wrong while loading the document.",
|
|
501
|
+
"pdf_viewer.loading": "Loading document\u2026",
|
|
502
|
+
"pdf_viewer.page_label": "Page {page} of {total}",
|
|
495
503
|
"use_file_upload.file_exceeds_max": 'File "{name}" exceeds the maximum size of {max}.',
|
|
496
504
|
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.'
|
|
497
505
|
};
|
|
@@ -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-35YYNHY7.mjs";
|
|
6
|
+
import "../chunk-N4234BFC.mjs";
|
|
7
|
+
import "../chunk-KCSPBCHV.mjs";
|
|
8
|
+
import "../chunk-ATBVTBSC.mjs";
|
|
9
9
|
export {
|
|
10
10
|
useBuiltInMessages
|
|
11
11
|
};
|
package/dist/i18n.js
CHANGED
|
@@ -272,7 +272,11 @@ var de_default = {
|
|
|
272
272
|
"filter-bar.search_placeholder": "Suchen...",
|
|
273
273
|
"filter-bar.select_value": "Wert ausw\xE4hlen...",
|
|
274
274
|
"filter-bar.selected_count": "{count} ausgew\xE4hlt",
|
|
275
|
-
"filter-bar.value_label": "{field} Wert"
|
|
275
|
+
"filter-bar.value_label": "{field} Wert",
|
|
276
|
+
"pdf_viewer.error_hint": "Bitte versuche es erneut.",
|
|
277
|
+
"pdf_viewer.error_title": "Beim Laden des Dokuments ist ein Fehler aufgetreten.",
|
|
278
|
+
"pdf_viewer.loading": "Dokument wird geladen\u2026",
|
|
279
|
+
"pdf_viewer.page_label": "Seite {page} von {total}"
|
|
276
280
|
};
|
|
277
281
|
|
|
278
282
|
// src/lang/en.json
|
|
@@ -496,6 +500,10 @@ var en_default = {
|
|
|
496
500
|
"grc.risk.likelihood": "Likelihood",
|
|
497
501
|
"grc.risk.not_rated_hint": "Risk has not been assessed yet",
|
|
498
502
|
"grc.risk.rating": "Rating",
|
|
503
|
+
"pdf_viewer.error_hint": "Please try again.",
|
|
504
|
+
"pdf_viewer.error_title": "Something went wrong while loading the document.",
|
|
505
|
+
"pdf_viewer.loading": "Loading document\u2026",
|
|
506
|
+
"pdf_viewer.page_label": "Page {page} of {total}",
|
|
499
507
|
"use_file_upload.file_exceeds_max": 'File "{name}" exceeds the maximum size of {max}.',
|
|
500
508
|
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.'
|
|
501
509
|
};
|
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-EOO6QQTZ.mjs";
|
|
6
|
+
import "./chunk-35YYNHY7.mjs";
|
|
7
|
+
import "./chunk-N4234BFC.mjs";
|
|
8
|
+
import "./chunk-KCSPBCHV.mjs";
|
|
9
|
+
import "./chunk-ATBVTBSC.mjs";
|
|
10
10
|
import "./chunk-TYEI7NWI.mjs";
|
|
11
11
|
import "./chunk-DWCWMJZD.mjs";
|
|
12
12
|
import "./chunk-DRJHB4YN.mjs";
|
package/dist/index.js
CHANGED
|
@@ -296,7 +296,11 @@ var de_default = {
|
|
|
296
296
|
"filter-bar.search_placeholder": "Suchen...",
|
|
297
297
|
"filter-bar.select_value": "Wert ausw\xE4hlen...",
|
|
298
298
|
"filter-bar.selected_count": "{count} ausgew\xE4hlt",
|
|
299
|
-
"filter-bar.value_label": "{field} Wert"
|
|
299
|
+
"filter-bar.value_label": "{field} Wert",
|
|
300
|
+
"pdf_viewer.error_hint": "Bitte versuche es erneut.",
|
|
301
|
+
"pdf_viewer.error_title": "Beim Laden des Dokuments ist ein Fehler aufgetreten.",
|
|
302
|
+
"pdf_viewer.loading": "Dokument wird geladen\u2026",
|
|
303
|
+
"pdf_viewer.page_label": "Seite {page} von {total}"
|
|
300
304
|
};
|
|
301
305
|
|
|
302
306
|
// src/lang/en.json
|
|
@@ -520,6 +524,10 @@ var en_default = {
|
|
|
520
524
|
"grc.risk.likelihood": "Likelihood",
|
|
521
525
|
"grc.risk.not_rated_hint": "Risk has not been assessed yet",
|
|
522
526
|
"grc.risk.rating": "Rating",
|
|
527
|
+
"pdf_viewer.error_hint": "Please try again.",
|
|
528
|
+
"pdf_viewer.error_title": "Something went wrong while loading the document.",
|
|
529
|
+
"pdf_viewer.loading": "Loading document\u2026",
|
|
530
|
+
"pdf_viewer.page_label": "Page {page} of {total}",
|
|
523
531
|
"use_file_upload.file_exceeds_max": 'File "{name}" exceeds the maximum size of {max}.',
|
|
524
532
|
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.'
|
|
525
533
|
};
|
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-EOO6QQTZ.mjs";
|
|
5
|
+
import "./chunk-35YYNHY7.mjs";
|
|
6
|
+
import "./chunk-N4234BFC.mjs";
|
|
7
|
+
import "./chunk-KCSPBCHV.mjs";
|
|
8
|
+
import "./chunk-ATBVTBSC.mjs";
|
|
9
9
|
import "./chunk-TYEI7NWI.mjs";
|
|
10
10
|
import {
|
|
11
11
|
useSafeIntl
|
package/dist/lang/de.d.mts
CHANGED
|
@@ -238,7 +238,11 @@ var de = {
|
|
|
238
238
|
"filter-bar.search_placeholder": "Suchen...",
|
|
239
239
|
"filter-bar.select_value": "Wert auswählen...",
|
|
240
240
|
"filter-bar.selected_count": "{count} ausgewählt",
|
|
241
|
-
"filter-bar.value_label": "{field} Wert"
|
|
241
|
+
"filter-bar.value_label": "{field} Wert",
|
|
242
|
+
"pdf_viewer.error_hint": "Bitte versuche es erneut.",
|
|
243
|
+
"pdf_viewer.error_title": "Beim Laden des Dokuments ist ein Fehler aufgetreten.",
|
|
244
|
+
"pdf_viewer.loading": "Dokument wird geladen…",
|
|
245
|
+
"pdf_viewer.page_label": "Seite {page} von {total}"
|
|
242
246
|
};
|
|
243
247
|
|
|
244
248
|
export { de as default };
|
package/dist/lang/de.d.ts
CHANGED
|
@@ -238,7 +238,11 @@ var de = {
|
|
|
238
238
|
"filter-bar.search_placeholder": "Suchen...",
|
|
239
239
|
"filter-bar.select_value": "Wert auswählen...",
|
|
240
240
|
"filter-bar.selected_count": "{count} ausgewählt",
|
|
241
|
-
"filter-bar.value_label": "{field} Wert"
|
|
241
|
+
"filter-bar.value_label": "{field} Wert",
|
|
242
|
+
"pdf_viewer.error_hint": "Bitte versuche es erneut.",
|
|
243
|
+
"pdf_viewer.error_title": "Beim Laden des Dokuments ist ein Fehler aufgetreten.",
|
|
244
|
+
"pdf_viewer.loading": "Dokument wird geladen…",
|
|
245
|
+
"pdf_viewer.page_label": "Seite {page} von {total}"
|
|
242
246
|
};
|
|
243
247
|
|
|
244
248
|
export { de as default };
|
package/dist/lang/de.js
CHANGED
|
@@ -241,5 +241,9 @@ var de_default = {
|
|
|
241
241
|
"filter-bar.search_placeholder": "Suchen...",
|
|
242
242
|
"filter-bar.select_value": "Wert ausw\xE4hlen...",
|
|
243
243
|
"filter-bar.selected_count": "{count} ausgew\xE4hlt",
|
|
244
|
-
"filter-bar.value_label": "{field} Wert"
|
|
244
|
+
"filter-bar.value_label": "{field} Wert",
|
|
245
|
+
"pdf_viewer.error_hint": "Bitte versuche es erneut.",
|
|
246
|
+
"pdf_viewer.error_title": "Beim Laden des Dokuments ist ein Fehler aufgetreten.",
|
|
247
|
+
"pdf_viewer.loading": "Dokument wird geladen\u2026",
|
|
248
|
+
"pdf_viewer.page_label": "Seite {page} von {total}"
|
|
245
249
|
};
|
package/dist/lang/de.mjs
CHANGED
package/dist/lang/en.d.mts
CHANGED
|
@@ -218,6 +218,10 @@ var en = {
|
|
|
218
218
|
"grc.risk.likelihood": "Likelihood",
|
|
219
219
|
"grc.risk.not_rated_hint": "Risk has not been assessed yet",
|
|
220
220
|
"grc.risk.rating": "Rating",
|
|
221
|
+
"pdf_viewer.error_hint": "Please try again.",
|
|
222
|
+
"pdf_viewer.error_title": "Something went wrong while loading the document.",
|
|
223
|
+
"pdf_viewer.loading": "Loading document…",
|
|
224
|
+
"pdf_viewer.page_label": "Page {page} of {total}",
|
|
221
225
|
"use_file_upload.file_exceeds_max": "File \"{name}\" exceeds the maximum size of {max}.",
|
|
222
226
|
"use_file_upload.file_not_accepted": "File \"{name}\" is not an accepted file type."
|
|
223
227
|
};
|
package/dist/lang/en.d.ts
CHANGED
|
@@ -218,6 +218,10 @@ var en = {
|
|
|
218
218
|
"grc.risk.likelihood": "Likelihood",
|
|
219
219
|
"grc.risk.not_rated_hint": "Risk has not been assessed yet",
|
|
220
220
|
"grc.risk.rating": "Rating",
|
|
221
|
+
"pdf_viewer.error_hint": "Please try again.",
|
|
222
|
+
"pdf_viewer.error_title": "Something went wrong while loading the document.",
|
|
223
|
+
"pdf_viewer.loading": "Loading document…",
|
|
224
|
+
"pdf_viewer.page_label": "Page {page} of {total}",
|
|
221
225
|
"use_file_upload.file_exceeds_max": "File \"{name}\" exceeds the maximum size of {max}.",
|
|
222
226
|
"use_file_upload.file_not_accepted": "File \"{name}\" is not an accepted file type."
|
|
223
227
|
};
|
package/dist/lang/en.js
CHANGED
|
@@ -221,6 +221,10 @@ var en_default = {
|
|
|
221
221
|
"grc.risk.likelihood": "Likelihood",
|
|
222
222
|
"grc.risk.not_rated_hint": "Risk has not been assessed yet",
|
|
223
223
|
"grc.risk.rating": "Rating",
|
|
224
|
+
"pdf_viewer.error_hint": "Please try again.",
|
|
225
|
+
"pdf_viewer.error_title": "Something went wrong while loading the document.",
|
|
226
|
+
"pdf_viewer.loading": "Loading document\u2026",
|
|
227
|
+
"pdf_viewer.page_label": "Page {page} of {total}",
|
|
224
228
|
"use_file_upload.file_exceeds_max": 'File "{name}" exceeds the maximum size of {max}.',
|
|
225
229
|
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.'
|
|
226
230
|
};
|
package/dist/lang/en.mjs
CHANGED
package/dist/loaders/index.js
CHANGED
|
@@ -266,7 +266,11 @@ var de_default = {
|
|
|
266
266
|
"filter-bar.search_placeholder": "Suchen...",
|
|
267
267
|
"filter-bar.select_value": "Wert ausw\xE4hlen...",
|
|
268
268
|
"filter-bar.selected_count": "{count} ausgew\xE4hlt",
|
|
269
|
-
"filter-bar.value_label": "{field} Wert"
|
|
269
|
+
"filter-bar.value_label": "{field} Wert",
|
|
270
|
+
"pdf_viewer.error_hint": "Bitte versuche es erneut.",
|
|
271
|
+
"pdf_viewer.error_title": "Beim Laden des Dokuments ist ein Fehler aufgetreten.",
|
|
272
|
+
"pdf_viewer.loading": "Dokument wird geladen\u2026",
|
|
273
|
+
"pdf_viewer.page_label": "Seite {page} von {total}"
|
|
270
274
|
};
|
|
271
275
|
|
|
272
276
|
// src/lang/en.json
|
|
@@ -490,6 +494,10 @@ var en_default = {
|
|
|
490
494
|
"grc.risk.likelihood": "Likelihood",
|
|
491
495
|
"grc.risk.not_rated_hint": "Risk has not been assessed yet",
|
|
492
496
|
"grc.risk.rating": "Rating",
|
|
497
|
+
"pdf_viewer.error_hint": "Please try again.",
|
|
498
|
+
"pdf_viewer.error_title": "Something went wrong while loading the document.",
|
|
499
|
+
"pdf_viewer.loading": "Loading document\u2026",
|
|
500
|
+
"pdf_viewer.page_label": "Page {page} of {total}",
|
|
493
501
|
"use_file_upload.file_exceeds_max": 'File "{name}" exceeds the maximum size of {max}.',
|
|
494
502
|
"use_file_upload.file_not_accepted": 'File "{name}" is not an accepted file type.'
|
|
495
503
|
};
|
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-N4234BFC.mjs";
|
|
5
|
+
import "../chunk-KCSPBCHV.mjs";
|
|
6
|
+
import "../chunk-ATBVTBSC.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.9.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.24.
|
|
31
|
+
"@kopexa/theme": "17.24.6"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"react-intl": "^7.1.14",
|
|
35
|
-
"@kopexa/shared-utils": "17.0.
|
|
36
|
-
"@kopexa/react-utils": "17.0
|
|
35
|
+
"@kopexa/shared-utils": "17.0.58",
|
|
36
|
+
"@kopexa/react-utils": "17.1.0"
|
|
37
37
|
},
|
|
38
38
|
"clean-package": "../../../clean-package.config.json",
|
|
39
39
|
"module": "dist/index.mjs",
|