aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/values/strings.xml
blob: 6c4ba7b085d5f606cb4ad11651dd16416f8e534e (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
<?xml version="1.0" encoding="utf-8"?>
<resources>

    <!--
    GENERAL: Please put all strings inside quotes as described in example 1 on
    http://developer.android.com/guide/topics/resources/string-resource.html (scroll down to "Escaping apostrophes and quotes").
    -->

    <string name="app_name">"OpenKeychain"</string>

    <!-- title -->
    <string name="title_select_recipients">"Select Keys"</string>
    <string name="title_select_secret_key">"Select Your Key"</string>
    <string name="title_encrypt_text">"Encrypt Text"</string>
    <string name="title_encrypt_files">"Encrypt Files"</string>
    <string name="title_decrypt">"Decrypt"</string>
    <string name="title_unlock">"Unlock Key"</string>
    <string name="title_add_subkey">"Add subkey"</string>
    <string name="title_edit_key">"Edit Key"</string>
    <string name="title_preferences">"Settings"</string>
    <string name="title_cloud_search_preferences">"Cloud Search Preferences"</string>
    <string name="title_api_registered_apps">"Apps"</string>
    <string name="title_key_server_preference">"Keyservers"</string>
    <string name="title_change_passphrase">"Change Passphrase"</string>
    <string name="title_share_fingerprint_with">"Share fingerprint with…"</string>
    <string name="title_share_key">"Share key with…"</string>
    <string name="title_share_file">"Share file with…"</string>
    <string name="title_share_message">"Share message with…"</string>
    <string name="title_encrypt_to_file">"Encrypt To File"</string>
    <string name="title_decrypt_to_file">"Decrypt To File"</string>
    <string name="title_import_keys">"Import Keys"</string>
    <string name="title_add_keys">"Add Keys"</string>
    <string name="title_export_key">"Export Key"</string>
    <string name="title_export_keys">"Export Keys"</string>
    <string name="title_key_not_found">"Key Not Found"</string>
    <string name="title_send_key">"Upload to Keyserver"</string>
    <string name="title_certify_key">"Certify Identities"</string>
    <string name="title_key_details">"Key Details"</string>
    <string name="title_help">"Help"</string>
    <string name="title_log_display">"Log"</string>
    <string name="title_create_key">"Create Key"</string>
    <string name="title_exchange_keys">"Exchange Keys"</string>
    <string name="title_advanced_key_info">"Advanced Key Info"</string>
    <string name="title_keys">"Keys"</string>

    <!-- section -->
    <string name="section_user_ids">"Identities"</string>
    <string name="section_keys">"Subkeys"</string>
    <string name="section_cloud_search">"Cloud search"</string>
    <string name="section_general">"General"</string>
    <string name="section_defaults">"Defaults"</string>
    <string name="section_advanced">"Advanced"</string>
    <string name="section_passphrase_cache">"Passphrase Cache"</string>
    <string name="section_certify">"Certify"</string>
    <string name="section_actions">"Actions"</string>
    <string name="section_share_key">"Key"</string>
    <string name="section_certification_key">"Your Key used for certification"</string>
    <string name="section_upload_key">"Synchronize Key"</string>
    <string name="section_key_server">"Keyserver"</string>
    <string name="section_fingerprint">"Fingerprint"</string>
    <string name="section_key_to_certify">"Key to be certified"</string>
    <string name="section_decrypt_files">"Files"</string>
    <string name="section_decrypt_text">"Text"</string>
    <string name="section_certs">"Certificates"</string>

    <!-- button -->
    <string name="btn_decrypt_verify_file">"Decrypt, verify, and save file"</string>
    <string name="btn_decrypt_verify_message">"Decrypt and verify message"</string>
    <string name="btn_encrypt_file">"Encrypt and save file"</string>
    <string name="btn_encrypt_share_file">"Encrypt and share file"</string>
    <string name="btn_save">"Save"</string>
    <string name="btn_do_not_save">"Cancel"</string>
    <string name="btn_delete">"Delete"</string>
    <string name="btn_no_date">"No Expiry"</string>
    <string name="btn_okay">"Okay"</string>
    <string name="btn_export_to_server">"Upload To Keyserver"</string>
    <string name="btn_next">"Next"</string>
    <string name="btn_back">"Back"</string>
    <string name="btn_lookup_key">"Lookup key"</string>
    <string name="btn_share_encrypted_signed">"Encrypt and share message"</string>
    <string name="btn_view_cert_key">"View certification key"</string>
    <string name="btn_create_key">"Create key"</string>
    <string name="btn_add_files">"Add file(s)"</string>
    <string name="btn_add_share_decrypted_text">"Share decrypted text"</string>
    <string name="btn_decrypt_clipboard">"Decrypt from clipboard"</string>
    <string name="btn_decrypt_and_verify">"and verify signatures"</string>
    <string name="btn_decrypt_files">"Decrypt files"</string>

    <!-- menu -->
    <string name="menu_preferences">"Settings"</string>
    <string name="menu_help">"Help"</string>
    <string name="menu_export_key">"Export to file"</string>
    <string name="menu_delete_key">"Delete key"</string>
    <string name="menu_create_key">"Create my key"</string>
    <string name="menu_import_existing_key">"Import from file"</string>
    <string name="menu_search">"Search"</string>
    <string name="menu_beam_preferences">"Beam settings"</string>
    <string name="menu_key_edit_cancel">"Cancel"</string>
    <string name="menu_encrypt_to">"Encrypt to…"</string>
    <string name="menu_select_all">"Select all"</string>
    <string name="menu_add_keys">"Add keys"</string>
    <string name="menu_search_cloud">"Search cloud"</string>
    <string name="menu_export_all_keys">"Export all keys"</string>
    <string name="menu_advanced">"Show advanced info"</string>

    <!-- label -->
    <string name="label_message">"Message"</string>
    <string name="label_file">"File"</string>
    <string name="label_files">"File(s)"</string>
    <string name="label_file_colon">"File:"</string>
    <string name="label_no_passphrase">"No Passphrase"</string>
    <string name="label_passphrase">"Passphrase"</string>
    <string name="label_unlock">"Unlocking…"</string>
    <string name="label_passphrase_again">"Repeat Passphrase"</string>
    <string name="label_algorithm">"Algorithm"</string>
    <string name="label_ascii_armor">"File ASCII Armor"</string>
    <string name="label_file_ascii_armor">"Enable ASCII Armor"</string>
    <string name="label_write_version_header">"Let others know that you're using OpenKeychain"</string>
    <string name="label_write_version_header_summary">"Writes 'OpenKeychain v2.7' to OpenPGP signatures, ciphertext, and exported keys"</string>
    <string name="label_use_default_yubikey_pin">"Use default YubiKey PIN"</string>
    <string name="label_use_num_keypad_for_yubikey_pin">Use number keypad for YubiKey PIN</string>
    <string name="label_label_use_default_yubikey_pin_summary">"Uses default PIN (123456) to access YubiKeys over NFC"</string>
    <string name="label_asymmetric_from">"Signed by:"</string>
    <string name="label_to">"Encrypt to:"</string>
    <string name="label_delete_after_encryption">"Delete file after encryption"</string>
    <string name="label_delete_after_decryption">"Delete after decryption"</string>
    <string name="label_encryption_algorithm">"Encryption algorithm"</string>
    <string name="label_hash_algorithm">"Hash algorithm"</string>
    <string name="label_symmetric">"Encrypt with passphrase"</string>
    <string name="label_passphrase_cache_ttl">"Cache time"</string>
    <string name="label_passphrase_cache_subs">"Cache passphrases by subkey"</string>
    <string name="label_message_compression">"Message compression"</string>
    <string name="label_file_compression">"File compression"</string>
    <string name="label_keyservers">"Keyservers"</string>
    <string name="label_key_id">"Key ID"</string>
    <string name="label_creation">"Creation"</string>
    <string name="label_expiry">"Expiry"</string>
    <string name="label_usage">"Usage"</string>
    <string name="label_key_size">"Key Size"</string>
    <string name="label_ecc_curve">"Elliptic Curve"</string>
    <string name="label_main_user_id">"Primary identity"</string>
    <string name="label_name">"Name"</string>
    <string name="label_comment">"Comment"</string>
    <string name="label_email">"Email"</string>
    <string name="label_send_key">"Synchronize with the cloud"</string>
    <string name="label_fingerprint">"Fingerprint"</string>
    <string name="expiry_date_dialog_title">"Set expiry date"</string>
    <string name="label_first_keyserver_is_used">"(First keyserver listed is preferred)"</string>
    <string name="label_preferred">"preferred"</string>

    <string name="user_id_no_name">"&lt;no name&gt;"</string>
    <string name="none">"&lt;none&gt;"</string>
    <string name="no_key">"&lt;no key&gt;"</string>
    <string name="can_encrypt">"can encrypt"</string>
    <string name="can_sign">"can sign"</string>
    <string name="can_certify">"can certify"</string>
    <string name="can_certify_not">"cannot certify"</string>
    <string name="expired">"expired"</string>
    <string name="revoked">"revoked"</string>

    <plurals name="n_keys">
        <item quantity="one">"1 key"</item>
        <item quantity="other">"%d keys"</item>
    </plurals>

    <plurals name="n_keyservers">
        <item quantity="one">"%d keyserver"</item>
        <item quantity="other">"%d keyservers"</item>
    </plurals>

    <string name="secret_key">"Secret Key:"</string>

    <!-- choice -->
    <string name="choice_none">"None"</string>
    <string name="choice_15secs">"15 secs"</string>
    <string name="choice_1min">"1 min"</string>
    <string name="choice_3mins">"3 mins"</string>
    <string name="choice_5mins">"5 mins"</string>
    <string name="choice_10mins">"10 mins"</string>
    <string name="choice_20mins">"20 mins"</string>
    <string name="choice_40mins">"40 mins"</string>
    <string name="choice_1hour">"1 hour"</string>
    <string name="choice_2hours">"2 hours"</string>
    <string name="choice_4hours">"4 hours"</string>
    <string name="choice_8hours">"8 hours"</string>
    <string name="choice_forever">"forever"</string>
    <string name="dsa">"DSA"</string>
    <string name="elgamal">"ElGamal"</string>
    <string name="rsa">"RSA"</string>
    <string name="ecdh">"ECDH"</string>
    <string name="ecdsa">"ECDSA"</string>
    <string name="filemanager_title_open">"Open…"</string>
    <string name="warning">"Warning"</string>
    <string name="error">"Error"</string>
    <string name="error_message">"Error: %s"</string>

    <!-- key flags -->
    <string name="flag_certify">"Certify"</string>
    <string name="flag_sign">"Sign"</string>
    <string name="flag_encrypt">"Encrypt"</string>
    <string name="flag_authenticate">"Authenticate"</string>

    <!-- sentences -->
    <string name="wrong_passphrase">"Wrong passphrase."</string>
    <string name="no_filemanager_installed">"No compatible file manager installed."</string>
    <string name="passphrases_do_not_match">"The passphrases didn't match."</string>
    <string name="passphrase_must_not_be_empty">"Please enter a passphrase."</string>
    <string name="passphrase_for_symmetric_encryption">"Symmetric encryption."</string>
    <string name="passphrase_for">"Enter passphrase for '%s'"</string>
    <string name="pin_for">"Enter PIN for '%s'"</string>
    <string name="yubikey_pin_for">"Enter PIN to access YubiKey for '%s'"</string>
    <string name="nfc_text">"Hold YubiKey against the back of your device."</string>
    <string name="file_delete_confirmation">"Are you sure you want to delete\n%s?"</string>
    <string name="file_delete_successful">"Successfully deleted."</string>
    <string name="no_file_selected">"Select a file first."</string>
    <string name="encrypt_sign_successful">"Successfully signed and/or encrypted."</string>
    <string name="encrypt_sign_clipboard_successful">"Successfully signed and/or encrypted to clipboard."</string>
    <string name="enter_passphrase_twice">"Enter the passphrase twice."</string>
    <string name="select_encryption_key">"Select at least one encryption key."</string>
    <string name="select_encryption_or_signature_key">"Select at least one encryption key or a signature key."</string>
    <string name="specify_file_to_encrypt_to">"Please specify which file to encrypt to.\nWARNING: File will be overwritten if it exists."</string>
    <string name="specify_file_to_decrypt_to">"Please specify which file to decrypt to.\nWARNING: File will be overwritten if it exists."</string>
    <string name="specify_file_to_export_to">"Please specify which file to export to.\nWARNING: File will be overwritten if it exists."</string>
    <string name="key_deletion_confirmation_multi">"Do you really want to delete all selected public keys?\nYou can't undo this!"</string>
    <string name="secret_key_deletion_confirmation">"Do you really want to delete the SECRET key '%s'?\nYou can't undo this!"</string>
    <string name="public_key_deletetion_confirmation">"Do you really want to delete the public key '%s'?\nYou can't undo this!"</string>
    <string name="also_export_secret_keys">"Also export secret keys"</string>
    <string name="reinstall_openkeychain">"You encountered a known bug with Android. Please reinstall OpenKeychain if you want to link your contacts with keys."</string>

    <string name="key_exported">"Successfully exported 1 key."</string>
    <string name="keys_exported">"Successfully exported %d keys."</string>
    <string name="no_keys_exported">"No keys exported."</string>
    <string name="key_creation_el_gamal_info">"Note: only subkeys support ElGamal."</string>
    <string name="key_not_found">"Couldn't find key %08X."</string>

    <plurals name="bad_keys_encountered">"
        <item quantity="one">"%d bad secret key ignored. Perhaps you exported with the option\n --export-secret-subkeys\nMake sure you export with\n --export-secret-keys\ninstead.""</item>
        <item quantity="other">"%d bad secret keys ignored. Perhaps you exported with the option\n --export-secret-subkeys\nMake sure you export with\n --export-secret-keys\ninstead.""</item>
    </plurals>

    <string name="list_empty">"This list is empty!"</string>
    <string name="nfc_successful">"Successfully sent key with NFC Beam!"</string>
    <string name="key_copied_to_clipboard">"Key has been copied to the clipboard!"</string>
    <string name="fingerprint_copied_to_clipboard">"Fingerprint has been copied to the clipboard!"</string>
    <string name="select_key_to_certify">"Please select a key to be used for certification!"</string>
    <string name="key_too_big_for_sharing">"Key is too big to be shared this way!"</string>
    <string name="text_copied_to_clipboard">"Text has been copied to the clipboard!"</string>

    <!--
         errors
         no punctuation, all lowercase,
         they will be put after "error_message", e.g. "Error: file not found"
    -->
    <string name="error_file_delete_failed">"deleting '%s' failed"</string>
    <string name="error_file_not_found">"file not found"</string>
    <string name="error_no_secret_key_found">"no suitable secret key found"</string>
    <string name="error_external_storage_not_ready">"external storage not ready"</string>
    <string name="error_key_size_minimum512bit">"key size must be at least 512bit"</string>
    <string name="error_unknown_algorithm_choice">"unknown algorithm choice"</string>
    <string name="error_user_id_no_email">"no email found"</string>
    <string name="error_key_needs_a_user_id">"need at least one identity"</string>
    <string name="error_no_signature_passphrase">"no passphrase given"</string>
    <string name="error_no_signature_key">"no signature key given"</string>
    <string name="error_invalid_data">"No valid encrypted or signed OpenPGP content!"</string>
    <string name="error_integrity_check_failed">"integrity check failed! Data has been modified!"</string>
    <string name="error_wrong_passphrase">"wrong passphrase"</string>
    <string name="error_could_not_extract_private_key">"could not extract private key"</string>

    <!-- errors without preceeding Error: -->
    <string name="error_jelly_bean_needed">"You need Android 4.1 to use Android's NFC Beam feature!"</string>
    <string name="error_nfc_needed">"NFC is not available on your device!"</string>
    <string name="error_nothing_import">"No keys found!"</string>
    <string name="error_contacts_key_id_missing">"Retrieving the key ID from contacts failed!"</string>
    <string name="error_generic_report_bug">"A generic error occurred, please create a new bug report for OpenKeychain."</string>

    <!-- results shown after decryption/verification -->
    <string name="decrypt_result_no_signature">"Not Signed"</string>
    <string name="decrypt_result_invalid_signature">"Invalid signature!"</string>
    <string name="decrypt_result_signature_uncertified">"Signed by (not certified!)"</string>
    <string name="decrypt_result_signature_certified">"Signed by"</string>
    <string name="decrypt_result_signature_expired_key">"Key is expired!"</string>
    <string name="decrypt_result_signature_revoked_key">"Key has been revoked!"</string>
    <string name="decrypt_result_signature_missing_key">"Unknown public key"</string>
    <string name="decrypt_result_encrypted">"Encrypted"</string>
    <string name="decrypt_result_not_encrypted">"Not Encrypted"</string>
    <string name="decrypt_result_action_show">"Show"</string>
    <string name="decrypt_result_action_Lookup">"Lookup"</string>
    <string name="decrypt_invalid_text">"Either the signature is invalid or the key has been revoked/is expired. You cannot be sure who wrote the text. Do you still want to display it?"</string>
    <string name="decrypt_invalid_button">"I understand the risks, display it!"</string>

    <!-- Add keys -->
    <string name="add_keys_my_key">"My key:"</string>

    <!-- progress dialogs, usually ending in '…' -->
    <string name="progress_done">"Done."</string>
    <string name="progress_cancel">"Cancel"</string>
    <string name="progress_cancelling">"cancelling…"</string>
    <string name="progress_saving">"saving…"</string>
    <string name="progress_importing">"importing…"</string>
    <string name="progress_exporting">"exporting…"</string>
    <string name="progress_uploading">"uploading…"</string>
    <string name="progress_building_key">"building key…"</string>
    <string name="progress_building_master_key">"building master ring…"</string>
    <string name="progress_generating_rsa">"generating new RSA key…"</string>
    <string name="progress_generating_dsa">"generating new DSA key…"</string>
    <string name="progress_generating_elgamal">"generating new ElGamal key…"</string>
    <string name="progress_generating_ecdsa">"generating new ECDSA key…"</string>
    <string name="progress_generating_ecdh">"generating new ECDH key…"</string>

    <string name="progress_modify">"modifying keyring…"</string>

    <string name="progress_modify_unlock">"unlocking keyring…"</string>
    <string name="progress_modify_adduid">"adding user IDs…"</string>
    <string name="progress_modify_adduat">"adding user attributes…"</string>
    <string name="progress_modify_revokeuid">"revoking user IDs…"</string>
    <string name="progress_modify_primaryuid">"changing primary user ID…"</string>
    <string name="progress_modify_subkeychange">"modifying subkeys…"</string>
    <string name="progress_modify_subkeyrevoke">"revoking subkeys…"</string>
    <string name="progress_modify_subkeystrip">"stripping subkeys…"</string>
    <string name="progress_modify_subkeyadd">"adding subkeys…"</string>
    <string name="progress_modify_passphrase">"changing passphrase…"</string>

    <plurals name="progress_exporting_key">
        <item quantity="one">"exporting key…"</item>
        <item quantity="other">"exporting keys…"</item>
    </plurals>

    <string name="progress_extracting_signature_key">"extracting signature key…"</string>
    <string name="progress_extracting_key">"extracting key…"</string>
    <string name="progress_preparing_streams">"preparing streams…"</string>
    <string name="progress_encrypting">"encrypting data…"</string>
    <string name="progress_decrypting">"decrypting data…"</string>
    <string name="progress_preparing_signature">"preparing signature…"</string>
    <string name="progress_generating_signature">"generating signature…"</string>
    <string name="progress_processing_signature">"processing signature…"</string>
    <string name="progress_verifying_signature">"verifying signature…"</string>
    <string name="progress_signing">"signing…"</string>
    <string name="progress_certifying">"certifying…"</string>
    <string name="progress_reading_data">"reading data…"</string>
    <string name="progress_finding_key">"finding key…"</string>
    <string name="progress_decompressing_data">"decompressing data…"</string>
    <string name="progress_verifying_integrity">"verifying integrity…"</string>
    <string name="progress_deleting_securely">"deleting '%s' securely…"</string>
    <string name="progress_deleting">"deleting keys…"</string>

    <string name="progress_con_saving">"consolidate: saving to cache…"</string>
    <string name="progress_con_reimport">"consolidate: reimporting…"</string>

    <!-- action strings -->
    <string name="hint_keyserver_search_hint">"Name/Email/Key ID…"</string>
    <string name="hint_cloud_search_hint">"Name/Email/Proof/Key…"</string>

    <!-- key bit length selections -->
    <string name="key_size_512">"512"</string>
    <string name="key_size_768">"768"</string>
    <string name="key_size_1024">"1024"</string>
    <string name="key_size_1536">"1536"</string>
    <string name="key_size_2048">"2048"</string>
    <string name="key_size_3072">"3072"</string>
    <string name="key_size_4096">"4096"</string>
    <string name="key_size_8192">"8192"</string>
    <string name="key_size_custom">"Custom key size"</string>
    <string name="key_size_custom_info">"Type custom key length (in bits):"</string>
    <string name="key_size_custom_info_rsa">"RSA key length must be greater than 1024 and at most 16384. Also it must be multiplicity of 8."</string>
    <string name="key_size_custom_info_dsa">"DSA key length must be at least 512 and at most 1024. Also it must be multiplicity of 64."</string>

    <!-- elliptic curve names -->
    <string name="key_curve_nist_p256">"NIST P-256"</string>
    <string name="key_curve_nist_p384">"NIST P-384"</string>
    <string name="key_curve_nist_p521">"NIST P-521"</string>
    <!-- not in for now, see SaveKeyringParcel
    <string name="key_curve_bp_p256">"Brainpool P-256"</string>
    <string name="key_curve_bp_p384">"Brainpool P-384"</string>
    <string name="key_curve_bp_p512">"Brainpool P-512"</string>
    -->

    <!-- compression -->
    <string name="compression_fast">"fast"</string>
    <string name="compression_very_slow">"very slow"</string>

    <!-- Help -->
    <string name="help_tab_start">"Start"</string>
    <string name="help_tab_faq">"FAQ"</string>
    <string name="help_tab_wot">"Web of Trust"</string>
    <string name="help_tab_nfc_beam">"NFC Beam"</string>
    <string name="help_tab_changelog">"Changelog"</string>
    <string name="help_tab_about">"About"</string>
    <string name="help_about_version">"Version:"</string>

    <!-- Import -->
    <string name="import_tab_keyserver">"Keyserver"</string>
    <string name="import_tab_cloud">"Search Cloud"</string>
    <string name="import_tab_direct">"File/Clipboard"</string>
    <string name="import_tab_qr_code">"QR Code/NFC"</string>
    <string name="import_import">"Import selected keys"</string>
    <string name="import_qr_code_wrong">"QR Code malformed! Please try again!"</string>
    <string name="import_qr_code_too_short_fingerprint">"Fingerprint is too short (&lt; 16 characters)"</string>
    <string name="import_qr_code_button">"Scan QR Code"</string>
    <string name="import_qr_code_text">"Place your camera over the QR Code!"</string>

    <!-- Generic result toast -->
    <string name="view_log">"View Log"</string>
    <string name="with_warnings">", with warnings"</string>
    <string name="with_cancelled">", until cancelled"</string>

    <!-- Import result toast -->
    <plurals name="import_keys_added_and_updated_1">
        <item quantity="one">"Successfully imported key"</item>
        <item quantity="other">"Successfully imported %1$d keys"</item>
    </plurals>
    <plurals name="import_keys_added_and_updated_2">
        <item quantity="one">"and updated key%2$s."</item>
        <item quantity="other">"and updated %1$d keys%2$s."</item>
    </plurals>
    <plurals name="import_keys_added">
        <item quantity="one">"Successfully imported key%2$s."</item>
        <item quantity="other">"Successfully imported %1$d keys%2$s."</item>
    </plurals>
    <plurals name="import_keys_updated">
        <item quantity="one">"Successfully updated key%2$s."</item>
        <item quantity="other">"Successfully updated %1$d keys%2$s."</item>
    </plurals>
    <plurals name="import_keys_with_errors">
        <item quantity="one">"Import failed for one key!"</item>
        <item quantity="other">"Import failed for %d keys!"</item>
    </plurals>
    <plurals name="import_error">
        <item quantity="one">"Import failed!"</item>
        <item quantity="other">"Import of %d keys failed!"</item>
    </plurals>
    <string name="import_error_nothing">"Nothing to import."</string>
    <string name="import_error_nothing_cancelled">"Import cancelled."</string>

    <!-- Delete result toast -->
    <plurals name="delete_ok_but_fail_1">
        <item quantity="one">"Successfully deleted one key"</item>
        <item quantity="other">"Successfully deleted %1$d keys"</item>
    </plurals>
    <plurals name="delete_ok_but_fail_2">
        <item quantity="one">", but failed deleting one key%2$s."</item>
        <item quantity="other">", but failed deleting %1$d keys%2$s."</item>
    </plurals>
    <plurals name="delete_ok">
        <item quantity="one">"Successfully deleted key%2$s."</item>
        <item quantity="other">"Successfully deleted %1$d keys%2$s."</item>
    </plurals>
    <plurals name="delete_fail">
        <item quantity="one">"Error deleting one key%2$s."</item>
        <item quantity="other">"Error deleting %1$d keys."</item>
    </plurals>
    <string name="delete_nothing">"Nothing to delete."</string>
    <string name="delete_cancelled">"Delete operation cancelled."</string>

    <!-- Certify result toast -->
    <plurals name="certify_keys_ok">
        <item quantity="one">"Successfully certified key%2$s."</item>
        <item quantity="other">"Successfully certified %1$d keys%2$s."</item>
    </plurals>
    <plurals name="certify_keys_with_errors">
        <item quantity="one">"Certification failed!"</item>
        <item quantity="other">"Certification failed for %d keys!"</item>
    </plurals>
    <plurals name="certify_error">
        <item quantity="one">"Certification failed!"</item>
        <item quantity="other">"Certification of %d keys failed!"</item>
    </plurals>

    <!-- Intent labels -->
    <string name="intent_decrypt_file">"Decrypt File with OpenKeychain"</string>
    <string name="intent_import_key">"Import Key with OpenKeychain"</string>
    <string name="intent_send_encrypt">"Encrypt with OpenKeychain"</string>
    <string name="intent_send_decrypt">"Decrypt with OpenKeychain"</string>

    <!-- Remote API -->
    <string name="api_no_apps">"No registered apps!\n\nA list of supported third-party applications can be found in 'Help'!"</string>
    <string name="api_settings_show_info">"Show advanced information"</string>
    <string name="api_settings_hide_info">"Hide advanced information"</string>
    <string name="api_settings_show_advanced">"Show advanced settings"</string>
    <string name="api_settings_hide_advanced">"Hide advanced settings"</string>
    <string name="api_settings_no_key">"No key selected"</string>
    <string name="api_settings_select_key">"Select key"</string>
    <string name="api_settings_create_key">"Create new key for this account"</string>
    <string name="api_settings_save">"Save"</string>
    <string name="api_settings_save_msg">"Account has been saved"</string>
    <string name="api_settings_cancel">"Cancel"</string>
    <string name="api_settings_revoke">"Revoke access"</string>
    <string name="api_settings_start">"Start application"</string>
    <string name="api_settings_delete_account">"Delete account"</string>
    <string name="api_settings_package_name">"Package Name"</string>
    <string name="api_settings_package_signature">"SHA-256 of Package Signature"</string>
    <string name="api_settings_accounts">"Accounts"</string>
    <string name="api_settings_settings">"Settings"</string>
    <string name="api_settings_key">"Account key:"</string>
    <string name="api_settings_accounts_empty">"No accounts attached to this app."</string>
    <string name="api_create_account_text">"No key is configured for this account. Please select one of your existing keys or create a new one.\nApps can only decrypt/sign with the keys selected here!"</string>
    <string name="api_update_account_text">"The key saved for this account has been deleted. Please select a different one!\nApps can only decrypt/sign with the keys selected here!"</string>
    <string name="api_register_text">"The displayed app wants to encrypt/decrypt messages and sign them in your name.\nAllow access?\n\nWARNING: If you do not know why this screen appeared, disallow access! You can revoke access later using the 'Apps' screen."</string>
    <string name="api_register_allow">"Allow access"</string>
    <string name="api_register_disallow">"Disallow access"</string>
    <string name="api_register_error_select_key">"Please select a key!"</string>
    <string name="api_select_pub_keys_missing_text">"No keys were found for these identities:"</string>
    <string name="api_select_pub_keys_dublicates_text">"More than one key exist for these identities:"</string>
    <string name="api_select_pub_keys_text">"Please review the list of recipients!"</string>
    <string name="api_select_pub_keys_text_no_user_ids">"Please select the recipients!"</string>
    <string name="api_error_wrong_signature">"Signature check failed! Have you installed this app from a different source? If you are sure that this is not an attack, revoke this app's registration in OpenKeychain and then register the app again."</string>

    <!-- Share -->
    <string name="share_qr_code_dialog_title">"Share with QR Code"</string>
    <string name="share_nfc_dialog">"Share with NFC"</string>

    <!-- Key list -->
    <plurals name="key_list_selected_keys">
        <item quantity="one">"1 key selected."</item>
        <item quantity="other">"%d keys selected."</item>
    </plurals>

    <string name="key_list_empty_text1">"No keys found!"</string>
    <string name="key_list_filter_show_all">"Show all keys"</string>
    <string name="key_list_filter_show_certified">"Show certified keys only"</string>

    <!-- Key view -->
    <string name="key_view_action_edit">"Edit key"</string>
    <string name="key_view_action_encrypt">"Encrypt text"</string>
    <string name="key_view_action_encrypt_files">"files"</string>
    <string name="key_view_action_certify">"Certify identities"</string>
    <string name="key_view_action_update">"Update from keyserver"</string>
    <string name="key_view_action_share_with">"Share with…"</string>
    <string name="key_view_action_share_nfc">"Share over NFC"</string>
    <string name="key_view_action_upload">"Upload to keyserver"</string>
    <string name="key_view_tab_main">"Main Info"</string>
    <string name="key_view_tab_share">"Share"</string>
    <string name="key_view_tab_keys">"Subkeys"</string>
    <string name="key_view_tab_certs">"Certificates"</string>
    <string name="user_id_info_revoked_title">"Revoked"</string>
    <string name="user_id_info_revoked_text">"This identity has been revoked by the key owner. It is no longer valid."</string>
    <string name="user_id_info_certified_title">"Certified"</string>
    <string name="user_id_info_certified_text">"This identity has been certified by you."</string>
    <string name="user_id_info_uncertified_title">"Not certified"</string>
    <string name="user_id_info_uncertified_text">"This identity has not been certified yet. You cannot be sure if the identity really corresponds to a specific person."</string>
    <string name="user_id_info_invalid_title">"Invalid"</string>
    <string name="user_id_info_invalid_text">"Something is wrong with this identity!"</string>

    <!-- Edit key -->
    <string name="edit_key_action_change_passphrase">"Change Passphrase"</string>
    <string name="edit_key_action_add_identity">"Add Identity"</string>
    <string name="edit_key_action_add_subkey">"Add Subkey"</string>
    <string name="edit_key_edit_user_id_title">"Select an action!"</string>
    <string-array name="edit_key_edit_user_id">
        <item>"Change to Primary Identity"</item>
        <item>"Revoke Identity"</item>
    </string-array>
    <string-array name="edit_key_edit_user_id_revert_revocation">
        <item>"Revert revocation"</item>
    </string-array>
    <string name="edit_key_edit_user_id_revoked">"This identity has been revoked. This cannot be undone."</string>
    <string name="edit_key_edit_subkey_title">"Select an action!"</string>
    <string-array name="edit_key_edit_subkey">
        <item>"Change Expiry"</item>
        <item>"Revoke Subkey"</item>
        <item>"Strip Subkey"</item>
    </string-array>
    <string name="edit_key_new_subkey">"new subkey"</string>
    <string name="edit_key_select_flag">"Please select at least one flag!"</string>
    <string name="edit_key_error_add_identity">"Add at least one identity!"</string>
    <string name="edit_key_error_add_subkey">"Add at least one subkey!"</string>

    <!-- Create key -->
    <string name="create_key_upload">"Upload key to keyserver"</string>
    <string name="create_key_empty">"This field is required"</string>
    <string name="create_key_passphrases_not_equal">"Passphrases do not match"</string>
    <string name="create_key_final_text">"You entered the following identity:"</string>
    <string name="create_key_final_robot_text">"Creating a key may take a while, have a cup of coffee in the meantime…"</string>
    <string name="create_key_rsa">"(3 subkeys, RSA, 4096 bit)"</string>
    <string name="create_key_custom">"(custom key configuration)"</string>
    <string name="create_key_text">"Enter your full name, email address, and choose a passhrase."</string>
    <string name="create_key_hint_full_name">"Full Name, e.g. Max Mustermann"</string>
    <string name="create_key_edit">"Change key configuration"</string>

    <!-- View key -->
    <string name="view_key_revoked">"This key has been revoked!"</string>
    <string name="view_key_expired">"This key is expired!"</string>

    <!-- Navigation Drawer -->
    <string name="nav_keys">"Keys"</string>
    <string name="nav_encrypt_text">"Encrypt text"</string>
    <string name="nav_encrypt_files">"Encrypt files"</string>
    <string name="nav_decrypt">"Decrypt"</string>
    <string name="nav_apps">"Apps"</string>
    <string name="drawer_open">"Open navigation drawer"</string>
    <string name="drawer_close">"Close navigation drawer"</string>
    <string name="my_keys">"My Keys"</string>

    <!-- hints -->
    <string name="encrypt_content_edit_text_hint">"Type text"</string>

    <!-- certs -->
    <string name="cert_default">"default"</string>
    <string name="cert_none">"none"</string>
    <string name="cert_casual">"casual"</string>
    <string name="cert_positive">"positive"</string>
    <string name="cert_revoke">"revoked"</string>
    <string name="cert_verify_ok">"OK"</string>
    <string name="cert_verify_failed">"failed!"</string>
    <string name="cert_verify_error">"error!"</string>
    <string name="cert_verify_unavailable">"key unavailable"</string>

    <!-- LogType log messages. Errors should have _ERROR_ in their name and end with a ! -->

    <string name="msg_internal_error">"Internal error!"</string>
    <string name="msg_cancelled">"Operation cancelled."</string>

    <!-- Import Public log entries -->
    <string name="msg_ip_apply_batch">"Applying insert batch operation."</string>
    <string name="msg_ip_bad_type_secret">"Tried to import secret keyring as public. This is a bug, please file a report!"</string>
    <string name="msg_ip_delete_old_fail">"No old key deleted (creating a new one?)"</string>
    <string name="msg_ip_delete_old_ok">"Deleted old key from database"</string>
    <string name="msg_ip_encode_fail">"Operation failed due to encoding error"</string>
    <string name="msg_ip_error_io_exc">"Operation failed due to i/o error"</string>
    <string name="msg_ip_error_op_exc">"Operation failed due to database error"</string>
    <string name="msg_ip_error_remote_ex">"Operation failed due to internal error"</string>
    <string name="msg_ip">"Importing public keyring %s"</string>
    <string name="msg_ip_insert_keyring">"Encoding keyring data"</string>
    <string name="msg_ip_insert_keys">"Parsing keys"</string>
    <string name="msg_ip_prepare">"Preparing database operations"</string>
    <string name="msg_ip_master">"Processing master key %s"</string>
    <string name="msg_ip_master_expired">"Keyring expired on %s"</string>
    <string name="msg_ip_master_expires">"Keyring expires on %s"</string>
    <string name="msg_ip_master_flags_unspecified">"Master flags: unspecified (assuming all)"</string>
    <string name="msg_ip_master_flags_cesa">"Master flags: certify, encrypt, sign, authenticate"</string>
    <string name="msg_ip_master_flags_cesx">"Master flags: certify, encrypt, sign"</string>
    <string name="msg_ip_master_flags_cexa">"Master flags: certify, encrypt, authenticate"</string>
    <string name="msg_ip_master_flags_cexx">"Master flags: certify, encrypt"</string>
    <string name="msg_ip_master_flags_cxsa">"Master flags: certify, sign, authenticate"</string>
    <string name="msg_ip_master_flags_cxsx">"Master flags: certify, sign"</string>
    <string name="msg_ip_master_flags_cxxa">"Master flags: certify, authenticate"</string>
    <string name="msg_ip_master_flags_cxxx">"Master flags: certify"</string>
    <string name="msg_ip_master_flags_xesa">"Master flags: encrypt, sign, authenticate"</string>
    <string name="msg_ip_master_flags_xesx">"Master flags: encrypt, sign"</string>
    <string name="msg_ip_master_flags_xexa">"Master flags: encrypt, authenticate"</string>
    <string name="msg_ip_master_flags_xexx">"Master flags: encrypt"</string>
    <string name="msg_ip_master_flags_xxsa">"Master flags: sign, authenticate"</string>
    <string name="msg_ip_master_flags_xxsx">"Master flags: sign"</string>
    <string name="msg_ip_master_flags_xxxa">"Master flags: authenticate"</string>
    <string name="msg_ip_master_flags_xxxx">"Master flags: none"</string>
    <string name="msg_ip_merge_public">"Merging imported data into existing public keyring"</string>
    <string name="msg_ip_merge_secret">"Merging imported data into existing public keyring"</string>
    <string name="msg_ip_subkey">"Processing subkey %s"</string>
    <string name="msg_ip_subkey_expired">"Subkey expired on %s"</string>
    <string name="msg_ip_subkey_expires">"Subkey expires on %s"</string>
    <string name="msg_ip_subkey_flags_unspecified">"Subkey flags: unspecified (assuming all)"</string>
    <string name="msg_ip_subkey_flags_cesa">"Subkey flags: certify, encrypt, sign, authenticate"</string>
    <string name="msg_ip_subkey_flags_cesx">"Subkey flags: certify, encrypt, sign"</string>
    <string name="msg_ip_subkey_flags_cexa">"Subkey flags: certify, encrypt, authenticate"</string>
    <string name="msg_ip_subkey_flags_cexx">"Subkey flags: certify, encrypt"</string>
    <string name="msg_ip_subkey_flags_cxsa">"Subkey flags: certify, sign, authenticate"</string>
    <string name="msg_ip_subkey_flags_cxsx">"Subkey flags: certify, sign"</string>
    <string name="msg_ip_subkey_flags_cxxa">"Subkey flags: certify, authenticate"</string>
    <string name="msg_ip_subkey_flags_cxxx">"Subkey flags: certify"</string>
    <string name="msg_ip_subkey_flags_xesa">"Subkey flags: encrypt, sign, authenticate"</string>
    <string name="msg_ip_subkey_flags_xesx">"Subkey flags: encrypt, sign"</string>
    <string name="msg_ip_subkey_flags_xexa">"Subkey flags: encrypt, authenticate"</string>
    <string name="msg_ip_subkey_flags_xexx">"Subkey flags: encrypt"</string>
    <string name="msg_ip_subkey_flags_xxsa">"Subkey flags: sign, authenticate"</string>
    <string name="msg_ip_subkey_flags_xxsx">"Subkey flags: sign"</string>
    <string name="msg_ip_subkey_flags_xxxa">"Subkey flags: authenticate"</string>
    <string name="msg_ip_subkey_flags_xxxx">"Subkey flags: none"</string>
    <string name="msg_ip_success">"Successfully imported public keyring"</string>
    <string name="msg_ip_success_identical">"Keyring contains no new data, nothing to do"</string>
    <string name="msg_ip_reinsert_secret">"Re-inserting secret key"</string>
    <string name="msg_ip_uid_cert_bad">"Encountered bad certificate!"</string>
    <string name="msg_ip_uid_cert_error">"Error processing certificate!"</string>
    <string name="msg_ip_uid_cert_nonrevoke">"Already have a non-revokable certificate, skipping."</string>
    <string name="msg_ip_uid_cert_old">"Certificate is older than previous, skipping."</string>
    <string name="msg_ip_uid_cert_new">"Certificate is more recent, replacing previous."</string>
    <string name="msg_ip_uid_cert_good">"Found good certificate by %1$s"</string>
    <string name="msg_ip_uid_cert_good_revoke">"Found good certificate revocation by %1$s"</string>
    <plurals name="msg_ip_uid_certs_unknown">
        <item quantity="one">"Ignoring one certificate issued by an unknown public key"</item>
        <item quantity="other">"Ignoring %s certificates issued by unknown public keys"</item>
    </plurals>
    <string name="msg_ip_uid_classifying_zero">"Classifying user IDs (no trusted keys available)"</string>
    <plurals name="msg_ip_uid_classifying">
        <item quantity="one">"Classifying user IDs (using one trusted key)"</item>
        <item quantity="other">"Classifying user IDs (using %s trusted keys)"</item>
    </plurals>
    <string name="msg_ip_uid_reorder">"Re-ordering user IDs"</string>
    <string name="msg_ip_uid_processing">"Processing user ID %s"</string>
    <string name="msg_ip_uid_revoked">"User ID is revoked"</string>

    <string name="msg_ip_uat_processing_image">"Processing user attribute of type image"</string>
    <string name="msg_ip_uat_processing_unknown">"Processing user attribute of unknown type"</string>
    <string name="msg_ip_uat_cert_bad">"Encountered bad certificate!"</string>
    <string name="msg_ip_uat_cert_error">"Error processing certificate!"</string>
    <string name="msg_ip_uat_cert_nonrevoke">"Already have a non-revokable certificate, skipping."</string>
    <string name="msg_ip_uat_cert_old">"Certificate is older than previous, skipping."</string>
    <string name="msg_ip_uat_cert_new">"Certificate is more recent, replacing previous."</string>
    <string name="msg_ip_uat_cert_good">"Found good certificate by %1$s"</string>
    <string name="msg_ip_uat_cert_good_revoke">"Found good certificate revocation by %1$s"</string>
    <plurals name="msg_ip_uat_certs_unknown">
        <item quantity="one">"Ignoring one certificate issued by an unknown public key"</item>
        <item quantity="other">"Ignoring %s certificates issued by unknown public keys"</item>
    </plurals>
    <string name="msg_ip_uat_classifying">"Classifying user attributes"</string>
    <string name="msg_ip_uat_revoked">"User attribute is revoked"</string>

    <string name="msg_is_bad_type_public">"Tried to import public keyring as secret. This is a bug, please file a report!"</string>
    <string name="msg_is_bad_type_uncanon">"Tried to import a keyring without canonicalization. This is a bug, please file a report!"</string>

    <!-- Import Secret log entries -->
    <string name="msg_is">"Importing secret key %s"</string>
    <string name="msg_is_db_exception">"Database error!"</string>
    <string name="msg_is_importing_subkeys">"Processing secret subkeys"</string>
    <string name="msg_is_error_io_exc">"Error encoding keyring"</string>
    <string name="msg_is_merge_public">"Merging imported data into existing public keyring"</string>
    <string name="msg_is_merge_secret">"Merging imported data into existing public keyring"</string>
    <string name="msg_is_merge_special">"Merging in self-certificates data from public keyring"</string>
    <string name="msg_is_pubring_generate">"Generating public keyring from secret keyring"</string>
    <string name="msg_is_subkey_nonexistent">"Subkey %s unavailable in secret key"</string>
    <string name="msg_is_subkey_ok">"Marked secret subkey %s as available"</string>
    <string name="msg_is_subkey_empty">"Marked secret subkey %s as available, with empty passphrase"</string>
    <string name="msg_is_subkey_pin">"Marked secret subkey %s as available, with PIN"</string>
    <string name="msg_is_subkey_stripped">"Marked secret subkey %s as stripped"</string>
    <string name="msg_is_subkey_divert">"Marked secret subkey %s as 'divert to smartcard/NFC'"</string>
    <string name="msg_is_success_identical">"Keyring contains no new data, nothing to do"</string>
    <string name="msg_is_success">"Successfully imported secret keyring"</string>

    <!-- Keyring Canonicalization log entries -->
    <string name="msg_kc_public">"Canonicalizing public keyring %s"</string>
    <string name="msg_kc_secret">"Canonicalizing secret keyring %s"</string>
    <string name="msg_kc_error_v3">"This is an OpenPGP version 3 key, which has been deprecated and is no longer supported!"</string>
    <string name="msg_kc_error_no_uid">"Keyring has no valid user IDs!"</string>
    <string name="msg_kc_error_master_algo">"The master key uses an unknown (%s) algorithm!"</string>
    <string name="msg_kc_error_dup_key">"Subkey %s occurs twice in keyring. Keyring is malformed, not importing!"</string>
    <string name="msg_kc_master">"Processing master key"</string>
    <string name="msg_kc_master_bad_type">"Removing master key certificate of unknown type (%s)"</string>
    <string name="msg_kc_master_bad_local">"Removing master key certificate with "local" flag"</string>
    <string name="msg_kc_master_bad_err">"Removing bad master key certificate"</string>
    <string name="msg_kc_master_bad_time">"Removing keyring revocation certificate with future timestamp"</string>
    <string name="msg_kc_master_bad_type_uid">"Removing user ID certificate in bad position"</string>
    <string name="msg_kc_master_bad">"Removing bad master key certificate"</string>
    <string name="msg_kc_master_local">"Removing master key certificate with "local" flag"</string>
    <string name="msg_kc_revoke_dup">"Removing redundant keyring revocation certificate"</string>
    <string name="msg_kc_notation_dup">"Removing redundant notation certificate"</string>
    <string name="msg_kc_notation_empty">"Removing empty notation certificate"</string>
    <string name="msg_kc_sub">"Processing subkey %s"</string>
    <string name="msg_kc_sub_bad">"Removing invalid subkey binding certificate"</string>
    <string name="msg_kc_sub_bad_err">"Removing bad subkey binding certificate"</string>
    <string name="msg_kc_sub_bad_local">"Removing subkey binding certificate with "local" flag"</string>
    <string name="msg_kc_sub_bad_keyid">"Subkey binding issuer id mismatch"</string>
    <string name="msg_kc_sub_bad_time">"Removing subkey binding certificate with future timestamp"</string>
    <string name="msg_kc_sub_bad_type">"Unknown subkey certificate type: %s"</string>
    <string name="msg_kc_sub_dup">"Removing redundant subkey binding certificate"</string>
    <string name="msg_kc_sub_primary_bad">"Removing subkey binding certificate due to invalid primary binding certificate"</string>
    <string name="msg_kc_sub_primary_bad_err">"Removing subkey binding certificate due to bad primary binding certificate"</string>
    <string name="msg_kc_sub_primary_none">"Removing subkey binding certificate due to missing primary binding certificate"</string>
    <string name="msg_kc_sub_no_cert">"No valid certificate found for %s, removing from ring"</string>
    <string name="msg_kc_sub_revoke_bad_err">"Removing bad subkey revocation certificate"</string>
    <string name="msg_kc_sub_revoke_bad">"Removing bad subkey revocation certificate"</string>
    <string name="msg_kc_sub_revoke_dup">"Removing redundant subkey revocation certificate"</string>
    <string name="msg_kc_sub_unknown_algo">"Subkey uses an unknown algorithm, not importing…"</string>
    <string name="msg_kc_sub_algo_bad_encrpyt">"Subkey has encryption usage flag, but algorithm is not suitable for encryption."</string>
    <string name="msg_kc_sub_algo_bad_sign">"Subkey has signing usage flag, but algorithm is not suitable for signing."</string>
    <string name="msg_kc_success">"Keyring canonicalization successful, no changes"</string>
    <plurals name="msg_kc_success_bad">
        <item quantity="one">"Keyring canonicalization successful, removed one erroneous certificate"</item>
        <item quantity="other">"Keyring canonicalization successful, removed %d erroneous certificates"</item>
    </plurals>
    <string name="msg_kc_success_bad_and_red">"Keyring canonicalization successful, removed %1$s erroneous and %2$s redundant certificates"</string>
    <plurals name="msg_kc_success_redundant">
        <item quantity="one">"Keyring canonicalization successful, removed one redundant certificate"</item>
        <item quantity="other">"Keyring canonicalization successful, removed %d redundant certificates"</item>
    </plurals>
    <string name="msg_kc_uid_bad_err">"Removing bad self certificate for user ID '%s'"</string>
    <string name="msg_kc_uid_bad_local">"Removing user ID certificate with 'local' flag"</string>
    <string name="msg_kc_uid_bad_time">"Removing user ID with future timestamp"</string>
    <string name="msg_kc_uid_bad_type">"Removing user ID certificate of unknown type (%s)"</string>
    <string name="msg_kc_uid_bad">"Removing bad self certificate for user ID '%s'"</string>
    <string name="msg_kc_uid_cert_dup">"Removing outdated self certificate for user ID '%s'"</string>
    <string name="msg_kc_uid_foreign">"Removing foreign user ID certificate by '%s'"</string>
    <string name="msg_kc_uid_revoke_dup">"Removing redundant revocation certificate for user ID '%s'"</string>
    <string name="msg_kc_uid_revoke_old">"Removing outdated revocation certificate for user ID '%s'"</string>
    <string name="msg_kc_uid_no_cert">"No valid self-certificate found for user ID '%s', removing from ring"</string>
    <string name="msg_kc_uid_remove">"Removing invalid user ID '%s'"</string>
    <string name="msg_kc_uid_dup">"Removing duplicate user ID '%s'. The keyring contained two of them. This may result in missing certificates!"</string>
    <string name="msg_kc_uid_warn_encoding">"User id does not verify as UTF-8!"</string>
    <string name="msg_kc_uat_jpeg">"Processing user attribute of type JPEG"</string>
    <string name="msg_kc_uat_unknown">"Processing user attribute of unknown type"</string>
    <string name="msg_kc_uat_bad_err">"Removing bad self certificate for user attribute"</string>
    <string name="msg_kc_uat_bad_local">"Removing user attribute certificate with 'local' flag"</string>
    <string name="msg_kc_uat_bad_time">"Removing user attribute with future timestamp"</string>
    <string name="msg_kc_uat_bad_type">"Removing user attribute certificate of unknown type (%s)"</string>
    <string name="msg_kc_uat_bad">"Removing bad self certificate for user attribute"</string>
    <string name="msg_kc_uat_cert_dup">"Removing outdated self certificate for user attribute"</string>
    <string name="msg_kc_uat_dup">"Removing duplicate user attribute. The keyring contained two of them. This may result in missing certificates!"</string>
    <string name="msg_kc_uat_foreign">"Removing foreign user attribute certificate by"</string>
    <string name="msg_kc_uat_revoke_dup">"Removing redundant revocation certificate for user attribute"</string>
    <string name="msg_kc_uat_revoke_old">"Removing outdated revocation certificate for user attribute"</string>
    <string name="msg_kc_uat_no_cert">"No valid self-certificate found for user attribute, removing from ring"</string>
    <string name="msg_kc_uat_remove">"Removing invalid user attribute"</string>
    <string name="msg_kc_uat_warn_encoding">"User id does not verify as UTF-8!"</string>

    <!-- Keyring merging log entries -->
    <string name="msg_mg_error_secret_dummy">"New public subkey found, but secret subkey dummy generation is not supported!"</string>
    <string name="msg_mg_error_heterogeneous">"Tried to merge keyrings with differing fingerprints!"</string>
    <string name="msg_mg_error_encode">"Fatal error encoding signature!"</string>
    <string name="msg_mg_public">"Merging into public keyring %s"</string>
    <string name="msg_mg_secret">"Merging into secret keyring %s"</string>
    <string name="msg_mg_new_subkey">"Adding new subkey %s"</string>
    <string name="msg_mg_found_new">"Found %s new certificates in keyring"</string>
    <string name="msg_mg_unchanged">"Nothing to merge"</string>

    <!-- createSecretKeyRing -->
    <string name="msg_cr">"Generating new master key"</string>
    <string name="msg_cr_error_no_master">"No master key options specified!"</string>
    <string name="msg_cr_error_no_user_id">"Keyrings must be created with at least one user ID!"</string>
    <string name="msg_cr_error_no_certify">"Master key must have certify flag!"</string>
    <string name="msg_cr_error_null_expiry">"Expiry time cannot be 'same as before' on key creation. This is a programming error, please file a bug report!"</string>
    <string name="msg_cr_error_keysize_512">"Key size must be greater or equal 512!"</string>
    <string name="msg_cr_error_no_curve">"No key size specified! This is a programming error, please file a bug report!"</string>
    <string name="msg_cr_error_no_keysize">"No elliptic curve specified! This is a programming error, please file a bug report!"</string>
    <string name="msg_cr_error_internal_pgp">"Internal OpenPGP error!"</string>
    <string name="msg_cr_error_unknown_algo">"Unknown algorithm selected! This is a programming error, please file a bug report!"</string>
    <string name="msg_cr_error_flags_dsa">"Bad key flags selected, DSA cannot be used for encryption!"</string>
    <string name="msg_cr_error_flags_elgamal">"Bad key flags selected, ElGamal cannot be used for signing!"</string>
    <string name="msg_cr_error_flags_ecdsa">"Bad key flags selected, ECDSA cannot be used for encryption!"</string>
    <string name="msg_cr_error_flags_ecdh">"Bad key flags selected, ECDH cannot be used for signing!"</string>

    <!-- modifySecretKeyRing -->
    <string name="msg_mr">"Modifying keyring %s"</string>
    <string name="msg_mf_error_divert_serial">"The serial number of a divert-to-card key must be 16 bytes! This is a programming error, please file a bug report!"</string>
    <string name="msg_mf_error_encode">"Encoding exception!"</string>
    <string name="msg_mf_error_fingerprint">"Actual key fingerprint does not match the expected one!"</string>
    <string name="msg_mf_error_keyid">"No key ID. This is an internal error, please file a bug report!"</string>
    <string name="msg_mf_error_integrity">"Internal error, integrity check failed!"</string>
    <string name="msg_mf_error_master_none">"No master certificate found to operate on! (All revoked?)"</string>
    <string name="msg_mf_error_noexist_primary">"Bad primary user ID specified!"</string>
    <string name="msg_mf_error_noexist_revoke">"Bad user ID for revocation specified!"</string>
    <string name="msg_mf_error_restricted">"Tried to execute restricted operation without passphrase! This is a programming error, please file a bug report!"</string>
    <string name="msg_mf_error_revoked_primary">"Revoked user IDs cannot be primary!"</string>
    <string name="msg_mf_error_null_expiry">"Expiry time cannot be "same as before" on subkey creation. This is a programming error, please file a bug report!"</string>
    <string name="msg_mf_error_passphrase_master">"Fatal error decrypting master key! This is likely a programming error, please file a bug report!"</string>
    <string name="msg_mf_error_pgp">"Internal OpenPGP error!"</string>
    <string name="msg_mf_error_sig">"Signature exception!"</string>
    <string name="msg_mf_master">"Modifying master certifications"</string>
    <string name="msg_mf_notation_empty">"Adding empty notation packet"</string>
    <string name="msg_mf_notation_pin">"Adding PIN notation packet"</string>
    <string name="msg_mf_passphrase">"Changing passphrase for keyring"</string>
    <string name="msg_mf_passphrase_key">"Re-encrypting subkey %s with new passphrase"</string>
    <string name="msg_mf_passphrase_empty_retry">"Setting new passphrase failed, trying again with empty old passphrase"</string>
    <string name="msg_mf_passphrase_fail">"Passphrase for subkey could not be changed! (Does it have a different one from the other keys?)"</string>
    <string name="msg_mf_primary_replace_old">"Replacing certificate of previous primary user ID"</string>
    <string name="msg_mf_primary_new">"Generating new certificate for new primary user ID"</string>
    <string name="msg_mf_subkey_change">"Modifying subkey %s"</string>
    <string name="msg_mf_error_subkey_missing">"Tried to operate on missing subkey %s!"</string>
    <string name="msg_mf_subkey_new">"Adding new subkey of type %s"</string>
    <string name="msg_mf_subkey_new_id">"New subkey ID: %s"</string>
    <string name="msg_mf_error_past_expiry">"Expiry date cannot be in the past!"</string>
    <string name="msg_mf_subkey_revoke">"Revoking subkey %s"</string>
    <string name="msg_mf_subkey_strip">"Stripping subkey %s"</string>
    <string name="msg_mf_success">"Keyring successfully modified"</string>
    <string name="msg_mf_uid_add">"Adding user ID %s"</string>
    <string name="msg_mf_uid_primary">"Changing primary user ID to %s"</string>
    <string name="msg_mf_uid_revoke">"Revoking user ID %s"</string>
    <string name="msg_mf_uid_error_empty">"User ID must not be empty!"</string>
    <string name="msg_mf_uat_error_empty">"User attribute must not be empty!"</string>
    <string name="msg_mf_uat_add_image">"Adding user attribute of type image"</string>
    <string name="msg_mf_uat_add_unknown">"Adding user attribute of unknown type"</string>
    <string name="msg_mf_unlock_error">"Error unlocking keyring!"</string>
    <string name="msg_mf_unlock">"Unlocking keyring"</string>

    <!-- Consolidate -->
    <string name="msg_con">"Consolidating database"</string>
    <string name="msg_con_error_bad_state">"Consolidation was started while no database was cached! This is probably a programming error, please file a bug report."</string>
    <string name="msg_con_error_concurrent">"Consolidation aborted, already running on other thread!"</string>
    <string name="msg_con_save_secret">"Saving secret keyrings"</string>
    <string name="msg_con_save_public">"Saving public keyrings"</string>
    <string name="msg_con_db_clear">"Clearing database"</string>
    <string name="msg_con_success">"Successfully consolidated database"</string>
    <string name="msg_con_critical_in">"Entering critical phase"</string>
    <string name="msg_con_critical_out">"Leaving critical phase"</string>
    <string name="msg_con_delete_public">"Deleting public keyring cache file"</string>
    <string name="msg_con_delete_secret">"Deleting secret keyring cache file"</string>
    <string name="msg_con_error_db">"Error opening database!"</string>
    <string name="msg_con_error_io_public">"IO error writing public keys to cache!"</string>
    <string name="msg_con_error_io_secret">"IO error writing secret keys to cache!"</string>
    <string name="msg_con_error_public">"Error reimporting public keys!"</string>
    <string name="msg_con_error_secret">"Error reimporting secret keys!"</string>
    <string name="msg_con_recover">"Resuming consolidation process"</string>
    <string name="msg_con_recover_unknown">"Resuming consolidation process from unknown state"</string>
    <plurals name="msg_con_reimport_public">
        <item quantity="one">"Reimporting one public key"</item>
        <item quantity="other">"Reimporting %d public keys"</item>
    </plurals>
    <string name="msg_con_reimport_public_skip">"No public keys to reimport, skipping…"</string>
    <plurals name="msg_con_reimport_secret">
        <item quantity="one">"Reimporting one secret key"</item>
        <item quantity="other">"Reimporting %d secret keys"</item>
    </plurals>
    <string name="msg_con_reimport_secret_skip">"No secret keys to reimport, skipping…"</string>
    <string name="msg_con_warn_delete_public">"Exception deleting public cache file"</string>
    <string name="msg_con_warn_delete_secret">"Exception deleting secret cache file"</string>

    <!-- Edit Key (higher level than modify) -->
    <string name="msg_ed">"Performing key operation"</string>
    <string name="msg_ed_caching_new">"Caching new passphrase"</string>
    <string name="msg_ed_error_no_parcel">"Missing SaveKeyringParcel! (this is a bug, please report)"</string>
    <string name="msg_ed_error_key_not_found">"Key not found!"</string>
    <string name="msg_ed_fetching">"Fetching key to modify (%s)"</string>
    <string name="msg_ed_success">"Key operation successful"</string>

    <!-- Promote key -->
    <string name="msg_pr">"Promoting public key to secret key"</string>
    <string name="msg_pr_error_already_secret">"Key is already a secret key!"</string>
    <string name="msg_pr_error_key_not_found">"Key not found!"</string>
    <string name="msg_pr_fetching">"Fetching key to modify (%s)"</string>
    <string name="msg_pr_success">"Key successfully promoted"</string>

    <!-- Other messages used in OperationLogs -->
    <string name="msg_ek_error_divert">"Editing of NFC keys is not (yet) supported!"</string>
    <string name="msg_ek_error_dummy">"Cannot edit keyring with stripped master key!"</string>
    <string name="msg_ek_error_not_found">"Key not found!"</string>

    <!-- Messages for DecryptVerify operation -->
    <string name="msg_dc_askip_no_key">"Data not encrypted with known key, skipping…"</string>
    <string name="msg_dc_askip_not_allowed">"Data not encrypted with allowed key, skipping…"</string>
    <string name="msg_dc_asym">"Found block of asymmetrically encrypted data for key %s"</string>
    <string name="msg_dc_clear_data">"Processing literal data"</string>
    <string name="msg_dc_clear_decompress">"Unpacking compressed data"</string>
    <string name="msg_dc_clear_meta_file">"Filename: %s"</string>
    <string name="msg_dc_clear_meta_mime">"MIME type: %s"</string>
    <string name="msg_dc_clear_meta_size">"Filesize: %s"</string>
    <string name="msg_dc_clear_meta_time">"Modification time: %s"</string>
    <string name="msg_dc_clear_signature_bad">"Signature check NOT OK!"</string>
    <string name="msg_dc_clear_signature_check">"Verifying signature data"</string>
    <string name="msg_dc_clear_signature_ok">"Signature check OK"</string>
    <string name="msg_dc_clear_signature">"Saving signature data for later"</string>
    <string name="msg_dc_clear">"Processing cleartext data"</string>
    <string name="msg_dc_error_bad_passphrase">"Error unlocking key, bad passphrase!"</string>
    <string name="msg_dc_error_extract_key">"Unknown error unlocking key!"</string>
    <string name="msg_dc_error_integrity_check">"Integrity check error!"</string>
    <string name="msg_dc_error_integrity_missing">"Missing integrity check! This can happen because the encrypting application is out of date, or from a downgrade attack."</string>
    <string name="msg_dc_error_invalid_siglist">"No valid signature data found!"</string>
    <string name="msg_dc_error_io">"Encountered IO Exception during operation!"</string>
    <string name="msg_dc_error_no_data">"No encrypted data found in stream!"</string>
    <string name="msg_dc_error_no_key">"No encrypted data with known secret key found in stream!"</string>
    <string name="msg_dc_error_pgp_exception">"Encountered OpenPGP Exception during operation!"</string>
    <string name="msg_dc_integrity_check_ok">"Integrity check OK!"</string>
    <string name="msg_dc_ok_meta_only">"Only metadata was requested, skipping decryption"</string>
    <string name="msg_dc_ok">"OK"</string>
    <string name="msg_dc_pass_cached">"Using passphrase from cache"</string>
    <string name="msg_dc_pending_nfc">"NFC token required, requesting user input…"</string>
    <string name="msg_dc_pending_passphrase">"Passphrase required, requesting user input…"</string>
    <string name="msg_dc_prep_streams">"Preparing streams for decryption"</string>
    <string name="msg_dc">"Starting decrypt operation…"</string>
    <string name="msg_dc_sym_skip">"Symmetric data not allowed, skipping…"</string>
    <string name="msg_dc_sym">"Found block of symmetrically encrypted data"</string>
    <string name="msg_dc_trail_asym">"Encountered trailing, asymmetrically encrypted data for key %s"</string>
    <string name="msg_dc_trail_sym">"Encountered trailing, symmetrically encrypted data"</string>
    <string name="msg_dc_trail_unknown">"Encountered trailing data of unknown type"</string>
    <string name="msg_dc_unlocking">"Unlocking secret key"</string>

    <!-- Messages for SignEncrypt operation -->
    <string name="msg_se_asymmetric">"Preparing public keys for encryption"</string>
    <string name="msg_se_clearsign_only">"Signing of cleartext input not supported!"</string>
    <string name="msg_se_compressing">"Preparing compression"</string>
    <string name="msg_se_encrypting">"Encrypting data"</string>
    <string name="msg_se_error_bad_passphrase">"Bad passphrase!"</string>
    <string name="msg_se_error_io">"Encountered IO Exception during operation!"</string>
    <string name="msg_se_error_key_sign">"Selected signing key cannot sign data!"</string>
    <string name="msg_se_error_sign_key">"Error fetching signing key!"</string>
    <string name="msg_se_error_nfc">"NFC data error!"</string>
    <string name="msg_se_error_no_passphrase">"No passphrase provided!"</string>
    <string name="msg_se_error_pgp">"Internal OpenPGP error!"</string>
    <string name="msg_se_error_sig">"Encountered OpenPGP signature exception!"</string>
    <string name="msg_se_error_unlock">"Unknown error unlocking key!"</string>
    <string name="msg_se_key_ok">"Encrypting for key: %s"</string>
    <string name="msg_se_key_unknown">"Missing key for encryption: %s"</string>
    <string name="msg_se_key_warn">"Bad key for encryption: %s"</string>
    <string name="msg_se_ok">"Sign/Encrypt operation successful!"</string>
    <string name="msg_se_pending_nfc">"NFC token required, requesting user input…"</string>
    <string name="msg_se_pending_passphrase">"Passphrase required, requesting user input…"</string>
    <string name="msg_se_signing">"Signing data (without encryption)"</string>
    <string name="msg_se_sigcrypting">"Encrypting data with signature"</string>
    <string name="msg_se">"Starting sign and/or encrypt operation"</string>
    <string name="msg_se_symmetric">"Preparing symmetric encryption"</string>

    <string name="msg_crt_certifying">"Generating certifications"</string>
    <string name="msg_crt_certify_all">"Certifying all user IDs for key %s"</string>
    <plurals name="msg_crt_certify_some">
        <item quantity="one">"Certifying one user ID for key %2$s"</item>
        <item quantity="other">"Certifying %1$d user IDs for key %2$s"</item>
    </plurals>
    <string name="msg_crt_error_self">"Cannot issue self-certificate like this!"</string>
    <string name="msg_crt_error_master_not_found">"Master key not found!"</string>
    <string name="msg_crt_error_nothing">"No keys certified!"</string>
    <string name="msg_crt_error_unlock">"Error unlocking master key!"</string>
    <string name="msg_crt_error_divert">"Certification with NFC is not (yet) supported!"</string>
    <string name="msg_crt">"Certifying keyrings"</string>
    <string name="msg_crt_master_fetch">"Fetching certifying master key"</string>
    <string name="msg_crt_save">"Saving certified key %s"</string>
    <string name="msg_crt_saving">"Saving keyrings"</string>
    <string name="msg_crt_unlock">"Unlocking master key"</string>
    <string name="msg_crt_success">"Successfully certified identities"</string>
    <string name="msg_crt_warn_not_found">"Key not found!"</string>
    <string name="msg_crt_warn_cert_failed">"Certificate generation failed!"</string>
    <string name="msg_crt_warn_save_failed">"Save operation failed!"</string>

    <string name="msg_crt_upload_success">"Successfully uploaded key to server"</string>

    <plurals name="msg_import">
        <item quantity="one">"Importing key"</item>
        <item quantity="other">"Importing %d keys"</item>
    </plurals>
    <string name="msg_import_fetch_error_decode">"Error decoding retrieved keyring!"</string>
    <string name="msg_import_fetch_error">"Key could not be retrieved! (Network problems?)"</string>
    <string name="msg_import_fetch_keybase">"Retrieving from keybase.io: %s"</string>
    <string name="msg_import_fetch_keyserver_error">"Could not retrieve key from keybase!"</string>
    <string name="msg_import_fetch_keyserver">"Retrieving from keyserver: %s"</string>
    <string name="msg_import_fetch_keyserver_ok">"Key retrieval successful"</string>
    <string name="msg_import_keyserver">"Using keyserver %s"</string>
    <string name="msg_import_fingerprint_error">"Fingerprint of fetched key didn't match expected!"</string>
    <string name="msg_import_fingerprint_ok">"Fingerprint check OK"</string>
    <string name="msg_import_merge">"Merging retrieved data"</string>
    <string name="msg_import_error">"Import operation failed!"</string>
    <string name="msg_import_partial">"Import operation successful, with errors!"</string>
    <string name="msg_import_success">"Import operation successful!"</string>

    <plurals name="msg_export">
        <item quantity="one">"Exporting one key"</item>
        <item quantity="other">"Exporting %d keys"</item>
    </plurals>
    <string name="msg_export_all">"Exporting all keys"</string>
    <string name="msg_export_public">"Exporting public key %s"</string>
    <string name="msg_export_secret">"Exporting secret key %s"</string>
    <string name="msg_export_error_no_file">"No filename specified!"</string>
    <string name="msg_export_error_fopen">"Error opening file!"</string>
    <string name="msg_export_error_no_uri">"No URI specified!"</string>
    <string name="msg_export_error_uri_open">"Error opening URI stream!"</string>
    <string name="msg_export_error_storage">"Storage is not ready for writing!"</string>
    <string name="msg_export_error_db">"Database error!"</string>
    <string name="msg_export_error_io">"Input/output error!"</string>
    <string name="msg_export_error_key">"Error preprocessing key data!"</string>
    <string name="msg_export_success">"Export operation successful"</string>

    <string name="msg_del_error_empty">"Nothing to delete!"</string>
    <string name="msg_del_error_multi_secret">"Secret keys can only be deleted individually!"</string>
    <plurals name="msg_del">
        <item quantity="one">"Deleting one key"</item>
        <item quantity="other">"Deleting %d keys"</item>
    </plurals>
    <string name="msg_del_key">"Deleting key %s"</string>
    <string name="msg_del_key_fail">"Failed deleting key %s"</string>
    <string name="msg_del_consolidate">"Consolidating database after deletion of secret key"</string>
    <plurals name="msg_del_ok">
        <item quantity="one">"Successfully deleted key"</item>
        <item quantity="other">"Successfully deleted %d keys"</item>
    </plurals>
    <plurals name="msg_del_fail">
        <item quantity="one">"Failed to delete one key"</item>
        <item quantity="other">"Failed to delete %d keys"</item>
    </plurals>

    <string name="msg_acc_saved">"Account saved"</string>

    <string name="msg_download_success">"Downloaded successfully!"</string>
    <string name="msg_download_no_valid_keys">"No valid keys found in file/clipboard!"</string>
    <string name="msg_download_no_pgp_parts">"TODO: plurals!"</string>
    <plurals name="error_import_non_pgp_part">
        <item quantity="one">"part of the loaded file is a valid OpenPGP object but not a OpenPGP key"</item>
        <item quantity="other">"parts of the loaded file are valid OpenPGP objects but not OpenPGP keys"</item>
    </plurals>
    <string name="msg_download_query_too_short">"Search query too short. Please refine your query!"</string>
    <string name="msg_download_too_many_responses">"Key search query returned too many candidates. Please refine your query!"</string>
    <string name="msg_download_query_too_short_or_too_many_responses">"Either no keys or too many have been found. Please improve your query!"</string>

    <string name="msg_download_query_failed">"An error occurred when searching for keys."</string>

    <!-- PassphraseCache -->
    <string name="passp_cache_notif_click_to_clear">"Click to clear cached passphrases"</string>
    <string name="passp_cache_notif_n_keys">"OpenKeychain has cached %d passphrases"</string>
    <string name="passp_cache_notif_keys">"Cached Passphrases:"</string>
    <string name="passp_cache_notif_clear">"Clear Cache"</string>
    <string name="passp_cache_notif_pwd">"Passphrase"</string>

    <!-- First Time -->
    <string name="first_time_text1">"Take back your privacy with OpenKeychain!"</string>
    <string name="first_time_create_key">"Create my key"</string>
    <string name="first_time_import_key">"Import from file"</string>
    <string name="first_time_skip">"Skip Setup"</string>

    <!-- unsorted -->
    <string name="section_certifier_id">"Certifier"</string>
    <string name="section_cert">"Certificate Details"</string>
    <string name="label_user_id">"Identity"</string>
    <string name="unknown_uid">"&lt;unknown&gt;"</string>
    <string name="empty_certs">"No certificates for this key"</string>
    <string name="certs_text">"Only validated self-certificates and validated certificates created with your keys are displayed here."</string>
    <string name="section_uids_to_certify">"Identities for "</string>
    <string name="certify_text">"The keys you are importing contain “identities”: names and emails. Select exactly those for certification which match what you expected."</string>
    <string name="label_revocation">"Revocation Reason"</string>
    <string name="label_verify_status">"Verification Status"</string>
    <string name="label_cert_type">"Type"</string>
    <string name="error_key_not_found">"Key not found!"</string>
    <string name="error_key_processing">"Error processing key!"</string>
    <string name="key_stripped">"stripped"</string>
    <string name="key_divert">"divert to smartcard/NFC"</string>
    <string name="key_no_passphrase">"no passphrase"</string>
    <string name="key_unavailable">"unavailable"</string>
    <string name="secret_cannot_multiple">"Your own keys can only be deleted individually!"</string>
    <string name="title_view_cert">"View Certificate Details"</string>
    <string name="unknown_algorithm">"unknown"</string>
    <string name="can_sign_not">"cannot sign"</string>
    <string name="error_no_encrypt_subkey">"No encryption subkey available!"</string>
    <string name="info_no_manual_account_creation">"Do not create OpenKeychain-Accounts manually.\nFor more information, see Help."</string>
    <string name="contact_show_key">"Show key (%s)"</string>
    <string name="swipe_to_update">"Swipe down to update from keyserver"</string>
    <string name="error_no_file_selected">"Select at least one file to encrypt!"</string>
    <string name="error_multi_not_supported">"Saving of multiple files not supported. This is a limitation on current Android."</string>
    <string name="key_colon">"Key:"</string>
    <string name="exchange_description">"To start a key exchange, choose the number of participants on the right side, then hit the “Start exchange” button.\n\nYou will be asked two more questions to make sure only the right participants are in the exchange and their fingerprints are correct."</string>
    <string name="user_id_none"><![CDATA[<none>]]></string>

    <!-- Passphrase wizard -->
    <!-- TODO: rename all the things! -->
    <string name="title_unlock_method">Choose an unlock method</string>
    <!--<string name="enter_passphrase_twice">Enter passphrase twice</string>-->
    <string name="enter_passphrase">Enter passphrase</string>
    <string name="passphrase">Passphrase</string>
    <string name="noPassphrase">No passphrase</string>
    <string name="no_passphrase_set">No passphrase set</string>
    <string name="passphrases_match">Passphrases do match</string>
    <string name="passphrase_saved">Passphrase saved</string>
    <string name="passphrase_invalid">Passphrase invalid</string>
    <string name="missing_passphrase">Missing passphrase</string>
    <string name="passphrase_again">Again</string>
    <string name="lockpattern">Lockpattern</string>
    <string name="lockpatternNFC">NFC + Lockpattern</string>
    <string name="unlock_method">Unlock method</string>
    <string name="set_passphrase">Set passphrase</string>
    <string name="draw_lockpattern">Draw lockpattern</string>
    <string name="nfc_title">NFC</string>
    <!--<string name="nfc_text">Please place a NFC tag near your device</string>-->
    <string name="nfc_wrong_tag">Wrong Tag. Please try again.</string>
    <string name="enable_nfc">Please activate NFC in your settings</string>
    <string name="no_nfc_support">This device does not support NFC</string>
    <string name="nfc_write_succesful">Successfully written on NFC tag</string>
    <string name="unlocked">Unlocked</string>
    <string name="nfc_settings">Settings</string>

</resources>