diff options
author | Dan <danjm.com@gmail.com> | 2018-03-22 11:49:00 +0800 |
---|---|---|
committer | Dan <danjm.com@gmail.com> | 2018-03-22 11:49:00 +0800 |
commit | d613dfb43419ea1e18691659d39f6ac403c21d75 (patch) | |
tree | f4ed55085969b2776d8edd74265cc2437e33482f /ui/app/components/pending-tx | |
parent | edf63f8b51ec0717e580ec69b495987a00062b92 (diff) | |
download | dexon-wallet-d613dfb43419ea1e18691659d39f6ac403c21d75.tar.gz dexon-wallet-d613dfb43419ea1e18691659d39f6ac403c21d75.tar.zst dexon-wallet-d613dfb43419ea1e18691659d39f6ac403c21d75.zip |
Correct reprice title and subtitle key names.
Diffstat (limited to 'ui/app/components/pending-tx')
-rw-r--r-- | ui/app/components/pending-tx/confirm-send-token.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/app/components/pending-tx/confirm-send-token.js b/ui/app/components/pending-tx/confirm-send-token.js index f9b6bb79..9196f9ab 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 ( |