aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/values/strings.xml
blob: 746e13061fa702f751df9b454002f3026401e4ad (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
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
<?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_encrypt_text">"Encrypt"</string>
    <string name="title_encrypt_files">"Encrypt"</string>
    <string name="title_decrypt">"Decrypt"</string>
    <string name="title_add_subkey">"Add subkey"</string>
    <string name="title_change_master_key">Change master key</string>
    <string name="title_edit_key">"Edit Key"</string>
    <string name="title_linked_create">"Create a Linked Identity"</string>
    <string name="title_preferences">"Settings"</string>
    <string name="title_api_registered_apps">"Apps"</string>
    <string name="title_key_server_preference">"OpenPGP keyservers"</string>
    <string name="title_cache_ttl_preference">"Customize 'Remember' choices"</string>
    <string name="title_change_passphrase">"Change Password"</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 text 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_export_key">"Backup Key"</string>
    <string name="title_export_keys">"Backup Keys"</string>
    <string name="title_key_not_found">"Key Not Found"</string>
    <string name="title_send_key">"Upload to Keyserver"</string>
    <string name="title_backup">"Backup Key"</string>
    <string name="title_certify_key">"Confirm Key"</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_exchange_keys">"Exchange Keys"</string>
    <string name="title_advanced_key_info">"Advanced"</string>
    <string name="title_delete_secret_key">"Delete YOUR key '%s'?"</string>
    <string name="title_manage_my_keys">"Manage my keys"</string>
    <string name="title_alert_strip">"Strip this subkey"</string>

    <!-- section -->
    <string name="section_user_ids">"Identities"</string>
    <string name="section_security_token">"Security Token"</string>
    <string name="section_linked_system_contact">"Linked System Contact"</string>
    <string name="section_keybase_proofs">"Keybase.io Proofs"</string>
    <string name="section_should_you_trust">"Should you trust this key?"</string>
    <string name="section_proof_details">Proof verification</string>
    <string name="section_keys">"Subkeys"</string>
    <string name="section_cloud_search">"Key Search"</string>
    <string name="section_cloud_search_summary">"Keyserver, keybase.io"</string>
    <string name="section_passphrase_cache">"Passwords and PINs"</string>
    <string name="section_passphrase_cache_summary">"Handling, user interface, remember time"</string>
    <string name="section_proxy_settings">"Network Anonymity"</string>
    <string name="section_proxy_settings_summary">"Tor, Proxy Settings"</string>
    <string name="section_gui">"Interface"</string>
    <string name="section_sync_settings">"Synchronization"</string>
    <string name="section_sync_settings_summary">"Automatic key updates, contact linking"</string>
    <string name="section_experimental_features">"Experimental Features"</string>
    <string name="section_certify">"Confirm"</string>
    <string name="section_actions">"Actions"</string>
    <string name="section_share_key">"Key"</string>
    <string name="section_key_server">"Keyserver"</string>
    <string name="section_fingerprint">"Fingerprint"</string>
    <string name="section_phrases">"Phrases"</string>
    <string name="section_encrypt">"Encrypt"</string>
    <string name="section_decrypt">"Decrypt/Verify"</string>
    <string name="section_current_expiry">"Current expiry"</string>
    <string name="section_new_expiry">"New expiry"</string>

    <!-- button -->
    <string name="btn_decrypt_verify_file">"Decrypt, verify, and save file"</string>
    <string name="btn_encrypt_share_file">"Encrypt and share file"</string>
    <string name="btn_encrypt_save_file">"Encrypt and save file"</string>
    <string name="btn_save_file">"Save file"</string>
    <string name="btn_save">"Save"</string>
    <string name="btn_view_log">"View log"</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_no">"No"</string>
    <string name="btn_match">"Fingerprints match"</string>
    <string name="btn_match_phrases">"Phrases match"</string>
    <string name="btn_share_encrypted_signed">"Encrypt/sign and share text"</string>
    <string name="btn_copy_encrypted_signed">"Encrypt/sign and copy text"</string>
    <string name="btn_paste_encrypted_signed">"Encrypt/sign and paste text"</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_share_decrypted_text">"Share"</string>
    <string name="btn_open_with">"Open with…"</string>
    <string name="btn_copy_decrypted_text">"Copy to clipboard"</string>
    <string name="btn_decrypt_clipboard">"Read from clipboard"</string>
    <string name="btn_decrypt_files">"Select input file"</string>
    <string name="btn_encrypt_files">"Encrypt files"</string>
    <string name="btn_encrypt_text">"Encrypt text"</string>
    <string name="btn_add_email">"Add additional email address"</string>
    <string name="btn_unlock">"Unlock"</string>
    <string name="btn_add_keyserver">"Add"</string>
    <string name="btn_save_default">"Save as default"</string>
    <string name="btn_saved">"Saved!"</string>
    <string name="btn_not_matching">"Not matching"</string>

    <!-- Content Description -->
    <string name="cd_encrypt_files">"Encrypt files"</string>
    <string name="cd_exchange_keys">"Exchange keys"</string>
    <string name="cd_encrypt_text">"Encrypt text"</string>
    <string name="cd_share_nfc">"Share via NFC"</string>

    <!-- menu -->
    <string name="menu_preferences">"Settings"</string>
    <string name="menu_help">"Help"</string>
    <string name="menu_export_key">"Backup key"</string>
    <string name="menu_delete_key">"Delete key"</string>
    <string name="menu_manage_keys">"Manage my keys"</string>
    <string name="menu_search">"Search"</string>
    <string name="menu_nfc_preferences">"NFC settings"</string>
    <string name="menu_beam_preferences">"Beam settings"</string>
    <string name="menu_encrypt_to">"Encrypt to…"</string>
    <string name="menu_select_all">"Select all"</string>
    <string name="menu_export_all_keys">"Export all keys"</string>
    <string name="menu_update_all_keys">"Update all keys"</string>
    <string name="menu_advanced">"Advanced"</string>
    <string name="menu_certify_fingerprint">"Confirm with fingerprint"</string>
    <string name="menu_certify_fingerprint_phrases">"Confirm with phrases"</string>
    <string name="menu_share_log">"Share log"</string>
    <string name="menu_change_password">"Change password"</string>

    <string name="menu_keyserver_add">"Add"</string>

    <!-- label -->
    <string name="label_message">"Text"</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 Password"</string>
    <string name="label_passphrase">"Password"</string>
    <string name="label_pin">"PIN"</string>
    <string name="label_unlock">"Unlocking…"</string>
    <string name="label_passphrase_again">"Repeat Password"</string>
    <string name="label_show_passphrase">"Show Password"</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_num_keypad_for_security_token_pin">Use number keypad for PINs</string>
    <string name="label_asymmetric_from">"Sign with:"</string>
    <string name="label_to">"Encrypt to"</string>
    <string name="label_delete_after_encryption">"Delete files 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 password"</string>
    <string name="label_passphrase_cache_ttl">"Customize 'Remember' choices"</string>
    <string name="label_passphrase_cache_subs">"Remember passwords by subkey"</string>
    <string name="label_message_compression">"Text compression"</string>
    <string name="label_file_compression">"File compression"</string>
    <string name="label_keyservers">"Manage OpenPGP keyservers"</string>
    <string name="label_key_id">"Key ID"</string>
    <string name="label_key_created">"Key created %s"</string>
    <string name="label_key_type">"Type"</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 Internet"</string>
    <string name="label_fingerprint">"Fingerprint"</string>
    <string name="expiry_date_dialog_title">"Set expiry date"</string>
    <string name="label_keyservers_title">"Keyservers"</string>
    <string name="label_keyserver_settings_hint">"Drag to change order, tap to edit/delete"</string>
    <string name="label_selected_keyserver_title">"Selected keyserver"</string>
    <string name="label_preferred">"preferred"</string>
    <string name="label_enable_compression">"Enable compression"</string>
    <string name="label_encrypt_filenames">"Encrypt filenames"</string>
    <string name="label_hidden_recipients">"Hide recipients"</string>

    <string name="label_verify_keyserver_connection">"Test connection"</string>
    <string name="label_only_trusted_keyserver">"Only trusted keyserver"</string>
    <string name="label_enter_keyserver_url">"URL"</string>
    <string name="label_keyserver_dialog_delete">"Delete keyserver"</string>
    <string name="label_theme">"Theme"</string>

    <string name="pref_keyserver">"OpenPGP keyservers"</string>
    <string name="pref_keyserver_summary">"Search keys on selected OpenPGP keyservers (HKP protocol)"</string>
    <string name="pref_keybase">"keybase.io"</string>
    <string name="pref_keybase_summary">"Search keys on keybase.io"</string>
    <string name="pref_facebook">"Facebook"</string>
    <string name="pref_facebook_summary">"Search keys on Facebook by username"</string>

    <string name="label_sync_settings_keyserver_title">"Automatic key updates"</string>
    <string name="label_sync_settings_keyserver_summary_on">"Every three days, keys are updated from the preferred keyserver"</string>
    <string name="label_sync_settings_keyserver_summary_off">"Keys are not automatically updated"</string>
    <string name="label_sync_settings_wifi_title">"Sync only on Wi-Fi"</string>
    <string name="label_sync_settings_contacts_title">"Link keys to contacts"</string>
    <string name="label_sync_settings_contacts_summary_on">"Link keys to contacts based on names and email addresses. This happens completely offline on your device."</string>
    <string name="label_sync_settings_contacts_summary_off">"New keys will not be linked to contacts"</string>
    <!-- label shown in Android settings under the OpenKeychain account -->
    <string name="keyserver_sync_settings_title">"Automatic key updates"</string>

    <string name="label_experimental_settings_desc_title">"Warning"</string>
    <string name="label_experimental_settings_desc_summary">"These features are not yet finished or results of user experience/security research. Thus, don't rely on their security and please don't report issues you encounter!"</string>

    <string name="label_experimental_settings_word_confirm_title">"Confirmation with phrases"</string>
    <string name="label_experimental_settings_word_confirm_summary">"Confirm keys with phrases instead of hexadecimal fingerprints"</string>
    <string name="label_experimental_settings_linked_identities_title">"Linked Identities"</string>
    <string name="label_experimental_settings_linked_identities_summary">"Link keys to Twitter, GitHub, websites or DNS (similar to keybase.io but decentralized)"</string>
    <string name="label_experimental_settings_keybase_title">"Keybase.io Proofs"</string>
    <string name="label_experimental_settings_keybase_summary">"Contact keybase.io for key proofs and show them every time a key is displayed"</string>
    <string name="label_experimental_settings_theme_summary">"(The icons and many screens are not yet adjusted accordingly for the dark theme)"</string>

    <!-- Proxy Preferences -->
    <string name="pref_proxy_tor_title">"Enable Tor"</string>
    <string name="pref_proxy_tor_summary">"Requires Orbot to be installed"</string>
    <string name="pref_proxy_normal_title">"Enable other proxy"</string>
    <string name="pref_proxy_host_title">"Proxy Host"</string>
    <string name="pref_proxy_host_err_invalid">"Proxy host cannot be empty"</string>
    <string name="pref_proxy_port_title">"Proxy Port"</string>
    <string name="pref_proxy_port_err_invalid">"Invalid port number entered"</string>
    <string name="pref_proxy_type_title">"Proxy Type"</string>

    <!-- proxy type choices and values -->
    <string name="pref_proxy_type_choice_http">"HTTP"</string>
    <string name="pref_proxy_type_choice_socks">"SOCKS"</string>

    <!-- OrbotHelper strings -->
    <string name="orbot_ignore_tor">"Don't use Tor"</string>

    <!-- InstallDialogFragment strings -->
    <string name="orbot_install_dialog_title">Install Orbot to use Tor?</string>
    <string name="orbot_install_dialog_install">"Install"</string>
    <string name="orbot_install_dialog_content">You must have Orbot installed and activated to proxy traffic through it. Would you like to install it?</string>
    <string name="orbot_install_dialog_cancel">"Cancel"</string>
    <string name="orbot_install_dialog_ignore_tor">"Don't use Tor"</string>

    <!-- StartOrbotDialogFragment strings -->
    <string name="orbot_start_dialog_title">Start Orbot?</string>
    <string name="orbot_start_dialog_content">"Orbot doesn't appear to be running. Would you like to start it up and connect to Tor?"</string>
    <string name="orbot_start_btn">"Start Orbot"</string>
    <string name="orbot_start_dialog_start">"Start Orbot"</string>
    <string name="orbot_start_dialog_cancel">"Cancel"</string>
    <string name="orbot_start_dialog_ignore_tor">"Don't use Tor"</string>


    <string name="user_id_no_name"><![CDATA[<no name>]]></string>
    <string name="none"><![CDATA[<none>]]></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="choice_select_cert">"Select a Key"</string>
    <string name="filemanager_title_open">"Open…"</string>
    <string name="rsa_2048">"RSA 2048"</string>
    <string name="rsa_2048_description_html">"smaller file size, considered secure until 2030"</string>
    <string name="rsa_3072">"RSA 3072"</string>
    <string name="rsa_3072_description_html">"recommended, considered secure until 2040"</string>
    <string name="rsa_4096">"RSA 4096"</string>
    <string name="rsa_4096_description_html">"larger file size, considered secure until 2040+"</string>
    <string name="ecc_p256">"ECC P-256"</string>
    <string name="ecc_p256_description_html">"very tiny file size, considered secure until 2040 &lt;br/> &lt;u>experimental and not supported by all implementations&lt;/u>"</string>
    <string name="ecc_p521">"ECC P-521"</string>
    <string name="ecc_p521_description_html">"tiny file size, considered secure until 2040+ &lt;br/> &lt;u>experimental and not supported by all implementations&lt;/u>"</string>
    <string name="usage_none">"None (subkey binding only)"</string>
    <string name="usage_sign">"Sign"</string>
    <string name="usage_encrypt">"Encrypt"</string>
    <string name="usage_sign_and_encrypt">"Sign &amp; Encrypt"</string>
    <string name="error">"Error"</string>
    <string name="error_message">"Error: %s"</string>
    <string name="theme_dark">"Dark"</string>
    <string name="theme_light">"Light"</string>
    <string name="strip">"Strip it"</string>

    <!-- sentences -->
    <string name="wrong_passphrase">"Wrong password."</string>
    <string name="no_filemanager_installed">"No compatible file manager installed."</string>
    <string name="passphrases_do_not_match">"The passwords didn't match."</string>
    <string name="passphrase_must_not_be_empty">"Please enter a password."</string>
    <string name="passphrase_for_symmetric_encryption">"Enter password"</string>
    <string name="passphrase_for_backup">"Enter backup code"</string>
    <string name="passphrase_for">"Enter password for '%s'"</string>
    <string name="pin_for">"Enter PIN for '%s'"</string>
    <string name="security_token_pin_for">"Enter PIN to access Security Token for '%s'"</string>
    <string name="security_token_nfc_text">"Hold Security Token against the NFC marker at the back of your device."</string>
    <string name="security_token_nfc_wait">"Keep the Security Token at the back!"</string>
    <string name="security_token_nfc_finished">"Take away the Security Token now."</string>
    <string name="security_token_nfc_try_again_text">"Take away the Security Token now and touch TRY AGAIN."</string>
    <string name="file_delete_confirmation_title">"Delete original files?"</string>
    <string name="file_delete_confirmation">"The following files will be deleted:%s"</string>
    <string name="file_delete_successful">"%1$d out of %2$d files have been deleted.%3$s"</string>
    <string name="no_file_selected">"No file selected."</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="select_encryption_key">"Select at least one encryption key."</string>
    <string name="error_no_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_backup_dest">"A backup excluding your keys will be made, please specify a destination file.\nWARNING: File will be overwritten if it exists!"</string>
    <string name="specify_backup_dest_single">"This key will be shared, please specify a destination file.\nWARNING: File will be overwritten if it exists!"</string>
    <string name="specify_backup_dest_secret_single">"A full backup of your key will be made, please specify a destination file.\nWARNING: File will be overwritten if it exists!"</string>
    <string name="specify_backup_dest_secret">"A full backup of all keys including yours will be made, please specify a destination file.\nWARNING: File will be overwritten if it exists!"</string>
    <string name="key_deletion_confirmation_multi">"Do you really want to delete all selected keys?"</string>
    <string name="secret_key_deletion_confirmation">"After deletion you will not be able to decrypt messages/files encrypted with this key and lose all key confirmations done with it!"</string>
    <string name="public_key_deletetion_confirmation">"Delete key '%s'?"</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="alert_strip">"Stripping this subkey will make it unusable on this device!"</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 confirmation!"</string>
    <string name="text_copied_to_clipboard">"Text has been copied to the clipboard!"</string>
    <string name="how_to_import">"How to import this on my desktop PC?"</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">"have not been deleted. Delete them manually!"</string>
    <string name="error_file_added_already">%s has already been added.</string>
    <string name="error_file_not_found">"file not found"</string>
    <string name="error_bad_data">"Bad data!"</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 address found"</string>
    <string name="error_key_needs_a_user_id">"need at least one identity"</string>
    <string name="error_no_signature_passphrase">"no password 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 password"</string>
    <string name="error_could_not_extract_private_key">"could not extract private key"</string>
    <string name="error_wrong_security_token">"this security token doesn't contain required 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 must be enabled!"</string>
    <string name="error_beam_needed">"Beam must be enabled!"</string>
    <string name="error_nothing_import">"No keys found!"</string>
    <string name="error_nothing_import_selected">"No keys selected for import!"</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>
    <string name="error_denied_storage_permission">"Can not read files from storage because access has been denied!"</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_insecure_cryptography">"Invalid signature (Insecure Cryptography)!"</string>
    <string name="decrypt_result_signature_uncertified">"Signed by <b>unconfirmed</b> key"</string>
    <string name="decrypt_result_signature_secret">"Signed by your key"</string>
    <string name="decrypt_result_signature_certified">"Signed by confirmed key"</string>
    <string name="decrypt_result_signature_expired_key">"Signed by <b>expired</b> key!"</string>
    <string name="decrypt_result_signature_revoked_key">"Signed by <b>revoked</b> key!"</string>
    <string name="decrypt_result_signature_missing_key">"Signed by <b>unknown public key</b>"</string>
    <string name="decrypt_result_encrypted">"Encrypted"</string>
    <string name="decrypt_result_not_encrypted">"Not Encrypted"</string>
    <string name="decrypt_result_insecure">"Insecure Encryption"</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. 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_benchmarking">"benchmarking…"</string>
    <string name="progress_revoking_uploading">"Revoking and uploading key…"</string>
    <string name="progress_updating">"Updating keys…"</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 password…"</string>
    <string name="progress_modify_pin">"changing PIN…"</string>
    <string name="progress_modify_admin_pin">"changing Admin PIN…"</string>

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

    <string name="progress_start">"preparing operation…"</string>
    <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_prepare_decryption">"Starting decryption…"</string>
    <string name="progress_decrypting">"Decrypting data…"</string>
    <string name="progress_preparing_signature">"preparing signature…"</string>
    <string name="progress_processing_signature">processing signature…</string>
    <string name="progress_generating_signature">"generating 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>

    <string name="progress_verifying_keyserver_connection">"verifying connection…"</string>

    <string name="progress_starting_orbot">"Starting Orbot…"</string>

    <!-- action strings -->
    <string name="hint_cloud_search_hint">"Search via Name, Email…"</string>

    <!-- key bit length selections -->
    <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">"Key Confirmation"</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>
    <string name="help_tab_donations">"Donate"</string>

    <!-- Import -->
    <string name="import_tab_keyserver">"Keyserver"</string>
    <string name="import_tab_cloud">"Key Search"</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_fp">"Fingerprint is malformed or too short!"</string>
    <string name="import_qr_code_too_short_fingerprint">"Fingerprint is too short!"</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>

    <!-- Import from URL -->
    <string name="import_url_warn_no_search_parameter">"No search query defined. You can still manually search on this keyserver."</string>

    <!-- Generic result toast -->
    <string name="snackbar_details">"Details"</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 one 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 one 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."</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>

    <!-- Revoke result toast (snackbar) -->
    <string name="revoke_ok">"Successfully revoked key."</string>
    <string name="revoke_fail">"Error revoking key!"</string>
    <string name="revoke_nothing">"Nothing to revoke."</string>
    <string name="revoke_cancelled">"Revoke operation cancelled."</string>

    <!-- Certify result toast -->
    <plurals name="certify_keys_ok">
        <item quantity="one">"Successfully confirmed key%2$s."</item>
        <item quantity="other">"Successfully confirmed %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_settings_show_info">"Show advanced information"</string>
    <string name="api_settings_hide_info">"Hide advanced information"</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"</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_certificate">"SHA-256 of Package Certificate"</string>
    <string name="api_settings_accounts">"Accounts (old API)"</string>
    <string name="api_settings_advanced">"Advanced"</string>
    <string name="api_settings_allowed_keys">"Allowed Keys"</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 email addresses:"</string>
    <string name="api_select_pub_keys_dublicates_text">"More than one key exist for these email addresses:"</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>
    <string name="api_select_sign_key_text">"Please select one of your existing keys or create a new one."</string>
    <string name="api_select_keys_text">"None of the allowed keys is able to decrypt the content. Please select the allowed keys."</string>

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

    <!-- retry upload dialog -->
    <string name="retry_up_dialog_title">"Upload failed"</string>
    <string name="retry_up_dialog_message">"Upload failed. Would you like to retry the operation?"</string>
    <string name="retry_up_dialog_btn_reupload">"Retry Operation"</string>
    <string name="retry_up_dialog_btn_cancel">"Cancel Operation"</string>

    <!-- Delete or revoke private key dialog -->
    <string name="del_rev_dialog_message">"If you would no longer like to use this key, it should be revoked and uploaded. Select 'DELETE ONLY' if you wish to remove the key from OpenKeychain but continue to use it from somewhere else."</string>
    <string name="del_rev_dialog_title">"Revoke/Delete key '%s'"</string>
    <string name="del_rev_dialog_btn_revoke">"Revoke and upload"</string>
    <string name="del_rev_dialog_btn_delete">"Delete only"</string>

    <!-- Delete Or Revoke Dialog spinner -->
    <string name="del_rev_dialog_choice_delete">"Delete only"</string>
    <string name="del_rev_dialog_choice_rev_upload">"Revoke and Upload"</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 confirmed keys only"</string>
    <string name="key_list_fab_qr_code">"Scan QR Code"</string>
    <string name="key_list_fab_search">"Key Search"</string>
    <string name="key_list_fab_import">"Import from File"</string>

    <!-- Key view -->
    <string name="key_view_action_edit">"Edit"</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">"Confirm key"</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_start">"Start"</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="key_view_tab_keybase">"Keybase.io"</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">"Confirmed"</string>
    <string name="user_id_info_certified_text">"This identity has been confirmed by you."</string>
    <string name="user_id_info_uncertified_title">"Not confirmed"</string>
    <string name="user_id_info_uncertified_text">"This identity has not been confirmed 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>

    <!-- Key trust -->
    <string name="key_trust_no_cloud_evidence">"No proof from the Internet on this key’s trustworthiness."</string>
    <string name="key_trust_start_cloud_search">"Start search"</string>
    <string name="key_trust_results_prefix">"Keybase.io offers “proofs” which assert that the owner of this key: "</string>

    <!-- keybase proof stuff -->
    <string name="keybase_narrative_twitter">"Posts to Twitter as %s"</string>
    <string name="keybase_narrative_github">"Is known on GitHub as %s"</string>
    <string name="keybase_narrative_dns">"Controls the domain name(s) %s"</string>
    <string name="keybase_narrative_web_site">"Can post to the Web site(s) %s"</string>
    <string name="keybase_narrative_reddit">"Posts to Reddit as %s"</string>
    <string name="keybase_narrative_coinbase">"Is known on Coinbase as %s"</string>
    <string name="keybase_narrative_hackernews">"Posts to Hacker News as %s"</string>
    <string name="keybase_narrative_unknown">"Unknown proof type %s"</string>
    <string name="keybase_proof_failure">"Unfortunately this proof cannot be verified."</string>
    <string name="keybase_unknown_proof_failure">"Unrecognized problem with proof checker"</string>
    <string name="keybase_problem_fetching_evidence">"Problem with proof"</string>
    <string name="keybase_key_mismatch">"Key fingerprint doesn’t match that in proof post"</string>
    <string name="keybase_dns_query_failure">"DNS TXT Record retrieval failed"</string>
    <string name="keybase_no_prover_found">"No proof checker found for"</string>
    <string name="keybase_message_payload_mismatch">"Decrypted proof post does not match expected value"</string>
    <string name="keybase_message_fetching_data">"Fetching proof"</string>
    <string name="keybase_proof_succeeded">"This proof has been verified!"</string>
    <string name="keybase_a_post">"A post"</string>
    <string name="keybase_fetched_from">"fetched from"</string>
    <string name="keybase_for_the_domain">"for the domain"</string>
    <string name="keybase_contained_signature">"contains a message which could only have been created by the owner of this key."</string>
    <string name="keybase_twitter_proof">"A tweet"</string>
    <string name="keybase_dns_proof">"A DNS TXT record"</string>
    <string name="keybase_web_site_proof">"A text file"</string>
    <string name="keybase_github_proof">"A gist"</string>
    <string name="keybase_reddit_proof">"A JSON file"</string>
    <string name="keybase_reddit_attribution">"attributed by Reddit to"</string>
    <string name="keybase_verify">"Verify"</string>

    <!-- Edit key -->
    <string name="edit_key_action_change_passphrase">"Change Password"</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>
        <item>"Move Subkey to Security Token"</item>
    </string-array>
    <string name="edit_key_new_subkey">"new subkey"</string>
    <string name="edit_key_select_usage">"Please select key usage!"</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>
    <string name="edit_key_error_bad_security_token_algo">"Algorithm not supported by Security Token!"</string>
    <string name="edit_key_error_bad_security_token_size">"Key size not supported by Security Token!"</string>
    <string name="edit_key_error_bad_security_token_stripped">"Cannot move key to Security Token (either stripped or already on Security Token)!"</string>

    <!-- Create key -->
    <string name="create_key_upload">"Synchronize with the Internet"</string>
    <string name="create_key_empty">"This field is required"</string>
    <string name="create_key_passphrases_not_equal">"Passwords 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_final_email_valid_warning">"Many applications work better when provided with keys only containing valid email addresses"</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_name_text">"Choose a name associated with this key. This can be a full name, e.g., 'John Doe', or a nickname, e.g., 'Johnny'."</string>
    <string name="create_key_email_text">"Enter your main email address used for secure communication."</string>
    <string name="create_key_passphrase_text">"Choose a strong password. It protects your key when your device gets stolen."</string>
    <string name="create_key_hint_full_name">"Full Name or Nickname"</string>
    <string name="create_key_edit">"Change key configuration"</string>
    <string name="create_key_add_email">"Add email address"</string>
    <string name="create_key_add_email_text">"Additional email addresses are also associated to this key and can be used for secure communication."</string>
    <string name="create_key_email_already_exists_text">"Email address has already been added"</string>
    <string name="create_key_email_empty_email">"Email address can not be empty"</string>
    <string name="create_key_yubi_key_pin_text">"Please choose a PIN with 6 numbers."</string>
    <string name="create_key_yubi_key_admin_pin_text">"Please write down the Admin PIN and store it in a safe place (required when you used a wrong PIN 3 times)."</string>
    <string name="create_key_yubi_key_pin">"PIN"</string>
    <string name="create_key_yubi_key_admin_pin">"Admin PIN"</string>
    <string name="create_key_yubi_key_pin_repeat">"Repeat PIN"</string>
    <string name="create_key_yubi_key_pin_not_correct">"PIN is not correct!"</string>
    <string name="create_key_yubi_key_pin_too_short">"PIN must be at least 6 numbers long!"</string>
    <string name="create_key_yubi_key_pin_insecure">"Please choose a secure PIN, not 000000, 123456 or similar combinations."</string>

    <!-- View key -->
    <string name="view_key_revoked">"Revoked: Key must not be used anymore!"</string>
    <string name="view_key_expired">"Expired: The contact needs to extend the key's validity!"</string>
    <string name="view_key_expired_secret">"Expired: You can extend the keys validity by editing it!"</string>
    <string name="view_key_my_key">"My Key"</string>
    <string name="view_key_verified">"Confirmed Key"</string>
    <string name="view_key_unverified">"Unconfirmed: Scan QR Code to confirm key!"</string>

    <string name="view_key_fragment_no_system_contact">"&lt;none&gt;"</string>

    <!-- Add/Edit keyserver -->
    <string name="add_keyserver_dialog_title">"Add keyserver"</string>
    <string name="edit_keyserver_dialog_title">"Edit keyserver"</string>
    <string name="add_keyserver_connection_verified">"Connection verified!"</string>
    <string name="add_keyserver_without_verification">"Keyserver added without verification."</string>
    <string name="add_keyserver_invalid_url">"Invalid URL!"</string>
    <string name="add_keyserver_keyserver_not_trusted">"Keyserver is not one of the trusted ones (no pinned certificate available)!"</string>
    <string name="add_keyserver_connection_failed">"Failed to connect to keyserver. Please check the URL and your Internet connection."</string>
    <string name="keyserver_preference_deleted">"%s deleted"</string>
    <string name="keyserver_preference_cannot_delete_last">"Cannot delete last keyserver. At least one is required!"</string>

    <!-- Navigation Drawer -->
    <string name="nav_keys">"Keys"</string>
    <string name="nav_encrypt_decrypt">"Encrypt/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>
    <string name="nav_backup">"Backup/Restore"</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_fingerprint_error">"Fingerprint of importing key does not match expected!"</string>
    <string name="msg_ip_fingerprint_ok">"Fingerprint check OK"</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 secret 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 secret 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 password"</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 key on Security Token"</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_time_early">"Subkey binding certificate has earlier timestamp than its key!"</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_too_many">"Removing user ID '%s'. More than 100 User IDs are not imported!"</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_2048">"Key size must be greater or equal 2048!"</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_divert">"Will use Security Token for crypto operations"</string>
    <string name="msg_mf_error_all_keys_stripped">All keys are stripped!</string>
    <string name="msg_mf_error_divert_newsub">"Creation of new subkeys is not supported for primary keys on Security Tokens!"</string>
    <string name="msg_mf_error_divert_serial">"The serial number of a key on Security Tokens 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 password! 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_noop">"Nothing to do!"</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_passphrases_unchanged">"No password changed!"</string>
    <string name="msg_mf_error_pgp">"Internal OpenPGP error!"</string>
    <string name="msg_mf_error_sig">"Signature exception!"</string>
    <string name="msg_mf_error_sub_stripped">"Cannot modify stripped subkey %s!"</string>
    <string name="msg_mf_error_subkey_missing">"Tried to operate on missing subkey %s!"</string>
    <string name="msg_mf_error_conflicting_nfc_commands">"Cannot move key to Security Token in same operation that creates an on-card signature."</string>
    <string name="msg_mf_error_duplicate_keytocard_for_slot">"Security Token supports only one slot per key type."</string>
    <string name="msg_mf_error_invalid_flags_for_keytocard">"Inappropriate key flags for Security Token key."</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 password for keyring"</string>
    <string name="msg_mf_pin">"Changing PIN on card"</string>
    <string name="msg_mf_admin_pin">"Changing Admin PIN on card"</string>
    <string name="msg_mf_passphrase_key">"Re-encrypting subkey %s with new password"</string>
    <string name="msg_mf_passphrase_empty_retry">"Setting new password failed, trying again with empty old password"</string>
    <string name="msg_mf_passphrase_fail">"Password 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_restricted_mode">"Changing to restricted operation mode"</string>
    <string name="msg_mf_subkey_change">"Modifying subkey %s"</string>
    <string name="msg_mf_require_divert">"Using Security Token for crypto operations"</string>
    <string name="msg_mf_require_passphrase">"Password required for operations"</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_keytocard_start">"Moving subkey %s to Security Token"</string>
    <string name="msg_mf_keytocard_finish">"Moved %1$s to Security Token %2$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_recursive">"Skipping recursive consolidation"</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 password"</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_error_extract_public_upload">"Error extracting public key for upload!"</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_all">"Promoting all subkeys"</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_subkey_match">"Promoting subkey: %s"</string>
    <string name="msg_pr_subkey_nomatch">"Subkey not on Security Token: %s"</string>
    <string name="msg_pr_success">"Key successfully promoted"</string>

    <!-- Other messages used in OperationLogs -->
    <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_bad_flags">"Key is not an encryption key, skipping…"</string>
    <string name="msg_dc_askip_unavailable">"Key not available, skipping…"</string>
    <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_charset">"Found charset header: '%s'"</string>
    <string name="msg_dc_backup_version">"Found backupVersion header: '%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">"File size: %s"</string>
    <string name="msg_dc_clear_meta_size_unknown">"File size is unknown"</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 password!"</string>
    <string name="msg_dc_error_sym_passphrase">"Error decrypting data! (Bad password?)"</string>
    <string name="msg_dc_error_corrupt_data">"Data is corrupt!"</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_invalid_data">"No valid OpenPGP encrypted or signed data found!"</string>
    <string name="msg_dc_error_io">"Encountered an error reading input data!"</string>
    <string name="msg_dc_error_input">"Error opening input data stream!"</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_no_signature">"Missing signature data!"</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">"Decryption/Verification finished"</string>
    <string name="msg_dc_pass_cached">"Using password from cache"</string>
    <string name="msg_dc_pending_nfc">"NFC token required, requesting user input…"</string>
    <string name="msg_dc_pending_passphrase">"Password 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>
    <string name="msg_dc_insecure_encryption_key">"Insecure encryption key was used! This can happen because the key is old, or from an attack."</string>
    <string name="msg_dc_insecure_symmetric_encryption_algo">"Insecure encryption algorithm has been used! This can happen because the application is out of date, or from an attack."</string>
    <string name="msg_dc_insecure_hash_algo">"Insecure hash algorithm has been used! This can happen because the application is out of date, or from an attack."</string>
    <string name="msg_dc_insecure_mdc_missing">"Missing the Modification Detection Code (MDC) packet! This can happen because the encrypting application is out of date, or from a downgrade attack."</string>
    <string name="msg_dc_insecure_key">"Insecure key: Either the bit length of RSA/DSA/ElGamal is too short or the ECC curve/algorithm is considered insecure! This can happen because the application is out of date, or from an attack."</string>

    <!-- Messages for VerifySignedLiteralData operation -->
    <string name="msg_vl">"Starting signature check"</string>
    <string name="msg_vl_error_no_siglist">"No signature list in signed literal data!"</string>
    <string name="msg_vl_error_wrong_key">"Message not signed with expected key!"</string>
    <string name="msg_vl_error_no_signature">"Missing signature data!"</string>
    <string name="msg_vl_error_missing_literal">"No payload in signed literal data"</string>
    <string name="msg_vl_clear_meta_file">"Filename: %s"</string>
    <string name="msg_vl_clear_meta_mime">"MIME type: %s"</string>
    <string name="msg_vl_clear_meta_time">"Modification time: %s"</string>
    <string name="msg_vl_clear_meta_size">"File size: %s"</string>
    <string name="msg_vl_clear_signature_check">"Verifying signature data"</string>
    <string name="msg_vl_error_integrity_check">"Integrity check error!"</string>
    <string name="msg_vl_ok">"OK"</string>

    <!-- Messages for SignEncrypt operation -->
    <string name="msg_se">"Starting sign/encrypt operation"</string>
    <string name="msg_se_input_bytes">"Processing input from byte array"</string>
    <string name="msg_se_input_uri">"Processing input from URI"</string>
    <string name="msg_se_error_no_input">"No input given!"</string>
    <string name="msg_se_error_input_uri_not_found">"Error opening URI for reading!"</string>
    <string name="msg_se_error_output_uri_not_found">"Error opening URI for writing!"</string>
    <string name="msg_se_error_too_many_inputs">"More inputs than outputs specified! This is probably a programming error, please report!"</string>
    <string name="msg_se_success">"Sign/encrypt operation successful"</string>

    <!-- Messages for PgpSignEncrypt operation -->
    <string name="msg_pse_asymmetric">"Preparing public keys for encryption"</string>
    <string name="msg_pse_compressing">"Preparing compression"</string>
    <string name="msg_pse_encrypting">"Encrypting data"</string>
    <string name="msg_pse_error_bad_passphrase">"Bad password!"</string>
    <string name="msg_pse_error_io">"Encountered IO Exception during operation!"</string>
    <string name="msg_pse_error_key_sign">"Selected signing key cannot sign data!"</string>
    <string name="msg_pse_error_sign_key">"Error fetching signing key!"</string>
    <string name="msg_pse_error_nfc">"NFC data error!"</string>
    <string name="msg_pse_error_no_passphrase">"No password provided!"</string>
    <string name="msg_pse_error_pgp">"Internal OpenPGP error!"</string>
    <string name="msg_pse_error_sig">"Encountered OpenPGP signature exception!"</string>
    <string name="msg_pse_error_unlock">"Unknown error unlocking key!"</string>
    <string name="msg_pse_error_revoked_or_expired">"Revoked/Expired key cannot be used for sign or encryption"</string>
    <string name="msg_pse_key_ok">"Encrypting for key: %s"</string>
    <string name="msg_pse_key_unknown">"Missing key for encryption: %s"</string>
    <string name="msg_pse_key_warn">"Bad key for encryption: %s"</string>
    <string name="msg_pse_ok">"Sign/Encrypt operation successful!"</string>
    <string name="msg_pse_pending_nfc">"NFC token required, requesting user input…"</string>
    <string name="msg_pse_pending_passphrase">"Password required, requesting user input…"</string>
    <string name="msg_pse_signing">"Signing data (without encryption)"</string>
    <string name="msg_pse_signing_cleartext">"Creating cleartext signature"</string>
    <string name="msg_pse_signing_detached">"Creating detached signature"</string>
    <string name="msg_pse_sigcrypting">"Encrypting data with signature"</string>
    <string name="msg_pse">"Starting sign and/or encrypt operation"</string>
    <string name="msg_pse_symmetric">"Preparing symmetric encryption"</string>

    <string name="msg_crt_certifying">"Generating certifications"</string>
    <plurals name="msg_crt_certify_uids">
        <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>
    <plurals name="msg_crt_certify_uats">
        <item quantity="one">"Certifying one user attribute for key %2$s"</item>
        <item quantity="other">"Certifying %1$d user attributes 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">"Certifying keyrings"</string>
    <string name="msg_crt_master_fetch">"Fetching certifying master key"</string>
    <string name="msg_crt_nfc_return">"Returning to NFC screen"</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_warn_upload_failed">"Upload 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_error_keyserver">"Could not retrieve key from keyservers: %s"</string>
    <string name="msg_import_fetch_error_keyserver_secret">"Cannot import secret key from keyserver!"</string>
    <string name="msg_import_fetch_keybase">"Retrieving from keybase.io: %s"</string>
    <string name="msg_import_fetch_facebook">"Retrieving from Facebook: %s"</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_merge">"Merging retrieved data"</string>
    <string name="msg_import_merge_error">"Error merging retrieved data!"</string>
    <string name="msg_import_error">"Import operation failed!"</string>
    <string name="msg_import_error_io">"Import operation failed due to i/o error!"</string>
    <string name="msg_import_partial">"Import operation successful, with errors!"</string>
    <string name="msg_import_success">"Import operation successful!"</string>

    <plurals name="msg_backup">
        <item quantity="one">"Backup with one key"</item>
        <item quantity="other">"Backup with %d keys"</item>
    </plurals>
    <string name="msg_backup_all">"Backup with all keys"</string>
    <string name="msg_backup_public">"Creating backup of public key %s"</string>
    <string name="msg_backup_secret">"Creating backup of secret key %s"</string>
    <string name="msg_backup_error_uri_open">"Error opening URI stream!"</string>
    <string name="msg_backup_error_db">"Database error!"</string>
    <string name="msg_backup_error_io">"Input/output error!"</string>
    <string name="msg_backup_success">"Backup operation successful"</string>

    <string name="msg_upload">"Uploading public key"</string>
    <string name="msg_upload_proxy_direct">"Using proxy: None"</string>
    <string name="msg_upload_proxy_tor">"Using proxy: TOR"</string>
    <string name="msg_upload_proxy">"Using proxy: %s"</string>
    <string name="msg_upload_server">"Server: %s"</string>
    <string name="msg_upload_key">"Key ID: %s"</string>
    <string name="msg_upload_error_key">"Error preprocessing key data!"</string>
    <string name="msg_upload_error_not_found">"Key not found!"</string>
    <string name="msg_upload_error_upload">"Error uploading key to server! Please check your Internet connection"</string>
    <string name="msg_upload_success">"Upload to keyserver 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_revoke_error_empty">"Nothing to revoke!"</string>
    <string name="msg_revoke_error_not_found">"Cannot find key to revoke!"</string>
    <string name="msg_revoke_key">"Revoking key %s"</string>
    <string name="msg_revoke_key_fail">"Failed revoking key"</string>
    <string name="msg_revoke_ok">"Successfully revoked key"</string>

    <!-- Linked Identity verification -->
    <string name="msg_lv">"Verifying linked identity…"</string>
    <string name="msg_lv_match">"Searching for token"</string>
    <string name="msg_lv_match_error">"No token found in resource!"</string>
    <string name="msg_lv_fp_ok">"Fingerprint OK."</string>
    <string name="msg_lv_fp_error">"Fingerprint mismatch!"</string>

    <string name="msg_lv_error_twitter_auth">"Error obtaining Twitter auth token!"</string>
    <string name="msg_lv_error_twitter_handle">"Twitter account handle mismatch in response!"</string>
    <string name="msg_lv_error_twitter_response">"Unexpected response from Twitter API!"</string>
    <string name="msg_lv_error_github_handle">"GitHub account handle mismatch in response!"</string>
    <string name="msg_lv_error_github_not_found">"Gist contains no matching files!"</string>

    <string name="msg_lv_fetch">"Fetching URI '%s'"</string>
    <string name="msg_lv_fetch_redir">"Following redirect to '%s'"</string>
    <string name="msg_lv_fetch_ok">"Successfully fetched (HTTP %s)"</string>
    <string name="msg_lv_fetch_error">"Server error (HTTP %s)"</string>
    <string name="msg_lv_fetch_error_url">"URL is malformed!"</string>
    <string name="msg_lv_fetch_error_io">"IO Error!"</string>
    <string name="msg_lv_fetch_error_format">"Format error!"</string>
    <string name="msg_lv_fetch_error_nothing">"Resource not found!"</string>

    <string name="msg_bench">"Benchmarking some operations…"</string>
    <string name="msg_bench_enc_time">"Encryption time: %ss"</string>
    <string name="msg_bench_enc_time_avg">"Average time to encrypt 5MB: %ss"</string>
    <string name="msg_bench_dec_time">"Decryption time: %ss"</string>
    <string name="msg_bench_dec_time_avg">"Average time to decrypt 5MB: %ss"</string>
    <string name="msg_bench_s2k_100ms_its">"S2K iteration count for 100ms: %s"</string>
    <string name="msg_bench_s2k_for_it">"Time for %1$s SHA1 S2K iterations: %2$sms"</string>
    <string name="msg_bench_success">"Benchmarking complete!"</string>

    <string name="msg_data">"Processing input data"</string>
    <string name="msg_data_openpgp">"Attempting to process OpenPGP data"</string>
    <string name="msg_data_detached">"Encountered detached signature"</string>
    <string name="msg_data_detached_clear">"Clearing earlier, unsigned data!"</string>
    <string name="msg_data_detached_sig">"Processing detached signature"</string>
    <string name="msg_data_detached_raw">"Processing signed data"</string>
    <string name="msg_data_detached_nested">"Skipping nested signed data!"</string>
    <string name="msg_data_detached_trailing">"Skipping trailing data after signed part!"</string>
    <string name="msg_data_detached_unsupported">"Unsupported type of detached signature!"</string>
    <string name="msg_data_error_io">"Error reading input data!"</string>
    <string name="msg_data_mime_bad">"Could not parse as MIME data"</string>
    <string name="msg_data_mime_filename">"Filename: '%s'"</string>
    <string name="msg_data_mime_from_extension">"Guessing MIME type from extension"</string>
    <string name="msg_data_mime_length">"Content-Length: %s"</string>
    <string name="msg_data_mime_charset">"Charset is '%s'"</string>
    <string name="msg_data_mime_charset_faulty">"Charset is '%s', but decoding failed!"</string>
    <string name="msg_data_mime_charset_guess">"Charset appears to be '%s'"</string>
    <string name="msg_data_mime_charset_unknown">"Charset is unknown, or data is not text."</string>
    <string name="msg_data_mime">"Parsing MIME data structure"</string>
    <string name="msg_data_mime_ok">"Finished parsing"</string>
    <string name="msg_data_mime_none">"No MIME structure found"</string>
    <string name="msg_data_mime_part">"Processing MIME part"</string>
    <string name="msg_data_mime_type">"Content-Type: %s"</string>
    <string name="msg_data_ok">"Data processing successful"</string>
    <string name="msg_data_skip_mime">"Skipping MIME parsing"</string>

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

    <string name="msg_get_success">"Downloaded successfully!"</string>
    <string name="msg_get_file_not_found">"Input file not found!"</string>
    <string name="msg_get_no_valid_keys">"No valid keys found in file/clipboard!"</string>
    <string name="msg_get_too_many_responses">"Key search query returned too many candidates. Please refine your query!"</string>
    <string name="msg_get_query_too_short">"Search query too short. Please refine your query!"</string>
    <string name="msg_get_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>

    <!-- Messages for Keybase Verification operation -->
    <string name="msg_keybase_verification">"Attempting keybase verification for %s"</string>
    <string name="msg_keybase_error_no_prover">"No proof checker found for %s"</string>
    <string name="msg_keybase_error_fetching_evidence">"Problem with fetching proof"</string>
    <string name="msg_keybase_error_key_mismatch">"Key fingerprint doesn’t match that in proof post"</string>
    <string name="msg_keybase_error_dns_fail">"DNS TXT Record retrieval failed"</string>
    <string name="msg_keybase_error_specific">"%s"</string>
    <string name="msg_keybase_error_msg_payload_mismatch">"Decrypted proof post does not match expected value"</string>

    <!-- Messages for Mime parsing operation -->
    <string name="msg_mime_parsing_start">"Parsing the MIME structure"</string>
    <string name="msg_mime_parsing_error">"MIME parsing failed"</string>
    <string name="msg_mime_parsing_success">"MIME parsing successfully!"</string>

    <!-- PassphraseCache -->
    <string name="passp_cache_notif_touch_to_clear">"Touch to clear passwords."</string>
    <plurals name="passp_cache_notif_n_keys">
        <item quantity="one">"%d password remembered"</item>
        <item quantity="other">"%d passwords remembered"</item>
    </plurals>
    <string name="passp_cache_notif_keys">"Remembered passwords"</string>
    <string name="passp_cache_notif_clear">"Clear Passwords"</string>
    <string name="passp_cache_notif_pwd">"Password"</string>

    <!-- Keyserver sync -->
    <string name="keyserver_sync_orbot_notif_title">"Sync From Servers requires Orbot"</string>
    <string name="keyserver_sync_orbot_notif_msg">"Tap to start orbot"</string>
    <string name="keyserver_sync_orbot_notif_start">"Start Orbot"</string>
    <string name="keyserver_sync_orbot_notif_ignore">"Direct"</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 key from file"</string>
    <string name="first_time_security_token">"Use Security Token"</string>
    <string name="first_time_security_token_subtitle">"(Fidesmo, YubiKey NEO, SIGILANCE, …)"</string>
    <string name="first_time_skip">"Skip Setup"</string>
    <string name="first_time_blank_security_token">"Would you like to use this blank Security Token with OpenKeychain?\n\nPlease take away the Security Token now, you will be prompted when it is needed again!"</string>
    <string name="first_time_blank_security_token_yes">"Use this Security Token"</string>

    <string name="backup_text">"Backups that include your own keys must never be shared with other people!"</string>
    <string name="backup_all">"All keys + your own keys"</string>
    <string name="backup_public_keys">"All keys"</string>
    <string name="backup_section">"Backup"</string>
    <string name="restore_section">"Restore"</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"><![CDATA[<unknown>]]></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 email addresses. Select exactly those for confirmation which match what you expected."</string>
    <string name="certify_fingerprint_text">"Compare the fingerprint, character by character, with the one displayed on your partner’s device."</string>
    <string name="certify_fingerprint_text_phrases">"Compare these phrases with the ones displayed on your partner’s device."</string>
    <string name="label_revocation">"Revocation Reason"</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">"on Security Token"</string>
    <string name="key_no_passphrase">"no password"</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="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_files">"Saving of multiple files not supported. This is a limitation on current Android."</string>
    <string name="error_multi_clipboard">"Encryption of multiple files to clipboard not supported."</string>
    <string name="error_detached_signature">"Sign-only operation of binary files is not supported, select at least one encryption key."</string>
    <string name="error_empty_text">"Type some text to encrypt!"</string>
    <string name="error_log_share_internal">"Internal error while preparing log!"</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="btn_start_exchange">"Start exchange"</string>
    <string name="user_id_none"><![CDATA[<none>]]></string>

    <!-- Android Account -->
    <string name="account_no_manual_account_creation">"You can not create OpenKeychain accounts manually."</string>
    <string name="account_privacy_title">"Privacy"</string>
    <string name="account_privacy_text">"OpenKeychain does not synchronize your contacts with the Internet. It only links contacts to keys based on names and email addresses. It does this offline on your device."</string>
    <string name="sync_notification_permission_required_title">"Access to contacts required"</string>
    <string name="sync_notification_permission_required_text">"Touch to configure linking to contacts"</string>

    <!-- Passphrase wizard -->
    <!-- TODO: rename all the things! -->
    <string name="title_unlock_method">Choose an unlock method</string>
    <!--<string name="enter_passphrase_twice">Enter password twice</string>-->
    <string name="enter_passphrase">Enter password</string>
    <string name="passphrase">Password</string>
    <string name="noPassphrase">No password</string>
    <string name="no_passphrase_set">No password set</string>
    <string name="passphrases_match">Passwords do match</string>
    <string name="passphrase_saved">Password saved</string>
    <string name="passphrase_invalid">Password invalid</string>
    <string name="missing_passphrase">Missing password</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 password</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_successful">Successfully written on NFC tag</string>
    <string name="unlocked">Unlocked</string>
    <string name="nfc_settings">Settings</string>
    <string name="snack_security_token_view">"View"</string>
    <string name="snack_security_token_import">"Import"</string>
    <string name="button_bind_key">"Bind Key"</string>
    <string name="security_token_serial_no">"Serial No: %s"</string>
    <string name="security_token_key_holder">"Key holder: %s"</string>
    <string name="security_token_key_holder_not_set"><![CDATA[Key holder: <not set>]]></string>
    <string name="security_token_status_bound">"Security Token matches and is bound to key"</string>
    <string name="security_token_status_unbound">"Security Token matches, can be bound to key"</string>
    <string name="security_token_status_partly">"Security Token matches, partly bound to key"</string>
    <string name="security_token_create">"Hold Security Token against the back of your device."</string>
    <string name="security_token_reset_or_import">"This Security Token already contains a key. You can import the key using the cloud or reset the Security Token."</string>
    <string name="btn_import">"Import"</string>
    <string name="btn_reset">"Reset"</string>
    <string name="security_token_import_radio">"Import key"</string>
    <string name="security_token_reset_radio">"Reset Security Token"</string>
    <string name="security_token_reset_warning">"Resetting the Security Token completely destroys the keys on it. Afterwards, you will not be able to decrypt messages/files encrypted with this key!"</string>
    <string name="snack_security_token_other">Different key stored on Security Token!</string>
    <string name="security_token_error">"Error: %s"</string>
    <plurals name="security_token_error_pin">
        <item quantity="one">"Incorrect PIN!\n%d try remaining."</item>
        <item quantity="other">"Incorrect PIN!\n%d tries remaining."</item>
    </plurals>
    <string name="security_token_error_terminated">"Security Token in termination state."</string>
    <string name="security_token_error_wrong_length">"Entered PIN is too short. PINs are at least 6 digits long.\n(Error: Wrong length)"</string>
    <string name="security_token_error_conditions_not_satisfied">"Conditions of use not satisfied."</string>
    <string name="security_token_error_security_not_satisfied">"Incorrect PIN!\n(Keep in mind that you have only 3 tries!)"</string>
    <string name="security_token_error_authentication_blocked">"PIN blocked after too many attempts."</string>
    <string name="security_token_error_data_not_found">"Key or object not found."</string>
    <string name="security_token_error_unknown">"Unknown Error"</string>
    <string name="security_token_error_bad_data">"Entered PIN is too short. PINs are at least 6 digits long.\n(Error: Invalid data)"</string>
    <string name="security_token_error_chaining_error">"Security Token expected last command in a chain."</string>
    <string name="security_token_error_header">"Security Token reported invalid %s byte."</string>
    <string name="security_token_error_tag_lost">"Security Token has been taken off too early. Keep the Security Token at the back until the operation finishes."</string>
    <string name="security_token_error_iso_dep_not_supported">"Security Token does not support the required communication standard (ISO-DEP, ISO 14443-4)"</string>
    <string name="security_token_error_try_again">"Try again"</string>
    <string name="btn_delete_original">Delete original file</string>

    <string name="snack_encrypt_filenames_on">"Filenames <b>are</b> encrypted."</string>
    <string name="snack_encrypt_filenames_off">"Filenames <b>are not</b> encrypted."</string>
    <string name="snack_armor_on">"Output encoded as Text."</string>
    <string name="snack_armor_off">"Output encoded as Binary."</string>
    <string name="snack_compression_on">"Compression <b>enabled</b>."</string>
    <string name="snack_compression_off">"Compression <b>disabled</b>."</string>
    <string name="error_loading_keys">"Error loading keys!"</string>
    <string name="error_empty_log">"(error, empty log)"</string>
    <string name="error_reading_text">"Could not read input to decrypt!"</string>
    <string name="error_reading_aosp">"Failed reading data, this is a bug in the Android E-Mail client! (Issue #290)"</string>
    <string name="error_reading_k9">"Received incomplete data, try touching 'Download complete message' in K-9 Mail!"</string>
    <string name="filename_unknown">Unknown filename (touch to open)</string>
    <string name="filename_unknown_text">Text (touch to show)</string>
    <string name="filename_keys">"Key Backup (touch to import)"</string>
    <string name="intent_show">Show Signed/Encrypted Content</string>
    <string name="intent_share">Share Signed/Encrypted Content</string>
    <string name="view_internal">"View in OpenKeychain"</string>
    <string name="error_preparing_data">"Error preparing data!"</string>
    <string name="label_clip_title">"Encrypted Data"</string>
    <string name="progress_processing">"Processing…"</string>
    <string name="error_saving_file">"Error saving file!"</string>
    <string name="file_saved">"File saved!"</string>
    <string name="file_delete_ok">"Original file deleted."</string>
    <string name="file_delete_none">"No file deleted! (Already deleted?)"</string>
    <string name="file_delete_exception">"Original file could not be deleted!"</string>
    <string name="error_clipboard_empty">"Clipboard is empty!"</string>
    <string name="error_clipboard_copy">"Error copying data to clipboard!"</string>
    <string name="error_scan_fp">"Error scanning fingerprint!"</string>
    <string name="error_scan_match">"Fingerprints did not match!"</string>
    <string name="error_expiry_past">"Expiry date is in the past!"</string>

    <string name="linked_create_https_1_1">"By creating a Linked Identity of this type, you can link your key to a website you control."</string>
    <string name="linked_create_https_1_2">"To do this, you publish a text file on this website, then create a Linked Identity which links to it."</string>
    <string name="linked_create_https_1_3">"Please enter a URL where you are able to place a text file for proof. Note that your server must support https and have a valid TLS certificate!"</string>
    <string name="linked_create_https_1_4">"Example: https://example.com/pgpkey.txt"</string>
    <string name="linked_create_https_created">"The proof file has been created. For the next step, you should save and upload it to the URI you indicated:"</string>
    <string name="linked_create_https_2_1">"A proof file for this URI has been created:"</string>
    <string name="linked_create_https_2_2">"For the next step, you should save and upload this file."</string>
    <string name="linked_create_https_2_3">"Make sure the file is reachable at the correct URI, then verify your setup."</string>
    <string name="linked_create_https_2_4">"After successful verification, touch Finish button to add the Linked Identity to your keyring and finish the process."</string>

    <string name="linked_create_twitter_1_1">"By creating a Linked Identity of this type, you can link your key to a Twitter account you control."</string>
    <string name="linked_create_twitter_1_2">"To do this, you publish a specific Tweet on your timeline, then create a Linked Identity which links to this Tweet."</string>
    <string name="linked_create_twitter_1_3">"Please enter your Twitter screen name to proceed."</string>
    <string name="linked_create_twitter_handle">Twitter Handle</string>
    <string name="linked_create_twitter_2_1">"Touch either button to tweet the message!"</string>
    <string name="linked_create_twitter_2_2">"You can edit the Tweet before posting it, so long as the text inside the brackets is unmodified."</string>
    <string name="linked_create_twitter_2_3">"Once your Tweet is published as <b>@%s</b>, touch the Verify button to scan your timeline for it."</string>
    <string name="linked_create_twitter_2_4">"After successful verification, touch Finish button to add the Linked Identity to your keyring and finish the process."</string>

    <string name="linked_create_verify">"Verify"</string>
    <string name="linked_text_clipboard">Text has been copied to clipboard</string>
    <string name="linked_verified_https">"The link between this Website and key was securely verified. <b>If you believe the Website is genuine</b>, confirm this verification with your key."</string>
    <string name="linked_verified_github">"The link between this GitHub account and key was securely verified. <b>If you believe the account is genuine</b>, confirm this verification with your key."</string>
    <string name="linked_verified_dns">"The link between this Domain Name and key was securely verified. <b>If you believe the Domain is genuine</b>, confirm this verification with your key."</string>
    <string name="linked_verified_twitter">"The link between this Twitter account and key was securely verified. <b>If you believe the account is genuine</b>, confirm this verification with your key."</string>
    <string name="linked_verified_secret_https">"Everything looks in order."</string>
    <string name="linked_verified_secret_github">"Everything looks in order."</string>
    <string name="linked_verified_secret_dns">"Everything looks in order."</string>
    <string name="linked_verified_secret_twitter">"Everything looks in order."</string>

    <plurals name="linked_id_expand">
        <item quantity="one">"There is one more unknown identity type"</item>
        <item quantity="other">"There are %d more unknown identity types"</item>
    </plurals>

    <!-- Other Linked Identity strings -->
    <string name="linked_select_1">"A 'linked identity' connects your PGP key to a resource on the web."</string>
    <string name="linked_select_2">"Please select a type:"</string>
    <string name="linked_id_generic_text">"This file claims ownership of the OpenPGP key with long id %2$s.\n\nToken for proof:\n%1$s"</string>
    <string name="linked_id_github_text" translatable="false">"This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.\n\nToken for proof:\n%1$s"</string>
    <string name="linked_verifying">"Verifying…"</string>
    <string name="linked_verify_success">"Verified!"</string>
    <string name="linked_verify_error">"Verification error!"</string>
    <string name="linked_verify_pending">"Not yet verified"</string>
    <string name="linked_need_verify">The resource needs to be verified before you can proceed!</string>
    <string name="menu_linked_add_identity">"Link to Account"</string>
    <string name="section_linked_identities">"Linked Identities"</string>
    <string name="btn_finish">"Finish"</string>
    <string name="linked_title_https">"Website (HTTPS)"</string>
    <string name="linked_title_dns">"Domain Name (DNS)"</string>
    <string name="linked_title_github">"GitHub"</string>
    <string name="linked_title_twitter">"Twitter"</string>
    <string name="card_linked_identity">"Linked Identity"</string>
    <string name="linked_button_verify">"Verify"</string>
    <string name="linked_button_retry">"Retry"</string>
    <string name="linked_button_retry_step">"Retry last step"</string>
    <string name="linked_button_confirm">"Confirm"</string>
    <string name="linked_button_view">"View"</string>
    <string name="linked_text_verifying">"Verifying…"</string>
    <string name="linked_text_error">"Error"</string>
    <string name="linked_text_confirming">"Confirming…"</string>
    <string name="linked_ids_more_unknown">"%d more unknown identity types"</string>
    <string name="title_linked_id_create">"Create Linked Identity"</string>
    <string name="linked_github_text">"This operation links your key to your GitHub account.\nJust touch the button to continue."</string>
    <string name="linked_progress_auth_github">"Authorize with GitHub…"</string>
    <string name="linked_progress_post_gist">"Post Gist…"</string>
    <string name="linked_progress_update_key">"Update Key…"</string>
    <string name="linked_button_start">"Link to GitHub account"</string>
    <string name="linked_error_auth_failed">"Authorization failed!"</string>
    <string name="linked_error_timeout">"Connection timeout!"</string>
    <string name="linked_error_network">"Network error!"</string>
    <string name="linked_error_http">"Communication error: %s"</string>
    <string name="linked_webview_title_github">"GitHub Authorization"</string>
    <string name="linked_gist_description">"OpenKeychain Linked Identity"</string>
    <string name="linked_empty">"Link your key to GitHub, Twitter or other websites!"</string>
    <string name="snack_btn_overwrite">"Overwrite"</string>
    <string name="backup_code_explanation">"The backup will be secured with a backup code. Write it down before you proceed!"</string>
    <string name="backup_code_enter">"Please enter the backup code:"</string>
    <string name="backup_code_ok">"Code accepted!"</string>
    <string name="btn_code_wrotedown">"OK, I wrote it down!"</string>
    <string name="backup_code_wrong">"The backup code you entered is wrong!\nDid you write it down correctly?"</string>
    <string name="btn_backup_share">"Share backup"</string>
    <string name="btn_backup_save">"Save backup"</string>
    <string name="snack_backup_error_saving">"Error saving backup!"</string>
    <string name="snack_backup_saved">"Backup saved"</string>
    <string name="snack_backup_exists">"Backup already exists!"</string>
    <string name="snack_backup_saved_dir">"Saved to OpenKeychain directory"</string>
    <string name="btn_backup_back">Go back to check</string>
    <string name="snack_text_too_long">"Text is too long to show in full!"</string>
    <string name="snack_shared_text_too_long">"Shared text was cut because it was too long!"</string>

    <string name="share_log_dialog_title">"Share log?"</string>
    <string name="share_log_dialog_message">"While logs can be super helpful for developers to find bugs in OpenKeychain, they can contain potential sensitive information such as data about the updated keys. Please make sure you are okay with sharing this information."</string>
    <string name="share_log_dialog_share_button">"Share"</string>
    <string name="share_log_dialog_cancel_button">"Cancel"</string>
    <string name="toast_wrong_mimetype">"Wrong data type, text was expected!"</string>
    <string name="toast_no_text">"No text in shared data!"</string>
    <string name="menu_uids_save">"Save"</string>
    <string name="title_edit_identities">"Edit Identities"</string>
    <string name="title_edit_subkeys">"Edit Subkeys"</string>
    <string name="btn_search_for_query">"Search for\n'%s'"</string>
    <string name="cache_ttl_lock_screen">"until screen off"</string>
    <string name="cache_ttl_ten_minutes">"for ten minutes"</string>
    <string name="cache_ttl_thirty_minutes">"for thirty minutes"</string>
    <string name="cache_ttl_one_hour">"for one hour"</string>
    <string name="cache_ttl_three_hours">"for three hours"</string>
    <string name="cache_ttl_one_day">"for one day"</string>
    <string name="cache_ttl_three_days">"for three days"</string>
    <string name="cache_ttl_forever">"forever"</string>
    <string name="settings_cache_select_three">"Pick up to three."</string>
    <string name="settings_cache_ttl_at_least_one">"At least one item must be selected!"</string>
    <string name="settings_cache_ttl_max_three">"Can\'t select more than three items!"</string>
    <string name="remember">"Remember"</string>
    <string name="security_token_error_pgp_app_not_installed">"No PGP app was found on the security token"</string>
    <string name="prompt_fidesmo_pgp_install_title">"Install PGP?"</string>
    <string name="prompt_fidesmo_pgp_install_message">"There was no PGP app available on your Fidesmo device."</string>
    <string name="prompt_fidesmo_pgp_install_button_positive">"Install"</string>
    <string name="prompt_fidesmo_pgp_install_button_negative">"Cancel"</string>
    <string name="prompt_fidesmo_app_install_title">"Install Fidesmo?"</string>
    <string name="prompt_fidesmo_app_install_message">"To install PGP you need the Fidesmo Android app."</string>
    <string name="prompt_fidesmo_app_install_button_positive">"Install"</string>
    <string name="prompt_fidesmo_app_install_button_negative">"Cancel"</string>
    <string name="help_donation_paypal_item">OpenKeychain Donation</string>
    <string-array name="help_donation_google_catalog_values">
        <item>1 EUR</item>
        <item>2 EUR</item>
        <item>3 EUR</item>
        <item>5 EUR</item>
        <item>10 EUR</item>
        <item>50 EUR</item>
        <item>100 EUR</item>
    </string-array>
    <string name="redirect_import_key_title">"Scan with OpenKeychain!"</string>
    <string name="redirect_import_key_message">"You scanned a OpenPGP QR Code with another app, please scan with Openkeychain directly to be safe."</string>
    <string name="redirect_import_key_yes">"Scan again"</string>
    <string name="redirect_import_key_no">"Close"</string>
    <string name="title_activity_redirect_key">"Key import redirection"</string>
</resources>