You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Error message displayed when there's no account matching the email address. Use short/abbreviated translation for 'email' which is less than 15 chars. */
2
-
"UserNotFoundError" = "That email address doesn’t match an existing account.";
1
+
/* Title for auth picker screen. */
2
+
"AuthPickerTitle" = "Welcome";
3
3
4
-
/* Error message displayed when the email address is already in use. Use short/abbreviated translation for 'email' which is less than 15 chars. */
5
-
"EmailAlreadyInUseError" = "The email address is already in use by another account.";
4
+
/* Sign in with email button label. Use short/abbreviated translation for 'email' which is less than 15 chars. */
5
+
"SignInWithEmail" = "Sign in with email";
6
+
7
+
/* Title for email entry screen, email text field placeholder. Use short/abbreviated translation for 'email' which is less than 15 chars. */
8
+
"EnterYourEmail" = "Enter your email";
6
9
7
10
/* Error message displayed when user enters an invalid email address. Use short/abbreviated translation for 'email' which is less than 15 chars. */
/* Error message displayed when the password is too weak. */
11
-
"WeakPasswordError" = "Password must be at least 6 characters long.";
13
+
/* Error message displayed when the app cannot authenticate user's account. */
14
+
"CannotAuthenticateError" = "This type of account isn't supported by this app";
12
15
13
-
/* Error message displayed when many accounts have been created from same IP address. */
14
-
"SignUpTooManyTimesError" = "Too many account requests are coming from your IP address. Try again in a few minutes.";
16
+
/* Title of an alert shown to an existing user coming back to the app. */
17
+
"ExistingAccountTitle" = "You already have an account";
18
+
19
+
/* Alert message to let user know what identity provider (second placeholder, ex. Google) was used previously for the email address (first placeholder). */
20
+
"ProviderUsedPreviouslyMessage" = "You’ve already used %@. Sign in with %@ to continue.";
21
+
22
+
/* Title for sign in screen and sign in button. */
23
+
"SignInTitle" = "Sign in";
24
+
25
+
/* Password text field placeholder. */
26
+
"EnterYourPassword" = "Enter your password";
27
+
28
+
/* Error message displayed when user enters an empty password. */
29
+
"InvalidPasswordError" = "Password cannot be empty.";
15
30
16
31
/* Error message displayed when the email and password don't match. Use short/abbreviated translation for 'email' which is less than 15 chars. */
17
32
"WrongPasswordError" = "The email and password you entered don't match.";
18
33
34
+
/* Error message displayed when there's no account matching the email address. Use short/abbreviated translation for 'email' which is less than 15 chars. */
35
+
"UserNotFoundError" = "That email address doesn’t match an existing account.";
36
+
19
37
/* Error message displayed when the account is disabled. Use short/abbreviated translation for 'email' which is less than 15 chars. */
20
38
"AccountDisabledError" = "That email address is for an account that has been disabled.";
21
39
40
+
/* Error message displayed after user trying to sign in too many times. */
41
+
"SignInTooManyTimesError" = "You’ve entered an incorrect password too many times. Try again in a few minutes.";
42
+
43
+
/* Error message displayed when FUIAuth is not configured with third party provider. Parameter is value of provider (e g Google, Facebook etc) */
44
+
"CantFindProvider" = "Can't find provider for %@.";
45
+
22
46
/* Error message displayed when after re-authorization current user's email and re-authorized user's email doesn't match. Use short/abbreviated translation for 'email' which is less than 15 chars. */
23
-
"EmailsDoNotMatchError" = "Emails don't match";
47
+
"EmailsDontMatch" = "Emails don't match";
48
+
49
+
/* Title for password recovery screen. */
50
+
"PasswordRecoveryTitle" = "Recover password";
51
+
52
+
/* Explanation on how the password of an account can be recovered. Use short/abbreviated translation for 'email' which is less than 15 chars. */
53
+
"PasswordRecoveryMessage" = "Get instructions sent to this email that explain how to reset your password.";
54
+
55
+
/* Title of a message displayed when the email for password recovery has been sent. Use short/abbreviated translation for 'email' which is less than 15 chars. */
56
+
"PasswordRecoveryEmailSentTitle" = "Check your email";
57
+
58
+
/* Message displayed when the email for password recovery has been sent. */
59
+
"PasswordRecoveryEmailSentMessage" = "Follow the instructions sent to %@ to recover your password.";
60
+
61
+
/* Title for sign up screen. */
62
+
"SignUpTitle" = "Create account";
63
+
64
+
/* Name text field placeholder. */
65
+
"FirstAndLastName" = "First & last name";
66
+
67
+
/* Placeholder for the password text field in a sign up form. */
68
+
"ChoosePassword" = "Choose password";
69
+
70
+
/* Text linked to a web page with the Terms of Service content. */
71
+
"TermsOfService" = "Terms of Service";
72
+
73
+
/* Text linked to a web page with the Privacy Policy content. */
74
+
"PrivacyPolicy" = "Privacy Policy";
75
+
76
+
/* A message displayed when the first log in screen is displayed. The first placeholder is the terms of service agreement link, the second place holder is the privacy policy agreement link. */
77
+
"TermsOfServiceMessage" = "By continuing, you are indicating that you accept our %@ and %@.";
78
+
79
+
/* Error message displayed when the email address is already in use. Use short/abbreviated translation for 'email' which is less than 15 chars. */
80
+
"EmailAlreadyInUseError" = "The email address is already in use by another account.";
81
+
82
+
/* Error message displayed when the password is too weak. */
83
+
"WeakPasswordError" = "Password must be at least 6 characters long.";
84
+
85
+
/* Error message displayed when many accounts have been created from same IP address. */
86
+
"SignUpTooManyTimesError" = "Too many account requests are coming from your IP address. Try again in a few minutes.";
87
+
88
+
/* Message to explain to the user that password is needed for an account with this email address. */
89
+
"PasswordVerificationMessage" = "You’ve already used %@ to sign in. Enter your password for that account.";
90
+
91
+
/* OK button title. */
92
+
"OK" = "OK";
93
+
94
+
/* Cancel button title. */
95
+
"Cancel" = "Cancel";
96
+
97
+
/* Back button title. */
98
+
"Back" = "Back";
99
+
100
+
/* Next button title. */
101
+
"Next" = "Next";
102
+
103
+
/* Save button title. */
104
+
"Save" = "Save";
105
+
106
+
/* Send button title. */
107
+
"Send" = "Send";
108
+
109
+
/* Resend button title. */
110
+
"Resend" = "Resend";
111
+
112
+
/* Label next to a email text field. Use short/abbreviated translation for 'email' which is less than 15 chars. */
113
+
"Email" = "Email";
114
+
115
+
/* Label next to a password text field. */
116
+
"Password" = "Password";
117
+
118
+
/* Label next to a name text field. */
119
+
"Name" = "Name";
120
+
121
+
/* Alert title Error. */
122
+
"Error" = "Error";
123
+
124
+
/* Alert button title Close. */
125
+
"Close" = "Close";
126
+
127
+
/* Account Settings section title Profile. */
128
+
"AS_SectionProfile" = "Profile";
129
+
130
+
/* Account Settings section title Security. */
131
+
"AS_SectionSecurity" = "Security";
132
+
133
+
/* Account Settings section title Linked Accounts. */
134
+
"AS_SectionLinkedAccounts" = "Linked Accounts";
135
+
136
+
/* Account Settings cell title Name. */
137
+
"AS_Name" = "Name";
138
+
139
+
/* Account Settings cell title Email. Use short/abbreviated translation for 'email' which is less than 15 chars. */
140
+
"AS_Email" = "Email";
141
+
142
+
/* Account Settings cell title Add Password. */
143
+
"AS_AddPassword" = "Add password";
144
+
145
+
/* Account Settings cell title Change Password. */
146
+
"AS_ChangePassword" = "Change password";
147
+
148
+
/* Account Settings cell title Sign Out. */
149
+
"AS_SignOut" = "Sign Out";
150
+
151
+
/* Account Settings cell title Delete Account. */
152
+
"AS_DeleteAccount" = "Delete Account";
153
+
154
+
/* Button text for 'Forgot Password' action. */
155
+
"ForgotPassword" = "Forgot password?";
156
+
157
+
/* Alert message title show for re-authorization. */
158
+
"VerifyItsYou" = "Verify it's you";
159
+
160
+
/* Alert message title shown to confirm account deletion action. */
/* Alert message body shown to confirm account deletion action. */
164
+
"DeleteAccountBody" = "This will erase all data associated with your account, and can't be undone You will need to sign in again to complete this action";
165
+
166
+
/* Explanation message shown before deleting account. */
167
+
"DeleteAccountConfirmationMessage" = "This will erase all data associated with your account, and can't be undone. Are you sure you want to delete your account?";
168
+
169
+
/* Text of Delete action button. */
170
+
"Delete" = "Delete";
171
+
172
+
/* Title of Controller shown before deleting account */
/* Alert message displayed when user having trouble getting email. */
263
+
"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.";
264
+
265
+
/* Message displayed after email is sent. The placeholder is the email address that the email is sent to. */
266
+
"EmailSentConfirmationMessage" = "A sign-in email with additional instructions was sent to %@. Check your email to complete sign-in.";
267
+
268
+
/* Message displayed after the email of sign-in link is sent. */
0 commit comments