@sqren/docx-editor-i18n 1.7.0-fork.1
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 +201 -0
- package/README.md +132 -0
- package/dist/de.d.mts +33 -0
- package/dist/de.d.ts +33 -0
- package/dist/de.js +906 -0
- package/dist/de.mjs +879 -0
- package/dist/en.d.mts +33 -0
- package/dist/en.d.ts +33 -0
- package/dist/en.js +906 -0
- package/dist/en.mjs +879 -0
- package/dist/fr.d.mts +33 -0
- package/dist/fr.d.ts +33 -0
- package/dist/fr.js +906 -0
- package/dist/fr.mjs +879 -0
- package/dist/he.d.mts +33 -0
- package/dist/he.d.ts +33 -0
- package/dist/he.js +906 -0
- package/dist/he.mjs +879 -0
- package/dist/hi.d.mts +33 -0
- package/dist/hi.d.ts +33 -0
- package/dist/hi.js +906 -0
- package/dist/hi.mjs +879 -0
- package/dist/id.d.mts +33 -0
- package/dist/id.d.ts +33 -0
- package/dist/id.js +906 -0
- package/dist/id.mjs +879 -0
- package/dist/index.d.mts +1099 -0
- package/dist/index.d.ts +1099 -0
- package/dist/index.js +8862 -0
- package/dist/index.mjs +8823 -0
- package/dist/pl.d.mts +33 -0
- package/dist/pl.d.ts +33 -0
- package/dist/pl.js +906 -0
- package/dist/pl.mjs +879 -0
- package/dist/pt-BR.d.mts +33 -0
- package/dist/pt-BR.d.ts +33 -0
- package/dist/pt-BR.js +906 -0
- package/dist/pt-BR.mjs +879 -0
- package/dist/tr.d.mts +33 -0
- package/dist/tr.d.ts +33 -0
- package/dist/tr.js +906 -0
- package/dist/tr.mjs +879 -0
- package/dist/zh-CN.d.mts +33 -0
- package/dist/zh-CN.d.ts +33 -0
- package/dist/zh-CN.js +906 -0
- package/dist/zh-CN.mjs +879 -0
- package/package.json +103 -0
package/dist/en.d.mts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @sqren/docx-editor-i18n/en
|
|
3
|
+
*
|
|
4
|
+
* English (`en`) — direct locale subpath for per-locale code-splitting.
|
|
5
|
+
*
|
|
6
|
+
* ```ts
|
|
7
|
+
* // Static — bundler ships only this locale's strings
|
|
8
|
+
* import en from '@sqren/docx-editor-i18n/en';
|
|
9
|
+
*
|
|
10
|
+
* // Dynamic — splits into its own chunk, loaded on demand
|
|
11
|
+
* const en = (await import('@sqren/docx-editor-i18n/en')).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 { LocaleStrings } from './index.mjs';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* English (`en`) locale strings — the source of truth, 100% covered.
|
|
25
|
+
*
|
|
26
|
+
* Identical content to the named `en` export from the package root;
|
|
27
|
+
* this subpath just lets bundlers code-split it.
|
|
28
|
+
*
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
declare const en: LocaleStrings;
|
|
32
|
+
|
|
33
|
+
export { en as default, en };
|
package/dist/en.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @sqren/docx-editor-i18n/en
|
|
3
|
+
*
|
|
4
|
+
* English (`en`) — direct locale subpath for per-locale code-splitting.
|
|
5
|
+
*
|
|
6
|
+
* ```ts
|
|
7
|
+
* // Static — bundler ships only this locale's strings
|
|
8
|
+
* import en from '@sqren/docx-editor-i18n/en';
|
|
9
|
+
*
|
|
10
|
+
* // Dynamic — splits into its own chunk, loaded on demand
|
|
11
|
+
* const en = (await import('@sqren/docx-editor-i18n/en')).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 { LocaleStrings } from './index.js';
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* English (`en`) locale strings — the source of truth, 100% covered.
|
|
25
|
+
*
|
|
26
|
+
* Identical content to the named `en` export from the package root;
|
|
27
|
+
* this subpath just lets bundlers code-split it.
|
|
28
|
+
*
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
declare const en: LocaleStrings;
|
|
32
|
+
|
|
33
|
+
export { en as default, en };
|