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": { "amount": {
"message": "Amount" "message": "Amount"
}, },
"amountInEth": {
"message": "$1 ETH",
"description": "Displays an eth amount to the user. $1 is a decimal number"
},
"amountWithColon": { "amountWithColon": {
"message": "Amount:" "message": "Amount:"
}, },

@ -126,10 +126,6 @@
"amount": { "amount": {
"message": "Cantidad" "message": "Cantidad"
}, },
"amountInEth": {
"message": "$1 ETH",
"description": "Displays an eth amount to the user. $1 is a decimal number"
},
"amountWithColon": { "amountWithColon": {
"message": "Cantidad:" "message": "Cantidad:"
}, },

@ -126,10 +126,6 @@
"amount": { "amount": {
"message": "Monto" "message": "Monto"
}, },
"amountInEth": {
"message": "$1 ETH",
"description": "Displays an eth amount to the user. $1 is a decimal number"
},
"amountWithColon": { "amountWithColon": {
"message": "Monto:" "message": "Monto:"
}, },

@ -120,10 +120,6 @@
"amount": { "amount": {
"message": "रि" "message": "रि"
}, },
"amountInEth": {
"message": "$1 ETH",
"description": "Displays an eth amount to the user. $1 is a decimal number"
},
"amountWithColon": { "amountWithColon": {
"message": "रि:" "message": "रि:"
}, },

@ -120,10 +120,6 @@
"amount": { "amount": {
"message": "Jumlah" "message": "Jumlah"
}, },
"amountInEth": {
"message": "$1 ETH",
"description": "Displays an eth amount to the user. $1 is a decimal number"
},
"amountWithColon": { "amountWithColon": {
"message": "Jumlah:" "message": "Jumlah:"
}, },

@ -126,10 +126,6 @@
"amount": { "amount": {
"message": "Importo" "message": "Importo"
}, },
"amountInEth": {
"message": "$1 ETH",
"description": "Displays an eth amount to the user. $1 is a decimal number"
},
"amountWithColon": { "amountWithColon": {
"message": "Importo:" "message": "Importo:"
}, },

@ -126,10 +126,6 @@
"amount": { "amount": {
"message": "金額" "message": "金額"
}, },
"amountInEth": {
"message": "$1 ETH",
"description": "Displays an eth amount to the user. $1 is a decimal number"
},
"amountWithColon": { "amountWithColon": {
"message": "金額:" "message": "金額:"
}, },

@ -120,10 +120,6 @@
"amount": { "amount": {
"message": "금액" "message": "금액"
}, },
"amountInEth": {
"message": "$1 ETH",
"description": "Displays an eth amount to the user. $1 is a decimal number"
},
"amountWithColon": { "amountWithColon": {
"message": "금액:" "message": "금액:"
}, },

@ -120,10 +120,6 @@
"amount": { "amount": {
"message": "Сумма" "message": "Сумма"
}, },
"amountInEth": {
"message": "$1 ETH",
"description": "Displays an eth amount to the user. $1 is a decimal number"
},
"amountWithColon": { "amountWithColon": {
"message": "Сумма:" "message": "Сумма:"
}, },

@ -120,10 +120,6 @@
"amount": { "amount": {
"message": "Halaga" "message": "Halaga"
}, },
"amountInEth": {
"message": "$1 ETH",
"description": "Displays an eth amount to the user. $1 is a decimal number"
},
"amountWithColon": { "amountWithColon": {
"message": "Halaga:" "message": "Halaga:"
}, },

@ -120,10 +120,6 @@
"amount": { "amount": {
"message": "Số tiền" "message": "Số tiền"
}, },
"amountInEth": {
"message": "$1 ETH",
"description": "Displays an eth amount to the user. $1 is a decimal number"
},
"amountWithColon": { "amountWithColon": {
"message": "Số tiền:" "message": "Số tiền:"
}, },

@ -126,10 +126,6 @@
"amount": { "amount": {
"message": "数额" "message": "数额"
}, },
"amountInEth": {
"message": "$1 ETH",
"description": "Displays an eth amount to the user. $1 is a decimal number"
},
"amountWithColon": { "amountWithColon": {
"message": "数额:" "message": "数额:"
}, },

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

Loading…
Cancel
Save