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:
parent
edf63f8b51
commit
d613dfb434
@ -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": {
|
||||
|
@ -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 (
|
||||
|
Loading…
Reference in New Issue
Block a user