1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

Fix untranslated header text in AccountImportSubview (#12640)

* Fix untranslated header text in AccountImportSubview

* use styling for link spacing
This commit is contained in:
ryanml 2021-11-10 10:29:22 -07:00 committed by GitHub
parent dc19e1d5f6
commit 9ab6293129
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -1130,7 +1130,7 @@
"message": "import using Secret Recovery Phrase" "message": "import using Secret Recovery Phrase"
}, },
"importAccountMsg": { "importAccountMsg": {
"message": " Imported accounts will not be associated with your originally created MetaMask account Secret Recovery Phrase. Learn more about imported accounts " "message": "Imported accounts will not be associated with your originally created MetaMask account Secret Recovery Phrase. Learn more about imported accounts"
}, },
"importAccountSeedPhrase": { "importAccountSeedPhrase": {
"message": "Import a wallet with Secret Recovery Phrase" "message": "Import a wallet with Secret Recovery Phrase"

View File

@ -41,7 +41,7 @@ export default class AccountImportSubview extends Component {
return ( return (
<> <>
<div className="page-container__header"> <div className="page-container__header">
<div className="page-container__title">Import Account</div> <div className="page-container__title">{t('importAccount')}</div>
<div className="page-container__subtitle"> <div className="page-container__subtitle">
{t('importAccountMsg')} {t('importAccountMsg')}
<span <span

View File

@ -2,6 +2,7 @@
cursor: pointer; cursor: pointer;
text-decoration: underline; text-decoration: underline;
color: $primary-blue; color: $primary-blue;
margin-inline-start: 4px;
} }
.new-account-import-form { .new-account-import-form {