aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/mcs814x/files-3.18/drivers
Commit message (Collapse)AuthorAgeFilesLines
* mcs814x: add support for 3.18Florian Fainelli2015-04-049-0/+2118
Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 45273
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
<?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_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_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_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">"Extended Information"</string>
    <string name="title_delete_secret_key">"Delete YOUR key '%s'?"</string>
    <string name="title_manage_my_keys">"Manage my keys"</string>

    <!-- section -->
    <string name="section_user_ids">"Identities"</string>
    <string name="section_yubikey">"YubiKey"</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_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_share_encrypted_signed">"Encrypt/sign and share text"</string>
    <string name="btn_copy_encrypted_signed">"Encrypt/sign and copy 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 decrypted text"</string>
    <string name="btn_copy_decrypted_text">"Copy decrypted text"</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>

    <!-- menu -->
    <string name="menu_preferences">"Settings"</string>
    <string name="menu_help">"Help"</string>
    <string name="menu_export_key">"Backup to file"</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">"Extended information"</string>
    <string name="menu_certify_fingerprint">"Confirm via fingerprint"</string>
    <string name="menu_certify_fingerprint_word">"Confirm via words"</string>
    <string name="menu_share_log">"Share Log"</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_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_default_yubikey_pin">"Use default YubiKey PIN"</string>
    <string name="label_use_num_keypad_for_yubikey_pin">Use number keypad for YubiKey PIN</string>
    <string name="label_label_use_default_yubikey_pin_summary">"Uses default PIN (123456) to access YubiKeys over NFC"</string>
    <string name="label_asymmetric_from">"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">"Remember time"</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">"Select OpenPGP keyservers"</string>
    <string name="label_key_id">"Key ID"</string>
    <string name="label_key_created">"Key created %s"</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">"Verify keyserver"</string>
    <string name="label_enter_keyserver_url">"Enter keyserver 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="label_sync_settings_keyserver_title">"Automatically update keys"</string>
    <string name="label_sync_settings_keyserver_summary_on">"Keys older than a week are updated from the preferred keyserver"</string>
    <string name="label_sync_settings_keyserver_summary_off">"Keys not automatically updated"</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">"Automatically update keys"</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">"Word Confirm"</string>
    <string name="label_experimental_settings_word_confirm_summary">"Confirm keys with words 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="dsa">"DSA"</string>
    <string name="elgamal">"ElGamal"</string>
    <string name="rsa">"RSA"</string>
    <string name="ecdh">"ECDH"</string>
    <string name="ecdsa">"ECDSA"</string>
    <string name="filemanager_title_open">"Open…"</string>
    <string name="error">"Error"</string>
    <string name="error_message">"Error: %s"</string>
    <string name="theme_dark">"Dark"</string>
    <string name="theme_light">"Light"</string>

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

    <!-- sentences -->
    <string name="wrong_passphrase">"Wrong 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">"Symmetric encryption."</string>
    <string name="passphrase_for">"Enter password for '%s'"</string>
    <string name="pin_for">"Enter PIN for '%s'"</string>
    <string name="yubikey_pin_for">"Enter PIN to access YubiKey for '%s'"</string>
    <string name="nfc_text">"Hold YubiKey against the NFC marker at the back of your device."</string>
    <string name="nfc_wait">"Keep the YubiKey at the back!"</string>
    <string name="nfc_finished">"Take away the YubiKey now."</string>
    <string name="nfc_try_again_text">"Take away the YubiKey now and press 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 read messages 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="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="key_too_big_for_sharing">"Key is too big to be shared this way!"</string>
    <string name="text_copied_to_clipboard">"Text has been copied to the clipboard!"</string>

    <!--
         errors
         no punctuation, all lowercase,
         they will be put after "error_message", e.g. "Error: file not found"
    -->
    <string name="error_file_delete_failed">"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_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>

    <!-- 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>

    <!-- 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_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_decrypting">"decrypting data…"</string>
    <string name="progress_preparing_signature">"preparing signature…"</string>
    <string name="progress_generating_signature">"generating signature…"</string>
    <string name="progress_processing_signature">"processing signature…"</string>
    <string name="progress_verifying_signature">"verifying signature…"</string>
    <string name="progress_signing">"signing…"</string>
    <string name="progress_certifying">"certifying…"</string>
    <string name="progress_reading_data">"reading data…"</string>
    <string name="progress_finding_key">"finding key…"</string>
    <string name="progress_decompressing_data">"decompressing data…"</string>
    <string name="progress_verifying_integrity">"verifying integrity…"</string>
    <string name="progress_deleting_securely">"deleting '%s' securely…"</string>
    <string name="progress_deleting">"deleting keys…"</string>

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

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

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

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

    <!-- Help -->
    <string name="help_tab_start">"Start"</string>
    <string name="help_tab_faq">"FAQ"</string>
    <string name="help_tab_wot">"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>

    <!-- 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%2$s."</item>
        <item quantity="other">"Error deleting %1$d keys."</item>
    </plurals>
    <string name="delete_nothing">"Nothing to delete."</string>
    <string name="delete_cancelled">"Delete operation cancelled."</string>

    <!-- 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 extended information"</string>
    <string name="api_settings_hide_info">"Hide extended information"</string>
    <string name="api_settings_show_advanced">"Show extended settings"</string>
    <string name="api_settings_hide_advanced">"Hide extended settings"</string>
    <string name="api_settings_no_key">"No key selected"</string>
    <string name="api_settings_select_key">"Select key"</string>
    <string name="api_settings_create_key">"Create new key"</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">"Extended Information"</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 key"</string>
    <string name="key_view_action_encrypt">"Encrypt text"</string>
    <string name="key_view_action_encrypt_files">"files"</string>
    <string name="key_view_action_certify">"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_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>
    <string name="key_trust_header_text">"Note: Keybase.io proofs are an experimental feature of OpenKeychain. We encourage you to scan QR Codes or exchange keys via NFC in addition to confirming them."</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 YubiKey / Smart Card"</item>
    </string-array>
    <string name="edit_key_new_subkey">"new subkey"</string>
    <string name="edit_key_select_flag">"Please select at least one flag!"</string>
    <string name="edit_key_error_add_identity">"Add at least one identity!"</string>
    <string name="edit_key_error_add_subkey">"Add at least one subkey!"</string>
    <string name="edit_key_error_bad_nfc_algo">"Algorithm not supported by smart card!"</string>
    <string name="edit_key_error_bad_nfc_size">"Key size not supported by smart card!"</string>
    <string name="edit_key_error_bad_nfc_stripped">"Cannot move key to smart card (either stripped or 'divert-to-card')!"</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_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_invalid_email">"Email address format is invalid"</string>
    <string name="create_key_yubi_key_pin_text">"Please remember the PIN, it is required to use your YubiKey later. Please write down the Admin PIN and store it in a safe place."</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_text">"Please enter the PIN and Admin PIN to proceed."</string>
    <string name="create_key_yubi_key_pin_repeat">"Repeat PIN"</string>
    <string name="create_key_yubi_key_admin_pin_repeat">"Repeat Admin PIN"</string>
    <string name="create_key_yubi_key_pin_not_correct">"PIN is not correct!"</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_verified">"Keyserver 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_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"</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 'divert-to-card'"</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_warn_encoding">"User ID does not verify as UTF-8!"</string>
    <string name="msg_kc_uat_jpeg">"Processing user attribute of type JPEG"</string>
    <string name="msg_kc_uat_unknown">"Processing user attribute of unknown type"</string>
    <string name="msg_kc_uat_bad_err">"Removing bad self certificate for user attribute"</string>
    <string name="msg_kc_uat_bad_local">"Removing user attribute certificate with 'local' flag"</string>
    <string name="msg_kc_uat_bad_time">"Removing user attribute with future timestamp"</string>
    <string name="msg_kc_uat_bad_type">"Removing user attribute certificate of unknown type (%s)"</string>
    <string name="msg_kc_uat_bad">"Removing bad self certificate for user attribute"</string>
    <string name="msg_kc_uat_cert_dup">"Removing outdated self certificate for user attribute"</string>
    <string name="msg_kc_uat_dup">"Removing duplicate user attribute. The keyring contained two of them. This may result in missing certificates!"</string>
    <string name="msg_kc_uat_foreign">"Removing foreign user attribute certificate by"</string>
    <string name="msg_kc_uat_revoke_dup">"Removing redundant revocation certificate for user attribute"</string>
    <string name="msg_kc_uat_revoke_old">"Removing outdated revocation certificate for user attribute"</string>
    <string name="msg_kc_uat_no_cert">"No valid self-certificate found for user attribute, removing from ring"</string>
    <string name="msg_kc_uat_remove">"Removing invalid user attribute"</string>
    <string name="msg_kc_uat_warn_encoding">"User ID does not verify as UTF-8!"</string>

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

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

    <!-- modifySecretKeyRing -->
    <string name="msg_mr">"Modifying keyring %s"</string>
    <string name="msg_mf_divert">"Will divert to smart card for crypto operations"</string>
    <string name="msg_mf_error_divert_newsub">"Creation of new subkeys is not supported for 'divert-to-card' primary keys!"</string>
    <string name="msg_mf_error_divert_serial">"The serial number of a 'divert-to-card' key must be 16 bytes! This is a programming error, please file a bug report!"</string>
    <string name="msg_mf_error_encode">"Encoding exception!"</string>
    <string name="msg_mf_error_fingerprint">"Actual key fingerprint does not match the expected one!"</string>
    <string name="msg_mf_error_keyid">"No key ID. This is an internal error, please file a bug report!"</string>
    <string name="msg_mf_error_integrity">"Internal error, integrity check failed!"</string>
    <string name="msg_mf_error_master_none">"No master certificate found to operate on! (All revoked?)"</string>
    <string name="msg_mf_error_noexist_primary">"Bad primary user ID specified!"</string>
    <string name="msg_mf_error_noexist_revoke">"Bad user ID for revocation specified!"</string>
    <string name="msg_mf_error_restricted">"Tried to execute restricted operation without 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_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 smart card in same operation that creates an on-card signature."</string>
    <string name="msg_mf_error_duplicate_keytocard_for_slot">"Smart card supports only one slot per key type."</string>
    <string name="msg_mf_error_invalid_flags_for_keytocard">"Inappropriate key flags for smart card 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">"Diverting to smart card 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 smart card"</string>
    <string name="msg_mf_keytocard_finish">"Moved %1$s to smart card %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 YubiKey: %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_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_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 passphrase?)"</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_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 right key"</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_clearsign_only">"Signing of cleartext input not supported!"</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_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_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_export">
        <item quantity="one">"Exporting one key"</item>
        <item quantity="other">"Exporting %d keys"</item>
    </plurals>
    <string name="msg_export_file_name">"Filename: %s"</string>
    <string name="msg_export_all">"Exporting all keys"</string>
    <string name="msg_export_public">"Exporting public key %s"</string>
    <string name="msg_export_upload_public">"Uploading public key %s"</string>
    <string name="msg_export_secret">"Exporting secret key %s"</string>
    <string name="msg_export_error_no_file">"No filename specified!"</string>
    <string name="msg_export_error_fopen">"Error opening file!"</string>
    <string name="msg_export_error_no_uri">"No URI specified!"</string>
    <string name="msg_export_error_uri_open">"Error opening URI stream!"</string>
    <string name="msg_export_error_storage">"Storage is not ready for writing!"</string>
    <string name="msg_export_error_db">"Database error!"</string>
    <string name="msg_export_error_io">"Input/output error!"</string>
    <string name="msg_export_error_key">"Error preprocessing key data!"</string>
    <string name="msg_export_error_upload">"Error uploading key to server! Please check your Internet connection"</string>
    <string name="msg_export_success">"Export operation successful"</string>
    <string name="msg_export_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_acc_saved">"Account saved"</string>

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

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

    <!-- 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>

    <!-- PassphraseCache -->
    <string name="passp_cache_notif_click_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_yubikey">"Use YubiKey NEO"</string>
    <string name="first_time_skip">"Skip Setup"</string>
    <string name="first_time_blank_yubikey">"Would you like to use this blank YubiKey NEO with OpenKeychain?\n\nPlease take away the YubiKey now, you will be prompted when it is needed again!"</string>
    <string name="first_time_blank_yubikey_yes">"Use this YubiKey"</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>

    <!-- 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 displayed fingerprint, character by character, with the one displayed on your partners device."</string>
    <string name="certify_fingerprint_text_words">"Compare the displayed fingerprint, word by word, with the one displayed on your partners device."</string>
    <string name="certify_fingerprint_text2">"Do the fingerprints match?"</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">"divert to smart card"</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>

    <!-- 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_succesful">Successfully written on NFC tag</string>
    <string name="unlocked">Unlocked</string>
    <string name="nfc_settings">Settings</string>
    <string name="snack_yubikey_view">"View"</string>
    <string name="snack_yubikey_import">"Import"</string>
    <string name="button_bind_key">"Bind Key"</string>
    <string name="yubikey_serno">"Serial No: %s"</string>
    <string name="yubikey_key_holder">"Key holder: "</string>
    <string name="yubikey_key_holder_not_set"><![CDATA[Key holder: <not set>]]></string>
    <string name="yubikey_status_bound">"YubiKey matches and is bound to key"</string>
    <string name="yubikey_status_unbound">"YubiKey matches, can be bound to key"</string>
    <string name="yubikey_status_partly">"YubiKey matches, partly bound to key"</string>
    <string name="yubikey_create">"Hold YubiKey against the back of your device."</string>
    <string name="btn_import">"Import"</string>
    <string name="snack_yubi_other">Different key stored on YubiKey!</string>
    <string name="error_nfc">"NFC Error: %s"</string>
    <plurals name="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="error_nfc_terminated">"YubiKey in termination state."</string>
    <string name="error_nfc_wrong_length">"Entered PIN is too short. PINs are at least 6 digits long."</string>
    <string name="error_nfc_conditions_not_satisfied">"Conditions of use not satisfied."</string>
    <string name="error_nfc_security_not_satisfied">"Security status not satisfied."</string>
    <string name="error_nfc_authentication_blocked">"PIN blocked after too many attempts."</string>
    <string name="error_nfc_data_not_found">"Key or object not found."</string>
    <string name="error_nfc_unknown">"Unknown Error"</string>
    <string name="error_nfc_bad_data">"YubiKey reported invalid data."</string>
    <string name="error_nfc_chaining_error">"YubiKey expected last command in a chain."</string>
    <string name="error_nfc_header">"YubiKey reported invalid %s byte."</string>
    <string name="error_nfc_tag_lost">"YubiKey has been taken off too early. Keep the YubiKey at the back until the operation finishes."</string>
    <string name="error_nfc_try_again">"Try again"</string>
    <string name="error_pin_nodefault">Default PIN was rejected!</string>
    <string name="error_temp_file">Error creating temporary file.</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="filename_unknown">Unknown filename (click to open)</string>
    <string name="filename_unknown_text">Text (click to show)</string>
    <string name="intent_show">Show 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, press the 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">"Click 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 &lt;b&gt;@%s&lt;/b&gt;, click the Verify button to scan your timeline for it."</string>
    <string name="linked_create_twitter_2_4">"After successful verification, press the 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">"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 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 press 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 API Tests"</string>

</resources>