Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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 @@ -3053,6 +3053,10 @@
}
}
},
"Please tap on the link in your email to complete verification." : {
"comment" : "A message displayed in a sheet that appears after a user requests email verification. It instructs the user to tap on the link in their email to complete the verification process.",
"isCommentAutoGenerated" : true
},
"PrivacyPolicy" : {
"comment" : "Text linked to a web page with the Privacy Policy content.",
"extractionState" : "manual",
Expand Down Expand Up @@ -4963,5 +4967,5 @@

}
},
"version" : "1.0"
"version" : "1.1"
}
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,13 @@ public class StringUtils {
return localizedString(for: "EnterYourPassword")
}

/// Update password title
/// found in:
/// - UpdatePasswordView
public var updatePasswordTitle: String {
return localizedString(for: "UpdatePasswordTitle")
}

/// Password recovery title
/// found in:
/// - PasswordRecoveryView
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ extension SignedInView: View {
VStack(spacing: 24) {
Text(authService.string.verifyEmailSheetMessage)
.font(.headline)
Text("Please tap on the link in your email to complete verification.")
Button {
showEmailVerificationSent = false
} label: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ extension UpdatePasswordView: View {
}
.frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .top)
.safeAreaPadding()
.navigationTitle(authService.string.passwordRecoveryTitle)
.navigationTitle(authService.string.updatePasswordTitle)
.alert(
"Password Updated",
isPresented: $showAlert
Expand Down
Loading