1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Untranslated string fix (#13615)

This commit is contained in:
ryanml 2022-02-14 08:52:04 -07:00 committed by GitHub
parent c01c312d5d
commit 2ad0b85cb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View File

@ -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"
},

View File

@ -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>
);

View File

@ -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>