@lifi/widget 2.0.1 → 2.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/components/Header/NavigationHeader.js +2 -2
- package/cjs/components/Header/index.d.ts +0 -1
- package/cjs/components/Header/index.js +0 -1
- package/cjs/config/version.d.ts +1 -1
- package/cjs/config/version.js +1 -1
- package/cjs/i18n/de.json +89 -63
- package/cjs/i18n/en.json +2 -2
- package/cjs/i18n/pt.json +2 -2
- package/cjs/i18n/th.json +62 -61
- package/cjs/i18n/uk.json +2 -2
- package/cjs/i18n/vi.json +64 -63
- package/cjs/pages/ActiveTransactionsPage/ActiveTransactionsPage.js +3 -3
- package/cjs/pages/RoutesPage/RoutesPage.js +3 -3
- package/cjs/pages/SelectEnabledToolsPage/SelectEnabledToolsPage.js +3 -3
- package/cjs/pages/TransactionDetailsPage/ContactSupportButton.d.ts +5 -0
- package/cjs/pages/TransactionDetailsPage/ContactSupportButton.js +25 -0
- package/cjs/pages/TransactionDetailsPage/TransactionDetailsPage.js +5 -4
- package/cjs/pages/TransactionHistoryPage/TransactionHistoryPage.js +3 -3
- package/cjs/pages/TransactionPage/TransactionPage.js +3 -3
- package/cjs/stores/StoreProvider.js +2 -1
- package/cjs/stores/header/index.d.ts +1 -0
- package/cjs/stores/header/index.js +17 -0
- package/cjs/{components/Header → stores/header}/types.d.ts +4 -2
- package/cjs/stores/header/useHeaderStore.d.ts +8 -0
- package/cjs/stores/header/useHeaderStore.js +56 -0
- package/cjs/stores/index.d.ts +2 -1
- package/cjs/stores/index.js +2 -1
- package/cjs/types/events.d.ts +6 -1
- package/cjs/types/events.js +1 -0
- package/components/Header/NavigationHeader.js +2 -2
- package/components/Header/index.d.ts +0 -1
- package/components/Header/index.js +0 -1
- package/config/version.d.ts +1 -1
- package/config/version.js +1 -1
- package/i18n/de.json +89 -63
- package/i18n/en.json +2 -2
- package/i18n/pt.json +2 -2
- package/i18n/th.json +62 -61
- package/i18n/uk.json +2 -2
- package/i18n/vi.json +64 -63
- package/package.json +11 -11
- package/pages/ActiveTransactionsPage/ActiveTransactionsPage.js +4 -4
- package/pages/RoutesPage/RoutesPage.js +4 -4
- package/pages/SelectEnabledToolsPage/SelectEnabledToolsPage.js +4 -4
- package/pages/TransactionDetailsPage/ContactSupportButton.d.ts +5 -0
- package/pages/TransactionDetailsPage/ContactSupportButton.js +21 -0
- package/pages/TransactionDetailsPage/TransactionDetailsPage.js +6 -5
- package/pages/TransactionHistoryPage/TransactionHistoryPage.js +4 -4
- package/pages/TransactionPage/TransactionPage.js +4 -4
- package/stores/StoreProvider.js +2 -1
- package/stores/header/index.d.ts +1 -0
- package/stores/header/index.js +1 -0
- package/{components/Header → stores/header}/types.d.ts +4 -2
- package/stores/header/useHeaderStore.d.ts +8 -0
- package/stores/header/useHeaderStore.js +49 -0
- package/stores/index.d.ts +2 -1
- package/stores/index.js +2 -1
- package/tsconfig.cjs.tsbuildinfo +1 -1
- package/types/events.d.ts +6 -1
- package/types/events.js +1 -0
- package/cjs/components/Header/useHeaderStore.d.ts +0 -2
- package/cjs/components/Header/useHeaderStore.js +0 -28
- package/components/Header/useHeaderStore.d.ts +0 -2
- package/components/Header/useHeaderStore.js +0 -25
- /package/cjs/{components/Header → stores/header}/types.js +0 -0
- /package/{components/Header → stores/header}/types.js +0 -0
|
@@ -10,18 +10,18 @@ const react_i18next_1 = require("react-i18next");
|
|
|
10
10
|
const react_router_dom_1 = require("react-router-dom");
|
|
11
11
|
const hooks_1 = require("../../hooks");
|
|
12
12
|
const providers_1 = require("../../providers");
|
|
13
|
+
const stores_1 = require("../../stores");
|
|
13
14
|
const types_1 = require("../../types");
|
|
14
15
|
const utils_1 = require("../../utils");
|
|
15
16
|
const Header_style_1 = require("./Header.style");
|
|
16
17
|
const NavigationTabs_1 = require("./NavigationTabs");
|
|
17
18
|
const WalletHeader_1 = require("./WalletHeader");
|
|
18
|
-
const useHeaderStore_1 = require("./useHeaderStore");
|
|
19
19
|
const NavigationHeader = () => {
|
|
20
20
|
const { t } = (0, react_i18next_1.useTranslation)();
|
|
21
21
|
const { subvariant, hiddenUI } = (0, providers_1.useWidgetConfig)();
|
|
22
22
|
const { navigate, navigateBack } = (0, hooks_1.useNavigateBack)();
|
|
23
23
|
const { account } = (0, providers_1.useWallet)();
|
|
24
|
-
const { element, title } = (0,
|
|
24
|
+
const { element, title } = (0, stores_1.useHeaderStore)((state) => state);
|
|
25
25
|
const { pathname } = (0, react_router_dom_1.useLocation)();
|
|
26
26
|
const cleanedPathname = pathname.endsWith('/')
|
|
27
27
|
? pathname.slice(0, -1)
|
package/cjs/config/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare const name = "@lifi/widget";
|
|
2
|
-
export declare const version = "2.
|
|
2
|
+
export declare const version = "2.1.1";
|
package/cjs/config/version.js
CHANGED
package/cjs/i18n/de.json
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
{
|
|
2
|
+
"language": {
|
|
3
|
+
"name": "Deutsch",
|
|
4
|
+
"title": "Sprache"
|
|
5
|
+
},
|
|
6
|
+
"format": {
|
|
7
|
+
"currency": "{{value, currency(currency: USD)}}",
|
|
8
|
+
"number": "{{value, number(maximumFractionDigits: 4)}}"
|
|
9
|
+
},
|
|
2
10
|
"button": {
|
|
3
11
|
"auto": "Auto",
|
|
12
|
+
"bridge": "Bridge",
|
|
13
|
+
"buy": "Buy",
|
|
14
|
+
"buyNow": "Jetzt kaufen",
|
|
4
15
|
"cancel": "Abbrechen",
|
|
5
16
|
"connectWallet": "Wallet verbinden",
|
|
6
17
|
"contactSupport": "Support kontaktieren",
|
|
@@ -10,86 +21,75 @@
|
|
|
10
21
|
"delete": "Löschen",
|
|
11
22
|
"disconnect": "Trennen",
|
|
12
23
|
"done": "Fertig",
|
|
24
|
+
"exchange": "Exchange",
|
|
13
25
|
"getGas": "Gas erhalten",
|
|
14
26
|
"hide": "Ausblenden",
|
|
15
|
-
"
|
|
27
|
+
"learnMore": "Mehr erfahren",
|
|
28
|
+
"lifiCheckout": "LI.FI Checkout",
|
|
29
|
+
"lifiExchange": "LI.FI Exchange",
|
|
16
30
|
"light": "Hell",
|
|
17
31
|
"max": "max",
|
|
18
32
|
"ok": "OK",
|
|
19
|
-
"
|
|
20
|
-
"removeSwap": "Swap entfernen",
|
|
33
|
+
"removeTransaction": "Transaktion entfernen",
|
|
21
34
|
"reset": "Zurücksetzen",
|
|
22
35
|
"resetSettings": "Einstellungen zurücksetzen",
|
|
23
|
-
"
|
|
24
|
-
"
|
|
36
|
+
"reviewBridge": "Bridge überprüfen",
|
|
37
|
+
"reviewPurchase": "Kauf ansehen",
|
|
25
38
|
"reviewSwap": "Swap überprüfen",
|
|
26
39
|
"seeDetails": "Siehe Einzelheiten",
|
|
27
40
|
"showAll": "Alles anzeigen",
|
|
28
|
-
"
|
|
29
|
-
"
|
|
41
|
+
"startBridging": "Starte Bridge Protokoll",
|
|
42
|
+
"startSwapping": "Swap starten",
|
|
30
43
|
"swap": "Swap",
|
|
31
44
|
"tryAgain": "Erneut versuchen",
|
|
45
|
+
"viewCoverage": "Deckung anzeigen",
|
|
32
46
|
"viewOnExplorer": "Im Explorer anzeigen"
|
|
33
47
|
},
|
|
34
|
-
"format": {
|
|
35
|
-
"currency": "{{value, currency(currency: USD)}}",
|
|
36
|
-
"number": "{{value, number(maximumFractionDigits: 4)}}"
|
|
37
|
-
},
|
|
38
48
|
"header": {
|
|
39
|
-
"
|
|
49
|
+
"activeTransactions": "Aktive Transaktion",
|
|
50
|
+
"bridge": "Bridge",
|
|
40
51
|
"checkout": "Zur Kasse",
|
|
52
|
+
"exchange": "Exchange",
|
|
41
53
|
"from": "Swap von",
|
|
42
54
|
"gas": "Gas",
|
|
43
|
-
"
|
|
44
|
-
"
|
|
55
|
+
"payWith": "Zahle mit",
|
|
56
|
+
"purchase": "Kauf",
|
|
57
|
+
"purchaseDetails": "Kaufdetails",
|
|
45
58
|
"selectChain": "Chain auswählen",
|
|
46
59
|
"selectWallet": "Wallet wählen",
|
|
47
60
|
"settings": "Einstellungen",
|
|
48
61
|
"swap": "Swap",
|
|
49
|
-
"swapDetails": "Siehe Einzelheiten",
|
|
50
|
-
"swapHistory": "Swap-Verlauf",
|
|
51
62
|
"to": "Swap zu",
|
|
52
|
-
"
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
"
|
|
56
|
-
"title": "Sprache"
|
|
57
|
-
},
|
|
58
|
-
"settings": {
|
|
59
|
-
"enabledBridges": "Aktivierte Bridges",
|
|
60
|
-
"enabledExchanges": "Aktivierte Exchanges",
|
|
61
|
-
"gasPrice": {
|
|
62
|
-
"fast": "Schnell",
|
|
63
|
-
"normal": "Normal",
|
|
64
|
-
"slow": "Langsam",
|
|
65
|
-
"title": "Gaspreis"
|
|
66
|
-
},
|
|
67
|
-
"routePriority": "Routenpriorität",
|
|
68
|
-
"showDestinationWallet": "Ziel Wallet anzeigen",
|
|
69
|
-
"slippage": "Slippage"
|
|
63
|
+
"transactionDetails": "Transaktionsdetails",
|
|
64
|
+
"transactionHistory": "Transaktionshistorie\u2028",
|
|
65
|
+
"walletConnected": "Wallet verbunden",
|
|
66
|
+
"youGet": "Sie erhalten"
|
|
70
67
|
},
|
|
71
68
|
"info": {
|
|
72
69
|
"message": {
|
|
73
70
|
"autoRefuel": "Sie haben nicht genug Gas auf {{chainName}}. Wenn Sie fortfahren, erhalten Sie zusätzlich genug Gas um den Swap abzuschließen.",
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"routeNotFound": "
|
|
71
|
+
"emptyActiveTransactions": "Laufende Swaps werden hier angezeigt. Sobald Sie fertig sind, finden Sie sie in der Transaktionshistorie.",
|
|
72
|
+
"emptyTokenList": "Es wurden keine Tokens auf der Chain {{chainName}} gefunden oder Sie haben keine. Bitte versuchen Sie die Suche erneut mit der Contract-Adresse falls Ihr Token nicht erscheint oder wechseln Sie die Chain.",
|
|
73
|
+
"emptyTransactionHistory": "Die Transaktionshistorie wird nur lokal gespeichert und gelöscht, wenn Sie Ihre Browserdaten löschen.",
|
|
74
|
+
"routeNotFound": "Gründe dafür könnten lauten: geringe Liquidität, gewählter Betrag ist zu niedrig, die Gaskosten sind zu hoch oder es gibt keine Routen für die ausgewählte Kombination."
|
|
78
75
|
},
|
|
79
76
|
"title": {
|
|
80
|
-
"autoRefuel": "
|
|
81
|
-
"
|
|
82
|
-
"
|
|
77
|
+
"autoRefuel": "Gas erhalten",
|
|
78
|
+
"emptyActiveTransactions": "Keine aktiven Transaktionen",
|
|
79
|
+
"emptyTransactionHistory": "Keine neuen Transaktionen",
|
|
83
80
|
"routeNotFound": "Keine Routen verfügbar"
|
|
84
81
|
}
|
|
85
82
|
},
|
|
86
83
|
"success": {
|
|
87
84
|
"message": {
|
|
88
|
-
"
|
|
89
|
-
"
|
|
85
|
+
"exchangePartiallySuccessful": "Wir haben versucht, den Swap abzuschließen, aber {{tool}} hat keine Liquidität für {{tokenSymbol}} Token.",
|
|
86
|
+
"exchangeSuccessful": "Es sind jetzt {{amount, number(maximumFractionDigits: 9)}} {{tokenSymbol}} in der Wallet {{walletAddress}} auf der {{chainName}}-Chain.",
|
|
87
|
+
"purchaseSuccessful": "Sie besitzen jetzt {{assetName}} in der Wallet {{walletAddress}} auf der {{chainName}}-Chain."
|
|
90
88
|
},
|
|
91
89
|
"title": {
|
|
92
|
-
"
|
|
90
|
+
"bridgePartiallySuccessful": "Bridge teilweise erfolgreich",
|
|
91
|
+
"bridgeSuccessful": "Bridge erfolgreich",
|
|
92
|
+
"purchaseSuccessful": "Kauf abgeschlossen",
|
|
93
93
|
"refundIssued": "Rückerstattung gewährt",
|
|
94
94
|
"swapPartiallySuccessful": "Swap teilweise erfolgreich",
|
|
95
95
|
"swapSuccessful": "Swap erfolgreich"
|
|
@@ -97,8 +97,8 @@
|
|
|
97
97
|
},
|
|
98
98
|
"warning": {
|
|
99
99
|
"message": {
|
|
100
|
-
"
|
|
101
|
-
"
|
|
100
|
+
"deleteActiveTransactions": "Aktive Swaps werden nur lokal gespeichert und können nicht wiederhergestellt werden, wenn Sie sie löschen.",
|
|
101
|
+
"deleteTransactionHistory": "Die Transaktionshistorie wird nur lokal gespeichert und kann nicht wiederhergestellt werden, wenn Sie sie löschen.",
|
|
102
102
|
"highValueLoss": "Der Wert der erhaltenen Token ist deutlich niedriger als die getauschten Token und die Transaktionskosten.",
|
|
103
103
|
"insufficientFunds": "Sie haben nicht genug Token, um diesen Swap abzuschließen.",
|
|
104
104
|
"insufficientGas": "Sie haben nicht genug Gas um diesen Swap abzuschließen. Sie müssen mindestens hinzufügen:",
|
|
@@ -106,9 +106,9 @@
|
|
|
106
106
|
"resetSettings": "Dies wird Ihre Routenpriorität, Slippage, Gaspreis, aktivierte Brücken und Exchanges zurücksetzen."
|
|
107
107
|
},
|
|
108
108
|
"title": {
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
109
|
+
"deleteActiveTransactions": "Alle aktiven Transaktionen entfernen?",
|
|
110
|
+
"deleteTransaction": "Transaktion löschen?",
|
|
111
|
+
"deleteTransactionHistory": "Transaktionshistorie entfernen?",
|
|
112
112
|
"highValueLoss": "Hoher Wertverlust",
|
|
113
113
|
"insufficientGas": "Unzureichendes Gas",
|
|
114
114
|
"rateChanged": "Wechselkurs geändert",
|
|
@@ -117,6 +117,8 @@
|
|
|
117
117
|
},
|
|
118
118
|
"error": {
|
|
119
119
|
"message": {
|
|
120
|
+
"allowanceRequired": "Überweisungsbetrag für {{tokenSymbol}} überschreitet Ihre derzeitige Zulassung. Bitte erhöhen Sie das Limit und versuchen Sie es erneut.",
|
|
121
|
+
"insufficientFunds": "Sie haben nicht genug Gas, um die Kosten der Transaktion zu decken.",
|
|
120
122
|
"slippageThreshold": "Die Slippage ist größer als der definierte Schwellenwert. Bitte fordern Sie eine neue Route an, um ein neues Angebot zu erhalten.",
|
|
121
123
|
"transactionFailed": "Weitere Informationen finden Sie im Block-Explorer.",
|
|
122
124
|
"transactionNotSent": "Die Transaktion wurde nicht gesendet, Ihr Geld befindet sich noch in Ihrer Brieftasche ({{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} auf {{chainName}}).",
|
|
@@ -124,10 +126,11 @@
|
|
|
124
126
|
"unknown": "Bitte versuchen Sie es später noch einmal oder kontaktieren Sie den Support."
|
|
125
127
|
},
|
|
126
128
|
"title": {
|
|
129
|
+
"allowanceRequired": "Unzureichende Erlaubnis",
|
|
127
130
|
"balanceIsTooLow": "Ihr Guthaben ist zu gering",
|
|
128
131
|
"chainSwitch": "Chainwechsel erforderlich",
|
|
129
|
-
"failed": "Swap fehlgeschlagen",
|
|
130
132
|
"gasLimitIsTooLow": "Das Gaslimit ist zu niedrig",
|
|
133
|
+
"insufficientFunds": "Unzureichendes Guthaben",
|
|
131
134
|
"slippageNotMet": "Slippagebedingungen nicht erfüllt",
|
|
132
135
|
"transactionCanceled": "Transaktion abgebrochen",
|
|
133
136
|
"transactionFailed": "Transaktion ist fehlgeschlagen.",
|
|
@@ -140,6 +143,19 @@
|
|
|
140
143
|
"walletEnsAddressInvalid": "Die Wallet-Adresse ist ungültig oder das Netzwerk unterstützt ENS nicht."
|
|
141
144
|
}
|
|
142
145
|
},
|
|
146
|
+
"tooltip": {
|
|
147
|
+
"additionalProviderFee": "Zusätzliche Bridges, DEXs und Servicegebühren.",
|
|
148
|
+
"estimatedNetworkFee": "Geschätzte Netzwerkgebühr.",
|
|
149
|
+
"estimatedTime": "Geschätzte Swap-Ausführungszeit in Minuten.",
|
|
150
|
+
"notFound": {
|
|
151
|
+
"text": "Wir konnten diese Seite nicht finden.",
|
|
152
|
+
"title": "404"
|
|
153
|
+
},
|
|
154
|
+
"numberOfSteps": "Eine Anzahl von Swap-Schritten. Jeder Schritt kann 2 Transaktionen enthalten, die eine Unterschrift erfordern.",
|
|
155
|
+
"progressToNextUpdate": "Angezeigte Daten werden nach {{value}} Sekunden automatisch aktualisiert. Klicken Sie hier, um manuell zu aktualisieren.",
|
|
156
|
+
"recommended": "Eine preiswerte Route, die Komplexität und Benutzerfreundlichkeit in Einklang bringt.",
|
|
157
|
+
"settingsModified": "Einstellungen (geändert)"
|
|
158
|
+
},
|
|
143
159
|
"main": {
|
|
144
160
|
"crossStepDetails": "Bridgen von {{from}} nach {{to}} über {{tool}}",
|
|
145
161
|
"currentAmount": "Aktueller Betrag",
|
|
@@ -155,7 +171,6 @@
|
|
|
155
171
|
"onChain": "auf {{chainName}}",
|
|
156
172
|
"otherTokens": "Andere Token",
|
|
157
173
|
"ownedBy": "In Besitz von",
|
|
158
|
-
"payWith": "Zahle mit",
|
|
159
174
|
"process": {
|
|
160
175
|
"crossChain": {
|
|
161
176
|
"actionRequired": "Bitte signieren Sie die Transaktion.",
|
|
@@ -163,6 +178,9 @@
|
|
|
163
178
|
"pending": "Warten auf Transaktion",
|
|
164
179
|
"started": "Transaktion vorbereiten"
|
|
165
180
|
},
|
|
181
|
+
"nft": {
|
|
182
|
+
"done": "NFT gekauft"
|
|
183
|
+
},
|
|
166
184
|
"receivingChain": {
|
|
167
185
|
"done": "Bridge abgeschlossen",
|
|
168
186
|
"partial": "Bridge teilweise abgeschlossen",
|
|
@@ -189,20 +207,21 @@
|
|
|
189
207
|
"rateChange": "Wechselkurs geändert",
|
|
190
208
|
"receiving": "Eingehend",
|
|
191
209
|
"refuelStepDetails": "Gas über {{tool}} erhalten",
|
|
192
|
-
"routes": "Sie erhalten",
|
|
193
210
|
"selectChain": "Chain",
|
|
194
211
|
"selectChainAndToken": "Chain und Token auswählen",
|
|
195
212
|
"selectToken": "Token",
|
|
196
213
|
"sendToAddress": "An {{address}} senden",
|
|
197
214
|
"sendToWallet": "An eine andere Wallet senden",
|
|
215
|
+
"sending": "Wird gesendet",
|
|
198
216
|
"sentToAddress": "Gesendet an {{address}}",
|
|
199
217
|
"stepBridge": "Bridge",
|
|
218
|
+
"stepBridgeAndBuy": "Bridge und Kauf",
|
|
200
219
|
"stepDetails": "{{tool}} via LI.FI",
|
|
201
220
|
"stepSwap": "Swap",
|
|
202
221
|
"stepSwapAndBridge": "Tauschen und überbrücken",
|
|
222
|
+
"stepSwapAndBuy": "Tauschen und kaufen",
|
|
203
223
|
"supportId": "Support-ID",
|
|
204
224
|
"swapStepDetails": "Tausche auf {{chain}} über {{tool}}",
|
|
205
|
-
"swapping": "Austauschen",
|
|
206
225
|
"tags": {
|
|
207
226
|
"cheapest": "Günstig",
|
|
208
227
|
"fastest": "Schnell",
|
|
@@ -219,17 +238,24 @@
|
|
|
219
238
|
"valueLoss": "Wertverlust",
|
|
220
239
|
"walletAddressOrEns": "Wallet-Adresse oder ENS-Name"
|
|
221
240
|
},
|
|
222
|
-
"
|
|
223
|
-
"
|
|
224
|
-
"
|
|
225
|
-
"
|
|
226
|
-
"
|
|
227
|
-
|
|
228
|
-
|
|
241
|
+
"insurance": {
|
|
242
|
+
"bridgeExploits": "Bridge-Fehlfunktionen, Hacks oder Exploits",
|
|
243
|
+
"insure": "Versichere <0>{{amount, number(maximumFractionDigits: 9)}} {{tokenSymbol}}</0> während der Übertragung.",
|
|
244
|
+
"insured": "Du hast <0>{{amount, number(maximumFractionDigits: 9)}} {{tokenSymbol}}</0> während der Übertragung versichert:",
|
|
245
|
+
"slippageError": "Fehler in Slippage für empfangene Token"
|
|
246
|
+
},
|
|
247
|
+
"settings": {
|
|
248
|
+
"enabledBridges": "Aktivierte Bridges",
|
|
249
|
+
"enabledExchanges": "Aktivierte Exchanges",
|
|
250
|
+
"gasPrice": {
|
|
251
|
+
"fast": "Schnell",
|
|
252
|
+
"normal": "Normal",
|
|
253
|
+
"slow": "Langsam",
|
|
254
|
+
"title": "Gaspreis"
|
|
229
255
|
},
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
256
|
+
"routePriority": "Routenpriorität",
|
|
257
|
+
"showDestinationWallet": "Ziel Wallet anzeigen",
|
|
258
|
+
"slippage": "Slippage"
|
|
233
259
|
},
|
|
234
260
|
"wallet": {
|
|
235
261
|
"extensionNotFound": "Bitte stellen Sie sicher, dass nur die Browsererweiterung {{name}} aktiv ist, bevor Sie dieses Wallet auswählen."
|
package/cjs/i18n/en.json
CHANGED
|
@@ -69,9 +69,9 @@
|
|
|
69
69
|
"message": {
|
|
70
70
|
"autoRefuel": "You're low on {{chainName}} gas. By continuing, you'll get enough gas to complete the transaction.",
|
|
71
71
|
"emptyActiveTransactions": "Transactions in progress will appear here. Once completed, find them in transaction history.",
|
|
72
|
-
"emptyTokenList": "We couldn't find tokens on {{chainName}} chain or you don't have any. Please
|
|
72
|
+
"emptyTokenList": "We couldn't find tokens on {{chainName}} chain or you don't have any. Please search by contract address if your token doesn't appear or choose another chain.",
|
|
73
73
|
"emptyTransactionHistory": "Transaction history is only stored locally and will be deleted if you clear your browser data.",
|
|
74
|
-
"routeNotFound": "
|
|
74
|
+
"routeNotFound": "Reasons for that could be: low liquidity, amount selected is too low, gas costs are too high or there are no routes for the selected combination."
|
|
75
75
|
},
|
|
76
76
|
"title": {
|
|
77
77
|
"autoRefuel": "Get gas",
|
package/cjs/i18n/pt.json
CHANGED
|
@@ -69,9 +69,9 @@
|
|
|
69
69
|
"message": {
|
|
70
70
|
"autoRefuel": "Você está com pouco gás na rede {{chainName}}. Ao continuar, você obterá gás suficiente para completar a conversão.",
|
|
71
71
|
"emptyActiveTransactions": "As transações em andamento aparecerão aqui. Uma vez concluídas, encontre-as no histórico de transações.",
|
|
72
|
-
"emptyTokenList": "Não conseguimos encontrar tokens na rede {{chainName}} ou você não possui nenhum. Por favor,
|
|
72
|
+
"emptyTokenList": "Não conseguimos encontrar tokens na rede {{chainName}} ou você não possui nenhum. Por favor, procure pelo endereço de contrato caso o token não apareça ou escolha outra rede.",
|
|
73
73
|
"emptyTransactionHistory": "O histórico de transações é armazenado apenas localmente e será excluído se você limpar os dados do seu navegador.",
|
|
74
|
-
"routeNotFound": "
|
|
74
|
+
"routeNotFound": "Razões para isso podem ser: baixa liquidez, valor selecionado é muito baixo, os custos com gás são muito elevados ou não há rotas para a combinação selecionada."
|
|
75
75
|
},
|
|
76
76
|
"title": {
|
|
77
77
|
"autoRefuel": "Obter gás",
|
package/cjs/i18n/th.json
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
+
"language": {
|
|
3
|
+
"name": "ภาษาไทย",
|
|
4
|
+
"title": "ภาษา"
|
|
5
|
+
},
|
|
6
|
+
"format": {
|
|
7
|
+
"currency": "{{value, currency(currency: USD)}}",
|
|
8
|
+
"number": "{{value, number(maximumFractionDigits: 9)}}"
|
|
9
|
+
},
|
|
2
10
|
"button": {
|
|
3
11
|
"auto": "อัตโนมัติ",
|
|
12
|
+
"bridge": "บริดจ์",
|
|
4
13
|
"buy": "ซื้อ",
|
|
5
14
|
"buyNow": "ซื้อตอนนี้",
|
|
6
15
|
"cancel": "ยกเลิก",
|
|
@@ -12,94 +21,74 @@
|
|
|
12
21
|
"delete": "ลบ",
|
|
13
22
|
"disconnect": "ยกเลิกการเชื่อมต่อ",
|
|
14
23
|
"done": "เสร็จสิ้น",
|
|
24
|
+
"exchange": "แลกเปลี่ยน",
|
|
15
25
|
"getGas": "รับแก็ส",
|
|
16
26
|
"hide": "ซ่อน",
|
|
17
27
|
"learnMore": "เรียนรู้เพิ่มเติม",
|
|
18
|
-
"
|
|
28
|
+
"lifiCheckout": "Li.Fi. ตรวจสอบ",
|
|
29
|
+
"lifiExchange": "LI.FI Exchange",
|
|
19
30
|
"light": "สว่าง",
|
|
20
31
|
"max": "สูงสุด",
|
|
21
32
|
"ok": "ตกลง",
|
|
22
|
-
"
|
|
23
|
-
"removeSwap": "ยกเลิกการแลกเปลี่ยน",
|
|
33
|
+
"removeTransaction": "นำรายการออก",
|
|
24
34
|
"reset": "ล้างข้อมูล",
|
|
25
35
|
"resetSettings": "รีเซ็ตการตั้งค่า",
|
|
26
|
-
"
|
|
27
|
-
"reviewGasSwap": "ตรวจสอบแก๊สในการแลกเปลี่ยน",
|
|
36
|
+
"reviewBridge": "ตรวจสอบบริดจ์",
|
|
28
37
|
"reviewPurchase": "ตรวจสอบการสั่งซื้อ",
|
|
29
38
|
"reviewSwap": "ตรวจสอบการแลกเปลี่ยน",
|
|
30
39
|
"seeDetails": "ดูรายละเอียด",
|
|
31
40
|
"showAll": "แสดงทั้งหมด",
|
|
32
|
-
"
|
|
33
|
-
"
|
|
41
|
+
"startBridging": "เริ่มต้นการบริดจ์",
|
|
42
|
+
"startSwapping": "เริ่มต้นการแลกเปลี่ยน",
|
|
34
43
|
"swap": "การแลกเปลี่ยน",
|
|
35
44
|
"tryAgain": "ลองใหม่",
|
|
36
45
|
"viewCoverage": "ดูความคุ้มครอง",
|
|
37
46
|
"viewOnExplorer": "ดูในการสำรวจ"
|
|
38
47
|
},
|
|
39
|
-
"format": {
|
|
40
|
-
"currency": "{{value, currency(currency: USD)}}",
|
|
41
|
-
"number": "{{value, number(maximumFractionDigits: 9)}}"
|
|
42
|
-
},
|
|
43
48
|
"header": {
|
|
44
|
-
"
|
|
49
|
+
"activeTransactions": "ธุรกรรมมีผล",
|
|
45
50
|
"bridge": "บริดจ์",
|
|
46
51
|
"checkout": "เช็คเอาท์",
|
|
52
|
+
"exchange": "แลกเปลี่ยน",
|
|
47
53
|
"from": "แลกเปลี่ยนจาก",
|
|
48
54
|
"gas": "แก็ส",
|
|
49
|
-
"gasSwap": "แก็สในการแลกเปลี่ยน",
|
|
50
55
|
"payWith": "ชำระด้วย",
|
|
51
56
|
"purchase": "ซื้อ",
|
|
52
57
|
"purchaseDetails": "รายละเอียดการซื้อ",
|
|
53
|
-
"routes": "คุณได้รับ",
|
|
54
58
|
"selectChain": "เลือกเชน",
|
|
55
59
|
"selectWallet": "เลือกกระเป๋าของคุณ",
|
|
56
60
|
"settings": "ตั้งค่า",
|
|
57
61
|
"swap": "แลกเปลี่ยน",
|
|
58
|
-
"swapDetails": "รายละเอียดการแลกเปลี่ยน",
|
|
59
|
-
"swapHistory": "ประวัติการแลกเปลี่ยน",
|
|
60
62
|
"to": "แลกเปลี่ยนเป็น",
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
"
|
|
65
|
-
"title": "ภาษา"
|
|
66
|
-
},
|
|
67
|
-
"settings": {
|
|
68
|
-
"enabledBridges": "เปิดการใช้งานบริดจ์",
|
|
69
|
-
"enabledExchanges": "เปิดการใช้งาน การแลกเปลี่ยน",
|
|
70
|
-
"gasPrice": {
|
|
71
|
-
"fast": "รวดเร็ว",
|
|
72
|
-
"normal": "ปกติ",
|
|
73
|
-
"slow": "ช้า",
|
|
74
|
-
"title": "ค่าแก็ส"
|
|
75
|
-
},
|
|
76
|
-
"routePriority": "ลำดับสำคัญของเส้นทาง",
|
|
77
|
-
"showDestinationWallet": "แสดงกระเป๋าปลายทาง",
|
|
78
|
-
"slippage": "ความคลาดเคลื่อน"
|
|
63
|
+
"transactionDetails": "รายละเอียดของธุรกรรม",
|
|
64
|
+
"transactionHistory": "ประวัติการซื้อขาย",
|
|
65
|
+
"walletConnected": "กระเป๋าถูกเชื่อมต่อแล้ว",
|
|
66
|
+
"youGet": "คุณได้รับ"
|
|
79
67
|
},
|
|
80
68
|
"info": {
|
|
81
69
|
"message": {
|
|
82
70
|
"autoRefuel": "คุณใช้แก็ส {{chainName}} เหลือน้อย เมื่อดำเนินการต่อ คุณจะได้รับแก็สเพียงพอสำหรับการแลกเปลี่ยนให้เสร็จสมบูรณ์",
|
|
83
|
-
"
|
|
84
|
-
"emptySwapHistory": "ประวัติการแลกเปลี่ยนจะถูกเก็บไว้ในเครื่องเท่านั้นและจะถูกลบหากคุณล้างข้อมูลเบราว์เซอร์ของคุณ.",
|
|
71
|
+
"emptyActiveTransactions": "การแลกเปลี่ยนที่กำลังดำเนินการจะปรากฏที่นี่. เมื่อเสร็จสิ้น, จะพบประวัติการแลกเปลี่ยน.",
|
|
85
72
|
"emptyTokenList": "เราไม่พบโทเค็นใน {{chainName}} เชนหรือคุณไม่มีโทเค็น. โปรดลองอีกครั้งหรือเลือกเชนอื่น.",
|
|
86
|
-
"
|
|
73
|
+
"emptyTransactionHistory": "ประวัติการแลกเปลี่ยนจะถูกเก็บไว้ในเครื่องเท่านั้นและจะถูกลบหากคุณล้างข้อมูลเบราว์เซอร์ของคุณ.",
|
|
74
|
+
"routeNotFound": "เหตุผลที่อาจเกิดขึ้น : สภาพคล่องต่ำ , จำนวนที่เลือกน้อยเกินไป , ต้นทุนแก็สสูงหรือไม่มีเส้นทางที่ใช้งานได้"
|
|
87
75
|
},
|
|
88
76
|
"title": {
|
|
89
77
|
"autoRefuel": "รับแก็ส",
|
|
90
|
-
"
|
|
91
|
-
"
|
|
78
|
+
"emptyActiveTransactions": "ไม่มีธุรกรรมที่มีผล",
|
|
79
|
+
"emptyTransactionHistory": "ไม่มีธุรกรรมล่าสุด",
|
|
92
80
|
"routeNotFound": "ไม่พบเส้นทาง"
|
|
93
81
|
}
|
|
94
82
|
},
|
|
95
83
|
"success": {
|
|
96
84
|
"message": {
|
|
97
|
-
"
|
|
98
|
-
"
|
|
99
|
-
"
|
|
85
|
+
"exchangePartiallySuccessful": "เราได้พยายามดำเนินการแลกเปลี่ยนให้เสร็จสมบูรณ์แต่ {{tool}} ขาดสภาพคล่องสำหรับโทเค็น {{tokenSymbol}}",
|
|
86
|
+
"exchangeSuccessful": "ตอนนี้มี {{amount, number(maximumFractionDigits: 9)}}{{tokenSymbol}} ใน {{walletAddress}} กระเป๋าบน {{chainName}} เชน.",
|
|
87
|
+
"purchaseSuccessful": "คุณมี {{assetName}} ใน{{walletAddress}} กระเป๋า บน{{chainName}} เครือข่าย"
|
|
100
88
|
},
|
|
101
89
|
"title": {
|
|
102
|
-
"
|
|
90
|
+
"bridgePartiallySuccessful": "แลกเปลี่ยนสำเร็จบางส่วน",
|
|
91
|
+
"bridgeSuccessful": "บริดจ์สำเร็จ",
|
|
103
92
|
"purchaseSuccessful": "การซื้อเสร็จสมบูรณ์",
|
|
104
93
|
"refundIssued": "คืนเงินแล้ว",
|
|
105
94
|
"swapPartiallySuccessful": "แลกเปลี่ยนสำเร็จบางส่วน",
|
|
@@ -108,8 +97,8 @@
|
|
|
108
97
|
},
|
|
109
98
|
"warning": {
|
|
110
99
|
"message": {
|
|
111
|
-
"
|
|
112
|
-
"
|
|
100
|
+
"deleteActiveTransactions": "การแลกเปลี่ยนที่ใช้งานอยู่จะถูกจัดเก็บไว้ในเครื่องเท่านั้นและไม่สามารถกู้คืนได้หากคุณลบออก.",
|
|
101
|
+
"deleteTransactionHistory": "ประวัติการแลกเปลี่ยนจะถูกจัดเก็บไว้ในเครื่องเท่านั้นและไม่สามารถกู้คืนได้หากคุณลบออก",
|
|
113
102
|
"highValueLoss": "มูลค่าของโทเค็นที่ได้รับนั้นต่ำกว่าโทเค็นที่แลกเปลี่ยนและต้นทุนการทำธุรกรรมอย่างมาก.",
|
|
114
103
|
"insufficientFunds": "คุณมีเงินไม่เพียงพอที่จะดำเนินการแลกเปลี่ยน.",
|
|
115
104
|
"insufficientGas": "คุณมีแก๊สไม่เพียงพอที่จะแลกเปลี่ยนให้เสร็จสมบูรณ์ คุณต้องเพิ่มอย่างน้อย:",
|
|
@@ -117,9 +106,9 @@
|
|
|
117
106
|
"resetSettings": "การดำเนินการนี้จะรีเซ็ตลำดับความสำคัญของเส้นทาง การคลาดเลื่อน ค่าแก็ส บริดจ์ที่เปิดใช้งานและการแลกเปลี่ยน"
|
|
118
107
|
},
|
|
119
108
|
"title": {
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
"
|
|
109
|
+
"deleteActiveTransactions": "ลบรายการธุรกรรมทั้งหมด?",
|
|
110
|
+
"deleteTransaction": "ต้องการลบธุรกรรมนี้?",
|
|
111
|
+
"deleteTransactionHistory": "ต้องการลบประวัติการทำธุรกรรม?",
|
|
123
112
|
"highValueLoss": "สูญเสียมูลค่าสูง",
|
|
124
113
|
"insufficientGas": "ค่าแก็สไม่พอ",
|
|
125
114
|
"rateChanged": "อัตราการแลกเปลี่ยนถูกเปลี่ยน",
|
|
@@ -140,7 +129,6 @@
|
|
|
140
129
|
"allowanceRequired": "การอนุญาตไม่เพียงพอ",
|
|
141
130
|
"balanceIsTooLow": "ยอดคงเหลือต่ำเกินไป",
|
|
142
131
|
"chainSwitch": "จำเป็นต้องเปลี่ยนเชน",
|
|
143
|
-
"failed": "การแลกเปลี่ยนล้มเหลว",
|
|
144
132
|
"gasLimitIsTooLow": "แก๊สคงเหลือต่ำเกินไป",
|
|
145
133
|
"insufficientFunds": "ยอดคงเหลือไม่เพียงพอ",
|
|
146
134
|
"slippageNotMet": "ความคลาดเคลื่อนของราคาไม่เป็นไปตามเงื่อนไข.",
|
|
@@ -155,6 +143,19 @@
|
|
|
155
143
|
"walletEnsAddressInvalid": "ที่อยู่กระเป๋าเงินไม่ถูกต้องหรือเครือข่ายไม่รองรับ ENS."
|
|
156
144
|
}
|
|
157
145
|
},
|
|
146
|
+
"tooltip": {
|
|
147
|
+
"additionalProviderFee": "บริดจ์เพิ่มเติม DEX และค่าบริการ",
|
|
148
|
+
"estimatedNetworkFee": "ค่าธรรรมเนียมโดยประมาณของเครือข่าย",
|
|
149
|
+
"estimatedTime": "เวลาดำเนินการแลกเปลี่ยนโดยประมาณเป็นนาที.",
|
|
150
|
+
"notFound": {
|
|
151
|
+
"text": "เราไม่พบหน้านี้.",
|
|
152
|
+
"title": "404"
|
|
153
|
+
},
|
|
154
|
+
"numberOfSteps": "ขั้นตอนการแลกเปลี่ยนหลายขั้นตอน แต่ละขั้นตอนสามารถมี 1-2 รายการที่ต้องใช้ลายเซ็น.",
|
|
155
|
+
"progressToNextUpdate": "ข้อมูลที่แสดงจะรีเฟรชอัตโนมัติหลังจาก {{value}} วินาที คลิกที่นี่เพื่ออัปเดตด้วยตนเอง",
|
|
156
|
+
"recommended": "เส้นทางที่ถูกมียอดคงเหลือที่เพียงพอและง่ายต่องการใช้งาน",
|
|
157
|
+
"settingsModified": "การตั้งค่า (แก้ไข)"
|
|
158
|
+
},
|
|
158
159
|
"main": {
|
|
159
160
|
"crossStepDetails": "บริดจ์จาก{{from}} to {{to}} โดย {{tool}}",
|
|
160
161
|
"currentAmount": "จำนวนเงินปัจจุบัน",
|
|
@@ -211,6 +212,7 @@
|
|
|
211
212
|
"selectToken": "เลือกโทเคน",
|
|
212
213
|
"sendToAddress": "ส่งไปยัง {{address}}",
|
|
213
214
|
"sendToWallet": "ส่งไปยังกระเป๋าเงินอื่น",
|
|
215
|
+
"sending": "กำลังส่ง",
|
|
214
216
|
"sentToAddress": "ส่งไปยัง {{address}}",
|
|
215
217
|
"stepBridge": "บริดจ์",
|
|
216
218
|
"stepBridgeAndBuy": "บริดจ์และซื้อ",
|
|
@@ -220,7 +222,6 @@
|
|
|
220
222
|
"stepSwapAndBuy": "แลกเปลี่ยน และ ซื้อ",
|
|
221
223
|
"supportId": "หมายเลขที่สนับสนุน",
|
|
222
224
|
"swapStepDetails": "แลกเปลี่ยนบน {{chain}} ผ่าน {{tool}}",
|
|
223
|
-
"swapping": "การแลกเปลี่ยน",
|
|
224
225
|
"tags": {
|
|
225
226
|
"cheapest": "ราคาถูก",
|
|
226
227
|
"fastest": "รวดเร็ว",
|
|
@@ -243,18 +244,18 @@
|
|
|
243
244
|
"insured": "คุณได้ประกัน<0>{{amount, number(maximumFractionDigits: 9)}}{{tokenSymbol}}</0> ในการขนส่ง",
|
|
244
245
|
"slippageError": "เกิดข้อผิดพลาดในการคลาดเคลื่อนของโทเค็นที่ได้รับ"
|
|
245
246
|
},
|
|
246
|
-
"
|
|
247
|
-
"
|
|
248
|
-
"
|
|
249
|
-
"
|
|
250
|
-
|
|
251
|
-
"
|
|
252
|
-
"
|
|
247
|
+
"settings": {
|
|
248
|
+
"enabledBridges": "เปิดการใช้งานบริดจ์",
|
|
249
|
+
"enabledExchanges": "เปิดการใช้งาน การแลกเปลี่ยน",
|
|
250
|
+
"gasPrice": {
|
|
251
|
+
"fast": "รวดเร็ว",
|
|
252
|
+
"normal": "ปกติ",
|
|
253
|
+
"slow": "ช้า",
|
|
254
|
+
"title": "ค่าแก็ส"
|
|
253
255
|
},
|
|
254
|
-
"
|
|
255
|
-
"
|
|
256
|
-
"
|
|
257
|
-
"settingsModified": "การตั้งค่า (แก้ไข)"
|
|
256
|
+
"routePriority": "ลำดับสำคัญของเส้นทาง",
|
|
257
|
+
"showDestinationWallet": "แสดงกระเป๋าปลายทาง",
|
|
258
|
+
"slippage": "ความคลาดเคลื่อน"
|
|
258
259
|
},
|
|
259
260
|
"wallet": {
|
|
260
261
|
"extensionNotFound": "โปรดตรวจสอบว่ามีเพียงส่วนขยายของเบราว์เซอร์ {{name}} เท่านั้นที่ใช้งานได้ก่อนที่จะเลือกกระเป๋าเงินนี้."
|
package/cjs/i18n/uk.json
CHANGED
|
@@ -69,9 +69,9 @@
|
|
|
69
69
|
"message": {
|
|
70
70
|
"autoRefuel": "У вас замало {{chainName}} газу. Продовжуючи, ви отримаєте достатньо газу, щоб завершити обмін.",
|
|
71
71
|
"emptyActiveTransactions": "Тут показуються незавершені транзакції. Після завершення ви можете знайти їх в історії транзакцій.",
|
|
72
|
-
"emptyTokenList": "Нам не вдалося знайти токени на {{chainName}}, або у вас їх немає. Будь ласка,
|
|
72
|
+
"emptyTokenList": "Нам не вдалося знайти токени на {{chainName}}, або у вас їх немає. Будь ласка, спробуйте пошук за адресою контракту або виберіть інший чейн.",
|
|
73
73
|
"emptyTransactionHistory": "Історія транзакцій зберігається лише локально та буде видалена, якщо ви очистите дані браузера.",
|
|
74
|
-
"routeNotFound": "
|
|
74
|
+
"routeNotFound": "Причинами цього можуть бути: низька ліквідність, вибрана надто низька сума, занадто високі витрати на газ або відсутність маршрутів для вибраної комбінації."
|
|
75
75
|
},
|
|
76
76
|
"title": {
|
|
77
77
|
"autoRefuel": "Отримати газ",
|