-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathapp_en.arb
2035 lines (2035 loc) · 85.3 KB
/
app_en.arb
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
{
"@@last_modified": "2024-11-18",
"@@locale": "en",
"@a11yAddFolderButton": {
"description": "Buttontext to add a new folder."
},
"@a11yAddTokenManuallyButton": {
"description": "Title of the screen where tokens are created manually."
},
"@a11yCloseSearchTokensButton": {
"description": "A11y label for the button to close the search tokens field."
},
"@a11yLicensesButton": {
"description": "Title of the licenses screen."
},
"@a11yPushTokensButton": {
"description": "A11y label for the push tokens button."
},
"@a11yScanQrCodeButton": {
"description": "Accessibility label for the button to scan qr-codes."
},
"@a11yScanQrCodeViewActive": {
"description": "A11y label for the scan qr code view when the camera is active."
},
"@a11yScanQrCodeViewFlashlightOff": {
"description": "A11y label for the flash light button of the scan qr code view when the flashlight is off."
},
"@a11yScanQrCodeViewFlashlightOn": {
"description": "A11y label for the flash light button of the scan qr code view when the flashlight is on."
},
"@a11yScanQrCodeViewGallery": {
"description": "A11y label for the gallery button of the scan qr code view."
},
"@a11yScanQrCodeViewInactive": {
"description": "A11y label for the scan qr code view when the camera is not active."
},
"@a11ySearchTokensButton": {
"description": "A11y label for the search tokens input field."
},
"@a11ySecondsUntilNextOTP": {
"description": "A11y label for the animated countdown until the next OTP is generated.",
"placeholders": {
"seconds": {
"example": "30",
"type": "int"
}
}
},
"@a11ySettingsButton": {
"description": "Accessibility label for the button to open the settings page."
},
"@accept": {
"description": "Label for e.g. a button. Something gets accepted by the user."
},
"@addANewFolder": {
"description": "Title of the dialog where a new folder can be added."
},
"@addSystemInfo": {
"description": "Description of the checkbox to add system information to the error report."
},
"@addToken": {
"description": "The button to open the screen to add tokens by hand."
},
"@additionalErrorMessage": {
"description": "Label for the box where the user can write somthing about the error."
},
"@algorithm": {
"description": "Title of the dropdown button where the encoding is selected."
},
"@algorithmUnsupported": {
"description": "Error message when the algorithm is not supported.",
"placeholders": {
"algorithm": {
"example": "MD5",
"type": "String"
}
}
},
"@allTokensSynchronized": {
"description": "Content of the push synchronization dialog. Signaling the user that everything worked."
},
"@asFile": {
"description": "Buttontext to save the backup as a file."
},
"@asQrCode": {
"description": "Buttontext to export the token as a qr code."
},
"@askLogSentDescription": {
"description": "The content of the dialog that asks the user if he sent the error log."
},
"@authNotSupportedBody": {
"description": "Message shown as a dialog body that tells the user that device credentials or biometrics must be setup for this action."
},
"@authNotSupportedTitle": {
"description": "Message shown as a dialog title that tells the user that device credentials or biometrics must be setup for this action."
},
"@authToAcceptPushRequest": {
"description": "Message to accepting a push request for authentication."
},
"@authToDeclinePushRequest": {
"description": "Message for declining a push request for authentication."
},
"@authToDiscardPushRequest": {
"description": "Message for discarding a push request for authentication."
},
"@authenticateToShowOtp": {
"description": "Reason to authenticate when trying to view a one time password."
},
"@authenticateToUnLockToken": {
"description": "Reason to authenticate when trying to lock or unlock a token."
},
"@authentication": {
"description": "Title of the authentication dialog."
},
"@biometricHint": {
"description": "Hint message advising the user how to authenticate with biometrics. It is used on Android side. Maximum 60 characters."
},
"@biometricNotRecognized": {
"description": "Message to let the user know that authentication was failed. It is used on Android side. Maximum 60 characters."
},
"@biometricRequiredTitle": {
"description": "Message showed as a title in a dialog which indicates the user has not set up biometric authentication on their device. It is used on Android side. Maximum 60 characters."
},
"@biometricSuccess": {
"description": "Message to let the user know that authentication was successful. It is used on Android side. Maximum 60 characters."
},
"@butDiscardIt": {
"description": "Smaller text for the button to discard the push request."
},
"@cancel": {
"description": "Button to cancel an action."
},
"@cannotNavigateWithoutContext": {
"description": "Error message when the user tries to navigate to a screen without providing the necessary context."
},
"@checkServerCertificate": {
"description": "Error message when the server certificate should be checked."
},
"@checkYourNetwork": {
"description": "Tells the user to check the network connection."
},
"@clearErrorLog": {
"description": "Button to clear the error log."
},
"@clipboardEmpty": {
"description": "Status message when trying to copy from an empty clipboard."
},
"@confirmDeletion": {
"description": "Title of the dialog where a token can be deleted."
},
"@confirmDeletionOf": {
"description": "Asks for confirmation on deleting a token.",
"placeholders": {
"name": {
"example": "PUSH1234",
"type": "String"
}
},
"type": "text"
},
"@confirmFolderDeletionHint": {
"description": "Gives the user a hint about the consequences of deleting a folder."
},
"@confirmPassword": {
"description": "Title of the input field where the user has to confirm the password."
},
"@confirmTokenDeletionHint": {
"description": "Gives the user a hint about the consequences of deleting a token."
},
"@confirmation": {
"description": "Title of the confirmation dialog."
},
"@connectionFailed": {
"description": "Tells the user that the connection failed."
},
"@container": {
"description": "Title for the container view."
},
"@containerAlreadyExists": {
"description": "Title of the dialog that tells the user that the container already exists."
},
"@containerDeleteCorrespondingTokenDialogContent": {
"description": "Content of the dialog that asks the user if they want to delete the corresponding tokens."
},
"@containerDetails": {
"description": "Title of the container details dialog."
},
"@containerRolloutExpired": {
"description": "Message when a container has expired and can not be rolled out anymore",
"placeholders": {
"serial": {
"example": "PUSH1234A",
"type": "String"
}
}
},
"@containerRolloutSendDeviceInfoDialogContent": {
"description": "Content of the dialog that asks the user if they want to send device information."
},
"@containerRolloutSendDeviceInfoDialogTitle": {
"description": "Title of the dialog that asks the user if they want to send device information."
},
"@containerSerial": {
"description": "Title of the container serial field."
},
"@containerSyncDialogNewTokens": {
"description": "The title of the part of the dialog that tells the user that new tokens were added."
},
"@containerSyncDialogRemovedTokens": {
"description": "The title of the part of the dialog that tells the user that tokens were removed."
},
"@containerSyncDialogTitle": {
"description": "Title of the add container Dialog",
"placeholders": {
"serial": {
"example": "SMPH0008CC47",
"type": "String"
}
}
},
"@containerSyncUrl": {
"description": "Title of the container sync URL field."
},
"@containerTransferDeleteTokensButtonText": {
"description": "Button text to delete corresponding tokens after container transfer."
},
"@containerTransferDeleteTokensSuccessMessage": {
"description": "Message when a container and its corresponding tokens have been successfully removed from the device."
},
"@containerTransferDialogContentAborted": {
"description": "Content of the dialog that tells the user that the container transfer was aborted."
},
"@continueButton": {
"description": "Button to continue an action."
},
"@copyOTPToClipboard": {
"description": "A11y label for the button to copy the otp value to the clipboard."
},
"@couldNotConnectToServer": {
"description": "Error message when the connection to the server could not be established."
},
"@couldNotFindGlobalRef": {
"description": "Error message when a global reference could not be found."
},
"@couldNotFindTokenForWidgetId": {
"description": "Error message when a token could not be found for a widget id.",
"placeholders": {
"id": {
"example": "1234",
"type": "String"
}
}
},
"@couldNotSignMessage": {
"description": "Tells the user that the message could not be signed."
},
"@counter": {
"description": "Describes the field where the tokens counter should be entered."
},
"@create": {
"description": "Buttontext to create something e.g. a Folder."
},
"@createdAt": {
"description": "Label for the creation date of the token."
},
"@creator": {
"description": "Label for the creator of the token."
},
"@dayPasswordValidFor": {
"description": "Text for the trailing part of the day password token."
},
"@dayPasswordValidUntil": {
"description": "Text for the trailing part of the day password token."
},
"@decline": {
"description": "Label for e.g. a button. Something gets declined by the user."
},
"@declineIt": {
"description": "Smaller text for the button to decline the push request."
},
"@decrypt": {
"description": "Buttontext to decrypt the tokens."
},
"@decryptErrorButtonDelete": {
"description": "Buttontext to delete all tokens when they could not be decrypted."
},
"@decryptErrorButtonRetry": {
"description": "Buttontext to retry decrypting the tokens when a decryption error occurred."
},
"@decryptErrorButtonSendError": {
"description": "Buttontext to send an error report when a decryption error occurred."
},
"@decryptErrorContent": {
"description": "Dialog content when the tokens could not be decrypted."
},
"@decryptErrorDeleteConfirmationContent": {
"description": "Content of the dialog that ensures the user wants to delete all tokens."
},
"@decryptErrorTitle": {
"description": "Title of the dialog when the tokens could not be decrypted."
},
"@delete": {
"description": "Label that describes deleting the token."
},
"@deleteAllButtonText": {
"description": "Button text to delete corresponding tokens after container deletion."
},
"@deleteContainerDialogContent": {
"description": "Content of the dialog that ensures the user wants to delete a container."
},
"@deleteContainerDialogTitle": {
"description": "Title of the dialog where a container can be deleted.",
"placeholders": {
"serial": {
"example": "SMPH0008CC47",
"type": "String"
}
}
},
"@deleteLockedToken": {
"description": "Text for the authentication dialog when the user wants to delete a locked token."
},
"@deleteOnlyContainerButtonText": {
"description": "Button text to delete only the container not the corresponding tokens."
},
"@details": {
"description": "Title of the details action Button."
},
"@deviceCredentialsRequiredTitle": {
"description": "Message showed as a title in a dialog which indicates the user has not set up credentials authentication on their device. It is used on Android side. Maximum 60 characters."
},
"@deviceCredentialsSetupDescription": {
"description": "Used for 'deviceCredentialsSetupDescription' of 'AndroidAuthMessages'"
},
"@digits": {
"description": "Title of the dropdown button where the number of digits for the opt value is selected."
},
"@dismiss": {
"description": "Text of a button that closes a dialog."
},
"@done": {
"description": "Buttontext for finishing an action."
},
"@edit": {
"description": "Label for the edit action."
},
"@editLockedToken": {
"description": "Text for the authentication dialog when the user wants to edit a locked token."
},
"@editToken": {
"description": "Title for the edit token dialog."
},
"@enablePolling": {
"description": "Name of the setting switch that enables polling."
},
"@encoding": {
"description": "Title of the dropdown button where the encoding is selected."
},
"@enterDetailsForToken": {
"description": "Title of the screen where tokens are created manually, tells the user to enter all required values."
},
"@enterLink": {
"description": "Buttontext for the import type link."
},
"@enterPassphraseDialogHint": {
"description": "Hint of the Textfield in the enter passphrase Dialog"
},
"@enterPassphraseDialogTitle": {
"description": "Title of the enter passphrase Dialog"
},
"@enterPasswordToEncrypt": {
"description": "Content of the dialog where the user has to enter a password to encrypt the tokens."
},
"@errorLogCleared": {
"description": "Message that tells the user that the error log was cleared."
},
"@errorLogEmpty": {
"description": "Message that tells the user that the error log is empty."
},
"@errorLogTitle": {
"description": "Title of the error log screen."
},
"@errorMailBody": {
"description": "Message for email body"
},
"@errorMissingPrivateKey": {
"description": "Error message when the private key is missing."
},
"@errorRollOutFailed": {
"description": "Tells the user that the token could not be rolled out, because a network error occurred.",
"placeholders": {
"name": {
"example": "PUSH1234A",
"type": "String"
}
},
"type": "text"
},
"@errorRollOutNoConnectionToServer": {
"description": "Tells the user that the roll-out failed because the server could not be reached.",
"placeholders": {
"name": {
"example": "PUSH1234A",
"type": "String"
}
}
},
"@errorRollOutNotPossibleAnymore": {
"description": "Tells the user that the roll-out and not possible anymore for some reason."
},
"@errorRollOutSSLHandshakeFailed": {
"description": "Tells the user that the roll-out failed because the SSL handshake failed."
},
"@errorRollOutUnknownError": {
"description": "Tells the user that the roll-out failed because of an unknown error.",
"placeholders": {
"e": {
"example": "IllegalArgumentException on Line 5 ...",
"type": "String"
}
},
"type": "text"
},
"@errorRolloverNotAllowed": {
"description": "Error message when the rollover for a container is not allowed."
},
"@errorSavingFile": {
"description": "Tells the user that the file could not be saved."
},
"@errorSynchronizationNoNetworkConnection": {
"description": "Tells the user that synchronizing the push tokens failed because the server could not be reached."
},
"@errorTokenExpired": {
"description": "The submessage (reason) of “errorRollOutNotPossibleAnymore“ that tells the user that the token is expired.",
"placeholders": {
"name": {
"example": "PUSH1234A",
"type": "String"
}
}
},
"@errorUnlinkingPushToken": {
"description": "Error message when unlinking a push token failed.",
"placeholders": {
"label": {
"example": "PUSH1234A",
"type": "String"
}
}
},
"@errorUnregisterNotAllowed": {
"description": "Error message when unregistering for a container is not allowed."
},
"@errorWhenPullingChallenges": {
"description": "errorWhenPullingChallenges",
"placeholders": {
"name": {
"example": "PUSH1234A",
"type": "String"
}
}
},
"@exampleUrl": {
"description": "Shows the user an example of a valid URL."
},
"@expandLockedFolder": {
"description": "Text for the authentication dialog when the user wants to expand a locked folder."
},
"@export": {
"description": "Buttontext to export tokens."
},
"@exportAllTokens": {
"description": "Description of the checkbox to export all tokens."
},
"@exportLockedTokenReason": {
"description": "Text for the authentication dialog when the user wants to export a locked token."
},
"@exportNonPrivacyIDEATokens": {
"description": "Buttontext to export non privacyIDEA tokens."
},
"@exportOneMore": {
"description": "Button to export one more token."
},
"@exportTokens": {
"description": "Title of the export Tokens dialog."
},
"@exportTokensHintDialogTitle": {
"description": "Title of the dialog that informs the user about the export of tokens."
},
"@exportingTokens": {
"description": "Text for the loading indicator when exporting tokens."
},
"@failedToFinalizeContainer": {
"description": "Error message when finalizing a container failed.",
"placeholders": {
"serial": {
"example": "SMPH0008CC47",
"type": "String"
}
}
},
"@failedToLoad": {
"description": "Error message when something could not be loaded.",
"placeholders": {
"name": {
"example": "token data",
"type": "String"
}
}
},
"@failedToRenewSecrets": {
"description": "Error message when the secrets of the tokens could not be renewed."
},
"@failedToSyncContainer": {
"placeholders": {
"serial": {
"example": "SMPH0008CC47",
"type": "String"
}
}
},
"@feedback": {
"description": "Text for the feedback button and view title of the feedback screen."
},
"@feedbackDescription": {
"description": "Description for the feedback screen."
},
"@feedbackHint": {
"description": "Descripes waht happens when the user clicks on the send button."
},
"@feedbackPrivacyPolicy1": {
"description": "First part of the text that tells the user that he agrees to the privacy policy by sending feedback."
},
"@feedbackPrivacyPolicy2": {
"description": "Taping on this should open the privacy policy."
},
"@feedbackPrivacyPolicy3": {
"description": "Last part of the text that tells the user that he agrees to the privacy policy by sending feedback."
},
"@feedbackSentDescription": {
"description": "The content of the dialog that appears after the feedback was sent."
},
"@feedbackSentTitle": {
"description": "The Title of the dialog that appears after the feedback was sent."
},
"@feedbackTitle": {
"description": "First big line of the feedback screen."
},
"@fileNotAvailable": {
"description": "Error message when the file is not available."
},
"@fileSavedToDownloadsFolder": {
"description": "Tells the user that the file was saved to the downloads folder."
},
"@finalizationState": {
"description": "Title of the finalization state field."
},
"@finalizeContainerFailed": {
"description": "Text for the error message when finalizing a container failed for some reason."
},
"@firebaseToken": {
"description": "Label for the field where the firebase token is shown."
},
"@folderName": {
"description": "Label for the input field where the folder name should be entered."
},
"@forceDeleteDialogContent": {
"description": "Content of the dialog that tells the user that the server was unreachable and asks if the user wants to delete the container anyway."
},
"@generatingPhonePart": {
"description": "Title of a dialog telling the user that the phone part gets generated right now."
},
"@gitHubButton": {
"description": "Buttontext to open the GitHub page."
},
"@goToSettingsButton": {
"description": "Message showed on a button that the user can click to go to settings pages from the current dialog. It is used on both Android and iOS side. Maximum 30 characters."
},
"@goToSettingsDescription": {
"description": "Tells the user that they need to set up device credentials in the device's settings."
},
"@grantCameraPermissionDialogButton": {
"description": "Buttontext to grant the camera permission."
},
"@grantCameraPermissionDialogContent": {
"description": "Content of the dialog that asks the user to grant the camera permission."
},
"@grantCameraPermissionDialogPermanentlyDenied": {
"description": "Description for the permanently denied camera permission."
},
"@grantCameraPermissionDialogTitle": {
"description": "Title of the dialog that asks the user to grant the camera permission."
},
"@handshakeFailed": {
"description": "Error message when the handshake failed."
},
"@handshakeFailedLongText": {
"description": "Error message when the handshake with the server failed."
},
"@hidePushTokens": {
"description": "Label for the switch to hide push tokens."
},
"@hidePushTokensDescription": {
"description": "Descripes what happens when the user hides the push tokens."
},
"@httpStatus": {
"description": "HTTP status code",
"placeholders": {
"httpCode": {
"example": "404",
"type": "String"
}
}
},
"@imageUrl": {
"description": "Title of the image URL field."
},
"@importConflictToken": {
"description": "Title for the section where the user can see the conflicting tokens.",
"placeholders": {
"count": {
"example": "5",
"type": "int"
}
}
},
"@importExistingToken": {
"description": "Title for the section where the user can see the tokens that already exist.",
"placeholders": {
"count": {
"example": "5",
"type": "int"
}
}
},
"@importExportTokens": {
"description": "Title of the import/export settings group."
},
"@importFailedToken": {
"description": "Title for the section where the user can see the tokens that could not be imported.",
"placeholders": {
"count": {
"example": "5",
"type": "int"
}
}
},
"@importHint2FAS": {
"description": "Tells the user importent information about the import of 2FAS tokens."
},
"@importHintAegisBackupFile": {
"description": "Tells the user importent information about the import of Aegis backup files."
},
"@importHintAegisLink": {
"description": "Tells the user importent information about the import of Aegis links."
},
"@importHintAegisQrScan": {
"description": "Tells the user importent information about the import of Aegis qr codes."
},
"@importHintAuthenticatorProFile": {
"description": "Tells the user importent information about the import of Authenticator Pro files."
},
"@importHintFreeOtpPlusFile": {
"description": "Tells the user importent information about the import of FreeOTP+ files."
},
"@importHintFreeOtpPlusQrScan": {
"description": "Tells the user importent information about the import of FreeOTP+ qr codes."
},
"@importHintGoogleQrFile": {
"description": "Tells the user importent information about the import of Google qr codes."
},
"@importHintGoogleQrScan": {
"description": "Tells the user importent information about the import of Google qr codes."
},
"@importHintPrivacyIdeaFile": {
"description": "Tells the user importent information about the import of privacyIDEA files."
},
"@importHintPrivacyIdeaQrScan": {
"description": "Tells the user importent information about the import of privacyIDEA qr codes."
},
"@importNTokens": {
"description": "Buttontext to import n tokens.",
"placeholders": {
"count": {
"example": "5",
"type": "int"
}
}
},
"@importNewToken": {
"description": "Title for the section where the user can see the new tokens.",
"placeholders": {
"count": {
"example": "5",
"type": "int"
}
}
},
"@importTokens": {
"description": "Title of the import Tokens screen when it is not clear where the tokens come from."
},
"@importedVia": {
"description": "Label for the import method of the token."
},
"@increaseCounter": {
"description": "A11y label for the button that increases the counter."
},
"@indelibleTokenContent": {
"description": "Content for the indelible token dialog"
},
"@indelibleTokenTitle": {
"description": "Title for the indelible token dialog"
},
"@initialTokenAssignmentDialogButtonSelected": {
"description": "Button text to send selected OTPs."
},
"@initialTokenAssignmentDialogButtonZero": {
"description": "Button text to send no OTPs."
},
"@initialTokenAssignmentDialogContent1": {
"description": "First part of the dialog content to ask the user if he wants to automatically assign a token to a container",
"placeholders": {
"url": {
"description": "The server URL from the container",
"example": "https://example.com/",
"type": "String"
}
}
},
"@initialTokenAssignmentDialogContent2": {
"description": "Second part of the dialog content to ask the user if he wants to automatically assign a token to a container"
},
"@initialTokenAssignmentDialogQuestion": {
"description": "Question if the user wants to continue with the automatic assignment of a token to a container"
},
"@initialTokenAssignmentDialogSSLWarning1": {
"description": "First part of the warning that tells the user that SSL verification is disabled."
},
"@initialTokenAssignmentDialogSSLWarning2": {
"description": "Second part of the warning that tells the user that SSL verification is disabled."
},
"@initialTokenAssignmentDialogTitle": {
"description": "Title of the dialog to ask the user if he wants to automatically assign a token to a container"
},
"@internalServerError": {
"description": "Error message when an internal server error occurred.",
"placeholders": {
"code": {
"example": "500",
"type": "String"
}
}
},
"@introAddFolder": {
"description": "Text for the introduction that explains how to add a folder."
},
"@introAddTokenManually": {
"description": "Introduction text for the manual token enrollment."
},
"@introDragToken": {
"description": "Text for the introduction that explains how to drag a token."
},
"@introEditToken": {
"description": "Text for the introduction that explains how to edit a token."
},
"@introHidePushTokens": {
"description": "Text for the introduction that explains where the user can find the hidden push tokens."
},
"@introLockToken": {
"description": "Text for the introduction that explains how to lock a token."
},
"@introPollForChallenges": {
"description": "Text for the introduction that explains how to poll for challenges."
},
"@introScanQrCode": {
"description": "Text for the introduction that explains how to scan a qr code."
},
"@introTokenSwipe": {
"description": "Text for the introduction that explains how to see the available actions for a token."
},
"@invalidBackupFile": {
"description": "Error message when the backup file is invalid.",
"placeholders": {
"appName": {
"example": "privacyIDEA Authenticator",
"type": "String"
}
}
},
"@invalidHostForScheme": {
"description": "Error message when the host is invalid for the scheme.",
"placeholders": {
"host": {
"example": "example.com",
"type": "String"
},
"scheme": {
"example": "pia",
"type": "String"
}
}
},
"@invalidLink": {
"description": "Error message when the link is invalid.",
"placeholders": {
"appName": {
"example": "privacyIDEA Authenticator",
"type": "String"
}
}
},
"@invalidQrFile": {
"description": "Error message when the qr file is invalid.",
"placeholders": {
"appName": {
"example": "privacyIDEA Authenticator",
"type": "String"
}
}
},
"@invalidQrScan": {
"description": "Error message when the qr scan is invalid.",
"placeholders": {
"appName": {
"example": "privacyIDEA Authenticator",
"type": "String"
}
}
},
"@invalidUrl": {
"description": "Error message when the entered URL is invalid."
},
"@invalidValue": {
"description": "Error message when the value is not valid for the parameter.",
"placeholders": {
"parameter": {
"example": "counter",
"type": "String"
},
"type": {
"example": "int",
"type": "String"
},
"value": {
"example": "5",
"type": "String"
}
}
},
"@invalidValueIn": {
"description": "Text for the error message when a value is not valid for a parameter in a specific map.",
"placeholders": {
"map": {
"example": "query parameters",
"type": "String"
},
"parameter": {
"example": "counter",
"type": "String"
},
"type": {
"example": "int",
"type": "String"
},
"value": {
"example": "5",
"type": "String"
}
}
},
"@isExpotableQuestion": {
"description": "Label for the question if the token is exportable."
},
"@isPiTokenQuestion": {
"description": "Title of the field where the user can see if the token is a privacyIDEA token."
},
"@issuer": {
"description": "Title of the issuer field."
},
"@issuerLabel": {
"description": "Label for the issuer of the token, container... etc.",
"placeholders": {
"name": {
"example": "privacyIDEA",
"type": "String"
}
}
},
"@language": {
"description": "Title of language setting group."
},
"@legacySigningErrorMessage": {
"description": "Message of the error dialog that is shown when an error occurs while using a legacy token."
},
"@legacySigningErrorTitle": {
"description": "Title of the error dialog that is shown when an error occurs while using a legacy token.",
"placeholders": {
"tokenLabel": {
"example": "PUSH1234A",
"type": "String"
}
}
},
"@licensesAndVersion": {
"description": "Buttontext to open the licenses and version screen."
},
"@linkHomeWidgetViewTitle": {
"description": "Title of the link home widget view."
},
"@linkMustOtpAuth": {
"description": "Error message when the link does not start with otpauth://."
},
"@linkedContainer": {
"description": "Label for the linked container serial number."
},
"@lock": {
"description": "Description of button that locks a token."
},
"@lockOut": {
"description": "Message advising the user to re-enable biometrics on their device. It shows in a dialog on iOS side."
},
"@logMenu": {
"description": "Button to open the log menu."
},
"@malformedData": {
"description": "Error message when the data is malformed."
},
"@markQrCode": {
"description": "Buttontext to mark the qr code."
},
"@missingRequiredParameter": {
"description": "Error message when a required parameter is missing.",
"placeholders": {
"parameter": {
"example": "counter",
"type": "String"
}
}
},
"@missingRequiredParameterIn": {
"description": "Error message when a required parameter is missing in a specific map.Error message when a required parameter is missing in a specific map.Error message when a required parameter is missing in a specific map.Error message when a required parameter is missing in a specific map.",
"placeholders": {
"map": {
"example": "query parameters",
"type": "String"
},
"parameter": {
"example": "counter",
"type": "String"
}
}
},
"@missingWidgetId": {
"description": "Error message when the widget id is missing."
},
"@mustNotBeEmpty": {
"description": "Error message when a field must not be empty.",
"placeholders": {
"field": {
"example": "Name",
"type": "String"
}
}
},
"@name": {
"description": "Describes the field where the tokens name should be entered."
},
"@no": {
"description": "Content of the field when the answer is no."
},
"@noDataFoundInQrCode": {
"description": "Error message when no data is found in the QR code."
},
"@noFbToken": {
"description": "Tells the user that there is no Firebase token available."
},
"@noMailAppDescription": {
"description": "Description of the dialog that tells the user that there is no mail app available."
},
"@noMailAppTitle": {
"description": "Title of the dialog that tells the user that there is no mail app available."
},
"@noNetworkConnection": {
"description": "Tells the user that there is no network connection."
},
"@noProcessorFoundForHost": {
"description": "Error message when no processor is found for the host.",
"placeholders": {
"host": {
"example": "example.com",
"type": "String"
}
}
},
"@noPublicKey": {
"description": "Error message when the public key is missing."
},
"@noResultText1": {
"description": "first no result text"
},