-
Notifications
You must be signed in to change notification settings - Fork 490
Expand file tree
/
Copy pathLocalizable.xcstrings
More file actions
1134 lines (1109 loc) · 31.2 KB
/
Localizable.xcstrings
File metadata and controls
1134 lines (1109 loc) · 31.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"sourceLanguage" : "en",
"strings" : {
"AccountDisabledError" : {
"comment" : "Error message displayed when the account is disabled. Use short/abbreviated translation for 'email' which is less than 15 chars.",
"extractionState" : "migrated",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "That email address is for an account that has been disabled."
}
}
}
},
"ActionCantBeUndone" : {
"comment" : "Alert message shown before account deletion.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "This action can't be undone"
}
}
}
},
"AddPasswordAlertMessage" : {
"comment" : "Alert message shown when adding account password.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "To add password to your account, you will need to sign in again."
}
}
}
},
"AddPasswordTitle" : {
"comment" : "Controller title shown when adding password to account.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Add password"
}
}
}
},
"Already have an account?" : {
},
"AS_AddPassword" : {
"comment" : "Account Settings cell title Add Password.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Add password"
}
}
}
},
"AS_ChangePassword" : {
"comment" : "Account Settings cell title Change Password.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Change password"
}
}
}
},
"AS_DeleteAccount" : {
"comment" : "Account Settings cell title Delete Account.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Delete Account"
}
}
}
},
"AS_Email" : {
"comment" : "Account Settings cell title Email. Use short/abbreviated translation for 'email' which is less than 15 chars.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Email"
}
}
}
},
"AS_Name" : {
"comment" : "Account Settings cell title Name.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Name"
}
}
}
},
"AS_SectionLinkedAccounts" : {
"comment" : "Account Settings section title Linked Accounts.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Linked Accounts"
}
}
}
},
"AS_SectionProfile" : {
"comment" : "Account Settings section title Profile.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Profile"
}
}
}
},
"AS_SectionSecurity" : {
"comment" : "Account Settings section title Security.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Security"
}
}
}
},
"AS_SignOut" : {
"comment" : "Account Settings cell title Sign Out.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Sign Out"
}
}
}
},
"AuthPickerTitle" : {
"comment" : "Title for auth picker screen.",
"extractionState" : "stale",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Welcome"
}
}
}
},
"Back" : {
"comment" : "Back button title."
},
"Cancel" : {
"comment" : "Cancel button title.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Cancel"
}
}
}
},
"CannotAuthenticateError" : {
"comment" : "Error message displayed when the app cannot authenticate user's account.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "This type of account isn't supported by this app"
}
}
}
},
"CantFindProvider" : {
"comment" : "Error message displayed when FUIAuth is not configured with third party provider. Parameter is value of provider (e g Google, Facebook etc)",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Can't find provider for %@."
}
}
}
},
"ChoosePassword" : {
"comment" : "Placeholder for the password text field in a sign up form.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Choose password"
}
}
}
},
"Close" : {
"comment" : "Alert button title Close.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Close"
}
}
}
},
"Confirm password" : {
},
"ConfirmEmail" : {
"comment" : "Title of confirm email label.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Confirm Email"
}
}
}
},
"Delete" : {
"comment" : "Text of Delete action button.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Delete"
}
}
}
},
"Delete account" : {
},
"DeleteAccountBody" : {
"comment" : "Alert message body shown to confirm account deletion action.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "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"
}
}
}
},
"DeleteAccountConfirmationMessage" : {
"comment" : "Explanation message shown before deleting account.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "This will erase all data associated with your account, and can't be undone. Are you sure you want to delete your account?"
}
}
}
},
"DeleteAccountConfirmationTitle" : {
"comment" : "Alert message title shown to confirm account deletion action.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Delete Account?"
}
}
}
},
"DeleteAccountControllerTitle" : {
"comment" : "Title of Controller shown before deleting account",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Delete account"
}
}
}
},
"Dismiss" : {
},
"Don't have an account yet?" : {
},
"EditEmailTitle" : {
"comment" : "Controller title shown when editing account email. Use short/abbreviated translation for 'email' which is less than 15 chars.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Edit email"
}
}
}
},
"EditNameTitle" : {
"comment" : "Controller title shown when editing account name.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Edit name"
}
}
}
},
"EditPasswordAlertMessage" : {
"comment" : "Alert message shown when editing account password.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "To change password to your account, you will need to sign in again."
}
}
}
},
"EditPasswordTitle" : {
"comment" : "Controller title shown when editing password to account.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Change password"
}
}
}
},
"Email" : {
"comment" : "Label next to a email text field. Use short/abbreviated translation for 'email' which is less than 15 chars."
},
"EmailAlreadyInUseError" : {
"comment" : "Error message displayed when the email address is already in use. Use short/abbreviated translation for 'email' which is less than 15 chars.",
"extractionState" : "migrated",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "The email address is already in use by another account."
}
}
}
},
"EmailsDontMatch" : {
"comment" : "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.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Emails don't match"
}
}
}
},
"EmailSentConfirmationMessage" : {
"comment" : "Message displayed after email is sent. The placeholder is the email address that the email is sent to.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "A sign-in email with additional instructions was sent to %@. Check your email to complete sign-in."
}
}
}
},
"Enter Password" : {
},
"EnterYourEmail" : {
"comment" : "Title for email entry screen, email text field placeholder. Use short/abbreviated translation for 'email' which is less than 15 chars.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Enter your email"
}
}
}
},
"EnterYourPassword" : {
"comment" : "Password text field placeholder.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Enter your password"
}
}
}
},
"Error" : {
"comment" : "Alert title Error.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Error"
}
}
}
},
"ExistingAccountTitle" : {
"comment" : "Title of an alert shown to an existing user coming back to the app.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "You already have an account"
}
}
}
},
"FirstAndLastName" : {
"comment" : "Name text field placeholder.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "First & last name"
}
}
}
},
"ForgotPassword" : {
"comment" : "Button text for 'Forgot Password' action.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Forgot password?"
}
}
}
},
"ForgotPasswordTitle" : {
"comment" : "Title of forgot password button.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Trouble signing in?"
}
}
}
},
"Forgotten Password?" : {
},
"Instructions" : {
},
"InvalidEmailError" : {
"comment" : "Error message displayed when user enters an invalid email address. Use short/abbreviated translation for 'email' which is less than 15 chars.",
"extractionState" : "migrated",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "That email address isn't correct."
}
}
}
},
"InvalidPasswordError" : {
"comment" : "Error message displayed when user enters an empty password.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Password cannot be empty."
}
}
}
},
"Log in" : {
},
"Log in with password" : {
},
"Login" : {
},
"Name" : {
"comment" : "Label next to a name text field.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Name"
}
}
}
},
"Next" : {
"comment" : "Next button title.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Next"
}
}
}
},
"OK" : {
"comment" : "OK button title.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "OK"
}
}
}
},
"Password" : {
"comment" : "Label next to a password text field."
},
"Password Recovery" : {
},
"PasswordRecoveryEmailSentMessage" : {
"comment" : "Message displayed when the email for password recovery has been sent.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Follow the instructions sent to %@ to recover your password."
}
}
}
},
"PasswordRecoveryEmailSentTitle" : {
"comment" : "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.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Check your email"
}
}
}
},
"PasswordRecoveryMessage" : {
"comment" : "Explanation on how the password of an account can be recovered. Use short/abbreviated translation for 'email' which is less than 15 chars.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Get instructions sent to this email that explain how to reset your password."
}
}
}
},
"PasswordRecoveryTitle" : {
"comment" : "Title for password recovery screen.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Recover password"
}
}
}
},
"PasswordVerificationMessage" : {
"comment" : "Message to explain to the user that password is needed for an account with this email address.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "You’ve already used %@ to sign in. Enter your password for that account."
}
}
}
},
"PlaceholderChosePassword" : {
"comment" : "Placeholder of secret input cell when user changes password.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Choose password"
}
}
}
},
"PlaceholderEnterEmail" : {
"comment" : "Placeholder of input cell when user changes name. Use short/abbreviated translation for 'email' which is less than 15 chars.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Enter your email"
}
}
}
},
"PlaceholderEnterName" : {
"comment" : "Placeholder of input cell when user changes name.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Enter your name"
}
}
}
},
"PlaceholderEnterPassword" : {
"comment" : "Placeholder of secret input cell when user changes password.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Enter your password"
}
}
}
},
"PlaceholderNewPassword" : {
"comment" : "Placeholder of secret input cell when user confirms password.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "New password"
}
}
}
},
"Please check your email for email sign-in link." : {
},
"Please check your email for password recovery instructions." : {
},
"Please check your email for verification link." : {
},
"Prefer Email link sign-in?" : {
},
"PrivacyPolicy" : {
"comment" : "Text linked to a web page with the Privacy Policy content.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Privacy Policy"
}
}
}
},
"ProviderTitleFacebook" : {
"comment" : "Title of Facebook provider",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Facebook"
}
}
}
},
"ProviderTitleGoogle" : {
"comment" : "Title of Google provider",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Google"
}
}
}
},
"ProviderTitlePassword" : {
"comment" : "Title of Password/Email provider. Use short/abbreviated translation for 'email' which is less than 15 chars.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Email"
}
}
}
},
"ProviderTitleTwitter" : {
"comment" : "Title of Twitter provider",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Twitter"
}
}
}
},
"ProviderUsedPreviouslyMessage" : {
"comment" : "Alert message to let user know what identity provider (second placeholder, ex. Google) was used previously for the email address (first placeholder).",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "You’ve already used %@. Sign in with %@ to continue."
}
}
}
},
"ReauthenticateEditPasswordAlertMessage" : {
"comment" : "Alert message shown when re-authenticating before editing account password.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "In order to change your password, you first need to enter your current password."
}
}
}
},
"Resend" : {
"comment" : "Resend button title.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Resend"
}
}
}
},
"Save" : {
"comment" : "Save button title.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Save"
}
}
}
},
"Send" : {
"comment" : "Send button title.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Send"
}
}
}
},
"Send email sign-in link" : {
},
"Sign in with email link" : {
},
"Sign out" : {
},
"Sign up" : {
},
"Signed in" : {
},
"SignedIn" : {
"comment" : "Title of successfully signed in label.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Signed in!"
}
}
}
},
"SignInEmailSent" : {
"comment" : "Message displayed after the email of sign-in link is sent.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Sign-in email Sent"
}
}
}
},
"SignInTitle" : {
"comment" : "Title for sign in screen and sign in button.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Sign in"
}
}
}
},
"SignInTooManyTimesError" : {
"comment" : "Error message displayed after user trying to sign in too many times.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "You’ve entered an incorrect password too many times. Try again in a few minutes."
}
}
}
},
"SignInWithEmail" : {
"comment" : "Sign in with email button label. Use short/abbreviated translation for 'email' which is less than 15 chars.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Sign in with email"
}
}
}
},
"SignInWithProvider" : {
"comment" : "Sign in with provider button label.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Sign in with %@"
}
}
}
},
"SignUpTitle" : {
"comment" : "Title for sign up screen.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Create account"
}
}
}
},
"SignUpTooManyTimesError" : {
"comment" : "Error message displayed when many accounts have been created from same IP address.",
"extractionState" : "migrated",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Too many account requests are coming from your IP address. Try again in a few minutes."
}
}
}
},
"Submit" : {
},
"TermsOfService" : {
"comment" : "Text linked to a web page with the Terms of Service content.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Terms of Service"
}
}
}
},
"TermsOfServiceMessage" : {
"comment" : "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.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "By continuing, you are indicating that you accept our %@ and %@."
}
}
}
},
"TroubleGettingEmailMessage" : {
"comment" : "Alert message displayed when user having trouble getting email.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "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."
}
}
}
},
"TroubleGettingEmailTitle" : {
"comment" : "Title used in trouble getting email alert view.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Trouble getting emails?"
}
}
}
},
"UnlinkAction" : {
"comment" : "Button title for unlinking account action.",
"extractionState" : "manual",
"localizations" : {
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "Unlink"
}
}