@lifi/widget 3.4.4 → 3.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (116) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/_esm/components/AppContainer.js +11 -3
  3. package/_esm/components/AppContainer.js.map +1 -1
  4. package/_esm/components/Card/CardIconButton.d.ts +1 -1
  5. package/_esm/components/Header/WalletMenu.js +5 -1
  6. package/_esm/components/Header/WalletMenu.js.map +1 -1
  7. package/_esm/components/Step/Step.js +3 -3
  8. package/_esm/components/Step/Step.js.map +1 -1
  9. package/_esm/components/Step/StepProcess.js +3 -1
  10. package/_esm/components/Step/StepProcess.js.map +1 -1
  11. package/_esm/components/Tabs/Tabs.style.d.ts +1 -1
  12. package/_esm/components/Token/Token.js +8 -12
  13. package/_esm/components/Token/Token.js.map +1 -1
  14. package/_esm/components/TokenList/TokenList.js +4 -1
  15. package/_esm/components/TokenList/TokenList.js.map +1 -1
  16. package/_esm/components/TokenList/TokenList.style.d.ts +2 -2
  17. package/_esm/components/TokenList/TokenListItem.js +3 -1
  18. package/_esm/components/TokenList/TokenListItem.js.map +1 -1
  19. package/_esm/components/TransactionDetails.js +5 -11
  20. package/_esm/components/TransactionDetails.js.map +1 -1
  21. package/_esm/config/constants.d.ts +2 -1
  22. package/_esm/config/constants.js +2 -1
  23. package/_esm/config/constants.js.map +1 -1
  24. package/_esm/config/version.d.ts +1 -1
  25. package/_esm/config/version.js +1 -1
  26. package/_esm/hooks/useExplorer.d.ts +5 -0
  27. package/_esm/hooks/useExplorer.js +40 -0
  28. package/_esm/hooks/useExplorer.js.map +1 -0
  29. package/_esm/hooks/useProcessMessage.js +1 -1
  30. package/_esm/hooks/useRoutes.d.ts +1 -1
  31. package/_esm/hooks/useRoutes.js +4 -0
  32. package/_esm/hooks/useRoutes.js.map +1 -1
  33. package/_esm/i18n/bn.json +42 -33
  34. package/_esm/i18n/de.json +43 -34
  35. package/_esm/i18n/en.json +3 -2
  36. package/_esm/i18n/es.json +113 -104
  37. package/_esm/i18n/fr.json +45 -36
  38. package/_esm/i18n/hi.json +38 -29
  39. package/_esm/i18n/id.json +42 -33
  40. package/_esm/i18n/it.json +43 -34
  41. package/_esm/i18n/ja.json +45 -36
  42. package/_esm/i18n/ko.json +43 -34
  43. package/_esm/i18n/pt.json +45 -36
  44. package/_esm/i18n/th.json +45 -36
  45. package/_esm/i18n/tr.json +44 -35
  46. package/_esm/i18n/uk.json +45 -36
  47. package/_esm/i18n/vi.json +45 -36
  48. package/_esm/i18n/zh.json +45 -36
  49. package/_esm/pages/SelectTokenPage/useTokenListHeight.js +2 -0
  50. package/_esm/pages/SelectTokenPage/useTokenListHeight.js.map +1 -1
  51. package/_esm/pages/SendToWallet/BookmarksPage.js +3 -4
  52. package/_esm/pages/SendToWallet/BookmarksPage.js.map +1 -1
  53. package/_esm/pages/SendToWallet/ConnectedWalletsPage.js +5 -4
  54. package/_esm/pages/SendToWallet/ConnectedWalletsPage.js.map +1 -1
  55. package/_esm/pages/SendToWallet/RecentWalletsPage.js +3 -4
  56. package/_esm/pages/SendToWallet/RecentWalletsPage.js.map +1 -1
  57. package/_esm/pages/SendToWallet/SendToConfiguredWalletPage.js +3 -4
  58. package/_esm/pages/SendToWallet/SendToConfiguredWalletPage.js.map +1 -1
  59. package/_esm/pages/SendToWallet/SendToWalletPage.style.js +3 -1
  60. package/_esm/pages/SendToWallet/SendToWalletPage.style.js.map +1 -1
  61. package/_esm/pages/TransactionDetailsPage/TransactionDetailsPage.js +2 -11
  62. package/_esm/pages/TransactionDetailsPage/TransactionDetailsPage.js.map +1 -1
  63. package/_esm/pages/TransactionDetailsPage/TransferIdCard.d.ts +5 -0
  64. package/_esm/pages/TransactionDetailsPage/TransferIdCard.js +32 -0
  65. package/_esm/pages/TransactionDetailsPage/TransferIdCard.js.map +1 -0
  66. package/_esm/providers/I18nProvider/I18nProvider.js +2 -0
  67. package/_esm/providers/I18nProvider/I18nProvider.js.map +1 -1
  68. package/_esm/providers/I18nProvider/percentFormatter.d.ts +7 -0
  69. package/_esm/providers/I18nProvider/percentFormatter.js +19 -0
  70. package/_esm/providers/I18nProvider/percentFormatter.js.map +1 -0
  71. package/_esm/types/widget.d.ts +1 -0
  72. package/_esm/utils/elements.d.ts +2 -1
  73. package/_esm/utils/elements.js +1 -0
  74. package/_esm/utils/elements.js.map +1 -1
  75. package/components/AppContainer.tsx +31 -18
  76. package/components/Header/WalletMenu.tsx +7 -1
  77. package/components/Step/Step.tsx +3 -6
  78. package/components/Step/StepProcess.tsx +5 -2
  79. package/components/Token/Token.tsx +15 -18
  80. package/components/TokenList/TokenList.tsx +8 -1
  81. package/components/TokenList/TokenListItem.tsx +4 -1
  82. package/components/TransactionDetails.tsx +8 -17
  83. package/config/constants.ts +3 -1
  84. package/config/version.ts +1 -1
  85. package/hooks/useExplorer.ts +51 -0
  86. package/hooks/useProcessMessage.ts +1 -1
  87. package/hooks/useRoutes.ts +5 -0
  88. package/i18n/bn.json +42 -33
  89. package/i18n/de.json +43 -34
  90. package/i18n/en.json +3 -2
  91. package/i18n/es.json +113 -104
  92. package/i18n/fr.json +45 -36
  93. package/i18n/hi.json +38 -29
  94. package/i18n/id.json +42 -33
  95. package/i18n/it.json +43 -34
  96. package/i18n/ja.json +45 -36
  97. package/i18n/ko.json +43 -34
  98. package/i18n/pt.json +45 -36
  99. package/i18n/th.json +45 -36
  100. package/i18n/tr.json +44 -35
  101. package/i18n/uk.json +45 -36
  102. package/i18n/vi.json +45 -36
  103. package/i18n/zh.json +45 -36
  104. package/package.json +12 -12
  105. package/pages/SelectTokenPage/useTokenListHeight.ts +3 -0
  106. package/pages/SendToWallet/BookmarksPage.tsx +6 -4
  107. package/pages/SendToWallet/ConnectedWalletsPage.tsx +8 -7
  108. package/pages/SendToWallet/RecentWalletsPage.tsx +6 -6
  109. package/pages/SendToWallet/SendToConfiguredWalletPage.tsx +6 -6
  110. package/pages/SendToWallet/SendToWalletPage.style.tsx +3 -0
  111. package/pages/TransactionDetailsPage/TransactionDetailsPage.tsx +2 -32
  112. package/pages/TransactionDetailsPage/TransferIdCard.tsx +67 -0
  113. package/providers/I18nProvider/I18nProvider.tsx +2 -0
  114. package/providers/I18nProvider/percentFormatter.ts +18 -0
  115. package/types/widget.ts +1 -1
  116. package/utils/elements.ts +1 -0
