aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2018-03-22 11:49:00 +0800
committerDan <danjm.com@gmail.com>2018-03-22 11:49:00 +0800
commitd613dfb43419ea1e18691659d39f6ac403c21d75 (patch)
treef4ed55085969b2776d8edd74265cc2437e33482f
parentedf63f8b51ec0717e580ec69b495987a00062b92 (diff)
downloadtangerine-wallet-browser-d613dfb43419ea1e18691659d39f6ac403c21d75.tar
tangerine-wallet-browser-d613dfb43419ea1e18691659d39f6ac403c21d75.tar.gz
tangerine-wallet-browser-d613dfb43419ea1e18691659d39f6ac403c21d75.tar.bz2
tangerine-wallet-browser-d613dfb43419ea1e18691659d39f6ac403c21d75.tar.lz
tangerine-wallet-browser-d613dfb43419ea1e18691659d39f6ac403c21d75.tar.xz
tangerine-wallet-browser-d613dfb43419ea1e18691659d39f6ac403c21d75.tar.zst
tangerine-wallet-browser-d613dfb43419ea1e18691659d39f6ac403c21d75.zip
Correct reprice title and subtitle key names.
-rw-r--r--app/_locales/en/messages.json4
-rw-r--r--ui/app/components/pending-tx/confirm-send-token.js4
2 files changed, 4 insertions, 4 deletions
diff --git a/app/_locales/en/messages.json b/app/_locales/en/messages.json
index 7f6b9e72d..9fac9c248 100644
--- a/app/_locales/en/messages.json
+++ b/app/_locales/en/messages.json
@@ -659,10 +659,10 @@
"save": {
"message": "Save"
},
- "reprice:title": {
+ "reprice_title": {
"message": "Reprice Transaction"
},
- "reprice:subtitle": {
+ "reprice_subtitle": {
"message": "Increase your gas price to attempt to overwrite and speed up your transaction"
},
"saveAsFile": {
diff --git a/ui/app/components/pending-tx/confirm-send-token.js b/ui/app/components/pending-tx/confirm-send-token.js
index f9b6bb79e..9196f9ab1 100644
--- a/ui/app/components/pending-tx/confirm-send-token.js
+++ b/ui/app/components/pending-tx/confirm-send-token.js
@@ -350,9 +350,9 @@ ConfirmSendToken.prototype.render = function () {
this.inputs = []
const isTxReprice = Boolean(txMeta.lastGasPrice)
- const title = isTxReprice ? this.props.t('reprice:title') : this.props.t('confirm')
+ const title = isTxReprice ? this.props.t('reprice_title') : this.props.t('confirm')
const subtitle = isTxReprice
- ? this.props.t('reprice:subtitle')
+ ? this.props.t('reprice_subtitle')
: this.props.t('pleaseReviewTransaction')
return (