@eigenpal/docx-editor-i18n 1.0.3 → 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/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/index.d.mts
CHANGED
|
@@ -575,6 +575,21 @@ var trackedChanges = {
|
|
|
575
575
|
added: "Added",
|
|
576
576
|
deleted: "Deleted"
|
|
577
577
|
};
|
|
578
|
+
var revisions = {
|
|
579
|
+
paragraphMarkInserted: "Inserted paragraph break",
|
|
580
|
+
paragraphMarkDeleted: "Deleted paragraph break",
|
|
581
|
+
paragraphPropertiesChanged: "Changed paragraph properties",
|
|
582
|
+
rowInserted: "Inserted row",
|
|
583
|
+
rowDeleted: "Deleted row",
|
|
584
|
+
rowPropertiesChanged: "Changed row properties",
|
|
585
|
+
cellInserted: "Inserted cell",
|
|
586
|
+
cellDeleted: "Deleted cell",
|
|
587
|
+
cellMerged: "Merged cells",
|
|
588
|
+
cellPropertiesChanged: "Changed cell properties",
|
|
589
|
+
tablePropertiesChanged: "Changed table properties",
|
|
590
|
+
tableInserted: "Inserted table",
|
|
591
|
+
tableDeleted: "Deleted table"
|
|
592
|
+
};
|
|
578
593
|
var contextMenu = {
|
|
579
594
|
ariaLabel: "AI actions menu",
|
|
580
595
|
textMenuAriaLabel: "Text editing menu",
|
|
@@ -860,6 +875,7 @@ var enJson = {
|
|
|
860
875
|
dialogs: dialogs,
|
|
861
876
|
comments: comments,
|
|
862
877
|
trackedChanges: trackedChanges,
|
|
878
|
+
revisions: revisions,
|
|
863
879
|
contextMenu: contextMenu,
|
|
864
880
|
documentOutline: documentOutline,
|
|
865
881
|
sidebar: sidebar,
|
|
@@ -927,13 +943,17 @@ type LocaleStrings = typeof enJson;
|
|
|
927
943
|
*
|
|
928
944
|
* @public
|
|
929
945
|
*/
|
|
930
|
-
type LocaleCode = 'en' | 'de' | 'he' | 'pl' | 'pt-BR' | 'tr' | 'zh-CN';
|
|
946
|
+
type LocaleCode = 'en' | 'de' | 'fr' | 'he' | 'hi' | 'pl' | 'pt-BR' | 'tr' | 'zh-CN';
|
|
931
947
|
/** English (`en`) — the source of truth, 100% covered. @public */
|
|
932
948
|
declare const en: LocaleStrings;
|
|
933
949
|
/** German (`de`). Community-maintained; null leaves fall back to English. @public */
|
|
934
950
|
declare const de: PartialLocaleStrings;
|
|
951
|
+
/** French (`fr`). Community-maintained; null leaves fall back to English. @public */
|
|
952
|
+
declare const fr: PartialLocaleStrings;
|
|
935
953
|
/** Hebrew (`he`). Community-maintained; null leaves fall back to English. @public */
|
|
936
954
|
declare const he: PartialLocaleStrings;
|
|
955
|
+
/** Hindi (`hi`). Community-maintained; null leaves fall back to English. @public */
|
|
956
|
+
declare const hi: PartialLocaleStrings;
|
|
937
957
|
/** Polish (`pl`). Community-maintained; null leaves fall back to English. @public */
|
|
938
958
|
declare const pl: PartialLocaleStrings;
|
|
939
959
|
/** Portuguese (Brazil) (`pt-BR`). Community-maintained; null leaves fall back to English. @public */
|
|
@@ -1041,4 +1061,4 @@ type TFunction = (key: TranslationKey, vars?: Record<string, string | number>) =
|
|
|
1041
1061
|
*/
|
|
1042
1062
|
declare function createT(strings: LocaleStrings, lang?: string): TFunction;
|
|
1043
1063
|
|
|
1044
|
-
export { type DeepPartial, type LocaleCode, type LocaleStrings, type PartialLocaleStrings, type TFunction, type TranslationKey, type Translations, createT, de, deepMerge, en, he, locales, pl, ptBR, tr, zhCN };
|
|
1064
|
+
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -575,6 +575,21 @@ var trackedChanges = {
|
|
|
575
575
|
added: "Added",
|
|
576
576
|
deleted: "Deleted"
|
|
577
577
|
};
|
|
578
|
+
var revisions = {
|
|
579
|
+
paragraphMarkInserted: "Inserted paragraph break",
|
|
580
|
+
paragraphMarkDeleted: "Deleted paragraph break",
|
|
581
|
+
paragraphPropertiesChanged: "Changed paragraph properties",
|
|
582
|
+
rowInserted: "Inserted row",
|
|
583
|
+
rowDeleted: "Deleted row",
|
|
584
|
+
rowPropertiesChanged: "Changed row properties",
|
|
585
|
+
cellInserted: "Inserted cell",
|
|
586
|
+
cellDeleted: "Deleted cell",
|
|
587
|
+
cellMerged: "Merged cells",
|
|
588
|
+
cellPropertiesChanged: "Changed cell properties",
|
|
589
|
+
tablePropertiesChanged: "Changed table properties",
|
|
590
|
+
tableInserted: "Inserted table",
|
|
591
|
+
tableDeleted: "Deleted table"
|
|
592
|
+
};
|
|
578
593
|
var contextMenu = {
|
|
579
594
|
ariaLabel: "AI actions menu",
|
|
580
595
|
textMenuAriaLabel: "Text editing menu",
|
|
@@ -860,6 +875,7 @@ var enJson = {
|
|
|
860
875
|
dialogs: dialogs,
|
|
861
876
|
comments: comments,
|
|
862
877
|
trackedChanges: trackedChanges,
|
|
878
|
+
revisions: revisions,
|
|
863
879
|
contextMenu: contextMenu,
|
|
864
880
|
documentOutline: documentOutline,
|
|
865
881
|
sidebar: sidebar,
|
|
@@ -927,13 +943,17 @@ type LocaleStrings = typeof enJson;
|
|
|
927
943
|
*
|
|
928
944
|
* @public
|
|
929
945
|
*/
|
|
930
|
-
type LocaleCode = 'en' | 'de' | 'he' | 'pl' | 'pt-BR' | 'tr' | 'zh-CN';
|
|
946
|
+
type LocaleCode = 'en' | 'de' | 'fr' | 'he' | 'hi' | 'pl' | 'pt-BR' | 'tr' | 'zh-CN';
|
|
931
947
|
/** English (`en`) — the source of truth, 100% covered. @public */
|
|
932
948
|
declare const en: LocaleStrings;
|
|
933
949
|
/** German (`de`). Community-maintained; null leaves fall back to English. @public */
|
|
934
950
|
declare const de: PartialLocaleStrings;
|
|
951
|
+
/** French (`fr`). Community-maintained; null leaves fall back to English. @public */
|
|
952
|
+
declare const fr: PartialLocaleStrings;
|
|
935
953
|
/** Hebrew (`he`). Community-maintained; null leaves fall back to English. @public */
|
|
936
954
|
declare const he: PartialLocaleStrings;
|
|
955
|
+
/** Hindi (`hi`). Community-maintained; null leaves fall back to English. @public */
|
|
956
|
+
declare const hi: PartialLocaleStrings;
|
|
937
957
|
/** Polish (`pl`). Community-maintained; null leaves fall back to English. @public */
|
|
938
958
|
declare const pl: PartialLocaleStrings;
|
|
939
959
|
/** Portuguese (Brazil) (`pt-BR`). Community-maintained; null leaves fall back to English. @public */
|
|
@@ -1041,4 +1061,4 @@ type TFunction = (key: TranslationKey, vars?: Record<string, string | number>) =
|
|
|
1041
1061
|
*/
|
|
1042
1062
|
declare function createT(strings: LocaleStrings, lang?: string): TFunction;
|
|
1043
1063
|
|
|
1044
|
-
export { type DeepPartial, type LocaleCode, type LocaleStrings, type PartialLocaleStrings, type TFunction, type TranslationKey, type Translations, createT, de, deepMerge, en, he, locales, pl, ptBR, tr, zhCN };
|
|
1064
|
+
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 };
|