package/i18n/hi.json CHANGED
@@ -5,17 +5,19 @@
5
5
  },
6
6
  "format": {
7
7
  "currency": "",
8
- "number": ""
8
+ "number": "",
9
+ "percent": ""
9
10
  },
10
11
  "button": {
11
12
  "auto": "स्वतः",
12
13
  "bookmark": "",
13
14
  "bookmarks": "",
14
15
  "bridge": "",
16
+ "bridgeReview": "",
15
17
  "buy": "",
16
- "buyNow": "",
17
18
  "cancel": "रद्द करें",
18
19
  "changeWallet": "",
20
+ "checkoutReview": "",
19
21
  "close": "",
20
22
  "confirm": "",
21
23
  "connectWallet": "वॉलेट से जुड़ें?",
@@ -24,6 +26,8 @@
24
26
  "copyAddress": "",
25
27
  "dark": "अँधेरा",
26
28
  "delete": "हटाएं",
29
+ "deposit": "",
30
+ "depositReview": "",
27
31
  "disconnect": "संपर्क तोड़ें",
28
32
  "done": "समाप्त",
29
33
  "exchange": "",
@@ -36,14 +40,12 @@
36
40
  "removeTransaction": "",
37
41
  "reset": "",
38
42
  "resetSettings": "",
39
- "reviewBridge": "",
40
- "reviewPurchase": "",
41
- "reviewSwap": "",
42
43
  "seeDetails": "",
43
44
  "showAll": "",
44
45
  "startBridging": "",
45
46
  "startSwapping": "",
46
47
  "swap": "",
48
+ "swapReview": "",
47
49
  "tryAgain": "",
48
50
  "viewCoverage": "",
49
51
  "viewOnExplorer": ""
@@ -53,15 +55,18 @@
53
55
  "bookmarkedWallets": "",
54
56
  "bridge": "",
55
57
  "checkout": "",
58
+ "checkoutDetails": "",
59
+ "deposit": "",
60
+ "depositDetails": "",
56
61
  "exchange": "",
57
62
  "from": "",
58
63
  "gas": "गैस",
59
64
  "payWith": "",
60
- "purchase": "",
61
- "purchaseDetails": "",
65
+ "receive": "",
62
66
  "recentWallets": "",
63
67
  "selectChain": "चैन चुने",
64
68
  "selectWallet": "वॉलेट चुनाव करे",
69
+ "send": "",
65
70
  "sendToWallet": "",
66
71
  "settings": "सेटिंग्स",
67
72
  "swap": "",
@@ -69,7 +74,8 @@
69
74
  "transactionDetails": "",
70
75
  "transactionHistory": "",
71
76
  "walletConnected": "",
72
- "youGet": ""
77
+ "youGet": "",
78
+ "youPay": ""
73
79
  },
