1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Correct reprice title and subtitle key names.

This commit is contained in:
Dan 2018-03-22 01:19:00 -02:30
parent edf63f8b51
commit d613dfb434
2 changed files with 4 additions and 4 deletions

View File

@ -659,10 +659,10 @@
"save": { "save": {
"message": "Save" "message": "Save"
}, },
"reprice:title": { "reprice_title": {
"message": "Reprice Transaction" "message": "Reprice Transaction"
}, },
"reprice:subtitle": { "reprice_subtitle": {
"message": "Increase your gas price to attempt to overwrite and speed up your transaction" "message": "Increase your gas price to attempt to overwrite and speed up your transaction"
}, },
"saveAsFile": { "saveAsFile": {

View File

@ -350,9 +350,9 @@ ConfirmSendToken.prototype.render = function () {
this.inputs = [] this.inputs = []
const isTxReprice = Boolean(txMeta.lastGasPrice) 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 const subtitle = isTxReprice
? this.props.t('reprice:subtitle') ? this.props.t('reprice_subtitle')
: this.props.t('pleaseReviewTransaction') : this.props.t('pleaseReviewTransaction')
return ( return (