@lifi/widget 1.20.3 → 1.22.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.
- package/App.d.ts +2 -2
- package/App.js +5 -3
- package/AppDrawer.d.ts +3 -8
- package/AppDrawer.style.d.ts +1 -1
- package/AppProvider.d.ts +2 -5
- package/AppProvider.js +2 -2
- package/AppRoutes.js +5 -0
- package/cjs/App.d.ts +2 -2
- package/cjs/App.js +5 -4
- package/cjs/AppDrawer.d.ts +3 -8
- package/cjs/AppDrawer.style.d.ts +1 -1
- package/cjs/AppProvider.d.ts +2 -5
- package/cjs/AppProvider.js +1 -1
- package/cjs/AppRoutes.js +5 -0
- package/cjs/components/ActiveSwaps/ActiveSwaps.style.d.ts +1 -1
- package/cjs/components/BottomSheet/BottomSheet.d.ts +1 -1
- package/cjs/components/ChainSelect/ChainSelect.d.ts +0 -1
- package/cjs/components/ChainSelect/ChainSelect.js +1 -3
- package/cjs/components/ChainSelect/useChainSelect.d.ts +1 -1
- package/cjs/components/Header/Header.style.d.ts +34 -1
- package/cjs/components/Header/Header.style.js +19 -1
- package/cjs/components/Header/NavigationHeader.js +4 -1
- package/cjs/components/Header/WalletHeader.js +34 -9
- package/cjs/components/Menu.d.ts +1 -0
- package/cjs/components/Menu.js +24 -0
- package/cjs/components/PoweredBy/PoweredBy.style.d.ts +1 -1
- package/cjs/components/ReverseTokensButton/ReverseTokensButton.style.d.ts +1 -1
- package/cjs/components/SelectChainAndToken.js +6 -1
- package/cjs/components/SelectTokenButton/SelectTokenButton.js +8 -6
- package/cjs/components/SelectTokenButton/SelectTokenButton.style.js +2 -1
- package/cjs/components/SendToWallet/SendToWallet.js +5 -0
- package/cjs/components/SendToWallet/SendToWallet.style.d.ts +1 -1
- package/cjs/components/SendToWallet/SendToWalletButton.js +5 -1
- package/cjs/components/Step/CircularProgress.d.ts +0 -1
- package/cjs/components/Step/StepProcess.style.d.ts +2 -2
- package/cjs/components/Step/StepTimer.js +1 -1
- package/cjs/components/StepActions/StepActions.js +6 -1
- package/cjs/components/SwapInput/FormPriceHelperText.js +4 -4
- package/cjs/components/SwapInput/SwapInput.js +5 -2
- package/cjs/components/SwapInput/SwapInput.style.d.ts +1 -1
- package/cjs/components/SwapInput/SwapInputAdornment.d.ts +0 -1
- package/cjs/components/SwapInput/SwapInputAdornment.style.d.ts +1 -1
- package/cjs/components/SwapRouteCard/SwapRouteCard.js +5 -3
- package/cjs/components/SwapRouteCard/SwapRouteCard.style.d.ts +1 -1
- package/cjs/components/SwapRouteCard/SwapRouteCardSkeleton.js +3 -1
- package/cjs/components/SwapRoutes/SwapRoutes.js +8 -3
- package/cjs/components/SwapRoutes/SwapRoutesExpanded.d.ts +0 -1
- package/cjs/components/Token/Token.js +6 -5
- package/cjs/components/TokenAvatar/TokenAvatar.d.ts +6 -1
- package/cjs/components/TokenAvatar/TokenAvatar.js +10 -3
- package/cjs/components/TokenList/TokenList.js +2 -23
- package/cjs/components/TokenList/TokenListItem.d.ts +2 -1
- package/cjs/components/TokenList/TokenListItem.js +12 -6
- package/cjs/components/TokenList/index.d.ts +1 -0
- package/cjs/components/TokenList/index.js +1 -0
- package/cjs/components/TokenList/types.d.ts +6 -0
- package/cjs/components/TokenList/useTokenSelect.d.ts +2 -0
- package/cjs/components/TokenList/useTokenSelect.js +33 -0
- package/cjs/config/version.d.ts +1 -1
- package/cjs/config/version.js +1 -1
- package/cjs/hooks/useChain.d.ts +2 -2
- package/cjs/hooks/useChains.d.ts +2 -2
- package/cjs/hooks/useExpandableVariant.js +3 -5
- package/cjs/hooks/useProcessMessage.d.ts +2 -2
- package/cjs/hooks/useSwapRoutes.js +11 -7
- package/cjs/i18n/de.json +199 -0
- package/cjs/i18n/{en/translation.json → en.json} +157 -150
- package/cjs/i18n/es.json +199 -0
- package/cjs/i18n/fr.json +199 -0
- package/cjs/i18n/index.d.ts +8 -199
- package/cjs/i18n/index.js +16 -22
- package/cjs/i18n/it.json +199 -0
- package/cjs/i18n/uk.json +200 -0
- package/cjs/i18n/zh.json +199 -0
- package/cjs/index.d.ts +6 -3
- package/cjs/index.js +3 -2
- package/cjs/pages/ActiveSwapsPage/ActiveSwapsPage.d.ts +0 -1
- package/cjs/pages/SelectChainPage/SelectChainPage.d.ts +1 -1
- package/cjs/pages/SelectChainPage/SelectChainPage.js +2 -5
- package/cjs/pages/SelectNativeTokenPage/SelectNativeTokenPage.d.ts +3 -0
- package/cjs/pages/SelectNativeTokenPage/SelectNativeTokenPage.js +21 -0
- package/cjs/pages/SelectNativeTokenPage/SelectNativeTokenPage.style.d.ts +21 -0
- package/cjs/pages/SelectNativeTokenPage/SelectNativeTokenPage.style.js +20 -0
- package/cjs/pages/SelectNativeTokenPage/index.d.ts +1 -0
- package/cjs/pages/SelectNativeTokenPage/index.js +17 -0
- package/cjs/pages/SelectTokenPage/SearchTokenInput.d.ts +0 -1
- package/cjs/pages/SelectWalletPage/SelectWalletPage.d.ts +0 -1
- package/cjs/pages/SettingsPage/AdvancedPreferences.d.ts +0 -1
- package/cjs/pages/SettingsPage/ColorSchemeButtonGroup.style.d.ts +1 -1
- package/cjs/pages/SettingsPage/GasPriceSelect.d.ts +0 -1
- package/cjs/pages/SettingsPage/LanguageSelect.d.ts +2 -0
- package/cjs/pages/SettingsPage/LanguageSelect.js +38 -0
- package/cjs/pages/SettingsPage/SettingsPage.d.ts +0 -1
- package/cjs/pages/SettingsPage/SettingsPage.js +2 -1
- package/cjs/pages/SettingsPage/ShowDestinationWallet.d.ts +1 -2
- package/cjs/pages/SettingsPage/ShowDestinationWallet.js +6 -0
- package/cjs/pages/SettingsPage/SlippageInput.d.ts +0 -1
- package/cjs/pages/SwapDetailsPage/SwapDetailsPage.js +4 -2
- package/cjs/pages/SwapHistoryPage/SwapHistoryItem.js +4 -2
- package/cjs/pages/SwapPage/StatusBottomSheet.js +3 -3
- package/cjs/pages/SwapPage/TokenValueBottomSheet.js +1 -1
- package/cjs/providers/I18nProvider/I18nProvider.d.ts +2 -0
- package/cjs/providers/I18nProvider/I18nProvider.js +62 -0
- package/cjs/providers/I18nProvider/index.d.ts +2 -0
- package/cjs/providers/I18nProvider/index.js +18 -0
- package/cjs/providers/I18nProvider/types.d.ts +16 -0
- package/cjs/providers/I18nProvider/types.js +2 -0
- package/cjs/providers/WidgetProvider/utils.d.ts +1 -1
- package/cjs/providers/WidgetProvider/utils.js +4 -4
- package/cjs/providers/index.d.ts +1 -0
- package/cjs/providers/index.js +1 -0
- package/cjs/stores/settings/types.d.ts +1 -0
- package/cjs/stores/settings/useSettingsStore.d.ts +2 -0
- package/cjs/types/widget.d.ts +30 -8
- package/cjs/types/widget.js +8 -0
- package/cjs/utils/deepMerge.d.ts +1 -0
- package/cjs/utils/deepMerge.js +18 -0
- package/cjs/utils/index.d.ts +1 -0
- package/cjs/utils/index.js +1 -0
- package/cjs/utils/navigationRoutes.d.ts +8 -7
- package/cjs/utils/navigationRoutes.js +10 -7
- package/components/ActiveSwaps/ActiveSwaps.style.d.ts +1 -1
- package/components/BottomSheet/BottomSheet.d.ts +1 -1
- package/components/ChainSelect/ChainSelect.d.ts +0 -1
- package/components/ChainSelect/ChainSelect.js +1 -3
- package/components/ChainSelect/useChainSelect.d.ts +1 -1
- package/components/Header/Header.style.d.ts +34 -1
- package/components/Header/Header.style.js +19 -1
- package/components/Header/NavigationHeader.js +4 -1
- package/components/Header/WalletHeader.js +37 -12
- package/components/Menu.d.ts +1 -0
- package/components/Menu.js +21 -0
- package/components/PoweredBy/PoweredBy.style.d.ts +1 -1
- package/components/ReverseTokensButton/ReverseTokensButton.style.d.ts +1 -1
- package/components/SelectChainAndToken.js +7 -2
- package/components/SelectTokenButton/SelectTokenButton.js +9 -7
- package/components/SelectTokenButton/SelectTokenButton.style.js +2 -1
- package/components/SendToWallet/SendToWallet.js +6 -1
- package/components/SendToWallet/SendToWallet.style.d.ts +1 -1
- package/components/SendToWallet/SendToWalletButton.js +6 -2
- package/components/Step/CircularProgress.d.ts +0 -1
- package/components/Step/StepProcess.style.d.ts +2 -2
- package/components/Step/StepTimer.js +1 -1
- package/components/StepActions/StepActions.js +6 -1
- package/components/SwapInput/FormPriceHelperText.js +4 -4
- package/components/SwapInput/SwapInput.js +6 -3
- package/components/SwapInput/SwapInput.style.d.ts +1 -1
- package/components/SwapInput/SwapInputAdornment.d.ts +0 -1
- package/components/SwapInput/SwapInputAdornment.style.d.ts +1 -1
- package/components/SwapRouteCard/SwapRouteCard.js +5 -3
- package/components/SwapRouteCard/SwapRouteCard.style.d.ts +1 -1
- package/components/SwapRouteCard/SwapRouteCardSkeleton.js +3 -1
- package/components/SwapRoutes/SwapRoutes.js +8 -3
- package/components/SwapRoutes/SwapRoutesExpanded.d.ts +0 -1
- package/components/Token/Token.js +7 -6
- package/components/TokenAvatar/TokenAvatar.d.ts +6 -1
- package/components/TokenAvatar/TokenAvatar.js +8 -2
- package/components/TokenList/TokenList.js +4 -25
- package/components/TokenList/TokenListItem.d.ts +2 -1
- package/components/TokenList/TokenListItem.js +10 -5
- package/components/TokenList/index.d.ts +1 -0
- package/components/TokenList/index.js +1 -0
- package/components/TokenList/types.d.ts +6 -0
- package/components/TokenList/useTokenSelect.d.ts +2 -0
- package/components/TokenList/useTokenSelect.js +29 -0
- package/config/version.d.ts +1 -1
- package/config/version.js +1 -1
- package/hooks/useChain.d.ts +2 -2
- package/hooks/useChains.d.ts +2 -2
- package/hooks/useExpandableVariant.js +3 -5
- package/hooks/useProcessMessage.d.ts +2 -2
- package/hooks/useSwapRoutes.js +12 -8
- package/i18n/de.json +199 -0
- package/i18n/{en/translation.json → en.json} +157 -150
- package/i18n/es.json +199 -0
- package/i18n/fr.json +199 -0
- package/i18n/index.d.ts +8 -199
- package/i18n/index.js +9 -20
- package/i18n/it.json +199 -0
- package/i18n/uk.json +200 -0
- package/i18n/zh.json +199 -0
- package/index.d.ts +6 -3
- package/index.js +3 -2
- package/package.json +18 -17
- package/pages/ActiveSwapsPage/ActiveSwapsPage.d.ts +0 -1
- package/pages/SelectChainPage/SelectChainPage.d.ts +1 -1
- package/pages/SelectChainPage/SelectChainPage.js +2 -5
- package/pages/SelectNativeTokenPage/SelectNativeTokenPage.d.ts +3 -0
- package/pages/SelectNativeTokenPage/SelectNativeTokenPage.js +17 -0
- package/pages/SelectNativeTokenPage/SelectNativeTokenPage.style.d.ts +21 -0
- package/pages/SelectNativeTokenPage/SelectNativeTokenPage.style.js +17 -0
- package/pages/SelectNativeTokenPage/index.d.ts +1 -0
- package/pages/SelectNativeTokenPage/index.js +1 -0
- package/pages/SelectTokenPage/SearchTokenInput.d.ts +0 -1
- package/pages/SelectWalletPage/SelectWalletPage.d.ts +0 -1
- package/pages/SettingsPage/AdvancedPreferences.d.ts +0 -1
- package/pages/SettingsPage/ColorSchemeButtonGroup.style.d.ts +1 -1
- package/pages/SettingsPage/GasPriceSelect.d.ts +0 -1
- package/pages/SettingsPage/LanguageSelect.d.ts +2 -0
- package/pages/SettingsPage/LanguageSelect.js +34 -0
- package/pages/SettingsPage/SettingsPage.d.ts +0 -1
- package/pages/SettingsPage/SettingsPage.js +2 -1
- package/pages/SettingsPage/ShowDestinationWallet.d.ts +1 -2
- package/pages/SettingsPage/ShowDestinationWallet.js +6 -0
- package/pages/SettingsPage/SlippageInput.d.ts +0 -1
- package/pages/SwapDetailsPage/SwapDetailsPage.js +4 -2
- package/pages/SwapHistoryPage/SwapHistoryItem.js +4 -2
- package/pages/SwapPage/StatusBottomSheet.js +3 -3
- package/pages/SwapPage/TokenValueBottomSheet.js +1 -1
- package/providers/I18nProvider/I18nProvider.d.ts +2 -0
- package/providers/I18nProvider/I18nProvider.js +58 -0
- package/providers/I18nProvider/index.d.ts +2 -0
- package/providers/I18nProvider/index.js +2 -0
- package/providers/I18nProvider/types.d.ts +16 -0
- package/providers/I18nProvider/types.js +1 -0
- package/providers/WidgetProvider/utils.d.ts +1 -1
- package/providers/WidgetProvider/utils.js +4 -4
- package/providers/index.d.ts +1 -0
- package/providers/index.js +1 -0
- package/stores/settings/types.d.ts +1 -0
- package/stores/settings/useSettingsStore.d.ts +2 -0
- package/tsconfig.cjs.tsbuildinfo +1 -1
- package/types/widget.d.ts +30 -8
- package/types/widget.js +7 -1
- package/utils/deepMerge.d.ts +1 -0
- package/utils/deepMerge.js +14 -0
- package/utils/index.d.ts +1 -0
- package/utils/index.js +1 -0
- package/utils/navigationRoutes.d.ts +8 -7
- package/utils/navigationRoutes.js +10 -7
package/i18n/es.json
ADDED
|
@@ -0,0 +1,199 @@
|
|
|
1
|
+
{
|
|
2
|
+
"button": {
|
|
3
|
+
"auto": "Auto",
|
|
4
|
+
"cancel": "Cancelar",
|
|
5
|
+
"connectWallet": "Conectar billetera",
|
|
6
|
+
"contactSupport": "Contactar soporte",
|
|
7
|
+
"continue": "Continuar",
|
|
8
|
+
"copyAddress": "Copiar dirección",
|
|
9
|
+
"dark": "Oscuro",
|
|
10
|
+
"delete": "Eliminar",
|
|
11
|
+
"disconnectWallet": "Desconectar la billetera",
|
|
12
|
+
"done": "Hecho",
|
|
13
|
+
"hide": "Esconder",
|
|
14
|
+
"lifiSwap": "LI.FI Swap",
|
|
15
|
+
"light": "Luz",
|
|
16
|
+
"max": "máximo",
|
|
17
|
+
"ok": "Ok",
|
|
18
|
+
"okay": "Bien",
|
|
19
|
+
"removeSwap": "Eliminar swap",
|
|
20
|
+
"restartSwap": "Reiniciar swap",
|
|
21
|
+
"reviewSwap": "Revisar swap",
|
|
22
|
+
"seeDetails": "Ver detalles",
|
|
23
|
+
"showAll": "Mostrar todo",
|
|
24
|
+
"startSwap": "Iniciar swap",
|
|
25
|
+
"swap": "Swap",
|
|
26
|
+
"tryAgain": "Intentar otra vez"
|
|
27
|
+
},
|
|
28
|
+
"format": {
|
|
29
|
+
"currency": "{{value, currency(currency: USD)}}",
|
|
30
|
+
"number": "{{value, number(maximumFractionDigits: 4)}}"
|
|
31
|
+
},
|
|
32
|
+
"header": {
|
|
33
|
+
"activeSwaps": "Swaps activos",
|
|
34
|
+
"from": "Intercambiar de",
|
|
35
|
+
"routes": "Usted obtiene",
|
|
36
|
+
"selectChain": "Seleccione la cadena",
|
|
37
|
+
"selectWallet": "Seleccione su billetera",
|
|
38
|
+
"settings": "Ajustes",
|
|
39
|
+
"swap": "Swap",
|
|
40
|
+
"swapDetails": "Detalles del swap",
|
|
41
|
+
"swapHistory": "Historial de intercambios",
|
|
42
|
+
"to": "Intercambiar a",
|
|
43
|
+
"walletConnected": "Billetera conectada"
|
|
44
|
+
},
|
|
45
|
+
"language": {
|
|
46
|
+
"name": "Español",
|
|
47
|
+
"title": "Idioma"
|
|
48
|
+
},
|
|
49
|
+
"settings": {
|
|
50
|
+
"advancedPreferences": "Preferencias avanzadas",
|
|
51
|
+
"enabledBridges": "Puentes habilitados",
|
|
52
|
+
"enabledExchanges": "Intercambios habilitados",
|
|
53
|
+
"gasPrice": {
|
|
54
|
+
"fast": "Rápido",
|
|
55
|
+
"normal": "Normal",
|
|
56
|
+
"slow": "Lento",
|
|
57
|
+
"title": "Precio de gas"
|
|
58
|
+
},
|
|
59
|
+
"resetToDefault": "Restablecer los valores originales",
|
|
60
|
+
"routePriority": "Prioridad de ruta",
|
|
61
|
+
"selectEnabledBridges": "Seleccione los puentes habilitados",
|
|
62
|
+
"selectEnabledExchanges": "Seleccione intercambios habilitados",
|
|
63
|
+
"showDestinationWallet": "Mostrar billetera de destino",
|
|
64
|
+
"slippage": "Diferencial"
|
|
65
|
+
},
|
|
66
|
+
"swap": {
|
|
67
|
+
"crossStepDetails": "Mover fondos de {{from}} {{to}} {{tool}}",
|
|
68
|
+
"error": {
|
|
69
|
+
"message": {
|
|
70
|
+
"slippageTooLarge": "El diferencial es mayor que el limite definido. Por favor, solicite una nueva ruta para obtener una nueva cotización",
|
|
71
|
+
"transactionFailed": "Por favor consulte el explorador de bloques para obtener mas información",
|
|
72
|
+
"transactionNotSent": "La transacción no fue enviada, sus fondos aún están en su billetera ({{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} en {{chainName}}).",
|
|
73
|
+
"transactionRejected": "Se requiere su firma para completar la transacción. {{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} en {{chainName}} permanecen en su billetera."
|
|
74
|
+
},
|
|
75
|
+
"title": {
|
|
76
|
+
"chainSwitch": "Se requiere cambiar cadena.",
|
|
77
|
+
"failed": "Intercambio ha fallado",
|
|
78
|
+
"slippageTooLarge": "Diferencial demasiado grande.",
|
|
79
|
+
"transactionFailed": "La transacción ha fallado.",
|
|
80
|
+
"transactionRejected": "Firma requerida.",
|
|
81
|
+
"transactionUnderpriced": "La transacción está subvaluada.",
|
|
82
|
+
"transactionUnprepared": "No se puede preparar la transacción.",
|
|
83
|
+
"unknown": "Algo salió mal.",
|
|
84
|
+
"walletAddressInvalid": "La dirección de la billetera no es válida.",
|
|
85
|
+
"walletEnsAddressInvalid": "La dirección de la billetera no es válida o la red no es compatible con ENS."
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"estimatedTime": "{{value}}m",
|
|
89
|
+
"featuredTokens": "Tokens destacados",
|
|
90
|
+
"from": "Desde",
|
|
91
|
+
"fromAmount": "Usted paga",
|
|
92
|
+
"gasCost": "Costo de gas",
|
|
93
|
+
"inProgress": "en progreso",
|
|
94
|
+
"info": {
|
|
95
|
+
"message": {
|
|
96
|
+
"emptyActiveSwaps": "Los intercambios en curso aparecerán aquí. Una vez completado, encuéntrelos en el historial de intercambio.",
|
|
97
|
+
"emptySwapHistory": "El historial de intercambio solo se almacena localmente y se eliminará si borra los datos de su navegador.",
|
|
98
|
+
"emptyTokenList": "No pudimos encontrar tokens en la cadena {{chainName}} o no tienes ninguno. Por favor intente buscar de nuevo o elija otra cadena.",
|
|
99
|
+
"routeNotFound": "Pruebe con otra combinación de tokens."
|
|
100
|
+
},
|
|
101
|
+
"title": {
|
|
102
|
+
"emptyActiveSwaps": "No hay intercambios activos",
|
|
103
|
+
"emptySwapHistory": "No hay intercambios recientes",
|
|
104
|
+
"routeNotFound": "No hay rutas disponibles"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"otherTokens": "Otros tokens",
|
|
108
|
+
"process": {
|
|
109
|
+
"crossChain": {
|
|
110
|
+
"actionRequired": "Por favor firme la transacción.",
|
|
111
|
+
"done": "Transacción aprobada.",
|
|
112
|
+
"pending": "Esperando transacción.",
|
|
113
|
+
"started": "Preparando transacción."
|
|
114
|
+
},
|
|
115
|
+
"receivingChain": {
|
|
116
|
+
"done": "Fondos recibidos.",
|
|
117
|
+
"pending": "Esperando cadena de recepción."
|
|
118
|
+
},
|
|
119
|
+
"swap": {
|
|
120
|
+
"actionRequired": "Por favor firme la transacción.",
|
|
121
|
+
"done": "Swap completado.",
|
|
122
|
+
"pending": "Intercambiando",
|
|
123
|
+
"started": "Preparando swap"
|
|
124
|
+
},
|
|
125
|
+
"switchChain": {
|
|
126
|
+
"actionRequired": "Cambiar cadenas es requerido",
|
|
127
|
+
"done": "Cadena cambiada con éxito."
|
|
128
|
+
},
|
|
129
|
+
"tokenAllowance": {
|
|
130
|
+
"done": "Asignación de tokens aprobada.",
|
|
131
|
+
"pending": "Esperando la asignación de tokens.",
|
|
132
|
+
"started": "Configurando asignación de tokens."
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"receiving": "Recibiendo",
|
|
136
|
+
"routes": "Usted obtiene",
|
|
137
|
+
"selectChain": "Cadena",
|
|
138
|
+
"selectChainAndToken": "Seleccione cadena y token",
|
|
139
|
+
"selectToken": "Token",
|
|
140
|
+
"sendToWallet": "Enviar a una billetera diferente",
|
|
141
|
+
"stepBridge": "Cruzar",
|
|
142
|
+
"stepSwap": "Swap",
|
|
143
|
+
"stepSwapAndBridge": "Swap y cruzar",
|
|
144
|
+
"success": {
|
|
145
|
+
"message": {
|
|
146
|
+
"swapSuccessful": "Ahora hay {{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} en la billetera {{walletAddress}} en la cadena {{chainName}}."
|
|
147
|
+
},
|
|
148
|
+
"title": {
|
|
149
|
+
"swapSuccessful": "Intercambio exitoso"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"supportId": "ID de soporte",
|
|
153
|
+
"swapStepDetails": "Intercambiar en {{chain}} a través de {{tool}}",
|
|
154
|
+
"swapping": "Intercambiando",
|
|
155
|
+
"tags": {
|
|
156
|
+
"ALTERNATIVE": "ALTERNATIVO",
|
|
157
|
+
"CHEAPEST": "BARATO",
|
|
158
|
+
"FASTEST": "RÁPIDO",
|
|
159
|
+
"RECOMMENDED": "RECOMENDADO",
|
|
160
|
+
"SAFEST": "SEGURO"
|
|
161
|
+
},
|
|
162
|
+
"to": "A",
|
|
163
|
+
"tokenOnChain": "{{tokenSymbol}} en {{chainName}}",
|
|
164
|
+
"tokenOnChainAmount": "{{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} on {{chainName}}",
|
|
165
|
+
"tokenSearch": "Busque su token",
|
|
166
|
+
"valueLoss": "Valor perdido",
|
|
167
|
+
"walletAddressOrEns": "Dirección de billetera o nombre ENS",
|
|
168
|
+
"warning": {
|
|
169
|
+
"message": {
|
|
170
|
+
"deleteActiveSwaps": "Los intercambios activos solo se almacenan localmente y no se pueden recuperar si los elimina.",
|
|
171
|
+
"deleteSwapHistory": "El historial de intercambio solo se almacena localmente y no se puede recuperar si lo elimina.",
|
|
172
|
+
"highValueLoss": "El valor de los tokens recibidos es significativamente menor que los tokens intercambiados y el costo de la transacción.",
|
|
173
|
+
"insufficientFunds": "No tiene fondos suficientes para ejecutar el intercambio.",
|
|
174
|
+
"insufficientGas": "Debes agregar al menos:"
|
|
175
|
+
},
|
|
176
|
+
"title": {
|
|
177
|
+
"deleteActiveSwaps": "¿Eliminar todos los intercambios activos?",
|
|
178
|
+
"deleteSwap": "¿Eliminar este intercambio?",
|
|
179
|
+
"deleteSwapHistory": "¿Eliminar el historial de intercambio?",
|
|
180
|
+
"highValueLoss": "Pérdida de alto valor",
|
|
181
|
+
"insufficientGas": "Gas insuficiente"
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"tooltip": {
|
|
186
|
+
"estimatedNetworkFee": "Tarifa de red estimada.",
|
|
187
|
+
"estimatedTime": "Tiempo estimado de ejecución del swap en minutos.",
|
|
188
|
+
"notFound": {
|
|
189
|
+
"text": "No pudimos encontrar esta página.",
|
|
190
|
+
"title": "404"
|
|
191
|
+
},
|
|
192
|
+
"numberOfSteps": "Una serie de pasos de intercambio. Cada paso puede contener 1-2 transacciones que requieren una firma.",
|
|
193
|
+
"progressToNextUpdate": "Los datos mostrados se actualizarán automáticamente después de {{value}} segundos. Haga clic aquí para actualizar manualmente.",
|
|
194
|
+
"settingsModified": "Ajustes (modificados)"
|
|
195
|
+
},
|
|
196
|
+
"wallet": {
|
|
197
|
+
"extensionNotFound": "Por favor, asegúrese de que sólo la extensión {{name}} del navegador esta activa antes de elegir esta billetera."
|
|
198
|
+
}
|
|
199
|
+
}
|
package/i18n/fr.json
ADDED
|
@@ -0,0 +1,199 @@
|
|
|
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
|
+
"hide": "Cacher",
|
|
14
|
+
"lifiSwap": "LI.FI Swap",
|
|
15
|
+
"light": "Clair",
|
|
16
|
+
"max": "max",
|
|
17
|
+
"ok": "Ok",
|
|
18
|
+
"okay": "D'accord",
|
|
19
|
+
"removeSwap": "Supprimer l'échange",
|
|
20
|
+
"restartSwap": "Redémarrer l'échange",
|
|
21
|
+
"reviewSwap": "Revue de l'échange",
|
|
22
|
+
"seeDetails": "Voir les détails",
|
|
23
|
+
"showAll": "Afficher tous",
|
|
24
|
+
"startSwap": "Échange de départ",
|
|
25
|
+
"swap": "Échanger",
|
|
26
|
+
"tryAgain": "Réessayer"
|
|
27
|
+
},
|
|
28
|
+
"format": {
|
|
29
|
+
"currency": "{{value, currency(currency: USD)}}",
|
|
30
|
+
"number": "{{value, number(maximumFractionDigits: 4)}}"
|
|
31
|
+
},
|
|
32
|
+
"header": {
|
|
33
|
+
"activeSwaps": "Échange actifs",
|
|
34
|
+
"from": "Échanger de",
|
|
35
|
+
"routes": "Vous obtenez",
|
|
36
|
+
"selectChain": "Sélectionner la chaîne",
|
|
37
|
+
"selectWallet": "Sélectionnez votre portefeuille",
|
|
38
|
+
"settings": "Paramètres",
|
|
39
|
+
"swap": "Échanger",
|
|
40
|
+
"swapDetails": "Détails de l'échange",
|
|
41
|
+
"swapHistory": "Historique des échanges",
|
|
42
|
+
"to": "Échanger pour",
|
|
43
|
+
"walletConnected": "Portefeuille connecté"
|
|
44
|
+
},
|
|
45
|
+
"language": {
|
|
46
|
+
"name": "Français",
|
|
47
|
+
"title": "Langue"
|
|
48
|
+
},
|
|
49
|
+
"settings": {
|
|
50
|
+
"advancedPreferences": "Préférences avancées",
|
|
51
|
+
"enabledBridges": "Bridges activés",
|
|
52
|
+
"enabledExchanges": "Échanges activés",
|
|
53
|
+
"gasPrice": {
|
|
54
|
+
"fast": "Rapide",
|
|
55
|
+
"normal": "Normal",
|
|
56
|
+
"slow": "Lent",
|
|
57
|
+
"title": "Prix du gaz"
|
|
58
|
+
},
|
|
59
|
+
"resetToDefault": "Réinitialisation des valeurs par défaut",
|
|
60
|
+
"routePriority": "Priorité de l'itinéraire",
|
|
61
|
+
"selectEnabledBridges": "Sélectionner les bridges activés",
|
|
62
|
+
"selectEnabledExchanges": "Sélectionner les échanges activés",
|
|
63
|
+
"showDestinationWallet": "Afficher le portefeuille de destination",
|
|
64
|
+
"slippage": "Effet de glissement"
|
|
65
|
+
},
|
|
66
|
+
"swap": {
|
|
67
|
+
"crossStepDetails": "Passer de {{de}} à {{de}} via {{outil}}",
|
|
68
|
+
"error": {
|
|
69
|
+
"message": {
|
|
70
|
+
"slippageTooLarge": "Le glissement est plus important que le seuil défini. Veuillez demander un nouvel itinéraire pour obtenir un nouveau devis.",
|
|
71
|
+
"transactionFailed": "Veuillez consulter l'explorateur de blockchain pour plus d'informations.",
|
|
72
|
+
"transactionNotSent": "La transaction n'a pas été envoyée, vos fonds sont toujours dans votre portefeuille ({{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} sur {{chainName}}).",
|
|
73
|
+
"transactionRejected": "Votre signature est requise pour compléter la transaction. Le {{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} sur {{chainName}} restent dans votre portefeuille."
|
|
74
|
+
},
|
|
75
|
+
"title": {
|
|
76
|
+
"chainSwitch": "Changement de chaîne nécessaire.",
|
|
77
|
+
"failed": "L'échange a échoué.",
|
|
78
|
+
"slippageTooLarge": "Dérapage trop important.",
|
|
79
|
+
"transactionFailed": "La transaction a échoué.",
|
|
80
|
+
"transactionRejected": "Signature requise.",
|
|
81
|
+
"transactionUnderpriced": "La transaction est sous-évaluée.",
|
|
82
|
+
"transactionUnprepared": "Impossible de préparer la transaction.",
|
|
83
|
+
"unknown": "Il y a eu un problème.",
|
|
84
|
+
"walletAddressInvalid": "L'adresse du portefeuille n'est pas valide.",
|
|
85
|
+
"walletEnsAddressInvalid": "L'adresse du portefeuille n'est pas valide ou le réseau ne supporte pas l'ENS."
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"estimatedTime": "{{value}}m",
|
|
89
|
+
"featuredTokens": "Jetons en vedette",
|
|
90
|
+
"from": "De",
|
|
91
|
+
"fromAmount": "Vous payez",
|
|
92
|
+
"gasCost": "Coût du gaz",
|
|
93
|
+
"inProgress": "en cours",
|
|
94
|
+
"info": {
|
|
95
|
+
"message": {
|
|
96
|
+
"emptyActiveSwaps": "Les échanges en cours apparaissent ici. Une fois terminés, vous les trouverez dans l'historique des échanges.",
|
|
97
|
+
"emptySwapHistory": "L'historique des échanges n'est stocké que localement et sera supprimé si vous effacez les données de votre navigateur.",
|
|
98
|
+
"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.",
|
|
99
|
+
"routeNotFound": "Essayez une autre combinaison de jetons."
|
|
100
|
+
},
|
|
101
|
+
"title": {
|
|
102
|
+
"emptyActiveSwaps": "Pas de swaps actifs",
|
|
103
|
+
"emptySwapHistory": "Aucun échange récent",
|
|
104
|
+
"routeNotFound": "Aucun itinéraire disponible"
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
"otherTokens": "Autres jetons",
|
|
108
|
+
"process": {
|
|
109
|
+
"crossChain": {
|
|
110
|
+
"actionRequired": "Veuillez signer la transaction.",
|
|
111
|
+
"done": "Transaction approuvée.",
|
|
112
|
+
"pending": "En attendant la transaction.",
|
|
113
|
+
"started": "Préparation de la transaction."
|
|
114
|
+
},
|
|
115
|
+
"receivingChain": {
|
|
116
|
+
"done": "Fonds reçus.",
|
|
117
|
+
"pending": "En attente de la chaîne de réception."
|
|
118
|
+
},
|
|
119
|
+
"swap": {
|
|
120
|
+
"actionRequired": "Veuillez signer la transaction.",
|
|
121
|
+
"done": "Échange terminé.",
|
|
122
|
+
"pending": "Échange en cours.",
|
|
123
|
+
"started": "Préparation de l'échange."
|
|
124
|
+
},
|
|
125
|
+
"switchChain": {
|
|
126
|
+
"actionRequired": "Changement de chaîne requis.",
|
|
127
|
+
"done": "La chaîne a été commutée avec succès."
|
|
128
|
+
},
|
|
129
|
+
"tokenAllowance": {
|
|
130
|
+
"done": "L'allocation de jetons est approuvée.",
|
|
131
|
+
"pending": "En attente de l'allocation.",
|
|
132
|
+
"started": "Fixation de l'allocation de jeton."
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"receiving": "Réception",
|
|
136
|
+
"routes": "Vous obtenez",
|
|
137
|
+
"selectChain": "Chaîne",
|
|
138
|
+
"selectChainAndToken": "Sélectionnez la chaîne et le jeton",
|
|
139
|
+
"selectToken": "Jeton",
|
|
140
|
+
"sendToWallet": "Envoyer vers un autre portefeuille",
|
|
141
|
+
"stepBridge": "Bridge",
|
|
142
|
+
"stepSwap": "Échanger",
|
|
143
|
+
"stepSwapAndBridge": "Échange et Bridge",
|
|
144
|
+
"success": {
|
|
145
|
+
"message": {
|
|
146
|
+
"swapSuccessful": "Il y a maintenant {{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} dans le portefeuille {{walletAddress}} de la chaîne {{chainName}}."
|
|
147
|
+
},
|
|
148
|
+
"title": {
|
|
149
|
+
"swapSuccessful": "Échange réussi"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"supportId": "ID de support",
|
|
153
|
+
"swapStepDetails": "Echanger sur {{chaîne}} via {{outil}}.",
|
|
154
|
+
"swapping": "Échanger",
|
|
155
|
+
"tags": {
|
|
156
|
+
"ALTERNATIVE": "ALTERNATIVE",
|
|
157
|
+
"CHEAPEST": "PETIT PRIX",
|
|
158
|
+
"FASTEST": "RAPIDE",
|
|
159
|
+
"RECOMMENDED": "RECOMMANDÉ",
|
|
160
|
+
"SAFEST": "SÛR"
|
|
161
|
+
},
|
|
162
|
+
"to": "À",
|
|
163
|
+
"tokenOnChain": "{{tokenSymbol}} sur {{chainName}}",
|
|
164
|
+
"tokenOnChainAmount": "{{amount, number(maximumFractionDigits: 4)}} {{tokenSymbol}} sur {{chainName}}",
|
|
165
|
+
"tokenSearch": "Recherchez votre jeton",
|
|
166
|
+
"valueLoss": "Perte de valeur",
|
|
167
|
+
"walletAddressOrEns": "Adresse du portefeuille ou nom de l'ENS",
|
|
168
|
+
"warning": {
|
|
169
|
+
"message": {
|
|
170
|
+
"deleteActiveSwaps": "Les échanges actifs sont uniquement stockés localement et ne peuvent pas être récupérés si vous les supprimez.",
|
|
171
|
+
"deleteSwapHistory": "L'historique des échanges est uniquement stocké localement et ne peut pas être récupéré si vous le supprimez.",
|
|
172
|
+
"highValueLoss": "La valeur des jetons reçus est nettement inférieure à celle des jetons échangés et au coût de la transaction.",
|
|
173
|
+
"insufficientFunds": "Vous n'avez pas assez de fonds pour exécuter l'échange.",
|
|
174
|
+
"insufficientGas": "Vous devez ajouter au moins :"
|
|
175
|
+
},
|
|
176
|
+
"title": {
|
|
177
|
+
"deleteActiveSwaps": "Supprimer tous les échanges actifs ?",
|
|
178
|
+
"deleteSwap": "Supprimer cet échange ?",
|
|
179
|
+
"deleteSwapHistory": "Supprimer l'historique des échanges ?",
|
|
180
|
+
"highValueLoss": "Perte de valeur élevée",
|
|
181
|
+
"insufficientGas": "Gaz insuffisant"
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"tooltip": {
|
|
186
|
+
"estimatedNetworkFee": "Frais de réseau estimés.",
|
|
187
|
+
"estimatedTime": "Durée estimée d'exécution en minutes.",
|
|
188
|
+
"notFound": {
|
|
189
|
+
"text": "Nous n'avons pas trouvé cette page.",
|
|
190
|
+
"title": "404"
|
|
191
|
+
},
|
|
192
|
+
"numberOfSteps": "Un certain nombre d'étapes de swap. Chaque étape peut contenir 1 à 3 transactions nécessitant une signature.",
|
|
193
|
+
"progressToNextUpdate": "Les données affichées seront actualisées automatiquement après {{value}} secondes. Cliquez ici pour une mise à jour manuelle.",
|
|
194
|
+
"settingsModified": "Paramètres (modifiés)"
|
|
195
|
+
},
|
|
196
|
+
"wallet": {
|
|
197
|
+
"extensionNotFound": "Veuillez vous assurer que seule l'extension de navigateur {{name}} est active avant de choisir ce portefeuille."
|
|
198
|
+
}
|
|
199
|
+
}
|
package/i18n/index.d.ts
CHANGED
|
@@ -1,199 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
swap: string;
|
|
10
|
-
from: string;
|
|
11
|
-
to: string;
|
|
12
|
-
selectChain: string;
|
|
13
|
-
settings: string;
|
|
14
|
-
routes: string;
|
|
15
|
-
swapHistory: string;
|
|
16
|
-
swapDetails: string;
|
|
17
|
-
activeSwaps: string;
|
|
18
|
-
};
|
|
19
|
-
button: {
|
|
20
|
-
connectWallet: string;
|
|
21
|
-
swap: string;
|
|
22
|
-
reviewSwap: string;
|
|
23
|
-
startSwap: string;
|
|
24
|
-
restartSwap: string;
|
|
25
|
-
removeSwap: string;
|
|
26
|
-
done: string;
|
|
27
|
-
okay: string;
|
|
28
|
-
continue: string;
|
|
29
|
-
seeDetails: string;
|
|
30
|
-
tryAgain: string;
|
|
31
|
-
light: string;
|
|
32
|
-
dark: string;
|
|
33
|
-
auto: string;
|
|
34
|
-
ok: string;
|
|
35
|
-
cancel: string;
|
|
36
|
-
delete: string;
|
|
37
|
-
hide: string;
|
|
38
|
-
max: string;
|
|
39
|
-
showAll: string;
|
|
40
|
-
contactSupport: string;
|
|
41
|
-
lifiSwap: string;
|
|
42
|
-
};
|
|
43
|
-
swap: {
|
|
44
|
-
from: string;
|
|
45
|
-
to: string;
|
|
46
|
-
amount: string;
|
|
47
|
-
maxAmount: string;
|
|
48
|
-
routes: string;
|
|
49
|
-
approximateCurrency: string;
|
|
50
|
-
currency: string;
|
|
51
|
-
tokenSearch: string;
|
|
52
|
-
selectChain: string;
|
|
53
|
-
selectToken: string;
|
|
54
|
-
selectChainAndToken: string;
|
|
55
|
-
featuredTokens: string;
|
|
56
|
-
otherTokens: string;
|
|
57
|
-
inProgress: string;
|
|
58
|
-
stepSwap: string;
|
|
59
|
-
stepBridge: string;
|
|
60
|
-
stepSwapAndBridge: string;
|
|
61
|
-
estimatedTime: string;
|
|
62
|
-
crossStepDetails: string;
|
|
63
|
-
swapStepDetails: string;
|
|
64
|
-
tokenOnChain: string;
|
|
65
|
-
tokenOnChainAmount: string;
|
|
66
|
-
supportId: string;
|
|
67
|
-
sendToWallet: string;
|
|
68
|
-
walletAddressOrEns: string;
|
|
69
|
-
swapping: string;
|
|
70
|
-
gasCost: string;
|
|
71
|
-
receiving: string;
|
|
72
|
-
valueLoss: string;
|
|
73
|
-
tags: {
|
|
74
|
-
RECOMMENDED: string;
|
|
75
|
-
FASTEST: string;
|
|
76
|
-
CHEAPEST: string;
|
|
77
|
-
SAFEST: string;
|
|
78
|
-
ALTERNATIVE: string;
|
|
79
|
-
};
|
|
80
|
-
success: {
|
|
81
|
-
title: {
|
|
82
|
-
fundsReceived: string;
|
|
83
|
-
};
|
|
84
|
-
message: {
|
|
85
|
-
fundsReceived: string;
|
|
86
|
-
};
|
|
87
|
-
};
|
|
88
|
-
info: {
|
|
89
|
-
title: {
|
|
90
|
-
routeNotFound: string;
|
|
91
|
-
emptySwapHistory: string;
|
|
92
|
-
emptyActiveSwaps: string;
|
|
93
|
-
};
|
|
94
|
-
message: {
|
|
95
|
-
routeNotFound: string;
|
|
96
|
-
emptySwapHistory: string;
|
|
97
|
-
emptyActiveSwaps: string;
|
|
98
|
-
emptyTokenList: string;
|
|
99
|
-
};
|
|
100
|
-
};
|
|
101
|
-
warning: {
|
|
102
|
-
title: {
|
|
103
|
-
insufficientGas: string;
|
|
104
|
-
deleteSwap: string;
|
|
105
|
-
deleteSwapHistory: string;
|
|
106
|
-
deleteActiveSwaps: string;
|
|
107
|
-
highValueLoss: string;
|
|
108
|
-
};
|
|
109
|
-
message: {
|
|
110
|
-
insufficientFunds: string;
|
|
111
|
-
insufficientGas: string;
|
|
112
|
-
deleteSwapHistory: string;
|
|
113
|
-
deleteActiveSwaps: string;
|
|
114
|
-
highValueLoss: string;
|
|
115
|
-
};
|
|
116
|
-
};
|
|
117
|
-
error: {
|
|
118
|
-
title: {
|
|
119
|
-
failed: string;
|
|
120
|
-
chainSwitch: string;
|
|
121
|
-
transactionFailed: string;
|
|
122
|
-
transactionUnderpriced: string;
|
|
123
|
-
transactionUnprepared: string;
|
|
124
|
-
transactionRejected: string;
|
|
125
|
-
unknown: string;
|
|
126
|
-
slippageTooLarge: string;
|
|
127
|
-
walletAddressInvalid: string;
|
|
128
|
-
walletEnsAddressInvalid: string;
|
|
129
|
-
};
|
|
130
|
-
message: {
|
|
131
|
-
transactionRejected: string;
|
|
132
|
-
transactionFailed: string;
|
|
133
|
-
transactionNotSent: string;
|
|
134
|
-
slippageTooLarge: string;
|
|
135
|
-
};
|
|
136
|
-
};
|
|
137
|
-
process: {
|
|
138
|
-
tokenAllowance: {
|
|
139
|
-
started: string;
|
|
140
|
-
pending: string;
|
|
141
|
-
done: string;
|
|
142
|
-
};
|
|
143
|
-
switchChain: {
|
|
144
|
-
actionRequired: string;
|
|
145
|
-
done: string;
|
|
146
|
-
};
|
|
147
|
-
swap: {
|
|
148
|
-
started: string;
|
|
149
|
-
actionRequired: string;
|
|
150
|
-
pending: string;
|
|
151
|
-
done: string;
|
|
152
|
-
};
|
|
153
|
-
crossChain: {
|
|
154
|
-
started: string;
|
|
155
|
-
actionRequired: string;
|
|
156
|
-
pending: string;
|
|
157
|
-
done: string;
|
|
158
|
-
};
|
|
159
|
-
receivingChain: {
|
|
160
|
-
pending: string;
|
|
161
|
-
done: string;
|
|
162
|
-
};
|
|
163
|
-
};
|
|
164
|
-
};
|
|
165
|
-
settings: {
|
|
166
|
-
routePriority: string;
|
|
167
|
-
slippage: string;
|
|
168
|
-
gasPrice: {
|
|
169
|
-
title: string;
|
|
170
|
-
slow: string;
|
|
171
|
-
normal: string;
|
|
172
|
-
fast: string;
|
|
173
|
-
};
|
|
174
|
-
advancedPreferences: string;
|
|
175
|
-
showDestinationWallet: string;
|
|
176
|
-
enabledBridges: string;
|
|
177
|
-
selectEnabledBridges: string;
|
|
178
|
-
enabledExchanges: string;
|
|
179
|
-
selectEnabledExchanges: string;
|
|
180
|
-
resetToDefault: string;
|
|
181
|
-
};
|
|
182
|
-
wallet: {
|
|
183
|
-
extensionNotFound: string;
|
|
184
|
-
};
|
|
185
|
-
tooltip: {
|
|
186
|
-
notFound: {
|
|
187
|
-
title: string;
|
|
188
|
-
text: string;
|
|
189
|
-
};
|
|
190
|
-
progressToNextUpdate: string;
|
|
191
|
-
numberOfSteps: string;
|
|
192
|
-
estimatedTime: string;
|
|
193
|
-
estimatedNetworkFee: string;
|
|
194
|
-
settingsModified: string;
|
|
195
|
-
};
|
|
196
|
-
};
|
|
197
|
-
};
|
|
198
|
-
};
|
|
199
|
-
export declare function configureReactI18next(): void;
|
|
1
|
+
import de from './de.json';
|
|
2
|
+
import en from './en.json';
|
|
3
|
+
import es from './es.json';
|
|
4
|
+
import fr from './fr.json';
|
|
5
|
+
import it from './it.json';
|
|
6
|
+
import uk from './uk.json';
|
|
7
|
+
import zh from './zh.json';
|
|
8
|
+
export { de, en, es, fr, it, uk, zh };
|
package/i18n/index.js
CHANGED
|
@@ -1,20 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
};
|
|
10
|
-
export function configureReactI18next() {
|
|
11
|
-
i18n.use(initReactI18next).init({
|
|
12
|
-
lng: 'en',
|
|
13
|
-
fallbackLng: 'en',
|
|
14
|
-
lowerCaseLng: true,
|
|
15
|
-
interpolation: {
|
|
16
|
-
escapeValue: false,
|
|
17
|
-
},
|
|
18
|
-
resources,
|
|
19
|
-
});
|
|
20
|
-
}
|
|
1
|
+
/* eslint-disable camelcase */
|
|
2
|
+
import de from './de.json';
|
|
3
|
+
import en from './en.json';
|
|
4
|
+
import es from './es.json';
|
|
5
|
+
import fr from './fr.json';
|
|
6
|
+
import it from './it.json';
|
|
7
|
+
import uk from './uk.json';
|
|
8
|
+
import zh from './zh.json';
|
|
9
|
+
export { de, en, es, fr, it, uk, zh };
|