@spscommerce/i18n 8.34.8 → 8.34.10
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/lib/index.js +211 -227
- package/lib/index.umd.cjs +2 -2
- package/lib/localize.d.ts +2 -0
- package/locales/de-DE/woodland.json +6 -3
- package/locales/en-US/woodland.json +15 -20
- package/locales/es-ES/woodland.json +9 -3
- package/locales/fr-CA/woodland.json +9 -3
- package/locales/fr-FR/woodland.json +9 -3
- package/locales/it-IT/woodland.json +9 -3
- package/locales/nl-NL/woodland.json +6 -3
- package/locales/zh-CN/woodland.json +6 -3
- package/locales/zh-TW/woodland.json +6 -3
- package/package.json +1 -1
package/lib/localize.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { InitOptions } from "i18next";
|
|
2
|
+
import i18n from "i18next";
|
|
2
3
|
export interface IDetectorOptions {
|
|
3
4
|
order?: string[];
|
|
4
5
|
lookupQuerystring?: string;
|
|
@@ -19,3 +20,4 @@ export interface ILocalizeOptions extends InitOptions {
|
|
|
19
20
|
translationPath?: string;
|
|
20
21
|
}
|
|
21
22
|
export declare function localize({ detectorConfig, translationPath, customDetectors, ...i18nConfig }: ILocalizeOptions): Promise<import("i18next").TFunction>;
|
|
23
|
+
export { i18n };
|
|
@@ -32,20 +32,23 @@
|
|
|
32
32
|
"datepicker.presetsLabel": "Bereiche",
|
|
33
33
|
"fileUpload.acceptedTypes": {
|
|
34
34
|
"one": "{{fileTypes}} Format akzeptiert",
|
|
35
|
-
"other": "{{fileTypes}} akzeptierte Formate"
|
|
35
|
+
"other": "{{fileTypes}} akzeptierte Formate",
|
|
36
|
+
"zero": null
|
|
36
37
|
},
|
|
37
38
|
"fileUpload.acceptedTypes.one": "{{fileTypes}} Format akzeptiert",
|
|
38
39
|
"fileUpload.acceptedTypes.other": "{{fileTypes}} akzeptierte Formate",
|
|
39
40
|
"fileUpload.cancelled": {
|
|
40
41
|
"one": "Datei-Upload fehlgeschlagen",
|
|
41
|
-
"other": "Datei-Upload(s) fehlgeschlagen"
|
|
42
|
+
"other": "Datei-Upload(s) fehlgeschlagen",
|
|
43
|
+
"zero": null
|
|
42
44
|
},
|
|
43
45
|
"fileUpload.cancelled.one": "Datei-Upload fehlgeschlagen",
|
|
44
46
|
"fileUpload.cancelled.other": "Datei-Upload(s) fehlgeschlagen",
|
|
45
47
|
"fileUpload.close": "Schließen",
|
|
46
48
|
"fileUpload.instructions": {
|
|
47
49
|
"one": "Ziehen Sie Ihre Datei per Drag & Drop hierher oder |suchen Sie nach einer Datei| auf Ihrem Desktop.",
|
|
48
|
-
"other": "Ziehen Sie Ihre Dateien per Drag & Drop hierher oder |suchen Sie nach Dateien| auf Ihrem Desktop."
|
|
50
|
+
"other": "Ziehen Sie Ihre Dateien per Drag & Drop hierher oder |suchen Sie nach Dateien| auf Ihrem Desktop.",
|
|
51
|
+
"zero": null
|
|
49
52
|
},
|
|
50
53
|
"fileUpload.instructions.one": "Ziehen Sie Ihre Datei per Drag & Drop hierher oder |suchen Sie nach einer Datei| auf Ihrem Desktop.",
|
|
51
54
|
"fileUpload.instructions.other": "Ziehen Sie Ihre Dateien per Drag & Drop hierher oder |suchen Sie nach Dateien| auf Ihrem Desktop.",
|
|
@@ -6,13 +6,9 @@
|
|
|
6
6
|
"addToList.noDataZeroStateOnColumnSubheading": "Move options from the {{columnName}}",
|
|
7
7
|
"addToList.offColumnHeader": "Off Column",
|
|
8
8
|
"addToList.onColumnHeader": "On Column",
|
|
9
|
-
"addToList.moreOptionsAvailable": "More options available. Use the search field to filter results.",
|
|
10
9
|
"advancedSearch.clear": "Clear Fields",
|
|
11
10
|
"advancedSearch.search": "Search",
|
|
12
11
|
"button.spinningTitle": "Loading…",
|
|
13
|
-
"columnChooser.applyChanges": "Apply Changes",
|
|
14
|
-
"columnChooser.findColumnsToAdd": "Find Columns to Add",
|
|
15
|
-
"columnChooser.selected": "Selected",
|
|
16
12
|
"columnChooser.removeButton": "Remove {{elementName}}",
|
|
17
13
|
"columnManager.cancelButton": "Cancel",
|
|
18
14
|
"columnManager.filterText": "Find a Column",
|
|
@@ -22,9 +18,6 @@
|
|
|
22
18
|
"columnManager.title": "Manage Table Columns",
|
|
23
19
|
"contentRow.collapse": "Collapse",
|
|
24
20
|
"contentRow.expand": "Expand",
|
|
25
|
-
"contextBar.viewing": "Viewing",
|
|
26
|
-
"contextBar.in": "in",
|
|
27
|
-
"contextBar.change": "Change",
|
|
28
21
|
"datepicker.calendar.nextMonth": "View Next Month",
|
|
29
22
|
"datepicker.calendar.prevMonth": "View Previous Month",
|
|
30
23
|
"datepicker.preset.after": "After",
|
|
@@ -37,12 +30,26 @@
|
|
|
37
30
|
"datepicker.preset.thirtyDays": "Last 30 days",
|
|
38
31
|
"datepicker.preset.today": "Today",
|
|
39
32
|
"datepicker.presetsLabel": "Ranges",
|
|
40
|
-
"
|
|
33
|
+
"fileUpload.acceptedTypes": {
|
|
34
|
+
"one": "{{fileTypes}} format accepted",
|
|
35
|
+
"other": "{{fileTypes}} formats accepted",
|
|
36
|
+
"zero": null
|
|
37
|
+
},
|
|
41
38
|
"fileUpload.acceptedTypes.one": "{{fileTypes}} format accepted",
|
|
42
39
|
"fileUpload.acceptedTypes.other": "{{fileTypes}} formats accepted",
|
|
40
|
+
"fileUpload.cancelled": {
|
|
41
|
+
"one": "File Upload Failed",
|
|
42
|
+
"other": "File Upload(s) Failed",
|
|
43
|
+
"zero": null
|
|
44
|
+
},
|
|
43
45
|
"fileUpload.cancelled.one": "File Upload Failed",
|
|
44
46
|
"fileUpload.cancelled.other": "File Upload(s) Failed",
|
|
45
47
|
"fileUpload.close": "Close",
|
|
48
|
+
"fileUpload.instructions": {
|
|
49
|
+
"one": "Drag and drop your file here or |browse for a file| on your desktop.",
|
|
50
|
+
"other": "Drag and drop your files here or |browse for files| on your desktop.",
|
|
51
|
+
"zero": null
|
|
52
|
+
},
|
|
46
53
|
"fileUpload.instructions.one": "Drag and drop your file here or |browse for a file| on your desktop.",
|
|
47
54
|
"fileUpload.instructions.other": "Drag and drop your files here or |browse for files| on your desktop.",
|
|
48
55
|
"fileUpload.maximumSize": "{{size}} maximum",
|
|
@@ -59,8 +66,6 @@
|
|
|
59
66
|
"insightTile.all": "ALL",
|
|
60
67
|
"insightTile.partnerCount": "{{count}} |of| {{total}}",
|
|
61
68
|
"insightTile.partners": "PARTNERS",
|
|
62
|
-
"insights.hideAdditionalInsights": "Hide Additional Insights",
|
|
63
|
-
"insights.showAdditionalInsights": "Show Additional Insights",
|
|
64
69
|
"label.errors.dateConstraint.max": "Please enter a date on or prior to {{context.maxExceeded}}.",
|
|
65
70
|
"label.errors.dateConstraint.min": "Please enter a date on or after {{context.minExceeded}}.",
|
|
66
71
|
"label.errors.dateFormat": "Please enter a date in the format {{context}}.",
|
|
@@ -80,7 +85,6 @@
|
|
|
80
85
|
"listActionBar.clearSelected": "Clear Selected",
|
|
81
86
|
"listActionBar.itemsSelected": "Items Selected",
|
|
82
87
|
"listToolbar.advancedSearchToggle": "Advanced Search",
|
|
83
|
-
"matrix.cell.null": "null",
|
|
84
88
|
"modal.close": "Close modal",
|
|
85
89
|
"modal.defaultButtonLabel": "Okay",
|
|
86
90
|
"modal.defaultTitle.general": "Action",
|
|
@@ -89,20 +93,11 @@
|
|
|
89
93
|
"modal.defaultTitle.success": "Success",
|
|
90
94
|
"modal.defaultTitle.warning": "Warning",
|
|
91
95
|
"pagination.nextPage": "Next Page",
|
|
92
|
-
"pagination.of": "of",
|
|
93
|
-
"pagination.many": "many",
|
|
94
96
|
"pagination.ofMany": "of many",
|
|
95
97
|
"pagination.ofPageCount": "of {{pageCount}}",
|
|
96
98
|
"pagination.page": "Page",
|
|
97
|
-
"pagination.perPage": "Per Page",
|
|
98
99
|
"pagination.prevPage": "Previous Page",
|
|
99
|
-
"pagination.view": "View",
|
|
100
|
-
"pagination.viewing": "Viewing",
|
|
101
100
|
"progressBar.closeButtonTitle": "Close progress bar",
|
|
102
|
-
"productBar.current": "current",
|
|
103
|
-
"richTextEditor.linkModal.text": "Text",
|
|
104
|
-
"richTextEditor.linkModal.link": "Link",
|
|
105
|
-
"richTextEditor.linkModal.ok": "OK",
|
|
106
101
|
"searchResultsBar.clear": "Clear",
|
|
107
102
|
"searchResultsBar.clearResults": "Clear Results",
|
|
108
103
|
"searchResultsBar.count": "{{count}} of {{total}}",
|
|
@@ -31,21 +31,27 @@
|
|
|
31
31
|
"datepicker.preset.today": "Hoy",
|
|
32
32
|
"datepicker.presetsLabel": "Rangos",
|
|
33
33
|
"fileUpload.acceptedTypes": {
|
|
34
|
+
"many": null,
|
|
34
35
|
"one": "Formato {{fileTypes}} aceptado",
|
|
35
|
-
"other": "Formatos {{fileTypes}} aceptados"
|
|
36
|
+
"other": "Formatos {{fileTypes}} aceptados",
|
|
37
|
+
"zero": null
|
|
36
38
|
},
|
|
37
39
|
"fileUpload.acceptedTypes.one": "Formato {{fileTypes}} aceptado",
|
|
38
40
|
"fileUpload.acceptedTypes.other": "Formatos {{fileTypes}} aceptados",
|
|
39
41
|
"fileUpload.cancelled": {
|
|
42
|
+
"many": null,
|
|
40
43
|
"one": "Error al cargar el archivo",
|
|
41
|
-
"other": "Error en la carga de archivos"
|
|
44
|
+
"other": "Error en la carga de archivos",
|
|
45
|
+
"zero": null
|
|
42
46
|
},
|
|
43
47
|
"fileUpload.cancelled.one": "Error al cargar el archivo",
|
|
44
48
|
"fileUpload.cancelled.other": "Error en la carga de archivos",
|
|
45
49
|
"fileUpload.close": "Cerrar",
|
|
46
50
|
"fileUpload.instructions": {
|
|
51
|
+
"many": null,
|
|
47
52
|
"one": "Arrastre y suelte su archivo aquí o busque un archivo en su escritorio.",
|
|
48
|
-
"other": "Arrastre y suelte sus archivos aquí o busque archivos en su escritorio."
|
|
53
|
+
"other": "Arrastre y suelte sus archivos aquí o busque archivos en su escritorio.",
|
|
54
|
+
"zero": null
|
|
49
55
|
},
|
|
50
56
|
"fileUpload.instructions.one": "Arrastre y suelte su archivo aquí o busque un archivo en su escritorio.",
|
|
51
57
|
"fileUpload.instructions.other": "Arrastre y suelte sus archivos aquí o busque archivos en su escritorio.",
|
|
@@ -31,21 +31,27 @@
|
|
|
31
31
|
"datepicker.preset.today": "Aujourd'hui",
|
|
32
32
|
"datepicker.presetsLabel": "Gammes",
|
|
33
33
|
"fileUpload.acceptedTypes": {
|
|
34
|
+
"many": null,
|
|
34
35
|
"one": "Format {{fileTypes}} accepté",
|
|
35
|
-
"other": "Formats {{fileTypes}} acceptés"
|
|
36
|
+
"other": "Formats {{fileTypes}} acceptés",
|
|
37
|
+
"zero": null
|
|
36
38
|
},
|
|
37
39
|
"fileUpload.acceptedTypes.one": "Format {{fileTypes}} accepté",
|
|
38
40
|
"fileUpload.acceptedTypes.other": "Formats {{fileTypes}} acceptés",
|
|
39
41
|
"fileUpload.cancelled": {
|
|
42
|
+
"many": null,
|
|
40
43
|
"one": "Échec du téléchargement du fichier",
|
|
41
|
-
"other": "Échec du téléchargement du fichier"
|
|
44
|
+
"other": "Échec du téléchargement du fichier",
|
|
45
|
+
"zero": null
|
|
42
46
|
},
|
|
43
47
|
"fileUpload.cancelled.one": "Échec du téléchargement du fichier",
|
|
44
48
|
"fileUpload.cancelled.other": "Échec du téléchargement du fichier",
|
|
45
49
|
"fileUpload.close": "Fermer",
|
|
46
50
|
"fileUpload.instructions": {
|
|
51
|
+
"many": null,
|
|
47
52
|
"one": "Faites glisser et déposez votre fichier ici ou |recherchez un fichier| sur votre bureau.",
|
|
48
|
-
"other": "Faites glisser et déposez vos fichiers ici ou |recherchez des fichiers| sur votre bureau."
|
|
53
|
+
"other": "Faites glisser et déposez vos fichiers ici ou |recherchez des fichiers| sur votre bureau.",
|
|
54
|
+
"zero": null
|
|
49
55
|
},
|
|
50
56
|
"fileUpload.instructions.one": "Faites glisser et déposez votre fichier ici ou |recherchez un fichier| sur votre bureau.",
|
|
51
57
|
"fileUpload.instructions.other": "Faites glisser et déposez vos fichiers ici ou |recherchez des fichiers| sur votre bureau.",
|
|
@@ -31,21 +31,27 @@
|
|
|
31
31
|
"datepicker.preset.today": "Aujourd'hui",
|
|
32
32
|
"datepicker.presetsLabel": "Gammes",
|
|
33
33
|
"fileUpload.acceptedTypes": {
|
|
34
|
+
"many": null,
|
|
34
35
|
"one": "Format {{fileTypes}} accepté",
|
|
35
|
-
"other": "Formats {{fileTypes}} acceptés"
|
|
36
|
+
"other": "Formats {{fileTypes}} acceptés",
|
|
37
|
+
"zero": null
|
|
36
38
|
},
|
|
37
39
|
"fileUpload.acceptedTypes.one": "Format {{fileTypes}} accepté",
|
|
38
40
|
"fileUpload.acceptedTypes.other": "Formats {{fileTypes}} acceptés",
|
|
39
41
|
"fileUpload.cancelled": {
|
|
42
|
+
"many": null,
|
|
40
43
|
"one": "Échec du téléchargement du fichier",
|
|
41
|
-
"other": "Échec du téléchargement du fichier"
|
|
44
|
+
"other": "Échec du téléchargement du fichier",
|
|
45
|
+
"zero": null
|
|
42
46
|
},
|
|
43
47
|
"fileUpload.cancelled.one": "Échec du téléchargement du fichier",
|
|
44
48
|
"fileUpload.cancelled.other": "Échec du téléchargement du fichier",
|
|
45
49
|
"fileUpload.close": "Fermer",
|
|
46
50
|
"fileUpload.instructions": {
|
|
51
|
+
"many": null,
|
|
47
52
|
"one": "Faites glisser et déposez votre fichier ici ou |recherchez un fichier| sur votre bureau.",
|
|
48
|
-
"other": "Faites glisser et déposez vos fichiers ici ou |recherchez des fichiers| sur votre bureau."
|
|
53
|
+
"other": "Faites glisser et déposez vos fichiers ici ou |recherchez des fichiers| sur votre bureau.",
|
|
54
|
+
"zero": null
|
|
49
55
|
},
|
|
50
56
|
"fileUpload.instructions.one": "Faites glisser et déposez votre fichier ici ou |recherchez un fichier| sur votre bureau.",
|
|
51
57
|
"fileUpload.instructions.other": "Faites glisser et déposez vos fichiers ici ou |recherchez des fichiers| sur votre bureau.",
|
|
@@ -31,21 +31,27 @@
|
|
|
31
31
|
"datepicker.preset.today": "Oggi",
|
|
32
32
|
"datepicker.presetsLabel": "Gamme",
|
|
33
33
|
"fileUpload.acceptedTypes": {
|
|
34
|
+
"many": null,
|
|
34
35
|
"one": "Formato {{fileTypes}} accettato",
|
|
35
|
-
"other": "Formati accettati {{fileTypes}}"
|
|
36
|
+
"other": "Formati accettati {{fileTypes}}",
|
|
37
|
+
"zero": null
|
|
36
38
|
},
|
|
37
39
|
"fileUpload.acceptedTypes.one": "Formato {{fileTypes}} accettato",
|
|
38
40
|
"fileUpload.acceptedTypes.other": "Formati accettati {{fileTypes}}",
|
|
39
41
|
"fileUpload.cancelled": {
|
|
42
|
+
"many": null,
|
|
40
43
|
"one": "Caricamento file non riuscito",
|
|
41
|
-
"other": "Caricamento file non riuscito"
|
|
44
|
+
"other": "Caricamento file non riuscito",
|
|
45
|
+
"zero": null
|
|
42
46
|
},
|
|
43
47
|
"fileUpload.cancelled.one": "Caricamento file non riuscito",
|
|
44
48
|
"fileUpload.cancelled.other": "Caricamento file non riuscito",
|
|
45
49
|
"fileUpload.close": "Chiudi",
|
|
46
50
|
"fileUpload.instructions": {
|
|
51
|
+
"many": null,
|
|
47
52
|
"one": "Trascina e rilascia il tuo file qui oppure |cerca un file| sul desktop.",
|
|
48
|
-
"other": "Trascina e rilascia i tuoi file qui oppure |cerca file| sul desktop."
|
|
53
|
+
"other": "Trascina e rilascia i tuoi file qui oppure |cerca file| sul desktop.",
|
|
54
|
+
"zero": null
|
|
49
55
|
},
|
|
50
56
|
"fileUpload.instructions.one": "Trascina e rilascia il tuo file qui oppure |cerca un file| sul desktop.",
|
|
51
57
|
"fileUpload.instructions.other": "Trascina e rilascia i tuoi file qui oppure |cerca file| sul desktop.",
|
|
@@ -32,20 +32,23 @@
|
|
|
32
32
|
"datepicker.presetsLabel": "Bereiken",
|
|
33
33
|
"fileUpload.acceptedTypes": {
|
|
34
34
|
"one": "{{fileTypes}} formaat geaccepteerd",
|
|
35
|
-
"other": "{{fileTypes}} formaten geaccepteerd"
|
|
35
|
+
"other": "{{fileTypes}} formaten geaccepteerd",
|
|
36
|
+
"zero": null
|
|
36
37
|
},
|
|
37
38
|
"fileUpload.acceptedTypes.one": "{{fileTypes}} formaat geaccepteerd",
|
|
38
39
|
"fileUpload.acceptedTypes.other": "{{fileTypes}} formaten geaccepteerd",
|
|
39
40
|
"fileUpload.cancelled": {
|
|
40
41
|
"one": "Bestandsupload mislukt",
|
|
41
|
-
"other": "Bestandsupload(s) mislukt"
|
|
42
|
+
"other": "Bestandsupload(s) mislukt",
|
|
43
|
+
"zero": null
|
|
42
44
|
},
|
|
43
45
|
"fileUpload.cancelled.one": "Bestandsupload mislukt",
|
|
44
46
|
"fileUpload.cancelled.other": "Bestandsupload(s) mislukt",
|
|
45
47
|
"fileUpload.close": "Dicht",
|
|
46
48
|
"fileUpload.instructions": {
|
|
47
49
|
"one": "Sleep uw bestand hierheen of |blader naar een bestand| op uw bureaublad.",
|
|
48
|
-
"other": "Sleep uw bestanden hierheen of |blader naar bestanden| op uw bureaublad."
|
|
50
|
+
"other": "Sleep uw bestanden hierheen of |blader naar bestanden| op uw bureaublad.",
|
|
51
|
+
"zero": null
|
|
49
52
|
},
|
|
50
53
|
"fileUpload.instructions.one": "Sleep uw bestand hierheen of |blader naar een bestand| op uw bureaublad.",
|
|
51
54
|
"fileUpload.instructions.other": "Sleep uw bestanden hierheen of |blader naar bestanden| op uw bureaublad.",
|
|
@@ -31,18 +31,21 @@
|
|
|
31
31
|
"datepicker.preset.today": "今天",
|
|
32
32
|
"datepicker.presetsLabel": "范围",
|
|
33
33
|
"fileUpload.acceptedTypes": {
|
|
34
|
-
"other": "接受{{fileTypes}}个格式"
|
|
34
|
+
"other": "接受{{fileTypes}}个格式",
|
|
35
|
+
"zero": null
|
|
35
36
|
},
|
|
36
37
|
"fileUpload.acceptedTypes.one": "{{fileTypes}}格式已接受",
|
|
37
38
|
"fileUpload.acceptedTypes.other": "接受{{fileTypes}}个格式",
|
|
38
39
|
"fileUpload.cancelled": {
|
|
39
|
-
"other": "文件上传失败"
|
|
40
|
+
"other": "文件上传失败",
|
|
41
|
+
"zero": null
|
|
40
42
|
},
|
|
41
43
|
"fileUpload.cancelled.one": "文件上传失败",
|
|
42
44
|
"fileUpload.cancelled.other": "文件上传失败",
|
|
43
45
|
"fileUpload.close": "关闭",
|
|
44
46
|
"fileUpload.instructions": {
|
|
45
|
-
"other": "将您的文件拖放到此处或|浏览文件|到您的桌面上。"
|
|
47
|
+
"other": "将您的文件拖放到此处或|浏览文件|到您的桌面上。",
|
|
48
|
+
"zero": null
|
|
46
49
|
},
|
|
47
50
|
"fileUpload.instructions.one": "将您的文件拖放到此处或在桌面上|浏览文件|。",
|
|
48
51
|
"fileUpload.instructions.other": "将您的文件拖放到此处或|浏览文件|到您的桌面上。",
|
|
@@ -31,18 +31,21 @@
|
|
|
31
31
|
"datepicker.preset.today": "今天",
|
|
32
32
|
"datepicker.presetsLabel": "範圍",
|
|
33
33
|
"fileUpload.acceptedTypes": {
|
|
34
|
-
"other": "接受{{fileTypes}}個格式"
|
|
34
|
+
"other": "接受{{fileTypes}}個格式",
|
|
35
|
+
"zero": null
|
|
35
36
|
},
|
|
36
37
|
"fileUpload.acceptedTypes.one": "{{fileTypes}}格式已接受",
|
|
37
38
|
"fileUpload.acceptedTypes.other": "接受{{fileTypes}}個格式",
|
|
38
39
|
"fileUpload.cancelled": {
|
|
39
|
-
"other": "文件上傳失敗"
|
|
40
|
+
"other": "文件上傳失敗",
|
|
41
|
+
"zero": null
|
|
40
42
|
},
|
|
41
43
|
"fileUpload.cancelled.one": "文件上傳失敗",
|
|
42
44
|
"fileUpload.cancelled.other": "文件上傳失敗",
|
|
43
45
|
"fileUpload.close": "關閉",
|
|
44
46
|
"fileUpload.instructions": {
|
|
45
|
-
"other": "將您的文件拖曳到此處或|瀏覽文件|到您的桌面上。"
|
|
47
|
+
"other": "將您的文件拖曳到此處或|瀏覽文件|到您的桌面上。",
|
|
48
|
+
"zero": null
|
|
46
49
|
},
|
|
47
50
|
"fileUpload.instructions.one": "將您的文件拖放到此處或在桌面上|瀏覽文件|。",
|
|
48
51
|
"fileUpload.instructions.other": "將您的文件拖曳到此處或|瀏覽文件|到您的桌面上。",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@spscommerce/i18n",
|
|
3
3
|
"description": "SPS Design System React components",
|
|
4
|
-
"version": "8.34.
|
|
4
|
+
"version": "8.34.10",
|
|
5
5
|
"author": "SPS Commerce",
|
|
6
6
|
"license": "UNLICENSED",
|
|
7
7
|
"repository": "https://github.com/spscommerce/woodland/tree/main/packages/@spscommerce/i18n",
|