Skip to content

Commit ecb974b

Browse files
committed
Firebase Phone Auth. Add localization strings.
Change-Id: I14e9e559cb725e4aed9297e6b41dc30a97da728a
1 parent 448de18 commit ecb974b

File tree

201 files changed

+12853
-45
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

201 files changed

+12853
-45
lines changed
Lines changed: 242 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,242 @@
1+
/* Title for auth picker screen. */
2+
"AuthPickerTitle" = "Welcome";
3+
4+
/* Sign in with email button label. */
5+
"SignInWithEmail" = "Sign in with email";
6+
7+
/* Title for email entry screen, email text field placeholder. */
8+
"EnterYourEmail" = "Enter your email";
9+
10+
/* Error message displayed when user enters an invalid email address. */
11+
"InvalidEmailError" = "That email address isn't correct.";
12+
13+
/* Error message displayed when the app cannot authenticate user's account. */
14+
"CannotAuthenticateError" = "This type of account isn't supported by this app";
15+
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 passwrd. */
29+
"InvalidPasswordError" = "Password cannot be empty.";
30+
31+
/* Error message displayed when the email and password don't match. */
32+
"WrongPasswordError" = "The email and password you entered don't match.";
33+
34+
/* Error message displayed when there's no account matching the email address. */
35+
"UserNotFoundError" = "That email address doesn’t match an existing account.";
36+
37+
/* Error message displayed when the account is disabled. */
38+
"AccountDisabledError" = "That email address is for an account that has been disabled.";
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 lib third FUIAuth is not configured with third party provider. */
44+
"CantFindProvider" = "Can't find provider for %@.";
45+
46+
/* Error message displayed when after re-authorization current user's email and re-authorizaed user's email doen'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. */
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. */
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+
/* A notice displayed when the user is creating a new account. The first placeholder is a button label (ex. Next). The second placeholder is "Terms of Service". */
71+
"TermsOfServiceNotice" = "By tapping %@, you are indicating that you agree to the %@.";
72+
73+
/* Text linked to a web page with the Terms of Service content. */
74+
"TermsOfService" = "Terms of Service";
75+
76+
/* Error message displayed when the email address is already in use. */
77+
"EmailAlreadyInUseError" = "The email address is already in use by another account.";
78+
79+
/* Error message displayed when the password is too weak. */
80+
"WeakPasswordError" = "Strong passwords have at least 6 characters and a mix of letters and numbers.";
81+
82+
/* Error message displayed when many accounts have been created from same IP address. */
83+
"SignUpTooManyTimesError" = "Too many account requests are coming from your IP address. Try again in a few minutes.";
84+
85+
/* Message to explain to the user that password is needed for an account with this email address. */
86+
"PasswordVerificationMessage" = "You’ve already used %@ to sign in. Enter your password for that account.";
87+
88+
/* OK button title. */
89+
"OK" = "OK";
90+
91+
/* Cancel button title. */
92+
"Cancel" = "Cancel";
93+
94+
/* Back button title. */
95+
"Back" = "Back";
96+
97+
/* Next button title. */
98+
"Next" = "Next";
99+
100+
/* Save button title. */
101+
"Save" = "Save";
102+
103+
/* Save button title. */
104+
"Send" = "Send";
105+
106+
/* Label next to a email text field. */
107+
"Email" = "Email";
108+
109+
/* Label next to a password text field. */
110+
"Password" = "Password";
111+
112+
/* Label next to a name text field. */
113+
"Name" = "Name";
114+
115+
/* Alert title Error. */
116+
"Error" = "Error";
117+
118+
/* Alert button title Close. */
119+
"Close" = "Close";
120+
121+
/* Account Settings section title Profile. */
122+
"AS_SectionProfile" = "Profile";
123+
124+
/* Account Settings section title Secrity. */
125+
"AS_SectionSecurity" = "Security";
126+
127+
/* Account Settings section title Linked Accounts. */
128+
"AS_SectionLinkedAccounts" = "Linked Accounts";
129+
130+
/* Account Settings cell title Name. */
131+
"AS_Name" = "Name";
132+
133+
/* Account Settings cell title Email. */
134+
"AS_Email" = "Email";
135+
136+
/* Account Settings cell title Add Password. */
137+
"AS_AddPassword" = "Add password";
138+
139+
/* Account Settings cell title Change Password. */
140+
"AS_ChangePassword" = "Change password";
141+
142+
/* Account Settings cell title Sign Out. */
143+
"AS_SignOut" = "Sign Out";
144+
145+
/* Account Settings cell title Delete Account. */
146+
"AS_DeleteAccount" = "Delete Account";
147+
148+
/* Button text for 'Forgot Password' action. */
149+
"ForgotPassword" = "Forgot password?";
150+
151+
/* Alert message title show for re-authorization. */
152+
"VerifyItsYou" = "Verify it's you";
153+
154+
/* Alert message title shown to confirm account deletion action. */
155+
"DeleteAccountConfimationTitle" = "Delete Account?";
156+
157+
/* Alert message body shown to confirm account deletion action. */
158+
"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";
159+
160+
/* Explanation message shown before deleting account. */
161+
"DeleteAccountConfirmationMessage" = "This will erase all data associated with your account, and can't be undone. Are you sure you want to delete your account?";
162+
163+
/* Text of Delete action button. */
164+
"Delete" = "Delete";
165+
166+
/* Title of Controller shown before deleting account */
167+
"DeleteAccountControllerTitle" = "Delete account";
168+
169+
/* Alert nessage shown before account deletion. */
170+
"ActionCantBeUndone" = "This action can't be undone";
171+
172+
/* Button title for unlinking account action. */
173+
"UnlinkAction" = "Unlink";
174+
175+
/* Controller title shown for unlinking account action. */
176+
"UnlinkTitle" = "Linked account";
177+
178+
/* Alert title shown before unlinking action. */
179+
"UnlinkConfirmationTitle" = "Unlink account?";
180+
181+
/* Alert message shown before unlinking action. */
182+
"UnlinkConfirmationMessage" = "You will no longer be able to sign in using your account";
183+
184+
/* Alert action title shown before unlinking action. */
185+
"UnlinkConfirmationActionTitle" = "Unlink account";
186+
187+
/* Alert action message shown before updating email action. */
188+
"UpdateEmailAlertMessage" = "To change email address associated with your your account, you will need to sign in again.";
189+
190+
/* Alert action message shown before confimation of updating email action. */
191+
"UpdateEmailVerificationAlertMessage" = "In order to change your password, you first need to enter your current password.";
192+
193+
/* Controller title shown when editing account email. */
194+
"EditEmailTitle" = "Edit email";
195+
196+
/* Controller title shown when editing account name. */
197+
"EditNameTitle" = "Edit name";
198+
199+
/* Alert message shown when adding account password. */
200+
"AddPasswordAlertMessage" = "To add password to your account, you will need to sign in again.";
201+
202+
/* Alert message shown when editing account password. */
203+
"EditPasswordAlertMessage" = "To change password to your account, you will need to sign in again.";
204+
205+
/* Alert message shown when reathenticationg before editing account password. */
206+
"ReauthenticateEditPasswordAlertMessage" = "In order to change your password, you first need to enter your current password.";
207+
208+
/* Controller title shown when adding password to account. */
209+
"AddPasswordTitle" = "Add password";
210+
211+
/* Controller title shown when editing password to account. */
212+
"EditPasswordTitle" = "Change password";
213+
214+
/* Title of Password/Email provider */
215+
"ProviderTitlePassword" = "Email";
216+
217+
/* Title of Google provider */
218+
"ProviderTitleGoogle" = "Google";
219+
220+
/* Title of Facebook provider */
221+
"ProviderTitleFacebook" = "Facebook";
222+
223+
/* Title of Twitter provider */
224+
"ProviderTitleTwitter" = "Twitter";
225+
226+
/* Sign in with provider button label. */
227+
"SignInWithProvider" = "Sign in with %@";
228+
229+
/* Placeholder of input cell when user changes name. */
230+
"PlaceholderEnterName" = "Enter your name";
231+
232+
/* Placeholder of input cell when user changes name. */
233+
"PlaceholderEnterEmail" = "Enter your email";
234+
235+
/* Placeholder of secret input cell when user changes password. */
236+
"PlaceholderEnterPassword" = "Enter your password";
237+
238+
/* Placeholder of secret input cell when user confirms password. */
239+
"PlaceholderNewPassword" = "New password";
240+
241+
/* Placeholder of secret input cell when user changes password. */
242+
"PlaceholderChosePassword" = "Choose password";

0 commit comments

Comments
 (0)