mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 01:39:44 +01:00
Untranslated string fix (#13615)
This commit is contained in:
parent
c01c312d5d
commit
2ad0b85cb1
6
app/_locales/en/messages.json
generated
6
app/_locales/en/messages.json
generated
@ -1670,6 +1670,9 @@
|
||||
"message": "Make sure no one is watching your screen",
|
||||
"description": "Warning to users to be care while creating and saving their new Secret Recovery Phrase"
|
||||
},
|
||||
"malformedData": {
|
||||
"message": "Malformed data"
|
||||
},
|
||||
"max": {
|
||||
"message": "Max"
|
||||
},
|
||||
@ -2719,6 +2722,9 @@
|
||||
"stateLogsDescription": {
|
||||
"message": "State logs contain your public account addresses and sent transactions."
|
||||
},
|
||||
"status": {
|
||||
"message": "Status"
|
||||
},
|
||||
"statusConnected": {
|
||||
"message": "Connected"
|
||||
},
|
||||
|
@ -109,7 +109,7 @@ export default function TransactionDecoding({ to = '', inputData: data = '' }) {
|
||||
case 'error':
|
||||
return (
|
||||
<span className="sol-item solidity-error">
|
||||
<span>Malformed data</span>
|
||||
<span>{t('malformedData')}</span>
|
||||
</span>
|
||||
);
|
||||
|
||||
|
@ -177,7 +177,7 @@ export default class TransactionListItemDetails extends PureComponent {
|
||||
</div>
|
||||
<div className="transaction-list-item-details__header">
|
||||
<div className="transaction-list-item-details__tx-status">
|
||||
<div>Status</div>
|
||||
<div>{t('status')}</div>
|
||||
<div>
|
||||
<TransactionStatus />
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user