@eigenpal/docx-editor-i18n 1.0.2 → 1.1.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/LICENSE +13 -16
- package/README.md +1 -1
- package/dist/de.js +15 -0
- package/dist/de.mjs +15 -0
- package/dist/en.js +15 -0
- package/dist/en.mjs +15 -0
- package/dist/fr.d.mts +33 -0
- package/dist/fr.d.ts +33 -0
- package/dist/fr.js +873 -0
- package/dist/fr.mjs +846 -0
- package/dist/he.js +15 -0
- package/dist/he.mjs +15 -0
- package/dist/hi.d.mts +33 -0
- package/dist/hi.d.ts +33 -0
- package/dist/hi.js +873 -0
- package/dist/hi.mjs +846 -0
- package/dist/index.d.mts +22 -2
- package/dist/index.d.ts +22 -2
- package/dist/index.js +1791 -0
- package/dist/index.mjs +1789 -0
- package/dist/pl.js +15 -0
- package/dist/pl.mjs +15 -0
- package/dist/pt-BR.js +15 -0
- package/dist/pt-BR.mjs +15 -0
- package/dist/tr.js +15 -0
- package/dist/tr.mjs +15 -0
- package/dist/zh-CN.js +15 -0
- package/dist/zh-CN.mjs +15 -0
- package/package.json +11 -1
package/dist/he.js
CHANGED
|
@@ -846,6 +846,21 @@ var he_default = {
|
|
|
846
846
|
deleteImage: "מחק תמונה",
|
|
847
847
|
imageProperties: "מאפייני תמונה",
|
|
848
848
|
rotate: "סובב"
|
|
849
|
+
},
|
|
850
|
+
revisions: {
|
|
851
|
+
cellDeleted: null,
|
|
852
|
+
cellInserted: null,
|
|
853
|
+
cellMerged: null,
|
|
854
|
+
cellPropertiesChanged: null,
|
|
855
|
+
paragraphMarkDeleted: null,
|
|
856
|
+
paragraphMarkInserted: null,
|
|
857
|
+
paragraphPropertiesChanged: null,
|
|
858
|
+
rowDeleted: null,
|
|
859
|
+
rowInserted: null,
|
|
860
|
+
rowPropertiesChanged: null,
|
|
861
|
+
tablePropertiesChanged: null,
|
|
862
|
+
tableDeleted: null,
|
|
863
|
+
tableInserted: null
|
|
849
864
|
}
|
|
850
865
|
};
|
|
851
866
|
|
package/dist/he.mjs
CHANGED
|
@@ -819,6 +819,21 @@ var he_default = {
|
|
|
819
819
|
deleteImage: "מחק תמונה",
|
|
820
820
|
imageProperties: "מאפייני תמונה",
|
|
821
821
|
rotate: "סובב"
|
|
822
|
+
},
|
|
823
|
+
revisions: {
|
|
824
|
+
cellDeleted: null,
|
|
825
|
+
cellInserted: null,
|
|
826
|
+
cellMerged: null,
|
|
827
|
+
cellPropertiesChanged: null,
|
|
828
|
+
paragraphMarkDeleted: null,
|
|
829
|
+
paragraphMarkInserted: null,
|
|
830
|
+
paragraphPropertiesChanged: null,
|
|
831
|
+
rowDeleted: null,
|
|
832
|
+
rowInserted: null,
|
|
833
|
+
rowPropertiesChanged: null,
|
|
834
|
+
tablePropertiesChanged: null,
|
|
835
|
+
tableDeleted: null,
|
|
836
|
+
tableInserted: null
|
|
822
837
|
}
|
|
823
838
|
};
|
|
824
839
|
|
package/dist/hi.d.mts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @eigenpal/docx-editor-i18n/hi
|
|
3
|
+
*
|
|
4
|
+
* Hindi (`hi`) — direct locale subpath for per-locale code-splitting.
|
|
5
|
+
*
|
|
6
|
+
* ```ts
|
|
7
|
+
* // Static — bundler ships only this locale's strings
|
|
8
|
+
* import hi from '@eigenpal/docx-editor-i18n/hi';
|
|
9
|
+
*
|
|
10
|
+
* // Dynamic — splits into its own chunk, loaded on demand
|
|
11
|
+
* const hi = (await import('@eigenpal/docx-editor-i18n/hi')).default;
|
|
12
|
+
* ```
|
|
13
|
+
*
|
|
14
|
+
* For multi-locale apps, prefer the per-locale subpaths over importing
|
|
15
|
+
* `locales` from the package root — `locales` pulls every locale into
|
|
16
|
+
* the bundle.
|
|
17
|
+
*
|
|
18
|
+
* @packageDocumentation
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
import { PartialLocaleStrings } from './index.mjs';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Hindi (`hi`) locale strings. Community-maintained; null leaves fall back to English.
|
|
25
|
+
*
|
|
26
|
+
* Identical content to the named `hi` export from the package root;
|
|
27
|
+
* this subpath just lets bundlers code-split it.
|
|
28
|
+
*
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
declare const hi: PartialLocaleStrings;
|
|
32
|
+
|
|
33
|
+
export { hi as default, hi };
|
package/dist/hi.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @eigenpal/docx-editor-i18n/hi
|
|
3
|
+
*
|
|
4
|
+
* Hindi (`hi`) — direct locale subpath for per-locale code-splitting.
|
|
5
|
+
*
|
|
6
|
+
* ```ts
|
|
7
|
+
* // Static — bundler ships only this locale's strings
|
|
8
|
+
* import hi from '@eigenpal/docx-editor-i18n/hi';
|
|
9
|
+
*
|
|
10
|
+
* // Dynamic — splits into its own chunk, loaded on demand
|
|
11
|
+
* const hi = (await import('@eigenpal/docx-editor-i18n/hi')).default;
|
|
12
|
+
* ```
|
|
13
|
+
*
|
|
14
|
+
* For multi-locale apps, prefer the per-locale subpaths over importing
|
|
15
|
+
* `locales` from the package root — `locales` pulls every locale into
|
|
16
|
+
* the bundle.
|
|
17
|
+
*
|
|
18
|
+
* @packageDocumentation
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
import { PartialLocaleStrings } from './index.js';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Hindi (`hi`) locale strings. Community-maintained; null leaves fall back to English.
|
|
25
|
+
*
|
|
26
|
+
* Identical content to the named `hi` export from the package root;
|
|
27
|
+
* this subpath just lets bundlers code-split it.
|
|
28
|
+
*
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
declare const hi: PartialLocaleStrings;
|
|
32
|
+
|
|
33
|
+
export { hi as default, hi };
|