@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/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 };