diff --git a/app/_locales/en/messages.json b/app/_locales/en/messages.json index 5fd9282994d3..a096e5299bab 100644 --- a/app/_locales/en/messages.json +++ b/app/_locales/en/messages.json @@ -1618,7 +1618,7 @@ "message": "Create password" }, "createPasswordDetails": { - "message": "Unlocks MetaMask on this device only." + "message": "Unlocks MetaMask on this device only" }, "createPasswordDetailsSocial": { "message": "Losing this password means losing wallet access on all devices, " @@ -1878,7 +1878,7 @@ "message": "Default RPC URL" }, "defaultSettingsSubTitle": { - "message": "MetaMask uses default settings to best balance safety and ease of use. Change these settings to further increase your privacy." + "message": "Configure the default settings to enhance your privacy" }, "defaultSettingsTitle": { "message": "Default privacy settings" @@ -4287,7 +4287,7 @@ "message": "We’ll use this data to learn how you interact with our marketing communications. We may share relevant news (like product features)." }, "onboardingMetametricCheckboxTitleOne": { - "message": "Gather basic usage data" + "message": "Basic usage data" }, "onboardingMetametricCheckboxTitleTwo": { "message": "Product updates" @@ -4344,7 +4344,7 @@ "message": "Clear all" }, "onboardingSrpInputPlaceholder": { - "message": "Add a space between each word and make sure no one is watching." + "message": "Add a space between each word. Make sure no one sees your SRP." }, "onekey": { "message": "OneKey" @@ -7622,7 +7622,7 @@ "message": "Wallet not found" }, "walletReadyLearn": { - "message": "$1 you can keep this phrase safe so you never lose access to your money.", + "message": "$1 to keep your Secret Recovery Phrase safe so you don't lose your money. Without it, you can't use MetaMask.", "description": "$1 is the link to Learn how" }, "walletReadyLearnRemind": { diff --git a/app/_locales/en_GB/messages.json b/app/_locales/en_GB/messages.json index 5fd9282994d3..9c7dc3460e8d 100644 --- a/app/_locales/en_GB/messages.json +++ b/app/_locales/en_GB/messages.json @@ -1618,7 +1618,7 @@ "message": "Create password" }, "createPasswordDetails": { - "message": "Unlocks MetaMask on this device only." + "message": "Unlocks MetaMask on this device only" }, "createPasswordDetailsSocial": { "message": "Losing this password means losing wallet access on all devices, " @@ -1878,7 +1878,7 @@ "message": "Default RPC URL" }, "defaultSettingsSubTitle": { - "message": "MetaMask uses default settings to best balance safety and ease of use. Change these settings to further increase your privacy." + "message": "Configure the default settings to enhance your privacy" }, "defaultSettingsTitle": { "message": "Default privacy settings" @@ -4287,7 +4287,7 @@ "message": "We’ll use this data to learn how you interact with our marketing communications. We may share relevant news (like product features)." }, "onboardingMetametricCheckboxTitleOne": { - "message": "Gather basic usage data" + "message": "Basic usage data" }, "onboardingMetametricCheckboxTitleTwo": { "message": "Product updates" @@ -4344,7 +4344,7 @@ "message": "Clear all" }, "onboardingSrpInputPlaceholder": { - "message": "Add a space between each word and make sure no one is watching." + "message": "Add a space between each word. Make sure no one sees your SRP." }, "onekey": { "message": "OneKey" @@ -7622,7 +7622,7 @@ "message": "Wallet not found" }, "walletReadyLearn": { - "message": "$1 you can keep this phrase safe so you never lose access to your money.", + "message": "$1 to keep your Secret Recovery Phrase safe so you don't lose your money. Without it, you can't use MetaMask.", "description": "$1 is the link to Learn how" }, "walletReadyLearnRemind": { diff --git a/ui/components/app/password-form/password-form.tsx b/ui/components/app/password-form/password-form.tsx index 384f78ef3366..79f54ff2e647 100644 --- a/ui/components/app/password-form/password-form.tsx +++ b/ui/components/app/password-form/password-form.tsx @@ -83,7 +83,7 @@ export default function PasswordForm({ }, [password.length]); return ( - + void }) { - + {t('srpDetailsTitle')} diff --git a/ui/components/app/srp-input-import/srp-input-import.tsx b/ui/components/app/srp-input-import/srp-input-import.tsx index 982c61e4ad1c..5f2072a899ce 100644 --- a/ui/components/app/srp-input-import/srp-input-import.tsx +++ b/ui/components/app/srp-input-import/srp-input-import.tsx @@ -278,11 +278,12 @@ export default function SrpInputImport({ onChange }: SrpInputImportProps) { {draftSrp.map((word, index) => { return ( { if (el) { diff --git a/ui/pages/onboarding-flow/create-password/create-password.js b/ui/pages/onboarding-flow/create-password/create-password.js index b7a7fae489e5..7652f76f4c5a 100644 --- a/ui/pages/onboarding-flow/create-password/create-password.js +++ b/ui/pages/onboarding-flow/create-password/create-password.js @@ -336,9 +336,10 @@ export default function CreatePassword({ href={ZENDESK_URLS.PASSWORD_ARTICLE} target="_blank" rel="noopener noreferrer" + style={{ paddingLeft: '4px' }} > - {t('learnMoreUpperCaseWithDot')} + {t('learnMoreUpperCase')} ); @@ -363,13 +364,14 @@ export default function CreatePassword({ - + {t('createPassword')} - {isSocialLoginFlow ? ( - - {t('createPasswordDetailsSocial')} + + {isSocialLoginFlow ? ( + + {t('createPasswordDetailsSocial')} + + {t('createPasswordDetailsSocialReset')} + + + ) : ( - {t('createPasswordDetailsSocialReset')} + {t('createPasswordDetails')} - - ) : ( - - {t('createPasswordDetails')} - - )} + )} + setPassword(newPassword)} /> + + {/* Terms Container - 24px from password form */} { setTermsChecked(!termsChecked); }} label={ - + {checkboxLabel} - {!isSocialLoginFlow && ( - <> -
- {createPasswordLink} - - )} + {!isSocialLoginFlow && <>{createPasswordLink}}
} />
- + + {/* Button pinned to bottom */} + - - {t('onboardingLoginFooter', [ - - {t('onboardingLoginFooterTermsOfUse')} - , - - {t('onboardingLoginFooterPrivacyNotice')} - , - ])} - + + {t('onboardingLoginFooter', [ + + {t('onboardingLoginFooterTermsOfUse')} + , + + {t('onboardingLoginFooterPrivacyNotice')} + , + ])} +
); diff --git a/ui/pages/settings/security-tab/change-password/change-password.tsx b/ui/pages/settings/security-tab/change-password/change-password.tsx index d596c4de708d..5eaa22b32e73 100644 --- a/ui/pages/settings/security-tab/change-password/change-password.tsx +++ b/ui/pages/settings/security-tab/change-password/change-password.tsx @@ -146,7 +146,7 @@ const ChangePassword = () => { rel="noopener noreferrer" > - {t('learnMoreUpperCaseWithDot')} + {t('learnMoreUpperCase')} ); @@ -247,7 +247,8 @@ const ChangePassword = () => { className="create-password__terms-container" alignItems={AlignItems.center} justifyContent={JustifyContent.spaceBetween} - marginTop={6} + marginTop={4} + style={{ marginLeft: '12px', marginRight: '12px' }} >