Skip to content
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 @@ -263,7 +263,7 @@
"TroubleGettingEmailMessage" = "Try these common fixes: \n - Check if the email was marked as spam or filtered.\n - Check your internet connection.\n - Check that you did not misspell your email.\n - Check that your inbox space is not running out or other inbox settings related issues.\n If the steps above didn't work, you can resend the email. Note that this will deactivate the link in the older email.";

/* Message displayed after email is sent. The placeholder is the email address that the email is sent to. */
"EmailSentConfirmationMessage" = "A sign-in email with additional instrucitons was sent to %@. Check your email to complete sign-in.";
"EmailSentConfirmationMessage" = "A sign-in email with additional instructions was sent to %@. Check your email to complete sign-in.";

/* Message displayed after the email of sign-in link is sent. */
"SignInEmailSent" = "Sign-in email Sent";
2 changes: 1 addition & 1 deletion EmailAuth/FirebaseEmailAuthUI/FUIEmailAuth.m
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ - (void)handleAccountLinkingForEmail:(NSString *)email
[FUIAuthBaseViewController showAlertWithMessage:error.description];
} else {
NSString *signInMessage = [NSString stringWithFormat:
@"A sign-in email with additional instrucitons was sent to %@. Check your "
@"A sign-in email with additional instructions was sent to %@. Check your "
"email to complete sign-in.", email];
[FUIAuthBaseViewController
showAlertWithTitle:@"Sign-in email sent"
Expand Down