Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MOB-2171 - Fixed MPC wallet takeover copies #655

Merged
merged 1 commit into from
Aug 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1294,6 +1294,7 @@ extension String {
static let mpcPasswordValidationNumberTitle = "MPC_PASSWORD_VALIDATION_NUMBER_TITLE"
static let mpcPasswordValidationSpecialCharTitle = "MPC_PASSWORD_VALIDATION_SPECIAL_CHAR_TITLE"
static let mpcTakeoverCredentialsSubtitle = "MPC_TAKEOVER_CREDENTIALS_SUBTITLE"
static let mpcTakeoverPasswordSubtitle = "MPC_TAKEOVER_PASSWORD_SUBTITLE"
static let mpcTakeoverRecoveryTitle = "MPC_TAKEOVER_RECOVERY_TITLE"
static let mpcTakeoverRecoverySubtitle = "MPC_TAKEOVER_RECOVERY_SUBTITLE"
static let sendMeRecoveryLink = "SEND_ME_RECOVERY_LINK"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ private extension PurchaseMPCWalletTakeoverPasswordView {
@ViewBuilder
func headerView() -> some View {
VStack(spacing: 16) {
Text(String.Constants.setup.localized())
Text(String.Constants.createPassword.localized())
.font(.currentFont(size: 32, weight: .bold))
.foregroundStyle(Color.foregroundDefault)
.multilineTextAlignment(.center)
Text(String.Constants.mpcTakeoverCredentialsSubtitle.localizedMPCProduct())
Text(String.Constants.mpcTakeoverPasswordSubtitle.localized())
.font(.currentFont(size: 16))
.foregroundStyle(Color.foregroundSecondary)
.minimumScaleFactor(0.6)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@
"BACK_UP_MANUALLY" = "Back up manually";

// Create password screen
"CREATE_PASSWORD" = "Create a password";
"CREATE_PASSWORD" = "Create password";
"CREATE_PASSWORD_DESCRIPTION" = "This password protects your iCloud backups. Store this password somewhere safe. Unstoppable Domains cannot recover your password for you. Learn more";
"CREATE_PASSWORD_DESCRIPTION_HIGHLIGHTED" = "Store this password somewhere safe.";
"LEARN_MORE" = "Learn more";
Expand Down Expand Up @@ -1187,7 +1187,8 @@ More tabs are coming in the next updates.";
"MPC_PASSWORD_VALIDATION_TOO_LONG_TITLE" = "Minimum %i characters, maximum %i characters";
"MPC_PASSWORD_VALIDATION_NUMBER_TITLE" = "At least one number";
"MPC_PASSWORD_VALIDATION_SPECIAL_CHAR_TITLE" = "At least one special character (e.g. -!&*)";
"MPC_TAKEOVER_CREDENTIALS_SUBTITLE" = "Each %@ requires a unique email address. Make sure you have access to an email. It can be the one used in the previous step or a different one.";
"MPC_TAKEOVER_CREDENTIALS_SUBTITLE" = "Each %@ requires a unique email address. Make sure you have access to an email.";
"MPC_TAKEOVER_PASSWORD_SUBTITLE" = "Do note share your password with anyone, including Unstoppable Domains staff.";
"MPC_TAKEOVER_RECOVERY_TITLE" = "Get recovery link";
"MPC_TAKEOVER_RECOVERY_SUBTITLE" = "This is the only way to restore access to wallet if you forget your password. Obtain a recovery link to ensure you don't lose access to your assets. The recovery link will be sent to:";
"SEND_ME_RECOVERY_LINK" = "Send me a recovery link";
Expand Down