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

feature/default_network_editable
Dan J Miller 4 years ago committed by GitHub
parent 4080ed63a4
commit be0b8a11d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      app/_locales/en/messages.json
  2. 4
      app/_locales/es/messages.json
  3. 4
      app/_locales/es_419/messages.json
  4. 4
      app/_locales/hi/messages.json
  5. 4
      app/_locales/id/messages.json
  6. 4
      app/_locales/it/messages.json
  7. 4
      app/_locales/ja/messages.json
  8. 4
      app/_locales/ko/messages.json
  9. 4
      app/_locales/ru/messages.json
  10. 4
      app/_locales/tl/messages.json
  11. 4
      app/_locales/vi/messages.json
  12. 4
      app/_locales/zh_CN/messages.json
  13. 2
      ui/app/pages/swaps/view-quote/view-quote.js

@ -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…
Cancel
Save