@lifi/widget 1.27.2 → 1.28.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 (189) hide show
  1. package/AppRoutes.js +15 -33
  2. package/README.md +1 -1
  3. package/cjs/AppRoutes.js +15 -33
  4. package/cjs/components/ContractComponent/ContractComponent.d.ts +3 -0
  5. package/cjs/components/ContractComponent/ContractComponent.js +14 -0
  6. package/cjs/components/ContractComponent/index.d.ts +1 -0
  7. package/cjs/components/ContractComponent/index.js +17 -0
  8. package/cjs/components/Header/NavigationHeader.js +10 -2
  9. package/cjs/components/Header/WalletHeader.js +1 -1
  10. package/cjs/components/NFT/NFT.d.ts +4 -0
  11. package/cjs/components/NFT/NFT.js +41 -0
  12. package/cjs/components/NFT/NFT.style.d.ts +16 -0
  13. package/cjs/components/NFT/NFT.style.js +11 -0
  14. package/cjs/components/NFT/index.d.ts +2 -0
  15. package/cjs/components/NFT/index.js +18 -0
  16. package/cjs/components/NFT/types.d.ts +15 -0
  17. package/cjs/components/NFT/types.js +2 -0
  18. package/cjs/components/Select.d.ts +1 -1
  19. package/cjs/components/SelectChainAndToken.js +12 -2
  20. package/cjs/components/SelectTokenButton/SelectTokenButton.js +5 -2
  21. package/cjs/components/StepActions/StepActions.d.ts +6 -7
  22. package/cjs/components/StepActions/StepActions.js +41 -12
  23. package/cjs/components/StepActions/types.d.ts +5 -0
  24. package/cjs/components/SwapInput/SwapInput.d.ts +2 -1
  25. package/cjs/components/SwapInput/SwapInput.js +15 -3
  26. package/cjs/components/SwapRouteCard/SwapRouteCard.js +3 -1
  27. package/cjs/components/Token/Token.d.ts +1 -1
  28. package/cjs/components/Token/Token.js +12 -12
  29. package/cjs/components/TokenAvatar/TokenAvatar.d.ts +5 -3
  30. package/cjs/components/TokenAvatar/TokenAvatar.js +10 -9
  31. package/cjs/components/TokenList/TokenList.style.js +6 -0
  32. package/cjs/components/TokenList/VirtualizedTokenList.js +4 -2
  33. package/cjs/config/version.d.ts +1 -1
  34. package/cjs/config/version.js +1 -1
  35. package/cjs/hooks/useSwapRoutes.d.ts +5 -2
  36. package/cjs/hooks/useSwapRoutes.js +64 -14
  37. package/cjs/hooks/useToken.d.ts +1 -1
  38. package/cjs/hooks/useTokenSearch.d.ts +1 -1
  39. package/cjs/i18n/de.json +214 -214
  40. package/cjs/i18n/en.json +218 -214
  41. package/cjs/i18n/es.json +191 -191
  42. package/cjs/i18n/fr.json +214 -214
  43. package/cjs/i18n/it.json +214 -214
  44. package/cjs/i18n/uk.json +214 -214
  45. package/cjs/i18n/zh.json +214 -214
  46. package/cjs/index.d.ts +2 -0
  47. package/cjs/index.js +4 -1
  48. package/cjs/pages/MainPage/MainPage.js +5 -1
  49. package/cjs/providers/SwapFormProvider/types.d.ts +10 -0
  50. package/cjs/providers/SwapFormProvider/types.js +5 -0
  51. package/cjs/stores/chains/useChainOrderStore.d.ts +1 -1
  52. package/cjs/stores/routes/useRouteExecutionStore.d.ts +1 -1
  53. package/cjs/stores/settings/useSettingsStore.d.ts +1 -1
  54. package/cjs/types/widget.d.ts +9 -4
  55. package/cjs/types/widget.js +2 -0
  56. package/components/ContractComponent/ContractComponent.d.ts +3 -0
  57. package/components/ContractComponent/ContractComponent.js +10 -0
  58. package/components/ContractComponent/index.d.ts +1 -0
  59. package/components/ContractComponent/index.js +1 -0
  60. package/components/Header/NavigationHeader.js +12 -4
  61. package/components/Header/WalletHeader.js +1 -1
  62. package/components/NFT/NFT.d.ts +4 -0
  63. package/components/NFT/NFT.js +37 -0
  64. package/components/NFT/NFT.style.d.ts +16 -0
  65. package/components/NFT/NFT.style.js +8 -0
  66. package/components/NFT/index.d.ts +2 -0
  67. package/components/NFT/index.js +2 -0
  68. package/components/NFT/types.d.ts +15 -0
  69. package/components/NFT/types.js +1 -0
  70. package/components/Select.d.ts +1 -1
  71. package/components/SelectChainAndToken.js +12 -2
  72. package/components/SelectTokenButton/SelectTokenButton.js +5 -2
  73. package/components/StepActions/StepActions.d.ts +6 -7
  74. package/components/StepActions/StepActions.js +40 -12
  75. package/components/StepActions/types.d.ts +5 -0
  76. package/components/SwapInput/SwapInput.d.ts +2 -1
  77. package/components/SwapInput/SwapInput.js +15 -3
  78. package/components/SwapRouteCard/SwapRouteCard.js +3 -1
  79. package/components/Token/Token.d.ts +1 -1
  80. package/components/Token/Token.js +13 -13
  81. package/components/TokenAvatar/TokenAvatar.d.ts +5 -3
  82. package/components/TokenAvatar/TokenAvatar.js +10 -9
  83. package/components/TokenList/TokenList.style.js +6 -0
  84. package/components/TokenList/VirtualizedTokenList.js +4 -2
  85. package/config/version.d.ts +1 -1
  86. package/config/version.js +1 -1
  87. package/hooks/useSwapRoutes.d.ts +5 -2
  88. package/hooks/useSwapRoutes.js +64 -14
  89. package/hooks/useToken.d.ts +1 -1
  90. package/hooks/useTokenSearch.d.ts +1 -1
  91. package/i18n/de.json +214 -214
  92. package/i18n/en.json +218 -214
  93. package/i18n/es.json +191 -191
  94. package/i18n/fr.json +214 -214
  95. package/i18n/it.json +214 -214
  96. package/i18n/uk.json +214 -214
  97. package/i18n/zh.json +214 -214
  98. package/index.d.ts +2 -0
  99. package/index.js +2 -0
  100. package/package.json +15 -13
  101. package/pages/MainPage/MainPage.js +5 -1
  102. package/providers/SwapFormProvider/types.d.ts +10 -0
  103. package/providers/SwapFormProvider/types.js +5 -0
  104. package/stores/chains/useChainOrderStore.d.ts +1 -1
  105. package/stores/routes/useRouteExecutionStore.d.ts +1 -1
  106. package/stores/settings/useSettingsStore.d.ts +1 -1
  107. package/tsconfig.cjs.tsbuildinfo +1 -1
  108. package/types/widget.d.ts +9 -4
  109. package/types/widget.js +2 -0
  110. package/cjs/fonts/Inter-Black.woff +0 -0
  111. package/cjs/fonts/Inter-Black.woff2 +0 -0
  112. package/cjs/fonts/Inter-BlackItalic.woff +0 -0
  113. package/cjs/fonts/Inter-BlackItalic.woff2 +0 -0
  114. package/cjs/fonts/Inter-Bold.woff +0 -0
  115. package/cjs/fonts/Inter-Bold.woff2 +0 -0
  116. package/cjs/fonts/Inter-BoldItalic.woff +0 -0
  117. package/cjs/fonts/Inter-BoldItalic.woff2 +0 -0
  118. package/cjs/fonts/Inter-ExtraBold.woff +0 -0
  119. package/cjs/fonts/Inter-ExtraBold.woff2 +0 -0
  120. package/cjs/fonts/Inter-ExtraBoldItalic.woff +0 -0
  121. package/cjs/fonts/Inter-ExtraBoldItalic.woff2 +0 -0
  122. package/cjs/fonts/Inter-ExtraLight.woff +0 -0
  123. package/cjs/fonts/Inter-ExtraLight.woff2 +0 -0
  124. package/cjs/fonts/Inter-ExtraLightItalic.woff +0 -0
  125. package/cjs/fonts/Inter-ExtraLightItalic.woff2 +0 -0
  126. package/cjs/fonts/Inter-Italic.woff +0 -0
  127. package/cjs/fonts/Inter-Italic.woff2 +0 -0
  128. package/cjs/fonts/Inter-Light.woff +0 -0
  129. package/cjs/fonts/Inter-Light.woff2 +0 -0
  130. package/cjs/fonts/Inter-LightItalic.woff +0 -0
  131. package/cjs/fonts/Inter-LightItalic.woff2 +0 -0
  132. package/cjs/fonts/Inter-Medium.woff +0 -0
  133. package/cjs/fonts/Inter-Medium.woff2 +0 -0
  134. package/cjs/fonts/Inter-MediumItalic.woff +0 -0
  135. package/cjs/fonts/Inter-MediumItalic.woff2 +0 -0
  136. package/cjs/fonts/Inter-Regular.woff +0 -0
  137. package/cjs/fonts/Inter-Regular.woff2 +0 -0
  138. package/cjs/fonts/Inter-SemiBold.woff +0 -0
  139. package/cjs/fonts/Inter-SemiBold.woff2 +0 -0
  140. package/cjs/fonts/Inter-SemiBoldItalic.woff +0 -0
  141. package/cjs/fonts/Inter-SemiBoldItalic.woff2 +0 -0
  142. package/cjs/fonts/Inter-Thin.woff +0 -0
  143. package/cjs/fonts/Inter-Thin.woff2 +0 -0
  144. package/cjs/fonts/Inter-ThinItalic.woff +0 -0
  145. package/cjs/fonts/Inter-ThinItalic.woff2 +0 -0
  146. package/cjs/fonts/Inter-italic.var.woff2 +0 -0
  147. package/cjs/fonts/Inter-roman.var.woff2 +0 -0
  148. package/cjs/fonts/Inter.var.woff2 +0 -0
  149. package/cjs/fonts/inter.css +0 -200
  150. package/fonts/Inter-Black.woff +0 -0
  151. package/fonts/Inter-Black.woff2 +0 -0
  152. package/fonts/Inter-BlackItalic.woff +0 -0
  153. package/fonts/Inter-BlackItalic.woff2 +0 -0
  154. package/fonts/Inter-Bold.woff +0 -0
  155. package/fonts/Inter-Bold.woff2 +0 -0
  156. package/fonts/Inter-BoldItalic.woff +0 -0
  157. package/fonts/Inter-BoldItalic.woff2 +0 -0
  158. package/fonts/Inter-ExtraBold.woff +0 -0
  159. package/fonts/Inter-ExtraBold.woff2 +0 -0
  160. package/fonts/Inter-ExtraBoldItalic.woff +0 -0
  161. package/fonts/Inter-ExtraBoldItalic.woff2 +0 -0
  162. package/fonts/Inter-ExtraLight.woff +0 -0
  163. package/fonts/Inter-ExtraLight.woff2 +0 -0
  164. package/fonts/Inter-ExtraLightItalic.woff +0 -0
  165. package/fonts/Inter-ExtraLightItalic.woff2 +0 -0
  166. package/fonts/Inter-Italic.woff +0 -0
  167. package/fonts/Inter-Italic.woff2 +0 -0
  168. package/fonts/Inter-Light.woff +0 -0
  169. package/fonts/Inter-Light.woff2 +0 -0
  170. package/fonts/Inter-LightItalic.woff +0 -0
  171. package/fonts/Inter-LightItalic.woff2 +0 -0
  172. package/fonts/Inter-Medium.woff +0 -0
  173. package/fonts/Inter-Medium.woff2 +0 -0
  174. package/fonts/Inter-MediumItalic.woff +0 -0
  175. package/fonts/Inter-MediumItalic.woff2 +0 -0
  176. package/fonts/Inter-Regular.woff +0 -0
  177. package/fonts/Inter-Regular.woff2 +0 -0
  178. package/fonts/Inter-SemiBold.woff +0 -0
  179. package/fonts/Inter-SemiBold.woff2 +0 -0
  180. package/fonts/Inter-SemiBoldItalic.woff +0 -0
  181. package/fonts/Inter-SemiBoldItalic.woff2 +0 -0
  182. package/fonts/Inter-Thin.woff +0 -0
  183. package/fonts/Inter-Thin.woff2 +0 -0
  184. package/fonts/Inter-ThinItalic.woff +0 -0
  185. package/fonts/Inter-ThinItalic.woff2 +0 -0
  186. package/fonts/Inter-italic.var.woff2 +0 -0
  187. package/fonts/Inter-roman.var.woff2 +0 -0
  188. package/fonts/Inter.var.woff2 +0 -0
  189. package/fonts/inter.css +0 -200
