@eigenpal/docx-editor-i18n 1.5.0 → 1.6.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/dist/de.js CHANGED
@@ -70,7 +70,10 @@ var de_default = {
70
70
  openShortcut: "Strg+O",
71
71
  save: "Speichern",
72
72
  saveShortcut: "Strg+S",
73
- watermark: "Wasserzeichen"
73
+ watermark: "Wasserzeichen",
74
+ break: null,
75
+ sectionBreakContinuous: null,
76
+ sectionBreakNextPage: null
74
77
  },
75
78
  formattingBar: {
76
79
  groups: {
package/dist/de.mjs CHANGED
@@ -43,7 +43,10 @@ var de_default = {
43
43
  openShortcut: "Strg+O",
44
44
  save: "Speichern",
45
45
  saveShortcut: "Strg+S",
46
- watermark: "Wasserzeichen"
46
+ watermark: "Wasserzeichen",
47
+ break: null,
48
+ sectionBreakContinuous: null,
49
+ sectionBreakNextPage: null
47
50
  },
48
51
  formattingBar: {
49
52
  groups: {
package/dist/en.js CHANGED
@@ -65,7 +65,10 @@ var en_default = {
65
65
  rightToLeft: "Right-to-left text",
66
66
  image: "Image",
67
67
  table: "Table",
68
+ break: "Break",
68
69
  pageBreak: "Page break",
70
+ sectionBreakNextPage: "Section break (next page)",
71
+ sectionBreakContinuous: "Section break (continuous)",
69
72
  tableOfContents: "Table of contents",
70
73
  symbol: "Symbol",
71
74
  watermark: "Watermark",
package/dist/en.mjs CHANGED
@@ -38,7 +38,10 @@ var en_default = {
38
38
  rightToLeft: "Right-to-left text",
39
39
  image: "Image",
40
40
  table: "Table",
41
+ break: "Break",
41
42
  pageBreak: "Page break",
43
+ sectionBreakNextPage: "Section break (next page)",
44
+ sectionBreakContinuous: "Section break (continuous)",
42
45
  tableOfContents: "Table of contents",
43
46
  symbol: "Symbol",
44
47
  watermark: "Watermark",
package/dist/fr.js CHANGED
@@ -70,7 +70,10 @@ var fr_default = {
70
70
  symbol: "Symbole",
71
71
  help: "Aide",
72
72
  reportIssue: "Signaler un bug",
73
- watermark: "Filigrane"
73
+ watermark: "Filigrane",
74
+ break: null,
75
+ sectionBreakContinuous: null,
76
+ sectionBreakNextPage: null
74
77
  },
75
78
  formattingBar: {
76
79
  groups: {
package/dist/fr.mjs CHANGED
@@ -43,7 +43,10 @@ var fr_default = {
43
43
  symbol: "Symbole",
44
44
  help: "Aide",
45
45
  reportIssue: "Signaler un bug",
46
- watermark: "Filigrane"
46
+ watermark: "Filigrane",
47
+ break: null,
48
+ sectionBreakContinuous: null,
49
+ sectionBreakNextPage: null
47
50
  },
48
51
  formattingBar: {
49
52
  groups: {
package/dist/he.js CHANGED
@@ -70,7 +70,10 @@ var he_default = {
70
70
  openShortcut: "Ctrl+O",
71
71
  save: "שמירה",
72
72
  saveShortcut: "Ctrl+S",
73
- watermark: "סימן מים"
73
+ watermark: "סימן מים",
74
+ break: null,
75
+ sectionBreakContinuous: null,
76
+ sectionBreakNextPage: null
74
77
  },
75
78
  formattingBar: {
76
79
  groups: {
package/dist/he.mjs CHANGED
@@ -43,7 +43,10 @@ var he_default = {
43
43
  openShortcut: "Ctrl+O",
44
44
  save: "שמירה",
45
45
  saveShortcut: "Ctrl+S",
46
- watermark: "סימן מים"
46
+ watermark: "סימן מים",
47
+ break: null,
48
+ sectionBreakContinuous: null,
49
+ sectionBreakNextPage: null
47
50
  },
48
51
  formattingBar: {
49
52
  groups: {
package/dist/hi.js CHANGED
@@ -70,7 +70,10 @@ var hi_default = {
70
70
  symbol: "प्रतीक",
71
71
  help: "सहायता",
72
72
  reportIssue: "समस्या की रिपोर्ट करें",
73
- watermark: "वॉटरमार्क"
73
+ watermark: "वॉटरमार्क",
74
+ break: null,
75
+ sectionBreakContinuous: null,
76
+ sectionBreakNextPage: null
74
77
  },
75
78
  formattingBar: {
76
79
  groups: {
package/dist/hi.mjs CHANGED
@@ -43,7 +43,10 @@ var hi_default = {
43
43
  symbol: "प्रतीक",
44
44
  help: "सहायता",
45
45
  reportIssue: "समस्या की रिपोर्ट करें",
46
- watermark: "वॉटरमार्क"
46
+ watermark: "वॉटरमार्क",
47
+ break: null,
48
+ sectionBreakContinuous: null,
49
+ sectionBreakNextPage: null
47
50
  },
48
51
  formattingBar: {
49
52
  groups: {
package/dist/id.d.mts ADDED
@@ -0,0 +1,33 @@
1
+ /**
2
+ * @eigenpal/docx-editor-i18n/id
3
+ *
4
+ * Indonesian (`id`) — direct locale subpath for per-locale code-splitting.
5
+ *
6
+ * ```ts
7
+ * // Static — bundler ships only this locale's strings
8
+ * import id from '@eigenpal/docx-editor-i18n/id';
9
+ *
10
+ * // Dynamic — splits into its own chunk, loaded on demand
11
+ * const id = (await import('@eigenpal/docx-editor-i18n/id')).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
+ * Indonesian (`id`) locale strings. Community-maintained; null leaves fall back to English.
25
+ *
26
+ * Identical content to the named `id` export from the package root;
27
+ * this subpath just lets bundlers code-split it.
28
+ *
29
+ * @public
30
+ */
31
+ declare const id: PartialLocaleStrings;
32
+
33
+ export { id as default, id };
package/dist/id.d.ts ADDED
@@ -0,0 +1,33 @@
1
+ /**
2
+ * @eigenpal/docx-editor-i18n/id
3
+ *
4
+ * Indonesian (`id`) — direct locale subpath for per-locale code-splitting.
5
+ *
6
+ * ```ts
7
+ * // Static — bundler ships only this locale's strings
8
+ * import id from '@eigenpal/docx-editor-i18n/id';
9
+ *
10
+ * // Dynamic — splits into its own chunk, loaded on demand
11
+ * const id = (await import('@eigenpal/docx-editor-i18n/id')).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
+ * Indonesian (`id`) locale strings. Community-maintained; null leaves fall back to English.
25
+ *
26
+ * Identical content to the named `id` export from the package root;
27
+ * this subpath just lets bundlers code-split it.
28
+ *
29
+ * @public
30
+ */
31
+ declare const id: PartialLocaleStrings;
32
+
33
+ export { id as default, id };