1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Ensure that the approval fee in the swaps custom gas modal is in network specific currency (#10763)

This commit is contained in:
Dan J Miller 2021-03-30 12:53:41 -02:30 committed by GitHub
parent 4080ed63a4
commit be0b8a11d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 1 additions and 49 deletions

View File

@ -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:"
},

View File

@ -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:"
},

View File

@ -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:"
},

View File

@ -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": "राशि:"
},

View File

@ -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:"
},

View File

@ -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:"
},

View File

@ -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": "金額:"
},

View File

@ -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": "금액:"
},

View File

@ -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": "Сумма:"
},

View File

@ -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:"
},

View File

@ -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:"
},

View File

@ -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": "数额:"
},

View File

@ -470,7 +470,7 @@ export default function ViewQuote() {
extraInfoRow: extraInfoRowLabel
? {
label: extraInfoRowLabel,
value: t('amountInEth', [extraNetworkFeeTotalInEth]),
value: `${extraNetworkFeeTotalInEth} ${nativeCurrencySymbol}`,
}
: null,
initialGasPrice: gasPrice,