carbon-react 136.0.4 → 137.0.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/esm/locales/de-de.d.ts +3 -0
- package/esm/locales/de-de.js +206 -0
- package/esm/locales/en-ca.d.ts +3 -0
- package/esm/locales/en-ca.js +12 -0
- package/esm/locales/en-us.d.ts +3 -0
- package/esm/locales/en-us.js +12 -0
- package/esm/locales/es-es.d.ts +3 -0
- package/esm/locales/{__internal__/es-es.js → es-es.js} +40 -40
- package/esm/locales/fr-ca.d.ts +3 -0
- package/esm/locales/fr-ca.js +207 -0
- package/esm/locales/fr-fr.d.ts +3 -0
- package/esm/locales/fr-fr.js +207 -0
- package/esm/locales/index.d.ts +7 -1
- package/esm/locales/index.js +7 -1
- package/lib/locales/de-de.d.ts +3 -0
- package/lib/locales/de-de.js +213 -0
- package/lib/locales/en-ca.d.ts +3 -0
- package/lib/locales/en-ca.js +19 -0
- package/lib/locales/en-us.d.ts +3 -0
- package/lib/locales/en-us.js +19 -0
- package/lib/locales/es-es.d.ts +3 -0
- package/lib/locales/{__internal__/es-es.js → es-es.js} +38 -38
- package/lib/locales/fr-ca.d.ts +3 -0
- package/lib/locales/fr-ca.js +214 -0
- package/lib/locales/fr-fr.d.ts +3 -0
- package/lib/locales/fr-fr.js +214 -0
- package/lib/locales/index.d.ts +7 -1
- package/lib/locales/index.js +43 -1
- package/package.json +1 -1
- package/esm/locales/__internal__/es-es.d.ts +0 -3
- package/lib/locales/__internal__/es-es.d.ts +0 -3
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _frCA = _interopRequireDefault(require("date-fns/locale/fr-CA"));
|
|
8
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
9
|
+
const isSingular = count => (typeof count === "string" ? parseInt(count) : count) === 1;
|
|
10
|
+
const frCA = {
|
|
11
|
+
locale: () => "fr-CA",
|
|
12
|
+
actions: {
|
|
13
|
+
edit: () => "Modifier",
|
|
14
|
+
delete: () => "Supprimer"
|
|
15
|
+
},
|
|
16
|
+
actionPopover: {
|
|
17
|
+
ariaLabel: () => "actions"
|
|
18
|
+
},
|
|
19
|
+
advancedColorPicker: {
|
|
20
|
+
ariaLabel: () => "Changer de couleur",
|
|
21
|
+
currentColorDescriptionTerm: () => "Couleur actuellement attribuée :",
|
|
22
|
+
currentColorAssigned: currentColor => currentColor
|
|
23
|
+
},
|
|
24
|
+
batchSelection: {
|
|
25
|
+
selected: count => `${count} sélectionné(s)`
|
|
26
|
+
},
|
|
27
|
+
breadcrumbs: {
|
|
28
|
+
ariaLabel: () => "chemins de navigation"
|
|
29
|
+
},
|
|
30
|
+
confirm: {
|
|
31
|
+
no: () => "Non",
|
|
32
|
+
yes: () => "Oui"
|
|
33
|
+
},
|
|
34
|
+
characterCount: {
|
|
35
|
+
tooManyCharacters: (count, formattedCount) => count === 1 ? `${formattedCount} caractère de trop` : `${formattedCount} caractères de trop`,
|
|
36
|
+
charactersLeft: (count, formattedCount) => count === 1 ? `${formattedCount} caractère restant` : `${formattedCount} caractères restants`,
|
|
37
|
+
visuallyHiddenHint: formattedCount => `vous pouvez saisir jusqu'à ${formattedCount} caractères.`
|
|
38
|
+
},
|
|
39
|
+
date: {
|
|
40
|
+
dateFnsLocale: () => _frCA.default,
|
|
41
|
+
ariaLabels: {
|
|
42
|
+
previousMonthButton: () => "Mois précédent",
|
|
43
|
+
nextMonthButton: () => "Mois suivant"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
dialog: {
|
|
47
|
+
ariaLabels: {
|
|
48
|
+
close: () => "Fermer"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
dialogFullScreen: {
|
|
52
|
+
ariaLabels: {
|
|
53
|
+
close: () => "Fermer"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
dismissibleBox: {
|
|
57
|
+
ariaLabels: {
|
|
58
|
+
close: () => "Fermer"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
errors: {
|
|
62
|
+
messages: {
|
|
63
|
+
formSummary: /* istanbul ignore next */
|
|
64
|
+
(errors, warnings, type) => {
|
|
65
|
+
const errorPlural = isSingular(errors) ? "erreur" : "erreurs";
|
|
66
|
+
const warningPlural = isSingular(warnings) ? "avertissement" : "avertissements";
|
|
67
|
+
if (errors && warnings && type === "warning") {
|
|
68
|
+
return ["et", `${warnings} ${warningPlural}`];
|
|
69
|
+
}
|
|
70
|
+
if (errors) {
|
|
71
|
+
return ["Il y a", `${errors} ${errorPlural}`];
|
|
72
|
+
}
|
|
73
|
+
if (warnings) {
|
|
74
|
+
return ["Il y a", `${warnings} ${warningPlural}`];
|
|
75
|
+
}
|
|
76
|
+
return null;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
fileInput: {
|
|
81
|
+
dragAndDrop: () => "ou glissez et déposez-le ici.",
|
|
82
|
+
selectFile: () => "Sélectionnez le fichier",
|
|
83
|
+
fileUploadStatus: () => "État du téléversement des fichiers",
|
|
84
|
+
actions: {
|
|
85
|
+
cancel: () => "Annuler le téléversement",
|
|
86
|
+
clear: () => "Effacer",
|
|
87
|
+
delete: () => "Supprimer le fichier"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
heading: {
|
|
91
|
+
backLinkAriaLabel: () => "Retour"
|
|
92
|
+
},
|
|
93
|
+
link: {
|
|
94
|
+
skipLinkLabel: () => "Passer au contenu principal"
|
|
95
|
+
},
|
|
96
|
+
loader: {
|
|
97
|
+
loading: () => "Chargement"
|
|
98
|
+
},
|
|
99
|
+
loaderSpinner: {
|
|
100
|
+
loading: () => "Chargement..."
|
|
101
|
+
},
|
|
102
|
+
menuFullscreen: {
|
|
103
|
+
ariaLabels: {
|
|
104
|
+
closeButton: () => "Fermer"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
message: {
|
|
108
|
+
closeButtonAriaLabel: () => "Fermer"
|
|
109
|
+
},
|
|
110
|
+
numeralDate: {
|
|
111
|
+
validation: {
|
|
112
|
+
day: (month, daysInMonth) => {
|
|
113
|
+
if (month && daysInMonth) {
|
|
114
|
+
return `Le jour du ${month} doit être un nombre compris entre 1- ${daysInMonth}`;
|
|
115
|
+
}
|
|
116
|
+
return "Le jour doit être un nombre compris entre 1 et 31 jours.";
|
|
117
|
+
},
|
|
118
|
+
month: () => "Le mois doit être un nombre compris entre 1 et 12.",
|
|
119
|
+
year: () => "L'année doit être un nombre compris entre 1800 et 2200."
|
|
120
|
+
},
|
|
121
|
+
labels: {
|
|
122
|
+
day: () => "Jour",
|
|
123
|
+
month: () => "Mois",
|
|
124
|
+
year: () => "Année"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
pager: {
|
|
128
|
+
show: () => "Afficher",
|
|
129
|
+
records: (count, showNumber = true) => {
|
|
130
|
+
const noun = isSingular(count) ? "élément" : "éléments";
|
|
131
|
+
return showNumber ? `${count} ${noun}` : noun;
|
|
132
|
+
},
|
|
133
|
+
first: () => "Première",
|
|
134
|
+
last: () => "Dernière",
|
|
135
|
+
next: () => "Suivante",
|
|
136
|
+
previous: () => "Précédente",
|
|
137
|
+
pageX: () => "Page",
|
|
138
|
+
ofY: count => `de ${count}`
|
|
139
|
+
},
|
|
140
|
+
password: {
|
|
141
|
+
ariaLiveShownMessage: () => "Votre mot de passe a été affiché. Si vous pouvez le faire en toute sécurité, focalisez sur la zone de saisie du mot de passe pour qu’il vous soit lu.",
|
|
142
|
+
ariaLiveHiddenMessage: () => "Votre mot de passe est actuellement masqué."
|
|
143
|
+
},
|
|
144
|
+
progressTracker: {
|
|
145
|
+
of: () => "de"
|
|
146
|
+
},
|
|
147
|
+
pod: {
|
|
148
|
+
undo: () => "Annuler"
|
|
149
|
+
},
|
|
150
|
+
search: {
|
|
151
|
+
searchButtonText: () => "Chercher"
|
|
152
|
+
},
|
|
153
|
+
select: {
|
|
154
|
+
actionButtonText: () => "Ajouter un nouvel élément",
|
|
155
|
+
placeholder: () => "Sélectionner...",
|
|
156
|
+
noResultsForTerm: term => `Aucun résultat pour ${term}`
|
|
157
|
+
},
|
|
158
|
+
sidebar: {
|
|
159
|
+
ariaLabels: {
|
|
160
|
+
close: () => "Fermer"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
sort: {
|
|
164
|
+
accessibleName: (sortContent, sortType) => `Trier tous les contenus ${sortContent && `de type ${sortContent}`}${sortType ? ` par ordre ${sortType === "ascending" ? "croissant" : "décroissant"}.` : " par ordre croissant ou décroissant."}`
|
|
165
|
+
},
|
|
166
|
+
splitButton: {
|
|
167
|
+
ariaLabel: () => "Afficher plus"
|
|
168
|
+
},
|
|
169
|
+
stepFlow: {
|
|
170
|
+
stepLabel: (currentStep, totalSteps) => `Étape ${currentStep} de ${totalSteps}`,
|
|
171
|
+
screenReaderOnlyTitle: (title, currentStep, totalSteps, category) => `${category ? `${category}.` : ""} ${title}. Étape ${currentStep} de ${totalSteps}.`,
|
|
172
|
+
closeIconAriaLabel: () => "Fermer"
|
|
173
|
+
},
|
|
174
|
+
switch: {
|
|
175
|
+
on: () => "OUI",
|
|
176
|
+
off: () => "NON"
|
|
177
|
+
},
|
|
178
|
+
textEditor: {
|
|
179
|
+
tooltipMessages: {
|
|
180
|
+
bold: () => "Gras",
|
|
181
|
+
italic: () => "Italique",
|
|
182
|
+
bulletList: () => "Liste à puces",
|
|
183
|
+
numberList: () => "Liste numérotée"
|
|
184
|
+
},
|
|
185
|
+
ariaLabels: {
|
|
186
|
+
bold: () => "gras",
|
|
187
|
+
italic: () => "italique",
|
|
188
|
+
bulletList: () => "liste-à-puces",
|
|
189
|
+
numberList: () => "liste-numérotée"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
tileSelect: {
|
|
193
|
+
deselect: () => "Désélectionner"
|
|
194
|
+
},
|
|
195
|
+
time: {
|
|
196
|
+
amText: () => "AM",
|
|
197
|
+
pmText: () => "PM",
|
|
198
|
+
hoursLabelText: () => "Hres",
|
|
199
|
+
minutesLabelText: () => "Mins.",
|
|
200
|
+
hoursAriaLabelText: () => "Heures",
|
|
201
|
+
minutesAriaLabelText: () => "Minutes"
|
|
202
|
+
},
|
|
203
|
+
toast: {
|
|
204
|
+
ariaLabels: {
|
|
205
|
+
close: () => "Fermer"
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
verticalMenuFullScreen: {
|
|
209
|
+
ariaLabels: {
|
|
210
|
+
close: () => "Fermer"
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
};
|
|
214
|
+
var _default = exports.default = frCA;
|
|
@@ -0,0 +1,214 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _fr = _interopRequireDefault(require("date-fns/locale/fr"));
|
|
8
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
9
|
+
const isSingular = count => (typeof count === "string" ? parseInt(count) : count) === 1;
|
|
10
|
+
const frFR = {
|
|
11
|
+
locale: () => "fr-FR",
|
|
12
|
+
actions: {
|
|
13
|
+
edit: () => "Modifier",
|
|
14
|
+
delete: () => "Supprimer"
|
|
15
|
+
},
|
|
16
|
+
actionPopover: {
|
|
17
|
+
ariaLabel: () => "actions"
|
|
18
|
+
},
|
|
19
|
+
advancedColorPicker: {
|
|
20
|
+
ariaLabel: () => "Changer de couleur",
|
|
21
|
+
currentColorDescriptionTerm: () => "Couleur actuelle attribuée :",
|
|
22
|
+
currentColorAssigned: currentColor => currentColor
|
|
23
|
+
},
|
|
24
|
+
batchSelection: {
|
|
25
|
+
selected: count => `${count} sélectionné(s)`
|
|
26
|
+
},
|
|
27
|
+
breadcrumbs: {
|
|
28
|
+
ariaLabel: () => "Chemin de navigation"
|
|
29
|
+
},
|
|
30
|
+
confirm: {
|
|
31
|
+
no: () => "Non",
|
|
32
|
+
yes: () => "Oui"
|
|
33
|
+
},
|
|
34
|
+
characterCount: {
|
|
35
|
+
tooManyCharacters: (count, formattedCount) => count === 1 ? `il y a ${formattedCount} caractère de trop` : `${formattedCount} caractères de trop`,
|
|
36
|
+
charactersLeft: (count, formattedCount) => count === 1 ? `${formattedCount} caractère restant` : `${formattedCount} caractères restants`,
|
|
37
|
+
visuallyHiddenHint: formattedCount => `vous pouvez saisir jusqu'à ${formattedCount} caractères.`
|
|
38
|
+
},
|
|
39
|
+
date: {
|
|
40
|
+
dateFnsLocale: () => _fr.default,
|
|
41
|
+
ariaLabels: {
|
|
42
|
+
previousMonthButton: () => "Mois précédent",
|
|
43
|
+
nextMonthButton: () => "Mois suivant"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
dialog: {
|
|
47
|
+
ariaLabels: {
|
|
48
|
+
close: () => "Fermer"
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
dialogFullScreen: {
|
|
52
|
+
ariaLabels: {
|
|
53
|
+
close: () => "Fermer"
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
dismissibleBox: {
|
|
57
|
+
ariaLabels: {
|
|
58
|
+
close: () => "Fermer"
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
errors: {
|
|
62
|
+
messages: {
|
|
63
|
+
formSummary: /* istanbul ignore next */
|
|
64
|
+
(errors, warnings, type) => {
|
|
65
|
+
const errorPlural = isSingular(errors) ? "erreur" : "erreurs";
|
|
66
|
+
const warningPlural = isSingular(warnings) ? "avertissement" : "avertissements";
|
|
67
|
+
if (errors && warnings && type === "warning") {
|
|
68
|
+
return ["et", `${warnings} ${warningPlural}`];
|
|
69
|
+
}
|
|
70
|
+
if (errors) {
|
|
71
|
+
return ["Il y a", `${errors} ${errorPlural}`];
|
|
72
|
+
}
|
|
73
|
+
if (warnings) {
|
|
74
|
+
return ["Il y a", `${warnings} ${warningPlural}`];
|
|
75
|
+
}
|
|
76
|
+
return null;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
fileInput: {
|
|
81
|
+
dragAndDrop: () => "ou glisser et déposer votre fichier",
|
|
82
|
+
selectFile: () => "Sélectionnez le fichier",
|
|
83
|
+
fileUploadStatus: () => "Statut du téléchargement de fichiers",
|
|
84
|
+
actions: {
|
|
85
|
+
cancel: () => "Annuler le téléchargement",
|
|
86
|
+
clear: () => "Effacer",
|
|
87
|
+
delete: () => "Supprimer le fichier"
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
heading: {
|
|
91
|
+
backLinkAriaLabel: () => "Retour"
|
|
92
|
+
},
|
|
93
|
+
link: {
|
|
94
|
+
skipLinkLabel: () => "Passer au contenu principal"
|
|
95
|
+
},
|
|
96
|
+
loader: {
|
|
97
|
+
loading: () => "Téléhargement"
|
|
98
|
+
},
|
|
99
|
+
loaderSpinner: {
|
|
100
|
+
loading: () => "Téléhargement..."
|
|
101
|
+
},
|
|
102
|
+
menuFullscreen: {
|
|
103
|
+
ariaLabels: {
|
|
104
|
+
closeButton: () => "Fermer"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
message: {
|
|
108
|
+
closeButtonAriaLabel: () => "Fermer"
|
|
109
|
+
},
|
|
110
|
+
numeralDate: {
|
|
111
|
+
validation: {
|
|
112
|
+
day: (month, daysInMonth) => {
|
|
113
|
+
if (month && daysInMonth) {
|
|
114
|
+
return `Le jour du ${month} doit être un nombre compris entre 1- ${daysInMonth}`;
|
|
115
|
+
}
|
|
116
|
+
return "Le jour doit être un nombre compris entre 1 et 31 jours.";
|
|
117
|
+
},
|
|
118
|
+
month: () => "Le mois doit être un nombre compris entre 1 et 12.",
|
|
119
|
+
year: () => "L'année doit être un nombre compris entre 1800 et 2200."
|
|
120
|
+
},
|
|
121
|
+
labels: {
|
|
122
|
+
day: () => "Jour",
|
|
123
|
+
month: () => "Mois",
|
|
124
|
+
year: () => "Année"
|
|
125
|
+
}
|
|
126
|
+
},
|
|
127
|
+
pager: {
|
|
128
|
+
show: () => "Afficher",
|
|
129
|
+
records: (count, showNumber = true) => {
|
|
130
|
+
const noun = isSingular(count) ? "élément" : "éléments";
|
|
131
|
+
return showNumber ? `${count} ${noun}` : noun;
|
|
132
|
+
},
|
|
133
|
+
first: () => "Première",
|
|
134
|
+
last: () => "Dernière",
|
|
135
|
+
next: () => "Suivante",
|
|
136
|
+
previous: () => "Précédente",
|
|
137
|
+
pageX: () => "Page",
|
|
138
|
+
ofY: count => `de ${count}`
|
|
139
|
+
},
|
|
140
|
+
password: {
|
|
141
|
+
ariaLiveShownMessage: () => "Votre mot de passe s'affiche. Assurez-vous d'être dans un environnement sûr puis survolez la zone avec votre souris et vous pourrez écouter le mot de passe.",
|
|
142
|
+
ariaLiveHiddenMessage: () => "Votre mot de passe est actuellement caché."
|
|
143
|
+
},
|
|
144
|
+
progressTracker: {
|
|
145
|
+
of: () => "de"
|
|
146
|
+
},
|
|
147
|
+
pod: {
|
|
148
|
+
undo: () => "Annuler"
|
|
149
|
+
},
|
|
150
|
+
search: {
|
|
151
|
+
searchButtonText: () => "Rechercher"
|
|
152
|
+
},
|
|
153
|
+
select: {
|
|
154
|
+
actionButtonText: () => "Ajouter un nouvel élément",
|
|
155
|
+
placeholder: () => "Sélectionner...",
|
|
156
|
+
noResultsForTerm: term => `Aucun résultat pour ${term}`
|
|
157
|
+
},
|
|
158
|
+
sidebar: {
|
|
159
|
+
ariaLabels: {
|
|
160
|
+
close: () => "Fermer"
|
|
161
|
+
}
|
|
162
|
+
},
|
|
163
|
+
sort: {
|
|
164
|
+
accessibleName: (sortContent, sortType) => `Trier tous les contenus ${sortContent && `de type ${sortContent}`}${sortType ? ` par ordre ${sortType === "ascending" ? "croissant" : "décroissant"}.` : " par ordre croissant ou décroissant."}`
|
|
165
|
+
},
|
|
166
|
+
splitButton: {
|
|
167
|
+
ariaLabel: () => "Afficher plus"
|
|
168
|
+
},
|
|
169
|
+
stepFlow: {
|
|
170
|
+
stepLabel: (currentStep, totalSteps) => `Étape ${currentStep} de ${totalSteps}`,
|
|
171
|
+
screenReaderOnlyTitle: (title, currentStep, totalSteps, category) => `${category ? `${category}.` : ""} ${title}. Étape ${currentStep} de ${totalSteps}.`,
|
|
172
|
+
closeIconAriaLabel: () => "Fermer"
|
|
173
|
+
},
|
|
174
|
+
switch: {
|
|
175
|
+
on: () => "Oui",
|
|
176
|
+
off: () => "Désactiver"
|
|
177
|
+
},
|
|
178
|
+
textEditor: {
|
|
179
|
+
tooltipMessages: {
|
|
180
|
+
bold: () => "Gras",
|
|
181
|
+
italic: () => "Italique",
|
|
182
|
+
bulletList: () => "Liste à puces",
|
|
183
|
+
numberList: () => "Liste numérotée"
|
|
184
|
+
},
|
|
185
|
+
ariaLabels: {
|
|
186
|
+
bold: () => "gras",
|
|
187
|
+
italic: () => "italique",
|
|
188
|
+
bulletList: () => "liste à puces",
|
|
189
|
+
numberList: () => "liste numérotée"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
tileSelect: {
|
|
193
|
+
deselect: () => "Désélectionner"
|
|
194
|
+
},
|
|
195
|
+
time: {
|
|
196
|
+
amText: () => "AM",
|
|
197
|
+
pmText: () => "PM",
|
|
198
|
+
hoursLabelText: () => "h",
|
|
199
|
+
minutesLabelText: () => "min",
|
|
200
|
+
hoursAriaLabelText: () => "Heures",
|
|
201
|
+
minutesAriaLabelText: () => "Minutes"
|
|
202
|
+
},
|
|
203
|
+
toast: {
|
|
204
|
+
ariaLabels: {
|
|
205
|
+
close: () => "Fermer"
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
verticalMenuFullScreen: {
|
|
209
|
+
ariaLabels: {
|
|
210
|
+
close: () => "Fermer"
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
};
|
|
214
|
+
var _default = exports.default = frFR;
|
package/lib/locales/index.d.ts
CHANGED
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
export type { default } from "./locale";
|
|
2
|
-
export { default as
|
|
2
|
+
export { default as enGB } from "./en-gb";
|
|
3
|
+
export { default as deDE } from "./de-de";
|
|
4
|
+
export { default as enCA } from "./en-ca";
|
|
5
|
+
export { default as enUS } from "./en-us";
|
|
6
|
+
export { default as esES } from "./es-es";
|
|
7
|
+
export { default as frCA } from "./fr-ca";
|
|
8
|
+
export { default as frFR } from "./fr-fr";
|
package/lib/locales/index.js
CHANGED
|
@@ -3,11 +3,53 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
Object.defineProperty(exports, "
|
|
6
|
+
Object.defineProperty(exports, "deDE", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _deDe.default;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
Object.defineProperty(exports, "enCA", {
|
|
13
|
+
enumerable: true,
|
|
14
|
+
get: function () {
|
|
15
|
+
return _enCa.default;
|
|
16
|
+
}
|
|
17
|
+
});
|
|
18
|
+
Object.defineProperty(exports, "enGB", {
|
|
7
19
|
enumerable: true,
|
|
8
20
|
get: function () {
|
|
9
21
|
return _enGb.default;
|
|
10
22
|
}
|
|
11
23
|
});
|
|
24
|
+
Object.defineProperty(exports, "enUS", {
|
|
25
|
+
enumerable: true,
|
|
26
|
+
get: function () {
|
|
27
|
+
return _enUs.default;
|
|
28
|
+
}
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(exports, "esES", {
|
|
31
|
+
enumerable: true,
|
|
32
|
+
get: function () {
|
|
33
|
+
return _esEs.default;
|
|
34
|
+
}
|
|
35
|
+
});
|
|
36
|
+
Object.defineProperty(exports, "frCA", {
|
|
37
|
+
enumerable: true,
|
|
38
|
+
get: function () {
|
|
39
|
+
return _frCa.default;
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
Object.defineProperty(exports, "frFR", {
|
|
43
|
+
enumerable: true,
|
|
44
|
+
get: function () {
|
|
45
|
+
return _frFr.default;
|
|
46
|
+
}
|
|
47
|
+
});
|
|
12
48
|
var _enGb = _interopRequireDefault(require("./en-gb"));
|
|
49
|
+
var _deDe = _interopRequireDefault(require("./de-de"));
|
|
50
|
+
var _enCa = _interopRequireDefault(require("./en-ca"));
|
|
51
|
+
var _enUs = _interopRequireDefault(require("./en-us"));
|
|
52
|
+
var _esEs = _interopRequireDefault(require("./es-es"));
|
|
53
|
+
var _frCa = _interopRequireDefault(require("./fr-ca"));
|
|
54
|
+
var _frFr = _interopRequireDefault(require("./fr-fr"));
|
|
13
55
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
package/package.json
CHANGED