74
80
  "info": {
75
81
  "message": {
@@ -82,7 +88,7 @@
82
88
  "routeNotFound": ""
83
89
  },
84
90
  "title": {
85
- "autoRefuel": "गेस शुल्क ले",
91
+ "autoRefuel": "",
86
92
  "emptyActiveTransactions": "",
87
93
  "emptyTransactionHistory": "",
88
94
  "routeNotFound": ""
@@ -92,12 +98,13 @@
92
98
  "message": {
93
99
  "exchangePartiallySuccessful": "",
94
100
  "exchangeSuccessful": "",
95
- "purchaseSuccessful": ""
101
+ "checkoutSuccessful": ""
96
102
  },
97
103
  "title": {
98
104
  "bridgePartiallySuccessful": "",
99
105
  "bridgeSuccessful": "",
100
- "purchaseSuccessful": "",
106
+ "depositSuccessful": "",
107
+ "checkoutSuccessful": "",
101
108
  "refundIssued": "",
102
109
  "swapPartiallySuccessful": "",
103
110
  "swapSuccessful": ""
@@ -132,8 +139,10 @@
132
139
  "signatureRejected": "",
133
140
  "slippageThreshold": "",
134
141
  "transactionCanceled": "",
142
+ "transactionExpired": "",
135
143
  "transactionFailed": "",
136
144
  "transactionNotSent": "",
145
+ "transactionSimulationFailed": "",
137
146
  "unknown": "",
138
147
  "walletChangedDuringExecution": ""
139
148
  },
@@ -149,7 +158,9 @@
149
158
  "signatureRejected": "",
150
159
  "slippageNotMet": "",
151
160
  "transactionCanceled": "",
161
+ "transactionExpired": "",
152
162
  "transactionFailed": "",
163
+ "transactionSimulationFailed": "",
153
164
  "transactionUnderpriced": "",
154
165
  "transactionUnprepared": "",
155
166
  "unknown": "",
@@ -161,16 +172,20 @@
161
172
  }
162
173
  },
163
174
  "tooltip": {
175
+ "deselectAll": "",
164
176
  "estimatedTime": "",
177
+ "feeCollection": "",
178
+ "minReceived": "",
165
179
  "notFound": {
166
180
  "text": "",
167
181
  "title": "404"
168
182
  },
169
183
  "numberOfSteps": "",
184
+ "priceImpact": "",
170
185
  "progressToNextUpdate": "",
171
- "settingsModified": "",
172
186
  "selectAll": "",
173
- "deselectAll": ""
187
+ "settingsModified": "",
188
+ "slippage": ""
174
189
  },
