diff --git a/src/common/translations/en.json b/src/common/translations/en.json index 4434a647..b4ded94d 100644 --- a/src/common/translations/en.json +++ b/src/common/translations/en.json @@ -55,7 +55,7 @@ "transfer": { "to": "To", "memo": "Memo (optional)", - "fee": "Transaction fee", + "fee": "Transaction Fee", "custom": "Custom", "feeQuestion": "How fast do you want this done?", "Slow": "Slow", @@ -65,7 +65,11 @@ "enterMemo": "Enter a transaction memo", "slideConfirm": "Slide to Confirm", "balance": "Balance", - "unavailableAddress": "The wallet address you’ve entered is not valid" + "unavailableAddress": "The wallet address you’ve entered is not valid", + "advanced": "Advanced", + "gasPrice": "Gas Price", + "gasLimit": "Gas Limit", + "units": "Units" }, "add": { "title": "Add Wallet", diff --git a/src/common/translations/es.json b/src/common/translations/es.json index 497ba075..26b31561 100644 --- a/src/common/translations/es.json +++ b/src/common/translations/es.json @@ -65,7 +65,11 @@ "enterMemo": "Ingrese una nota de transacción", "slideConfirm": "Deslice para confirmar", "balance": "Equilibrar", - "unavailableAddress": "La dirección de la billetera que ingresó no es válida" + "unavailableAddress": "La dirección de la billetera que ingresó no es válida", + "advanced": "Avanzado", + "gasPrice": "Precio de Gas", + "gasLimit": "Límite de Gas", + "units": "Units" }, "add": { "title": "Agregar Wallet", diff --git a/src/pages/wallet/transfer.js b/src/pages/wallet/transfer.js index 7b5878ed..66abf569 100644 --- a/src/pages/wallet/transfer.js +++ b/src/pages/wallet/transfer.js @@ -1048,11 +1048,9 @@ class Transfer extends Component { onSlidingComplete={(value) => this.onGasPriceSlidingComplete(value)} /> - Gas Price: - {' '} - {customGasPrice.div(1000000000).decimalPlaces(2).toString()} - {' '} - GWEI + + {` ${customGasPrice.div(1000000000).decimalPlaces(2).toString()} GWEI`} + @@ -1069,17 +1067,17 @@ class Transfer extends Component { /> - Gas Limit: - {' '} - {customGasLimit.decimalPlaces(2).toString()} - {' '} - Units + + + {` ${customGasLimit.decimalPlaces(2).toString()} `} + - {`Fee: ${valueCoin.decimalPlaces(2).toString()} USD`} + + {` ${valueCoin.decimalPlaces(2).toString()} USD`} @@ -1110,11 +1108,8 @@ class Transfer extends Component { /> - Fee: - {' '} - {customBtcFee.toString()} - {' '} - BTC + + {` ${customBtcFee.decimalPlaces(8).toString()} BTC`} ); @@ -1262,7 +1257,7 @@ class Transfer extends Component { - +