mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Ensure that the approval fee in the swaps custom gas modal is in network specific currency (#10763)
This commit is contained in:
parent
4080ed63a4
commit
be0b8a11d8
@ -143,10 +143,6 @@
|
||||
"amount": {
|
||||
"message": "Amount"
|
||||
},
|
||||
"amountInEth": {
|
||||
"message": "$1 ETH",
|
||||
"description": "Displays an eth amount to the user. $1 is a decimal number"
|
||||
},
|
||||
"amountWithColon": {
|
||||
"message": "Amount:"
|
||||
},
|
||||
|
@ -126,10 +126,6 @@
|
||||
"amount": {
|
||||
"message": "Cantidad"
|
||||
},
|
||||
"amountInEth": {
|
||||
"message": "$1 ETH",
|
||||
"description": "Displays an eth amount to the user. $1 is a decimal number"
|
||||
},
|
||||
"amountWithColon": {
|
||||
"message": "Cantidad:"
|
||||
},
|
||||
|
@ -126,10 +126,6 @@
|
||||
"amount": {
|
||||
"message": "Monto"
|
||||
},
|
||||
"amountInEth": {
|
||||
"message": "$1 ETH",
|
||||
"description": "Displays an eth amount to the user. $1 is a decimal number"
|
||||
},
|
||||
"amountWithColon": {
|
||||
"message": "Monto:"
|
||||
},
|
||||
|
@ -120,10 +120,6 @@
|
||||
"amount": {
|
||||
"message": "राशि"
|
||||
},
|
||||
"amountInEth": {
|
||||
"message": "$1 ETH",
|
||||
"description": "Displays an eth amount to the user. $1 is a decimal number"
|
||||
},
|
||||
"amountWithColon": {
|
||||
"message": "राशि:"
|
||||
},
|
||||
|
@ -120,10 +120,6 @@
|
||||
"amount": {
|
||||
"message": "Jumlah"
|
||||
},
|
||||
"amountInEth": {
|
||||
"message": "$1 ETH",
|
||||
"description": "Displays an eth amount to the user. $1 is a decimal number"
|
||||
},
|
||||
"amountWithColon": {
|
||||
"message": "Jumlah:"
|
||||
},
|
||||
|
@ -126,10 +126,6 @@
|
||||
"amount": {
|
||||
"message": "Importo"
|
||||
},
|
||||
"amountInEth": {
|
||||
"message": "$1 ETH",
|
||||
"description": "Displays an eth amount to the user. $1 is a decimal number"
|
||||
},
|
||||
"amountWithColon": {
|
||||
"message": "Importo:"
|
||||
},
|
||||
|
@ -126,10 +126,6 @@
|
||||
"amount": {
|
||||
"message": "金額"
|
||||
},
|
||||
"amountInEth": {
|
||||
"message": "$1 ETH",
|
||||
"description": "Displays an eth amount to the user. $1 is a decimal number"
|
||||
},
|
||||
"amountWithColon": {
|
||||
"message": "金額:"
|
||||
},
|
||||
|
@ -120,10 +120,6 @@
|
||||
"amount": {
|
||||
"message": "금액"
|
||||
},
|
||||
"amountInEth": {
|
||||
"message": "$1 ETH",
|
||||
"description": "Displays an eth amount to the user. $1 is a decimal number"
|
||||
},
|
||||
"amountWithColon": {
|
||||
"message": "금액:"
|
||||
},
|
||||
|
@ -120,10 +120,6 @@
|
||||
"amount": {
|
||||
"message": "Сумма"
|
||||
},
|
||||
"amountInEth": {
|
||||
"message": "$1 ETH",
|
||||
"description": "Displays an eth amount to the user. $1 is a decimal number"
|
||||
},
|
||||
"amountWithColon": {
|
||||
"message": "Сумма:"
|
||||
},
|
||||
|
@ -120,10 +120,6 @@
|
||||
"amount": {
|
||||
"message": "Halaga"
|
||||
},
|
||||
"amountInEth": {
|
||||
"message": "$1 ETH",
|
||||
"description": "Displays an eth amount to the user. $1 is a decimal number"
|
||||
},
|
||||
"amountWithColon": {
|
||||
"message": "Halaga:"
|
||||
},
|
||||
|
@ -120,10 +120,6 @@
|
||||
"amount": {
|
||||
"message": "Số tiền"
|
||||
},
|
||||
"amountInEth": {
|
||||
"message": "$1 ETH",
|
||||
"description": "Displays an eth amount to the user. $1 is a decimal number"
|
||||
},
|
||||
"amountWithColon": {
|
||||
"message": "Số tiền:"
|
||||
},
|
||||
|
@ -126,10 +126,6 @@
|
||||
"amount": {
|
||||
"message": "数额"
|
||||
},
|
||||
"amountInEth": {
|
||||
"message": "$1 ETH",
|
||||
"description": "Displays an eth amount to the user. $1 is a decimal number"
|
||||
},
|
||||
"amountWithColon": {
|
||||
"message": "数额:"
|
||||
},
|
||||
|
@ -470,7 +470,7 @@ export default function ViewQuote() {
|
||||
extraInfoRow: extraInfoRowLabel
|
||||
? {
|
||||
label: extraInfoRowLabel,
|
||||
value: t('amountInEth', [extraNetworkFeeTotalInEth]),
|
||||
value: `${extraNetworkFeeTotalInEth} ${nativeCurrencySymbol}`,
|
||||
}
|
||||
: null,
|
||||
initialGasPrice: gasPrice,
|
||||
|
Loading…
Reference in New Issue
Block a user