aesirx-analytics 2.0.0 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,875 @@
1
+ var __create = Object.create;
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
7
+ var __commonJS = (cb, mod) => function __require() {
8
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
19
+ // If the importer is in node compatibility mode or this is not an ESM
20
+ // file that has been converted to a CommonJS file using a Babel-
21
+ // compatible transform (i.e. "__esModule" has not been set), then set
22
+ // "default" to the CommonJS "module.exports" for node compatibility.
23
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
24
+ mod
25
+ ));
26
+
27
+ // node_modules/void-elements/index.js
28
+ var require_void_elements = __commonJS({
29
+ "node_modules/void-elements/index.js"(exports, module) {
30
+ module.exports = {
31
+ "area": true,
32
+ "base": true,
33
+ "br": true,
34
+ "col": true,
35
+ "embed": true,
36
+ "hr": true,
37
+ "img": true,
38
+ "input": true,
39
+ "link": true,
40
+ "meta": true,
41
+ "param": true,
42
+ "source": true,
43
+ "track": true,
44
+ "wbr": true
45
+ };
46
+ }
47
+ });
48
+
49
+ // node_modules/react-i18next/dist/es/useTranslation.js
50
+ import { useState, useEffect, useContext, useRef } from "react";
51
+
52
+ // node_modules/react-i18next/dist/es/context.js
53
+ import { createContext } from "react";
54
+
55
+ // node_modules/react-i18next/dist/es/unescape.js
56
+ var matchHtmlEntity = /&(?:amp|#38|lt|#60|gt|#62|apos|#39|quot|#34|nbsp|#160|copy|#169|reg|#174|hellip|#8230|#x2F|#47);/g;
57
+ var htmlEntities = {
58
+ "&": "&",
59
+ "&": "&",
60
+ "&lt;": "<",
61
+ "&#60;": "<",
62
+ "&gt;": ">",
63
+ "&#62;": ">",
64
+ "&apos;": "'",
65
+ "&#39;": "'",
66
+ "&quot;": '"',
67
+ "&#34;": '"',
68
+ "&nbsp;": " ",
69
+ "&#160;": " ",
70
+ "&copy;": "\xA9",
71
+ "&#169;": "\xA9",
72
+ "&reg;": "\xAE",
73
+ "&#174;": "\xAE",
74
+ "&hellip;": "\u2026",
75
+ "&#8230;": "\u2026",
76
+ "&#x2F;": "/",
77
+ "&#47;": "/"
78
+ };
79
+ var unescapeHtmlEntity = (m) => htmlEntities[m];
80
+ var unescape = (text) => text.replace(matchHtmlEntity, unescapeHtmlEntity);
81
+
82
+ // node_modules/react-i18next/dist/es/defaults.js
83
+ var defaultOptions = {
84
+ bindI18n: "languageChanged",
85
+ bindI18nStore: "",
86
+ transEmptyNodeValue: "",
87
+ transSupportBasicHtmlNodes: true,
88
+ transWrapTextNodes: "",
89
+ transKeepBasicHtmlNodesFor: ["br", "strong", "i", "p"],
90
+ useSuspense: true,
91
+ unescape
92
+ };
93
+ function setDefaults() {
94
+ let options = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
95
+ defaultOptions = {
96
+ ...defaultOptions,
97
+ ...options
98
+ };
99
+ }
100
+ function getDefaults() {
101
+ return defaultOptions;
102
+ }
103
+
104
+ // node_modules/react-i18next/dist/es/i18nInstance.js
105
+ var i18nInstance;
106
+ function setI18n(instance) {
107
+ i18nInstance = instance;
108
+ }
109
+ function getI18n() {
110
+ return i18nInstance;
111
+ }
112
+
113
+ // node_modules/react-i18next/dist/es/initReactI18next.js
114
+ var initReactI18next = {
115
+ type: "3rdParty",
116
+ init(instance) {
117
+ setDefaults(instance.options.react);
118
+ setI18n(instance);
119
+ }
120
+ };
121
+
122
+ // node_modules/react-i18next/dist/es/context.js
123
+ var I18nContext = createContext();
124
+ var ReportNamespaces = class {
125
+ constructor() {
126
+ this.usedNamespaces = {};
127
+ }
128
+ addUsedNamespaces(namespaces) {
129
+ namespaces.forEach((ns) => {
130
+ if (!this.usedNamespaces[ns])
131
+ this.usedNamespaces[ns] = true;
132
+ });
133
+ }
134
+ getUsedNamespaces() {
135
+ return Object.keys(this.usedNamespaces);
136
+ }
137
+ };
138
+
139
+ // node_modules/react-i18next/dist/es/utils.js
140
+ function warn() {
141
+ if (console && console.warn) {
142
+ for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
143
+ args[_key] = arguments[_key];
144
+ }
145
+ if (typeof args[0] === "string")
146
+ args[0] = `react-i18next:: ${args[0]}`;
147
+ }
148
+ }
149
+ var alreadyWarned = {};
150
+ function warnOnce() {
151
+ for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
152
+ args[_key2] = arguments[_key2];
153
+ }
154
+ if (typeof args[0] === "string" && alreadyWarned[args[0]])
155
+ return;
156
+ if (typeof args[0] === "string")
157
+ alreadyWarned[args[0]] = /* @__PURE__ */ new Date();
158
+ warn(...args);
159
+ }
160
+ var loadedClb = (i18n2, cb) => () => {
161
+ if (i18n2.isInitialized) {
162
+ cb();
163
+ } else {
164
+ const initialized = () => {
165
+ setTimeout(() => {
166
+ i18n2.off("initialized", initialized);
167
+ }, 0);
168
+ cb();
169
+ };
170
+ i18n2.on("initialized", initialized);
171
+ }
172
+ };
173
+ function loadNamespaces(i18n2, ns, cb) {
174
+ i18n2.loadNamespaces(ns, loadedClb(i18n2, cb));
175
+ }
176
+ function loadLanguages(i18n2, lng, ns, cb) {
177
+ if (typeof ns === "string")
178
+ ns = [ns];
179
+ ns.forEach((n) => {
180
+ if (i18n2.options.ns.indexOf(n) < 0)
181
+ i18n2.options.ns.push(n);
182
+ });
183
+ i18n2.loadLanguages(lng, loadedClb(i18n2, cb));
184
+ }
185
+ function oldI18nextHasLoadedNamespace(ns, i18n2) {
186
+ let options = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
187
+ const lng = i18n2.languages[0];
188
+ const fallbackLng = i18n2.options ? i18n2.options.fallbackLng : false;
189
+ const lastLng = i18n2.languages[i18n2.languages.length - 1];
190
+ if (lng.toLowerCase() === "cimode")
191
+ return true;
192
+ const loadNotPending = (l, n) => {
193
+ const loadState = i18n2.services.backendConnector.state[`${l}|${n}`];
194
+ return loadState === -1 || loadState === 2;
195
+ };
196
+ if (options.bindI18n && options.bindI18n.indexOf("languageChanging") > -1 && i18n2.services.backendConnector.backend && i18n2.isLanguageChangingTo && !loadNotPending(i18n2.isLanguageChangingTo, ns))
197
+ return false;
198
+ if (i18n2.hasResourceBundle(lng, ns))
199
+ return true;
200
+ if (!i18n2.services.backendConnector.backend || i18n2.options.resources && !i18n2.options.partialBundledLanguages)
201
+ return true;
202
+ if (loadNotPending(lng, ns) && (!fallbackLng || loadNotPending(lastLng, ns)))
203
+ return true;
204
+ return false;
205
+ }
206
+ function hasLoadedNamespace(ns, i18n2) {
207
+ let options = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {};
208
+ if (!i18n2.languages || !i18n2.languages.length) {
209
+ warnOnce("i18n.languages were undefined or empty", i18n2.languages);
210
+ return true;
211
+ }
212
+ const isNewerI18next = i18n2.options.ignoreJSONStructure !== void 0;
213
+ if (!isNewerI18next) {
214
+ return oldI18nextHasLoadedNamespace(ns, i18n2, options);
215
+ }
216
+ return i18n2.hasLoadedNamespace(ns, {
217
+ lng: options.lng,
218
+ precheck: (i18nInstance2, loadNotPending) => {
219
+ if (options.bindI18n && options.bindI18n.indexOf("languageChanging") > -1 && i18nInstance2.services.backendConnector.backend && i18nInstance2.isLanguageChangingTo && !loadNotPending(i18nInstance2.isLanguageChangingTo, ns))
220
+ return false;
221
+ }
222
+ });
223
+ }
224
+
225
+ // node_modules/react-i18next/dist/es/useTranslation.js
226
+ var usePrevious = (value, ignore) => {
227
+ const ref = useRef();
228
+ useEffect(() => {
229
+ ref.current = ignore ? ref.current : value;
230
+ }, [value, ignore]);
231
+ return ref.current;
232
+ };
233
+ function useTranslation(ns) {
234
+ let props = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
235
+ const {
236
+ i18n: i18nFromProps
237
+ } = props;
238
+ const {
239
+ i18n: i18nFromContext,
240
+ defaultNS: defaultNSFromContext
241
+ } = useContext(I18nContext) || {};
242
+ const i18n2 = i18nFromProps || i18nFromContext || getI18n();
243
+ if (i18n2 && !i18n2.reportNamespaces)
244
+ i18n2.reportNamespaces = new ReportNamespaces();
245
+ if (!i18n2) {
246
+ warnOnce("You will need to pass in an i18next instance by using initReactI18next");
247
+ const notReadyT = (k, optsOrDefaultValue) => {
248
+ if (typeof optsOrDefaultValue === "string")
249
+ return optsOrDefaultValue;
250
+ if (optsOrDefaultValue && typeof optsOrDefaultValue === "object" && typeof optsOrDefaultValue.defaultValue === "string")
251
+ return optsOrDefaultValue.defaultValue;
252
+ return Array.isArray(k) ? k[k.length - 1] : k;
253
+ };
254
+ const retNotReady = [notReadyT, {}, false];
255
+ retNotReady.t = notReadyT;
256
+ retNotReady.i18n = {};
257
+ retNotReady.ready = false;
258
+ return retNotReady;
259
+ }
260
+ if (i18n2.options.react && i18n2.options.react.wait !== void 0)
261
+ warnOnce("It seems you are still using the old wait option, you may migrate to the new useSuspense behaviour.");
262
+ const i18nOptions = {
263
+ ...getDefaults(),
264
+ ...i18n2.options.react,
265
+ ...props
266
+ };
267
+ const {
268
+ useSuspense,
269
+ keyPrefix
270
+ } = i18nOptions;
271
+ let namespaces = ns || defaultNSFromContext || i18n2.options && i18n2.options.defaultNS;
272
+ namespaces = typeof namespaces === "string" ? [namespaces] : namespaces || ["translation"];
273
+ if (i18n2.reportNamespaces.addUsedNamespaces)
274
+ i18n2.reportNamespaces.addUsedNamespaces(namespaces);
275
+ const ready = (i18n2.isInitialized || i18n2.initializedStoreOnce) && namespaces.every((n) => hasLoadedNamespace(n, i18n2, i18nOptions));
276
+ function getT() {
277
+ return i18n2.getFixedT(props.lng || null, i18nOptions.nsMode === "fallback" ? namespaces : namespaces[0], keyPrefix);
278
+ }
279
+ const [t, setT] = useState(getT);
280
+ let joinedNS = namespaces.join();
281
+ if (props.lng)
282
+ joinedNS = `${props.lng}${joinedNS}`;
283
+ const previousJoinedNS = usePrevious(joinedNS);
284
+ const isMounted = useRef(true);
285
+ useEffect(() => {
286
+ const {
287
+ bindI18n,
288
+ bindI18nStore
289
+ } = i18nOptions;
290
+ isMounted.current = true;
291
+ if (!ready && !useSuspense) {
292
+ if (props.lng) {
293
+ loadLanguages(i18n2, props.lng, namespaces, () => {
294
+ if (isMounted.current)
295
+ setT(getT);
296
+ });
297
+ } else {
298
+ loadNamespaces(i18n2, namespaces, () => {
299
+ if (isMounted.current)
300
+ setT(getT);
301
+ });
302
+ }
303
+ }
304
+ if (ready && previousJoinedNS && previousJoinedNS !== joinedNS && isMounted.current) {
305
+ setT(getT);
306
+ }
307
+ function boundReset() {
308
+ if (isMounted.current)
309
+ setT(getT);
310
+ }
311
+ if (bindI18n && i18n2)
312
+ i18n2.on(bindI18n, boundReset);
313
+ if (bindI18nStore && i18n2)
314
+ i18n2.store.on(bindI18nStore, boundReset);
315
+ return () => {
316
+ isMounted.current = false;
317
+ if (bindI18n && i18n2)
318
+ bindI18n.split(" ").forEach((e2) => i18n2.off(e2, boundReset));
319
+ if (bindI18nStore && i18n2)
320
+ bindI18nStore.split(" ").forEach((e2) => i18n2.store.off(e2, boundReset));
321
+ };
322
+ }, [i18n2, joinedNS]);
323
+ const isInitial = useRef(true);
324
+ useEffect(() => {
325
+ if (isMounted.current && !isInitial.current) {
326
+ setT(getT);
327
+ }
328
+ isInitial.current = false;
329
+ }, [i18n2, keyPrefix]);
330
+ const ret = [t, i18n2, ready];
331
+ ret.t = t;
332
+ ret.i18n = i18n2;
333
+ ret.ready = ready;
334
+ if (ready)
335
+ return ret;
336
+ if (!ready && !useSuspense)
337
+ return ret;
338
+ throw new Promise((resolve) => {
339
+ if (props.lng) {
340
+ loadLanguages(i18n2, props.lng, namespaces, () => resolve());
341
+ } else {
342
+ loadNamespaces(i18n2, namespaces, () => resolve());
343
+ }
344
+ });
345
+ }
346
+
347
+ // node_modules/react-i18next/dist/es/Trans.js
348
+ import { useContext as useContext2 } from "react";
349
+
350
+ // node_modules/react-i18next/dist/es/TransWithoutContext.js
351
+ import React, { isValidElement, cloneElement, createElement, Children } from "react";
352
+
353
+ // node_modules/html-parse-stringify/dist/html-parse-stringify.module.js
354
+ var import_void_elements = __toESM(require_void_elements());
355
+
356
+ // node_modules/react-i18next/dist/es/withTranslation.js
357
+ import { createElement as createElement2, forwardRef as forwardRefReact } from "react";
358
+
359
+ // node_modules/react-i18next/dist/es/I18nextProvider.js
360
+ import { createElement as createElement3, useMemo } from "react";
361
+ function I18nextProvider(_ref) {
362
+ let {
363
+ i18n: i18n2,
364
+ defaultNS,
365
+ children
366
+ } = _ref;
367
+ const value = useMemo(() => ({
368
+ i18n: i18n2,
369
+ defaultNS
370
+ }), [i18n2, defaultNS]);
371
+ return createElement3(I18nContext.Provider, {
372
+ value
373
+ }, children);
374
+ }
375
+
376
+ // node_modules/react-i18next/dist/es/withSSR.js
377
+ import { createElement as createElement4 } from "react";
378
+
379
+ // node_modules/react-i18next/dist/es/useSSR.js
380
+ import { useContext as useContext3 } from "react";
381
+
382
+ // src/utils/AnalyticsContextProvider.tsx
383
+ import React3, { useState as useState2 } from "react";
384
+
385
+ // src/translations/dk/common.json
386
+ var common_default = {
387
+ txt_tier_1_tier: "Tier 1",
388
+ txt_tier_1_name: "Sessionsbaseret",
389
+ txt_tier_1_levelname: "Grundl\xE6ggende",
390
+ txt_tier_1_content: "Ideelt til nye bes\xF8gende p\xE5 webstedet, eller hvis du ikke vil have dine data gemt ud over dit nuv\xE6rende bes\xF8g.",
391
+ txt_tier_1_term: "Du giver kun samtykke til dataindsamling i en 30-minutters session.",
392
+ txt_tier_1_upgrade: "Opgrader til niveau 2-samtykke - medium",
393
+ txt_tier_1_upgradetext: " & tilf\xF8j en Web3 Wallet for st\xF8rre datakontrol og samtykke eller tilbagekald til enhver tid, du v\xE6lger.",
394
+ txt_tier_2_tier: "Tier 2",
395
+ txt_tier_2_name: "AesirX Shield of Privacy",
396
+ txt_tier_2_levelname: "Medium",
397
+ txt_tier_2_content: "Ideel til personlige onlineoplevelser og sikker samtykkestyring p\xE5 tv\xE6rs af sessioner og platforme.",
398
+ txt_tier_2_term: "Du giver samtykke til databrug p\xE5 tv\xE6rs af flere sessioner.",
399
+ txt_tier_2_upgrade: "Opgrader til niveau 3-samtykke - h\xF8j",
400
+ txt_tier_2_upgradetext: " & tilf\xF8j tegnebogsbaseret decentraliseret samtykke for at give eksplicit samtykke til dataindsamling og -behandling for den mest sikre, private og personlige oplevelse.",
401
+ txt_tier_3_tier: "Tier 3",
402
+ txt_tier_3_name: "Decentral tegnebog",
403
+ txt_tier_3_levelname: "H\xF8j",
404
+ txt_tier_3_content: "Brug din Web3 Wallet til at f\xE5 st\xF8rre kontrol over dine data.",
405
+ txt_tier_3_term: "Du giver samtykke til, at dine data bliver brugt, som kan tilbagekaldes n\xE5r som helst, du v\xE6lger.",
406
+ txt_tier_3_upgrade: "Opgrader til niveau 4-samtykke - superavanceret (vores h\xF8jeste niveau!)",
407
+ txt_tier_3_upgradetext: " & tilf\xF8j AesirX Shield of Privacy for at give eksplicit samtykke til dataindsamling og -behandling for den mest sikre, private og personlige oplevelse.",
408
+ txt_tier_4_tier: "Tier 4",
409
+ txt_tier_4_name: "Kombineret tegnebog + AesirX Shield of Privacy",
410
+ txt_tier_4_levelname: "Superavanceret",
411
+ txt_tier_4_content: "Brug din Web3 Wallet + AesirX Shield of Privacy og f\xE5 fuld kontrol p\xE5 flere websteder over din databrug. Giv samtykke eller tilbagekald tilladelser til enhver tid for \xE6gte decentraliseret dataejerskab.",
412
+ txt_tier_4_term: "Du giver samtykke til, at dine data bliver brugt, som kan tilbagekaldes n\xE5r som helst, du v\xE6lger.",
413
+ txt_tier_4_upgradetext: "Den mest personlige og privatlivsbevarende oplevelse!",
414
+ txt_show_details: "Vis detaljer",
415
+ txt_hide_details: "Skjul detaljer",
416
+ txt_no_collect: "Vi indsamler ingen personlige data, kun brugerindsigt.",
417
+ txt_shield_of_privacy: "Shield of Privacy",
418
+ txt_you_can_revoke: "Du kan til enhver tid tilbagekalde dit samtykke til databrug.",
419
+ txt_go_to: "G\xE5 til",
420
+ txt_link: "link",
421
+ txt_for_more_information: "for mere information.",
422
+ txt_manage_consent: "Administrer samtykke",
423
+ txt_revoke_consent: "Tilbagekald samtykke",
424
+ txt_yes_i_consent: "Ja, jeg giver samtykke",
425
+ txt_reject_consent: "Afvis samtykke",
426
+ txt_please_connect: "Tilslut venligst din Concordium tegnebog",
427
+ txt_please_sign: "Skriv venligst beskeden p\xE5 din tegnebog to gange og vent p\xE5, at den bliver gemt.",
428
+ txt_saving: "Gemmer...",
429
+ txt_please_connect_your_wallet: "Forbind venligst til din tegnebog",
430
+ txt_connecting: "Opretter forbindelse"
431
+ };
432
+
433
+ // src/translations/en/common.json
434
+ var common_default2 = {
435
+ txt_tier_1_tier: "Tier 1",
436
+ txt_tier_1_name: "Session-Based",
437
+ txt_tier_1_levelname: "Basic",
438
+ txt_tier_1_content: "Ideal for new site visitors or if you don't want your data stored beyond your current visit.",
439
+ txt_tier_1_term: "You consent to data collection for a 30-minute session only.",
440
+ txt_tier_1_upgrade: "Upgrade to Tier 2 Consent - Medium",
441
+ txt_tier_1_upgradetext: " & add on a Web3 Wallet for greater data control & consent or revoke at any time you choose.",
442
+ txt_tier_2_tier: "Tier 2",
443
+ txt_tier_2_name: "AesirX Shield of Privacy",
444
+ txt_tier_2_levelname: "Medium",
445
+ txt_tier_2_content: "Ideal for personalized online experiences & secure consent management across sessions & platforms.",
446
+ txt_tier_2_term: "You consent to data use across multiple sessions.",
447
+ txt_tier_2_upgrade: "Upgrade to Tier 3 Consent - High",
448
+ txt_tier_2_upgradetext: " & add on Wallet-Based Decentralized Consent to give explicit consent for data collection & processing for the most secure, private & personalized experience.",
449
+ txt_tier_3_tier: "Tier 3",
450
+ txt_tier_3_name: "Decentralized Wallet",
451
+ txt_tier_3_levelname: "High",
452
+ txt_tier_3_content: "Utilize your Web3 Wallet for greater control over your data.",
453
+ txt_tier_3_term: "You consent for your data to be used, which can be revoked at any time you choose.",
454
+ txt_tier_3_upgrade: "Upgrade to Tier 4 Consent - Super Advanced (our highest tier!)",
455
+ txt_tier_3_upgradetext: " & add on AesirX Shield of Privacy to give explicit consent for data collection & processing for the most secure, private & personalized experience.",
456
+ txt_tier_4_tier: "Tier 4",
457
+ txt_tier_4_name: "Combined Wallet + AesirX Shield of Privacy",
458
+ txt_tier_4_levelname: "Super Advanced",
459
+ txt_tier_4_content: "Use your Web3 Wallet + AesirX Shield of Privacy & get full multi-site control of your data use. Consent or revoke permissions at any time for true decentralized data ownership.",
460
+ txt_tier_4_term: "You consent for your data to be used, which can be revoked at any time you choose.",
461
+ txt_tier_4_upgradetext: "The most personalized and privacy-preserving experience!",
462
+ txt_show_details: "Show details",
463
+ txt_hide_details: "Hide details",
464
+ txt_no_collect: "We do not collect any personal data, only user insights.",
465
+ txt_shield_of_privacy: "Shield of Privacy",
466
+ txt_you_can_revoke: "You can revoke your consent for data usage at any time.",
467
+ txt_go_to: "Go to",
468
+ txt_link: "link",
469
+ txt_for_more_information: "for more information.",
470
+ txt_manage_consent: "Manage Consent",
471
+ txt_revoke_consent: "Revoke Consent",
472
+ txt_yes_i_consent: "Yes, I consent",
473
+ txt_reject_consent: "Reject Consent",
474
+ txt_please_connect: "Please connect your Concordium wallet",
475
+ txt_please_sign: "Please sign the message on your wallet twice and wait for it to be saved.",
476
+ txt_saving: "Saving...",
477
+ txt_please_connect_your_wallet: "Please connect to your wallet",
478
+ txt_connecting: "Connecting"
479
+ };
480
+
481
+ // src/translations/es/common.json
482
+ var common_default3 = {
483
+ txt_tier_1_tier: "Nivel 1",
484
+ txt_tier_1_name: "Basado en sesi\xF3n",
485
+ txt_tier_1_levelname: "B\xE1sico",
486
+ txt_tier_1_content: "Ideal para nuevos visitantes del sitio o si no desea que sus datos se almacenen m\xE1s all\xE1 de su visita actual",
487
+ txt_tier_1_term: "Consientes la recopilaci\xF3n de datos solo para una sesi\xF3n de 30 minutos.",
488
+ txt_tier_1_upgrade: "Actualizar a Consentimiento de Nivel 2 - Medio",
489
+ txt_tier_1_upgradetext: " Y agregue una billetera Web3 para un mayor control de datos y consentimiento o revoque en cualquier momento que elija.",
490
+ txt_tier_2_tier: "Nivel 2",
491
+ txt_tier_2_name: "Escudo de Privacidad de AesirX",
492
+ txt_tier_2_levelname: "Medio",
493
+ txt_tier_2_content: "Ideal para experiencias en l\xEDnea personalizadas y administraci\xF3n segura de consentimiento en sesiones y plataformas",
494
+ txt_tier_2_term: "Consientes el uso de datos en m\xFAltiples sesiones.",
495
+ txt_tier_2_upgrade: "Actualizar a Consentimiento de Nivel 3 - Alto",
496
+ txt_tier_2_upgradetext: " & agregue el Consentimiento descentralizado basado en billetera para dar consentimiento expl\xEDcito para la recopilaci\xF3n y el procesamiento de datos para la experiencia m\xE1s segura, privada y personalizada.",
497
+ txt_tier_3_tier: "Nivel 3",
498
+ txt_tier_3_name: "Monedero Descentralizado",
499
+ txt_tier_3_levelname: "Alto",
500
+ txt_tier_3_content: "Utilice su Monedero Web3 para un mayor control sobre sus datos.",
501
+ txt_tier_3_term: "Usted da su consentimiento para que se utilicen sus datos, que puede revocar en cualquier momento que elija.",
502
+ txt_tier_3_upgrade: "Actualizar a Consentimiento de Nivel 4 - S\xFAper Avanzado (\xA1nuestro nivel m\xE1s alto!)",
503
+ txt_tier_3_upgradetext: " & agregue AesirX Shield of Privacy para dar consentimiento expl\xEDcito para la recopilaci\xF3n y procesamiento de datos para la experiencia m\xE1s segura, privada y personalizada.",
504
+ txt_tier_4_tier: "Nivel 4",
505
+ txt_tier_4_name: "Monedero Combinado + Escudo de Privacidad AesirX",
506
+ txt_tier_4_levelname: "S\xFAper Avanzado",
507
+ txt_tier_4_content: "Use su Monedero Web3 + AesirX Shield of Privacy y obtenga un control total del uso de sus datos en m\xFAltiples sitios. Consienta o revoque los permisos en cualquier momento para una verdadera propiedad descentralizada de los datos.",
508
+ txt_tier_4_term: "Usted da su consentimiento para que se utilicen sus datos, que puede revocar en cualquier momento que elija.",
509
+ txt_tier_4_upgradetext: "\xA1La experiencia m\xE1s personalizada y que preserva la privacidad!",
510
+ txt_show_details: "Mostrar detalles",
511
+ txt_hide_details: "Ocultar detalles",
512
+ txt_no_collect: "No recopilamos ning\xFAn dato personal, solo informaci\xF3n del usuario",
513
+ txt_shield_of_privacy: "Shield of Privacy",
514
+ txt_you_can_revoke: "Puedes revocar tu consentimiento para el uso de datos en cualquier momento.",
515
+ txt_go_to: "Ir a",
516
+ txt_link: "enlace",
517
+ txt_for_more_information: "para m\xE1s informaci\xF3n.",
518
+ txt_manage_consent: "Administrar consentimiento",
519
+ txt_revoke_consent: "Revocar consentimiento",
520
+ txt_yes_i_consent: "S\xED, doy mi consentimiento",
521
+ txt_reject_consent: "Rechazar consentimiento",
522
+ txt_please_connect: "Conecte su billetera Concordium",
523
+ txt_please_sign: "Por favor, firme el mensaje en su billetera dos veces y espere a que se guarde.",
524
+ txt_saving: "Guardando...",
525
+ txt_please_connect_your_wallet: "Con\xE9ctese a su billetera",
526
+ txt_connecting: "Conectando"
527
+ };
528
+
529
+ // src/translations/hr/common.json
530
+ var common_default4 = {
531
+ txt_tier_1_tier: "Razina 1",
532
+ txt_tier_1_name: "Na temelju sesije",
533
+ txt_tier_1_levelname: "Osnovno",
534
+ txt_tier_1_content: "Idealno za nove posjetitelje stranice ili ako ne \u017Eelite da se va\u0161i podaci pohranjuju nakon trenutne posjete.",
535
+ txt_tier_1_term: "Pristajete na prikupljanje podataka samo za sesiju od 30 minuta.",
536
+ txt_tier_1_upgrade: "Nadogradnja na Tier 2 Consent - Medium",
537
+ txt_tier_1_upgradetext: "i dodajte Web3 Wallet za ve\u0107u kontrolu podataka i pristanak ili opoziv u bilo kojem trenutku po va\u0161em izboru.",
538
+ txt_tier_2_tier: "Razina 2",
539
+ txt_tier_2_name: "AesirX Shield of Privacy",
540
+ txt_tier_2_levelname: "Srednji",
541
+ txt_tier_2_content: "Idealan za personalizirana online iskustva i sigurno upravljanje pristankom na svim sesijama i platformama.",
542
+ txt_tier_2_term: "Pristajete na kori\u0161tenje podataka u vi\u0161e sesija.",
543
+ txt_tier_2_upgrade: "Nadogradnja na Tier 3 Consent - High",
544
+ txt_tier_2_upgradetext: "i dodajte decentralizirani pristanak temeljen na nov\u010Daniku za davanje izri\u010Ditog pristanka za prikupljanje i obradu podataka za najsigurnije, privatno i personalizirano iskustvo.",
545
+ txt_tier_3_tier: "Razina 3",
546
+ txt_tier_3_name: "Decentralizirani nov\u010Danik",
547
+ txt_tier_3_levelname: "Visoka",
548
+ txt_tier_3_content: "Upotrijebite svoj Web3 nov\u010Danik za ve\u0107u kontrolu nad svojim podacima.",
549
+ txt_tier_3_term: "Pristajete na kori\u0161tenje va\u0161ih podataka, \u0161to se mo\u017Ee opozvati u bilo kojem trenutku po va\u0161em izboru.",
550
+ txt_tier_3_upgrade: "Nadogradite na Tier 4 Consent - Super Advanced (na\u0161a najvi\u0161a razina!)",
551
+ txt_tier_3_upgradetext: "i dodajte AesirX Shield of Privacy kako biste dali izri\u010Dit pristanak za prikupljanje i obradu podataka za najsigurnije, privatno i personalizirano iskustvo.",
552
+ txt_tier_4_tier: "Razina 4",
553
+ txt_tier_4_name: "Kombinirani nov\u010Danik + AesirX Shield of Privacy",
554
+ txt_tier_4_levelname: "Super napredno",
555
+ txt_tier_4_content: "Upotrijebite svoj Web3 Wallet + AesirX Shield of Privacy i ostvarite potpunu vi\u0161estruku kontrolu nad upotrebom podataka. Dajte pristanak ili opozovite dopu\u0161tenja u bilo kojem trenutku za pravo decentralizirano vlasni\u0161tvo nad podacima.",
556
+ txt_tier_4_term: "Pristajete na kori\u0161tenje va\u0161ih podataka, \u0161to se mo\u017Ee opozvati u bilo kojem trenutku po va\u0161em izboru.",
557
+ txt_tier_4_upgradetext: "Najpersonaliziranije iskustvo koje \u010Duva privatnost!",
558
+ txt_show_details: "Prika\u017Ei detalje",
559
+ txt_hide_details: "Sakrij detalje",
560
+ txt_no_collect: "Ne prikupljamo nikakve osobne podatke, samo korisni\u010Dke uvide.",
561
+ txt_shield_of_privacy: "Shield of Privacy",
562
+ txt_you_can_revoke: "Mo\u017Eete opozvati svoj pristanak za kori\u0161tenje podataka u bilo kojem trenutku.",
563
+ txt_go_to: "Idi na",
564
+ txt_link: "link",
565
+ txt_for_more_information: "za vi\u0161e informacija.",
566
+ txt_manage_consent: "Upravljanje pristankom",
567
+ txt_revoke_consent: "Opozovi privolu",
568
+ txt_yes_i_consent: "Da, pristajem",
569
+ txt_reject_consent: "Odbij pristanak",
570
+ txt_please_connect: "Molimo pove\u017Eite svoj Concordium nov\u010Danik",
571
+ txt_please_sign: "Molimo vas da dvaput potpi\u0161ete poruku na svom nov\u010Daniku i pri\u010Dekate da se spremi.",
572
+ txt_saving: "Spremanje...",
573
+ txt_please_connect_your_wallet: "Pove\u017Eite se sa svojim nov\u010Danikom",
574
+ txt_connecting: "Povezivanje"
575
+ };
576
+
577
+ // src/translations/th/common.json
578
+ var common_default5 = {
579
+ txt_tier_1_tier: "\u0E23\u0E30\u0E14\u0E31\u0E1A 1",
580
+ txt_tier_1_name: "\u0E15\u0E32\u0E21\u0E40\u0E0B\u0E2A\u0E0A\u0E31\u0E19",
581
+ txt_tier_1_levelname: "\u0E1E\u0E37\u0E49\u0E19\u0E10\u0E32\u0E19",
582
+ txt_tier_1_content: "\u0E40\u0E2B\u0E21\u0E32\u0E30\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1C\u0E39\u0E49\u0E40\u0E22\u0E35\u0E48\u0E22\u0E21\u0E0A\u0E21\u0E40\u0E27\u0E47\u0E1A\u0E44\u0E0B\u0E15\u0E4C\u0E23\u0E32\u0E22\u0E43\u0E2B\u0E21\u0E48\u0E2B\u0E23\u0E37\u0E2D\u0E2B\u0E32\u0E01\u0E04\u0E38\u0E13\u0E44\u0E21\u0E48\u0E15\u0E49\u0E2D\u0E07\u0E01\u0E32\u0E23\u0E43\u0E2B\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E40\u0E01\u0E47\u0E1A\u0E44\u0E27\u0E49\u0E19\u0E2D\u0E01\u0E40\u0E2B\u0E19\u0E37\u0E2D\u0E01\u0E32\u0E23\u0E40\u0E22\u0E35\u0E48\u0E22\u0E21\u0E0A\u0E21\u0E1B\u0E31\u0E08\u0E08\u0E38\u0E1A\u0E31\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13",
583
+ txt_tier_1_term: "\u0E04\u0E38\u0E13\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E43\u0E2B\u0E49\u0E21\u0E35\u0E01\u0E32\u0E23\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E40\u0E0B\u0E2A\u0E0A\u0E31\u0E19 30 \u0E19\u0E32\u0E17\u0E35\u0E40\u0E17\u0E48\u0E32\u0E19\u0E31\u0E49\u0E19",
584
+ txt_tier_1_upgrade: "\u0E2D\u0E31\u0E1B\u0E40\u0E01\u0E23\u0E14\u0E40\u0E1B\u0E47\u0E19\u0E01\u0E32\u0E23\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E23\u0E30\u0E14\u0E31\u0E1A 2 - \u0E1B\u0E32\u0E19\u0E01\u0E25\u0E32\u0E07",
585
+ txt_tier_1_upgradetext: " & \u0E40\u0E1E\u0E34\u0E48\u0E21\u0E43\u0E19 Web3 Wallet \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E01\u0E32\u0E23\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E17\u0E35\u0E48\u0E14\u0E35\u0E02\u0E36\u0E49\u0E19 & \u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E1E\u0E34\u0E01\u0E16\u0E2D\u0E19\u0E44\u0E14\u0E49\u0E17\u0E38\u0E01\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E40\u0E25\u0E37\u0E2D\u0E01",
586
+ txt_tier_2_tier: "\u0E23\u0E30\u0E14\u0E31\u0E1A 2",
587
+ txt_tier_2_name: "\u0E42\u0E25\u0E48\u0E04\u0E27\u0E32\u0E21\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E02\u0E2D\u0E07 AesirX",
588
+ txt_tier_2_levelname: "\u0E1B\u0E32\u0E19\u0E01\u0E25\u0E32\u0E07",
589
+ txt_tier_2_content: "\u0E40\u0E2B\u0E21\u0E32\u0E30\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E2D\u0E2D\u0E19\u0E44\u0E25\u0E19\u0E4C\u0E2A\u0E48\u0E27\u0E19\u0E1A\u0E38\u0E04\u0E04\u0E25\u0E41\u0E25\u0E30\u0E01\u0E32\u0E23\u0E08\u0E31\u0E14\u0E01\u0E32\u0E23\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E17\u0E35\u0E48\u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22\u0E43\u0E19\u0E40\u0E0B\u0E2A\u0E0A\u0E31\u0E19\u0E41\u0E25\u0E30\u0E41\u0E1E\u0E25\u0E15\u0E1F\u0E2D\u0E23\u0E4C\u0E21\u0E15\u0E48\u0E32\u0E07\u0E46",
590
+ txt_tier_2_term: "\u0E04\u0E38\u0E13\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E43\u0E2B\u0E49\u0E43\u0E0A\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E43\u0E19\u0E2B\u0E25\u0E32\u0E22\u0E40\u0E0B\u0E2A\u0E0A\u0E31\u0E19",
591
+ txt_tier_2_upgrade: "\u0E2D\u0E31\u0E1B\u0E40\u0E01\u0E23\u0E14\u0E40\u0E1B\u0E47\u0E19\u0E23\u0E30\u0E14\u0E31\u0E1A 3 \u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21 - \u0E2A\u0E39\u0E07",
592
+ txt_tier_2_upgradetext: " & \u0E40\u0E1E\u0E34\u0E48\u0E21\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E41\u0E1A\u0E1A\u0E01\u0E23\u0E30\u0E08\u0E32\u0E22\u0E28\u0E39\u0E19\u0E22\u0E4C\u0E1A\u0E19 Wallet \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E2B\u0E49\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E0A\u0E31\u0E14\u0E41\u0E08\u0E49\u0E07\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E40\u0E01\u0E47\u0E1A\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E41\u0E25\u0E30\u0E1B\u0E23\u0E30\u0E21\u0E27\u0E25\u0E1C\u0E25\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E17\u0E35\u0E48\u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22 \u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27 \u0E41\u0E25\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E21\u0E32\u0E01\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14",
593
+ txt_tier_3_tier: "\u0E23\u0E30\u0E14\u0E31\u0E1A 3",
594
+ txt_tier_3_name: "\u0E01\u0E23\u0E30\u0E40\u0E1B\u0E4B\u0E32\u0E2A\u0E15\u0E32\u0E07\u0E04\u0E4C\u0E01\u0E23\u0E30\u0E08\u0E32\u0E22\u0E2D\u0E33\u0E19\u0E32\u0E08",
595
+ txt_tier_3_levelname: "\u0E2A\u0E39\u0E07",
596
+ txt_tier_3_content: "\u0E43\u0E0A\u0E49 Web3 Wallet \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E44\u0E14\u0E49\u0E14\u0E35\u0E22\u0E34\u0E48\u0E07\u0E02\u0E36\u0E49\u0E19",
597
+ txt_tier_3_term: "\u0E04\u0E38\u0E13\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E43\u0E2B\u0E49\u0E43\u0E0A\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 \u0E0B\u0E36\u0E48\u0E07\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E1E\u0E34\u0E01\u0E16\u0E2D\u0E19\u0E44\u0E14\u0E49\u0E15\u0E25\u0E2D\u0E14\u0E40\u0E27\u0E25\u0E32\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E40\u0E25\u0E37\u0E2D\u0E01",
598
+ txt_tier_3_upgrade: "\u0E2D\u0E31\u0E1B\u0E40\u0E01\u0E23\u0E14\u0E40\u0E1B\u0E47\u0E19\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E23\u0E30\u0E14\u0E31\u0E1A 4 - \u0E02\u0E31\u0E49\u0E19\u0E2A\u0E39\u0E07\u0E02\u0E31\u0E49\u0E19\u0E2A\u0E39\u0E07 (\u0E23\u0E30\u0E14\u0E31\u0E1A\u0E2A\u0E39\u0E07\u0E2A\u0E38\u0E14\u0E02\u0E2D\u0E07\u0E40\u0E23\u0E32!)",
599
+ txt_tier_3_upgradetext: " & \u0E40\u0E1E\u0E34\u0E48\u0E21 AesirX Shield of Privacy \u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E43\u0E2B\u0E49\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E0A\u0E31\u0E14\u0E41\u0E08\u0E49\u0E07\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E40\u0E01\u0E47\u0E1A\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E41\u0E25\u0E30\u0E1B\u0E23\u0E30\u0E21\u0E27\u0E25\u0E1C\u0E25\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E37\u0E48\u0E2D\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E17\u0E35\u0E48\u0E1B\u0E25\u0E2D\u0E14\u0E20\u0E31\u0E22 \u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27 \u0E41\u0E25\u0E30\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E21\u0E32\u0E01\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14",
600
+ txt_tier_4_tier: "\u0E23\u0E30\u0E14\u0E31\u0E1A 4",
601
+ txt_tier_4_name: "\u0E23\u0E27\u0E21 Wallet + AesirX Shield of Privacy",
602
+ txt_tier_4_levelname: "\u0E02\u0E31\u0E49\u0E19\u0E2A\u0E39\u0E07",
603
+ txt_tier_4_content: "\u0E43\u0E0A\u0E49 Web3 Wallet \u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 + AesirX Shield of Privacy \u0E41\u0E25\u0E30\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E04\u0E27\u0E1A\u0E04\u0E38\u0E21\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E41\u0E1A\u0E1A\u0E2B\u0E25\u0E32\u0E22\u0E44\u0E0B\u0E15\u0E4C \u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E2B\u0E23\u0E37\u0E2D\u0E40\u0E1E\u0E34\u0E01\u0E16\u0E2D\u0E19\u0E01\u0E32\u0E23\u0E2D\u0E19\u0E38\u0E0D\u0E32\u0E15\u0E40\u0E21\u0E37\u0E48\u0E2D\u0E43\u0E14\u0E01\u0E47\u0E44\u0E14\u0E49\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E01\u0E32\u0E23\u0E40\u0E1B\u0E47\u0E19\u0E40\u0E08\u0E49\u0E32\u0E02\u0E2D\u0E07\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E41\u0E1A\u0E1A\u0E01\u0E23\u0E30\u0E08\u0E32\u0E22\u0E28\u0E39\u0E19\u0E22\u0E4C\u0E2D\u0E22\u0E48\u0E32\u0E07\u0E41\u0E17\u0E49\u0E08\u0E23\u0E34\u0E07",
604
+ txt_tier_4_term: "\u0E04\u0E38\u0E13\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E43\u0E2B\u0E49\u0E43\u0E0A\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13 \u0E0B\u0E36\u0E48\u0E07\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E1E\u0E34\u0E01\u0E16\u0E2D\u0E19\u0E44\u0E14\u0E49\u0E15\u0E25\u0E2D\u0E14\u0E40\u0E27\u0E25\u0E32\u0E17\u0E35\u0E48\u0E04\u0E38\u0E13\u0E40\u0E25\u0E37\u0E2D\u0E01",
605
+ txt_tier_4_upgradetext: "\u0E1B\u0E23\u0E30\u0E2A\u0E1A\u0E01\u0E32\u0E23\u0E13\u0E4C\u0E17\u0E35\u0E48\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E41\u0E25\u0E30\u0E23\u0E31\u0E01\u0E29\u0E32\u0E04\u0E27\u0E32\u0E21\u0E40\u0E1B\u0E47\u0E19\u0E2A\u0E48\u0E27\u0E19\u0E15\u0E31\u0E27\u0E21\u0E32\u0E01\u0E17\u0E35\u0E48\u0E2A\u0E38\u0E14!",
606
+ txt_show_details: "\u0E41\u0E2A\u0E14\u0E07\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14",
607
+ txt_hide_details: "\u0E0B\u0E48\u0E2D\u0E19\u0E23\u0E32\u0E22\u0E25\u0E30\u0E40\u0E2D\u0E35\u0E22\u0E14",
608
+ txt_no_collect: "\u0E40\u0E23\u0E32\u0E44\u0E21\u0E48\u0E23\u0E27\u0E1A\u0E23\u0E27\u0E21\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E2A\u0E48\u0E27\u0E19\u0E1A\u0E38\u0E04\u0E04\u0E25\u0E43\u0E14\u0E46 \u0E40\u0E01\u0E47\u0E1A\u0E40\u0E09\u0E1E\u0E32\u0E30\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E0A\u0E34\u0E07\u0E25\u0E36\u0E01\u0E02\u0E2D\u0E07\u0E1C\u0E39\u0E49\u0E43\u0E0A\u0E49",
609
+ txt_shield_of_privacy: "Shield of Privacy",
610
+ txt_you_can_revoke: "\u0E04\u0E38\u0E13\u0E2A\u0E32\u0E21\u0E32\u0E23\u0E16\u0E40\u0E1E\u0E34\u0E01\u0E16\u0E2D\u0E19\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21\u0E43\u0E19\u0E01\u0E32\u0E23\u0E43\u0E0A\u0E49\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E44\u0E14\u0E49\u0E15\u0E25\u0E2D\u0E14\u0E40\u0E27\u0E25\u0E32",
611
+ txt_go_to: "\u0E44\u0E1B\u0E17\u0E35\u0E48",
612
+ txt_link: "\u0E25\u0E34\u0E07\u0E01\u0E4C",
613
+ txt_for_more_information: "\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A\u0E02\u0E49\u0E2D\u0E21\u0E39\u0E25\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",
614
+ txt_manage_consent: "\u0E08\u0E31\u0E14\u0E01\u0E32\u0E23\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21",
615
+ txt_revoke_consent: "\u0E40\u0E1E\u0E34\u0E01\u0E16\u0E2D\u0E19\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21",
616
+ txt_yes_i_consent: "\u0E43\u0E0A\u0E48 \u0E09\u0E31\u0E19\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21",
617
+ txt_reject_consent: "\u0E1B\u0E0F\u0E34\u0E40\u0E2A\u0E18\u0E04\u0E27\u0E32\u0E21\u0E22\u0E34\u0E19\u0E22\u0E2D\u0E21",
618
+ txt_Please_connect: "\u0E42\u0E1B\u0E23\u0E14\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E01\u0E23\u0E30\u0E40\u0E1B\u0E4B\u0E32\u0E2A\u0E15\u0E32\u0E07\u0E04\u0E4C Concordium \u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13",
619
+ txt_please_sign: "\u0E01\u0E23\u0E38\u0E13\u0E32\u0E40\u0E0B\u0E47\u0E19\u0E02\u0E49\u0E2D\u0E04\u0E27\u0E32\u0E21\u0E1A\u0E19\u0E01\u0E23\u0E30\u0E40\u0E1B\u0E4B\u0E32\u0E40\u0E07\u0E34\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13\u0E2A\u0E2D\u0E07\u0E04\u0E23\u0E31\u0E49\u0E07\u0E41\u0E25\u0E30\u0E23\u0E2D\u0E43\u0E2B\u0E49\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01",
620
+ txt_saving: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E1A\u0E31\u0E19\u0E17\u0E36\u0E01...",
621
+ txt_Please_connect_your_wallet: "\u0E42\u0E1B\u0E23\u0E14\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D\u0E01\u0E31\u0E1A\u0E01\u0E23\u0E30\u0E40\u0E1B\u0E4B\u0E32\u0E40\u0E07\u0E34\u0E19\u0E02\u0E2D\u0E07\u0E04\u0E38\u0E13",
622
+ txt_connecting: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E40\u0E0A\u0E37\u0E48\u0E2D\u0E21\u0E15\u0E48\u0E2D"
623
+ };
624
+
625
+ // src/translations/ua/common.json
626
+ var common_default6 = {
627
+ txt_tier_1_tier: "\u0420\u0456\u0432\u0435\u043D\u044C 1",
628
+ txt_tier_1_name: "\u041D\u0430 \u043E\u0441\u043D\u043E\u0432\u0456 \u0441\u0435\u0430\u043D\u0441\u0443",
629
+ txt_tier_1_levelname: "\u041E\u0441\u043D\u043E\u0432\u043D\u0438\u0439",
630
+ txt_tier_1_content: "\u0406\u0434\u0435\u0430\u043B\u044C\u043D\u043E \u043F\u0456\u0434\u0445\u043E\u0434\u0438\u0442\u044C \u0434\u043B\u044F \u043D\u043E\u0432\u0438\u0445 \u0432\u0456\u0434\u0432\u0456\u0434\u0443\u0432\u0430\u0447\u0456\u0432 \u0441\u0430\u0439\u0442\u0443 \u0430\u0431\u043E \u044F\u043A\u0449\u043E \u0432\u0438 \u043D\u0435 \u0445\u043E\u0447\u0435\u0442\u0435, \u0449\u043E\u0431 \u0432\u0430\u0448\u0456 \u0434\u0430\u043D\u0456 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u043B\u0438\u0441\u044F \u043F\u0456\u0441\u043B\u044F \u043F\u043E\u0442\u043E\u0447\u043D\u043E\u0433\u043E \u0432\u0456\u0434\u0432\u0456\u0434\u0443\u0432\u0430\u043D\u043D\u044F.",
631
+ txt_tier_1_term: "\u0412\u0438 \u0434\u0430\u0454\u0442\u0435 \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u0437\u0431\u0456\u0440 \u0434\u0430\u043D\u0438\u0445 \u043B\u0438\u0448\u0435 \u043F\u0440\u043E\u0442\u044F\u0433\u043E\u043C 30-\u0445\u0432\u0438\u043B\u0438\u043D\u043D\u043E\u0433\u043E \u0441\u0435\u0430\u043D\u0441\u0443.",
632
+ txt_tier_1_upgrade: "\u041E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0434\u043E \u0437\u0433\u043E\u0434\u0438 \u0440\u0456\u0432\u043D\u044F 2 - \u0441\u0435\u0440\u0435\u0434\u043D\u0456\u0439",
633
+ txt_tier_1_upgradetext: "\u0406 \u0434\u043E\u0434\u0430\u0439\u0442\u0435 Web3 Wallet \u0434\u043B\u044F \u043A\u0440\u0430\u0449\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u0434\u0430\u043D\u0438\u0445 \u0456 \u0437\u0433\u043E\u0434\u0438 \u0430\u0431\u043E \u0432\u0456\u0434\u043A\u043B\u0438\u043A\u0430\u043D\u043D\u044F \u0432 \u0431\u0443\u0434\u044C-\u044F\u043A\u0438\u0439 \u0447\u0430\u0441",
634
+ txt_tier_2_tier: "\u0420\u0456\u0432\u0435\u043D\u044C 2",
635
+ txt_tier_2_name: "\u0429\u0438\u0442 \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456 AesirX",
636
+ txt_tier_2_levelname: "\u0421\u0435\u0440\u0435\u0434\u043D\u0456\u0439",
637
+ txt_tier_2_content: "\u0406\u0434\u0435\u0430\u043B\u044C\u043D\u043E \u043F\u0456\u0434\u0445\u043E\u0434\u0438\u0442\u044C \u0434\u043B\u044F \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u043E\u0433\u043E \u043E\u043D\u043B\u0430\u0439\u043D-\u0434\u043E\u0441\u0432\u0456\u0434\u0443 \u0442\u0430 \u0431\u0435\u0437\u043F\u0435\u0447\u043D\u043E\u0433\u043E \u043A\u0435\u0440\u0443\u0432\u0430\u043D\u043D\u044F \u0437\u0433\u043E\u0434\u043E\u044E \u043D\u0430 \u0441\u0435\u0430\u043D\u0441\u0430\u0445 \u0456 \u043F\u043B\u0430\u0442\u0444\u043E\u0440\u043C\u0430\u0445.",
638
+ txt_tier_2_term: "\u0412\u0438 \u0434\u0430\u0454\u0442\u0435 \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0434\u0430\u043D\u0438\u0445 \u043F\u0440\u043E\u0442\u044F\u0433\u043E\u043C \u043A\u0456\u043B\u044C\u043A\u043E\u0445 \u0441\u0435\u0430\u043D\u0441\u0456\u0432.",
639
+ txt_tier_2_upgrade: "\u041E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0434\u043E \u0440\u0456\u0432\u043D\u044F \u0437\u0433\u043E\u0434\u0438 3 - \u0432\u0438\u0441\u043E\u043A\u0438\u0439",
640
+ txt_tier_2_upgradetext: "\u0406 \u0434\u043E\u0434\u0430\u0439\u0442\u0435 \u0434\u0435\u0446\u0435\u043D\u0442\u0440\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u0443 \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u043E\u0441\u043D\u043E\u0432\u0456 Wallet, \u0449\u043E\u0431 \u0434\u0430\u0442\u0438 \u0447\u0456\u0442\u043A\u0443 \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u0437\u0431\u0456\u0440 \u0456 \u043E\u0431\u0440\u043E\u0431\u043A\u0443 \u0434\u0430\u043D\u0438\u0445 \u0434\u043B\u044F \u043D\u0430\u0439\u0431\u0456\u043B\u044C\u0448 \u0431\u0435\u0437\u043F\u0435\u0447\u043D\u043E\u0433\u043E, \u043F\u0440\u0438\u0432\u0430\u0442\u043D\u043E\u0433\u043E \u0442\u0430 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u043E\u0433\u043E \u0434\u043E\u0441\u0432\u0456\u0434\u0443.",
641
+ txt_tier_3_tier: "\u0420\u0456\u0432\u0435\u043D\u044C 3",
642
+ txt_tier_3_name: "\u0414\u0435\u0446\u0435\u043D\u0442\u0440\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u0438\u0439 \u0433\u0430\u043C\u0430\u043D\u0435\u0446\u044C",
643
+ txt_tier_3_levelname: "\u0412\u0438\u0441\u043E\u043A\u0438\u0439",
644
+ txt_tier_3_content: "\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0439\u0442\u0435 \u0441\u0432\u0456\u0439 Web3 Wallet \u0434\u043B\u044F \u0431\u0456\u043B\u044C\u0448\u043E\u0433\u043E \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044E \u043D\u0430\u0434 \u0441\u0432\u043E\u0457\u043C\u0438 \u0434\u0430\u043D\u0438\u043C\u0438.",
645
+ txt_tier_3_term: "\u0412\u0438 \u0434\u0430\u0454\u0442\u0435 \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0432\u0430\u0448\u0438\u0445 \u0434\u0430\u043D\u0438\u0445, \u044F\u043A\u0443 \u043C\u043E\u0436\u043D\u0430 \u0432\u0456\u0434\u043A\u043B\u0438\u043A\u0430\u0442\u0438 \u0432 \u0431\u0443\u0434\u044C-\u044F\u043A\u0438\u0439 \u0447\u0430\u0441.",
646
+ txt_tier_3_upgrade: "\u041E\u043D\u043E\u0432\u043B\u0435\u043D\u043D\u044F \u0434\u043E Tier 4 Consent - Super Advanced (\u043D\u0430\u0448 \u043D\u0430\u0439\u0432\u0438\u0449\u0438\u0439 \u0440\u0456\u0432\u0435\u043D\u044C!)",
647
+ txt_tier_3_upgradetext: "\u0406 \u0434\u043E\u0434\u0430\u0439\u0442\u0435 AesirX Shield of Privacy, \u0449\u043E\u0431 \u0434\u0430\u0442\u0438 \u0447\u0456\u0442\u043A\u0443 \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u0437\u0431\u0456\u0440 \u0456 \u043E\u0431\u0440\u043E\u0431\u043A\u0443 \u0434\u0430\u043D\u0438\u0445 \u0434\u043B\u044F \u043D\u0430\u0439\u0431\u0456\u043B\u044C\u0448 \u0431\u0435\u0437\u043F\u0435\u0447\u043D\u043E\u0433\u043E, \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0433\u043E \u0442\u0430 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u043E\u0433\u043E \u0434\u043E\u0441\u0432\u0456\u0434\u0443.",
648
+ txt_tier_4_tier: "\u0420\u0456\u0432\u0435\u043D\u044C 4",
649
+ txt_tier_4_name: "\u041A\u043E\u043C\u0431\u0456\u043D\u043E\u0432\u0430\u043D\u0438\u0439 \u0433\u0430\u043C\u0430\u043D\u0435\u0446\u044C + AesirX Shield of Privacy",
650
+ txt_tier_4_levelname: "\u0421\u0443\u043F\u0435\u0440 \u043F\u0440\u043E\u0441\u0443\u043D\u0443\u0442\u0438\u0439",
651
+ txt_tier_4_content: "\u0412\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u043E\u0432\u0443\u0439\u0442\u0435 \u0441\u0432\u0456\u0439 Web3 Wallet + AesirX Shield of Privacy \u0442\u0430 \u043E\u0442\u0440\u0438\u043C\u0430\u0439\u0442\u0435 \u043F\u043E\u0432\u043D\u0438\u0439 \u0431\u0430\u0433\u0430\u0442\u043E\u0441\u0430\u0439\u0442\u043E\u0432\u0438\u0439 \u043A\u043E\u043D\u0442\u0440\u043E\u043B\u044C \u043D\u0430\u0434 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F\u043C \u0432\u0430\u0448\u0438\u0445 \u0434\u0430\u043D\u0438\u0445. \u0414\u0430\u0439\u0442\u0435 \u0437\u0433\u043E\u0434\u0443 \u0430\u0431\u043E \u0432\u0456\u0434\u043A\u043B\u0438\u043A\u0430\u0439\u0442\u0435 \u0434\u043E\u0437\u0432\u043E\u043B\u0438 \u0432 \u0431\u0443\u0434\u044C-\u044F\u043A\u0438\u0439 \u0447\u0430\u0441 \u0434\u043B\u044F \u0441\u043F\u0440\u0430\u0432\u0436\u043D\u044C\u043E\u0433\u043E \u0434\u0435\u0446\u0435\u043D\u0442\u0440\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u043E\u0433\u043E \u0432\u043E\u043B\u043E\u0434\u0456\u043D\u043D\u044F \u0434\u0430\u043D\u0438\u043C\u0438.",
652
+ txt_tier_4_term: "\u0412\u0438 \u0434\u0430\u0454\u0442\u0435 \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0432\u0430\u0448\u0438\u0445 \u0434\u0430\u043D\u0438\u0445, \u044F\u043A\u0443 \u043C\u043E\u0436\u043D\u0430 \u0432\u0456\u0434\u043A\u043B\u0438\u043A\u0430\u0442\u0438 \u0432 \u0431\u0443\u0434\u044C-\u044F\u043A\u0438\u0439 \u0447\u0430\u0441.",
653
+ txt_tier_4_upgradetext: "\u041D\u0430\u0439\u0431\u0456\u043B\u044C\u0448 \u043F\u0435\u0440\u0441\u043E\u043D\u0430\u043B\u0456\u0437\u043E\u0432\u0430\u043D\u0438\u0439 \u0434\u043E\u0441\u0432\u0456\u0434 \u0456\u0437 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u043D\u044F\u043C \u043A\u043E\u043D\u0444\u0456\u0434\u0435\u043D\u0446\u0456\u0439\u043D\u043E\u0441\u0442\u0456!",
654
+ txt_show_details: "\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u0438 \u0434\u0435\u0442\u0430\u043B\u0456",
655
+ txt_hide_details: "\u041F\u0440\u0438\u0445\u043E\u0432\u0430\u0442\u0438 \u0434\u0435\u0442\u0430\u043B\u0456",
656
+ txt_no_collect: "\u041C\u0438 \u043D\u0435 \u0437\u0431\u0438\u0440\u0430\u0454\u043C\u043E \u043E\u0441\u043E\u0431\u0438\u0441\u0442\u0456 \u0434\u0430\u043D\u0456, \u043B\u0438\u0448\u0435 \u0441\u0442\u0430\u0442\u0438\u0441\u0442\u0438\u043A\u0443 \u043A\u043E\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456\u0432.",
657
+ txt_shield_of_privacy: "Shield of Privacy",
658
+ txt_you_can_revoke: "\u0412\u0438 \u043C\u043E\u0436\u0435\u0442\u0435 \u0431\u0443\u0434\u044C-\u043A\u043E\u043B\u0438 \u0432\u0456\u0434\u043A\u043B\u0438\u043A\u0430\u0442\u0438 \u0441\u0432\u043E\u044E \u0437\u0433\u043E\u0434\u0443 \u043D\u0430 \u0432\u0438\u043A\u043E\u0440\u0438\u0441\u0442\u0430\u043D\u043D\u044F \u0434\u0430\u043D\u0438\u0445.",
659
+ txt_go_to: "\u041F\u0435\u0440\u0435\u0439\u0442\u0438",
660
+ txt_link: "\u043F\u043E\u0441\u0438\u043B\u0430\u043D\u043D\u044F",
661
+ txt_for_more_information: "\u0434\u043B\u044F \u043E\u0442\u0440\u0438\u043C\u0430\u043D\u043D\u044F \u0434\u043E\u0434\u0430\u0442\u043A\u043E\u0432\u043E\u0457 \u0456\u043D\u0444\u043E\u0440\u043C\u0430\u0446\u0456\u0457.",
662
+ txt_manage_consent: "\u041A\u0435\u0440\u0443\u0432\u0430\u0442\u0438 \u0437\u0433\u043E\u0434\u043E\u044E",
663
+ txt_revoke_consent: "\u0412\u0456\u0434\u043A\u043B\u0438\u043A\u0430\u0442\u0438 \u0437\u0433\u043E\u0434\u0443",
664
+ txt_yes_i_consent: "\u0422\u0430\u043A, \u044F \u0437\u0433\u043E\u0434\u0435\u043D",
665
+ txt_reject_consent: "\u0412\u0456\u0434\u0445\u0438\u043B\u0438\u0442\u0438 \u0437\u0433\u043E\u0434\u0443",
666
+ txt_please_connect: "\u041F\u0456\u0434\u043A\u043B\u044E\u0447\u0456\u0442\u044C \u0441\u0432\u0456\u0439 \u0433\u0430\u043C\u0430\u043D\u0435\u0446\u044C Concordium",
667
+ txt_please_sign: "\u0411\u0443\u0434\u044C \u043B\u0430\u0441\u043A\u0430, \u0434\u0432\u0456\u0447\u0456 \u043F\u0456\u0434\u043F\u0438\u0448\u0456\u0442\u044C \u043F\u043E\u0432\u0456\u0434\u043E\u043C\u043B\u0435\u043D\u043D\u044F \u0443 \u0441\u0432\u043E\u0454\u043C\u0443 \u0433\u0430\u043C\u0430\u043D\u0446\u0456 \u0442\u0430 \u0437\u0430\u0447\u0435\u043A\u0430\u0439\u0442\u0435, \u043F\u043E\u043A\u0438 \u0432\u043E\u043D\u043E \u0431\u0443\u0434\u0435 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u043E.",
668
+ txt_saving: "\u0417\u0431\u0435\u0440\u0435\u0436\u0435\u043D\u043D\u044F...",
669
+ txt_please_connect_your_wallet: "\u041F\u0456\u0434\u043A\u043B\u044E\u0447\u0456\u0442\u044C\u0441\u044F \u0434\u043E \u0441\u0432\u043E\u0433\u043E \u0433\u0430\u043C\u0430\u043D\u0446\u044F",
670
+ txt_connecting: "\u041F\u0456\u0434\u043A\u043B\u044E\u0447\u0435\u043D\u043D\u044F"
671
+ };
672
+
673
+ // src/translations/vi/common.json
674
+ var common_default7 = {
675
+ txt_tier_1_tier: "C\u1EA5p 1",
676
+ txt_tier_1_name: "D\u1EF1a tr\xEAn phi\xEAn",
677
+ txt_tier_1_levelname: "C\u01A1 b\u1EA3n",
678
+ txt_tier_1_content: "L\xFD t\u01B0\u1EDFng cho kh\xE1ch truy c\u1EADp trang web m\u1EDBi ho\u1EB7c n\u1EBFu b\u1EA1n kh\xF4ng mu\u1ED1n d\u1EEF li\u1EC7u c\u1EE7a m\xECnh \u0111\u01B0\u1EE3c l\u01B0u tr\u1EEF sau l\u1EA7n truy c\u1EADp hi\u1EC7n t\u1EA1i.",
679
+ txt_tier_1_term: "B\u1EA1n \u0111\u1ED3ng \xFD v\u1EDBi vi\u1EC7c thu th\u1EADp d\u1EEF li\u1EC7u ch\u1EC9 trong phi\xEAn 30 ph\xFAt.",
680
+ txt_tier_1_upgrade: "N\xE2ng c\u1EA5p l\xEAn \u0110\u1ED3ng \xFD C\u1EA5p 2 - Trung b\xECnh",
681
+ txt_tier_1_upgradetext: " & th\xEAm v\xE0o V\xED Web3 \u0111\u1EC3 c\xF3 s\u1EF1 \u0111\u1ED3ng \xFD v\xE0 ki\u1EC3m so\xE1t d\u1EEF li\u1EC7u t\u1ED1t h\u01A1n ho\u1EB7c thu h\u1ED3i b\u1EA5t k\u1EF3 l\xFAc n\xE0o b\u1EA1n ch\u1ECDn.",
682
+ txt_tier_2_tier: "C\u1EA5p 2",
683
+ txt_tier_2_name: "AesirX Shield of Privacy",
684
+ txt_tier_2_levelname: "Trung b\xECnh",
685
+ txt_tier_2_content: "L\xFD t\u01B0\u1EDFng cho tr\u1EA3i nghi\u1EC7m tr\u1EF1c tuy\u1EBFn \u0111\u01B0\u1EE3c c\xE1 nh\xE2n h\xF3a v\xE0 qu\u1EA3n l\xFD s\u1EF1 \u0111\u1ED3ng \xFD an to\xE0n tr\xEAn c\xE1c phi\xEAn v\xE0 n\u1EC1n t\u1EA3ng.",
686
+ txt_tier_2_term: "B\u1EA1n \u0111\u1ED3ng \xFD cho ph\xE9p s\u1EED d\u1EE5ng d\u1EEF li\u1EC7u trong nhi\u1EC1u phi\xEAn.",
687
+ txt_tier_2_upgrade: "N\xE2ng c\u1EA5p l\xEAn \u0110\u1ED3ng \xFD B\u1EADc 3 - Cao",
688
+ txt_tier_2_upgradetext: " & th\xEAm v\xE0o \u0110\u1ED3ng \xFD phi t\u1EADp trung d\u1EF1a tr\xEAn v\xED \u0111\u1EC3 \u0111\u01B0a ra s\u1EF1 \u0111\u1ED3ng \xFD r\xF5 r\xE0ng \u0111\u1ED1i v\u1EDBi vi\u1EC7c thu th\u1EADp v\xE0 x\u1EED l\xFD d\u1EEF li\u1EC7u \u0111\u1EC3 c\xF3 tr\u1EA3i nghi\u1EC7m an to\xE0n, ri\xEAng t\u01B0 v\xE0 \u0111\u01B0\u1EE3c c\xE1 nh\xE2n h\xF3a nh\u1EA5t.",
689
+ txt_tier_3_tier: "C\u1EA5p 3",
690
+ txt_tier_3_name: "V\xED phi t\u1EADp trung",
691
+ txt_tier_3_levelname: "Cao",
692
+ txt_tier_3_content: "S\u1EED d\u1EE5ng V\xED Web3 \u0111\u1EC3 ki\u1EC3m so\xE1t t\u1ED1t h\u01A1n d\u1EEF li\u1EC7u c\u1EE7a b\u1EA1n.",
693
+ txt_tier_3_term: "B\u1EA1n \u0111\u1ED3ng \xFD cho d\u1EEF li\u1EC7u c\u1EE7a m\xECnh \u0111\u01B0\u1EE3c s\u1EED d\u1EE5ng, c\xF3 th\u1EC3 thu h\u1ED3i b\u1EA5t k\u1EF3 l\xFAc n\xE0o b\u1EA1n ch\u1ECDn.",
694
+ txt_tier_3_upgrade: "N\xE2ng c\u1EA5p l\xEAn \u0110\u1ED3ng \xFD B\u1EADc 4 - Si\xEAu Cao c\u1EA5p (b\u1EADc cao nh\u1EA5t c\u1EE7a ch\xFAng t\xF4i!)",
695
+ txt_tier_3_upgradetext: " & th\xEAm AesirX Shield of Privacy \u0111\u1EC3 \u0111\u01B0a ra s\u1EF1 \u0111\u1ED3ng \xFD r\xF5 r\xE0ng \u0111\u1ED1i v\u1EDBi vi\u1EC7c thu th\u1EADp v\xE0 x\u1EED l\xFD d\u1EEF li\u1EC7u \u0111\u1EC3 c\xF3 tr\u1EA3i nghi\u1EC7m an to\xE0n, ri\xEAng t\u01B0 v\xE0 \u0111\u01B0\u1EE3c c\xE1 nh\xE2n h\xF3a nh\u1EA5t.",
696
+ txt_tier_4_tier: "C\u1EA5p 4",
697
+ txt_tier_4_name: "V\xED k\u1EBFt h\u1EE3p + AesirX Shield of Privacy",
698
+ txt_tier_4_levelname: "Si\xEAu N\xE2ng Cao",
699
+ txt_tier_4_content: "S\u1EED d\u1EE5ng V\xED Web3 + AesirX Shield of Privacy c\u1EE7a b\u1EA1n v\xE0 c\xF3 to\xE0n quy\u1EC1n ki\u1EC3m so\xE1t tr\xEAn nhi\u1EC1u trang web \u0111\u1ED1i v\u1EDBi vi\u1EC7c s\u1EED d\u1EE5ng d\u1EEF li\u1EC7u c\u1EE7a b\u1EA1n. \u0110\u1ED3ng \xFD ho\u1EB7c thu h\u1ED3i quy\u1EC1n b\u1EA5t c\u1EE9 l\xFAc n\xE0o \u0111\u1ED1i v\u1EDBi quy\u1EC1n s\u1EDF h\u1EEFu d\u1EEF li\u1EC7u phi t\u1EADp trung th\u1EF1c s\u1EF1.",
700
+ txt_tier_4_term: "B\u1EA1n \u0111\u1ED3ng \xFD cho d\u1EEF li\u1EC7u c\u1EE7a m\xECnh \u0111\u01B0\u1EE3c s\u1EED d\u1EE5ng, c\xF3 th\u1EC3 thu h\u1ED3i b\u1EA5t k\u1EF3 l\xFAc n\xE0o b\u1EA1n ch\u1ECDn.",
701
+ txt_tier_4_upgradetext: "Tr\u1EA3i nghi\u1EC7m c\xE1 nh\xE2n h\xF3a v\xE0 b\u1EA3o v\u1EC7 quy\u1EC1n ri\xEAng t\u01B0 cao nh\u1EA5t!",
702
+ txt_show_details: "Hi\u1EC3n th\u1ECB chi ti\u1EBFt",
703
+ txt_hide_details: "\u1EA8n chi ti\u1EBFt",
704
+ txt_no_collect: "Ch\xFAng t\xF4i kh\xF4ng thu th\u1EADp b\u1EA5t k\u1EF3 d\u1EEF li\u1EC7u c\xE1 nh\xE2n n\xE0o, ch\u1EC9 thu th\u1EADp th\xF4ng tin chi ti\u1EBFt c\u1EE7a ng\u01B0\u1EDDi d\xF9ng.",
705
+ txt_shield_of_privacy: "Shield of Privacy",
706
+ txt_you_can_revoke: "B\u1EA1n c\xF3 th\u1EC3 r\xFAt l\u1EA1i s\u1EF1 \u0111\u1ED3ng \xFD s\u1EED d\u1EE5ng d\u1EEF li\u1EC7u c\u1EE7a m\xECnh b\u1EA5t k\u1EF3 l\xFAc n\xE0o.",
707
+ txt_go_to: "\u0110i t\u1EDBi",
708
+ txt_link: "li\xEAn k\u1EBFt",
709
+ txt_for_more_information: "\u0111\u1EC3 bi\u1EBFt th\xEAm th\xF4ng tin.",
710
+ txt_manage_consent: "Qu\u1EA3n l\xFD s\u1EF1 \u0111\u1ED3ng \xFD",
711
+ txt_revoke_consent: "Thu h\u1ED3i s\u1EF1 \u0111\u1ED3ng \xFD",
712
+ txt_yes_i_consent: "V\xE2ng, t\xF4i \u0111\u1ED3ng \xFD",
713
+ txt_reject_consent: "T\u1EEB ch\u1ED1i",
714
+ txt_please_connect: "Vui l\xF2ng k\u1EBFt n\u1ED1i v\xED Concordium c\u1EE7a b\u1EA1n",
715
+ txt_please_sign: "Vui l\xF2ng k\xFD v\xE0o tin nh\u1EAFn tr\xEAn v\xED c\u1EE7a b\u1EA1n hai l\u1EA7n v\xE0 \u0111\u1EE3i n\xF3 \u0111\u01B0\u1EE3c l\u01B0u.",
716
+ txt_save: "\u0110ang l\u01B0u...",
717
+ txt_please_connect_your_wallet: "Vui l\xF2ng k\u1EBFt n\u1ED1i v\u1EDBi v\xED c\u1EE7a b\u1EA1n",
718
+ txt_connecting: "\u0110ang k\u1EBFt n\u1ED1i"
719
+ };
720
+
721
+ // src/translations/fr/common.json
722
+ var common_default8 = {
723
+ txt_tier_1_tier: "Niveau 1",
724
+ txt_tier_1_name: "Bas\xE9 sur la session",
725
+ txt_tier_1_levelname: "De base",
726
+ txt_tier_1_content: "Id\xE9al pour les nouveaux visiteurs du site ou si vous ne souhaitez pas que vos donn\xE9es soient stock\xE9es au-del\xE0 de votre visite actuelle.",
727
+ txt_tier_1_term: "Vous consentez \xE0 la collecte de donn\xE9es pour une session de 30\xA0minutes uniquement.",
728
+ txt_tier_1_upgrade: "Mettre \xE0 niveau vers le consentement de niveau 2 - Moyen",
729
+ txt_tier_1_upgradetext: "\xA0& ajouter un portefeuille Web3 pour un meilleur contr\xF4le des donn\xE9es et un consentement ou r\xE9voquer \xE0 tout moment.",
730
+ txt_tier_2_tier: "Niveau 2",
731
+ txt_tier_2_name: "Bouclier de confidentialit\xE9 AesirX",
732
+ txt_tier_2_levelname: "Moyen",
733
+ txt_tier_2_content: "Id\xE9al pour des exp\xE9riences en ligne personnalis\xE9es et une gestion s\xE9curis\xE9e du consentement entre les sessions et les plateformes.",
734
+ txt_tier_2_term: "Vous consentez \xE0 l'utilisation des donn\xE9es sur plusieurs sessions.",
735
+ txt_tier_2_upgrade: "Mettre \xE0 niveau vers le consentement de niveau 3 - \xC9lev\xE9",
736
+ txt_tier_2_upgradetext: " & ajoutez le consentement d\xE9centralis\xE9 bas\xE9 sur le portefeuille pour donner un consentement explicite \xE0 la collecte et au traitement des donn\xE9es pour l'exp\xE9rience la plus s\xE9curis\xE9e, priv\xE9e et personnalis\xE9e.",
737
+ txt_tier_3_tier: "Niveau 3",
738
+ txt_tier_3_name: "Portefeuille d\xE9centralis\xE9",
739
+ txt_tier_3_levelname: "\xC9lev\xE9",
740
+ txt_tier_3_content: "Utilisez votre portefeuille Web3 pour un meilleur contr\xF4le sur vos donn\xE9es.",
741
+ txt_tier_3_term: "Vous consentez \xE0 ce que vos donn\xE9es soient utilis\xE9es, qui peuvent \xEAtre r\xE9voqu\xE9es \xE0 tout moment.",
742
+ txt_tier_3_upgrade: "Mettre \xE0 niveau vers le consentement de niveau 4 - Super avanc\xE9 (notre niveau le plus \xE9lev\xE9\xA0!)",
743
+ txt_tier_3_upgradetext: " & ajouter AesirX Shield of Privacy pour donner un consentement explicite \xE0 la collecte et au traitement des donn\xE9es pour l'exp\xE9rience la plus s\xE9curis\xE9e, priv\xE9e et personnalis\xE9e.",
744
+ txt_tier_4_tier: "Niveau 4",
745
+ txt_tier_4_name: "Portefeuille combin\xE9 + bouclier de confidentialit\xE9 AesirX",
746
+ txt_tier_4_levelname: "Super avanc\xE9",
747
+ txt_tier_4_content: "Utilisez votre portefeuille Web3 + AesirX Shield of Privacy et obtenez un contr\xF4le multisite total de l'utilisation de vos donn\xE9es. Consentez ou r\xE9voquez les autorisations \xE0 tout moment pour une v\xE9ritable propri\xE9t\xE9 d\xE9centralis\xE9e des donn\xE9es.",
748
+ txt_tier_4_term: "Vous consentez \xE0 ce que vos donn\xE9es soient utilis\xE9es, qui peuvent \xEAtre r\xE9voqu\xE9es \xE0 tout moment.",
749
+ txt_tier_4_upgradetext: "L'exp\xE9rience la plus personnalis\xE9e et la plus respectueuse de la vie priv\xE9e\xA0!",
750
+ txt_show_details: "Afficher les d\xE9tails",
751
+ txt_hide_details: "Masquer les d\xE9tails",
752
+ txt_no_collect: "Nous ne collectons aucune donn\xE9e personnelle, uniquement des informations sur les utilisateurs.",
753
+ txt_shield_of_privacy: "Shield of Privacy",
754
+ txt_you_can_revoke: "Vous pouvez r\xE9voquer \xE0 tout moment votre consentement \xE0 l'utilisation des donn\xE9es.",
755
+ txt_go_to: "Aller \xE0",
756
+ txt_link: "lien",
757
+ txt_for_more_information: "pour plus d'informations.",
758
+ txt_manage_consent: "G\xE9rer le consentement",
759
+ txt_revoke_consent: "R\xE9voquer le consentement",
760
+ txt_yes_i_consent: "Oui, je consens",
761
+ txt_reject_consent: "Refuser le consentement",
762
+ txt_Please_connect: "Veuillez connecter votre portefeuille Concordium",
763
+ txt_Please_sign: "Veuillez signer deux fois le message sur votre portefeuille et attendre qu'il soit enregistr\xE9.",
764
+ txt_saving: "Enregistrement en cours...",
765
+ txt_Please_connect_your_wallet: "Veuillez vous connecter \xE0 votre portefeuille",
766
+ txt_connecting: "Connexion"
767
+ };
768
+
769
+ // src/translations/index.js
770
+ var appLanguages = {
771
+ en: common_default2,
772
+ da: common_default,
773
+ vi: common_default7,
774
+ th: common_default5,
775
+ hr: common_default4,
776
+ uk: common_default6,
777
+ es: common_default3,
778
+ fr: common_default8
779
+ };
780
+
781
+ // src/utils/I18nextProvider.tsx
782
+ import React2, { createContext as createContext2, useContext as useContext4 } from "react";
783
+ import i18n from "i18next";
784
+ import LanguageDetector from "i18next-browser-languagedetector";
785
+ var defaultLanguages = {
786
+ en: {
787
+ title: "English",
788
+ translation: common_default2
789
+ },
790
+ da: {
791
+ title: "Dansk",
792
+ translation: common_default
793
+ },
794
+ vi: {
795
+ title: "Ti\u1EBFng Vi\u1EC7t",
796
+ translation: common_default7
797
+ },
798
+ th: {
799
+ title: "\u0E20\u0E32\u0E29\u0E32\u0E44\u0E17\u0E22",
800
+ translation: common_default5
801
+ },
802
+ hr: {
803
+ title: "Hrvatski",
804
+ translation: common_default4
805
+ },
806
+ uk: {
807
+ title: "Y\u043A\u0440\u0430\u0457\u043D\u0441\u044C\u043A\u0430",
808
+ translation: common_default6
809
+ },
810
+ es: {
811
+ title: "Espa\xF1ol",
812
+ translation: common_default3
813
+ },
814
+ fr: {
815
+ title: "Fran\xE7ais",
816
+ translation: common_default8
817
+ }
818
+ };
819
+ var I18NextContext = createContext2({
820
+ listLanguages: []
821
+ });
822
+ var AesirXI18nextProvider = ({
823
+ children,
824
+ appLanguages: appLanguages2
825
+ }) => {
826
+ const listLanguages = [];
827
+ if (!i18n.isInitialized) {
828
+ i18n.use(LanguageDetector).use(initReactI18next).init({
829
+ resources: defaultLanguages,
830
+ lng: typeof window !== "undefined" && document.documentElement.lang || "en",
831
+ fallbackLng: "en",
832
+ debug: true
833
+ });
834
+ }
835
+ Object.entries(appLanguages2).forEach(([key, resource]) => {
836
+ i18n.addResourceBundle(key, "translation", resource);
837
+ listLanguages.push({ label: defaultLanguages[key].title, value: key });
838
+ });
839
+ return /* @__PURE__ */ React2.createElement(I18NextContext.Provider, { value: { listLanguages } }, /* @__PURE__ */ React2.createElement(I18nextProvider, { i18n }, children));
840
+ };
841
+
842
+ // src/utils/AnalyticsContextProvider.tsx
843
+ var AnalyticsContext = React3.createContext({
844
+ event_uuid: void 0,
845
+ visitor_uuid: void 0,
846
+ setEventID: void 0,
847
+ setUUID: void 0
848
+ });
849
+ var AnalyticsContextProvider = ({ children }) => {
850
+ const [eventID, setEventID] = useState2();
851
+ const [UUID, setUUID] = useState2();
852
+ return /* @__PURE__ */ React3.createElement(
853
+ AnalyticsContext.Provider,
854
+ {
855
+ value: {
856
+ event_uuid: eventID,
857
+ visitor_uuid: UUID,
858
+ setEventID,
859
+ setUUID
860
+ }
861
+ },
862
+ /* @__PURE__ */ React3.createElement(AesirXI18nextProvider, { appLanguages }, children)
863
+ );
864
+ };
865
+ var AnalyticsContextProvider_default = AnalyticsContextProvider;
866
+
867
+ export {
868
+ useTranslation,
869
+ AnalyticsContext,
870
+ AnalyticsContextProvider_default
871
+ };
872
+ /*
873
+ * @copyright Copyright (C) 2022 AesirX. All rights reserved.
874
+ * @license GNU General Public License version 3, see LICENSE.
875
+ */