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:
parent
dc19e1d5f6
commit
9ab6293129
@ -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"
|
||||||
|
@ -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
|
||||||
|
@ -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 {
|
||||||
|
Loading…
Reference in New Issue
Block a user