@1024pix/epreuves-components 0.9.6 → 0.10.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.
@@ -0,0 +1,1407 @@
1
+ import { s as be, n as Oe, a as Le, i as we } from "./_plugin-vue_export-helper-CGpZIhKK.js";
2
+ const d = (o) => typeof o == "string", K = () => {
3
+ let o, e;
4
+ const t = new Promise((i, s) => {
5
+ o = i, e = s;
6
+ });
7
+ return t.resolve = o, t.reject = e, t;
8
+ }, ee = (o) => o == null ? "" : "" + o, ve = (o, e, t) => {
9
+ o.forEach((i) => {
10
+ e[i] && (t[i] = e[i]);
11
+ });
12
+ }, Re = /###/g, te = (o) => o && o.indexOf("###") > -1 ? o.replace(Re, ".") : o, se = (o) => !o || d(o), A = (o, e, t) => {
13
+ const i = d(e) ? e.split(".") : e;
14
+ let s = 0;
15
+ for (; s < i.length - 1; ) {
16
+ if (se(o)) return {};
17
+ const n = te(i[s]);
18
+ !o[n] && t && (o[n] = new t()), Object.prototype.hasOwnProperty.call(o, n) ? o = o[n] : o = {}, ++s;
19
+ }
20
+ return se(o) ? {} : {
21
+ obj: o,
22
+ k: te(i[s])
23
+ };
24
+ }, ie = (o, e, t) => {
25
+ const {
26
+ obj: i,
27
+ k: s
28
+ } = A(o, e, Object);
29
+ if (i !== void 0 || e.length === 1) {
30
+ i[s] = t;
31
+ return;
32
+ }
33
+ let n = e[e.length - 1], r = e.slice(0, e.length - 1), a = A(o, r, Object);
34
+ for (; a.obj === void 0 && r.length; )
35
+ n = `${r[r.length - 1]}.${n}`, r = r.slice(0, r.length - 1), a = A(o, r, Object), a?.obj && typeof a.obj[`${a.k}.${n}`] < "u" && (a.obj = void 0);
36
+ a.obj[`${a.k}.${n}`] = t;
37
+ }, Ce = (o, e, t, i) => {
38
+ const {
39
+ obj: s,
40
+ k: n
41
+ } = A(o, e, Object);
42
+ s[n] = s[n] || [], s[n].push(t);
43
+ }, B = (o, e) => {
44
+ const {
45
+ obj: t,
46
+ k: i
47
+ } = A(o, e);
48
+ if (t && Object.prototype.hasOwnProperty.call(t, i))
49
+ return t[i];
50
+ }, Pe = (o, e, t) => {
51
+ const i = B(o, t);
52
+ return i !== void 0 ? i : B(e, t);
53
+ }, pe = (o, e, t) => {
54
+ for (const i in e)
55
+ i !== "__proto__" && i !== "constructor" && (i in o ? d(o[i]) || o[i] instanceof String || d(e[i]) || e[i] instanceof String ? t && (o[i] = e[i]) : pe(o[i], e[i], t) : o[i] = e[i]);
56
+ return o;
57
+ }, T = (o) => o.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, "\\$&");
58
+ var $e = {
59
+ "&": "&amp;",
60
+ "<": "&lt;",
61
+ ">": "&gt;",
62
+ '"': "&quot;",
63
+ "'": "&#39;",
64
+ "/": "&#x2F;"
65
+ };
66
+ const Ne = (o) => d(o) ? o.replace(/[&<>"'\/]/g, (e) => $e[e]) : o;
67
+ class ke {
68
+ constructor(e) {
69
+ this.capacity = e, this.regExpMap = /* @__PURE__ */ new Map(), this.regExpQueue = [];
70
+ }
71
+ getRegExp(e) {
72
+ const t = this.regExpMap.get(e);
73
+ if (t !== void 0)
74
+ return t;
75
+ const i = new RegExp(e);
76
+ return this.regExpQueue.length === this.capacity && this.regExpMap.delete(this.regExpQueue.shift()), this.regExpMap.set(e, i), this.regExpQueue.push(e), i;
77
+ }
78
+ }
79
+ const Ee = [" ", ",", "?", "!", ";"], Fe = new ke(20), je = (o, e, t) => {
80
+ e = e || "", t = t || "";
81
+ const i = Ee.filter((r) => e.indexOf(r) < 0 && t.indexOf(r) < 0);
82
+ if (i.length === 0) return !0;
83
+ const s = Fe.getRegExp(`(${i.map((r) => r === "?" ? "\\?" : r).join("|")})`);
84
+ let n = !s.test(o);
85
+ if (!n) {
86
+ const r = o.indexOf(t);
87
+ r > 0 && !s.test(o.substring(0, r)) && (n = !0);
88
+ }
89
+ return n;
90
+ }, Y = (o, e, t = ".") => {
91
+ if (!o) return;
92
+ if (o[e])
93
+ return Object.prototype.hasOwnProperty.call(o, e) ? o[e] : void 0;
94
+ const i = e.split(t);
95
+ let s = o;
96
+ for (let n = 0; n < i.length; ) {
97
+ if (!s || typeof s != "object")
98
+ return;
99
+ let r, a = "";
100
+ for (let l = n; l < i.length; ++l)
101
+ if (l !== n && (a += t), a += i[l], r = s[a], r !== void 0) {
102
+ if (["string", "number", "boolean"].indexOf(typeof r) > -1 && l < i.length - 1)
103
+ continue;
104
+ n += l - n + 1;
105
+ break;
106
+ }
107
+ s = r;
108
+ }
109
+ return s;
110
+ }, U = (o) => o?.replace("_", "-"), Ie = {
111
+ type: "logger",
112
+ log(o) {
113
+ this.output("log", o);
114
+ },
115
+ warn(o) {
116
+ this.output("warn", o);
117
+ },
118
+ error(o) {
119
+ this.output("error", o);
120
+ },
121
+ output(o, e) {
122
+ console?.[o]?.apply?.(console, e);
123
+ }
124
+ };
125
+ class J {
126
+ constructor(e, t = {}) {
127
+ this.init(e, t);
128
+ }
129
+ init(e, t = {}) {
130
+ this.prefix = t.prefix || "i18next:", this.logger = e || Ie, this.options = t, this.debug = t.debug;
131
+ }
132
+ log(...e) {
133
+ return this.forward(e, "log", "", !0);
134
+ }
135
+ warn(...e) {
136
+ return this.forward(e, "warn", "", !0);
137
+ }
138
+ error(...e) {
139
+ return this.forward(e, "error", "");
140
+ }
141
+ deprecate(...e) {
142
+ return this.forward(e, "warn", "WARNING DEPRECATED: ", !0);
143
+ }
144
+ forward(e, t, i, s) {
145
+ return s && !this.debug ? null : (d(e[0]) && (e[0] = `${i}${this.prefix} ${e[0]}`), this.logger[t](e));
146
+ }
147
+ create(e) {
148
+ return new J(this.logger, {
149
+ prefix: `${this.prefix}:${e}:`,
150
+ ...this.options
151
+ });
152
+ }
153
+ clone(e) {
154
+ return e = e || this.options, e.prefix = e.prefix || this.prefix, new J(this.logger, e);
155
+ }
156
+ }
157
+ var P = new J();
158
+ class W {
159
+ constructor() {
160
+ this.observers = {};
161
+ }
162
+ on(e, t) {
163
+ return e.split(" ").forEach((i) => {
164
+ this.observers[i] || (this.observers[i] = /* @__PURE__ */ new Map());
165
+ const s = this.observers[i].get(t) || 0;
166
+ this.observers[i].set(t, s + 1);
167
+ }), this;
168
+ }
169
+ off(e, t) {
170
+ if (this.observers[e]) {
171
+ if (!t) {
172
+ delete this.observers[e];
173
+ return;
174
+ }
175
+ this.observers[e].delete(t);
176
+ }
177
+ }
178
+ emit(e, ...t) {
179
+ this.observers[e] && Array.from(this.observers[e].entries()).forEach(([s, n]) => {
180
+ for (let r = 0; r < n; r++)
181
+ s(...t);
182
+ }), this.observers["*"] && Array.from(this.observers["*"].entries()).forEach(([s, n]) => {
183
+ for (let r = 0; r < n; r++)
184
+ s.apply(s, [e, ...t]);
185
+ });
186
+ }
187
+ }
188
+ class ne extends W {
189
+ constructor(e, t = {
190
+ ns: ["translation"],
191
+ defaultNS: "translation"
192
+ }) {
193
+ super(), this.data = e || {}, this.options = t, this.options.keySeparator === void 0 && (this.options.keySeparator = "."), this.options.ignoreJSONStructure === void 0 && (this.options.ignoreJSONStructure = !0);
194
+ }
195
+ addNamespaces(e) {
196
+ this.options.ns.indexOf(e) < 0 && this.options.ns.push(e);
197
+ }
198
+ removeNamespaces(e) {
199
+ const t = this.options.ns.indexOf(e);
200
+ t > -1 && this.options.ns.splice(t, 1);
201
+ }
202
+ getResource(e, t, i, s = {}) {
203
+ const n = s.keySeparator !== void 0 ? s.keySeparator : this.options.keySeparator, r = s.ignoreJSONStructure !== void 0 ? s.ignoreJSONStructure : this.options.ignoreJSONStructure;
204
+ let a;
205
+ e.indexOf(".") > -1 ? a = e.split(".") : (a = [e, t], i && (Array.isArray(i) ? a.push(...i) : d(i) && n ? a.push(...i.split(n)) : a.push(i)));
206
+ const l = B(this.data, a);
207
+ return !l && !t && !i && e.indexOf(".") > -1 && (e = a[0], t = a[1], i = a.slice(2).join(".")), l || !r || !d(i) ? l : Y(this.data?.[e]?.[t], i, n);
208
+ }
209
+ addResource(e, t, i, s, n = {
210
+ silent: !1
211
+ }) {
212
+ const r = n.keySeparator !== void 0 ? n.keySeparator : this.options.keySeparator;
213
+ let a = [e, t];
214
+ i && (a = a.concat(r ? i.split(r) : i)), e.indexOf(".") > -1 && (a = e.split("."), s = t, t = a[1]), this.addNamespaces(t), ie(this.data, a, s), n.silent || this.emit("added", e, t, i, s);
215
+ }
216
+ addResources(e, t, i, s = {
217
+ silent: !1
218
+ }) {
219
+ for (const n in i)
220
+ (d(i[n]) || Array.isArray(i[n])) && this.addResource(e, t, n, i[n], {
221
+ silent: !0
222
+ });
223
+ s.silent || this.emit("added", e, t, i);
224
+ }
225
+ addResourceBundle(e, t, i, s, n, r = {
226
+ silent: !1,
227
+ skipCopy: !1
228
+ }) {
229
+ let a = [e, t];
230
+ e.indexOf(".") > -1 && (a = e.split("."), s = i, i = t, t = a[1]), this.addNamespaces(t);
231
+ let l = B(this.data, a) || {};
232
+ r.skipCopy || (i = JSON.parse(JSON.stringify(i))), s ? pe(l, i, n) : l = {
233
+ ...l,
234
+ ...i
235
+ }, ie(this.data, a, l), r.silent || this.emit("added", e, t, i);
236
+ }
237
+ removeResourceBundle(e, t) {
238
+ this.hasResourceBundle(e, t) && delete this.data[e][t], this.removeNamespaces(t), this.emit("removed", e, t);
239
+ }
240
+ hasResourceBundle(e, t) {
241
+ return this.getResource(e, t) !== void 0;
242
+ }
243
+ getResourceBundle(e, t) {
244
+ return t || (t = this.options.defaultNS), this.getResource(e, t);
245
+ }
246
+ getDataByLanguage(e) {
247
+ return this.data[e];
248
+ }
249
+ hasLanguageSomeTranslations(e) {
250
+ const t = this.getDataByLanguage(e);
251
+ return !!(t && Object.keys(t) || []).find((s) => t[s] && Object.keys(t[s]).length > 0);
252
+ }
253
+ toJSON() {
254
+ return this.data;
255
+ }
256
+ }
257
+ var me = {
258
+ processors: {},
259
+ addPostProcessor(o) {
260
+ this.processors[o.name] = o;
261
+ },
262
+ handle(o, e, t, i, s) {
263
+ return o.forEach((n) => {
264
+ e = this.processors[n]?.process(e, t, i, s) ?? e;
265
+ }), e;
266
+ }
267
+ };
268
+ const re = {}, ae = (o) => !d(o) && typeof o != "boolean" && typeof o != "number";
269
+ class _ extends W {
270
+ constructor(e, t = {}) {
271
+ super(), ve(["resourceStore", "languageUtils", "pluralResolver", "interpolator", "backendConnector", "i18nFormat", "utils"], e, this), this.options = t, this.options.keySeparator === void 0 && (this.options.keySeparator = "."), this.logger = P.create("translator");
272
+ }
273
+ changeLanguage(e) {
274
+ e && (this.language = e);
275
+ }
276
+ exists(e, t = {
277
+ interpolation: {}
278
+ }) {
279
+ const i = {
280
+ ...t
281
+ };
282
+ return e == null ? !1 : this.resolve(e, i)?.res !== void 0;
283
+ }
284
+ extractFromKey(e, t) {
285
+ let i = t.nsSeparator !== void 0 ? t.nsSeparator : this.options.nsSeparator;
286
+ i === void 0 && (i = ":");
287
+ const s = t.keySeparator !== void 0 ? t.keySeparator : this.options.keySeparator;
288
+ let n = t.ns || this.options.defaultNS || [];
289
+ const r = i && e.indexOf(i) > -1, a = !this.options.userDefinedKeySeparator && !t.keySeparator && !this.options.userDefinedNsSeparator && !t.nsSeparator && !je(e, i, s);
290
+ if (r && !a) {
291
+ const l = e.match(this.interpolator.nestingRegexp);
292
+ if (l && l.length > 0)
293
+ return {
294
+ key: e,
295
+ namespaces: d(n) ? [n] : n
296
+ };
297
+ const u = e.split(i);
298
+ (i !== s || i === s && this.options.ns.indexOf(u[0]) > -1) && (n = u.shift()), e = u.join(s);
299
+ }
300
+ return {
301
+ key: e,
302
+ namespaces: d(n) ? [n] : n
303
+ };
304
+ }
305
+ translate(e, t, i) {
306
+ let s = typeof t == "object" ? {
307
+ ...t
308
+ } : t;
309
+ if (typeof s != "object" && this.options.overloadTranslationOptionHandler && (s = this.options.overloadTranslationOptionHandler(arguments)), typeof options == "object" && (s = {
310
+ ...s
311
+ }), s || (s = {}), e == null) return "";
312
+ Array.isArray(e) || (e = [String(e)]);
313
+ const n = s.returnDetails !== void 0 ? s.returnDetails : this.options.returnDetails, r = s.keySeparator !== void 0 ? s.keySeparator : this.options.keySeparator, {
314
+ key: a,
315
+ namespaces: l
316
+ } = this.extractFromKey(e[e.length - 1], s), u = l[l.length - 1];
317
+ let h = s.nsSeparator !== void 0 ? s.nsSeparator : this.options.nsSeparator;
318
+ h === void 0 && (h = ":");
319
+ const f = s.lng || this.language, p = s.appendNamespaceToCIMode || this.options.appendNamespaceToCIMode;
320
+ if (f?.toLowerCase() === "cimode")
321
+ return p ? n ? {
322
+ res: `${u}${h}${a}`,
323
+ usedKey: a,
324
+ exactUsedKey: a,
325
+ usedLng: f,
326
+ usedNS: u,
327
+ usedParams: this.getUsedParamsDetails(s)
328
+ } : `${u}${h}${a}` : n ? {
329
+ res: a,
330
+ usedKey: a,
331
+ exactUsedKey: a,
332
+ usedLng: f,
333
+ usedNS: u,
334
+ usedParams: this.getUsedParamsDetails(s)
335
+ } : a;
336
+ const g = this.resolve(e, s);
337
+ let c = g?.res;
338
+ const x = g?.usedKey || a, S = g?.exactUsedKey || a, L = ["[object Number]", "[object Function]", "[object RegExp]"], y = s.joinArrays !== void 0 ? s.joinArrays : this.options.joinArrays, E = !this.i18nFormat || this.i18nFormat.handleAsObject, O = s.count !== void 0 && !d(s.count), N = _.hasDefaultValue(s), j = O ? this.pluralResolver.getSuffix(f, s.count, s) : "", I = s.ordinal && O ? this.pluralResolver.getSuffix(f, s.count, {
339
+ ordinal: !1
340
+ }) : "", G = O && !s.ordinal && s.count === 0, k = G && s[`defaultValue${this.options.pluralSeparator}zero`] || s[`defaultValue${j}`] || s[`defaultValue${I}`] || s.defaultValue;
341
+ let v = c;
342
+ E && !c && N && (v = k);
343
+ const ye = ae(v), Se = Object.prototype.toString.apply(v);
344
+ if (E && v && ye && L.indexOf(Se) < 0 && !(d(y) && Array.isArray(v))) {
345
+ if (!s.returnObjects && !this.options.returnObjects) {
346
+ this.options.returnedObjectHandler || this.logger.warn("accessing an object - but returnObjects options is not enabled!");
347
+ const R = this.options.returnedObjectHandler ? this.options.returnedObjectHandler(x, v, {
348
+ ...s,
349
+ ns: l
350
+ }) : `key '${a} (${this.language})' returned an object instead of string.`;
351
+ return n ? (g.res = R, g.usedParams = this.getUsedParamsDetails(s), g) : R;
352
+ }
353
+ if (r) {
354
+ const R = Array.isArray(v), w = R ? [] : {}, Z = R ? S : x;
355
+ for (const C in v)
356
+ if (Object.prototype.hasOwnProperty.call(v, C)) {
357
+ const $ = `${Z}${r}${C}`;
358
+ N && !c ? w[C] = this.translate($, {
359
+ ...s,
360
+ defaultValue: ae(k) ? k[C] : void 0,
361
+ joinArrays: !1,
362
+ ns: l
363
+ }) : w[C] = this.translate($, {
364
+ ...s,
365
+ joinArrays: !1,
366
+ ns: l
367
+ }), w[C] === $ && (w[C] = v[C]);
368
+ }
369
+ c = w;
370
+ }
371
+ } else if (E && d(y) && Array.isArray(c))
372
+ c = c.join(y), c && (c = this.extendTranslation(c, e, s, i));
373
+ else {
374
+ let R = !1, w = !1;
375
+ !this.isValidLookup(c) && N && (R = !0, c = k), this.isValidLookup(c) || (w = !0, c = a);
376
+ const C = (s.missingKeyNoValueFallbackToKey || this.options.missingKeyNoValueFallbackToKey) && w ? void 0 : c, $ = N && k !== c && this.options.updateMissing;
377
+ if (w || R || $) {
378
+ if (this.logger.log($ ? "updateKey" : "missingKey", f, u, a, $ ? k : c), r) {
379
+ const b = this.resolve(a, {
380
+ ...s,
381
+ keySeparator: !1
382
+ });
383
+ b && b.res && this.logger.warn("Seems the loaded translations were in flat JSON format instead of nested. Either set keySeparator: false on init or make sure your translations are published in nested format.");
384
+ }
385
+ let D = [];
386
+ const H = this.languageUtils.getFallbackCodes(this.options.fallbackLng, s.lng || this.language);
387
+ if (this.options.saveMissingTo === "fallback" && H && H[0])
388
+ for (let b = 0; b < H.length; b++)
389
+ D.push(H[b]);
390
+ else this.options.saveMissingTo === "all" ? D = this.languageUtils.toResolveHierarchy(s.lng || this.language) : D.push(s.lng || this.language);
391
+ const X = (b, F, V) => {
392
+ const q = N && V !== c ? V : C;
393
+ this.options.missingKeyHandler ? this.options.missingKeyHandler(b, u, F, q, $, s) : this.backendConnector?.saveMissing && this.backendConnector.saveMissing(b, u, F, q, $, s), this.emit("missingKey", b, u, F, c);
394
+ };
395
+ this.options.saveMissing && (this.options.saveMissingPlurals && O ? D.forEach((b) => {
396
+ const F = this.pluralResolver.getSuffixes(b, s);
397
+ G && s[`defaultValue${this.options.pluralSeparator}zero`] && F.indexOf(`${this.options.pluralSeparator}zero`) < 0 && F.push(`${this.options.pluralSeparator}zero`), F.forEach((V) => {
398
+ X([b], a + V, s[`defaultValue${V}`] || k);
399
+ });
400
+ }) : X(D, a, k));
401
+ }
402
+ c = this.extendTranslation(c, e, s, g, i), w && c === a && this.options.appendNamespaceToMissingKey && (c = `${u}${h}${a}`), (w || R) && this.options.parseMissingKeyHandler && (c = this.options.parseMissingKeyHandler(this.options.appendNamespaceToMissingKey ? `${u}${h}${a}` : a, R ? c : void 0, s));
403
+ }
404
+ return n ? (g.res = c, g.usedParams = this.getUsedParamsDetails(s), g) : c;
405
+ }
406
+ extendTranslation(e, t, i, s, n) {
407
+ if (this.i18nFormat?.parse)
408
+ e = this.i18nFormat.parse(e, {
409
+ ...this.options.interpolation.defaultVariables,
410
+ ...i
411
+ }, i.lng || this.language || s.usedLng, s.usedNS, s.usedKey, {
412
+ resolved: s
413
+ });
414
+ else if (!i.skipInterpolation) {
415
+ i.interpolation && this.interpolator.init({
416
+ ...i,
417
+ interpolation: {
418
+ ...this.options.interpolation,
419
+ ...i.interpolation
420
+ }
421
+ });
422
+ const l = d(e) && (i?.interpolation?.skipOnVariables !== void 0 ? i.interpolation.skipOnVariables : this.options.interpolation.skipOnVariables);
423
+ let u;
424
+ if (l) {
425
+ const f = e.match(this.interpolator.nestingRegexp);
426
+ u = f && f.length;
427
+ }
428
+ let h = i.replace && !d(i.replace) ? i.replace : i;
429
+ if (this.options.interpolation.defaultVariables && (h = {
430
+ ...this.options.interpolation.defaultVariables,
431
+ ...h
432
+ }), e = this.interpolator.interpolate(e, h, i.lng || this.language || s.usedLng, i), l) {
433
+ const f = e.match(this.interpolator.nestingRegexp), p = f && f.length;
434
+ u < p && (i.nest = !1);
435
+ }
436
+ !i.lng && s && s.res && (i.lng = this.language || s.usedLng), i.nest !== !1 && (e = this.interpolator.nest(e, (...f) => n?.[0] === f[0] && !i.context ? (this.logger.warn(`It seems you are nesting recursively key: ${f[0]} in key: ${t[0]}`), null) : this.translate(...f, t), i)), i.interpolation && this.interpolator.reset();
437
+ }
438
+ const r = i.postProcess || this.options.postProcess, a = d(r) ? [r] : r;
439
+ return e != null && a?.length && i.applyPostProcessor !== !1 && (e = me.handle(a, e, t, this.options && this.options.postProcessPassResolved ? {
440
+ i18nResolved: {
441
+ ...s,
442
+ usedParams: this.getUsedParamsDetails(i)
443
+ },
444
+ ...i
445
+ } : i, this)), e;
446
+ }
447
+ resolve(e, t = {}) {
448
+ let i, s, n, r, a;
449
+ return d(e) && (e = [e]), e.forEach((l) => {
450
+ if (this.isValidLookup(i)) return;
451
+ const u = this.extractFromKey(l, t), h = u.key;
452
+ s = h;
453
+ let f = u.namespaces;
454
+ this.options.fallbackNS && (f = f.concat(this.options.fallbackNS));
455
+ const p = t.count !== void 0 && !d(t.count), g = p && !t.ordinal && t.count === 0, c = t.context !== void 0 && (d(t.context) || typeof t.context == "number") && t.context !== "", x = t.lngs ? t.lngs : this.languageUtils.toResolveHierarchy(t.lng || this.language, t.fallbackLng);
456
+ f.forEach((S) => {
457
+ this.isValidLookup(i) || (a = S, !re[`${x[0]}-${S}`] && this.utils?.hasLoadedNamespace && !this.utils?.hasLoadedNamespace(a) && (re[`${x[0]}-${S}`] = !0, this.logger.warn(`key "${s}" for languages "${x.join(", ")}" won't get resolved as namespace "${a}" was not yet loaded`, "This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!")), x.forEach((L) => {
458
+ if (this.isValidLookup(i)) return;
459
+ r = L;
460
+ const y = [h];
461
+ if (this.i18nFormat?.addLookupKeys)
462
+ this.i18nFormat.addLookupKeys(y, h, L, S, t);
463
+ else {
464
+ let O;
465
+ p && (O = this.pluralResolver.getSuffix(L, t.count, t));
466
+ const N = `${this.options.pluralSeparator}zero`, j = `${this.options.pluralSeparator}ordinal${this.options.pluralSeparator}`;
467
+ if (p && (t.ordinal && O.indexOf(j) === 0 && y.push(h + O.replace(j, this.options.pluralSeparator)), y.push(h + O), g && y.push(h + N)), c) {
468
+ const I = `${h}${this.options.contextSeparator || "_"}${t.context}`;
469
+ y.push(I), p && (t.ordinal && O.indexOf(j) === 0 && y.push(I + O.replace(j, this.options.pluralSeparator)), y.push(I + O), g && y.push(I + N));
470
+ }
471
+ }
472
+ let E;
473
+ for (; E = y.pop(); )
474
+ this.isValidLookup(i) || (n = E, i = this.getResource(L, S, E, t));
475
+ }));
476
+ });
477
+ }), {
478
+ res: i,
479
+ usedKey: s,
480
+ exactUsedKey: n,
481
+ usedLng: r,
482
+ usedNS: a
483
+ };
484
+ }
485
+ isValidLookup(e) {
486
+ return e !== void 0 && !(!this.options.returnNull && e === null) && !(!this.options.returnEmptyString && e === "");
487
+ }
488
+ getResource(e, t, i, s = {}) {
489
+ return this.i18nFormat?.getResource ? this.i18nFormat.getResource(e, t, i, s) : this.resourceStore.getResource(e, t, i, s);
490
+ }
491
+ getUsedParamsDetails(e = {}) {
492
+ const t = ["defaultValue", "ordinal", "context", "replace", "lng", "lngs", "fallbackLng", "ns", "keySeparator", "nsSeparator", "returnObjects", "returnDetails", "joinArrays", "postProcess", "interpolation"], i = e.replace && !d(e.replace);
493
+ let s = i ? e.replace : e;
494
+ if (i && typeof e.count < "u" && (s.count = e.count), this.options.interpolation.defaultVariables && (s = {
495
+ ...this.options.interpolation.defaultVariables,
496
+ ...s
497
+ }), !i) {
498
+ s = {
499
+ ...s
500
+ };
501
+ for (const n of t)
502
+ delete s[n];
503
+ }
504
+ return s;
505
+ }
506
+ static hasDefaultValue(e) {
507
+ const t = "defaultValue";
508
+ for (const i in e)
509
+ if (Object.prototype.hasOwnProperty.call(e, i) && t === i.substring(0, t.length) && e[i] !== void 0)
510
+ return !0;
511
+ return !1;
512
+ }
513
+ }
514
+ class oe {
515
+ constructor(e) {
516
+ this.options = e, this.supportedLngs = this.options.supportedLngs || !1, this.logger = P.create("languageUtils");
517
+ }
518
+ getScriptPartFromCode(e) {
519
+ if (e = U(e), !e || e.indexOf("-") < 0) return null;
520
+ const t = e.split("-");
521
+ return t.length === 2 || (t.pop(), t[t.length - 1].toLowerCase() === "x") ? null : this.formatLanguageCode(t.join("-"));
522
+ }
523
+ getLanguagePartFromCode(e) {
524
+ if (e = U(e), !e || e.indexOf("-") < 0) return e;
525
+ const t = e.split("-");
526
+ return this.formatLanguageCode(t[0]);
527
+ }
528
+ formatLanguageCode(e) {
529
+ if (d(e) && e.indexOf("-") > -1) {
530
+ let t;
531
+ try {
532
+ t = Intl.getCanonicalLocales(e)[0];
533
+ } catch {
534
+ }
535
+ return t && this.options.lowerCaseLng && (t = t.toLowerCase()), t || (this.options.lowerCaseLng ? e.toLowerCase() : e);
536
+ }
537
+ return this.options.cleanCode || this.options.lowerCaseLng ? e.toLowerCase() : e;
538
+ }
539
+ isSupportedCode(e) {
540
+ return (this.options.load === "languageOnly" || this.options.nonExplicitSupportedLngs) && (e = this.getLanguagePartFromCode(e)), !this.supportedLngs || !this.supportedLngs.length || this.supportedLngs.indexOf(e) > -1;
541
+ }
542
+ getBestMatchFromCodes(e) {
543
+ if (!e) return null;
544
+ let t;
545
+ return e.forEach((i) => {
546
+ if (t) return;
547
+ const s = this.formatLanguageCode(i);
548
+ (!this.options.supportedLngs || this.isSupportedCode(s)) && (t = s);
549
+ }), !t && this.options.supportedLngs && e.forEach((i) => {
550
+ if (t) return;
551
+ const s = this.getScriptPartFromCode(i);
552
+ if (this.isSupportedCode(s)) return t = s;
553
+ const n = this.getLanguagePartFromCode(i);
554
+ if (this.isSupportedCode(n)) return t = n;
555
+ t = this.options.supportedLngs.find((r) => {
556
+ if (r === n) return r;
557
+ if (!(r.indexOf("-") < 0 && n.indexOf("-") < 0) && (r.indexOf("-") > 0 && n.indexOf("-") < 0 && r.substring(0, r.indexOf("-")) === n || r.indexOf(n) === 0 && n.length > 1))
558
+ return r;
559
+ });
560
+ }), t || (t = this.getFallbackCodes(this.options.fallbackLng)[0]), t;
561
+ }
562
+ getFallbackCodes(e, t) {
563
+ if (!e) return [];
564
+ if (typeof e == "function" && (e = e(t)), d(e) && (e = [e]), Array.isArray(e)) return e;
565
+ if (!t) return e.default || [];
566
+ let i = e[t];
567
+ return i || (i = e[this.getScriptPartFromCode(t)]), i || (i = e[this.formatLanguageCode(t)]), i || (i = e[this.getLanguagePartFromCode(t)]), i || (i = e.default), i || [];
568
+ }
569
+ toResolveHierarchy(e, t) {
570
+ const i = this.getFallbackCodes((t === !1 ? [] : t) || this.options.fallbackLng || [], e), s = [], n = (r) => {
571
+ r && (this.isSupportedCode(r) ? s.push(r) : this.logger.warn(`rejecting language code not found in supportedLngs: ${r}`));
572
+ };
573
+ return d(e) && (e.indexOf("-") > -1 || e.indexOf("_") > -1) ? (this.options.load !== "languageOnly" && n(this.formatLanguageCode(e)), this.options.load !== "languageOnly" && this.options.load !== "currentOnly" && n(this.getScriptPartFromCode(e)), this.options.load !== "currentOnly" && n(this.getLanguagePartFromCode(e))) : d(e) && n(this.formatLanguageCode(e)), i.forEach((r) => {
574
+ s.indexOf(r) < 0 && n(this.formatLanguageCode(r));
575
+ }), s;
576
+ }
577
+ }
578
+ const le = {
579
+ zero: 0,
580
+ one: 1,
581
+ two: 2,
582
+ few: 3,
583
+ many: 4,
584
+ other: 5
585
+ }, ue = {
586
+ select: (o) => o === 1 ? "one" : "other",
587
+ resolvedOptions: () => ({
588
+ pluralCategories: ["one", "other"]
589
+ })
590
+ };
591
+ class Te {
592
+ constructor(e, t = {}) {
593
+ this.languageUtils = e, this.options = t, this.logger = P.create("pluralResolver"), this.pluralRulesCache = {};
594
+ }
595
+ addRule(e, t) {
596
+ this.rules[e] = t;
597
+ }
598
+ clearCache() {
599
+ this.pluralRulesCache = {};
600
+ }
601
+ getRule(e, t = {}) {
602
+ const i = U(e === "dev" ? "en" : e), s = t.ordinal ? "ordinal" : "cardinal", n = JSON.stringify({
603
+ cleanedCode: i,
604
+ type: s
605
+ });
606
+ if (n in this.pluralRulesCache)
607
+ return this.pluralRulesCache[n];
608
+ let r;
609
+ try {
610
+ r = new Intl.PluralRules(i, {
611
+ type: s
612
+ });
613
+ } catch {
614
+ if (!Intl)
615
+ return this.logger.error("No Intl support, please use an Intl polyfill!"), ue;
616
+ if (!e.match(/-|_/)) return ue;
617
+ const l = this.languageUtils.getLanguagePartFromCode(e);
618
+ r = this.getRule(l, t);
619
+ }
620
+ return this.pluralRulesCache[n] = r, r;
621
+ }
622
+ needsPlural(e, t = {}) {
623
+ let i = this.getRule(e, t);
624
+ return i || (i = this.getRule("dev", t)), i?.resolvedOptions().pluralCategories.length > 1;
625
+ }
626
+ getPluralFormsOfKey(e, t, i = {}) {
627
+ return this.getSuffixes(e, i).map((s) => `${t}${s}`);
628
+ }
629
+ getSuffixes(e, t = {}) {
630
+ let i = this.getRule(e, t);
631
+ return i || (i = this.getRule("dev", t)), i ? i.resolvedOptions().pluralCategories.sort((s, n) => le[s] - le[n]).map((s) => `${this.options.prepend}${t.ordinal ? `ordinal${this.options.prepend}` : ""}${s}`) : [];
632
+ }
633
+ getSuffix(e, t, i = {}) {
634
+ const s = this.getRule(e, i);
635
+ return s ? `${this.options.prepend}${i.ordinal ? `ordinal${this.options.prepend}` : ""}${s.select(t)}` : (this.logger.warn(`no plural rule found for: ${e}`), this.getSuffix("dev", t, i));
636
+ }
637
+ }
638
+ const fe = (o, e, t, i = ".", s = !0) => {
639
+ let n = Pe(o, e, t);
640
+ return !n && s && d(t) && (n = Y(o, t, i), n === void 0 && (n = Y(e, t, i))), n;
641
+ }, Q = (o) => o.replace(/\$/g, "$$$$");
642
+ class De {
643
+ constructor(e = {}) {
644
+ this.logger = P.create("interpolator"), this.options = e, this.format = e?.interpolation?.format || ((t) => t), this.init(e);
645
+ }
646
+ init(e = {}) {
647
+ e.interpolation || (e.interpolation = {
648
+ escapeValue: !0
649
+ });
650
+ const {
651
+ escape: t,
652
+ escapeValue: i,
653
+ useRawValueToEscape: s,
654
+ prefix: n,
655
+ prefixEscaped: r,
656
+ suffix: a,
657
+ suffixEscaped: l,
658
+ formatSeparator: u,
659
+ unescapeSuffix: h,
660
+ unescapePrefix: f,
661
+ nestingPrefix: p,
662
+ nestingPrefixEscaped: g,
663
+ nestingSuffix: c,
664
+ nestingSuffixEscaped: x,
665
+ nestingOptionsSeparator: S,
666
+ maxReplaces: L,
667
+ alwaysFormat: y
668
+ } = e.interpolation;
669
+ this.escape = t !== void 0 ? t : Ne, this.escapeValue = i !== void 0 ? i : !0, this.useRawValueToEscape = s !== void 0 ? s : !1, this.prefix = n ? T(n) : r || "{{", this.suffix = a ? T(a) : l || "}}", this.formatSeparator = u || ",", this.unescapePrefix = h ? "" : f || "-", this.unescapeSuffix = this.unescapePrefix ? "" : h || "", this.nestingPrefix = p ? T(p) : g || T("$t("), this.nestingSuffix = c ? T(c) : x || T(")"), this.nestingOptionsSeparator = S || ",", this.maxReplaces = L || 1e3, this.alwaysFormat = y !== void 0 ? y : !1, this.resetRegExp();
670
+ }
671
+ reset() {
672
+ this.options && this.init(this.options);
673
+ }
674
+ resetRegExp() {
675
+ const e = (t, i) => t?.source === i ? (t.lastIndex = 0, t) : new RegExp(i, "g");
676
+ this.regexp = e(this.regexp, `${this.prefix}(.+?)${this.suffix}`), this.regexpUnescape = e(this.regexpUnescape, `${this.prefix}${this.unescapePrefix}(.+?)${this.unescapeSuffix}${this.suffix}`), this.nestingRegexp = e(this.nestingRegexp, `${this.nestingPrefix}((?:[^()"']+|"[^"]*"|'[^']*'|\\((?:[^()]|"[^"]*"|'[^']*')*\\))*?)${this.nestingSuffix}`);
677
+ }
678
+ interpolate(e, t, i, s) {
679
+ let n, r, a;
680
+ const l = this.options && this.options.interpolation && this.options.interpolation.defaultVariables || {}, u = (g) => {
681
+ if (g.indexOf(this.formatSeparator) < 0) {
682
+ const L = fe(t, l, g, this.options.keySeparator, this.options.ignoreJSONStructure);
683
+ return this.alwaysFormat ? this.format(L, void 0, i, {
684
+ ...s,
685
+ ...t,
686
+ interpolationkey: g
687
+ }) : L;
688
+ }
689
+ const c = g.split(this.formatSeparator), x = c.shift().trim(), S = c.join(this.formatSeparator).trim();
690
+ return this.format(fe(t, l, x, this.options.keySeparator, this.options.ignoreJSONStructure), S, i, {
691
+ ...s,
692
+ ...t,
693
+ interpolationkey: x
694
+ });
695
+ };
696
+ this.resetRegExp();
697
+ const h = s?.missingInterpolationHandler || this.options.missingInterpolationHandler, f = s?.interpolation?.skipOnVariables !== void 0 ? s.interpolation.skipOnVariables : this.options.interpolation.skipOnVariables;
698
+ return [{
699
+ regex: this.regexpUnescape,
700
+ safeValue: (g) => Q(g)
701
+ }, {
702
+ regex: this.regexp,
703
+ safeValue: (g) => this.escapeValue ? Q(this.escape(g)) : Q(g)
704
+ }].forEach((g) => {
705
+ for (a = 0; n = g.regex.exec(e); ) {
706
+ const c = n[1].trim();
707
+ if (r = u(c), r === void 0)
708
+ if (typeof h == "function") {
709
+ const S = h(e, n, s);
710
+ r = d(S) ? S : "";
711
+ } else if (s && Object.prototype.hasOwnProperty.call(s, c))
712
+ r = "";
713
+ else if (f) {
714
+ r = n[0];
715
+ continue;
716
+ } else
717
+ this.logger.warn(`missed to pass in variable ${c} for interpolating ${e}`), r = "";
718
+ else !d(r) && !this.useRawValueToEscape && (r = ee(r));
719
+ const x = g.safeValue(r);
720
+ if (e = e.replace(n[0], x), f ? (g.regex.lastIndex += r.length, g.regex.lastIndex -= n[0].length) : g.regex.lastIndex = 0, a++, a >= this.maxReplaces)
721
+ break;
722
+ }
723
+ }), e;
724
+ }
725
+ nest(e, t, i = {}) {
726
+ let s, n, r;
727
+ const a = (l, u) => {
728
+ const h = this.nestingOptionsSeparator;
729
+ if (l.indexOf(h) < 0) return l;
730
+ const f = l.split(new RegExp(`${h}[ ]*{`));
731
+ let p = `{${f[1]}`;
732
+ l = f[0], p = this.interpolate(p, r);
733
+ const g = p.match(/'/g), c = p.match(/"/g);
734
+ ((g?.length ?? 0) % 2 === 0 && !c || c.length % 2 !== 0) && (p = p.replace(/'/g, '"'));
735
+ try {
736
+ r = JSON.parse(p), u && (r = {
737
+ ...u,
738
+ ...r
739
+ });
740
+ } catch (x) {
741
+ return this.logger.warn(`failed parsing options string in nesting for key ${l}`, x), `${l}${h}${p}`;
742
+ }
743
+ return r.defaultValue && r.defaultValue.indexOf(this.prefix) > -1 && delete r.defaultValue, l;
744
+ };
745
+ for (; s = this.nestingRegexp.exec(e); ) {
746
+ let l = [];
747
+ r = {
748
+ ...i
749
+ }, r = r.replace && !d(r.replace) ? r.replace : r, r.applyPostProcessor = !1, delete r.defaultValue;
750
+ const u = /{.*}/.test(s[1]) ? s[1].lastIndexOf("}") + 1 : s[1].indexOf(this.formatSeparator);
751
+ if (u !== -1 && (l = s[1].slice(u).split(this.formatSeparator).map((h) => h.trim()).filter(Boolean), s[1] = s[1].slice(0, u)), n = t(a.call(this, s[1].trim(), r), r), n && s[0] === e && !d(n)) return n;
752
+ d(n) || (n = ee(n)), n || (this.logger.warn(`missed to resolve ${s[1]} for nesting ${e}`), n = ""), l.length && (n = l.reduce((h, f) => this.format(h, f, i.lng, {
753
+ ...i,
754
+ interpolationkey: s[1].trim()
755
+ }), n.trim())), e = e.replace(s[0], n), this.regexp.lastIndex = 0;
756
+ }
757
+ return e;
758
+ }
759
+ }
760
+ const Ve = (o) => {
761
+ let e = o.toLowerCase().trim();
762
+ const t = {};
763
+ if (o.indexOf("(") > -1) {
764
+ const i = o.split("(");
765
+ e = i[0].toLowerCase().trim();
766
+ const s = i[1].substring(0, i[1].length - 1);
767
+ e === "currency" && s.indexOf(":") < 0 ? t.currency || (t.currency = s.trim()) : e === "relativetime" && s.indexOf(":") < 0 ? t.range || (t.range = s.trim()) : s.split(";").forEach((r) => {
768
+ if (r) {
769
+ const [a, ...l] = r.split(":"), u = l.join(":").trim().replace(/^'+|'+$/g, ""), h = a.trim();
770
+ t[h] || (t[h] = u), u === "false" && (t[h] = !1), u === "true" && (t[h] = !0), isNaN(u) || (t[h] = parseInt(u, 10));
771
+ }
772
+ });
773
+ }
774
+ return {
775
+ formatName: e,
776
+ formatOptions: t
777
+ };
778
+ }, he = (o) => {
779
+ const e = {};
780
+ return (t, i, s) => {
781
+ let n = s;
782
+ s && s.interpolationkey && s.formatParams && s.formatParams[s.interpolationkey] && s[s.interpolationkey] && (n = {
783
+ ...n,
784
+ [s.interpolationkey]: void 0
785
+ });
786
+ const r = i + JSON.stringify(n);
787
+ let a = e[r];
788
+ return a || (a = o(U(i), s), e[r] = a), a(t);
789
+ };
790
+ }, Ke = (o) => (e, t, i) => o(U(t), i)(e);
791
+ class Ae {
792
+ constructor(e = {}) {
793
+ this.logger = P.create("formatter"), this.options = e, this.init(e);
794
+ }
795
+ init(e, t = {
796
+ interpolation: {}
797
+ }) {
798
+ this.formatSeparator = t.interpolation.formatSeparator || ",";
799
+ const i = t.cacheInBuiltFormats ? he : Ke;
800
+ this.formats = {
801
+ number: i((s, n) => {
802
+ const r = new Intl.NumberFormat(s, {
803
+ ...n
804
+ });
805
+ return (a) => r.format(a);
806
+ }),
807
+ currency: i((s, n) => {
808
+ const r = new Intl.NumberFormat(s, {
809
+ ...n,
810
+ style: "currency"
811
+ });
812
+ return (a) => r.format(a);
813
+ }),
814
+ datetime: i((s, n) => {
815
+ const r = new Intl.DateTimeFormat(s, {
816
+ ...n
817
+ });
818
+ return (a) => r.format(a);
819
+ }),
820
+ relativetime: i((s, n) => {
821
+ const r = new Intl.RelativeTimeFormat(s, {
822
+ ...n
823
+ });
824
+ return (a) => r.format(a, n.range || "day");
825
+ }),
826
+ list: i((s, n) => {
827
+ const r = new Intl.ListFormat(s, {
828
+ ...n
829
+ });
830
+ return (a) => r.format(a);
831
+ })
832
+ };
833
+ }
834
+ add(e, t) {
835
+ this.formats[e.toLowerCase().trim()] = t;
836
+ }
837
+ addCached(e, t) {
838
+ this.formats[e.toLowerCase().trim()] = he(t);
839
+ }
840
+ format(e, t, i, s = {}) {
841
+ const n = t.split(this.formatSeparator);
842
+ if (n.length > 1 && n[0].indexOf("(") > 1 && n[0].indexOf(")") < 0 && n.find((a) => a.indexOf(")") > -1)) {
843
+ const a = n.findIndex((l) => l.indexOf(")") > -1);
844
+ n[0] = [n[0], ...n.splice(1, a)].join(this.formatSeparator);
845
+ }
846
+ return n.reduce((a, l) => {
847
+ const {
848
+ formatName: u,
849
+ formatOptions: h
850
+ } = Ve(l);
851
+ if (this.formats[u]) {
852
+ let f = a;
853
+ try {
854
+ const p = s?.formatParams?.[s.interpolationkey] || {}, g = p.locale || p.lng || s.locale || s.lng || i;
855
+ f = this.formats[u](a, g, {
856
+ ...h,
857
+ ...s,
858
+ ...p
859
+ });
860
+ } catch (p) {
861
+ this.logger.warn(p);
862
+ }
863
+ return f;
864
+ } else
865
+ this.logger.warn(`there was no format function for ${u}`);
866
+ return a;
867
+ }, e);
868
+ }
869
+ }
870
+ const Ue = (o, e) => {
871
+ o.pending[e] !== void 0 && (delete o.pending[e], o.pendingCount--);
872
+ };
873
+ class Me extends W {
874
+ constructor(e, t, i, s = {}) {
875
+ super(), this.backend = e, this.store = t, this.services = i, this.languageUtils = i.languageUtils, this.options = s, this.logger = P.create("backendConnector"), this.waitingReads = [], this.maxParallelReads = s.maxParallelReads || 10, this.readingCalls = 0, this.maxRetries = s.maxRetries >= 0 ? s.maxRetries : 5, this.retryTimeout = s.retryTimeout >= 1 ? s.retryTimeout : 350, this.state = {}, this.queue = [], this.backend?.init?.(i, s.backend, s);
876
+ }
877
+ queueLoad(e, t, i, s) {
878
+ const n = {}, r = {}, a = {}, l = {};
879
+ return e.forEach((u) => {
880
+ let h = !0;
881
+ t.forEach((f) => {
882
+ const p = `${u}|${f}`;
883
+ !i.reload && this.store.hasResourceBundle(u, f) ? this.state[p] = 2 : this.state[p] < 0 || (this.state[p] === 1 ? r[p] === void 0 && (r[p] = !0) : (this.state[p] = 1, h = !1, r[p] === void 0 && (r[p] = !0), n[p] === void 0 && (n[p] = !0), l[f] === void 0 && (l[f] = !0)));
884
+ }), h || (a[u] = !0);
885
+ }), (Object.keys(n).length || Object.keys(r).length) && this.queue.push({
886
+ pending: r,
887
+ pendingCount: Object.keys(r).length,
888
+ loaded: {},
889
+ errors: [],
890
+ callback: s
891
+ }), {
892
+ toLoad: Object.keys(n),
893
+ pending: Object.keys(r),
894
+ toLoadLanguages: Object.keys(a),
895
+ toLoadNamespaces: Object.keys(l)
896
+ };
897
+ }
898
+ loaded(e, t, i) {
899
+ const s = e.split("|"), n = s[0], r = s[1];
900
+ t && this.emit("failedLoading", n, r, t), !t && i && this.store.addResourceBundle(n, r, i, void 0, void 0, {
901
+ skipCopy: !0
902
+ }), this.state[e] = t ? -1 : 2, t && i && (this.state[e] = 0);
903
+ const a = {};
904
+ this.queue.forEach((l) => {
905
+ Ce(l.loaded, [n], r), Ue(l, e), t && l.errors.push(t), l.pendingCount === 0 && !l.done && (Object.keys(l.loaded).forEach((u) => {
906
+ a[u] || (a[u] = {});
907
+ const h = l.loaded[u];
908
+ h.length && h.forEach((f) => {
909
+ a[u][f] === void 0 && (a[u][f] = !0);
910
+ });
911
+ }), l.done = !0, l.errors.length ? l.callback(l.errors) : l.callback());
912
+ }), this.emit("loaded", a), this.queue = this.queue.filter((l) => !l.done);
913
+ }
914
+ read(e, t, i, s = 0, n = this.retryTimeout, r) {
915
+ if (!e.length) return r(null, {});
916
+ if (this.readingCalls >= this.maxParallelReads) {
917
+ this.waitingReads.push({
918
+ lng: e,
919
+ ns: t,
920
+ fcName: i,
921
+ tried: s,
922
+ wait: n,
923
+ callback: r
924
+ });
925
+ return;
926
+ }
927
+ this.readingCalls++;
928
+ const a = (u, h) => {
929
+ if (this.readingCalls--, this.waitingReads.length > 0) {
930
+ const f = this.waitingReads.shift();
931
+ this.read(f.lng, f.ns, f.fcName, f.tried, f.wait, f.callback);
932
+ }
933
+ if (u && h && s < this.maxRetries) {
934
+ setTimeout(() => {
935
+ this.read.call(this, e, t, i, s + 1, n * 2, r);
936
+ }, n);
937
+ return;
938
+ }
939
+ r(u, h);
940
+ }, l = this.backend[i].bind(this.backend);
941
+ if (l.length === 2) {
942
+ try {
943
+ const u = l(e, t);
944
+ u && typeof u.then == "function" ? u.then((h) => a(null, h)).catch(a) : a(null, u);
945
+ } catch (u) {
946
+ a(u);
947
+ }
948
+ return;
949
+ }
950
+ return l(e, t, a);
951
+ }
952
+ prepareLoading(e, t, i = {}, s) {
953
+ if (!this.backend)
954
+ return this.logger.warn("No backend was added via i18next.use. Will not load resources."), s && s();
955
+ d(e) && (e = this.languageUtils.toResolveHierarchy(e)), d(t) && (t = [t]);
956
+ const n = this.queueLoad(e, t, i, s);
957
+ if (!n.toLoad.length)
958
+ return n.pending.length || s(), null;
959
+ n.toLoad.forEach((r) => {
960
+ this.loadOne(r);
961
+ });
962
+ }
963
+ load(e, t, i) {
964
+ this.prepareLoading(e, t, {}, i);
965
+ }
966
+ reload(e, t, i) {
967
+ this.prepareLoading(e, t, {
968
+ reload: !0
969
+ }, i);
970
+ }
971
+ loadOne(e, t = "") {
972
+ const i = e.split("|"), s = i[0], n = i[1];
973
+ this.read(s, n, "read", void 0, void 0, (r, a) => {
974
+ r && this.logger.warn(`${t}loading namespace ${n} for language ${s} failed`, r), !r && a && this.logger.log(`${t}loaded namespace ${n} for language ${s}`, a), this.loaded(e, r, a);
975
+ });
976
+ }
977
+ saveMissing(e, t, i, s, n, r = {}, a = () => {
978
+ }) {
979
+ if (this.services?.utils?.hasLoadedNamespace && !this.services?.utils?.hasLoadedNamespace(t)) {
980
+ this.logger.warn(`did not save key "${i}" as the namespace "${t}" was not yet loaded`, "This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!");
981
+ return;
982
+ }
983
+ if (!(i == null || i === "")) {
984
+ if (this.backend?.create) {
985
+ const l = {
986
+ ...r,
987
+ isUpdate: n
988
+ }, u = this.backend.create.bind(this.backend);
989
+ if (u.length < 6)
990
+ try {
991
+ let h;
992
+ u.length === 5 ? h = u(e, t, i, s, l) : h = u(e, t, i, s), h && typeof h.then == "function" ? h.then((f) => a(null, f)).catch(a) : a(null, h);
993
+ } catch (h) {
994
+ a(h);
995
+ }
996
+ else
997
+ u(e, t, i, s, a, l);
998
+ }
999
+ !e || !e[0] || this.store.addResource(e[0], t, i, s);
1000
+ }
1001
+ }
1002
+ }
1003
+ const ce = () => ({
1004
+ debug: !1,
1005
+ initAsync: !0,
1006
+ ns: ["translation"],
1007
+ defaultNS: ["translation"],
1008
+ fallbackLng: ["dev"],
1009
+ fallbackNS: !1,
1010
+ supportedLngs: !1,
1011
+ nonExplicitSupportedLngs: !1,
1012
+ load: "all",
1013
+ preload: !1,
1014
+ simplifyPluralSuffix: !0,
1015
+ keySeparator: ".",
1016
+ nsSeparator: ":",
1017
+ pluralSeparator: "_",
1018
+ contextSeparator: "_",
1019
+ partialBundledLanguages: !1,
1020
+ saveMissing: !1,
1021
+ updateMissing: !1,
1022
+ saveMissingTo: "fallback",
1023
+ saveMissingPlurals: !0,
1024
+ missingKeyHandler: !1,
1025
+ missingInterpolationHandler: !1,
1026
+ postProcess: !1,
1027
+ postProcessPassResolved: !1,
1028
+ returnNull: !1,
1029
+ returnEmptyString: !0,
1030
+ returnObjects: !1,
1031
+ joinArrays: !1,
1032
+ returnedObjectHandler: !1,
1033
+ parseMissingKeyHandler: !1,
1034
+ appendNamespaceToMissingKey: !1,
1035
+ appendNamespaceToCIMode: !1,
1036
+ overloadTranslationOptionHandler: (o) => {
1037
+ let e = {};
1038
+ if (typeof o[1] == "object" && (e = o[1]), d(o[1]) && (e.defaultValue = o[1]), d(o[2]) && (e.tDescription = o[2]), typeof o[2] == "object" || typeof o[3] == "object") {
1039
+ const t = o[3] || o[2];
1040
+ Object.keys(t).forEach((i) => {
1041
+ e[i] = t[i];
1042
+ });
1043
+ }
1044
+ return e;
1045
+ },
1046
+ interpolation: {
1047
+ escapeValue: !0,
1048
+ format: (o) => o,
1049
+ prefix: "{{",
1050
+ suffix: "}}",
1051
+ formatSeparator: ",",
1052
+ unescapePrefix: "-",
1053
+ nestingPrefix: "$t(",
1054
+ nestingSuffix: ")",
1055
+ nestingOptionsSeparator: ",",
1056
+ maxReplaces: 1e3,
1057
+ skipOnVariables: !0
1058
+ },
1059
+ cacheInBuiltFormats: !0
1060
+ }), de = (o) => (d(o.ns) && (o.ns = [o.ns]), d(o.fallbackLng) && (o.fallbackLng = [o.fallbackLng]), d(o.fallbackNS) && (o.fallbackNS = [o.fallbackNS]), o.supportedLngs?.indexOf?.("cimode") < 0 && (o.supportedLngs = o.supportedLngs.concat(["cimode"])), typeof o.initImmediate == "boolean" && (o.initAsync = o.initImmediate), o), z = () => {
1061
+ }, He = (o) => {
1062
+ Object.getOwnPropertyNames(Object.getPrototypeOf(o)).forEach((t) => {
1063
+ typeof o[t] == "function" && (o[t] = o[t].bind(o));
1064
+ });
1065
+ };
1066
+ class M extends W {
1067
+ constructor(e = {}, t) {
1068
+ if (super(), this.options = de(e), this.services = {}, this.logger = P, this.modules = {
1069
+ external: []
1070
+ }, He(this), t && !this.isInitialized && !e.isClone) {
1071
+ if (!this.options.initAsync)
1072
+ return this.init(e, t), this;
1073
+ setTimeout(() => {
1074
+ this.init(e, t);
1075
+ }, 0);
1076
+ }
1077
+ }
1078
+ init(e = {}, t) {
1079
+ this.isInitializing = !0, typeof e == "function" && (t = e, e = {}), e.defaultNS == null && e.ns && (d(e.ns) ? e.defaultNS = e.ns : e.ns.indexOf("translation") < 0 && (e.defaultNS = e.ns[0]));
1080
+ const i = ce();
1081
+ this.options = {
1082
+ ...i,
1083
+ ...this.options,
1084
+ ...de(e)
1085
+ }, this.options.interpolation = {
1086
+ ...i.interpolation,
1087
+ ...this.options.interpolation
1088
+ }, e.keySeparator !== void 0 && (this.options.userDefinedKeySeparator = e.keySeparator), e.nsSeparator !== void 0 && (this.options.userDefinedNsSeparator = e.nsSeparator);
1089
+ const s = (u) => u ? typeof u == "function" ? new u() : u : null;
1090
+ if (!this.options.isClone) {
1091
+ this.modules.logger ? P.init(s(this.modules.logger), this.options) : P.init(null, this.options);
1092
+ let u;
1093
+ this.modules.formatter ? u = this.modules.formatter : u = Ae;
1094
+ const h = new oe(this.options);
1095
+ this.store = new ne(this.options.resources, this.options);
1096
+ const f = this.services;
1097
+ f.logger = P, f.resourceStore = this.store, f.languageUtils = h, f.pluralResolver = new Te(h, {
1098
+ prepend: this.options.pluralSeparator,
1099
+ simplifyPluralSuffix: this.options.simplifyPluralSuffix
1100
+ }), this.options.interpolation.format && this.options.interpolation.format !== i.interpolation.format && this.logger.warn("init: you are still using the legacy format function, please use the new approach: https://www.i18next.com/translation-function/formatting"), u && (!this.options.interpolation.format || this.options.interpolation.format === i.interpolation.format) && (f.formatter = s(u), f.formatter.init && f.formatter.init(f, this.options), this.options.interpolation.format = f.formatter.format.bind(f.formatter)), f.interpolator = new De(this.options), f.utils = {
1101
+ hasLoadedNamespace: this.hasLoadedNamespace.bind(this)
1102
+ }, f.backendConnector = new Me(s(this.modules.backend), f.resourceStore, f, this.options), f.backendConnector.on("*", (g, ...c) => {
1103
+ this.emit(g, ...c);
1104
+ }), this.modules.languageDetector && (f.languageDetector = s(this.modules.languageDetector), f.languageDetector.init && f.languageDetector.init(f, this.options.detection, this.options)), this.modules.i18nFormat && (f.i18nFormat = s(this.modules.i18nFormat), f.i18nFormat.init && f.i18nFormat.init(this)), this.translator = new _(this.services, this.options), this.translator.on("*", (g, ...c) => {
1105
+ this.emit(g, ...c);
1106
+ }), this.modules.external.forEach((g) => {
1107
+ g.init && g.init(this);
1108
+ });
1109
+ }
1110
+ if (this.format = this.options.interpolation.format, t || (t = z), this.options.fallbackLng && !this.services.languageDetector && !this.options.lng) {
1111
+ const u = this.services.languageUtils.getFallbackCodes(this.options.fallbackLng);
1112
+ u.length > 0 && u[0] !== "dev" && (this.options.lng = u[0]);
1113
+ }
1114
+ !this.services.languageDetector && !this.options.lng && this.logger.warn("init: no languageDetector is used and no lng is defined"), ["getResource", "hasResourceBundle", "getResourceBundle", "getDataByLanguage"].forEach((u) => {
1115
+ this[u] = (...h) => this.store[u](...h);
1116
+ }), ["addResource", "addResources", "addResourceBundle", "removeResourceBundle"].forEach((u) => {
1117
+ this[u] = (...h) => (this.store[u](...h), this);
1118
+ });
1119
+ const a = K(), l = () => {
1120
+ const u = (h, f) => {
1121
+ this.isInitializing = !1, this.isInitialized && !this.initializedStoreOnce && this.logger.warn("init: i18next is already initialized. You should call init just once!"), this.isInitialized = !0, this.options.isClone || this.logger.log("initialized", this.options), this.emit("initialized", this.options), a.resolve(f), t(h, f);
1122
+ };
1123
+ if (this.languages && !this.isInitialized) return u(null, this.t.bind(this));
1124
+ this.changeLanguage(this.options.lng, u);
1125
+ };
1126
+ return this.options.resources || !this.options.initAsync ? l() : setTimeout(l, 0), a;
1127
+ }
1128
+ loadResources(e, t = z) {
1129
+ let i = t;
1130
+ const s = d(e) ? e : this.language;
1131
+ if (typeof e == "function" && (i = e), !this.options.resources || this.options.partialBundledLanguages) {
1132
+ if (s?.toLowerCase() === "cimode" && (!this.options.preload || this.options.preload.length === 0)) return i();
1133
+ const n = [], r = (a) => {
1134
+ if (!a || a === "cimode") return;
1135
+ this.services.languageUtils.toResolveHierarchy(a).forEach((u) => {
1136
+ u !== "cimode" && n.indexOf(u) < 0 && n.push(u);
1137
+ });
1138
+ };
1139
+ s ? r(s) : this.services.languageUtils.getFallbackCodes(this.options.fallbackLng).forEach((l) => r(l)), this.options.preload?.forEach?.((a) => r(a)), this.services.backendConnector.load(n, this.options.ns, (a) => {
1140
+ !a && !this.resolvedLanguage && this.language && this.setResolvedLanguage(this.language), i(a);
1141
+ });
1142
+ } else
1143
+ i(null);
1144
+ }
1145
+ reloadResources(e, t, i) {
1146
+ const s = K();
1147
+ return typeof e == "function" && (i = e, e = void 0), typeof t == "function" && (i = t, t = void 0), e || (e = this.languages), t || (t = this.options.ns), i || (i = z), this.services.backendConnector.reload(e, t, (n) => {
1148
+ s.resolve(), i(n);
1149
+ }), s;
1150
+ }
1151
+ use(e) {
1152
+ if (!e) throw new Error("You are passing an undefined module! Please check the object you are passing to i18next.use()");
1153
+ if (!e.type) throw new Error("You are passing a wrong module! Please check the object you are passing to i18next.use()");
1154
+ return e.type === "backend" && (this.modules.backend = e), (e.type === "logger" || e.log && e.warn && e.error) && (this.modules.logger = e), e.type === "languageDetector" && (this.modules.languageDetector = e), e.type === "i18nFormat" && (this.modules.i18nFormat = e), e.type === "postProcessor" && me.addPostProcessor(e), e.type === "formatter" && (this.modules.formatter = e), e.type === "3rdParty" && this.modules.external.push(e), this;
1155
+ }
1156
+ setResolvedLanguage(e) {
1157
+ if (!(!e || !this.languages) && !(["cimode", "dev"].indexOf(e) > -1)) {
1158
+ for (let t = 0; t < this.languages.length; t++) {
1159
+ const i = this.languages[t];
1160
+ if (!(["cimode", "dev"].indexOf(i) > -1) && this.store.hasLanguageSomeTranslations(i)) {
1161
+ this.resolvedLanguage = i;
1162
+ break;
1163
+ }
1164
+ }
1165
+ !this.resolvedLanguage && this.languages.indexOf(e) < 0 && this.store.hasLanguageSomeTranslations(e) && (this.resolvedLanguage = e, this.languages.unshift(e));
1166
+ }
1167
+ }
1168
+ changeLanguage(e, t) {
1169
+ this.isLanguageChangingTo = e;
1170
+ const i = K();
1171
+ this.emit("languageChanging", e);
1172
+ const s = (a) => {
1173
+ this.language = a, this.languages = this.services.languageUtils.toResolveHierarchy(a), this.resolvedLanguage = void 0, this.setResolvedLanguage(a);
1174
+ }, n = (a, l) => {
1175
+ l ? this.isLanguageChangingTo === e && (s(l), this.translator.changeLanguage(l), this.isLanguageChangingTo = void 0, this.emit("languageChanged", l), this.logger.log("languageChanged", l)) : this.isLanguageChangingTo = void 0, i.resolve((...u) => this.t(...u)), t && t(a, (...u) => this.t(...u));
1176
+ }, r = (a) => {
1177
+ !e && !a && this.services.languageDetector && (a = []);
1178
+ const l = d(a) ? a : a && a[0], u = this.store.hasLanguageSomeTranslations(l) ? l : this.services.languageUtils.getBestMatchFromCodes(d(a) ? [a] : a);
1179
+ u && (this.language || s(u), this.translator.language || this.translator.changeLanguage(u), this.services.languageDetector?.cacheUserLanguage?.(u)), this.loadResources(u, (h) => {
1180
+ n(h, u);
1181
+ });
1182
+ };
1183
+ return !e && this.services.languageDetector && !this.services.languageDetector.async ? r(this.services.languageDetector.detect()) : !e && this.services.languageDetector && this.services.languageDetector.async ? this.services.languageDetector.detect.length === 0 ? this.services.languageDetector.detect().then(r) : this.services.languageDetector.detect(r) : r(e), i;
1184
+ }
1185
+ getFixedT(e, t, i) {
1186
+ const s = (n, r, ...a) => {
1187
+ let l;
1188
+ typeof r != "object" ? l = this.options.overloadTranslationOptionHandler([n, r].concat(a)) : l = {
1189
+ ...r
1190
+ }, l.lng = l.lng || s.lng, l.lngs = l.lngs || s.lngs, l.ns = l.ns || s.ns, l.keyPrefix !== "" && (l.keyPrefix = l.keyPrefix || i || s.keyPrefix);
1191
+ const u = this.options.keySeparator || ".";
1192
+ let h;
1193
+ return l.keyPrefix && Array.isArray(n) ? h = n.map((f) => `${l.keyPrefix}${u}${f}`) : h = l.keyPrefix ? `${l.keyPrefix}${u}${n}` : n, this.t(h, l);
1194
+ };
1195
+ return d(e) ? s.lng = e : s.lngs = e, s.ns = t, s.keyPrefix = i, s;
1196
+ }
1197
+ t(...e) {
1198
+ return this.translator?.translate(...e);
1199
+ }
1200
+ exists(...e) {
1201
+ return this.translator?.exists(...e);
1202
+ }
1203
+ setDefaultNamespace(e) {
1204
+ this.options.defaultNS = e;
1205
+ }
1206
+ hasLoadedNamespace(e, t = {}) {
1207
+ if (!this.isInitialized)
1208
+ return this.logger.warn("hasLoadedNamespace: i18next was not initialized", this.languages), !1;
1209
+ if (!this.languages || !this.languages.length)
1210
+ return this.logger.warn("hasLoadedNamespace: i18n.languages were undefined or empty", this.languages), !1;
1211
+ const i = t.lng || this.resolvedLanguage || this.languages[0], s = this.options ? this.options.fallbackLng : !1, n = this.languages[this.languages.length - 1];
1212
+ if (i.toLowerCase() === "cimode") return !0;
1213
+ const r = (a, l) => {
1214
+ const u = this.services.backendConnector.state[`${a}|${l}`];
1215
+ return u === -1 || u === 0 || u === 2;
1216
+ };
1217
+ if (t.precheck) {
1218
+ const a = t.precheck(this, r);
1219
+ if (a !== void 0) return a;
1220
+ }
1221
+ return !!(this.hasResourceBundle(i, e) || !this.services.backendConnector.backend || this.options.resources && !this.options.partialBundledLanguages || r(i, e) && (!s || r(n, e)));
1222
+ }
1223
+ loadNamespaces(e, t) {
1224
+ const i = K();
1225
+ return this.options.ns ? (d(e) && (e = [e]), e.forEach((s) => {
1226
+ this.options.ns.indexOf(s) < 0 && this.options.ns.push(s);
1227
+ }), this.loadResources((s) => {
1228
+ i.resolve(), t && t(s);
1229
+ }), i) : (t && t(), Promise.resolve());
1230
+ }
1231
+ loadLanguages(e, t) {
1232
+ const i = K();
1233
+ d(e) && (e = [e]);
1234
+ const s = this.options.preload || [], n = e.filter((r) => s.indexOf(r) < 0 && this.services.languageUtils.isSupportedCode(r));
1235
+ return n.length ? (this.options.preload = s.concat(n), this.loadResources((r) => {
1236
+ i.resolve(), t && t(r);
1237
+ }), i) : (t && t(), Promise.resolve());
1238
+ }
1239
+ dir(e) {
1240
+ if (e || (e = this.resolvedLanguage || (this.languages?.length > 0 ? this.languages[0] : this.language)), !e) return "rtl";
1241
+ try {
1242
+ const s = new Intl.Locale(e);
1243
+ if (s && s.getTextInfo) {
1244
+ const n = s.getTextInfo();
1245
+ if (n && n.direction) return n.direction;
1246
+ }
1247
+ } catch {
1248
+ }
1249
+ const t = ["ar", "shu", "sqr", "ssh", "xaa", "yhd", "yud", "aao", "abh", "abv", "acm", "acq", "acw", "acx", "acy", "adf", "ads", "aeb", "aec", "afb", "ajp", "apc", "apd", "arb", "arq", "ars", "ary", "arz", "auz", "avl", "ayh", "ayl", "ayn", "ayp", "bbz", "pga", "he", "iw", "ps", "pbt", "pbu", "pst", "prp", "prd", "ug", "ur", "ydd", "yds", "yih", "ji", "yi", "hbo", "men", "xmn", "fa", "jpr", "peo", "pes", "prs", "dv", "sam", "ckb"], i = this.services?.languageUtils || new oe(ce());
1250
+ return e.toLowerCase().indexOf("-latn") > 1 ? "ltr" : t.indexOf(i.getLanguagePartFromCode(e)) > -1 || e.toLowerCase().indexOf("-arab") > 1 ? "rtl" : "ltr";
1251
+ }
1252
+ static createInstance(e = {}, t) {
1253
+ return new M(e, t);
1254
+ }
1255
+ cloneInstance(e = {}, t = z) {
1256
+ const i = e.forkResourceStore;
1257
+ i && delete e.forkResourceStore;
1258
+ const s = {
1259
+ ...this.options,
1260
+ ...e,
1261
+ isClone: !0
1262
+ }, n = new M(s);
1263
+ if ((e.debug !== void 0 || e.prefix !== void 0) && (n.logger = n.logger.clone(e)), ["store", "services", "language"].forEach((a) => {
1264
+ n[a] = this[a];
1265
+ }), n.services = {
1266
+ ...this.services
1267
+ }, n.services.utils = {
1268
+ hasLoadedNamespace: n.hasLoadedNamespace.bind(n)
1269
+ }, i) {
1270
+ const a = Object.keys(this.store.data).reduce((l, u) => (l[u] = {
1271
+ ...this.store.data[u]
1272
+ }, l[u] = Object.keys(l[u]).reduce((h, f) => (h[f] = {
1273
+ ...l[u][f]
1274
+ }, h), l[u]), l), {});
1275
+ n.store = new ne(a, s), n.services.resourceStore = n.store;
1276
+ }
1277
+ return n.translator = new _(n.services, s), n.translator.on("*", (a, ...l) => {
1278
+ n.emit(a, ...l);
1279
+ }), n.init(s, t), n.translator.options = s, n.translator.backendConnector.services.utils = {
1280
+ hasLoadedNamespace: n.hasLoadedNamespace.bind(n)
1281
+ }, n;
1282
+ }
1283
+ toJSON() {
1284
+ return {
1285
+ options: this.options,
1286
+ store: this.store,
1287
+ language: this.language,
1288
+ languages: this.languages,
1289
+ resolvedLanguage: this.resolvedLanguage
1290
+ };
1291
+ }
1292
+ }
1293
+ const m = M.createInstance();
1294
+ m.createInstance = M.createInstance;
1295
+ m.createInstance;
1296
+ m.dir;
1297
+ m.init;
1298
+ m.loadResources;
1299
+ m.reloadResources;
1300
+ m.use;
1301
+ m.changeLanguage;
1302
+ m.getFixedT;
1303
+ m.t;
1304
+ m.exists;
1305
+ m.setDefaultNamespace;
1306
+ m.hasLoadedNamespace;
1307
+ m.loadNamespaces;
1308
+ m.loadLanguages;
1309
+ var xe = Symbol();
1310
+ function Ge(o, {
1311
+ i18next: e,
1312
+ rerenderOn: t = ["languageChanged", "loaded", "added", "removed"],
1313
+ slotStart: i = "{",
1314
+ slotEnd: s = "}"
1315
+ }) {
1316
+ const n = be(/* @__PURE__ */ new Date()), r = () => Oe(() => {
1317
+ n.value = /* @__PURE__ */ new Date();
1318
+ }), a = () => n.value;
1319
+ t.forEach((h) => {
1320
+ var f;
1321
+ switch (h) {
1322
+ case "added":
1323
+ case "removed":
1324
+ (f = e.store) == null || f.on(h, r);
1325
+ break;
1326
+ default:
1327
+ e.on(h, r);
1328
+ break;
1329
+ }
1330
+ }), o.component("i18next", Je);
1331
+ const l = () => e.isInitialized;
1332
+ o.config.globalProperties.$t = ge(
1333
+ e.t.bind(e),
1334
+ a,
1335
+ l
1336
+ );
1337
+ const u = new Proxy(e, {
1338
+ get(h, f) {
1339
+ return a(), Reflect.get(h, f);
1340
+ }
1341
+ });
1342
+ o.config.globalProperties.$i18next = u, o.provide(xe, {
1343
+ i18next: u,
1344
+ slotPattern: Be(i, s),
1345
+ withAccessRecording(h, f) {
1346
+ return ge(h, a, f);
1347
+ }
1348
+ });
1349
+ }
1350
+ function ge(o, e, t) {
1351
+ return new Proxy(o, {
1352
+ apply: function(i, s, n) {
1353
+ return e(), t() ? Reflect.apply(i, s, n) : "";
1354
+ }
1355
+ });
1356
+ }
1357
+ function ze() {
1358
+ const o = we(xe);
1359
+ if (!o)
1360
+ throw new Error(
1361
+ "i18next-vue: Make sure to register the i18next-vue plugin using app.use(...)."
1362
+ );
1363
+ return o;
1364
+ }
1365
+ function Be(o, e) {
1366
+ const t = `${o}\\s*([a-z0-9\\-]+)\\s*${e}`;
1367
+ return new RegExp(t, "gi");
1368
+ }
1369
+ var Je = Le({
1370
+ props: {
1371
+ translation: {
1372
+ type: String,
1373
+ required: !0
1374
+ }
1375
+ },
1376
+ setup(o, { slots: e }) {
1377
+ const { slotPattern: t } = ze();
1378
+ return () => {
1379
+ const i = o.translation, s = [];
1380
+ let n, r = 0;
1381
+ for (; (n = t.exec(i)) !== null; ) {
1382
+ s.push(i.substring(r, n.index));
1383
+ const a = e[n[1]];
1384
+ a ? s.push(...a()) : s.push(n[0]), r = t.lastIndex;
1385
+ }
1386
+ return s.push(i.substring(r)), s;
1387
+ };
1388
+ }
1389
+ });
1390
+ const _e = "translation";
1391
+ async function Ze(o) {
1392
+ for (const [e, t] of Object.entries(o)) {
1393
+ const i = e.match(/\/(\w+)\.json$/)[1];
1394
+ await We(i, t);
1395
+ }
1396
+ }
1397
+ async function We(o, e) {
1398
+ await Qe(), m.addResourceBundle(o, _e, e, !0, !0);
1399
+ }
1400
+ async function Qe() {
1401
+ m.isInitialized || await m.init();
1402
+ }
1403
+ export {
1404
+ Ze as a,
1405
+ Ge as b,
1406
+ m as i
1407
+ };