Skip to content

Commit c9fd8fe

Browse files
use strings from existing FUIAuth implementation
1 parent 31087b8 commit c9fd8fe

1 file changed

Lines changed: 255 additions & 9 deletions

File tree

Lines changed: 255 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,269 @@
1-
/* 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";
33

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";
69

710
/* Error message displayed when user enters an invalid email address. Use short/abbreviated translation for 'email' which is less than 15 chars. */
811
"InvalidEmailError" = "That email address isn't correct.";
912

10-
/* 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";
1215

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.";
1530

1631
/* Error message displayed when the email and password don't match. Use short/abbreviated translation for 'email' which is less than 15 chars. */
1732
"WrongPasswordError" = "The email and password you entered don't match.";
1833

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+
1937
/* Error message displayed when the account is disabled. Use short/abbreviated translation for 'email' which is less than 15 chars. */
2038
"AccountDisabledError" = "That email address is for an account that has been disabled.";
2139

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+
2246
/* 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. */
161+
"DeleteAccountConfirmationTitle" = "Delete Account?";
162+
163+
/* 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 */
173+
"DeleteAccountControllerTitle" = "Delete account";
174+
175+
/* Alert message shown before account deletion. */
176+
"ActionCantBeUndone" = "This action can't be undone";
177+
178+
/* Button title for unlinking account action. */
179+
"UnlinkAction" = "Unlink";
180+
181+
/* Controller title shown for unlinking account action. */
182+
"UnlinkTitle" = "Linked account";
183+
184+
/* Alert title shown before unlinking action. */
185+
"UnlinkConfirmationTitle" = "Unlink account?";
186+
187+
/* Alert message shown before unlinking action. */
188+
"UnlinkConfirmationMessage" = "You will no longer be able to sign in using your account";
189+
190+
/* Alert action title shown before unlinking action. */
191+
"UnlinkConfirmationActionTitle" = "Unlink account";
192+
193+
/* Alert action message shown before updating email action. Use short/abbreviated translation for 'email' which is less than 15 chars. */
194+
"UpdateEmailAlertMessage" = "To change email address associated with your account, you will need to sign in again.";
195+
196+
/* Alert action message shown before confirmation of updating email action. */
197+
"UpdateEmailVerificationAlertMessage" = "In order to change your password, you first need to enter your current password.";
198+
199+
/* Controller title shown when editing account email. Use short/abbreviated translation for 'email' which is less than 15 chars. */
200+
"EditEmailTitle" = "Edit email";
201+
202+
/* Controller title shown when editing account name. */
203+
"EditNameTitle" = "Edit name";
204+
205+
/* Alert message shown when adding account password. */
206+
"AddPasswordAlertMessage" = "To add password to your account, you will need to sign in again.";
207+
208+
/* Alert message shown when editing account password. */
209+
"EditPasswordAlertMessage" = "To change password to your account, you will need to sign in again.";
210+
211+
/* Alert message shown when re-authenticating before editing account password. */
212+
"ReauthenticateEditPasswordAlertMessage" = "In order to change your password, you first need to enter your current password.";
213+
214+
/* Controller title shown when adding password to account. */
215+
"AddPasswordTitle" = "Add password";
216+
217+
/* Controller title shown when editing password to account. */
218+
"EditPasswordTitle" = "Change password";
219+
220+
/* Title of Password/Email provider. Use short/abbreviated translation for 'email' which is less than 15 chars. */
221+
"ProviderTitlePassword" = "Email";
222+
223+
/* Title of Google provider */
224+
"ProviderTitleGoogle" = "Google";
225+
226+
/* Title of Facebook provider */
227+
"ProviderTitleFacebook" = "Facebook";
228+
229+
/* Title of Twitter provider */
230+
"ProviderTitleTwitter" = "Twitter";
231+
232+
/* Sign in with provider button label. */
233+
"SignInWithProvider" = "Sign in with %@";
234+
235+
/* Placeholder of input cell when user changes name. */
236+
"PlaceholderEnterName" = "Enter your name";
237+
238+
/* Placeholder of input cell when user changes name. Use short/abbreviated translation for 'email' which is less than 15 chars. */
239+
"PlaceholderEnterEmail" = "Enter your email";
240+
241+
/* Placeholder of secret input cell when user changes password. */
242+
"PlaceholderEnterPassword" = "Enter your password";
243+
244+
/* Placeholder of secret input cell when user confirms password. */
245+
"PlaceholderNewPassword" = "New password";
246+
247+
/* Placeholder of secret input cell when user changes password. */
248+
"PlaceholderChosePassword" = "Choose password";
249+
250+
/* Title of forgot password button. */
251+
"ForgotPasswordTitle" = "Trouble signing in?";
252+
253+
/* Title of confirm email label. */
254+
"ConfirmEmail" = "Confirm Email";
255+
256+
/* Title of successfully signed in label. */
257+
"SignedIn" = "Signed in!";
258+
259+
/* Title used in trouble getting email alert view. */
260+
"TroubleGettingEmailTitle" = "Trouble getting emails?";
261+
262+
/* 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. */
269+
"SignInEmailSent" = "Sign-in email Sent";

0 commit comments

Comments
 (0)