package/i18n/fr.json CHANGED
@@ -1,223 +1,223 @@
1
1
  {
2
- "button": {
3
- "auto": "Auto",
4
- "cancel": "Annuler",
5
- "connectWallet": "Connecter un portefeuille",
6
- "contactSupport": "Contacter le support",
7
- "continue": "Continuer",
8
- "copyAddress": "Copier l’adresse",
9
- "dark": "Sombre",
10
- "delete": "Supprimer",
11
- "disconnectWallet": "Déconnecter le portefeuille",
12
- "done": "Terminé",
13
- "getGas": "Get gas",
14
- "hide": "Cacher",
15
- "lifiSwap": "LI.FI Swap",
16
- "light": "Clair",
17
- "max": "max",
18
- "ok": "Ok",
19
- "okay": "D'accord",
20
- "removeSwap": "Supprimer l'échange",
21
- "restartSwap": "Redémarrer l'échange",
22
- "reviewSwap": "Revue de l'échange",
23
- "seeDetails": "Voir les détails",
24
- "showAll": "Afficher tous",
25
- "startGasSwap": "Start gas swap",
26
- "startSwap": "Échange de départ",
27
- "swap": "Échanger",
28
- "tryAgain": "Réessayer"
29
- },
30
- "format": {
31
- "currency": "{{value, currency(currency: USD)}}",
32
- "number": "{{value, number(maximumFractionDigits: 4)}}"
33
- },
34
- "header": {
35
- "activeSwaps": "Échange actifs",
36
- "from": "Échanger de",
37
- "gas": "Gas",
38
- "gasSwap": "Gas swap",
39
- "routes": "Vous obtenez",
40
- "selectChain": "Sélectionner la chaîne",
41
- "selectWallet": "Sélectionnez votre portefeuille",
42
- "settings": "Paramètres",
43
- "swap": "Échanger",
44
- "swapDetails": "Détails de l'échange",
45
- "swapHistory": "Historique des échanges",
46
- "to": "Échanger pour",
47
- "walletConnected": "Portefeuille connecté"
48
- },
49
- "language": {
50
- "name": "Français",
51
- "title": "Langue"
52
- },
53
- "settings": {
54
- "advancedPreferences": "Préférences avancées",
55
- "enabledBridges": "Bridges activés",
56
- "enabledExchanges": "Échanges activés",
57
- "gasPrice": {
58
- "fast": "Rapide",
59
- "normal": "Normal",
60
- "slow": "Lent",
61
- "title": "Prix du gaz"
2
+ "button": {
3
+ "auto": "Auto",
4
+ "cancel": "Annuler",
5
+ "connectWallet": "Connecter un portefeuille",
6
+ "contactSupport": "Contacter le support",
7
+ "continue": "Continuer",
8
+ "copyAddress": "Copier l’adresse",
9
+ "dark": "Sombre",
10
+ "delete": "Supprimer",
11
+ "disconnectWallet": "Déconnecter le portefeuille",
12
+ "done": "Terminé",
13
+ "getGas": "Get gas",
14
+ "hide": "Cacher",
15
+ "lifiSwap": "LI.FI Swap",
16
+ "light": "Clair",
17
+ "max": "max",
18
+ "ok": "Ok",
19
+ "okay": "D'accord",
20
+ "removeSwap": "Supprimer l'échange",
21
+ "restartSwap": "Redémarrer l'échange",
22
+ "reviewSwap": "Revue de l'échange",
23
+ "seeDetails": "Voir les détails",
24
+ "showAll": "Afficher tous",
25
+ "startGasSwap": "Start gas swap",
26
+ "startSwap": "Échange de départ",
27
+ "swap": "Échanger",
28
+ "tryAgain": "Réessayer"
62
29
  },
63
- "resetToDefault": "Réinitialisation des valeurs par défaut",
64
- "routePriority": "Priorité de l'itinéraire",
65
- "selectEnabledBridges": "Sélectionner les bridges activés",
66
- "selectEnabledExchanges": "Sélectionner les échanges activés",
67
- "showDestinationWallet": "Afficher le portefeuille de destination",
68
- "slippage": "Effet de glissement"
69
- },
70
- "swap": {
71
- "crossStepDetails": "Passer de {{from}} à {{to}} via {{tool}}",
72
- "currentAmount": "Current amount",
73
- "error": {
74
- "message": {
75
- "slippageThreshold": "The slippage is larger than the defined threshold. Please request a new route to get a fresh quote.",
76
- "transactionFailed": "Veuillez consulter l'explorateur de blockchain pour plus d'informations.",
77
- "transactionNotSent": "La transaction n'a pas été envoyée, vos fonds sont toujours dans votre portefeuille ({{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} sur {{chainName}}).",
78
- "transactionRejected": "Votre signature est requise pour compléter la transaction. Le {{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} sur {{chainName}} restent dans votre portefeuille.",
79
- "unknown": "Please try again or contact support."
80
- },
81
- "title": {
82
- "balanceIsTooLow": "The balance is too low",
83
- "chainSwitch": "Changement de chaîne nécessaire.",
84
- "failed": "L'échange a échoué.",
85
- "gasLimitIsTooLow": "The gas limit is too low",
86
- "slippageNotMet": "Slippage conditions not met",
87
- "transactionCanceled": "Transaction canceled",
88
- "transactionFailed": "La transaction a échoué.",
89
- "transactionRejected": "Signature requise.",
90
- "transactionUnderpriced": "La transaction est sous-évaluée.",
91
- "transactionUnprepared": "Impossible de préparer la transaction.",
92
- "unknown": "Il y a eu un problème.",
93
- "walletAddressInvalid": "L'adresse du portefeuille n'est pas valide.",
94
- "walletEnsAddressInvalid": "L'adresse du portefeuille n'est pas valide ou le réseau ne supporte pas l'ENS."
95
- }
30
+ "format": {
31
+ "currency": "{{value, currency(currency: USD)}}",
32
+ "number": "{{value, number(maximumFractionDigits: 4)}}"
96
33
  },
97
- "estimatedTime": "{{value}}m",
98
- "featuredTokens": "Jetons en vedette",
99
- "from": "De",
100
- "fromAmount": "Vous payez",
101
- "gasCost": "Coût du gaz",
102
- "gasFeeEstimated": "estimated gas fee",
103
- "gasFeePaid": "gas fee paid",
104
- "inProgress": "en cours",
105
- "info": {
106
- "message": {
107
- "emptyActiveSwaps": "Les échanges en cours apparaissent ici. Une fois terminés, vous les trouverez dans l'historique des échanges.",
108
- "emptySwapHistory": "L'historique des échanges n'est stocké que localement et sera supprimé si vous effacez les données de votre navigateur.",
109
- "emptyTokenList": "Nous n'avons pas trouvé de jetons sur la chaîne {{chainName}} ou vous n'en avez pas. Veuillez réessayer la recherche ou choisir une autre chaîne.",
110
- "routeNotFound": "Essayez une autre combinaison de jetons."
111
- },
112
- "title": {
113
- "emptyActiveSwaps": "Pas de swaps actifs",
114
- "emptySwapHistory": "Aucun échange récent",
115
- "routeNotFound": "Aucun itinéraire disponible"
116
- }
34
+ "header": {
35
+ "activeSwaps": "Échange actifs",
36
+ "from": "Échanger de",
37
+ "gas": "Gas",
38
+ "gasSwap": "Gas swap",
39
+ "routes": "Vous obtenez",
40
+ "selectChain": "Sélectionner la chaîne",
41
+ "selectWallet": "Sélectionnez votre portefeuille",
42
+ "settings": "Paramètres",
43
+ "swap": "Échanger",
44
+ "swapDetails": "Détails de l'échange",
45
+ "swapHistory": "Historique des échanges",
46
+ "to": "Échanger pour",
47
+ "walletConnected": "Portefeuille connecté"
117
48
  },
118
- "onChain": "on {{chainName}}",
119
- "otherTokens": "Autres jetons",
120
- "process": {
121
- "crossChain": {
122
- "actionRequired": "Veuillez signer la transaction.",
123
- "done": "Transaction approuvée.",
124
- "pending": "En attendant la transaction.",
125
- "started": "Préparation de la transaction."
126
- },
127
- "receivingChain": {
128
- "done": "Fonds reçus.",
129
- "partial": "Bridge partially completed",
130
- "pending": "En attente de la chaîne de réception.",
131
- "refunded": "Bridge transaction refunded"
132
- },
133
- "swap": {
134
- "actionRequired": "Veuillez signer la transaction.",
135
- "done": "Échange terminé.",
136
- "pending": "Échange en cours.",
137
- "started": "Préparation de l'échange."
138
- },
139
- "switchChain": {
140
- "actionRequired": "Changement de chaîne requis.",
141
- "done": "La chaîne a été commutée avec succès."
142
- },
143
- "tokenAllowance": {
144
- "done": "L'allocation de jetons est approuvée.",
145
- "pending": "En attente de l'allocation.",
146
- "started": "Fixation de l'allocation de jeton."
147
- }
49
+ "language": {
50
+ "name": "Français",
51
+ "title": "Langue"
148
52
  },
149
- "quotedAmount": "Quoted amount",
150
- "rateChange": "Rate change",
151
- "receiving": "Réception",
152
- "routes": "Vous obtenez",
153
- "selectChain": "Chaîne",
154
- "selectChainAndToken": "Sélectionnez la chaîne et le jeton",
155
- "selectToken": "Jeton",
156
- "sendToAddress": "Send to {{address}}",
157
- "sendToWallet": "Envoyer vers un autre portefeuille",
158
- "sentToAddress": "Sent to {{address}}",
159
- "stepBridge": "Bridge",
160
- "stepSwap": "Échanger",
161
- "stepSwapAndBridge": "Échange et Bridge",
162
- "success": {
163
- "message": {
164
- "swapPartiallySuccessful": "We've tried to complete the swap, but {{tool}} ran out of liquidity for {{tokenSymbol}} token.",
165
- "swapSuccessful": "Il y a maintenant {{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} dans le portefeuille {{walletAddress}} de la chaîne {{chainName}}."
166
- },
167
- "title": {
168
- "gasSwapSuccessful": "Gas swap successful",
169
- "refundIssued": "Refund issued",
170
- "swapPartiallySuccessful": "Swap partially successful",
171
- "swapSuccessful": "Échange réussi"
172
- }
53
+ "settings": {
54
+ "advancedPreferences": "Préférences avancées",
55
+ "enabledBridges": "Bridges activés",
56
+ "enabledExchanges": "Échanges activés",
57
+ "gasPrice": {
58
+ "fast": "Rapide",
59
+ "normal": "Normal",
60
+ "slow": "Lent",
61
+ "title": "Prix du gaz"
62
+ },
63
+ "resetToDefault": "Réinitialisation des valeurs par défaut",
64
+ "routePriority": "Priorité de l'itinéraire",
65
+ "selectEnabledBridges": "Sélectionner les bridges activés",
66
+ "selectEnabledExchanges": "Sélectionner les échanges activés",
67
+ "showDestinationWallet": "Afficher le portefeuille de destination",
68
+ "slippage": "Effet de glissement"
173
69
  },
174
- "supportId": "ID de support",
175
- "swapStepDetails": "Echanger sur {{chain}} via {{tool}}",
176
- "swapping": "Échanger",
177
- "tags": {
178
- "ALTERNATIVE": "ALTERNATIVE",
179
- "CHEAPEST": "PETIT PRIX",
180
- "FASTEST": "RAPIDE",
181
- "RECOMMENDED": "RECOMMANDÉ",
182
- "SAFEST": "SÛR"
70
+ "swap": {
71
+ "crossStepDetails": "Passer de {{from}} à {{to}} via {{tool}}",
72
+ "currentAmount": "Current amount",
73
+ "error": {
74
+ "message": {
75
+ "slippageThreshold": "The slippage is larger than the defined threshold. Please request a new route to get a fresh quote.",
76
+ "transactionFailed": "Veuillez consulter l'explorateur de blockchain pour plus d'informations.",
77
+ "transactionNotSent": "La transaction n'a pas été envoyée, vos fonds sont toujours dans votre portefeuille ({{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} sur {{chainName}}).",
78
+ "transactionRejected": "Votre signature est requise pour compléter la transaction. Le {{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} sur {{chainName}} restent dans votre portefeuille.",
79
+ "unknown": "Please try again or contact support."
80
+ },
81
+ "title": {
82
+ "balanceIsTooLow": "The balance is too low",
83
+ "chainSwitch": "Changement de chaîne nécessaire.",
84
+ "failed": "L'échange a échoué.",
85
+ "gasLimitIsTooLow": "The gas limit is too low",
86
+ "slippageNotMet": "Slippage conditions not met",
87
+ "transactionCanceled": "Transaction canceled",
88
+ "transactionFailed": "La transaction a échoué.",
89
+ "transactionRejected": "Signature requise.",
90
+ "transactionUnderpriced": "La transaction est sous-évaluée.",
91
+ "transactionUnprepared": "Impossible de préparer la transaction.",
92
+ "unknown": "Il y a eu un problème.",
93
+ "walletAddressInvalid": "L'adresse du portefeuille n'est pas valide.",
94
+ "walletEnsAddressInvalid": "L'adresse du portefeuille n'est pas valide ou le réseau ne supporte pas l'ENS."
95
+ }
96
+ },
97
+ "estimatedTime": "{{value}}m",
98
+ "featuredTokens": "Jetons en vedette",
99
+ "from": "De",
100
+ "fromAmount": "Vous payez",
101
+ "gasCost": "Coût du gaz",
102
+ "gasFeeEstimated": "estimated gas fee",
103
+ "gasFeePaid": "gas fee paid",
104
+ "inProgress": "en cours",
105
+ "info": {
106
+ "message": {
107
+ "emptyActiveSwaps": "Les échanges en cours apparaissent ici. Une fois terminés, vous les trouverez dans l'historique des échanges.",
108
+ "emptySwapHistory": "L'historique des échanges n'est stocké que localement et sera supprimé si vous effacez les données de votre navigateur.",
109
+ "emptyTokenList": "Nous n'avons pas trouvé de jetons sur la chaîne {{chainName}} ou vous n'en avez pas. Veuillez réessayer la recherche ou choisir une autre chaîne.",
110
+ "routeNotFound": "Essayez une autre combinaison de jetons."
111
+ },
112
+ "title": {
113
+ "emptyActiveSwaps": "Pas de swaps actifs",
114
+ "emptySwapHistory": "Aucun échange récent",
115
+ "routeNotFound": "Aucun itinéraire disponible"
116
+ }
117
+ },
118
+ "onChain": "on {{chainName}}",
119
+ "otherTokens": "Autres jetons",
120
+ "process": {
121
+ "crossChain": {
122
+ "actionRequired": "Veuillez signer la transaction.",
123
+ "done": "Transaction approuvée.",
124
+ "pending": "En attendant la transaction.",
125
+ "started": "Préparation de la transaction."
126
+ },
127
+ "receivingChain": {
128
+ "done": "Fonds reçus.",
129
+ "partial": "Bridge partially completed",
130
+ "pending": "En attente de la chaîne de réception.",
131
+ "refunded": "Bridge transaction refunded"
132
+ },
133
+ "swap": {
134
+ "actionRequired": "Veuillez signer la transaction.",
135
+ "done": "Échange terminé.",
136
+ "pending": "Échange en cours.",
137
+ "started": "Préparation de l'échange."
138
+ },
139
+ "switchChain": {
140
+ "actionRequired": "Changement de chaîne requis.",
141
+ "done": "La chaîne a été commutée avec succès."
142
+ },
143
+ "tokenAllowance": {
144
+ "done": "L'allocation de jetons est approuvée.",
145
+ "pending": "En attente de l'allocation.",
146
+ "started": "Fixation de l'allocation de jeton."
147
+ }
148
+ },
149
+ "quotedAmount": "Quoted amount",
150
+ "rateChange": "Rate change",
151
+ "receiving": "Réception",
152
+ "routes": "Vous obtenez",
153
+ "selectChain": "Chaîne",
154
+ "selectChainAndToken": "Sélectionnez la chaîne et le jeton",
155
+ "selectToken": "Jeton",
156
+ "sendToAddress": "Send to {{address}}",
157
+ "sendToWallet": "Envoyer vers un autre portefeuille",
158
+ "sentToAddress": "Sent to {{address}}",
159
+ "stepBridge": "Bridge",
160
+ "stepSwap": "Échanger",
161
+ "stepSwapAndBridge": "Échange et Bridge",
162
+ "success": {
163
+ "message": {
164
+ "swapPartiallySuccessful": "We've tried to complete the swap, but {{tool}} ran out of liquidity for {{tokenSymbol}} token.",
165
+ "swapSuccessful": "Il y a maintenant {{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} dans le portefeuille {{walletAddress}} de la chaîne {{chainName}}."
166
+ },
167
+ "title": {
168
+ "gasSwapSuccessful": "Gas swap successful",
169
+ "refundIssued": "Refund issued",
170
+ "swapPartiallySuccessful": "Swap partially successful",
171
+ "swapSuccessful": "Échange réussi"
172
+ }
173
+ },
174
+ "supportId": "ID de support",
175
+ "swapStepDetails": "Echanger sur {{chain}} via {{tool}}",
176
+ "swapping": "Échanger",
177
+ "tags": {
178
+ "ALTERNATIVE": "ALTERNATIVE",
179
+ "CHEAPEST": "PETIT PRIX",
180
+ "FASTEST": "RAPIDE",
181
+ "RECOMMENDED": "RECOMMANDÉ",
182
+ "SAFEST": "SÛR"
183
+ },
184
+ "to": "À",
185
+ "tokenOnChain": "{{tokenSymbol}} sur {{chainName}}",
186
+ "tokenOnChainAmount": "{{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} sur {{chainName}}",
187
+ "tokenSearch": "Recherchez votre jeton",
188
+ "valueLoss": "Perte de valeur",
189
+ "walletAddressOrEns": "Adresse du portefeuille ou nom de l'ENS",
190
+ "warning": {
191
+ "message": {
192
+ "deleteActiveSwaps": "Les échanges actifs sont uniquement stockés localement et ne peuvent pas être récupérés si vous les supprimez.",
193
+ "deleteSwapHistory": "L'historique des échanges est uniquement stocké localement et ne peut pas être récupéré si vous le supprimez.",
194
+ "highValueLoss": "La valeur des jetons reçus est nettement inférieure à celle des jetons échangés et au coût de la transaction.",
195
+ "insufficientFunds": "Vous n'avez pas assez de fonds pour exécuter l'échange.",
196
+ "insufficientGas": "Vous devez ajouter au moins :",
197
+ "rateChanged": "The exchange rate has changed. By continuing the swap, you'll accept the new rate."
198
+ },
199
+ "title": {
200
+ "deleteActiveSwaps": "Supprimer tous les échanges actifs ?",
201
+ "deleteSwap": "Supprimer cet échange ?",
202
+ "deleteSwapHistory": "Supprimer l'historique des échanges ?",
203
+ "highValueLoss": "Perte de valeur élevée",
204
+ "insufficientGas": "Gaz insuffisant",
205
+ "rateChanged": "Rate changed"
206
+ }
207
+ }
183
208
  },
184
- "to": "À",
185
- "tokenOnChain": "{{tokenSymbol}} sur {{chainName}}",
186
- "tokenOnChainAmount": "{{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} sur {{chainName}}",
187
- "tokenSearch": "Recherchez votre jeton",
188
- "valueLoss": "Perte de valeur",
189
- "walletAddressOrEns": "Adresse du portefeuille ou nom de l'ENS",
190
- "warning": {
191
- "message": {
192
- "deleteActiveSwaps": "Les échanges actifs sont uniquement stockés localement et ne peuvent pas être récupérés si vous les supprimez.",
193
- "deleteSwapHistory": "L'historique des échanges est uniquement stocké localement et ne peut pas être récupéré si vous le supprimez.",
194
- "highValueLoss": "La valeur des jetons reçus est nettement inférieure à celle des jetons échangés et au coût de la transaction.",
195
- "insufficientFunds": "Vous n'avez pas assez de fonds pour exécuter l'échange.",
196
- "insufficientGas": "Vous devez ajouter au moins :",
197
- "rateChanged": "The exchange rate has changed. By continuing the swap, you'll accept the new rate."
198
- },
199
- "title": {
200
- "deleteActiveSwaps": "Supprimer tous les échanges actifs ?",
201
- "deleteSwap": "Supprimer cet échange ?",
202
- "deleteSwapHistory": "Supprimer l'historique des échanges ?",
203
- "highValueLoss": "Perte de valeur élevée",
204
- "insufficientGas": "Gaz insuffisant",
205
- "rateChanged": "Rate changed"
206
- }
207
- }
208
- },
209
- "tooltip": {
210
- "estimatedNetworkFee": "Frais de réseau estimés.",
211
- "estimatedTime": "Durée estimée d'exécution en minutes.",
212
- "notFound": {
213
- "text": "Nous n'avons pas trouvé cette page.",
214
- "title": "404"
209
+ "tooltip": {
210
+ "estimatedNetworkFee": "Frais de réseau estimés.",
211
+ "estimatedTime": "Durée estimée d'exécution en minutes.",
212
+ "notFound": {
213
+ "text": "Nous n'avons pas trouvé cette page.",
214
+ "title": "404"
215
+ },
216
+ "numberOfSteps": "Un certain nombre d'étapes de swap. Chaque étape peut contenir 1 à 3 transactions nécessitant une signature.",
217
+ "progressToNextUpdate": "Les données affichées seront actualisées automatiquement après {{value}} secondes. Cliquez ici pour une mise à jour manuelle.",
218
+ "settingsModified": "Paramètres (modifiés)"
215
219
  },
216
- "numberOfSteps": "Un certain nombre d'étapes de swap. Chaque étape peut contenir 1 à 3 transactions nécessitant une signature.",
217
- "progressToNextUpdate": "Les données affichées seront actualisées automatiquement après {{value}} secondes. Cliquez ici pour une mise à jour manuelle.",
218
- "settingsModified": "Paramètres (modifiés)"
219
- },
220
- "wallet": {
221
- "extensionNotFound": "Veuillez vous assurer que seule l'extension de navigateur {{name}} est active avant de choisir ce portefeuille."
222
- }
220
+ "wallet": {
221
+ "extensionNotFound": "Veuillez vous assurer que seule l'extension de navigateur {{name}} est active avant de choisir ce portefeuille."
222
+ }
223
223
  }