175
190
  "main": {
176
191
  "allTokens": "",
@@ -180,21 +195,22 @@
180
195
  "depositStepDetails": "",
181
196
  "featuredTokens": "",
182
197
  "fees": {
198
+ "defaultIntegrator": "",
183
199
  "estimated": "",
184
- "networkEstimated": "",
185
- "networkPaid": "",
200
+ "integrator": "",
201
+ "network": "",
186
202
  "paid": "",
187
- "providerEstimated": "",
188
- "providerPaid": ""
203
+ "provider": ""
189
204
  },
190
205
  "from": "",
191
- "fromAmount": "",
192
- "gasCost": "",
193
206
  "inProgress": "",
207
+ "maxSlippage": "",
208
+ "minReceived": "",
194
209
  "myTokens": "",
195
210
  "onChain": "",
196
211
  "ownedBy": "",
197
212
  "popularTokens": "",
213
+ "priceImpact": "",
198
214
  "process": {
199
215
  "bridge": {
200
216
  "actionRequired": "",
@@ -243,18 +259,17 @@
243
259
  "sentToAddress": "",
244
260
  "stepBridge": "",
245
261
  "stepBridgeAndBuy": "",
262
+ "stepBridgeAndDeposit": "",
246
263
  "stepDetails": "",
247
264
  "stepSwap": "",
248
265
  "stepSwapAndBridge": "",
249
266
  "stepSwapAndBuy": "",
267
+ "stepSwapAndDeposit": "",
250
268
  "supportId": "",
251
269
  "swapStepDetails": "",
252
270
  "tags": {
253
271
  "cheapest": "",
254
- "fastest": "",
255
- "insurable": "",
256
- "insurance": "",
257
- "insured": ""
272
+ "fastest": ""
258
273
  },
259
274
  "to": "",
260
275
  "tokenOnChain": "",
@@ -262,12 +277,6 @@
262
277
  "tokenSearch": "",
263
278
  "valueLoss": ""
264
279
  },
265
- "insurance": {
266
- "bridgeExploits": "",
267
- "insure": "",
268
- "insured": "",
269
- "slippageError": ""
270
- },
271
280
  "settings": {
272
281
  "theme": "",
273
282
  "enabledBridges": "",
package/i18n/id.json CHANGED
@@ -4,18 +4,20 @@
4
4
  "title": "Bahasa"
5
5
  },
6
6
  "format": {
7
- "currency": "{{value, currency(currency: USD)}}",
8
- "number": "{{value, number(maximumFractionDigits: 9)}}"
7
+ "currency": "{{value, currencyExt(currency: USD)}}",
8
+ "number": "{{value, number(maximumFractionDigits: 9)}}",
9
+ "percent": ""
9
10
  },
10
11
  "button": {
11
12
  "auto": "Otomatis",
12
13
  "bookmark": "Bookmark",
13
14
  "bookmarks": "Penanda",
14
15
  "bridge": "Bridge",
16
+ "bridgeReview": "",
15
17
  "buy": "Beli",
16
- "buyNow": "Beli sekarang",
17
18
  "cancel": "Batal",
18
19
  "changeWallet": "Ubah Dompet",
20
+ "checkoutReview": "",
19
21
  "close": "Tutup",
20
22
  "confirm": "Konfirmasi",
21
23
  "connectWallet": "Hubungkan dompet",
@@ -24,6 +26,8 @@
24
26
  "copyAddress": "Salin alamat",
25
27
  "dark": "Gelap",
26
28
  "delete": "Hapus",
29
+ "deposit": "",
30
+ "depositReview": "",
27
31
  "disconnect": "Tidak terkoneksi",
28
32
  "done": "Selesai",
29
33
  "exchange": "Pertukaran",
@@ -36,14 +40,12 @@
36
40
  "removeTransaction": "Hapus transaksi",
37
41
  "reset": "Atur ulang",
38
42
  "resetSettings": "Setel ulang pengaturan",
39
- "reviewBridge": "Peninjauan bridge",
40
- "reviewPurchase": "Tinjau pembelian",
41
- "reviewSwap": "Tinjau swap",
42
43
  "seeDetails": "Lihat rinciannya",
43
44
  "showAll": "Tampilkan semua",
44
45
  "startBridging": "Mulai bridge",
45
46
  "startSwapping": "Mulai swap",
46
47
  "swap": "Swap",
48
+ "swapReview": "",
47
49
  "tryAgain": "Coba lagi",
48
50
  "viewCoverage": "Melihat cakupan",
49
51
  "viewOnExplorer": "Lihat di explorer"
@@ -53,15 +55,18 @@
53
55
  "bookmarkedWallets": "Dompet yang ditandai",
54
56
  "bridge": "Bridge",
55
57
  "checkout": "Checkout",
58
+ "checkoutDetails": "",
59
+ "deposit": "",
60
+ "depositDetails": "",
56
61
  "exchange": "Pertukaran",
57
62
  "from": "Swap dari",
58
63
  "gas": "Gas",
59
64
  "payWith": "Bayar dengan",
60
- "purchase": "Pembelian",
61
- "purchaseDetails": "Detail pembelian",
65
+ "receive": "Menerima",
62
66
  "recentWallets": "Dompet terbaru",
63
67
  "selectChain": "Pilih jaringan",
64
68
  "selectWallet": "Pilih dompet",
69
+ "send": "Kirim",
65
70
  "sendToWallet": "Kirim ke dompet",
66
71
  "settings": "Pengaturan",
67
72
  "swap": "Swap",
@@ -69,7 +74,8 @@
69
74
  "transactionDetails": "Rincian transaksi",
70
75
  "transactionHistory": "Riwayat transaksi",
71
76
  "walletConnected": "Dompet terhubung",
72
- "youGet": "Anda mendapatkan"
77
+ "youGet": "Anda mendapatkan",
78
+ "youPay": "Anda membayar"
73
79
  },
74
80
  "info": {
75
81
  "message": {
@@ -82,7 +88,7 @@
82
88
  "routeNotFound": "Alasannya mungkin: likuiditas rendah, jumlah yang dipilih terlalu rendah, biaya gas terlalu tinggi, atau tidak ada rute untuk kombinasi yang dipilih."
83
89
  },
84
90
  "title": {
85
- "autoRefuel": "Dapatkan gas",
91
+ "autoRefuel": "Dapatkan gas di {{chainName}}",
86
92
  "emptyActiveTransactions": "Tidak ada transaksi yang aktif",
87
93
  "emptyTransactionHistory": "Tidak ada transaksi terbaru",
88
94
  "routeNotFound": "Rute tidak tersedia"
@@ -90,14 +96,15 @@
90
96
  },
91
97
  "success": {
92
98
  "message": {
93
- "exchangePartiallySuccessful": "Kami telah mencoba menyelesaikan transaksi, tetapi {{tool}} kehabisan likuiditas untuk token {{tokenSymbol}}.",
99
+ "exchangePartiallySuccessful": "Kami sudah mencoba menyelesaikan transaksi, tapi {{tool}} tidak dapat melanjutkan karena pengaturan slippage atau kurangnya likuiditas untuk token {{tokenSymbol}}.",
94
100
  "exchangeSuccessful": "Sekarang ada {{amount, number(maximumFractionDigits: 9)}} {{tokenSymbol}} di dompet {{walletAddress}} pada jaringan {{chainName}}.",
95
- "purchaseSuccessful": "Anda sekarang memiliki {{assetName}} di dompet {{walletAddress}} di chain {{chainName}}."
101
+ "checkoutSuccessful": ""
96
102
  },
97
103
  "title": {
98
104
  "bridgePartiallySuccessful": "Bridge sebagian berhasil",
99
105
  "bridgeSuccessful": "Bridge berhasil",
100
- "purchaseSuccessful": "Pembelian berhasil",
106
+ "depositSuccessful": "",
107
+ "checkoutSuccessful": "",
101
108
  "refundIssued": "Pengembalian dana diterbitkan",
102
109
  "swapPartiallySuccessful": "Swap sebagian berhasil",
103
110
  "swapSuccessful": "Swap berhasil"
@@ -132,8 +139,10 @@
132
139
  "signatureRejected": "Tanda tangan Anda diperlukan untuk menyelesaikan transaksi. {{amount, number(maximumFractionDigits: 9)}} {{tokenSymbol}} di {{chainName}} tetap ada di dompet Anda.",
133
140
  "slippageThreshold": "Slippage lebih besar dari ambang batas yang ditentukan. Silakan minta rute baru untuk mendapatkan penawaran baru.",
134
141
  "transactionCanceled": "Transaksi dibatalkan.",
142
+ "transactionExpired": "Ketinggian blok telah melebihi batas maksimum yang diperbolehkan atau blockhash tidak lagi cukup baru.",
135
143
  "transactionFailed": "Silakan periksa block explorer untuk informasi lebih lanjut.",
136
144
  "transactionNotSent": "Transaksi tidak terkirim.",
145
+ "transactionSimulationFailed": "Transaksi tidak dapat dieksekusi dalam simulasi.",
137
146
  "unknown": "Silakan coba lagi atau hubungi bagian dukungan.",
138
147
  "walletChangedDuringExecution": "Alamat dompet yang meminta penawaran tidak cocok dengan alamat dompet yang mencoba menandatangani transaksi ini. Harap gunakan alamat dompet yang sama untuk digunakan di seluruh transaksi."
139
148
  },
@@ -149,7 +158,9 @@
149
158
  "signatureRejected": "Tanda tangan diperlukan",
150
159
  "slippageNotMet": "Kondisi slippage tidak terpenuhi",
151
160
  "transactionCanceled": "Transaksi dibatalkan",
161
+ "transactionExpired": "Transaksi berakhir",
152
162
  "transactionFailed": "Transaksi gagal",
163
+ "transactionSimulationFailed": "Verifikasi transaksi gagal",
153
164
  "transactionUnderpriced": "Transaksi di bawah harga",
154
165
  "transactionUnprepared": "Tidak dapat menguraikan transaksi",
155
166
  "unknown": "Terjadi kesalahan",
@@ -161,16 +172,20 @@
161
172
  }
162
173
  },
163
174
  "tooltip": {
164
- "estimatedTime": "Perkiraan waktu eksekusi swap dalam hitungan menit.",
175
+ "deselectAll": "Hapus semua",
176
+ "estimatedTime": "",
177
+ "feeCollection": "",
178
+ "minReceived": "Perkiraan jumlah minimum dapat berubah hingga transaksi swapping/bridging ditandatangani. Untuk transfer 2 langkah, ini berlaku hingga transaksi langkah kedua ditandatangani.",
165
179
  "notFound": {
166
180
  "text": "Kami tidak dapat menemukan halaman ini.",
167
181
  "title": "404"
168
182
  },
169
183
  "numberOfSteps": "Sejumlah langkah swap. Setiap langkah dapat berisi 1-2 transaksi yang memerlukan tanda tangan.",
184
+ "priceImpact": "Perkiraan perbedaan nilai antara token sumber dan tujuan.",
170
185
  "progressToNextUpdate": "Data yang ditampilkan akan disegarkan secara otomatis setelah {{value}} detik. Klik di sini untuk memperbarui secara manual.",
171
- "settingsModified": "Pengaturan (diubah)",
172
186
  "selectAll": "Pilih semua",
173
- "deselectAll": "Hapus semua"
187
+ "settingsModified": "Pengaturan (diubah)",
188
+ "slippage": "Perbedaan persentase maksimum antara harga yang diharapkan dan harga sebenarnya saat transfer dilakukan. Nilai ini dapat diubah dalam pengaturan."
174
189
  },
175
190
  "main": {
176
191
  "allTokens": "Semua Token",
@@ -180,21 +195,22 @@
180
195
  "depositStepDetails": "Dapatkan melalui {{tool}}",
181
196
  "featuredTokens": "Token unggulan",
182
197
  "fees": {
198
+ "defaultIntegrator": "",
183
199
  "estimated": "estimasi biaya",
184
- "networkEstimated": "Perkiraan biaya jaringan:",
185
- "networkPaid": "Biaya jaringan berbayar:",
200
+ "integrator": "",
201
+ "network": "Biaya jaringan",
186
202
  "paid": "biaya yang dibayar",
187
- "providerEstimated": "Perkiraan biaya penyedia:",
188
- "providerPaid": "Perkiraan biaya penyedia:"
203
+ "provider": "Biaya penyedia"
189
204
  },
190
205
  "from": "Dari",
191
- "fromAmount": "Anda membayar",
192
- "gasCost": "Biaya Gas",
193
206
  "inProgress": "dalam proses",
207
+ "maxSlippage": "Slip maksimum",
208
+ "minReceived": "Minimal. diterima",
194
209
  "myTokens": "Token saya",
195
210
  "onChain": "di {{chainName}}",
196
211
  "ownedBy": "Dimiliki oleh",
197
212
  "popularTokens": "Token populer",
213
+ "priceImpact": "Dampak terhadap harga",
198
214
  "process": {
199
215
  "bridge": {
200
216
  "actionRequired": "Silakan tandatangani transaksi ini",
@@ -243,18 +259,17 @@
243
259
  "sentToAddress": "Dikirim ke {{address}}",
244
260
  "stepBridge": "Bridge",
245
261
  "stepBridgeAndBuy": "Bridge dan beli",
262
+ "stepBridgeAndDeposit": "",
246
263
  "stepDetails": "{{tool}} melalui LI.FI",
247
264
  "stepSwap": "Swap",
248
265
  "stepSwapAndBridge": "Swap dan bridge",
249
266
  "stepSwapAndBuy": "Swap dan beli",
267
+ "stepSwapAndDeposit": "",
250
268
  "supportId": "ID dukungan",
251
269
  "swapStepDetails": "Swap di {{chain}} melalui {{tool}}",
252
270
  "tags": {
253
271
  "cheapest": "Pengembalian terbaik",
254
- "fastest": "Tercepat",
255
- "insurable": "Dapat diasuransikan",
256
- "insurance": "Asuransi",
257
- "insured": "Diasuransikan"
272
+ "fastest": "Tercepat"
258
273
  },
259
274
  "to": "Kepada",
260
275
  "tokenOnChain": "{{tokenSymbol}} di {{chainName}}",
@@ -262,12 +277,6 @@
262
277
  "tokenSearch": "Cari berdasarkan nama atau alamat token",
263
278
  "valueLoss": "Kehilangan nilai"
264
279
  },
265
- "insurance": {
266
- "bridgeExploits": "Malfungsi jembatan, peretasan, atau eksploitasi",
267
- "insure": "Asuransikan <0>{{amount, number(maximumFractionDigits: 9)}} {{tokenSymbol}}</0> dalam perjalanan.",
268
- "insured": "Anda telah mengasuransikan <0>{{amount, number(maximumFractionDigits: 9)}} {{tokenSymbol}}</0> dalam perjalanan:",
269
- "slippageError": "Kesalahan dalam slippage untuk token yang diterima"
270
- },
271
280
  "settings": {
272
281
  "theme": "Tema",
273
282
  "enabledBridges": "Bridge",
@@ -279,7 +288,7 @@
279
288
  "title": "Harga gas"
280
289
  },
281
290
  "routePriority": "Prioritas rute",
282
- "slippage": "Slippage",
291
+ "slippage": "Slip maksimum",
283
292
  "custom": "Kustom",
284
293
  "resetSettings": "Anda menggunakan pengaturan khusus yang dapat memengaruhi jumlah atau pengurutan rute yang tersedia."
285
294
  },
package/i18n/it.json CHANGED
@@ -4,18 +4,20 @@
4
4
  "title": "Lingua"
5
5
  },
6
6
  "format": {
7
- "currency": "{{value, currency(currency: USD)}}",
8
- "number": "{{value, number(maximumFractionDigits: 9)}}"
7
+ "currency": "",
8
+ "number": "{{value, number(maximumFractionDigits: 9)}}",
9
+ "percent": ""
9
10
  },
10
11
  "button": {
11
12
  "auto": "Auto",
12
13
  "bookmark": "",
13
14
  "bookmarks": "",
14
15
  "bridge": "Bridge",
16
+ "bridgeReview": "",
15
17
  "buy": "Acquista",
16
- "buyNow": "Acquista subito",
17
18
  "cancel": "Annulla",
18
19
  "changeWallet": "",
20
+ "checkoutReview": "",
19
21
  "close": "",
20
22
  "confirm": "",
21
23
  "connectWallet": "Collega il portafoglio",
@@ -24,6 +26,8 @@
24
26
  "copyAddress": "Copia indirizzo",
25
27
  "dark": "Scuro",
26
28
  "delete": "Elimina",
29
+ "deposit": "",
30
+ "depositReview": "",
27
31
  "disconnect": "Disconnetti",
28
32
  "done": "Fatto",
29
33
  "exchange": "Scambia",
@@ -36,14 +40,12 @@
36
40
  "removeTransaction": "Rimuovi transazione",
37
41
  "reset": "Ripristina",
38
42
  "resetSettings": "Ripristina impostazioni",
39
- "reviewBridge": "Rivedi bridge",
40
- "reviewPurchase": "Rivedi acquisto",
41
- "reviewSwap": "Rivedi lo scambio",
42
43
  "seeDetails": "Vedi dettagli",
43
44
  "showAll": "Mostra tutto",
44
45
  "startBridging": "Inizia il bridge",
45
46
  "startSwapping": "Avvia lo scambio",
46
47
  "swap": "Scambio",
48
+ "swapReview": "",
47
49
  "tryAgain": "Riprova",
48
50
  "viewCoverage": "Vedi copertura",
49
51
  "viewOnExplorer": "Visualizza sull'Explorer"
@@ -53,15 +55,18 @@
53
55
  "bookmarkedWallets": "",
54
56
  "bridge": "Bridge",
55
57
  "checkout": "Checkout",
58
+ "checkoutDetails": "",
59
+ "deposit": "",
60
+ "depositDetails": "",
56
61
  "exchange": "Exchange",
57
62
  "from": "Scambia da",
58
63
  "gas": "Gas",
59
64
  "payWith": "Paga con",
60
- "purchase": "Acquista",
61
- "purchaseDetails": "Dettagli di acquisto",
65
+ "receive": "",
62
66
  "recentWallets": "",
63
67
  "selectChain": "Seleziona la chain",
64
68
  "selectWallet": "Seleziona il tuo portafoglio",
69
+ "send": "",
65
70
  "sendToWallet": "",
66
71
  "settings": "Impostazioni",
67
72
  "swap": "Scambio",
@@ -69,7 +74,8 @@
69
74
  "transactionDetails": "Dettagli transazione",
70
75
  "transactionHistory": "Storico Transazioni",
71
76
  "walletConnected": "Portafoglio collegato",
72
- "youGet": "Ricevi"
77
+ "youGet": "Ricevi",
78
+ "youPay": ""
73
79
  },
74
80
  "info": {
75
81
  "message": {
@@ -82,7 +88,7 @@
82
88
  "routeNotFound": "Le ragioni potrebbero essere: bassa liquidità, la quantità selezionata è troppo bassa, i costi del gas sono troppo elevati o non ci sono routes per la combinazione selezionata."
83
89
  },
84
90
  "title": {
85
- "autoRefuel": "Ottieni gas",
91
+ "autoRefuel": "",
86
92
  "emptyActiveTransactions": "Nessuna transazione attiva",
87
93
  "emptyTransactionHistory": "Nessuna transazione recente",
88
94
  "routeNotFound": "Nessuna rotta disponibile"
@@ -90,14 +96,15 @@
90
96
  },
91
97
  "success": {
92
98
  "message": {
93
- "exchangePartiallySuccessful": "Abbiamo provato a completare la transazione, ma {{tool}} ha esaurito la liquidità per il token {{tokenSymbol}}.",
99
+ "exchangePartiallySuccessful": "",
94
100
  "exchangeSuccessful": "Sono presenti ora {{amount, number(maximumFractionDigits: 9)}} {{tokenSymbol}} nel portafoglio {{walletAddress}} sulla chain {{chainName}}.",
95
- "purchaseSuccessful": "Ora possiedi {{assetName}} nel wallet {{walletAddress}} sulla chain {{chainName}}."
101
+ "checkoutSuccessful": ""
96
102
  },
97
103
  "title": {
98
104
  "bridgePartiallySuccessful": "Bridge parzialmente completato con successo",
99
105
  "bridgeSuccessful": "Bridge avvenuto con successo",
100
- "purchaseSuccessful": "Acquisto completato",
106
+ "depositSuccessful": "",
107
+ "checkoutSuccessful": "",
101
108
  "refundIssued": "Rimborso inviato",
102
109
  "swapPartiallySuccessful": "Scambio parzialmente completato con successo",
103
110
  "swapSuccessful": "Scambio completato con successo"
@@ -132,8 +139,10 @@
132
139
  "signatureRejected": "",
133
140
  "slippageThreshold": "Lo slittamento di prezzo è più alto della soglia definita. Si prega di richiedere una nuova route per ottenere una quota aggiornata.",
134
141
  "transactionCanceled": "",
142
+ "transactionExpired": "",
135
143
  "transactionFailed": "Per ulteriori informazioni, consultare il block explorer.",
136
144
  "transactionNotSent": "",
145
+ "transactionSimulationFailed": "",
137
146
  "unknown": "Riprova o contatta il nostro supporto.",
138
147
  "walletChangedDuringExecution": ""
139
148
  },
@@ -149,7 +158,9 @@
149
158
  "signatureRejected": "",
150
159
  "slippageNotMet": "Condizioni di slittamento di prezzo non rispettate",
151
160
  "transactionCanceled": "Transazione cancellata",
161
+ "transactionExpired": "",
152
162
  "transactionFailed": "Transazione fallita",
163
+ "transactionSimulationFailed": "",
153
164
  "transactionUnderpriced": "L'operazione è sottostimata",
154
165
  "transactionUnprepared": "Impossibile preparare la transazione",
155
166
  "unknown": "Qualcosa è andato storto",
@@ -161,16 +172,20 @@
161
172
  }
162
173
  },
163
174
  "tooltip": {
164
- "estimatedTime": "Tempo di esecuzione dello scambio stimato in minuti.",
175
+ "deselectAll": "",
176
+ "estimatedTime": "",
177
+ "feeCollection": "",
178
+ "minReceived": "",
165
179
  "notFound": {
166
180
  "text": "Non siamo riusciti a trovare questa pagina.",
167
181
  "title": "404"
168
182
  },
169
- "numberOfSteps": "Una serie di fasi di scambio. Ogni fase può contenere 1-3 transazioni che richiedono una firma.",
183
+ "numberOfSteps": "",
184
+ "priceImpact": "",
170
185
  "progressToNextUpdate": "I dati visualizzati si aggiorneranno automaticamente dopo {{value}} secondi. Fai click qui per aggiornare manualmente.",
171
- "settingsModified": "Impostazioni (modificate)",
172
186
  "selectAll": "",
173
- "deselectAll": ""
187
+ "settingsModified": "Impostazioni (modificate)",
188
+ "slippage": ""
174
189
  },
175
190
  "main": {
176
191
  "allTokens": "",
@@ -180,21 +195,22 @@
180
195
  "depositStepDetails": "",
181
196
  "featuredTokens": "Token in evidenza",
182
197
  "fees": {
198
+ "defaultIntegrator": "",
183
199
  "estimated": "",
184
- "networkEstimated": "",
185
- "networkPaid": "",
200
+ "integrator": "",
201
+ "network": "",
186
202
  "paid": "",
187
- "providerEstimated": "",
188
- "providerPaid": ""
203
+ "provider": ""
189
204
  },
190
205
  "from": "Da",
191
- "fromAmount": "Paghi",
192
- "gasCost": "Costo del gas",
193
206
  "inProgress": "in corso",
207
+ "maxSlippage": "",
208
+ "minReceived": "",
194
209
  "myTokens": "",
195
210
  "onChain": "su {{chainName}}",
196
211
  "ownedBy": "Di proprietà di",
197
212
  "popularTokens": "",
213
+ "priceImpact": "",
198
214
  "process": {
199
215
  "bridge": {
200
216
  "actionRequired": "",
@@ -243,18 +259,17 @@
243
259
  "sentToAddress": "Inviati a {{address}}",
244
260
  "stepBridge": "Bridge",
245
261
  "stepBridgeAndBuy": "Trasferisci e acquista",
262
+ "stepBridgeAndDeposit": "",
246
263
  "stepDetails": "{{tool}} tramite LI.FI",
247
264
  "stepSwap": "Scambio",
248
265
  "stepSwapAndBridge": "Scambia e bridge",
249
266
  "stepSwapAndBuy": "Scambia e acquista",
267
+ "stepSwapAndDeposit": "",
250
268
  "supportId": "ID supporto",
251
269
  "swapStepDetails": "Scambio su {{chain}} tramite {{tool}}.",
252
270
  "tags": {
253
271
  "cheapest": "",
254
- "fastest": "",
255
- "insurable": "Assicurabile",
256
- "insurance": "Assicurazione",
257
- "insured": "Assicurato"
272
+ "fastest": ""
258
273
  },
259
274
  "to": "A",
260
275
  "tokenOnChain": "{{tokenSymbol}} su {{chainName}}",
@@ -262,12 +277,6 @@
262
277
  "tokenSearch": "Cerca per nome token o indirizzo",
263
278
  "valueLoss": "Perdita di valore"
264
279
  },
265
- "insurance": {
266
- "bridgeExploits": "Malfunzionamenti, hack o exploit di bridge",
267
- "insure": "Assicura <0>{{amount, number(maximumFractionDigits: 9)}} {{tokenSymbol}}</0> in transito.",
268
- "insured": "Hai assicurato <0>{{amount, number(maximumFractionDigits: 9)}} {{tokenSymbol}}</0> in transito:",
269
- "slippageError": "Errore nello slippage dei token ricevuti"
270
- },
271
280
  "settings": {
272
281
  "theme": "",
273
282
  "enabledBridges": "",
@@ -279,7 +288,7 @@
279
288
  "title": "Prezzo gas"
280
289
  },
281
290
  "routePriority": "Priorità di route",
282
- "slippage": "Slittamento",
291
+ "slippage": "",
283
292
  "custom": "",
284
293
  "resetSettings": ""
285
294
  },