@kopexa/i18n 17.10.3 → 17.11.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-4YZVLMSD.mjs → chunk-EBMYLIXV.mjs} +3 -0
- package/dist/{chunk-TL42QJGW.mjs → chunk-HAFBH7UF.mjs} +3 -0
- package/dist/{chunk-BDMF2P3B.mjs → chunk-J4L6PVXO.mjs} +1 -1
- package/dist/{chunk-KUIMUFXV.mjs → chunk-OZ26V4JE.mjs} +2 -2
- package/dist/{chunk-YNVLZSJJ.mjs → chunk-ZS7WRTSA.mjs} +1 -1
- package/dist/hooks/use-built-in-messages.js +6 -0
- package/dist/hooks/use-built-in-messages.mjs +4 -4
- package/dist/i18n.js +6 -0
- package/dist/i18n.mjs +5 -5
- package/dist/index.js +6 -0
- package/dist/index.mjs +5 -5
- package/dist/lang/de.d.mts +3 -0
- package/dist/lang/de.d.ts +3 -0
- package/dist/lang/de.js +3 -0
- package/dist/lang/de.mjs +1 -1
- package/dist/lang/en.d.mts +3 -0
- package/dist/lang/en.d.ts +3 -0
- package/dist/lang/en.js +3 -0
- package/dist/lang/en.mjs +1 -1
- package/dist/loaders/index.js +6 -0
- package/dist/loaders/index.mjs +3 -3
- package/package.json +4 -4
|
@@ -83,6 +83,9 @@ var en_default = {
|
|
|
83
83
|
"editor.table.sort_row_asc": "Sort row A-Z",
|
|
84
84
|
"editor.table.sort_row_desc": "Sort row Z-A",
|
|
85
85
|
"editor.table.split_cell": "Split cell",
|
|
86
|
+
"editable-text.cancel": "Cancel",
|
|
87
|
+
"editable-text.edit": "Edit",
|
|
88
|
+
"editable-text.save": "Save",
|
|
86
89
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { up to {size}}}",
|
|
87
90
|
"file_upload.apply_crop": "Apply",
|
|
88
91
|
"file_upload.avatar_uploaded": "Avatar uploaded",
|
|
@@ -139,6 +139,9 @@ var de_default = {
|
|
|
139
139
|
"editor.toc.style_default": "Standard",
|
|
140
140
|
"editor.toc.style_flat": "Flach",
|
|
141
141
|
"editor.toc.title": "Inhaltsverzeichnis",
|
|
142
|
+
"editable-text.cancel": "Abbrechen",
|
|
143
|
+
"editable-text.edit": "Bearbeiten",
|
|
144
|
+
"editable-text.save": "Speichern",
|
|
142
145
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { bis {size}}}",
|
|
143
146
|
"file_upload.avatar_uploaded": "Avatar hochgeladen",
|
|
144
147
|
"file_upload.change_avatar": "Avatar \xE4ndern",
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
import {
|
|
3
3
|
de_default
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-HAFBH7UF.mjs";
|
|
5
5
|
import {
|
|
6
6
|
en_default
|
|
7
|
-
} from "./chunk-
|
|
7
|
+
} from "./chunk-EBMYLIXV.mjs";
|
|
8
8
|
|
|
9
9
|
// src/loaders/index.ts
|
|
10
10
|
var CACHE = /* @__PURE__ */ new Map();
|
|
@@ -166,6 +166,9 @@ var de_default = {
|
|
|
166
166
|
"editor.toc.style_default": "Standard",
|
|
167
167
|
"editor.toc.style_flat": "Flach",
|
|
168
168
|
"editor.toc.title": "Inhaltsverzeichnis",
|
|
169
|
+
"editable-text.cancel": "Abbrechen",
|
|
170
|
+
"editable-text.edit": "Bearbeiten",
|
|
171
|
+
"editable-text.save": "Speichern",
|
|
169
172
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { bis {size}}}",
|
|
170
173
|
"file_upload.avatar_uploaded": "Avatar hochgeladen",
|
|
171
174
|
"file_upload.change_avatar": "Avatar \xE4ndern",
|
|
@@ -437,6 +440,9 @@ var en_default = {
|
|
|
437
440
|
"editor.table.sort_row_asc": "Sort row A-Z",
|
|
438
441
|
"editor.table.sort_row_desc": "Sort row Z-A",
|
|
439
442
|
"editor.table.split_cell": "Split cell",
|
|
443
|
+
"editable-text.cancel": "Cancel",
|
|
444
|
+
"editable-text.edit": "Edit",
|
|
445
|
+
"editable-text.save": "Save",
|
|
440
446
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { up to {size}}}",
|
|
441
447
|
"file_upload.apply_crop": "Apply",
|
|
442
448
|
"file_upload.avatar_uploaded": "Avatar uploaded",
|
|
@@ -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-J4L6PVXO.mjs";
|
|
6
|
+
import "../chunk-OZ26V4JE.mjs";
|
|
7
|
+
import "../chunk-HAFBH7UF.mjs";
|
|
8
|
+
import "../chunk-EBMYLIXV.mjs";
|
|
9
9
|
export {
|
|
10
10
|
useBuiltInMessages
|
|
11
11
|
};
|
package/dist/i18n.js
CHANGED
|
@@ -170,6 +170,9 @@ var de_default = {
|
|
|
170
170
|
"editor.toc.style_default": "Standard",
|
|
171
171
|
"editor.toc.style_flat": "Flach",
|
|
172
172
|
"editor.toc.title": "Inhaltsverzeichnis",
|
|
173
|
+
"editable-text.cancel": "Abbrechen",
|
|
174
|
+
"editable-text.edit": "Bearbeiten",
|
|
175
|
+
"editable-text.save": "Speichern",
|
|
173
176
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { bis {size}}}",
|
|
174
177
|
"file_upload.avatar_uploaded": "Avatar hochgeladen",
|
|
175
178
|
"file_upload.change_avatar": "Avatar \xE4ndern",
|
|
@@ -441,6 +444,9 @@ var en_default = {
|
|
|
441
444
|
"editor.table.sort_row_asc": "Sort row A-Z",
|
|
442
445
|
"editor.table.sort_row_desc": "Sort row Z-A",
|
|
443
446
|
"editor.table.split_cell": "Split cell",
|
|
447
|
+
"editable-text.cancel": "Cancel",
|
|
448
|
+
"editable-text.edit": "Edit",
|
|
449
|
+
"editable-text.save": "Save",
|
|
444
450
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { up to {size}}}",
|
|
445
451
|
"file_upload.apply_crop": "Apply",
|
|
446
452
|
"file_upload.avatar_uploaded": "Avatar uploaded",
|
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-ZS7WRTSA.mjs";
|
|
6
|
+
import "./chunk-J4L6PVXO.mjs";
|
|
7
|
+
import "./chunk-OZ26V4JE.mjs";
|
|
8
|
+
import "./chunk-HAFBH7UF.mjs";
|
|
9
|
+
import "./chunk-EBMYLIXV.mjs";
|
|
10
10
|
import "./chunk-TYEI7NWI.mjs";
|
|
11
11
|
import "./chunk-DWCWMJZD.mjs";
|
|
12
12
|
import "./chunk-DRJHB4YN.mjs";
|
package/dist/index.js
CHANGED
|
@@ -194,6 +194,9 @@ var de_default = {
|
|
|
194
194
|
"editor.toc.style_default": "Standard",
|
|
195
195
|
"editor.toc.style_flat": "Flach",
|
|
196
196
|
"editor.toc.title": "Inhaltsverzeichnis",
|
|
197
|
+
"editable-text.cancel": "Abbrechen",
|
|
198
|
+
"editable-text.edit": "Bearbeiten",
|
|
199
|
+
"editable-text.save": "Speichern",
|
|
197
200
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { bis {size}}}",
|
|
198
201
|
"file_upload.avatar_uploaded": "Avatar hochgeladen",
|
|
199
202
|
"file_upload.change_avatar": "Avatar \xE4ndern",
|
|
@@ -465,6 +468,9 @@ var en_default = {
|
|
|
465
468
|
"editor.table.sort_row_asc": "Sort row A-Z",
|
|
466
469
|
"editor.table.sort_row_desc": "Sort row Z-A",
|
|
467
470
|
"editor.table.split_cell": "Split cell",
|
|
471
|
+
"editable-text.cancel": "Cancel",
|
|
472
|
+
"editable-text.edit": "Edit",
|
|
473
|
+
"editable-text.save": "Save",
|
|
468
474
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { up to {size}}}",
|
|
469
475
|
"file_upload.apply_crop": "Apply",
|
|
470
476
|
"file_upload.avatar_uploaded": "Avatar uploaded",
|
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-ZS7WRTSA.mjs";
|
|
5
|
+
import "./chunk-J4L6PVXO.mjs";
|
|
6
|
+
import "./chunk-OZ26V4JE.mjs";
|
|
7
|
+
import "./chunk-HAFBH7UF.mjs";
|
|
8
|
+
import "./chunk-EBMYLIXV.mjs";
|
|
9
9
|
import "./chunk-TYEI7NWI.mjs";
|
|
10
10
|
import {
|
|
11
11
|
useSafeIntl
|
package/dist/lang/de.d.mts
CHANGED
|
@@ -136,6 +136,9 @@ var de = {
|
|
|
136
136
|
"editor.toc.style_default": "Standard",
|
|
137
137
|
"editor.toc.style_flat": "Flach",
|
|
138
138
|
"editor.toc.title": "Inhaltsverzeichnis",
|
|
139
|
+
"editable-text.cancel": "Abbrechen",
|
|
140
|
+
"editable-text.edit": "Bearbeiten",
|
|
141
|
+
"editable-text.save": "Speichern",
|
|
139
142
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { bis {size}}}",
|
|
140
143
|
"file_upload.avatar_uploaded": "Avatar hochgeladen",
|
|
141
144
|
"file_upload.change_avatar": "Avatar ändern",
|
package/dist/lang/de.d.ts
CHANGED
|
@@ -136,6 +136,9 @@ var de = {
|
|
|
136
136
|
"editor.toc.style_default": "Standard",
|
|
137
137
|
"editor.toc.style_flat": "Flach",
|
|
138
138
|
"editor.toc.title": "Inhaltsverzeichnis",
|
|
139
|
+
"editable-text.cancel": "Abbrechen",
|
|
140
|
+
"editable-text.edit": "Bearbeiten",
|
|
141
|
+
"editable-text.save": "Speichern",
|
|
139
142
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { bis {size}}}",
|
|
140
143
|
"file_upload.avatar_uploaded": "Avatar hochgeladen",
|
|
141
144
|
"file_upload.change_avatar": "Avatar ändern",
|
package/dist/lang/de.js
CHANGED
|
@@ -139,6 +139,9 @@ var de_default = {
|
|
|
139
139
|
"editor.toc.style_default": "Standard",
|
|
140
140
|
"editor.toc.style_flat": "Flach",
|
|
141
141
|
"editor.toc.title": "Inhaltsverzeichnis",
|
|
142
|
+
"editable-text.cancel": "Abbrechen",
|
|
143
|
+
"editable-text.edit": "Bearbeiten",
|
|
144
|
+
"editable-text.save": "Speichern",
|
|
142
145
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { bis {size}}}",
|
|
143
146
|
"file_upload.avatar_uploaded": "Avatar hochgeladen",
|
|
144
147
|
"file_upload.change_avatar": "Avatar \xE4ndern",
|
package/dist/lang/de.mjs
CHANGED
package/dist/lang/en.d.mts
CHANGED
|
@@ -80,6 +80,9 @@ var en = {
|
|
|
80
80
|
"editor.table.sort_row_asc": "Sort row A-Z",
|
|
81
81
|
"editor.table.sort_row_desc": "Sort row Z-A",
|
|
82
82
|
"editor.table.split_cell": "Split cell",
|
|
83
|
+
"editable-text.cancel": "Cancel",
|
|
84
|
+
"editable-text.edit": "Edit",
|
|
85
|
+
"editable-text.save": "Save",
|
|
83
86
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { up to {size}}}",
|
|
84
87
|
"file_upload.apply_crop": "Apply",
|
|
85
88
|
"file_upload.avatar_uploaded": "Avatar uploaded",
|
package/dist/lang/en.d.ts
CHANGED
|
@@ -80,6 +80,9 @@ var en = {
|
|
|
80
80
|
"editor.table.sort_row_asc": "Sort row A-Z",
|
|
81
81
|
"editor.table.sort_row_desc": "Sort row Z-A",
|
|
82
82
|
"editor.table.split_cell": "Split cell",
|
|
83
|
+
"editable-text.cancel": "Cancel",
|
|
84
|
+
"editable-text.edit": "Edit",
|
|
85
|
+
"editable-text.save": "Save",
|
|
83
86
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { up to {size}}}",
|
|
84
87
|
"file_upload.apply_crop": "Apply",
|
|
85
88
|
"file_upload.avatar_uploaded": "Avatar uploaded",
|
package/dist/lang/en.js
CHANGED
|
@@ -83,6 +83,9 @@ var en_default = {
|
|
|
83
83
|
"editor.table.sort_row_asc": "Sort row A-Z",
|
|
84
84
|
"editor.table.sort_row_desc": "Sort row Z-A",
|
|
85
85
|
"editor.table.split_cell": "Split cell",
|
|
86
|
+
"editable-text.cancel": "Cancel",
|
|
87
|
+
"editable-text.edit": "Edit",
|
|
88
|
+
"editable-text.save": "Save",
|
|
86
89
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { up to {size}}}",
|
|
87
90
|
"file_upload.apply_crop": "Apply",
|
|
88
91
|
"file_upload.avatar_uploaded": "Avatar uploaded",
|
package/dist/lang/en.mjs
CHANGED
package/dist/loaders/index.js
CHANGED
|
@@ -164,6 +164,9 @@ var de_default = {
|
|
|
164
164
|
"editor.toc.style_default": "Standard",
|
|
165
165
|
"editor.toc.style_flat": "Flach",
|
|
166
166
|
"editor.toc.title": "Inhaltsverzeichnis",
|
|
167
|
+
"editable-text.cancel": "Abbrechen",
|
|
168
|
+
"editable-text.edit": "Bearbeiten",
|
|
169
|
+
"editable-text.save": "Speichern",
|
|
167
170
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { bis {size}}}",
|
|
168
171
|
"file_upload.avatar_uploaded": "Avatar hochgeladen",
|
|
169
172
|
"file_upload.change_avatar": "Avatar \xE4ndern",
|
|
@@ -435,6 +438,9 @@ var en_default = {
|
|
|
435
438
|
"editor.table.sort_row_asc": "Sort row A-Z",
|
|
436
439
|
"editor.table.sort_row_desc": "Sort row Z-A",
|
|
437
440
|
"editor.table.split_cell": "Split cell",
|
|
441
|
+
"editable-text.cancel": "Cancel",
|
|
442
|
+
"editable-text.edit": "Edit",
|
|
443
|
+
"editable-text.save": "Save",
|
|
438
444
|
"file_upload.accepted_file_types": "{types}{size, select, none {} other { up to {size}}}",
|
|
439
445
|
"file_upload.apply_crop": "Apply",
|
|
440
446
|
"file_upload.avatar_uploaded": "Avatar uploaded",
|
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-OZ26V4JE.mjs";
|
|
5
|
+
import "../chunk-HAFBH7UF.mjs";
|
|
6
|
+
import "../chunk-EBMYLIXV.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.11.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.26.1"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"react-intl": "^7.1.14",
|
|
35
|
-
"@kopexa/shared-utils": "17.0.
|
|
36
|
-
"@kopexa/react-utils": "17.1.
|
|
35
|
+
"@kopexa/shared-utils": "17.0.64",
|
|
36
|
+
"@kopexa/react-utils": "17.1.6"
|
|
37
37
|
},
|
|
38
38
|
"clean-package": "../../../clean-package.config.json",
|
|
39
39
|
"module": "dist/index.mjs",
|