@eigenpal/docx-editor-i18n 1.6.0 → 1.6.2
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/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 +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +876 -0
- package/dist/index.mjs +875 -0
- package/package.json +6 -1
package/dist/index.d.mts
CHANGED
|
@@ -976,7 +976,7 @@ type LocaleStrings = typeof enJson;
|
|
|
976
976
|
*
|
|
977
977
|
* @public
|
|
978
978
|
*/
|
|
979
|
-
type LocaleCode = 'en' | 'de' | 'fr' | 'he' | 'hi' | 'pl' | 'pt-BR' | 'tr' | 'zh-CN';
|
|
979
|
+
type LocaleCode = 'en' | 'de' | 'fr' | 'he' | 'hi' | 'id' | 'pl' | 'pt-BR' | 'tr' | 'zh-CN';
|
|
980
980
|
/** English (`en`) — the source of truth, 100% covered. @public */
|
|
981
981
|
declare const en: LocaleStrings;
|
|
982
982
|
/** German (`de`). Community-maintained; null leaves fall back to English. @public */
|
|
@@ -987,6 +987,8 @@ declare const fr: PartialLocaleStrings;
|
|
|
987
987
|
declare const he: PartialLocaleStrings;
|
|
988
988
|
/** Hindi (`hi`). Community-maintained; null leaves fall back to English. @public */
|
|
989
989
|
declare const hi: PartialLocaleStrings;
|
|
990
|
+
/** Indonesian (`id`). Community-maintained; null leaves fall back to English. @public */
|
|
991
|
+
declare const id: PartialLocaleStrings;
|
|
990
992
|
/** Polish (`pl`). Community-maintained; null leaves fall back to English. @public */
|
|
991
993
|
declare const pl: PartialLocaleStrings;
|
|
992
994
|
/** Portuguese (Brazil) (`pt-BR`). Community-maintained; null leaves fall back to English. @public */
|
|
@@ -1094,4 +1096,4 @@ type TFunction = (key: TranslationKey, vars?: Record<string, string | number>) =
|
|
|
1094
1096
|
*/
|
|
1095
1097
|
declare function createT(strings: LocaleStrings, lang?: string): TFunction;
|
|
1096
1098
|
|
|
1097
|
-
export { type DeepPartial, type LocaleCode, type LocaleStrings, type PartialLocaleStrings, type TFunction, type TranslationKey, type Translations, createT, de, deepMerge, en, fr, he, hi, locales, pl, ptBR, tr, zhCN };
|
|
1099
|
+
export { type DeepPartial, type LocaleCode, type LocaleStrings, type PartialLocaleStrings, type TFunction, type TranslationKey, type Translations, createT, de, deepMerge, en, fr, he, hi, id, locales, pl, ptBR, tr, zhCN };
|
package/dist/index.d.ts
CHANGED
|
@@ -976,7 +976,7 @@ type LocaleStrings = typeof enJson;
|
|
|
976
976
|
*
|
|
977
977
|
* @public
|
|
978
978
|
*/
|
|
979
|
-
type LocaleCode = 'en' | 'de' | 'fr' | 'he' | 'hi' | 'pl' | 'pt-BR' | 'tr' | 'zh-CN';
|
|
979
|
+
type LocaleCode = 'en' | 'de' | 'fr' | 'he' | 'hi' | 'id' | 'pl' | 'pt-BR' | 'tr' | 'zh-CN';
|
|
980
980
|
/** English (`en`) — the source of truth, 100% covered. @public */
|
|
981
981
|
declare const en: LocaleStrings;
|
|
982
982
|
/** German (`de`). Community-maintained; null leaves fall back to English. @public */
|
|
@@ -987,6 +987,8 @@ declare const fr: PartialLocaleStrings;
|
|
|
987
987
|
declare const he: PartialLocaleStrings;
|
|
988
988
|
/** Hindi (`hi`). Community-maintained; null leaves fall back to English. @public */
|
|
989
989
|
declare const hi: PartialLocaleStrings;
|
|
990
|
+
/** Indonesian (`id`). Community-maintained; null leaves fall back to English. @public */
|
|
991
|
+
declare const id: PartialLocaleStrings;
|
|
990
992
|
/** Polish (`pl`). Community-maintained; null leaves fall back to English. @public */
|
|
991
993
|
declare const pl: PartialLocaleStrings;
|
|
992
994
|
/** Portuguese (Brazil) (`pt-BR`). Community-maintained; null leaves fall back to English. @public */
|
|
@@ -1094,4 +1096,4 @@ type TFunction = (key: TranslationKey, vars?: Record<string, string | number>) =
|
|
|
1094
1096
|
*/
|
|
1095
1097
|
declare function createT(strings: LocaleStrings, lang?: string): TFunction;
|
|
1096
1098
|
|
|
1097
|
-
export { type DeepPartial, type LocaleCode, type LocaleStrings, type PartialLocaleStrings, type TFunction, type TranslationKey, type Translations, createT, de, deepMerge, en, fr, he, hi, locales, pl, ptBR, tr, zhCN };
|
|
1099
|
+
export { type DeepPartial, type LocaleCode, type LocaleStrings, type PartialLocaleStrings, type TFunction, type TranslationKey, type Translations, createT, de, deepMerge, en, fr, he, hi, id, locales, pl, ptBR, tr, zhCN };
|