1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-07-14 00:27+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../lib/CA.pm:44
msgid "error: can't open basedir: "
msgstr ""
#: ../lib/CA.pm:102
msgid " Opening CA: "
msgstr ""
#: ../lib/CA.pm:109 ../lib/CA.pm:270
msgid "Invalid CA selected"
msgstr ""
#: ../lib/CA.pm:154
msgid " Initializing OpenSSL"
msgstr ""
#: ../lib/CA.pm:160
msgid " Check for CA Version"
msgstr ""
#: ../lib/CA.pm:167 ../lib/CA.pm:195
msgid "Can't open index file: "
msgstr ""
#: ../lib/CA.pm:182
msgid " Convert CA"
msgstr ""
#: ../lib/CA.pm:201
msgid "Can't open index backup: "
msgstr ""
#: ../lib/CA.pm:218
msgid "This CA is converted for openssl 0.9.7x now."
msgstr ""
#: ../lib/CA.pm:220
msgid "You will find a backup copy of the index file at: "
msgstr ""
#: ../lib/CA.pm:229
msgid " Read Configuration"
msgstr ""
#: ../lib/CA.pm:235
msgid " Create GUI"
msgstr ""
#: ../lib/CA.pm:241
msgid " Create Toolbar"
msgstr ""
#: ../lib/CA.pm:247
msgid " Actual CA: "
msgstr ""
#: ../lib/CA.pm:332
#, c-format
msgid "CA: %s deleted"
msgstr ""
#: ../lib/CA.pm:386
msgid "Password of parent CA is needed for creating a Sub CA"
msgstr ""
#: ../lib/CA.pm:395
msgid "Name must be filled in and must"
msgstr ""
#: ../lib/CA.pm:396
msgid " not contain Spaces"
msgstr ""
#: ../lib/CA.pm:408
msgid "Please specify at least Common Name, "
msgstr ""
#: ../lib/CA.pm:409
msgid "Country and Password"
msgstr ""
#: ../lib/CA.pm:416 ../lib/REQ.pm:109
msgid "Passwords don't match"
msgstr ""
#: ../lib/CA.pm:424 ../lib/REQ.pm:120
msgid "Country must be exact 2 letter code"
msgstr ""
#: ../lib/CA.pm:428
#, c-format
msgid "CA: %s already exists"
msgstr ""
#: ../lib/CA.pm:468
msgid "Name for storage must be filled in and must not contain spaces"
msgstr ""
#: ../lib/CA.pm:477
msgid "You didn't give a password for the private CA key."
msgstr ""
#: ../lib/CA.pm:479
msgid "The import will fail, if the key is encrypted."
msgstr ""
#: ../lib/CA.pm:488
msgid "Please give a new password for the CA"
msgstr ""
#: ../lib/CA.pm:495
msgid "New passwords don't match"
msgstr ""
#: ../lib/CA.pm:503
msgid "Please give a CA certificate to import"
msgstr ""
#: ../lib/CA.pm:508
#, c-format
msgid ""
"Can't read CA certificate file:\n"
"%s"
msgstr ""
#: ../lib/CA.pm:518
msgid "Please give a CA keyfile to import"
msgstr ""
#: ../lib/CA.pm:523
#, c-format
msgid ""
"Can't read CA key file:\n"
"%s"
msgstr ""
#: ../lib/CA.pm:535
msgid "Please give an Index file to import.\n"
msgstr ""
#: ../lib/CA.pm:536
msgid "If you don't have an Index file, i'll try to generate one.\n"
msgstr ""
#: ../lib/CA.pm:537
msgid "Attention: This will cause all Certificates to show up as valid.\n"
msgstr ""
#: ../lib/CA.pm:538
msgid "Attention: Revoked Certificates will not be determined."
msgstr ""
#: ../lib/CA.pm:549
#, c-format
msgid ""
"Can't read Index file:\n"
"%s"
msgstr ""
#: ../lib/CA.pm:562
msgid "Please give a directory containing the certificates to import"
msgstr ""
#: ../lib/CA.pm:567
#, c-format
msgid ""
"Can't find certificate directory:\n"
"%s"
msgstr ""
#: ../lib/CA.pm:578
#, c-format
msgid "CA: %s already exists. Please choose another name"
msgstr ""
#: ../lib/CA.pm:594
msgid "Can't find X509v3 Basic Constraints in CA Certificate\n"
msgstr ""
#: ../lib/CA.pm:595
msgid "Import canceled"
msgstr ""
#: ../lib/CA.pm:601
msgid "The selected CA Certificate is no valid CA certificate\n"
msgstr ""
#: ../lib/CA.pm:602
#, c-format
msgid "X509v3 Basic Constraint is set to: %s"
msgstr ""
#: ../lib/CA.pm:612
#, c-format
msgid ""
"Can't open Index file:\n"
"%s"
msgstr ""
#: ../lib/CA.pm:665 ../lib/CERT.pm:61
#, c-format
msgid "Can't open Certificate directory: %s"
msgstr ""
#: ../lib/CA.pm:684 ../lib/CERT.pm:84
#, c-format
msgid " Read Certificate: %s"
msgstr ""
#: ../lib/CA.pm:694
#, c-format
msgid "Can't read Certificate file: %s"
msgstr ""
#: ../lib/CA.pm:718
#, c-format
msgid "Can't write Certificate file: %s"
msgstr ""
#: ../lib/CA.pm:768 ../lib/CA.pm:927
msgid "Can't open Index file: "
msgstr ""
#: ../lib/CA.pm:780
#, c-format
msgid "Can't write CA Certificate file: %s"
msgstr ""
#: ../lib/CA.pm:800 ../lib/CA.pm:934
msgid "Can't write Serial file: "
msgstr ""
#: ../lib/CA.pm:814
#, c-format
msgid "Can't write CA Key file: %s"
msgstr ""
#: ../lib/CA.pm:831 ../lib/CA.pm:1155
msgid "Generating CRL failed"
msgstr ""
#: ../lib/CA.pm:844
#, c-format
msgid "Succesfully imported %d certificates\n"
msgstr ""
#: ../lib/CA.pm:845
msgid "Check the configuration of your imported CA."
msgstr ""
#: ../lib/CA.pm:862 ../lib/CA.pm:971
msgid "No CA name given"
msgstr ""
#: ../lib/CA.pm:871 ../lib/CA.pm:876 ../lib/CA.pm:881 ../lib/CA.pm:886
#: ../lib/CA.pm:891 ../lib/CA.pm:896
msgid "Can't create directory: "
msgstr ""
#: ../lib/CA.pm:905
#, c-format
msgid "Can't open template file %s %s"
msgstr ""
#: ../lib/CA.pm:910 ../lib/CA.pm:1207 ../lib/CA.pm:1274 ../lib/CERT.pm:637
#: ../lib/KEY.pm:227 ../lib/REQ.pm:740
#, c-format
msgid "Can't open output file: %s: %s"
msgstr ""
#: ../lib/CA.pm:984 ../lib/KEY.pm:482 ../lib/REQ.pm:167
msgid "Generating key failed"
msgstr ""
#: ../lib/CA.pm:1018 ../lib/REQ.pm:193
msgid "Generating Request failed"
msgstr ""
#: ../lib/CA.pm:1027 ../lib/CA.pm:1041 ../lib/CERT.pm:102
msgid "Can't read Certificate"
msgstr ""
#: ../lib/CA.pm:1032 ../lib/CA.pm:1046
msgid "Can't write Certificate"
msgstr ""
#: ../lib/CA.pm:1086
msgid "Generating certificate failed"
msgstr ""
#: ../lib/CA.pm:1106 ../lib/CA.pm:1131
#, c-format
msgid "Can't open ca certificate file %s %s"
msgstr ""
#: ../lib/CA.pm:1115
#, c-format
msgid "Can't create certificate chain file: %s: %s"
msgstr ""
#: ../lib/CA.pm:1164
#, c-format
msgid "CA: %s created"
msgstr ""
#: ../lib/CA.pm:1199
#, c-format
msgid "Can't open certificate chain file: %s: %s"
msgstr ""
#: ../lib/CA.pm:1220
#, c-format
msgid "Certificate Chain succesfully exported to: %s"
msgstr ""
#: ../lib/CA.pm:1255 ../lib/CERT.pm:580 ../lib/GUI.pm:166 ../lib/KEY.pm:348
#: ../lib/REQ.pm:71 ../lib/REQ.pm:389
msgid "Can't read CA certificate"
msgstr ""
#: ../lib/CA.pm:1265
#, c-format
msgid "Invalid Format for export_ca_cert(): %s"
msgstr ""
#: ../lib/CA.pm:1287
#, c-format
msgid "Certificate succesfully exported to: %s"
msgstr ""
#: ../lib/CA.pm:1320
msgid "Please give the output file"
msgstr ""
#: ../lib/CA.pm:1328
msgid "Please give the CA password to create the Revocation List"
msgstr ""
#: ../lib/CA.pm:1349
msgid ""
"Wrong CA password given\n"
"Generating Revocation List failed"
msgstr ""
#: ../lib/CA.pm:1353
msgid ""
"CA Key not found\n"
"Generating Revocation List failed"
msgstr ""
#: ../lib/CA.pm:1357 ../lib/CA.pm:1363
msgid "Generating Revocation List failed"
msgstr ""
#: ../lib/CA.pm:1371
#, c-format
msgid "CRL successfully exported to: %s"
msgstr ""
#: ../lib/CERT.pm:143 ../lib/CERT.pm:199 ../lib/CERT.pm:322 ../lib/CERT.pm:381
#: ../lib/GUI.pm:851
msgid "Please select a Certificate first"
msgstr ""
#: ../lib/CERT.pm:151 ../lib/CERT.pm:209 ../lib/CERT.pm:333 ../lib/CERT.pm:400
#: ../lib/GUI.pm:2706 ../lib/GUI.pm:2717 ../lib/OpenSSL.pm:702
#: ../lib/GUI/X509_browser.pm:276
msgid "VALID"
msgstr ""
#: ../lib/CERT.pm:153
#, c-format
msgid ""
"Can't renew Certifikate with Status: %s\n"
"Please revoke the Certificate first"
msgstr ""
#: ../lib/CERT.pm:168
msgid ""
"Key and Request are necessary for renewal of a Certificate\n"
"Renewal is not possible!"
msgstr ""
#: ../lib/CERT.pm:210
#, c-format
msgid "Can't revoke Certifikate with Status: %s"
msgstr ""
#: ../lib/CERT.pm:256
msgid ""
"Wrong CA password given\n"
"Revoking the Certificate failed"
msgstr ""
#: ../lib/CERT.pm:263
msgid ""
"CA Key not found\n"
"Revoking the Certificate failed"
msgstr ""
#: ../lib/CERT.pm:270
msgid "Revoking the Certificate failed"
msgstr ""
#: ../lib/CERT.pm:290
msgid "Generating a new Revocation List failed"
msgstr ""
#: ../lib/CERT.pm:335
msgid ""
"Can't delete VALID certificate!\n"
"Please revoke the Certificate first."
msgstr ""
#: ../lib/CERT.pm:401
msgid "Certificate seems not to be VALID"
msgstr ""
#: ../lib/CERT.pm:403
msgid "Export is not possible"
msgstr ""
#: ../lib/CERT.pm:430 ../lib/KEY.pm:172
msgid "Please give at least the output file"
msgstr ""
#: ../lib/CERT.pm:436
msgid "Key is necessary for export as PKCS#12"
msgstr ""
#: ../lib/CERT.pm:438 ../lib/CERT.pm:454 ../lib/KEY.pm:257 ../lib/KEY.pm:308
msgid "Export is not possible!"
msgstr ""
#: ../lib/CERT.pm:452
#, c-format
msgid "Key is necessary for export as %s"
msgstr ""
#: ../lib/CERT.pm:492 ../lib/KEY.pm:216
#, c-format
msgid "Can't open Certificate file: %s: %s"
msgstr ""
#: ../lib/CERT.pm:525 ../lib/KEY.pm:288
msgid "Generating PKCS#12 failed"
msgstr ""
#: ../lib/CERT.pm:533 ../lib/CERT.pm:616 ../lib/KEY.pm:295 ../lib/KEY.pm:381
#, c-format
msgid "Certificate and Key successfully exported to %s"
msgstr ""
#: ../lib/CERT.pm:546 ../lib/CERT.pm:567 ../lib/REQ.pm:693
#, c-format
msgid "Can't create temporary file: %s: %s"
msgstr ""
#: ../lib/CERT.pm:558
#, c-format
msgid "Can't read Key file: %s: %s"
msgstr ""
#: ../lib/CERT.pm:588 ../lib/KEY.pm:321 ../lib/KEY.pm:337 ../lib/KEY.pm:355
msgid "Can't create temporary file"
msgstr ""
#: ../lib/CERT.pm:609 ../lib/KEY.pm:375
#, c-format
msgid "Generating %s file failed"
msgstr ""
#: ../lib/CERT.pm:628
#, c-format
msgid "Invalid Format for export_cert(): %s"
msgstr ""
#: ../lib/CERT.pm:648
#, c-format
msgid "Certificate successfully exported to: %s"
msgstr ""
#: ../lib/GUI.pm:171 ../lib/GUI.pm:178
msgid "CA"
msgstr ""
#: ../lib/GUI.pm:185
msgid "CA Information"
msgstr ""
#: ../lib/GUI.pm:204
msgid "Certificates"
msgstr ""
#: ../lib/GUI.pm:244 ../lib/GUI.pm:2689 ../lib/GUI/WORDS.pm:56
#: ../lib/GUI/X509_browser.pm:160 ../lib/GUI/X509_browser.pm:168
#: ../lib/GUI/X509_browser.pm:177
msgid "Common Name"
msgstr ""
#: ../lib/GUI.pm:245 ../lib/GUI.pm:1273 ../lib/GUI.pm:2314
#: ../lib/GUI/WORDS.pm:57 ../lib/GUI/X509_browser.pm:161
#: ../lib/GUI/X509_browser.pm:169 ../lib/GUI/X509_browser.pm:178
msgid "eMail Address"
msgstr ""
#: ../lib/GUI.pm:246 ../lib/GUI/WORDS.pm:59 ../lib/GUI/X509_browser.pm:162
#: ../lib/GUI/X509_browser.pm:170 ../lib/GUI/X509_browser.pm:179
msgid "Organizational Unit"
msgstr ""
#: ../lib/GUI.pm:247 ../lib/GUI/WORDS.pm:58 ../lib/GUI/X509_browser.pm:163
#: ../lib/GUI/X509_browser.pm:171 ../lib/GUI/X509_browser.pm:180
msgid "Organization"
msgstr ""
#: ../lib/GUI.pm:248 ../lib/GUI/WORDS.pm:60 ../lib/GUI/X509_browser.pm:164
#: ../lib/GUI/X509_browser.pm:172 ../lib/GUI/X509_browser.pm:181
msgid "Location"
msgstr ""
#: ../lib/GUI.pm:249 ../lib/GUI/WORDS.pm:61 ../lib/GUI/X509_browser.pm:165
#: ../lib/GUI/X509_browser.pm:173 ../lib/GUI/X509_browser.pm:182
msgid "State"
msgstr ""
#: ../lib/GUI.pm:250 ../lib/GUI/WORDS.pm:62 ../lib/GUI/X509_browser.pm:166
#: ../lib/GUI/X509_browser.pm:174 ../lib/GUI/X509_browser.pm:183
msgid "Country"
msgstr ""
#: ../lib/GUI.pm:251 ../lib/GUI/WORDS.pm:68 ../lib/GUI/X509_browser.pm:184
msgid "Type"
msgstr ""
#: ../lib/GUI.pm:265
msgid "Keys"
msgstr ""
#: ../lib/GUI.pm:308
msgid "Requests"
msgstr ""
#: ../lib/GUI.pm:399
#, c-format
msgid " Actual CA: %s"
msgstr ""
#: ../lib/GUI.pm:402
#, c-format
msgid " Actual CA: %s - Certificates"
msgstr ""
#: ../lib/GUI.pm:405
#, c-format
msgid " Actual CA: %s - Keys"
msgstr ""
#: ../lib/GUI.pm:408
#, c-format
msgid " Actual CA: %s - Requests"
msgstr ""
#: ../lib/GUI.pm:457 ../lib/GUI.pm:1141
msgid "Open CA"
msgstr ""
#: ../lib/GUI.pm:463
msgid "New CA"
msgstr ""
#: ../lib/GUI.pm:469 ../lib/GUI.pm:2382
msgid "Import CA"
msgstr ""
#: ../lib/GUI.pm:475 ../lib/GUI.pm:1143
msgid "Delete CA"
msgstr ""
#: ../lib/GUI.pm:485 ../lib/GUI.pm:524 ../lib/GUI.pm:592
msgid "Details"
msgstr ""
#: ../lib/GUI.pm:491
msgid "History"
msgstr ""
#: ../lib/GUI.pm:497
msgid "Sub CA"
msgstr ""
#: ../lib/GUI.pm:503
msgid "Export CA"
msgstr ""
#: ../lib/GUI.pm:509 ../lib/GUI.pm:1419
msgid "Export CRL"
msgstr ""
#: ../lib/GUI.pm:516
msgid "Export Chain"
msgstr ""
#: ../lib/GUI.pm:530 ../lib/GUI.pm:598
msgid "View"
msgstr ""
#: ../lib/GUI.pm:540 ../lib/GUI.pm:604
msgid "New"
msgstr ""
#: ../lib/GUI.pm:547 ../lib/GUI.pm:578
msgid "Export"
msgstr ""
#: ../lib/GUI.pm:553
msgid "Revoke"
msgstr ""
#: ../lib/GUI.pm:563
msgid "Renew"
msgstr ""
#: ../lib/GUI.pm:570 ../lib/GUI.pm:584 ../lib/GUI.pm:627
msgid "Delete"
msgstr ""
#: ../lib/GUI.pm:610
msgid "Import"
msgstr ""
#: ../lib/GUI.pm:620
msgid "Sign"
msgstr ""
#: ../lib/GUI.pm:646
msgid "_CA"
msgstr ""
#: ../lib/GUI.pm:649
msgid "_Open CA"
msgstr ""
#: ../lib/GUI.pm:654
msgid "_New CA"
msgstr ""
#: ../lib/GUI.pm:659
msgid "_Delete CA"
msgstr ""
#: ../lib/GUI.pm:667
msgid "_Exit"
msgstr ""
#: ../lib/GUI.pm:674
msgid "_Preferences"
msgstr ""
#: ../lib/GUI.pm:677
msgid "Experts Only!!"
msgstr ""
#: ../lib/GUI.pm:682
msgid "OpenSSL _Configuration"
msgstr ""
#: ../lib/GUI.pm:689 ../lib/GUI.pm:692
msgid "_Help"
msgstr ""
#: ../lib/GUI.pm:697
msgid "_About TinyCA"
msgstr ""
#: ../lib/GUI.pm:728
msgid "Invalid mode for show_text():"
msgstr ""
#: ../lib/GUI.pm:733 ../lib/GUI.pm:848 ../lib/REQ.pm:236 ../lib/REQ.pm:367
msgid "Please select a Request first"
msgstr ""
#: ../lib/GUI.pm:736
msgid "Please select a certificate first"
msgstr ""
#: ../lib/GUI.pm:752 ../lib/GUI.pm:867 ../lib/GUI/X509_browser.pm:456
#: ../lib/GUI/X509_browser.pm:515
msgid "Can't read file"
msgstr ""
#: ../lib/GUI.pm:754
msgid "Request"
msgstr ""
#: ../lib/GUI.pm:754
msgid "Certificate"
msgstr ""
#: ../lib/GUI.pm:815
#, c-format
msgid "Invalid mode for _show_popup_menu(): %s"
msgstr ""
#: ../lib/GUI.pm:843
msgid "Invalid mode for show_details():"
msgstr ""
#: ../lib/GUI.pm:869 ../lib/GUI.pm:969 ../lib/GUI.pm:3040
msgid "Request Details"
msgstr ""
#: ../lib/GUI.pm:869 ../lib/GUI.pm:969 ../lib/GUI.pm:2897
msgid "Certificate Details"
msgstr ""
#: ../lib/GUI.pm:911 ../lib/GUI.pm:1679 ../lib/GUI.pm:3061
msgid "Import Request"
msgstr ""
#: ../lib/GUI.pm:913 ../lib/GUI.pm:2438
msgid "Import CA Certificate"
msgstr ""
#: ../lib/GUI.pm:921
msgid "Do you want to import the following Certificate Request?"
msgstr ""
#: ../lib/GUI.pm:923
msgid "Do you want to import the following CA Certificate?"
msgstr ""
#: ../lib/GUI.pm:977
msgid "Subject DN"
msgstr ""
#: ../lib/GUI.pm:1001
msgid "Issuer"
msgstr ""
#: ../lib/GUI.pm:1027
msgid "Validity"
msgstr ""
#: ../lib/GUI.pm:1043
msgid "Key/Request Details:"
msgstr ""
#: ../lib/GUI.pm:1043
msgid "Key/Certificate Details:"
msgstr ""
#: ../lib/GUI.pm:1059
msgid "Fingerprints"
msgstr ""
#: ../lib/GUI.pm:1075
msgid "Requested X.509 Extensions"
msgstr ""
#: ../lib/GUI.pm:1075
msgid "X.509v3 Extensions"
msgstr ""
#: ../lib/GUI.pm:1100
msgid "Requested Netscape Extensions"
msgstr ""
#: ../lib/GUI.pm:1100
msgid "Netscape Extensions"
msgstr ""
#: ../lib/GUI.pm:1145
msgid "Invalid action given: "
msgstr ""
#: ../lib/GUI.pm:1167 ../lib/GUI.pm:1213
msgid "Invalid action for show_select_ca_dialog(): "
msgstr ""
#: ../lib/GUI.pm:1189
msgid "Available CAs"
msgstr ""
#: ../lib/GUI.pm:1245
msgid "Create Request"
msgstr ""
#: ../lib/GUI.pm:1246
msgid "Create a new Certificate Request"
msgstr ""
#: ../lib/GUI.pm:1260
msgid "Common Name (eg, your Name,"
msgstr ""
#: ../lib/GUI.pm:1265
msgid "your eMail Address"
msgstr ""
#: ../lib/GUI.pm:1269
msgid "or the Servers Name)"
msgstr ""
#: ../lib/GUI.pm:1277
msgid "Password (protect your private Key):"
msgstr ""
#: ../lib/GUI.pm:1281 ../lib/GUI.pm:2294
msgid "Password (confirmation):"
msgstr ""
#: ../lib/GUI.pm:1285 ../lib/GUI.pm:2286
msgid "Country Name (2 letter code):"
msgstr ""
#: ../lib/GUI.pm:1289 ../lib/GUI.pm:2298
msgid "State or Province Name:"
msgstr ""
#: ../lib/GUI.pm:1293 ../lib/GUI.pm:2302
msgid "Locality Name (eg. city):"
msgstr ""
#: ../lib/GUI.pm:1297 ../lib/GUI.pm:2306
msgid "Organization Name (eg. company):"
msgstr ""
#: ../lib/GUI.pm:1303 ../lib/GUI.pm:1308 ../lib/GUI.pm:2310
msgid "Organizational Unit Name (eg. section):"
msgstr ""
#: ../lib/GUI.pm:1313 ../lib/GUI.pm:2322 ../lib/GUI/WORDS.pm:65
msgid "Keylength"
msgstr ""
#: ../lib/GUI.pm:1321 ../lib/GUI.pm:2352
msgid "Digest"
msgstr ""
#: ../lib/GUI.pm:1328
msgid "Algorithm"
msgstr ""
#: ../lib/GUI.pm:1359 ../lib/GUI.pm:2918
msgid "Revoke Certificate"
msgstr ""
#: ../lib/GUI.pm:1368 ../lib/GUI.pm:1444 ../lib/GUI.pm:2093
msgid "CA Password:"
msgstr ""
#: ../lib/GUI.pm:1374
msgid "Revocation Reason:"
msgstr ""
#: ../lib/GUI.pm:1419
msgid "Export Revocation List to File"
msgstr ""
#: ../lib/GUI.pm:1427 ../lib/GUI.pm:1515 ../lib/GUI.pm:1563 ../lib/GUI.pm:1687
#: ../lib/GUI.pm:1755
msgid "File:"
msgstr ""
#: ../lib/GUI.pm:1438 ../lib/GUI.pm:1526 ../lib/GUI.pm:1574 ../lib/GUI.pm:1697
#: ../lib/GUI.pm:1772 ../lib/GUI.pm:2435 ../lib/GUI.pm:2454 ../lib/GUI.pm:2473
#: ../lib/GUI.pm:2492
msgid "Browse..."
msgstr ""
#: ../lib/GUI.pm:1441 ../lib/GUI.pm:1554 ../lib/GUI.pm:1577
msgid "Export CA Certificate"
msgstr ""
#: ../lib/GUI.pm:1448 ../lib/GUI.pm:2099 ../lib/GUI.pm:2318
msgid "Valid for (Days):"
msgstr ""
#: ../lib/GUI.pm:1452 ../lib/GUI.pm:1581 ../lib/GUI.pm:1779
msgid "Export Format:"
msgstr ""
#: ../lib/GUI.pm:1458 ../lib/GUI.pm:1587
msgid "PEM"
msgstr ""
#: ../lib/GUI.pm:1467 ../lib/GUI.pm:1596
msgid "DER"
msgstr ""
#: ../lib/GUI.pm:1476 ../lib/GUI.pm:1605
msgid "TXT"
msgstr ""
#: ../lib/GUI.pm:1507 ../lib/GUI.pm:1529
msgid "Export CA Certificate Chain"
msgstr ""
#: ../lib/GUI.pm:1508
msgid "Export CA Certificate Chain to File"
msgstr ""
#: ../lib/GUI.pm:1555
msgid "Export CA Certificate to File"
msgstr ""
#: ../lib/GUI.pm:1635 ../lib/GUI.pm:1636
msgid "Export Key without Passphrase"
msgstr ""
#: ../lib/GUI.pm:1640
msgid "I hope you know what you're doing?"
msgstr ""
#: ../lib/GUI.pm:1644
msgid "The Key Passphrase is needed for decryption of the Key"
msgstr ""
#: ../lib/GUI.pm:1653
msgid "Password:"
msgstr ""
#: ../lib/GUI.pm:1679 ../lib/GUI.pm:1700
msgid "Import Request from File"
msgstr ""
#: ../lib/GUI.pm:1721 ../lib/GUI.pm:1759 ../lib/GUI.pm:2911
msgid "Export Certificate"
msgstr ""
#: ../lib/GUI.pm:1723 ../lib/GUI.pm:1761 ../lib/GUI.pm:2868
msgid "Export Key"
msgstr ""
#: ../lib/GUI.pm:1726
msgid "Invalid mode for show_export_dialog(): "
msgstr ""
#: ../lib/GUI.pm:1743
msgid "Export Certificate to File"
msgstr ""
#: ../lib/GUI.pm:1745
msgid "Export Key to File"
msgstr ""
#: ../lib/GUI.pm:1783
msgid "PEM (Certificate)"
msgstr ""
#: ../lib/GUI.pm:1785
msgid "PEM (Key)"
msgstr ""
#: ../lib/GUI.pm:1794
msgid "DER (Certificate)"
msgstr ""
#: ../lib/GUI.pm:1796
msgid "DER (Key without Passphrase)"
msgstr ""
#: ../lib/GUI.pm:1804
msgid "PKCS#12 (Certificate & Key)"
msgstr ""
#: ../lib/GUI.pm:1811
msgid "Zip (Certificate & Key)"
msgstr ""
#: ../lib/GUI.pm:1821
msgid "Tar (Certificate & Key)"
msgstr ""
#: ../lib/GUI.pm:1833
msgid "TXT (Certificate)"
msgstr ""
#: ../lib/GUI.pm:1839
msgid "Without Passphrase (PEM/PKCS#12)"
msgstr ""
#: ../lib/GUI.pm:1845 ../lib/GUI.pm:1872 ../lib/GUI.pm:1891 ../lib/GUI.pm:2018
#: ../lib/GUI.pm:2043 ../lib/GUI.pm:2196
msgid "Yes"
msgstr ""
#: ../lib/GUI.pm:1850 ../lib/GUI.pm:1877 ../lib/GUI.pm:1896 ../lib/GUI.pm:2024
#: ../lib/GUI.pm:2049 ../lib/GUI.pm:2202
msgid "No"
msgstr ""
#: ../lib/GUI.pm:1860
msgid "Include Key (PEM)"
msgstr ""
#: ../lib/GUI.pm:1865
msgid "Include Certificate (PEM)"
msgstr ""
#: ../lib/GUI.pm:1885
msgid "Include Fingerprint (PEM)"
msgstr ""
#: ../lib/GUI.pm:1993 ../lib/GUI.pm:1994
msgid "Export to PKCS#12"
msgstr ""
#: ../lib/GUI.pm:2001
msgid "Key Password:"
msgstr ""
#: ../lib/GUI.pm:2005
msgid "Export Password:"
msgstr ""
#: ../lib/GUI.pm:2008
msgid "Friendly Name:"
msgstr ""
#: ../lib/GUI.pm:2012
msgid "Without Passphrase"
msgstr ""
#: ../lib/GUI.pm:2037
msgid "Add CA Certificate to PKCS#12 structure"
msgstr ""
#: ../lib/GUI.pm:2085 ../lib/GUI.pm:3068
msgid "Sign Request"
msgstr ""
#: ../lib/GUI.pm:2085
msgid "Sign Request/Create Certificate"
msgstr ""
#: ../lib/GUI.pm:2110 ../lib/GUI.pm:2155
msgid "Subject alternative name (IP Address):"
msgstr ""
#: ../lib/GUI.pm:2113 ../lib/GUI.pm:2158
msgid "Subject alternative name (DNS Name):"
msgstr ""
#: ../lib/GUI.pm:2116 ../lib/GUI.pm:2164
msgid "Subject alternative name (raw):"
msgstr ""
#: ../lib/GUI.pm:2124 ../lib/GUI.pm:2172
msgid "Extended Key Usage:"
msgstr ""
#: ../lib/GUI.pm:2131
msgid "Netscape SSL Server Name:"
msgstr ""
#: ../lib/GUI.pm:2138 ../lib/GUI.pm:2179
msgid "Netscape Revocation URL:"
msgstr ""
#: ../lib/GUI.pm:2145 ../lib/GUI.pm:2186
msgid "Netscape Renewal URL:"
msgstr ""
#: ../lib/GUI.pm:2161
msgid "Subject alternative name (eMail Address):"
msgstr ""
#: ../lib/GUI.pm:2208
msgid "Add eMail Address to Subject DN:"
msgstr ""
#: ../lib/GUI.pm:2238 ../lib/GUI.pm:2242
msgid "Create CA"
msgstr ""
#: ../lib/GUI.pm:2238
msgid "Create a new Sub CA"
msgstr ""
#: ../lib/GUI.pm:2242
msgid "Create a new CA"
msgstr ""
#: ../lib/GUI.pm:2255
msgid "CA Password (for creating the new CA):"
msgstr ""
#: ../lib/GUI.pm:2266 ../lib/GUI.pm:2403
msgid "Name (for local storage):"
msgstr ""
#: ../lib/GUI.pm:2273
msgid "Data for CA Certificate"
msgstr ""
#: ../lib/GUI.pm:2282
msgid "Common Name (for the CA):"
msgstr ""
#: ../lib/GUI.pm:2290
msgid "Password (needed for signing):"
msgstr ""
#: ../lib/GUI.pm:2382
msgid "Import an existing CA into TinyCA"
msgstr ""
#: ../lib/GUI.pm:2393
msgid "Password of the private CA key (Needed for import):"
msgstr ""
#: ../lib/GUI.pm:2407
msgid "New password for the CA:"
msgstr ""
#: ../lib/GUI.pm:2411
msgid "Confirm password:"
msgstr ""
#: ../lib/GUI.pm:2416
msgid "Files/Directories to import"
msgstr ""
#: ../lib/GUI.pm:2424
msgid "CA Certificate (PEM/DER):"
msgstr ""
#: ../lib/GUI.pm:2443
msgid "CA private key (PEM/DER):"
msgstr ""
#: ../lib/GUI.pm:2457
msgid "Import CA private Key"
msgstr ""
#: ../lib/GUI.pm:2462
msgid "OpenSSL Index File (index.txt):"
msgstr ""
#: ../lib/GUI.pm:2476
msgid "Import Index File"
msgstr ""
#: ../lib/GUI.pm:2481
msgid "Directory containing certificates (PEM/DER):"
msgstr ""
#: ../lib/GUI.pm:2495
msgid "Import Certificates from directory"
msgstr ""
#: ../lib/GUI.pm:2509
msgid "You are kidding, are you??"
msgstr ""
#: ../lib/GUI.pm:2531
msgid "Spanish: Ramon Pons Vivanco <rpons\\@rinu.org>"
msgstr ""
#: ../lib/GUI.pm:2532
msgid "Czech: Robert Wolf <gentoo\\@slave.umbr.cas.cz>"
msgstr ""
#: ../lib/GUI.pm:2533
msgid "French: Thibault Le Meur <Thibault.Lemeur\\@supelec.fr>"
msgstr ""
#: ../lib/GUI.pm:2549
msgid "Do you really want to delete the selected Request?"
msgstr ""
#: ../lib/GUI.pm:2551
msgid "Do you really want to delete the selected Key?"
msgstr ""
#: ../lib/GUI.pm:2553
msgid "Do you really want to delete the selected Certificate?"
msgstr ""
#: ../lib/GUI.pm:2603
msgid "Overwrite Request/Key"
msgstr ""
#: ../lib/GUI.pm:2609
msgid "The Key or the Request is already existing!"
msgstr ""
#: ../lib/GUI.pm:2614
msgid "You won't be able to sign this Request"
msgstr ""
#: ../lib/GUI.pm:2619
msgid "if the corresponding certificate is still valid"
msgstr ""
#: ../lib/GUI.pm:2636
msgid "The Certificate will be longer valid than your CA!"
msgstr ""
#: ../lib/GUI.pm:2638
msgid "This may cause problems with some software!!"
msgstr ""
#: ../lib/GUI.pm:2653
msgid "Expirationdate Warning"
msgstr ""
#: ../lib/GUI.pm:2688 ../lib/GUI/WORDS.pm:69
msgid "Serial"
msgstr ""
#: ../lib/GUI.pm:2690 ../lib/GUI/WORDS.pm:70 ../lib/GUI/X509_browser.pm:175
msgid "Status"
msgstr ""
#: ../lib/GUI.pm:2691 ../lib/GUI/WORDS.pm:64
msgid "Expiration Date"
msgstr ""
#: ../lib/GUI.pm:2692
msgid "Revocation Date"
msgstr ""
#: ../lib/GUI.pm:2693
msgid "Revocation Reason"
msgstr ""
#: ../lib/GUI.pm:2719 ../lib/OpenSSL.pm:705
msgid "EXPIRED"
msgstr ""
#: ../lib/GUI.pm:2721 ../lib/OpenSSL.pm:718
msgid "REVOKED"
msgstr ""
#: ../lib/GUI.pm:2741
msgid "CA History"
msgstr ""
#: ../lib/GUI.pm:2775
msgid "Overwrite Certificate"
msgstr ""
#: ../lib/GUI.pm:2781
msgid "There seems to be a certificate with the same Subject already."
msgstr ""
#: ../lib/GUI.pm:2786
msgid ""
"Creating a new one (overwrite) will fail if it's not revoked or expired!"
msgstr ""
#: ../lib/GUI.pm:2792
msgid "Really try to overwrite the Certificate?"
msgstr ""
#: ../lib/GUI.pm:2825
msgid "Convert CA"
msgstr ""
#: ../lib/GUI.pm:2833
msgid ""
"This CA seems to be created with openssl 0.9.6x. And it seems like you have "
"switched to openssl 0.9.7x."
msgstr ""
#: ../lib/GUI.pm:2841
msgid ""
"You won't be able to revoke the existing certificates without converting the "
"index file of this CA to the new format."
msgstr ""
#: ../lib/GUI.pm:2849
msgid ""
"Attention: it will not be easy to switch back, this has to be done manually"
msgstr ""
#: ../lib/GUI.pm:2875
msgid "Delete Key"
msgstr ""
#: ../lib/GUI.pm:2904
msgid "View Certificate"
msgstr ""
#: ../lib/GUI.pm:2925
msgid "Renew Certificate"
msgstr ""
#: ../lib/GUI.pm:2933
msgid "Delete Certificate"
msgstr ""
#: ../lib/GUI.pm:2956
msgid "Create Key and Certificate (Server)"
msgstr ""
#: ../lib/GUI.pm:2962
msgid "Create Key and Certificate (Client)"
msgstr ""
#: ../lib/GUI.pm:2983
msgid "Renew Certificate (Server)"
msgstr ""
#: ../lib/GUI.pm:2990
msgid "Renew Certificate (Client)"
msgstr ""
#: ../lib/GUI.pm:3012
msgid "Sign Request (Server)"
msgstr ""
#: ../lib/GUI.pm:3019
msgid "Sign Request (Client)"
msgstr ""
#: ../lib/GUI.pm:3047
msgid "View Request"
msgstr ""
#: ../lib/GUI.pm:3054
msgid "New Request"
msgstr ""
#: ../lib/GUI.pm:3076
msgid "Delete Request"
msgstr ""
#: ../lib/HELPERS.pm:207
#, c-format
msgid "Can't write exportdir: %s, %s"
msgstr ""
#: ../lib/KEY.pm:45 ../lib/KEY.pm:137
msgid "Please select a Key first"
msgstr ""
#: ../lib/KEY.pm:54
msgid "Key file not found:"
msgstr ""
#: ../lib/KEY.pm:101
msgid "Can't open key directory"
msgstr ""
#: ../lib/KEY.pm:194
msgid ""
"Wrong password given\n"
"Decrypting of the Key failed\n"
"Export is not possible"
msgstr ""
#: ../lib/KEY.pm:199
msgid "Converting failed, Export not possible"
msgstr ""
#: ../lib/KEY.pm:206 ../lib/KEY.pm:410
#, c-format
msgid "Can't open Key file: %s: %s"
msgstr ""
#: ../lib/KEY.pm:239
#, c-format
msgid "Key succesfully exported to %s"
msgstr ""
#: ../lib/KEY.pm:255
msgid "Certificate is necessary for export as PKCS#12"
msgstr ""
#: ../lib/KEY.pm:305
#, c-format
msgid "Certificate is necessary for export as %s file"
msgstr ""
#: ../lib/KEY.pm:330
msgid "Can't read Key file"
msgstr ""
#: ../lib/KEY.pm:392
#, c-format
msgid "Invalid format for export requested: %s"
msgstr ""
#: ../lib/KEY.pm:398
msgid "Something Failed ??"
msgstr ""
#: ../lib/KEY.pm:448
#, c-format
msgid ""
"Can't open Key file:\n"
"%s"
msgstr ""
#: ../lib/KEY.pm:485
msgid "The password for your old CA Key is wrong"
msgstr ""
#: ../lib/OpenSSL.pm:73
msgid "Creating DSA key in progress..."
msgstr ""
#: ../lib/OpenSSL.pm:107
msgid "Creating RSA key in progress..."
msgstr ""
#: ../lib/OpenSSL.pm:456
#, c-format
msgid "Can't open CRL '%s': %s"
msgstr ""
#: ../lib/OpenSSL.pm:471 ../lib/OpenSSL.pm:484
msgid "Error converting CRL"
msgstr ""
#: ../lib/OpenSSL.pm:582 ../lib/OpenSSL.pm:595
msgid "Error converting Certificate"
msgstr ""
#: ../lib/OpenSSL.pm:655 ../lib/OpenSSL.pm:672
msgid "Error reading fingerprint from Certificate"
msgstr ""
#: ../lib/OpenSSL.pm:690
msgid "Error reading subject from Certificate"
msgstr ""
#: ../lib/OpenSSL.pm:700
msgid "Can't read CRL"
msgstr ""
#: ../lib/OpenSSL.pm:723
msgid "UNDEFINED"
msgstr ""
#: ../lib/OpenSSL.pm:750
#, c-format
msgid "Can't open Request file %s: %s"
msgstr ""
#: ../lib/OpenSSL.pm:767 ../lib/OpenSSL.pm:781 ../lib/REQ.pm:685
msgid "Error converting Request"
msgstr ""
#: ../lib/OpenSSL.pm:863
#, c-format
msgid "Can't open file %s: %s"
msgstr ""
#: ../lib/OpenSSL.pm:981 ../lib/OpenSSL.pm:1013
#, c-format
msgid "Can't read index %s: %s"
msgstr ""
#: ../lib/OpenSSL.pm:1023
#, c-format
msgid "Can't write index %s: %s"
msgstr ""
#: ../lib/REQ.pm:58
#, c-format
msgid "Strange value for 'opts': %s"
msgstr ""
#: ../lib/REQ.pm:101
msgid "Please specify at least Common Name "
msgstr ""
#: ../lib/REQ.pm:102
msgid "and Password"
msgstr ""
#: ../lib/REQ.pm:246 ../lib/REQ.pm:376
msgid "Request file not found"
msgstr ""
#: ../lib/REQ.pm:299
msgid "Can't open Request directory"
msgstr ""
#: ../lib/REQ.pm:320
#, c-format
msgid " Read Request: %s"
msgstr ""
#: ../lib/REQ.pm:414
msgid "Can't read Request file"
msgstr ""
#: ../lib/REQ.pm:458
msgid "Can't read serial"
msgstr ""
#: ../lib/REQ.pm:531
msgid ""
"Wrong CA password given\n"
"Signing of the Request failed"
msgstr ""
#: ../lib/REQ.pm:537
msgid ""
"CA Key not found\n"
"Signing of the Request failed"
msgstr ""
#: ../lib/REQ.pm:543
msgid ""
"Certificate already existing\n"
"Signing of the Request failed"
msgstr ""
#: ../lib/REQ.pm:549
msgid ""
"Invalid IP Address given\n"
"Signing of the Request failed"
msgstr ""
#: ../lib/REQ.pm:556 ../lib/REQ.pm:574
msgid "Signing of the Request failed"
msgstr ""
#: ../lib/REQ.pm:581
msgid "Can't read Certificate file"
msgstr ""
#: ../lib/REQ.pm:587 ../lib/REQ.pm:597
msgid "Can't write Certificate file"
msgstr ""
#: ../lib/REQ.pm:609
msgid ""
"Request signed succesfully.\n"
"Certificate created"
msgstr ""
#: ../lib/REQ.pm:650
msgid "Please select a Request file first"
msgstr ""
#: ../lib/REQ.pm:656
msgid "Can't find Request file: "
msgstr ""
#: ../lib/REQ.pm:662
msgid "Can't read Request file:"
msgstr ""
#: ../lib/REQ.pm:708
msgid "Parsing Request failed"
msgstr ""
#: ../lib/TCONFIG.pm:42
msgid "Please select a CA first"
msgstr ""
#: ../lib/TCONFIG.pm:49
msgid "Can't open configuration"
msgstr ""
#: ../lib/TCONFIG.pm:284 ../lib/TCONFIG.pm:299 ../lib/GUI/TCONFIG.pm:47
#: ../lib/GUI/TCONFIG.pm:1302
msgid "Can't get CA name"
msgstr ""
#: ../lib/TCONFIG.pm:327
msgid "Can't open configfile"
msgstr ""
#: ../lib/GUI/HELPERS.pm:54 ../lib/GUI/HELPERS.pm:94 ../lib/GUI/HELPERS.pm:135
msgid "Command Details"
msgstr ""
#: ../lib/GUI/HELPERS.pm:305
msgid "Request Files (*.pem, *.der, *.req)"
msgstr ""
#: ../lib/GUI/HELPERS.pm:312
msgid "All Files (*.*)"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:74
msgid ""
"All Settings are written unchanged to openssl.conf.\n"
"So please study the documentation of OpenSSL if you don't know exactly what "
"to do.\n"
"If you are still unsure - keep the defaults and everything is expected to "
"work fine."
msgstr ""
#: ../lib/GUI/TCONFIG.pm:108 ../lib/GUI/TCONFIG.pm:116
msgid "OpenSSL Configuration"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:129
msgid "Only change these options, if you really know, what you are doing!!"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:137
msgid "You should be aware, that some options may break some crappy software!!"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:146 ../lib/GUI/TCONFIG.pm:1348
msgid "If you are unsure: leave the defaults untouched"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:182
msgid "These Settings are passed to OpenSSL for creating Server Certificates"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:187 ../lib/GUI/TCONFIG.pm:612
#: ../lib/GUI/TCONFIG.pm:1019 ../lib/GUI/TCONFIG.pm:1239
#: ../lib/GUI/TCONFIG.pm:1340
msgid "Multiple Values can be separated by \",\""
msgstr ""
#: ../lib/GUI/TCONFIG.pm:207 ../lib/GUI/TCONFIG.pm:209
msgid "Server Certificate Settings"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:215 ../lib/GUI/TCONFIG.pm:638
#: ../lib/GUI/TCONFIG.pm:1047 ../lib/GUI/TCONFIG.pm:1462
msgid "Subject alternative name (subjectAltName):"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:312 ../lib/GUI/TCONFIG.pm:744
#: ../lib/GUI/TCONFIG.pm:1107 ../lib/GUI/TCONFIG.pm:1358
msgid "Key Usage (keyUsage):"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:391 ../lib/GUI/TCONFIG.pm:819
msgid "Extended Key Usage (extendedKeyUsage):"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:467 ../lib/GUI/TCONFIG.pm:894
#: ../lib/GUI/TCONFIG.pm:1076 ../lib/GUI/TCONFIG.pm:1431
msgid "Netscape Certificate Type (nsCertType):"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:496
msgid "Netscape SSL Server Name (nsSslServerName):"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:521 ../lib/GUI/TCONFIG.pm:924
#: ../lib/GUI/TCONFIG.pm:1182
msgid "Netscape Revocation URL (nsRevocationUrl):"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:546 ../lib/GUI/TCONFIG.pm:948
msgid "Netscape Renewal URL (nsRenewalUrl):"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:607
msgid "These Settings are passed to OpenSSL for creating Client Certificates"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:632
msgid "Client Certificate Settings"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:1014
msgid "These Settings are passed to OpenSSL for creating CA Certificates"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:1039 ../lib/GUI/TCONFIG.pm:1041
msgid "CA Certificate Settings"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:1234
msgid ""
"These Settings are passed to OpenSSL for creating Certificate Revocation "
"Lists"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:1260
msgid "Revocation List Settings"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:1322
msgid "CA Configuration"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:1330
msgid "These Settings are passed to OpenSSL for creating this CA Certificate"
msgstr ""
#: ../lib/GUI/TCONFIG.pm:1335
msgid "and the CA Certificates of every SubCA, created with this CA."
msgstr ""
#: ../lib/GUI/WORDS.pm:26 ../lib/GUI/WORDS.pm:73
msgid "Not set"
msgstr ""
#: ../lib/GUI/WORDS.pm:27 ../lib/GUI/WORDS.pm:74
msgid "Ask User"
msgstr ""
#: ../lib/GUI/WORDS.pm:28 ../lib/GUI/WORDS.pm:75
msgid "critical"
msgstr ""
#: ../lib/GUI/WORDS.pm:29 ../lib/GUI/WORDS.pm:76
msgid "not critical"
msgstr ""
#: ../lib/GUI/WORDS.pm:30 ../lib/GUI/WORDS.pm:77
msgid "Copy Email"
msgstr ""
#: ../lib/GUI/WORDS.pm:31 ../lib/GUI/WORDS.pm:78
msgid "raw"
msgstr ""
#: ../lib/GUI/WORDS.pm:32 ../lib/GUI/WORDS.pm:79
msgid "DNS Name"
msgstr ""
#: ../lib/GUI/WORDS.pm:33 ../lib/GUI/WORDS.pm:81
msgid "IP Address"
msgstr ""
#: ../lib/GUI/WORDS.pm:34 ../lib/GUI/WORDS.pm:80
msgid "Email"
msgstr ""
#: ../lib/GUI/WORDS.pm:35 ../lib/GUI/WORDS.pm:82
msgid "SSL Server"
msgstr ""
#: ../lib/GUI/WORDS.pm:36 ../lib/GUI/WORDS.pm:83
msgid "SSL Server, SSL Client"
msgstr ""
#: ../lib/GUI/WORDS.pm:37 ../lib/GUI/WORDS.pm:84
msgid "Key Encipherment"
msgstr ""
#: ../lib/GUI/WORDS.pm:38 ../lib/GUI/WORDS.pm:85
msgid "Digital Signature"
msgstr ""
#: ../lib/GUI/WORDS.pm:39 ../lib/GUI/WORDS.pm:86
msgid "Key Encipherment, Digital Signature"
msgstr ""
#: ../lib/GUI/WORDS.pm:40 ../lib/GUI/WORDS.pm:87
msgid "Object Signing"
msgstr ""
#: ../lib/GUI/WORDS.pm:41 ../lib/GUI/WORDS.pm:91
msgid "SSL Client, Object Signing"
msgstr ""
#: ../lib/GUI/WORDS.pm:42 ../lib/GUI/WORDS.pm:89
msgid "SSL Client, Email(S/MIME)"
msgstr ""
#: ../lib/GUI/WORDS.pm:43 ../lib/GUI/WORDS.pm:90
msgid "SSL Client"
msgstr ""
#: ../lib/GUI/WORDS.pm:44 ../lib/GUI/WORDS.pm:88
msgid "Email(S/MIME)"
msgstr ""
#: ../lib/GUI/WORDS.pm:45 ../lib/GUI/WORDS.pm:92
msgid "SSL Client, Email, Object Signing"
msgstr ""
#: ../lib/GUI/WORDS.pm:46 ../lib/GUI/WORDS.pm:93
msgid "Object Signing CA"
msgstr ""
#: ../lib/GUI/WORDS.pm:47 ../lib/GUI/WORDS.pm:94
msgid "S/MIME CA"
msgstr ""
#: ../lib/GUI/WORDS.pm:48 ../lib/GUI/WORDS.pm:95
msgid "SSL CA"
msgstr ""
#: ../lib/GUI/WORDS.pm:49 ../lib/GUI/WORDS.pm:96
msgid "SSL CA, S/MIME CA"
msgstr ""
#: ../lib/GUI/WORDS.pm:50 ../lib/GUI/WORDS.pm:97
msgid "SSL CA, Object Signing CA"
msgstr ""
#: ../lib/GUI/WORDS.pm:51 ../lib/GUI/WORDS.pm:98
msgid "S/MIME CA, Object Signing CA"
msgstr ""
#: ../lib/GUI/WORDS.pm:52 ../lib/GUI/WORDS.pm:99
msgid "SSL CA, S/MIME CA, Object Signing CA"
msgstr ""
#: ../lib/GUI/WORDS.pm:53 ../lib/GUI/WORDS.pm:100
msgid "Certificate Signing"
msgstr ""
#: ../lib/GUI/WORDS.pm:54 ../lib/GUI/WORDS.pm:101
msgid "CRL Signing"
msgstr ""
#: ../lib/GUI/WORDS.pm:55 ../lib/GUI/WORDS.pm:102
msgid "Certificate Signing, CRL Signing"
msgstr ""
#: ../lib/GUI/WORDS.pm:63
msgid "Creation Date"
msgstr ""
#: ../lib/GUI/WORDS.pm:66
msgid "Public Key Algorithm"
msgstr ""
#: ../lib/GUI/WORDS.pm:67
msgid "Signature Algorithm"
msgstr ""
#: ../lib/GUI/WORDS.pm:71 ../lib/GUI/X509_infobox.pm:80
msgid "Fingerprint (MD5)"
msgstr ""
#: ../lib/GUI/WORDS.pm:72 ../lib/GUI/X509_infobox.pm:89
msgid "Fingerprint (SHA1)"
msgstr ""
#: ../lib/GUI/X509_browser.pm:448
msgid "Certificate Information"
msgstr ""
#: ../lib/GUI/X509_browser.pm:452
msgid "Request Information"
msgstr ""
#: ../lib/GUI/X509_browser.pm:571
msgid "Invalid browser mode for selection_fname():"
msgstr ""
#: ../lib/GUI/X509_browser.pm:571 ../lib/GUI/X509_browser.pm:607
#: ../lib/GUI/X509_browser.pm:656 ../lib/GUI/X509_browser.pm:677
#: ../lib/GUI/X509_browser.pm:698 ../lib/GUI/X509_browser.pm:725
msgid " "
msgstr ""
#: ../lib/GUI/X509_browser.pm:607
msgid "Invalid browser mode for selection_dn():"
msgstr ""
#: ../lib/GUI/X509_browser.pm:656 ../lib/GUI/X509_browser.pm:677
msgid "Invalid browser mode for selection_cn():"
msgstr ""
#: ../lib/GUI/X509_browser.pm:698
msgid "Invalid browser mode for selection_status():"
msgstr ""
#: ../lib/GUI/X509_browser.pm:725
msgid "Invalid browser mode for selection_type():"
msgstr ""
#: ../tinyca2:63
#, c-format
msgid "Can't execute %s.\n"
msgstr ""
#: ../tinyca2:64
msgid "Configure correct path to openssl in tinyca.\n"
msgstr ""
#: ../tinyca2:69
msgid "zip command not found, support disabled.\n"
msgstr ""
#: ../tinyca2:70
msgid "Configure correct path to zip in tinyca.\n"
msgstr ""
#: ../tinyca2:74
msgid "tar command not found, support disabled.\n"
msgstr ""
#: ../tinyca2:75
msgid "Configure correct path to tar in tinyca.\n"
msgstr ""
#: ../tinyca2:82
msgid "Can't find templatedir.\n"
msgstr ""
#: ../tinyca2:83
msgid "Please configure correct path with templates in tinyca.\n"
msgstr ""
|