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
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Martin Lambers <marlam@marlam.de>
# 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: marlam@marlam.de\n"
"POT-Creation-Date: 2006-11-05 21:09+0100\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"
#: gnulib/getopt.c:531 gnulib/getopt.c:547
#, c-format
msgid "%s: option `%s' is ambiguous\n"
msgstr ""
#: gnulib/getopt.c:580 gnulib/getopt.c:584
#, c-format
msgid "%s: option `--%s' doesn't allow an argument\n"
msgstr ""
#: gnulib/getopt.c:593 gnulib/getopt.c:598
#, c-format
msgid "%s: option `%c%s' doesn't allow an argument\n"
msgstr ""
#: gnulib/getopt.c:641 gnulib/getopt.c:660 gnulib/getopt.c:976
#: gnulib/getopt.c:995
#, c-format
msgid "%s: option `%s' requires an argument\n"
msgstr ""
#: gnulib/getopt.c:698 gnulib/getopt.c:701
#, c-format
msgid "%s: unrecognized option `--%s'\n"
msgstr ""
#: gnulib/getopt.c:709 gnulib/getopt.c:712
#, c-format
msgid "%s: unrecognized option `%c%s'\n"
msgstr ""
#: gnulib/getopt.c:764 gnulib/getopt.c:767
#, c-format
msgid "%s: illegal option -- %c\n"
msgstr ""
#: gnulib/getopt.c:773 gnulib/getopt.c:776
#, c-format
msgid "%s: invalid option -- %c\n"
msgstr ""
#: gnulib/getopt.c:828 gnulib/getopt.c:844 gnulib/getopt.c:1048
#: gnulib/getopt.c:1066
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr ""
#: gnulib/getopt.c:897 gnulib/getopt.c:913
#, c-format
msgid "%s: option `-W %s' is ambiguous\n"
msgstr ""
#: gnulib/getopt.c:937 gnulib/getopt.c:955
#, c-format
msgid "%s: option `-W %s' doesn't allow an argument\n"
msgstr ""
#: src/conf.c:433
msgid "host not set"
msgstr ""
#: src/conf.c:438
msgid "tls_key_file requires tls_cert_file"
msgstr ""
#: src/conf.c:443
msgid "tls_cert_file requires tls_key_file"
msgstr ""
#: src/conf.c:449
msgid "cannot use tls_trust_file with tls_cert_check turned off"
msgstr ""
#: src/conf.c:454
msgid "no delivery information"
msgstr ""
#: src/conf.c:559 src/stream.c:63
msgid "input error"
msgstr ""
#: src/conf.c:581
#, c-format
msgid "line longer than %d characters"
msgstr ""
#: src/conf.c:632 src/conf.c:751
#, c-format
msgid "line %d: missing account name"
msgstr ""
#: src/conf.c:637
#, c-format
msgid "line %d: account %s not (yet) defined"
msgstr ""
#: src/conf.c:713
#, c-format
msgid "line %d: first command must be account or defaults"
msgstr ""
#: src/conf.c:723
#, c-format
msgid "line %d: command %s does not take an argument"
msgstr ""
#: src/conf.c:758
#, c-format
msgid "line %d: an account name must not contain colons or commas"
msgstr ""
#: src/conf.c:767
#, c-format
msgid "line %d: account %s was already defined"
msgstr ""
#: src/conf.c:791 src/conf.c:807 src/conf.c:830 src/conf.c:901 src/conf.c:921
#: src/conf.c:1114 src/conf.c:1139
#, c-format
msgid "line %d: command %s needs an argument"
msgstr ""
#: src/conf.c:818 src/conf.c:846 src/conf.c:868 src/conf.c:909 src/conf.c:947
#: src/conf.c:985 src/conf.c:1005 src/conf.c:1043 src/conf.c:1063
#: src/conf.c:1083 src/conf.c:1103
#, c-format
msgid "line %d: invalid argument %s for command %s"
msgstr ""
#: src/conf.c:1127 src/conf.c:1152
#, c-format
msgid "line %d: invalid size (not a number or out of range): %s"
msgstr ""
#: src/conf.c:1174
#, c-format
msgid "line %d: unknown command %s"
msgstr ""
#: src/conf.c:1217
msgid "must be owned by you"
msgstr ""
#: src/conf.c:1222
msgid "must have no more than user read/write permissions"
msgstr ""
#: src/delivery.c:81
msgid "EX_OK: no error"
msgstr ""
#: src/delivery.c:84
msgid "EX_USAGE: command line usage error"
msgstr ""
#: src/delivery.c:87
msgid "EX_DATAERR: data format error"
msgstr ""
#: src/delivery.c:90
msgid "EX_NOINPUT: no input"
msgstr ""
#: src/delivery.c:93
msgid "EX_NOUSER: user unknown"
msgstr ""
#: src/delivery.c:96
msgid "EX_NOHOST: host name unknown"
msgstr ""
#: src/delivery.c:99
msgid "EX_UNAVAILABLE: service unavailable"
msgstr ""
#: src/delivery.c:102
msgid "EX_SOFTWARE: internal software error"
msgstr ""
#: src/delivery.c:105
msgid "EX_OSERR: system error"
msgstr ""
#: src/delivery.c:108
msgid "EX_OSFILE: system file missing"
msgstr ""
#: src/delivery.c:111
msgid "EX_CANTCREAT: cannot create output file"
msgstr ""
#: src/delivery.c:114
msgid "EX_IOERR: input/output error"
msgstr ""
#: src/delivery.c:117
msgid "EX_TEMPFAIL: temporary failure"
msgstr ""
#: src/delivery.c:120
msgid "EX_PROTOCOL: remote error in protocol"
msgstr ""
#: src/delivery.c:123
msgid "EX_NOPERM: permission denied"
msgstr ""
#: src/delivery.c:126
msgid "EX_CONFIG: configuration error"
msgstr ""
#: src/delivery.c:170
#, c-format
msgid "cannot execute %s"
msgstr ""
#: src/delivery.c:190 src/delivery.c:274
#, c-format
msgid "%s did not read mail data"
msgstr ""
#: src/delivery.c:197 src/delivery.c:281
#, c-format
msgid "%s failed to execute"
msgstr ""
#: src/delivery.c:207 src/delivery.c:291
#, c-format
msgid "%s returned exit status %d (%s)"
msgstr ""
#: src/delivery.c:212 src/delivery.c:296
#, c-format
msgid "%s returned exit status %d"
msgstr ""
#: src/delivery.c:371 src/delivery.c:530 src/pop3.c:1608 src/tls.c:111
#, c-format
msgid "cannot get system time: %s"
msgstr ""
#: src/delivery.c:387
#, c-format
msgid "cannot create %s%c%s: %s"
msgstr ""
#: src/delivery.c:395
#, c-format
msgid "cannot open %s%c%s: %s"
msgstr ""
#: src/delivery.c:412
#, c-format
msgid "cannot sync %s%c%s: %s"
msgstr ""
#: src/delivery.c:419
#, c-format
msgid "cannot close %s%c%s: %s"
msgstr ""
#: src/delivery.c:428
#, c-format
msgid "%s: cannot link %s to %s: %s"
msgstr ""
#: src/delivery.c:438
#, c-format
msgid "%s: cannot move %s to %s: %s"
msgstr ""
#: src/delivery.c:495
#, c-format
msgid "cannot change to %s: %s"
msgstr ""
#: src/delivery.c:536 src/delivery.c:547 src/delivery.c:567
#, c-format
msgid "%s: output error"
msgstr ""
#: src/delivery.c:559
#, c-format
msgid "cannot sync %s: %s"
msgstr ""
#: src/delivery.c:589
#, c-format
msgid "cannot open %s: %s"
msgstr ""
#: src/delivery.c:597 src/uidls.c:181
#, c-format
msgid "cannot lock %s (tried for %d seconds): %s"
msgstr ""
#: src/delivery.c:602 src/uidls.c:186
#, c-format
msgid "cannot lock %s: %s"
msgstr ""
#: src/delivery.c:617
#, c-format
msgid "cannot close %s: %s"
msgstr ""
#: src/mpop.c:112
#, c-format
msgid "%s: FATAL: %s"
msgstr ""
#: src/mpop.c:269
#, c-format
msgid "password for %s at %s: "
msgstr ""
#: src/mpop.c:307
msgid "Common Name"
msgstr ""
#: src/mpop.c:307
msgid "Organization"
msgstr ""
#: src/mpop.c:308
msgid "Organizational unit"
msgstr ""
#: src/mpop.c:308
msgid "Locality"
msgstr ""
#: src/mpop.c:308
msgid "State or Province"
msgstr ""
#: src/mpop.c:309
msgid "Country"
msgstr ""
#: src/mpop.c:336
#, c-format
msgid "TLS certificate information:\n"
msgstr ""
#: src/mpop.c:337
msgid "Owner"
msgstr ""
#: src/mpop.c:348
msgid "Issuer"
msgstr ""
#: src/mpop.c:359
msgid "Validity"
msgstr ""
#: src/mpop.c:361
msgid "Activation time"
msgstr ""
#: src/mpop.c:363
msgid "Expiration time"
msgstr ""
#: src/mpop.c:364
msgid "Fingerprints"
msgstr ""
#: src/mpop.c:485 src/mpop.c:952
msgid "the POP3 server does not support TLS via the STLS command"
msgstr ""
#: src/mpop.c:554
#, c-format
msgid "POP3 server at %s (%s [%s]), port %d:\n"
msgstr ""
#: src/mpop.c:559
#, c-format
msgid "POP3 server at %s (%s), port %d:\n"
msgstr ""
#: src/mpop.c:564
#, c-format
msgid "POP3 server at %s ([%s]), port %d:\n"
msgstr ""
#: src/mpop.c:569
#, c-format
msgid "POP3 server at %s, port %d:\n"
msgstr ""
#: src/mpop.c:581
#, c-format
msgid "POP3 capabilities:\n"
msgstr ""
#: src/mpop.c:585
msgid "Support for the CAPA command (get list of capabilities)"
msgstr ""
#: src/mpop.c:595
msgid "Support for command grouping for faster transmission"
msgstr ""
#: src/mpop.c:600
msgid "Support for the TOP command (get mail headers)"
msgstr ""
#: src/mpop.c:605
msgid "Support for the UIDL command (get unique mail identifiers)"
msgstr ""
#: src/mpop.c:612
#, c-format
msgid "minimum time between logins is %ld seconds"
msgstr ""
#: src/mpop.c:616
#, c-format
msgid " = %.2f hours"
msgstr ""
#: src/mpop.c:621
#, c-format
msgid " = %.2f minutes"
msgstr ""
#: src/mpop.c:632
msgid "this POP3 server will never delete mails"
msgstr ""
#: src/mpop.c:637
msgid "this POP3 server will not keep mails"
msgstr ""
#: src/mpop.c:642
#, c-format
msgid "this POP3 server will keep mails for %ld days"
msgstr ""
#: src/mpop.c:655
msgid "Support for TLS encryption via the STLS command"
msgstr ""
#: src/mpop.c:658
msgid "Supported authentication methods:"
msgstr ""
#: src/mpop.c:699 src/mpop.c:705
msgid "Server error messages in square brackets have a special meaning"
msgstr ""
#: src/mpop.c:714
#, c-format
msgid ""
"This server might advertise more or other capabilities\n"
" when TLS is active.\n"
msgstr ""
#: src/mpop.c:719
#, c-format
msgid ""
"This server might advertise more or other capabilities\n"
" after successful authentication.\n"
msgstr ""
#: src/mpop.c:724
#, c-format
msgid ""
"This server does not support the CAPA command, so this\n"
" list is probably not complete.\n"
msgstr ""
#: src/mpop.c:757
#, c-format
msgid "%.2f GB"
msgstr ""
#: src/mpop.c:761
#, c-format
msgid "%.2f MB"
msgstr ""
#: src/mpop.c:765
#, c-format
msgid "%.2f KB"
msgstr ""
#: src/mpop.c:769
#, c-format
msgid "%ld bytes"
msgstr ""
#: src/mpop.c:773
msgid "1 byte"
msgstr ""
#: src/mpop.c:790
#, c-format
msgid "skipping message %ld of %ld (reason: filter + keep)\n"
msgstr ""
#: src/mpop.c:795
#, c-format
msgid "deleting message %ld of %ld (reason: filter)\n"
msgstr ""
#: src/mpop.c:801
#, c-format
msgid "skipping message %ld of %ld (reason: filter)\n"
msgstr ""
#: src/mpop.c:808
#, c-format
msgid "retrieving message %ld of %ld (%s): "
msgstr ""
#: src/mpop.c:1042 src/mpop.c:1241 src/mpop.c:1288 src/net.c:85 src/net.c:392
#: src/net.c:477 src/net.c:570 src/net.c:678 src/net.c:798 src/pop3.c:1081
#: src/pop3.c:1764 src/tls.c:1158 src/tls.c:1217 src/tls.c:1280 src/tls.c:1319
#: src/tls.c:1400 src/tls.c:1446
msgid "operation aborted"
msgstr ""
#: src/mpop.c:1136
#, c-format
msgid "%s at %s:\n"
msgstr ""
#: src/mpop.c:1139
#, c-format
msgid "new: "
msgstr ""
#: src/mpop.c:1142 src/mpop.c:1163
#, c-format
msgid "no messages"
msgstr ""
#: src/mpop.c:1146 src/mpop.c:1167
#, c-format
msgid "1 message"
msgstr ""
#: src/mpop.c:1150 src/mpop.c:1171
#, c-format
msgid "%ld messages"
msgstr ""
#: src/mpop.c:1155 src/mpop.c:1176
#, c-format
msgid " in %s"
msgstr ""
#: src/mpop.c:1159
#, c-format
msgid "total: "
msgstr ""
#: src/mpop.c:1208
#, c-format
msgid "skipping message %ld of %ld (reason: killsize + keep)\n"
msgstr ""
#: src/mpop.c:1214
#, c-format
msgid "deleting message %ld of %ld (reason: killsize)\n"
msgstr ""
#: src/mpop.c:1225
#, c-format
msgid "skipping message %ld of %ld (reason: skipsize)\n"
msgstr ""
#: src/mpop.c:1252
msgid "the POP3 server does not support the TOP command needed for filtering"
msgstr ""
#: src/mpop.c:1414
#, c-format
msgid "%s: no accounts defined"
msgstr ""
#: src/mpop.c:1432 src/mpop.c:1443
#, c-format
msgid "%s: no account %s"
msgstr ""
#: src/mpop.c:1734 src/mpop.c:1751 src/mpop.c:1770 src/mpop.c:1790
#: src/mpop.c:1815 src/mpop.c:1833 src/mpop.c:1872 src/mpop.c:1890
#: src/mpop.c:1908 src/mpop.c:1926 src/mpop.c:1942 src/mpop.c:1959
#: src/mpop.c:1995
#, c-format
msgid "invalid argument %s for %s"
msgstr ""
#: src/mpop.c:2025
#, c-format
msgid "%s version %s\n"
msgstr ""
#: src/mpop.c:2027
#, c-format
msgid "TLS/SSL library: %s\n"
msgstr ""
#: src/mpop.c:2033
msgid "none"
msgstr ""
#: src/mpop.c:2037
#, c-format
msgid ""
"Authentication library: %s\n"
"Supported authentication methods:\n"
msgstr ""
#: src/mpop.c:2040
msgid "GNU SASL; user and apop: built-in"
msgstr ""
#: src/mpop.c:2042
msgid "built-in"
msgstr ""
#: src/mpop.c:2083
#, c-format
msgid "IDN support: "
msgstr ""
#: src/mpop.c:2085 src/mpop.c:2093
#, c-format
msgid "enabled"
msgstr ""
#: src/mpop.c:2087 src/mpop.c:2096
#, c-format
msgid "disabled"
msgstr ""
#: src/mpop.c:2091
#, c-format
msgid "NLS: "
msgstr ""
#: src/mpop.c:2094
#, c-format
msgid ", LOCALEDIR is %s"
msgstr ""
#: src/mpop.c:2099
#, c-format
msgid ""
"Copyright (C) 2006 Martin Lambers and others.\n"
"This is free software. You may redistribute copies of it under the terms "
"of\n"
"the GNU General Public License <http://www.gnu.org/licenses/gpl.html>.\n"
"There is NO WARRANTY, to the extent permitted by law.\n"
msgstr ""
#: src/mpop.c:2108
#, c-format
msgid ""
"USAGE:\n"
"\n"
"Mail retrieval mode (default):\n"
" %s [option...] [--] account...\n"
" %s --host=host [option...]\n"
" Read mails from one ore more POP3 accounts and deliver them.\n"
"Server information mode:\n"
" %s [option...] --serverinfo account...\n"
" %s --host=host [option...] --serverinfo\n"
" Print information about one or more POP3 servers.\n"
"\n"
"OPTIONS:\n"
"\n"
"General options:\n"
" --version Print version.\n"
" --help Print help.\n"
" -P, --pretend Print configuration info and exit.\n"
" -d, --debug Print debugging information.\n"
"Changing the mode of operation:\n"
" -S, --serverinfo Print information about the POP3 server.\n"
"Configuration options:\n"
" -C, --file=filename Set configuration file.\n"
" --host=hostname Set POP3 server, use only command line "
"settings;\n"
" do not use any configuration file data.\n"
" --port=number Set port number.\n"
" --timeout=(off|seconds) Set/unset network timeout in seconds.\n"
" --pipelining=(on|off) Enable/disable POP3 pipelining for old "
"servers.\n"
" --auth[=(on|method)] Choose the authentication method.\n"
" --user=[username] Set/unset user name for authentication.\n"
" --tls[=(on|off)] Enable/disable TLS encryption.\n"
" --tls-starttls[=(on|off)] Enable/disable STLS for TLS.\n"
" --tls-trust-file=[file] Set/unset trust file for TLS.\n"
" --tls-key-file=[file] Set/unset private key file for TLS.\n"
" --tls-cert-file=[file] Set/unset private cert file for TLS.\n"
" --tls-certcheck[=(on|off)] Enable/disable server certificate checks for "
"TLS.\n"
" --tls-force-sslv3[=(on|off)] Enable/disable restriction to SSLv3.\n"
"Options specific to mail retrieval mode:\n"
" -q, --quiet Do not display progress information.\n"
" -a, --all-accounts Query all accounts in the configuration "
"file.\n"
" -A, --auth-only Authenticate only; do not retrieve mail.\n"
" -s, --status-only Print account status only; do not retrieve "
"mail.\n"
" -n, --only-new[=(on|off)] Process only new messages\n"
" -k, --keep[=(on|off)] Do not delete mails from POP3 servers.\n"
" --killsize=(off|number) Set/unset kill size.\n"
" --skipsize=(off|number) Set/unset skip size.\n"
" --filter=[program] Set/unset header filter.\n"
" --delivery=method,arg Set the mail delivery method.\n"
" --uidls-file=filename Set file to store UIDLs.\n"
"\n"
"Report bugs to <%s>.\n"
msgstr ""
#: src/mpop.c:2187
msgid "cannot use both --host and accounts"
msgstr ""
#: src/mpop.c:2193
msgid "cannot use both --all-accounts and a list of accounts"
msgstr ""
#: src/mpop.c:2273
#, c-format
msgid "account %s from %s: %s"
msgstr ""
#: src/mpop.c:2291
#, c-format
msgid "cannot create directories for %s: %s"
msgstr ""
#: src/mpop.c:2294
msgid "a component already exists but is not a directory"
msgstr ""
#: src/mpop.c:2311
#, c-format
msgid "using account %s from %s\n"
msgstr ""
#: src/mpop.c:2321 src/mpop.c:2393 src/mpop.c:2402
#, c-format
msgid "off\n"
msgstr ""
#: src/mpop.c:2327
#, c-format
msgid "1 second\n"
msgstr ""
#: src/mpop.c:2331
#, c-format
msgid "%d seconds\n"
msgstr ""
#: src/mpop.c:2336 src/mpop.c:2358 src/mpop.c:2359 src/mpop.c:2366
#: src/mpop.c:2367 src/mpop.c:2388 src/mpop.c:2389
msgid "on"
msgstr ""
#: src/mpop.c:2336 src/mpop.c:2358 src/mpop.c:2359 src/mpop.c:2366
#: src/mpop.c:2367 src/mpop.c:2388 src/mpop.c:2389
msgid "off"
msgstr ""
#: src/mpop.c:2339
#, c-format
msgid "choose\n"
msgstr ""
#: src/mpop.c:2355 src/mpop.c:2356 src/mpop.c:2357 src/mpop.c:2361
#: src/mpop.c:2363 src/mpop.c:2365 src/mpop.c:2409
msgid "(not set)"
msgstr ""
#: src/mpop.c:2428
#, c-format
msgid "support for authentication method %s is not compiled in"
msgstr ""
#: src/mpop.c:2440
#, c-format
msgid "cannot initialize TLS library: %s"
msgstr ""
#: src/mpop.c:2448
msgid "support for TLS is not compiled in"
msgstr ""
#: src/mpop.c:2456
#, c-format
msgid "cannot initialize network library: %s"
msgstr ""
#: src/mpop.c:2484 src/mpop.c:2522
#, c-format
msgid "POP3 server message: %s"
msgstr ""
#: src/mpop.c:2529
#, c-format
msgid "error during mail retrieval (account %s from %s)"
msgstr ""
#: src/mpop.c:2535
msgid "error during mail retrieval"
msgstr ""
#: src/net.c:82
msgid "not enough memory"
msgstr ""
#: src/net.c:88
msgid "invalid argument"
msgstr ""
#: src/net.c:91
msgid "class type not found"
msgstr ""
#: src/net.c:94
msgid "the network subsystem has failed"
msgstr ""
#: src/net.c:97
msgid "host not found (authoritative)"
msgstr ""
#: src/net.c:100
msgid "host not found (nonauthoritative) or server failure"
msgstr ""
#: src/net.c:103
msgid "nonrecoverable error"
msgstr ""
#: src/net.c:106
msgid "valid name, but no data record of requested type"
msgstr ""
#: src/net.c:109
msgid "address family not supported"
msgstr ""
#: src/net.c:112
msgid "no socket descriptors available"
msgstr ""
#: src/net.c:115
msgid "no buffer space available"
msgstr ""
#: src/net.c:118
msgid "protocol not supported"
msgstr ""
#: src/net.c:121
msgid "wrong protocol type for this socket"
msgstr ""
#: src/net.c:124
msgid "socket type is not supported in this address family"
msgstr ""
#: src/net.c:127
msgid "remote address is not valid"
msgstr ""
#: src/net.c:130
msgid "connection refused"
msgstr ""
#: src/net.c:133
msgid "network unreachable"
msgstr ""
#: src/net.c:136
msgid "timeout"
msgstr ""
#: src/net.c:139
msgid "socket not connected"
msgstr ""
#: src/net.c:142
msgid "the socket was shut down"
msgstr ""
#: src/net.c:145
msgid "host unreachable"
msgstr ""
#: src/net.c:148
msgid "connection reset by peer"
msgstr ""
#: src/net.c:151
msgid "the underlying network subsystem is not ready"
msgstr ""
#: src/net.c:154
msgid "the requested version is not available"
msgstr ""
#: src/net.c:157
msgid "a blocking operation is in progress"
msgstr ""
#: src/net.c:160
msgid "limit on the number of tasks has been reached"
msgstr ""
#: src/net.c:163
msgid "invalid request"
msgstr ""
#: src/net.c:166 src/tls.c:1109 src/tls.c:1133 src/tls.c:1423
msgid "unknown error"
msgstr ""
#: src/net.c:387 src/net.c:396 src/net.c:535
#, c-format
msgid "cannot locate host %s: %s"
msgstr ""
#: src/net.c:460 src/net.c:547
#, c-format
msgid "cannot create socket: %s"
msgstr ""
#: src/net.c:472 src/net.c:481 src/net.c:565 src/net.c:574
#, c-format
msgid "cannot connect to %s, port %d: %s"
msgstr ""
#: src/net.c:649 src/net.c:654 src/net.c:682 src/net.c:687
#, c-format
msgid "network read error: %s"
msgstr ""
#: src/net.c:650 src/net.c:683 src/net.c:767 src/net.c:803 src/tls.c:1128
#: src/tls.c:1165 src/tls.c:1287 src/tls.c:1407
msgid "the operation timed out"
msgstr ""
#: src/net.c:766 src/net.c:771 src/net.c:802 src/net.c:807
#, c-format
msgid "network write error: %s"
msgstr ""
#: src/net.c:782 src/net.c:818
msgid "network write error"
msgstr ""
#: src/pop3.c:311
msgid "POP3 server sent an empty reply"
msgstr ""
#: src/pop3.c:315
msgid "POP3 server sent an invalid reply"
msgstr ""
#: src/pop3.c:370
#, c-format
msgid ""
"Cannot send POP3 command because it is longer than %d characters. Increase "
"POP3_BUFSIZE."
msgstr ""
#: src/pop3.c:424
msgid "cannot get initial OK message from POP3 server"
msgstr ""
#: src/pop3.c:477 src/pop3.c:616 src/pop3.c:732 src/pop3.c:740 src/pop3.c:913
#: src/pop3.c:1021
#, c-format
msgid "invalid reply to command %s"
msgstr ""
#: src/pop3.c:677 src/pop3.c:724 src/pop3.c:848 src/pop3.c:953 src/pop3.c:2328
#: src/pop3.c:2414 src/pop3.c:2500 src/pop3.c:3074 src/pop3.c:3102
#, c-format
msgid "command %s failed"
msgstr ""
#: src/pop3.c:747
#, c-format
msgid "Cannot handle more than %lu messages. Increase POP3_MAX_MESSAGES."
msgstr ""
#: src/pop3.c:1191
msgid "cannot write mail: output error"
msgstr ""
#: src/pop3.c:1547
msgid "cannot write to temporary file: output error"
msgstr ""
#: src/pop3.c:1680
#, c-format
msgid "cannot add Received header: %s"
msgstr ""
#: src/pop3.c:1781
#, c-format
msgid "command TOP %ld 0 failed"
msgstr ""
#: src/pop3.c:1786
#, c-format
msgid "command RETR %ld failed"
msgstr ""
#: src/pop3.c:1797
#, c-format
msgid "cannot create temporary file: %s"
msgstr ""
#: src/pop3.c:1809
#, c-format
msgid "cannot rewind temporary file: %s"
msgstr ""
#: src/pop3.c:2069
#, c-format
msgid "command DELE %ld failed"
msgstr ""
#: src/pop3.c:2139 src/pop3.c:2151 src/pop3.c:2174 src/pop3.c:2189
#: src/pop3.c:2238 src/pop3.c:2289 src/pop3.c:2348 src/pop3.c:2368
#: src/pop3.c:2461 src/pop3.c:2520 src/pop3.c:2854 src/pop3.c:2889
#: src/pop3.c:2923
#, c-format
msgid "authentication failed (method %s)"
msgstr ""
#: src/pop3.c:2424
msgid "authentication method CRAM-MD5: server sent invalid challenge"
msgstr ""
#: src/pop3.c:2634 src/pop3.c:2940
#, c-format
msgid "POP3 server does not support authentication method %s"
msgstr ""
#: src/pop3.c:2640 src/pop3.c:2766 src/pop3.c:2809
#, c-format
msgid "GNU SASL: %s"
msgstr ""
#: src/pop3.c:2647
#, c-format
msgid "GNU SASL: authentication method %s not supported"
msgstr ""
#: src/pop3.c:2706 src/pop3.c:2979
msgid "cannot use a secure authentication method"
msgstr ""
#: src/pop3.c:2712 src/pop3.c:2985
msgid "cannot find a usable authentication method"
msgstr ""
#: src/pop3.c:2726 src/pop3.c:2998
#, c-format
msgid "authentication method %s needs a user name"
msgstr ""
#: src/pop3.c:2739 src/pop3.c:3008
#, c-format
msgid "authentication method %s needs a password"
msgstr ""
#: src/pop3.c:2902
#, c-format
msgid "authentication failed: %s (method %s)"
msgstr ""
#: src/pop3.c:3042
#, c-format
msgid "authentication method %s not supported"
msgstr ""
#: src/tls.c:98
msgid ""
"no environment variables RANDFILE or HOME, or filename of rand file too long"
msgstr ""
#: src/tls.c:104 src/uidls.c:324
#, c-format
msgid "%s: input error"
msgstr ""
#: src/tls.c:131
msgid "random file + time + pseudo randomness is not enough, giving up"
msgstr ""
#: src/tls.c:372 src/tls.c:486
msgid "cannot get TLS certificate info"
msgstr ""
#: src/tls.c:377 src/tls.c:489 src/tls.c:713
#, c-format
msgid "%s: no certificate was found"
msgstr ""
#: src/tls.c:382 src/tls.c:731
#, c-format
msgid "%s: cannot initialize certificate structure"
msgstr ""
#: src/tls.c:388
#, c-format
msgid "%s: error parsing certificate"
msgstr ""
#: src/tls.c:398 src/tls.c:509
#, c-format
msgid "%s: error getting SHA1 fingerprint"
msgstr ""
#: src/tls.c:406 src/tls.c:515
#, c-format
msgid "%s: error getting MD5 fingerprint"
msgstr ""
#: src/tls.c:412 src/tls.c:523
#, c-format
msgid "%s: cannot get activation time"
msgstr ""
#: src/tls.c:418 src/tls.c:533
#, c-format
msgid "%s: cannot get expiration time"
msgstr ""
#: src/tls.c:494 src/tls.c:885
#, c-format
msgid "%s: cannot get certificate subject"
msgstr ""
#: src/tls.c:500
#, c-format
msgid "%s: cannot get certificate issuer"
msgstr ""
#: src/tls.c:664 src/tls.c:821
msgid "TLS certificate verification failed"
msgstr ""
#: src/tls.c:668 src/tls.c:825
msgid "TLS certificate check failed"
msgstr ""
#: src/tls.c:687
#, c-format
msgid "%s: the certificate hasn't got a known issuer"
msgstr ""
#: src/tls.c:693
#, c-format
msgid "%s: the certificate is not trusted"
msgstr ""
#: src/tls.c:700
#, c-format
msgid "%s: the certificate has been revoked"
msgstr ""
#: src/tls.c:706
#, c-format
msgid "%s: the certificate type is not X509"
msgstr ""
#: src/tls.c:738
#, c-format
msgid "%s: error parsing certificate %u of %u"
msgstr ""
#: src/tls.c:750 src/tls.c:761 src/tls.c:912
#, c-format
msgid "%s: the certificate owner does not match hostname %s"
msgstr ""
#: src/tls.c:769
#, c-format
msgid "%s: cannot get activation time for certificate %u of %u"
msgstr ""
#: src/tls.c:777
#, c-format
msgid "%s: certificate %u of %u is not yet activated"
msgstr ""
#: src/tls.c:783
#, c-format
msgid "%s: cannot get expiration time for certificate %u of %u"
msgstr ""
#: src/tls.c:790
#, c-format
msgid "%s: certificate %u of %u has expired"
msgstr ""
#: src/tls.c:831
#, c-format
msgid "%s: no certificate was sent"
msgstr ""
#: src/tls.c:897
#, c-format
msgid "%s: cannot get certificate common name"
msgstr ""
#: src/tls.c:936
#, c-format
msgid "cannot initialize TLS Session: %s"
msgstr ""
#: src/tls.c:942
#, c-format
msgid "cannot set priorities on TLS Session: %s"
msgstr ""
#: src/tls.c:953
#, c-format
msgid "cannot force SSLv3: %s"
msgstr ""
#: src/tls.c:962
#, c-format
msgid "cannot allocate certificate for TLS Session: %s"
msgstr ""
#: src/tls.c:972
#, c-format
msgid ""
"cannot set X509 key file %s and/or X509 cert file %s for TLS Session: %s"
msgstr ""
#: src/tls.c:986
#, c-format
msgid "cannot set X509 trust file %s for TLS Session: %s"
msgstr ""
#: src/tls.c:997
#, c-format
msgid "cannot set credentials for TLS Session: %s"
msgstr ""
#: src/tls.c:1014
msgid "cannot set TLS method"
msgstr ""
#: src/tls.c:1019
#, c-format
msgid "cannot create TLS context: %s"
msgstr ""
#: src/tls.c:1030
#, c-format
msgid "cannot load key file %s: %s"
msgstr ""
#: src/tls.c:1038
#, c-format
msgid "cannot load certificate file %s: %s"
msgstr ""
#: src/tls.c:1049
#, c-format
msgid "cannot load trust file %s: %s"
msgstr ""
#: src/tls.c:1059
#, c-format
msgid "cannot create a TLS structure: %s"
msgstr ""
#: src/tls.c:1101
msgid "a protocol violating EOF occured"
msgstr ""
#: src/tls.c:1119
msgid "the connection was closed unexpectedly"
msgstr ""
#: src/tls.c:1164 src/tls.c:1169
#, c-format
msgid "TLS handshake failed: %s"
msgstr ""
#: src/tls.c:1204
#, c-format
msgid "cannot set the file descriptor for TLS: %s"
msgstr ""
#: src/tls.c:1223
msgid "TLS handshake failed"
msgstr ""
#: src/tls.c:1286 src/tls.c:1291
#, c-format
msgid "cannot read from TLS connection: %s"
msgstr ""
#: src/tls.c:1324
msgid "cannot read from TLS connection"
msgstr ""
#: src/tls.c:1406 src/tls.c:1411 src/tls.c:1422
#, c-format
msgid "cannot write to TLS connection: %s"
msgstr ""
#: src/tls.c:1452
msgid "cannot write to TLS connection"
msgstr ""
#: src/uidls.c:207
#, c-format
msgid "%s, line %ld: line longer than %d characters"
msgstr ""
#: src/uidls.c:223
#, c-format
msgid "%s, line %ld: UID without a list"
msgstr ""
#: src/uidls.c:234
#, c-format
msgid "%s, line %ld: invalid number of UIDs"
msgstr ""
#: src/uidls.c:249
#, c-format
msgid "%s, line %ld: invalid or missing host name"
msgstr ""
#: src/uidls.c:261
#, c-format
msgid "%s, line %ld: invalid or missing user name"
msgstr ""
#: src/uidls.c:275 src/uidls.c:309
#, c-format
msgid "%s, line %ld: too few UIDs for user %s, host %s"
msgstr ""
|