aboutsummaryrefslogtreecommitdiffstats
path: root/env.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2004-06-18 19:51:39 +0000
committerMatthias Andree <matthias.andree@gmx.de>2004-06-18 19:51:39 +0000
commit3c25e877da7ba4a11e0c9bd5f65f8857cb8f272b (patch)
treee629f2ba436ab8a1062638eb1e3176696abfd1f6 /env.c
parent8f3f473c829e8691ef5566d73f3f130b492e36ba (diff)
downloadfetchmail-3c25e877da7ba4a11e0c9bd5f65f8857cb8f272b.tar.gz
fetchmail-3c25e877da7ba4a11e0c9bd5f65f8857cb8f272b.tar.bz2
fetchmail-3c25e877da7ba4a11e0c9bd5f65f8857cb8f272b.zip
Fix various compiler warnings.
svn path=/trunk/; revision=3899
Diffstat (limited to 'env.c')
-rw-r--r--env.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/env.c b/env.c
index d578f0c6..6b6a7d07 100644
--- a/env.c
+++ b/env.c
@@ -30,7 +30,7 @@
#include <locale.h>
#endif
-extern char *getenv(); /* needed on sysV68 R3V7.1. */
+extern char *getenv(const char *); /* needed on sysV68 R3V7.1. */
extern char *program_name;
#n149'>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 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729
# Greek Translation of Fetchmail.
# Copyright (C) 2003 Free Software Foundation, Inc.
# Dokianakis Theofanis <madf@hellug.gr>, 2003.
#
msgid ""
msgstr ""
"Project-Id-Version: fetchmail 6.2.2\n"
"POT-Creation-Date: 2003-03-01 00:18-0500\n"
"PO-Revision-Date: 2003-05-06 01:03+0300\n"
"Last-Translator: Dokianakis Theofanis <madf@hellug.gr>\n"
"Language-Team: Greek <nls@tux.hellug.gr>\n"
"X-Bugs: Report translation errors to the Language-Team address.\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-7\n"
"Content-Transfer-Encoding: 8bit\n"

#: checkalias.c:171
#, c-format
msgid "Checking if %s is really the same node as %s\n"
msgstr "������� ��� �� %s ����� �������� � ����� ������ �� ��� %s\n"

#: checkalias.c:175
msgid "Yes, their IP addresses match\n"
msgstr "���, �� IP ����������� ���� ����������\n"

#: checkalias.c:179
msgid "No, their IP addresses don't match\n"
msgstr "���, �� IP ����������� ���� ��� ����������\n"

#: checkalias.c:199 checkalias.c:225
#, c-format
msgid "nameserver failure while looking for `%s' during poll of %s.\n"
msgstr ""
"� ��������� ��� `%s' ������� (������ ����������� ��������), ���� ���\n"
"����������� �������������  ��� �� %s.\n"

#: cram.c:95
msgid "could not decode BASE64 challenge\n"
msgstr "�������� ���������������� ��� BASE64 ���������\n"

#: cram.c:103
#, c-format
msgid "decoded as %s\n"
msgstr "����������������� ��� %s\n"

#: driver.c:188
#, c-format
msgid "kerberos error %s\n"
msgstr "������ kerberos %s\n"

#: driver.c:247 driver.c:252
#, c-format
msgid "krb5_sendauth: %s [server says '%*s'] \n"
msgstr "krb5_sendauth: %s [� ������������ ���� '%*s'] \n"

#: driver.c:333
#, c-format
msgid ""
"Subject: Fetchmail oversized-messages warning.\n"
"\n"
"The following oversized messages remain on the mail server %s:"
msgstr ""
"Subject: ������������� fetchmail ������������-���������.\n"
"\n"
"�� �������� ����������� �������� �������� ���������� ��� ����������� %s:"

#: driver.c:351
#, c-format
msgid "\t%d msg %d octets long skipped by fetchmail.\n"
msgstr "\t%d ��� %d ������ octet ������������ ��� �� fetchmail.\n"

#: driver.c:444
#, c-format
msgid "skipping message %s@%s:%d (%d octets)"
msgstr "�������� ��������� %s@%s:%d (%d octets)"

#.
#. * Invalid lengths are produced by Post Office/NT's
#. * annoying habit of randomly prepending bogus
#. * LIST items of length -1.  Patrick Audley
#. * <paudley@pobox.com> tells us: LIST shows a
#. * size of -1, RETR and TOP return "-ERR
#. * System error - couldn't open message", and
#. * DELE succeeds but doesn't actually delete
#. * the message.
#.
#: driver.c:460
msgid " (length -1)"
msgstr " (����� -1)"

#: driver.c:463
msgid " (oversized)"
msgstr " (���������� �������)"

#: driver.c:477
#, c-format
msgid "couldn't fetch headers, message %s@%s:%d (%d octets)\n"
msgstr "�������� ����� ������������, ������ %s@%s:%d (%d octets)\n"

#: driver.c:494
#, c-format
msgid "reading message %s@%s:%d of %d"
msgstr "�������� ��������� %s@%s:%d ��� %d"

#: driver.c:499
#, c-format
msgid " (%d %soctets)"
msgstr " (%d %soctets)"

#: driver.c:500
msgid "header "
msgstr "������������ "

#: driver.c:576
#, c-format
msgid " (%d body octets) "
msgstr " (%d octets �������) "

#: driver.c:644
#, c-format
msgid "message %s@%s:%d was not the expected length (%d actual != %d expected)\n"
msgstr "�� ������ %s@%s:%d ��� ���� �� ����������� �����(%d ���������� !=%d �����������)\n"

#: driver.c:674
msgid " retained\n"
msgstr "������������\n"

#: driver.c:682
msgid " flushed\n"
msgstr "�����������\n"

#: driver.c:699
msgid " not flushed\n"
msgstr "��� �����������\n"

#: driver.c:715
#, c-format
msgid "fetchlimit %d reached; %d messages left on server %s account %s\n"
msgstr "�� ���� ����� %d; %d �������� ������� ���� ����������� %s ����������%s\n"

#: driver.c:775
msgid "SIGPIPE thrown from an MDA or a stream socket error\n"
msgstr "��� SIGPIPE ��������� ��� ��� MDA � ��� ������ stream socket\n"

#: driver.c:782
#, c-format
msgid "timeout after %d seconds waiting to connect to server %s.\n"
msgstr "���� ������ ���� ��� %d ������� �������� ��� ������� ���� %s.\n"

#: driver.c:786
#, c-format
msgid "timeout after %d seconds waiting for server %s.\n"
msgstr "���� ������ ���� ��� %d ������� �������� ��� ��� ����������� %s.\n"

#: driver.c:790
#, c-format
msgid "timeout after %d seconds waiting for %s.\n"
msgstr "���� ������ ���� ��� %d ������� �������� ��� �� %s.\n"

#: driver.c:795
#, c-format
msgid "timeout after %d seconds waiting for listener to respond.\n"
msgstr "���� ������ ���� ��� %d ������� �������� ��� ��� �������� ��� �������.\n"

#: driver.c:798
#, c-format
msgid "timeout after %d seconds.\n"
msgstr "���� ������ ���� ��� %d �������.\n"

#: driver.c:810
msgid "Subject: fetchmail sees repeated timeouts\n"
msgstr "Subject: �� fetchmail ������ ����������������� ������ ����� ������\n"

#: driver.c:812
#, c-format
msgid "Fetchmail saw more than %d timeouts while attempting to get mail from %s@%s.\n"
msgstr "�� fetchmail ���� ����������� ��� %d ������ ����� ������ ���� ��� ���������� ��� �������� ������������� ��� �� %s@%s.\n"

#: driver.c:817
msgid ""
"This could mean that your mailserver is stuck, or that your SMTP\n"
"server is wedged, or that your mailbox file on the server has been\n"
"corrupted by a server error.  You can run `fetchmail -v -v' to\n"
"diagnose the problem.\n"
"\n"
"Fetchmail won't poll this mailbox again until you restart it.\n"
msgstr ""
"���� ������ �� �������� ��� � ������������ ������������� ��� ����\n"
"��������, � ��� � ������������ SMTP ��� ���� ��������, � �� ������\n"
"���������������� ��� ����������� ���� ����������� ��� ��� ������ ���.\n"
"�������� �� ���������� `fetchmail -v -v' ��� �� ���������� �� ��������\n"
"\n"
"�� fetchmail ��� �� ����������� ���� �� ��������������� ����� �� ��\n"
"��������������.\n"

#: driver.c:847
#, c-format
msgid "pre-connection command failed with status %d\n"
msgstr "� ������ ���-�������� ������� �� ��������� %d\n"

#: driver.c:878
#, c-format
msgid "couldn't find HESIOD pobox for %s\n"
msgstr "�������� ������� HESIOD ���. ������� ��� �� %s\n"

#: driver.c:900
msgid "Lead server has no name.\n"
msgstr "� ���������� ������������ ��� ���� �����.\n"

#: driver.c:923
#, c-format
msgid "couldn't find canonical DNS name of %s\n"
msgstr "�������� ������� ��������� �������� DNS ��� %s\n"

#: driver.c:960
msgid "internal inconsistency\n"
msgstr "��������� ���������\n"

#: driver.c:970
#, c-format
msgid "%s connection to %s failed"
msgstr "%s ������� ��� %s �������"

#: driver.c:976
msgid "host is unknown."
msgstr "�������� �����������."

#: driver.c:979
msgid "name is valid but has no IP address."
msgstr "�� ����� ����� ������ ���� ��� ���� ��������� IP."

#: driver.c:982
msgid "unrecoverable name server error."
msgstr "�� ���������� ������ ����������� ��������."

#: driver.c:984
msgid "temporary name server error."
msgstr "��������� ������ ����������� ��������."

#: driver.c:991
#, c-format
msgid "unknown DNS error %d."
msgstr "������� ������ DNS %d."

#: driver.c:1009
#, c-format
msgid ""
"Subject: Fetchmail unreachable-server warning.\n"
"\n"
"Fetchmail could not reach the mail server %s:"
msgstr ""
"Subject: ������������� �������������-���������� ��� fetchmail.\n"
"\n"
"�� fetchmail �������� �� ����������� �� ���������� ������������� %s:"

#: driver.c:1038 imap.c:384 pop3.c:292
msgid "SSL connection failed.\n"
msgstr "� ������� SSL �������.\n"

#: driver.c:1090
#, c-format
msgid "Lock-busy error on %s@%s\n"
msgstr "������ lock-busy ���� %s@%s\n"

#: driver.c:1094
#, c-format
msgid "Server busy error on %s@%s\n"
msgstr "������ busy ���������� ���� %s@%s\n"

#: driver.c:1099
#, c-format
msgid "Authorization failure on %s@%s%s\n"
msgstr "�������� �������������� ���� %s@%s%s\n"

#: driver.c:1102
msgid " (previously authorized)"
msgstr " (������������ ���������������)"

#: driver.c:1123
#, c-format
msgid "Subject: fetchmail authentication failed on %s@%s\n"
msgstr "Subject: fetchmail �������� �������������� ��� %s@%s\n"

#: driver.c:1126
#, c-format
msgid "Fetchmail could not get mail from %s@%s.\n"
msgstr "�������� ��� fetchmail ����� ������������� ��� �� %s@%s.\n"

#: driver.c:1130
msgid ""
"The attempt to get authorization failed.\n"
"Since we have already succeeded in getting authorization for this\n"
"connection, this is probably another failure mode (such as busy server)\n"
"that fetchmail cannot distinguish because the server didn't send a useful\n"
"error message.\n"
"\n"
"However, if you HAVE changed your account details since starting the\n"
"fetchmail daemon, you need to stop the daemon, change your configuration\n"
"of fetchmail, and then restart the daemon.\n"
"\n"
"The fetchmail daemon will continue running and attempt to connect\n"
"at each cycle.  No future notifications will be sent until service\n"
"is restored."
msgstr ""
"������� � ���������� ����� ��������������.\n"
"���� ��� ���� �������� ������ ������������� ��� ���� �� �������, ����\n"
"�������� ��� ��� ����� ��������� ��������� (���� ������������� �����������)\n"
"��� �� fetchmail �������� �� ��������� ������ � ������������ ��� �������\n"
"��� ������� ������ ���������.\n"
"\n"
"����, ��� ����� ������� ��� ������������ ��� ����������� ��� ��� ���� ���\n"
"���������� �� ������� fetchmail, ������ �� ��� �����������, �� �������� ���\n"
"��������� ��� fetchmail, ��� �� �� ��������������.\n"
"\n"
"� �������� fetchmail �� ��������� �� ������ ��� �� ��������� �� ��������\n"
"�� ���� �����. �� �� �������� ����������� ������������ ����� �� \n"
"������������� � ��������."

#: driver.c:1145
msgid ""
"The attempt to get authorization failed.\n"
"This probably means your password is invalid, but some servers have\n"
"other failure modes that fetchmail cannot distinguish from this\n"
"because they don't send useful error messages on login failure.\n"
"\n"
"The fetchmail daemon will continue running and attempt to connect\n"
"at each cycle.  No future notifications will be sent until service\n"
"is restored."
msgstr ""
"������� � ���������� ����� ��������������.\n"
"���� ���� �������� ��� � ���� ������ ����� �����, ���� ������� ������������\n"
"����� ����� ����������� ��������� ��� �� fetchmail ��� ������ �� ���������\n"
"��� ���� ����� �� �������� ������� �������� ��������� �� �������� �������.\n"
"\n"
"� �������� fetchmail �� ��������� �� ������ ��� �� ��������� �� ��������\n"
"�� ���� �����. �� �� �������� ����������� ������������ ����� ��\n"
"������������� � ��������."

#: driver.c:1160
#, c-format
msgid "Repoll immediately on %s@%s\n"
msgstr "����������� ������ ��� %s@%s\n"

#: driver.c:1165
#, c-format
msgid "Unknown login or authentication error on %s@%s\n"
msgstr "������� ������ ������� � �������������� ��� %s@%s\n"

#: driver.c:1189
#, c-format
msgid "Authorization OK on %s@%s\n"
msgstr "������������� ������ ���� %s@%s\n"

#: driver.c:1195
#, c-format
msgid "Subject: fetchmail authentication OK on %s@%s\n"
msgstr "Subject: ������������� ��� fetchmail ������ ��� %s@%s\n"

#: driver.c:1198
#, c-format
msgid "Fetchmail was able to log into %s@%s.\n"
msgstr "�������� ������� ��� fetchmail ��� %s@%s.\n"

#: driver.c:1202
msgid "Service has been restored.\n"
msgstr "� �������� ��������������.\n"

#: driver.c:1233
#, c-format
msgid "selecting or re-polling folder %s\n"
msgstr "������� � �����-����������� ������� %s\n"

#: driver.c:1235
msgid "selecting or re-polling default folder\n"
msgstr "������� � �����-����������� ��'������� �������\n"

#: driver.c:1251
#, c-format
msgid "%s at %s (folder %s)"
msgstr "%s ���  %s (������� %s)"

#: driver.c:1259 rcfile_y.y:395
#, c-format
msgid "%s at %s"
msgstr "%s ���  %s"

#. only used for ETRN
#: driver.c:1264
#, c-format
msgid "Polling %s\n"
msgstr "����������� ��� %s\n"

#: driver.c:1268
#, c-format
msgid "%d %s (%d seen) for %s"
msgstr "%d %s (���� %d) ��� �� %s"

#: driver.c:1269 driver.c:1274
msgid "messages"
msgstr "��������"

#: driver.c:1270 driver.c:1275
msgid "message"
msgstr "������"

#: driver.c:1273
#, c-format
msgid "%d %s for %s"
msgstr "%d %s ��� �� %s"

#: driver.c:1279
#, c-format
msgid " (%d octets).\n"
msgstr " (%d octets).\n"

#: driver.c:1285
#, c-format
msgid "No mail for %s\n"
msgstr "��� ������� ������������ ��� �� %s\n"

#: driver.c:1348
msgid "bogus message count!"
msgstr "��������� ������� ���������!"

#: driver.c:1462
msgid "socket"
msgstr "socket"

#: driver.c:1465
msgid "missing or bad RFC822 header"
msgstr "������ � ����� ����������� RFC822"

#: driver.c:1468
msgid "MDA"
msgstr "MDA"

#: driver.c:1471
msgid "client/server synchronization"
msgstr "������������ ������/�����������"

#: driver.c:1474
msgid "client/server protocol"
msgstr "��������� ������/�����������"

#: driver.c:1477
msgid "lock busy on server"
msgstr "������������ �������� ��� �����������"

#: driver.c:1480
msgid "SMTP transaction"
msgstr "��������� SMTP"

#: driver.c:1483
msgid "DNS lookup"
msgstr "��������� DNS"

#: driver.c:1486
msgid "undefined error\n"
msgstr "�� �������� ������\n"

#: driver.c:1497
#, c-format
msgid "%s error while delivering to SMTP host %s\n"
msgstr "%s ������ ���� ��� �������� ��� ���������� SMTP %s\n"

#: driver.c:1499
#, c-format
msgid "%s error while fetching from %s\n"
msgstr "%s ������ ���� ��� ���� ��� �� %s\n"

#: driver.c:1507
#, c-format
msgid "post-connection command failed with status %d\n"
msgstr "� ������ ���-�������� ������� �� ��������� %d\n"

#: driver.c:1528
msgid "Kerberos V4 support not linked.\n"
msgstr "� ���������� ��� Kerberos V4 ��� ���� ��������.\n"

#: driver.c:1536
msgid "Kerberos V5 support not linked.\n"
msgstr "� ���������� ��� Kerberos V5 ��� ���� ��������.\n"

#: driver.c:1547
#, c-format
msgid "Option --flush is not supported with %s\n"
msgstr "� ������� --flush ��� ������������� �� �� %s\n"

#: driver.c:1553
#, c-format
msgid "Option --all is not supported with %s\n"
msgstr "� ������� --all ��� ������������� �� �� %s\n"

#: driver.c:1561
#, c-format
msgid "Option --limit is not supported with %s\n"
msgstr "� ������� --limit ��� ������������� �� �� %s\n"

#: env.c:60
#, c-format
msgid ""
"%s: The QMAILINJECT environment variable is set.\n"
"This is dangerous as it can make qmail-inject or qmail's sendmail wrapper\n"
"tamper with your From: or Message-ID: headers.\n"
"Try \"env QMAILINJECT= %s YOUR ARGUMENTS HERE\"\n"
"%s: Abort.\n"
msgstr ""
"%s: � ��������� ������������� QMAILINJECT ���� �������.\n"
"���� ����� ���������� ���� ������ �� ����� �� qmail-inject � �� sendmail\n"
"wrapper ��� qmail �� ��������� ��� ������������ From: � Message-ID:.\n"
"��������� \"env QMAILINJECT= %s �� �������� ��� ���\"\n"
"%s: �������.\n"

#: env.c:72
#, c-format
msgid ""
"%s: The NULLMAILER_FLAGS environment variable is set.\n"
"This is dangerous as it can make nullmailer-inject or nullmailer's\n"
"sendmail wrapper tamper with your From:, Message-ID: or Return-Path: headers.\n"
"Try \"env NULLMAILER_FLAGS= %s YOUR ARGUMENTS HERE\"\n"
"%s: Abort.\n"
msgstr ""
"%s: � ��������� ������������� NULLMAILER_FLAGS ���� �������.\n"
"���� ����� ���������� ���� ������ �� ����� �� nullmailer-inject � wrapper\n"
"��� sendmail ��� qmail �� ��������� ��� ������������ From:,Message-ID: �\n"
"Return-Path:.\n"
"��������� \"env NULLMAILER_FLAGS= %s �� �������� ��� ���\"\n"
"%s: �������.\n"

#: env.c:84
#, c-format
msgid "%s: You don't exist.  Go away.\n"
msgstr "%s: ��� ��������.  ������ ������.\n"

#: env.c:145
#, c-format
msgid "%s: can't determine your host!"
msgstr "%s: �������� ������������� ��� ���������� ���!"

#: env.c:161
#, c-format
msgid "gethostbyname failed for %s\n"
msgstr "� gethostbyname ������� ��� �� %s\n"

#: etrn.c:47 odmr.c:59
#, c-format
msgid "%s's SMTP listener does not support ESMTP\n"
msgstr "� SMTP �������� ��� %s ��� ����������� ESMTP\n"

#: etrn.c:53
#, c-format
msgid "%s's SMTP listener does not support ETRN\n"
msgstr "� SMTP �������� ��� %s ��� ����������� ETRN\n"

#: etrn.c:77
#, c-format
msgid "Queuing for %s started\n"
msgstr "�������� ����������� ��� �� %s\n"

#: etrn.c:82
#, c-format
msgid "No messages waiting for %s\n"
msgstr "��� ���������� �������� ��� �� %s\n"

#: etrn.c:88
#, c-format
msgid "Pending messages for %s started\n"
msgstr "�������� ��� ��������� �� �������� ��� ��������� ��� �� %s\n"

#. Unable to queue messages for node <x>
#: etrn.c:92
#, c-format
msgid "Unable to queue messages for node %s\n"
msgstr "�������� ����������� �� ����� ��� ��������� ��� �� ����� %s\n"

#. Node <x> not allowed: <reason>
#: etrn.c:96
#, c-format
msgid "Node %s not allowed: %s\n"
msgstr "� ������ %s ��� �����������: %s\n"

#. Syntax Error
#: etrn.c:100
msgid "ETRN syntax error\n"
msgstr "���������� ����� ETRN\n"

#. Syntax Error in Parameters
#: etrn.c:104
msgid "ETRN syntax error in parameters\n"
msgstr "���������� ����� ETRN ���� �����������\n"

#: etrn.c:108
#, c-format
msgid "Unknown ETRN error %d\n"
msgstr "������� ������ ETRN %d\n"

#: etrn.c:154
msgid "Option --keep is not supported with ETRN\n"
msgstr "� ������� --keep ��� ������������ �� �� ETRN\n"

#: etrn.c:158
msgid "Option --flush is not supported with ETRN\n"
msgstr "� ������� --flush ��� ������������ �� �� ETRN\n"

#: etrn.c:162
msgid "Option --remote is not supported with ETRN\n"
msgstr "� ������� --remote ��� ������������ �� �� ETRN\n"

#: etrn.c:166
msgid "Option --check is not supported with ETRN\n"
msgstr "� ������� --check ��� ������������ �� �� ETRN\n"

#: fetchmail.c:156
msgid "fetchmail: invoked with"
msgstr "fetchmail: ��������� ��"

#: fetchmail.c:180
msgid "could not get current working directory\n"
msgstr "�������� ����� ��� ��������� ������� �������� (cwd)\n"

#: fetchmail.c:190
#, c-format
msgid "This is fetchmail release %s"
msgstr "���� ����� �� fetchmail ������ %s"

#: fetchmail.c:331
#, c-format
msgid "Taking options from command line%s%s\n"
msgstr "���� ���������� ��� ��� ������ �������%s%s\n"

#: fetchmail.c:332
msgid " and "
msgstr " ��� "

#: fetchmail.c:337
#, c-format
msgid "No mailservers set up -- perhaps %s is missing?\n"
msgstr "��� ����� ������� ������������ ������������� -- ���� �� %s �� ������;\n"

#: fetchmail.c:358
msgid "fetchmail: no mailservers have been specified.\n"
msgstr "fetchmail: ��� ����� ������� ������������ �������������.\n"

#: fetchmail.c:367
msgid "fetchmail: no other fetchmail is running\n"
msgstr "fetchmail: ��� ������ ���� fetchmail\n"

#: fetchmail.c:373
#, c-format
msgid "fetchmail: error killing %s fetchmail at %d; bailing out.\n"
msgstr "fetchmail: ������ ��� �������� ��� %s fetchmail ��� %d; �����������.\n"

#: fetchmail.c:374 fetchmail.c:380
msgid "background"
msgstr "��������"

#: fetchmail.c:374 fetchmail.c:380
msgid "foreground"
msgstr "���������"

#: fetchmail.c:379
#, c-format
msgid "fetchmail: %s fetchmail at %d killed.\n"
msgstr "fetchmail: �� %s fetchmail ��� %d ������������.\n"

#: fetchmail.c:395
msgid "fetchmail: can't check mail while another fetchmail to same host is running.\n"
msgstr "fetchmail: �������� ������� ������������� ���� ��� ���� fetchmail ��������� ���� �������.\n"

#: fetchmail.c:401
#, c-format
msgid "fetchmail: can't poll specified hosts with another fetchmail running at %d.\n"
msgstr ""
"fetchmail: �������� �������� ��� ��������� ����������� ��� ������ ����\n"
"           fetchmail ��� %d.\n"

#: fetchmail.c:408
#, c-format
msgid "fetchmail: another foreground fetchmail is running at %d.\n"
msgstr "fetchmail: ������ ���� fetchmail ������ ��� ��������� ��� %d.\n"

#: fetchmail.c:418
msgid "fetchmail: can't accept options while a background fetchmail is running.\n"
msgstr "fetchmail: ������� �� ������ ���� ��� fetchmail ������ ��� ����������.\n"

#: fetchmail.c:424
#, c-format
msgid "fetchmail: background fetchmail at %d awakened.\n"
msgstr "fetchmail: �������� ������������� fetchmail ��� %d.\n"

#: fetchmail.c:436
#, c-format
msgid "fetchmail: elder sibling at %d died mysteriously.\n"
msgstr "fetchmail: ����������� ����������� ������� ������ ����������� ��� %d.\n"

#: fetchmail.c:451
#, c-format
msgid "fetchmail: can't find a password for %s@%s.\n"
msgstr "fetchmail: �������� ������ ����� ������ ��� �� %s@%s.\n"

#: fetchmail.c:457
#, c-format
msgid "Enter password for %s@%s: "
msgstr "�������������� ��� ���� ������ ��� �� %s@%s: "

#: fetchmail.c:488
#, c-format
msgid "starting fetchmail %s daemon \n"
msgstr "�������� ������� fetchmail %s \n"

#: fetchmail.c:503 fetchmail.c:505
#, c-format
msgid "could not open %s to append logs to \n"
msgstr "�������� ���������� ��� %s ��� �������� ���������� �� ���� \n"

#: fetchmail.c:543
#, c-format
msgid "couldn't time-check %s (error %d)\n"
msgstr "�������� �������-���� %s (������ %d)\n"

#: fetchmail.c:548
#, c-format
msgid "restarting fetchmail (%s changed)\n"
msgstr "������������ fetchmail (%s ������)\n"

#: fetchmail.c:553
msgid "attempt to re-exec may fail as directory has not been restored\n"
msgstr "� ���������� ��� ������� ���� �������� ���� � ������� ��� ���� �������������\n"

#: fetchmail.c:580
msgid "attempt to re-exec fetchmail failed\n"
msgstr "� �������� ��� ������������ ��� fetchmail �������\n"

#: fetchmail.c:608
#, c-format
msgid "poll of %s skipped (failed authentication or too many timeouts)\n"
msgstr "��������� �������� ��� %s (������� � ������������� � ������ ������ ������)\n"

#: fetchmail.c:620
#, c-format
msgid "interval not reached, not querying %s\n"
msgstr "�� ��������� ��� ������, ��� ������ ������� %s\n"

#: fetchmail.c:651
msgid "Query status=0 (SUCCESS)\n"
msgstr "���������� ��������=0 (SUCCESS)\n"

#: fetchmail.c:653
msgid "Query status=1 (NOMAIL)\n"
msgstr "���������� ��������=1 (NOMAIL)\n"

#: fetchmail.c:655
msgid "Query status=2 (SOCKET)\n"
msgstr "���������� ��������=2 (SOCKET)\n"

#: fetchmail.c:657
msgid "Query status=3 (AUTHFAIL)\n"
msgstr "���������� ��������=3 (AUTHFAIL)\n"

#: fetchmail.c:659
msgid "Query status=4 (PROTOCOL)\n"
msgstr "���������� ��������=4 (PROTOCOL)\n"

#: fetchmail.c:661
msgid "Query status=5 (SYNTAX)\n"
msgstr "���������� ��������=5 (SYNTAX)\n"

#: fetchmail.c:663
msgid "Query status=6 (IOERR)\n"
msgstr "���������� ��������=6 (IOERR)\n"

#: fetchmail.c:665
msgid "Query status=7 (ERROR)\n"
msgstr "���������� ��������=7 (ERROR)\n"

#: fetchmail.c:667
msgid "Query status=8 (EXCLUDE)\n"
msgstr "���������� ��������=8 (EXCLUDE)\n"

#: fetchmail.c:669
msgid "Query status=9 (LOCKBUSY)\n"
msgstr "���������� ��������=9 (LOCKBUSY)\n"

#: fetchmail.c:671
msgid "Query status=10 (SMTP)\n"
msgstr "���������� ��������=10 (SMTP)\n"

#: fetchmail.c:673
msgid "Query status=11 (DNS)\n"
msgstr "���������� ��������=11 (DNS)\n"

#: fetchmail.c:675
msgid "Query status=12 (BSMTP)\n"
msgstr "���������� ��������=12 (BSMTP)\n"

#: fetchmail.c:677
msgid "Query status=13 (MAXFETCH)\n"
msgstr "���������� ��������=13 (MAXFETCH)\n"

#: fetchmail.c:679
#, c-format
msgid "Query status=%d\n"
msgstr "���������� ��������=%d\n"

#: fetchmail.c:725
msgid "All connections are wedged.  Exiting.\n"
msgstr "���� �� ��������� ����� ���������. �����������.\n"

#: fetchmail.c:732
#, c-format
msgid "sleeping at %s\n"
msgstr "������� ��� %s\n"

#: fetchmail.c:756
#, c-format
msgid "awakened by %s\n"
msgstr "����������� ��� �� %s\n"

#: fetchmail.c:759
#, c-format
msgid "awakened by signal %d\n"
msgstr "����������� ��� ���� %d\n"

#: fetchmail.c:766
#, c-format
msgid "awakened at %s\n"
msgstr "����������� ��� %s\n"

#: fetchmail.c:772
#, c-format
msgid "normal termination, status %d\n"
msgstr "������������ �����������, ��������� %d\n"

#: fetchmail.c:921
msgid "couldn't time-check the run-control file\n"
msgstr "�������� �������-���� ��� ������ run-control\n"

#: fetchmail.c:954
#, c-format
msgid "Warning: multiple mentions of host %s in config file\n"
msgstr "�������������: ��������� �������� ��� ���������� %s ��� ������ ���������\n"

#: fetchmail.c:1096
msgid "SSL support is not compiled in.\n"
msgstr "� ���������� ��� SSL ��� ���� ���� ��� ���������.\n"

#: fetchmail.c:1127
#, c-format
msgid "fetchmail: warning: no DNS available to check multidrop fetches from %s\n"
msgstr "fetchmail: �������������: ������ ��������� DNS ��� ������ ������ ��� %s\n"

#: fetchmail.c:1144
#, c-format
msgid "%s configuration invalid, port number cannot be negative\n"
msgstr "�� ������� ��������� %s, � ������� ����� ��� ������ �� ����� ���������\n"

#: fetchmail.c:1151
#, c-format
msgid "%s configuration invalid, RPOP requires a privileged port\n"
msgstr "�� ������� ��������� %s, �� RPOP ������� ����������� ����\n"

#: fetchmail.c:1167
#, c-format
msgid "%s configuration invalid, LMTP can't use default SMTP port\n"
msgstr "�� ������� ��������� %s, �� LMTP ��� ����� ����� ��� �� ������� ����� SMTP\n"

#: fetchmail.c:1182
msgid "Both fetchall and keep on in daemon mode is a mistake!\n"
msgstr "����� ����� �� fetchall ��� ���� �� �������� �� ��������� �������!\n"

#: fetchmail.c:1232
#, c-format
msgid "terminated with signal %d\n"
msgstr "����� �� ���� %d\n"

#: fetchmail.c:1317
#, c-format
msgid "%s querying %s (protocol %s) at %s: poll started\n"
msgstr "%s ������� %s (���������� %s) ��� %s: ������ � �������\n"

#: fetchmail.c:1342
msgid "POP2 support is not configured.\n"
msgstr "��� ���� ��������� � ���������� POP2.\n"

#: fetchmail.c:1354
msgid "POP3 support is not configured.\n"
msgstr "��� ���� ��������� � ���������� POP3.\n"

#: fetchmail.c:1364
msgid "IMAP support is not configured.\n"
msgstr "��� ���� ��������� � ���������� IMAP.\n"

#: fetchmail.c:1370
msgid "ETRN support is not configured.\n"
msgstr "��� ���� ��������� � ���������� ETRN.\n"

#: fetchmail.c:1376
msgid "Cannot support ETRN without gethostbyname(2).\n"
msgstr "�������� ����������� ETRN ����� gethostbyname(2).\n"

#: fetchmail.c:1383
msgid "ODMR support is not configured.\n"
msgstr "��� ���� ��������� � ���������� ODMR.\n"

#: fetchmail.c:1389
msgid "Cannot support ODMR without gethostbyname(2).\n"
msgstr "�������� ����������� ODMR ����� gethostbyname(2).\n"

#: fetchmail.c:1395
msgid "unsupported protocol selected.\n"
msgstr "���������� �� �������������� ����������.\n"

#: fetchmail.c:1405
#, c-format
msgid "%s querying %s (protocol %s) at %s: poll completed\n"
msgstr "%s ������� %s (���������� %s) ��� %s: ������������ � �������\n"

#: fetchmail.c:1422
#, c-format
msgid "Poll interval is %d seconds\n"
msgstr "��������� �������� ����� %d ������������\n"

#: fetchmail.c:1424
#, c-format
msgid "Logfile is %s\n"
msgstr "������ ����������� ����� �� %s\n"

#: fetchmail.c:1426
#, c-format
msgid "Idfile is %s\n"
msgstr "������ Id ����� �� %s\n"

#: fetchmail.c:1429
msgid "Progress messages will be logged via syslog\n"
msgstr "�� �������� ������� �� ������������ ���� ��� syslog\n"

#: fetchmail.c:1432
msgid "Fetchmail will masquerade and will not generate Received\n"
msgstr "�� fetchmail �� ���������� ��� �� �� ������� Received\n"

#: fetchmail.c:1434
msgid "Fetchmail will show progress dots even in logfiles.\n"
msgstr "�� fetchmail �� ������� ������� ������� ��� ��� ������ ����������.\n"

#: fetchmail.c:1436
#, c-format
msgid "Fetchmail will forward misaddressed multidrop messages to %s.\n"
msgstr "�� fetchmail �� ������� multidrop �������� �� ���� ��������� ��� %s.\n"

#: fetchmail.c:1440
msgid "Fetchmail will direct error mail to the postmaster.\n"
msgstr "�� fetchmail �� ���������� ������������ ��������� ��� postmaster.\n"

#: fetchmail.c:1442
msgid "Fetchmail will direct error mail to the sender.\n"
msgstr "�� fetchmail �� ���������� ������������ ��������� ��� ���������.\n"

#: fetchmail.c:1449
#, c-format
msgid "Options for retrieving from %s@%s:\n"
msgstr "�������� ��� ���� ��� %s@%s:\n"

#: fetchmail.c:1453
#, c-format
msgid "  Mail will be retrieved via %s\n"
msgstr "  � ������������ �� ������ ���� ��� %s\n"

#: fetchmail.c:1456
#, c-format
msgid "  Poll of this server will occur every %d intervals.\n"
msgstr "  ������� �� ���� �� ����������� �� ������ ���� %d ����������.\n"

#: fetchmail.c:1459
#, c-format
msgid "  True name of server is %s.\n"
msgstr "  �� ������� ����� ��� ����������� ����� %s.\n"

#: fetchmail.c:1461
#, c-format
msgid "  This host %s be queried when no host is specified.\n"
msgstr "  ����� � ����������� %s �� �������� ���� ��� ���� ������� �������.\n"

#: fetchmail.c:1462 fetchmail.c:1577 fetchmail.c:1580
msgid "will not"
msgstr "'��� ��"

#: fetchmail.c:1462 fetchmail.c:1577 fetchmail.c:1580
msgid "will"
msgstr "��"

#: fetchmail.c:1466
msgid "  Password will be prompted for.\n"
msgstr "  � ���� ������ �� �������.\n"

#: fetchmail.c:1470
#, c-format
msgid "  APOP secret = \"%s\".\n"
msgstr "  ������� APOP = \"%s\".\n"

#: fetchmail.c:1473
#, c-format
msgid "  RPOP id = \"%s\".\n"
msgstr "  RPOP id = \"%s\".\n"

#: fetchmail.c:1476
#, c-format
msgid "  Password = \"%s\".\n"
msgstr "  ���� ������ = \"%s\".\n"

#: fetchmail.c:1489
#, c-format
msgid "  Protocol is KPOP with Kerberos %s authentication"
msgstr "  �� ���������� ����� KPOP �� ������������� Kerberos %s"

#: fetchmail.c:1492
#, c-format
msgid "  Protocol is %s"
msgstr "  �� ���������� ����� %s"

#: fetchmail.c:1495
#, c-format
msgid " (using service %s)"
msgstr " (����� ��������� %s)"

#: fetchmail.c:1497
#, c-format
msgid " (using network security options %s)"
msgstr " (����� �������� ��������� ������� %s)"

#: fetchmail.c:1500
#, c-format
msgid " (using port %d)"
msgstr " (������������� ����� %d)"

#: fetchmail.c:1503
msgid " (using default port)"
msgstr " (������������� ����� ��'�������)"

#: fetchmail.c:1505
msgid " (forcing UIDL use)"
msgstr " (������������ ������ UIDL)"

#: fetchmail.c:1511
msgid "  All available authentication methods will be tried.\n"
msgstr "  ���� �� ���������� ������� �������������� �� �����������.\n"

#: fetchmail.c:1514
msgid "  Password authentication will be forced.\n"
msgstr "  �� ������������ � ������������� �� ���� ������.\n"

#: fetchmail.c:1517
msgid "  NTLM authentication will be forced.\n"
msgstr "  �� ������������ � ������������� NTLM.\n"

#: fetchmail.c:1520
msgid "  OTP authentication will be forced.\n"
msgstr "  �� ������������ � ������������� OTP.\n"

#: fetchmail.c:1523
msgid "  CRAM-Md5 authentication will be forced.\n"
msgstr "  �� ������������ � ������������� CRAM-Md5.\n"

#: fetchmail.c:1526
msgid "  GSSAPI authentication will be forced.\n"
msgstr "  �� ������������ � ������������� GSSAPI.\n"

#: fetchmail.c:1529
msgid "  Kerberos V4 authentication will be forced.\n"
msgstr "  �� ������������ � ������������� Kerberos V4.\n"

#: fetchmail.c:1532
msgid "  Kerberos V5 authentication will be forced.\n"
msgstr "  �� ������������ � ������������� Kerberos V5.\n"

#: fetchmail.c:1535
msgid "  End-to-end encryption assumed.\n"
msgstr "  ������������� ����-��-���� ���������.\n"

#: fetchmail.c:1539
#, c-format
msgid "  Mail service principal is: %s\n"
msgstr "  ���������� ��������� ������������� �����: %s\n"

#: fetchmail.c:1542
msgid "  SSL encrypted sessions enabled.\n"
msgstr "  ������������ ���������������� SSL ���������.\n"

#: fetchmail.c:1544
#, c-format
msgid "  SSL protocol: %s.\n"
msgstr "  ���������� SSL: %s.\n"

#: fetchmail.c:1546
msgid "  SSL server certificate checking enabled.\n"
msgstr "  ������������ ������� �������������� ����������� SSL.\n"

#: fetchmail.c:1548
#, c-format
msgid "  SSL trusted certificate directory: %s\n"
msgstr "  ������� ������������� �������������� SSL: %s\n"

#: fetchmail.c:1551
#, c-format
msgid "  SSL key fingerprint (checked against the server key): %s\n"
msgstr "  ��������� �������� SSL (�� �������� �� �� ������ �����������): %s\n"

#: fetchmail.c:1554
#, c-format
msgid "  Server nonresponse timeout is %d seconds"
msgstr "  ���� ������ ���-��������� ��� �� ����������� ����� %d ������������"

#: fetchmail.c:1556
msgid " (default).\n"
msgstr " (��'�������).\n"

#: fetchmail.c:1563
msgid "  Default mailbox selected.\n"
msgstr "  �� ������� ��������������� ����������.\n"

#: fetchmail.c:1568
msgid "  Selected mailboxes are:"
msgstr "  ���������� ��������������� �����:"

#: fetchmail.c:1573
#, c-format
msgid "  %s messages will be retrieved (--all %s).\n"
msgstr "  %s �������� �� ������� (--all %s).\n"

#: fetchmail.c:1574
msgid "All"
msgstr "���"

#: fetchmail.c:1574
msgid "Only new"
msgstr "���� �� ���"

#: fetchmail.c:1576
#, c-format
msgid "  Fetched messages %s be kept on the server (--keep %s).\n"
msgstr "  �������� �������� %s �� ��������� ��� ����������� (--keep %s).\n"

#: fetchmail.c:1579
#, c-format
msgid "  Old messages %s be flushed before message retrieval (--flush %s).\n"
msgstr "  ����� �������� %s �� ���������� ���� �� ���� ��������� (--flush %s).\n"

#: fetchmail.c:1582
#, c-format
msgid "  Rewrite of server-local addresses is %s (--norewrite %s).\n"
msgstr "  ����������� ��� �������-����������� ����������� %s (--norewrite %s).\n"

#: fetchmail.c:1583 fetchmail.c:1586 fetchmail.c:1589 fetchmail.c:1592
#: fetchmail.c:1595 fetchmail.c:1598 fetchmail.c:1731
msgid "enabled"
msgstr "�� ����������"

#: fetchmail.c:1583 fetchmail.c:1586 fetchmail.c:1589 fetchmail.c:1592
#: fetchmail.c:1595 fetchmail.c:1598 fetchmail.c:1731
msgid "disabled"
msgstr "����� �����������"

#: fetchmail.c:1585
#, c-format
msgid "  Carriage-return stripping is %s (stripcr %s).\n"
msgstr "  �������� ��� Carriage-return ����� %s (stripcr %s).\n"

#: fetchmail.c:1588
#, c-format
msgid "  Carriage-return forcing is %s (forcecr %s).\n"
msgstr "  ������������ ��� Carriage-return ����� %s (forcecr %s).\n"

#: fetchmail.c:1591
#, c-format
msgid "  Interpretation of Content-Transfer-Encoding is %s (pass8bits %s).\n"
msgstr "  ��������� ��� Content-Transfer-Encoding ����� %s (pass8bits %s).\n"

#: fetchmail.c:1594
#, c-format
msgid "  MIME decoding is %s (mimedecode %s).\n"
msgstr "  ��������������� MIME ����� %s (mimedecode %s).\n"

#: fetchmail.c:1597
#, c-format
msgid "  Idle after poll is %s (idle %s).\n"
msgstr "  ������ ���� ��� ������� ����� %s (idle %s).\n"

#: fetchmail.c:1600
#, c-format
msgid "  Nonempty Status lines will be %s (dropstatus %s)\n"
msgstr "  �� ������� Nonempty Status �� %s (dropstatus %s)\n"

#: fetchmail.c:1601 fetchmail.c:1604
msgid "discarded"
msgstr "�����������"

#: fetchmail.c:1601 fetchmail.c:1604
msgid "kept"
msgstr "���������"

#: fetchmail.c:1603
#, c-format
msgid "  Delivered-To lines will be %s (dropdelivered %s)\n"
msgstr "  �� ������� Delivered-To �� %s (dropdelivered %s)\n"

#: fetchmail.c:1609
#, c-format
msgid "  Message size limit is %d octets (--limit %d).\n"
msgstr "  �� ���� �������� ��������� ����� %d octets (--limit %d).\n"

#: fetchmail.c:1612
msgid "  No message size limit (--limit 0).\n"
msgstr "  ������ ���� �������� ��������� (--limit 0).\n"

#: fetchmail.c:1614
#, c-format
msgid "  Message size warning interval is %d seconds (--warnings %d).\n"
msgstr "  �������� �������������� �������� ��������� ����� %d ������� (--warnings %d).\n"

#: fetchmail.c:1617
msgid "  Size warnings on every poll (--warnings 0).\n"
msgstr "  ��������������� �������� �� ���� ������� (--warnings 0).\n"

#: fetchmail.c:1620
#, c-format
msgid "  Received-message limit is %d (--fetchlimit %d).\n"
msgstr "  ���� ����������-��������� ����� %d (--fetchlimit %d).\n"

#: fetchmail.c:1623
msgid "  No received-message limit (--fetchlimit 0).\n"
msgstr "  ������ ���� ����������-��������� (--fetchlimit 0).\n"

#: fetchmail.c:1625
#, c-format
msgid "  SMTP message batch limit is %d.\n"
msgstr "  ���� ������ ��������� SMTP ����� %d.\n"

#: fetchmail.c:1627
msgid "  No SMTP message batch limit (--batchlimit 0).\n"
msgstr "  ������ ���� ������ ��������� SMTP (--batchlimit 0).\n"

#: fetchmail.c:1631
#, c-format
msgid "  Deletion interval between expunges forced to %d (--expunge %d).\n"
msgstr "  �������� ��������� ������ ���������� ������������� �� %d (--expunge %d).\n"

#: fetchmail.c:1633
msgid "  No forced expunges (--expunge 0).\n"
msgstr "  ������ ������������� �������� (--expunge 0).\n"

#: fetchmail.c:1640
msgid "  Domains for which mail will be fetched are:"
msgstr "  �������� ��� ��� ������ ������������ �� ������ �����:"

#: fetchmail.c:1645 fetchmail.c:1665
msgid " (default)"
msgstr " (��'�������)"

#: fetchmail.c:1650
#, c-format
msgid "  Messages will be appended to %s as BSMTP\n"
msgstr "  �� �������� �� ���������� �� %s ��� BSMTP\n"

#: fetchmail.c:1652
#, c-format
msgid "  Messages will be delivered with \"%s\".\n"
msgstr "  �� �������� �� ����������� �� \"%s\".\n"

#: fetchmail.c:1659
#, c-format
msgid "  Messages will be %cMTP-forwarded to:"
msgstr "  �� �������� �� ���������� %cMTP ��:"

#: fetchmail.c:1670
#, c-format
msgid "  Host part of MAIL FROM line will be %s\n"
msgstr "  �� ����� ���������� ��� ������� MAIL FROM �� ����� %s\n"

#: fetchmail.c:1673
#, c-format
msgid "  Address to be put in RCPT TO lines shipped to SMTP will be %s\n"
msgstr ""
"  ��������� ��� �� ����� ���� ������� RCPT TO ��� ������������� ����\n"
"   SMTP �� ����� %s\n"

#: fetchmail.c:1682
msgid "  Recognized listener spam block responses are:"
msgstr "  �������������� ���������� �������������� spam ������� �����:"

#: fetchmail.c:1688
msgid "  Spam-blocking disabled\n"
msgstr "  �������������� ��������������-spam\n"

#: fetchmail.c:1691
#, c-format
msgid "  Server connection will be brought up with \"%s\".\n"
msgstr "  � ������� ����������� �� ������ �� \"%s\".\n"

#: fetchmail.c:1694
msgid "  No pre-connection command.\n"
msgstr "  ������ ������ ���-��������.\n"

#: fetchmail.c:1696
#, c-format
msgid "  Server connection will be taken down with \"%s\".\n"
msgstr "  � ������� ����������� �� ������������ �� \"%s\".\n"

#: fetchmail.c:1699
msgid "  No post-connection command.\n"
msgstr "  ������ ������ ����-��������.\n"

#: fetchmail.c:1702
msgid "  No localnames declared for this host.\n"
msgstr "  ������ ������ ����� ��� �������� ��� ���� �� ����������.\n"

#: fetchmail.c:1712
msgid "  Multi-drop mode: "
msgstr "  ��������� multi-drop: "

#: fetchmail.c:1714
msgid "  Single-drop mode: "
msgstr "  ��������� single-drop: "

#: fetchmail.c:1716
#, c-format
msgid "%d local name(s) recognized.\n"
msgstr "%d ������ �����(��) ��������������.\n"

#: fetchmail.c:1730
#, c-format
msgid "  DNS lookup for multidrop addresses is %s.\n"
msgstr "  ��������� DNS ��� ��� ����������� multidrop ����� %s.\n"

#: fetchmail.c:1734
msgid "  Server aliases will be compared with multidrop addresses by "
msgstr "  �� ��������� ����������� �� ���������� �� ����������� multidrop �� "

#: fetchmail.c:1736
msgid "IP address.\n"
msgstr "��������� IP.\n"

#: fetchmail.c:1738
msgid "name.\n"
msgstr "�����.\n"

#: fetchmail.c:1741
msgid "  Envelope-address routing is disabled\n"
msgstr "  ���������������� � ����������� �����������-�������\n"

#: fetchmail.c:1744
#, c-format
msgid "  Envelope header is assumed to be: %s\n"
msgstr "����������� ������� �������� �� �����: %s\n"

#: fetchmail.c:1745
msgid "Received"
msgstr "�����������"

#: fetchmail.c:1747
#, c-format
msgid "  Number of envelope header to be parsed: %d\n"
msgstr "  ������� ������������ ������� ��� �� �������������: %d\n"

#: fetchmail.c:1750
#, c-format
msgid "  Prefix %s will be removed from user id\n"
msgstr "  �� ������� %s �� ��������� ��� �� user id\n"

#: fetchmail.c:1753
msgid "  No prefix stripping\n"
msgstr "  ������ �������� ����������\n"

#: fetchmail.c:1760
msgid "  Predeclared mailserver aliases:"
msgstr "����������� ��������� �����������-�������������:"

#: fetchmail.c:1769
msgid "  Local domains:"
msgstr "  ������� ��������:"

#: fetchmail.c:1779
#, c-format
msgid "  Connection must be through interface %s.\n"
msgstr "  � ������� ������ �� ����� ���� ��� interface %s.\n"

#: fetchmail.c:1781
msgid "  No interface requirement specified.\n"
msgstr "  ��� ��������� ���������� interface.\n"

#: fetchmail.c:1783
#, c-format
msgid "  Polling loop will monitor %s.\n"
msgstr "  ������� �������� �� ������������ �� %s.\n"

#: fetchmail.c:1785
msgid "  No monitor interface specified.\n"
msgstr "  ��� �������� interface ��������������.\n"

#: fetchmail.c:1789
#, c-format
msgid "  Server connections will be made via plugin %s (--plugin %s).\n"
msgstr "  ��������� ����������� �� ������ ���� ��� plugin %s (--plugin %s).\n"

#: fetchmail.c:1791
msgid "  No plugin command specified.\n"
msgstr "  ��� �������� ������ plugin.\n"

#: fetchmail.c:1793
#, c-format
msgid "  Listener connections will be made via plugout %s (--plugout %s).\n"
msgstr "  ��������� ������� �� ������ ���� ��� plugout %s (--plugout %s).\n"

#: fetchmail.c:1795
msgid "  No plugout command specified.\n"
msgstr "  ��� �������� ������ plugout.\n"

#: fetchmail.c:1800
msgid "  No UIDs saved from this host.\n"
msgstr "  ��� ������������� UID ��� ���� �� ����������.\n"

#: fetchmail.c:1809
#, c-format
msgid "  %d UIDs saved.\n"
msgstr "  %d UID �������������.\n"

#: fetchmail.c:1817
msgid "  Poll trace information will be added to the Received header.\n"
msgstr "  ����������� ���������� �������� �� ��������� ���� ����������� Received.\n"

#: fetchmail.c:1819
msgid ""
"  No poll trace information will be added to the Received header.\n"
".\n"
msgstr ""
"  ������ ���������� ���������� �������� �� �� ��������� ���� �����������\n"
"Received.\n"

#: fetchmail.c:1822
#, c-format
msgid "  Pass-through properties \"%s\".\n"
msgstr "  ��������� Pass-through \"%s\".\n"

#.
#. * This is a hack to help xgettext which cannot find strings in
#. * macro definitions like the one for xalloca above.
#.
#: fetchmail.h:573 fetchmail.h:579
msgid "alloca failed"
msgstr "alloca �������"

#: getpass.c:72
msgid "ERROR: no support for getpassword() routine\n"
msgstr "������: ������ ���������� ��� �� ������� getpassword()\n"

#: getpass.c:194
msgid ""
"\n"
"Caught SIGINT... bailing out.\n"
msgstr ""
"\n"
"������� SIGINT... �����������.\n"

#: gssapi.c:62
#, c-format
msgid "Couldn't get service name for [%s]\n"
msgstr "�������� ����� �������� ��������� ��� [%s]\n"

#: gssapi.c:68
#, c-format
msgid "Using service name [%s]\n"
msgstr "����� �������� ��������� [%s]\n"

#: gssapi.c:84
msgid "Sending credentials\n"
msgstr "�������� ���������������\n"

#: gssapi.c:102
msgid "Error exchanging credentials\n"
msgstr "������ ���� ��������� ���������������\n"

#: gssapi.c:144
msgid "Couldn't unwrap security level data\n"
msgstr "�������� ���������� ��������� �������� ���������\n"

#: gssapi.c:149
msgid "Credential exchange complete\n"
msgstr "������������ � ��������� ���������������\n"

#: gssapi.c:153
msgid "Server requires integrity and/or privacy\n"
msgstr "� ������������ ������� ����������� ���/� �����������\n"

#: gssapi.c:162
#, c-format
msgid "Unwrapped security level flags: %s%s%s\n"
msgstr "�������������� ������� �������� ���������: %s%s%s\n"

#: gssapi.c:166
#, c-format
msgid "Maximum GSS token size is %ld\n"
msgstr "������� ������� ��������� GSS ����� %ld\n"

#: gssapi.c:179
msgid "Error creating security level request\n"
msgstr "������ ��� ���������� ������� �������� ���������\n"

#: gssapi.c:190
msgid "Releasing GSS credentials\n"
msgstr "������������ ��������������� GSS\n"

#: gssapi.c:193
msgid "Error releasing credentials\n"
msgstr "������ ���� ������������ ���������������\n"

#: idle.c:62
#, c-format
msgid "fetchmail: thread sleeping for %d sec.\n"
msgstr "fetchmail: ������� ��������� ��� %d ����.\n"

#: imap.c:275
msgid "Protocol identified as IMAP4 rev 1\n"
msgstr "����������� ����������� ��� IMAP4 rev 1\n"

#: imap.c:281
msgid "Protocol identified as IMAP4 rev 0\n"
msgstr "����������� ����������� ��� IMAP4 rev 0\n"

#: imap.c:288
msgid "Protocol identified as IMAP2 or IMAP2BIS\n"
msgstr "����������� ����������� ��� IMAP2 � IMAP2BIS\n"

#: imap.c:299
msgid "will idle after poll\n"
msgstr "�� �������� ���� ��� �������\n"

#: imap.c:451
msgid "Required OTP capability not compiled into fetchmail\n"
msgstr "����������� ��������� OTP ��� ��������������� ��� fetchmail\n"

#: imap.c:473
msgid "Required NTLM capability not compiled into fetchmail\n"
msgstr "����������� ��������� NTLM ��� ��������������� ��� fetchmail\n"

#: imap.c:482
msgid "Required LOGIN capability not supported by server\n"
msgstr "����������� ��������� LOGIN ��� ��������������� ��� fetchmail\n"

#: imap.c:604 imap.c:670
msgid "expunge failed\n"
msgstr "�������� �������\n"

#: imap.c:626 imap.c:655
msgid "re-poll failed\n"
msgstr "����������� �������\n"

#: imap.c:634
#, c-format
msgid "%d messages waiting after re-poll\n"
msgstr "%d �������� ��������� ���� ��� �����������\n"

#: imap.c:644
msgid "mailbox selection failed\n"
msgstr "� ������� ���������������� �������\n"

#: imap.c:648
#, c-format
msgid "%d messages waiting after first poll\n"
msgstr "%d �������� ��������� ���� ��� ����� �������\n"

#: imap.c:674
#, c-format
msgid "%d messages waiting after expunge\n"
msgstr "%d �������� ��������� ���� ��� ��������\n"

#: imap.c:696
msgid "search for unseen messages failed\n"
msgstr "��������� ��� �� ������� �������� �������\n"

#: imap.c:726
#, c-format
msgid "%u is unseen\n"
msgstr "%u ��� ���� �������\n"

#: imap.c:738
#, c-format
msgid "%u is first unseen\n"
msgstr "%u ����� �� ����� �� �������\n"

#: interface.c:253
msgid "Unable to open kvm interface. Make sure fetchmail is SGID kmem."
msgstr ""
"�������� ���������� ��� kvm interface. ����������� ��� �� fetchmail\n"
"����� SGID kmem."

#: interface.c:398
#, c-format
msgid "Unable to parse interface name from %s"
msgstr "�������� ������������ ��� �������� interface ��� �� %s"

#: interface.c:420
msgid "get_ifinfo: sysctl (iflist estimate) failed"
msgstr "get_ifinfo: sysctl (iflist estimate) �������"

#: interface.c:426
msgid "get_ifinfo: malloc failed"
msgstr "get_ifinfo: malloc �������"

#: interface.c:432
msgid "get_ifinfo: sysctl (iflist) failed"
msgstr "get_ifinfo: sysctl (iflist) �������"

#: interface.c:450
#, c-format
msgid "Routing message version %d not understood."
msgstr "������ ��������� ������������ %d ��� ������� ���������."

#. we did not find an interface with a matching name
#: interface.c:482
#, c-format
msgid "No interface found with name %s"
msgstr "�� ������� ������ interface �� ����� %s"

#: interface.c:540
#, c-format
msgid "No IP address found for %s"
msgstr "��� �������� ����������� IP ��� �� %s"

#: interface.c:592
msgid "missing IP interface address\n"
msgstr "��� ������� ��������� IP interface\n"

#: interface.c:608
msgid "invalid IP interface address\n"
msgstr "�� ������ ��������� IP interface\n"

#: interface.c:614
msgid "invalid IP interface mask\n"
msgstr "�� ������ IP interface mask\n"

#: interface.c:653
#, c-format
msgid "activity on %s -noted- as %d\n"
msgstr "������������� ��� %s -����������- ��� %d\n"

#: interface.c:668
#, c-format
msgid "skipping poll of %s, %s down\n"
msgstr "��������� �������� ��� %s, �� %s ����� ����\n"

#: interface.c:687
#, c-format
msgid "skipping poll of %s, %s IP address excluded\n"
msgstr "��������� �������� ��� %s, � ��������� IP %s ������������\n"

#: interface.c:699
#, c-format
msgid "activity on %s checked as %d\n"
msgstr "������������� ��� %s ��������� ��� %d\n"

#: interface.c:725
#, c-format
msgid "skipping poll of %s, %s inactive\n"
msgstr "��������� �������� ��� %s, %s ���������\n"

#: interface.c:732
#, c-format
msgid "activity on %s was %d, is %d\n"
msgstr "������������� ��� %s ���� %d, ����� %d\n"

#: kerberos.c:74
msgid "could not decode initial BASE64 challenge\n"
msgstr "�������� ���������������� ������� ��������� BASE64\n"

#: kerberos.c:139
#, c-format
msgid "principal %s in ticket does not match -u %s\n"
msgstr "���������� %s ��� ��������� �� ��������� �� -u %s\n"

#: kerberos.c:147
#, c-format
msgid "non-null instance (%s) might cause strange behavior\n"
msgstr "� ��������� non-null (%s) ������ �� ���������� �������� �����������\n"

#: kerberos.c:213
msgid "could not decode BASE64 ready response\n"
msgstr "�������� ���������������� ��������� ����������� BASE64\n"

#: kerberos.c:220
msgid "challenge mismatch\n"
msgstr "��� ��������� ���������\n"

#: lock.c:81
msgid "fetchmail: removing stale lockfile\n"
msgstr "fetchmail: �������� ������ ������� �����������\n"

#: lock.c:122
msgid "fetchmail: lock creation failed.\n"
msgstr "fetchmail: �������� ����������� �����������.\n"

#: netrc.c:218
#, c-format
msgid "warning: found \"%s\" before any host names"
msgstr "�������������: ������� �� \"%s\" ���� ���� ����� ����������"

#: netrc.c:222
#, c-format
msgid "%s:%d: warning: found \"%s\" before any host names\n"
msgstr "%s:%d: �������������: ������� �� \"%s\" ���� ���� ����� ����������\n"

#: netrc.c:261
#, c-format
msgid "%s:%d: warning: unknown token \"%s\"\n"
msgstr "%s:%d: �������������: ������� �������� \"%s\"\n"

#: odmr.c:65
#, c-format
msgid "%s's SMTP listener does not support ATRN\n"
msgstr "� SMTP �������� ��� %s ��� ����������� �TRN\n"

#: odmr.c:103
msgid "Turnaround now...\n"
msgstr "��������� ����...\n"

#: odmr.c:108
msgid "ATRN request refused.\n"
msgstr "� ������ ATRN �����������.\n"

#. Unable to process ATRN request now
#: odmr.c:112
msgid "Unable to process ATRN request now\n"
msgstr "�������� ������������ ������� ATRN ����\n"

#: odmr.c:117
msgid "You have no mail.\n"
msgstr "��� ����� ������������.\n"

#. Command not implemented
#: odmr.c:121
msgid "Command not implemented\n"
msgstr "� ������ ��� ���� ����������\n"

#. Authentication required
#: odmr.c:125
msgid "Authentication required.\n"
msgstr "��������� �������������.\n"

#: odmr.c:129
#, c-format
msgid "Unknown ODMR error %d\n"
msgstr "������� ������ ODMR %d\n"

#: odmr.c:243
msgid "Option --keep is not supported with ODMR\n"
msgstr "� ������� --keep ��� ������������ �� �� ODMR\n"

#: odmr.c:247
msgid "Option --flush is not supported with ODMR\n"
msgstr "� ������� --flush ��� ������������ �� �� ODMR\n"

#: odmr.c:251
msgid "Option --remote is not supported with ODMR\n"
msgstr "� ������� --remote ��� ������������ �� �� ODMR\n"

#: odmr.c:255
msgid "Option --check is not supported with ODMR\n"
msgstr "� ������� --check ��� ������������ �� �� ODMR\n"

#: opie.c:37
msgid "server recv fatal\n"
msgstr "������������ ����� ��������\n"

#: opie.c:51
msgid "Could not decode OTP challenge\n"
msgstr "�������� ���������������� ��������� OTP\n"

#: opie.c:59 pop3.c:378
msgid "Secret pass phrase: "
msgstr "������� ����� ������: "

#: options.c:197 options.c:241
#, c-format
msgid "String '%s' is not a valid number string.\n"
msgstr "� ������������ '%s' ��� ����� ������ ������������ �������.\n"

#: options.c:206
#, c-format
msgid "Value of string '%s' is %s than %d.\n"
msgstr "���� ��� ������������� '%s' ����� %s ���� %d.\n"

#: options.c:207
msgid "smaller"
msgstr "���������"

#: options.c:207
msgid "larger"
msgstr "����������"

#: options.c:379
#, c-format
msgid "Invalid protocol `%s' specified.\n"
msgstr "�������� �� ������ ���������� `%s'.\n"

#: options.c:425
#, c-format
msgid "Invalid authentication `%s' specified.\n"
msgstr "�������� �� ������ ������������� `%s'.\n"

#: options.c:555
msgid "fetchmail: network security support is disabled\n"
msgstr "fetchmail: ���������������� � ���������� ��������� �������\n"

#: options.c:648
msgid "usage:  fetchmail [options] [server ...]\n"
msgstr "�����: fetchmail [��������] [������������ ...]\n"

#: options.c:649
msgid "  Options are as follows:\n"
msgstr "  �� �������� ����� �� ���������:\n"

#: options.c:650
msgid "  -?, --help        display this option help\n"
msgstr "  -?, --help        ���������� ����� ��� ��������� ��������\n"

#: options.c:651
msgid "  -V, --version     display version info\n"
msgstr "  -V, --version     ���������� ����������� ��������\n"

#: options.c:653
msgid "  -c, --check       check for messages without fetching\n"
msgstr "  -c, --check       ������� ��� �������� ����� ��������\n"

#: options.c:654
msgid "  -s, --silent      work silently\n"
msgstr "  -s, --silent      ������� �������\n"

#: options.c:655
msgid "  -v, --verbose     work noisily (diagnostic output)\n"
msgstr "  -v, --verbose     ��������� ������� (����������� ������)\n"

#: options.c:656
msgid "  -d, --daemon      run as a daemon once per n seconds\n"
msgstr "  -d, --daemon      �������� ��� �������� ��� ���� ���� n �������\n"

#: options.c:657
msgid "  -N, --nodetach    don't detach daemon process\n"
msgstr "  -N, --nodetach    ������� ��������� ���������� ��� �������\n"

#: options.c:658
msgid "  -q, --quit        kill daemon process\n"
msgstr "  -q, --quit        ����������� ���������� �������\n"

#: options.c:659
msgid "  -L, --logfile     specify logfile name\n"
msgstr "  -L, --logfile     ���������� �������� ������� ����������\n"

#: options.c:660
msgid "      --syslog      use syslog(3) for most messages when running as a daemon\n"
msgstr ""
"      --syslog      ������������� ��� syslog(3) ��� �� ����������� ��������\n"
"                    ���� ��������� ��� ��������\n"

#: options.c:661
msgid "      --invisible   don't write Received & enable host spoofing\n"
msgstr "      --invisible   �� ������� Received & ���������� ��� ��������� ����������\n"

#: options.c:662
msgid "  -f, --fetchmailrc specify alternate run control file\n"
msgstr "  -f, --fetchmailrc ������� ������������ ������� �����������\n"

#: options.c:663
msgid "  -i, --idfile      specify alternate UIDs file\n"
msgstr "  -i, --idfile      ������� ������������ ������� �� UIDs\n"

#: options.c:664
msgid "      --postmaster  specify recipient of last resort\n"
msgstr "      --postmaster  ������� ��������� ��� ��������� ����\n"

#: options.c:665
msgid "      --nobounce    redirect bounces from user to postmaster.\n"
msgstr "      --nobounce    �������������� ��� ����������� ��� ������ �� postmaster.\n"

#: options.c:667
msgid "  -I, --interface   interface required specification\n"
msgstr "  -I, --interface   ������������ ������� interface\n"

#: options.c:668
msgid "  -M, --monitor     monitor interface for activity\n"
msgstr "  -M, --monitor     ������������� interface ��� �������������\n"

#: options.c:671
msgid "      --ssl         enable ssl encrypted session\n"
msgstr "      --ssl         ������������ ssl ���������������� ���������\n"

#: options.c:672
msgid "      --sslkey      ssl private key file\n"
msgstr "      --sslkey      ��������� ������ �������� ssl\n"

#: options.c:673
msgid "      --sslcert     ssl client certificate\n"
msgstr "      --sslcert     ������������� ������ ssl\n"

#: options.c:674
msgid "      --sslproto    force ssl protocol (ssl2/ssl3/tls1)\n"
msgstr "      --sslproto    ������������ ����������� ssl (ssl2/ssl3/tls1)\n"

#: options.c:676
msgid "      --plugin      specify external command to open connection\n"
msgstr "      --plugin      ���������� ���������� ������� ��� ������� ��������\n"

#: options.c:677
msgid "      --plugout     specify external command to open smtp connection\n"
msgstr "      --plugout     ���������� ���������� ������� ��� ������� smtp ��������\n"

#: options.c:679
msgid "  -p, --protocol    specify retrieval protocol (see man page)\n"
msgstr "  -p, --protocol    ���������� ����������� ��������� (����� ������ man)\n"

#: options.c:680
msgid "  -U, --uidl        force the use of UIDLs (pop3 only)\n"
msgstr "  -U, --uidl        ������������ ������ ��� UIDL (pop3 ����)\n"

#: options.c:681
msgid "  -P, --port        TCP/IP service port to connect to\n"
msgstr "  -P, --port        ���� ��������� TCP/IP ��� ������� �� ����\n"

#: options.c:682
msgid "      --auth        authentication type (password/kerberos/ssh/otp)\n"
msgstr "      --auth        ����� �������������� (password/kerberos/ssh/otp)\n"

#: options.c:683
msgid "  -t, --timeout     server nonresponse timeout\n"
msgstr "  -t, --timeout     ������ ����� ��-��������� ����������\n"

#: options.c:684
msgid "  -E, --envelope    envelope address header\n"
msgstr "  -E, --envelope    ������� ������������ ����������\n"

#: options.c:685
msgid "  -Q, --qvirtual    prefix to remove from local user id\n"
msgstr "  -Q, --qvirtual    ������� ��� �������� ��� �� ������ user id\n"

#: options.c:686
msgid "      --principal   mail service principal\n"
msgstr "      --principal   ���������� ��������� �������������\n"

#: options.c:687
msgid "      --tracepolls  add poll-tracing information to Received header\n"
msgstr "      --tracepolls  �������� ����������� ����������-�������� ��� Received\n"

#: options.c:689
msgid "  -u, --username    specify users's login on server\n"
msgstr "  -u, --username    ������� ��� user login ��� �����������\n"

#: options.c:690
msgid "  -a, --all         retrieve old and new messages\n"
msgstr "  -a, --all         ���� ������ ��� ���� ���������\n"

#: options.c:691
msgid "  -K, --nokeep      delete new messages after retrieval\n"
msgstr "  -K, --nokeep      �������� ���� ��������� ���� ��� ����\n"

#: options.c:692
msgid "  -k, --keep        save new messages after retrieval\n"
msgstr "  -k, --keep        ���������� ���� ��������� ���� ��� ����\n"

#: options.c:693
msgid "  -F, --flush       delete old messages from server\n"
msgstr "  -F, --flush       ������ ��������� ��� �� �����������\n"

#: options.c:694
msgid "  -n, --norewrite   don't rewrite header addresses\n"
msgstr "  -n, --norewrite   ��� ����������� ��� ������������ �����������\n"

#: options.c:695
msgid "  -l, --limit       don't fetch messages over given size\n"
msgstr "  -l, --limit       ��� ���� ��������� ���� ��� �� ������� �������\n"

#: options.c:696
msgid "  -w, --warnings    interval between warning mail notification\n"
msgstr "  -w, --warnings    �������� ������ ������������� ��������� ��������������\n"

#: options.c:699
msgid "  -T, --netsec      set IP security request\n"
msgstr "  -T, --netsec      ������� ������� ��������� IP\n"

#: options.c:701
msgid "  -S, --smtphost    set SMTP forwarding host\n"
msgstr "  -S, --smtphost    ������� ���������� SMTP ��� ��������\n"

#: options.c:702
msgid "      --fetchdomains fetch mail for specified domains\n"
msgstr "      --fetchdomains ���� ������������� ��� ������������ ��������\n"

#: options.c:703
msgid "  -D, --smtpaddress set SMTP delivery domain to use\n"
msgstr "  -D, --smtpaddress ������� �������� ��������� SMTP ��� �����\n"

#: options.c:704
msgid "      --smtpname    set SMTP full name username@domain\n"
msgstr "      --smtpname    ������� ����� ��������SMTP username@domain\n"

#: options.c:705
msgid "  -Z, --antispam,   set antispam response values\n"
msgstr "  -Z, --antispam,   ������� ����� ���������� ����-spam\n"

#: options.c:706
msgid "  -b, --batchlimit  set batch limit for SMTP connections\n"
msgstr "  -b, --batchlimit  ������� ����� ������ ��� ��� ��������� SMTP\n"

#: options.c:707
msgid "  -B, --fetchlimit  set fetch limit for server connections\n"
msgstr "  -B, --fetchlimit  ������� ����� ����� ��� ��� ��������� �����������\n"

#: options.c:708
msgid "  -e, --expunge     set max deletions between expunges\n"
msgstr "  -e, --expunge     ������� �������� ��������� ������ ����������\n"

#: options.c:709
msgid "  -m, --mda         set MDA to use for forwarding\n"
msgstr "  -m, --mda         ������� MDA ��� ����� �� ��������\n"

#: options.c:710
msgid "      --bsmtp       set output BSMTP file\n"
msgstr "      --bsmtp       ������� ������� ������ BSMTP\n"

#: options.c:711
msgid "      --lmtp        use LMTP (RFC2033) for delivery\n"
msgstr "      --lmtp        ������� LMTP (RFC2033) ��� ��������\n"

#: options.c:712
msgid "  -r, --folder      specify remote folder name\n"
msgstr "  -r, --folder      ���������� �������� �������������� �������\n"

#: options.c:713
msgid "      --showdots    show progress dots even in logfiles\n"
msgstr "      --showdots    �������� ������� ������� ��� ��� ������ ����������\n"

#: pop3.c:416
msgid "Required APOP timestamp not found in greeting\n"
msgstr "�� ������� � ����������� ����������� ��� ����������\n"

#: pop3.c:425
msgid "Timestamp syntax error in greeting\n"
msgstr "���������� ������ ������������ ��� ����������\n"

#: pop3.c:447
msgid "Undefined protocol request in POP3_auth\n"
msgstr "�� �������� ������ ����������� ��� POP3_auth\n"

#: pop3.c:455
msgid "lock busy!  Is another session active?\n"
msgstr "������������ ��������!  ����� ������ ������ ���� ��������;\n"

#: pop3.c:563
msgid "Messages inserted into list on server. Cannot handle this.\n"
msgstr "�� �������� ����������� �� ����� ��� �����������. �������� ��������� �����.\n"

#: pop3.c:634
msgid "protocol error\n"
msgstr "������ �����������\n"

#: pop3.c:647
msgid "protocol error while fetching UIDLs\n"
msgstr "������ ����������� ���� �� ���� UIDL\n"

#: pop3.c:930
msgid "Option --remote is not supported with POP3\n"
msgstr "� ������� --remote ��� ������������� �� �� POP3\n"

#: rcfile_y.y:123
msgid "server option after user options"
msgstr "������� ����������� ���� ��� �������� ������"

#: rcfile_y.y:170
msgid "SDPS not enabled."
msgstr "�� SDPS ��� ���� �������������."

#: rcfile_y.y:218
msgid "invalid security request"
msgstr "�� ������ ������ ���������"

#: rcfile_y.y:224
msgid "network-security support disabled"
msgstr "���������������� � ���������� ��������-�������"

#: rcfile_y.y:231
msgid "fetchmail: interface option is only supported under Linux (without IPv6) and FreeBSD\n"
msgstr "fetchmail: � ������� interface ������������� ���� ��� Linux (����� IPv6) ��� �� FreeBSD\n"

#: rcfile_y.y:238
msgid "fetchmail: monitor option is only supported under Linux (without IPv6) and FreeBSD\n"
msgstr "fetchmail: � ������� monitor ������������� ���� ��� Linux (����� IPv6) ��� �� FreeBSD\n"

#: rcfile_y.y:350
msgid "SSL is not enabled"
msgstr "�� SSL ��� ���� �������������"

#: rcfile_y.y:396
msgid "end of input"
msgstr "����� �������"

#: rcfile_y.y:433
#, c-format
msgid "File %s must be a regular file.\n"
msgstr "�� ������ %s ������ �� ����� �������� ������.\n"

#: rcfile_y.y:440
#, c-format
msgid "File %s must have no more than -rwx--x--- (0710) permissions.\n"
msgstr "�� ������ %s �� ������ �� ���� ���� ��� -rwx--x--- (0710) ������.\n"

#: rcfile_y.y:452
#, c-format
msgid "File %s must be owned by you.\n"
msgstr "�� ������ %s ������ �� ������ �� ����.\n"

#: report.c:81
msgid "Unknown system error"
msgstr "������� ������ ����������"

#: report.c:108
#, c-format
msgid "%s (log message incomplete)"
msgstr "%s (�������� ������ ����������)"

#: report.c:266 report.c:294 report.c:366 report.c:394
msgid "partial error message buffer overflow"
msgstr "������ ������ ���������� ��������� ������"

#: rfc822.c:73
#, c-format
msgid "About to rewrite %s"
msgstr "�������� �� ������������ %s"

#: rfc822.c:209
#, c-format
msgid "Rewritten version is %s\n"
msgstr "������������ ������ ����� %s\n"

#: rpa.c:116
msgid "Success"
msgstr "��������"

#: rpa.c:117
msgid "Restricted user (something wrong with account)"
msgstr "������������� ������� (���� ��������� �� �� ����������)"

#: rpa.c:118
msgid "Invalid userid or passphrase"
msgstr "�� ������ userid � ����� ������"

#: rpa.c:119
msgid "Deity error"
msgstr "������ ��������"

#: rpa.c:172
msgid "RPA token 2: Base64 decode error\n"
msgstr "RPA �������� 2: ������ ���������������� Base64\n"

#: rpa.c:183
#, c-format
msgid "Service chose RPA version %d.%d\n"
msgstr "� �������� ������� ������ RPA %d.%d\n"

#: rpa.c:189
#, c-format
msgid "Service challenge (l=%d):\n"
msgstr "�������� ��������� (l=%d):\n"

#: rpa.c:198
#, c-format
msgid "Service timestamp %s\n"
msgstr "����������� ��������� %s\n"

#: rpa.c:203
msgid "RPA token 2 length error\n"
msgstr "������ ������ RPA ��������� 2\n"

#: rpa.c:207
#, c-format
msgid "Realm list: %s\n"
msgstr "����� ������������: %s\n"

#: rpa.c:211
msgid "RPA error in service@realm string\n"
msgstr "������ RPA ��� ������������ service@realm\n"

#: rpa.c:248
msgid "RPA token 4: Base64 decode error\n"
msgstr "RPA �������� 4: ������ ���������������� Base64\n"

#: rpa.c:259
#, c-format
msgid "User authentication (l=%d):\n"
msgstr "������������� ������ (l=%d):\n"

#: rpa.c:273
#, c-format
msgid "RPA status: %02X\n"
msgstr "��������� RPA: %02X\n"

#: rpa.c:279
msgid "RPA token 4 length error\n"
msgstr "������ ������ RPA �������� 4\n"

#: rpa.c:286
#, c-format
msgid "RPA rejects you: %s\n"
msgstr "�� RPA ��� ����������: %s\n"

#: rpa.c:288
msgid "RPA rejects you, reason unknown\n"
msgstr "�� RPA ��� ����������, ������� �����\n"

#: rpa.c:294
#, c-format
msgid "RPA User Authentication length error: %d\n"
msgstr "������ ������ �������������� ������ RPA: %d\n"

#: rpa.c:299
#, c-format
msgid "RPA Session key length error: %d\n"
msgstr "������ ������ �������� RPA ���������: %d\n"

#: rpa.c:305
msgid "RPA _service_ auth fail. Spoof server?\n"
msgstr "RPA _service_ auth �������. �������� �����������;\n"

#: rpa.c:310
msgid "Session key established:\n"
msgstr "������������� ������ ���������:\n"

#: rpa.c:341
msgid "RPA authorisation complete\n"
msgstr "������������� RPA ������������\n"

#: rpa.c:370
msgid "Get response\n"
msgstr "���� ���������\n"

#: rpa.c:400
#, c-format
msgid "Get response return %d [%s]\n"
msgstr "� ���� ��������� ��������� %d [%s]\n"

#: rpa.c:463
msgid "Hdr not 60\n"
msgstr "Hdr ��� 60\n"

#: rpa.c:484
msgid "Token length error\n"
msgstr "������ ������ ���������\n"

#: rpa.c:489
#, c-format
msgid "Token Length %d disagrees with rxlen %d\n"
msgstr "�� ����� ��������� %d �������� �� �� rxlen %d\n"

#: rpa.c:495
msgid "Mechanism field incorrect\n"
msgstr "���������� ���������� ������\n"

#: rpa.c:532
#, c-format
msgid "dec64 error at char %d: %x\n"
msgstr "������ dec64 ��� ��������� %d: %x\n"

#: rpa.c:547
msgid "Inbound binary data:\n"
msgstr "����������� ������� ��������:\n"

#: rpa.c:585
msgid "Outbound data:\n"
msgstr "���������� ��������:\n"

#: rpa.c:651
msgid "RPA String too long\n"
msgstr "������������ RPA ���������� ������\n"

#: rpa.c:656
msgid "Unicode:\n"
msgstr "Unicode:\n"

#: rpa.c:718
msgid "RPA Failed open of /dev/urandom. This shouldn't\n"
msgstr "�� RPA ������� �� ������� �� /dev/urandom. ���� �� ������\n"

#: rpa.c:719
msgid "    prevent you logging in, but means you\n"
msgstr "    �� ��� ��������� �� ������, ���� �������� ���\n"

#: rpa.c:720
msgid "    cannot be sure you are talking to the\n"
msgstr "    �� �������� �� ����� �������� ��� ������ ����\n"

#: rpa.c:721
msgid "    service that you think you are (replay\n"
msgstr "    �������� ��� �������� (��������� ����������\n"

#: rpa.c:722
msgid "    attacks by a dishonest service are possible.)\n"
msgstr "    ��� ��� ����� �������� ����� �������.)\n"

#: rpa.c:733
msgid "User challenge:\n"
msgstr "�������� ������:\n"

#: rpa.c:891
msgid "MD5 being applied to data block:\n"
msgstr "�� MD5 ����������� ��� ����� ��������:\n"

#: rpa.c:904
msgid "MD5 result is: \n"
msgstr "���������� MD5: \n"

#: sink.c:212
#, c-format
msgid "forwarding to %s\n"
msgstr "���������� ��� %s\n"

#: sink.c:314
msgid "SMTP: (bounce-message body)\n"
msgstr "SMTP: (bounce-message ����)\n"

#. this will usually go to sylog...
#: sink.c:317
#, c-format
msgid "mail from %s bounced to %s\n"
msgstr "� ������������ ��� %s ��������� ��� %s\n"

#: sink.c:422
#, c-format
msgid "Saved error is still %d\n"
msgstr "�� ������������ ������ ����� ����� %d\n"

#: sink.c:477 sink.c:555
#, c-format
msgid "%cMTP error: %s\n"
msgstr "%cMTP ������: %s\n"

#: sink.c:704
msgid "BSMTP file open or preamble write failed\n"
msgstr "������� ������ BSMTP � ������� � ���������� �������\n"

#: sink.c:922
#, c-format
msgid "%cMTP listener doesn't like recipient address `%s'\n"
msgstr "� �������� %cMTP ����������� �� ��������� ��������� `%s'\n"

#: sink.c:929
#, c-format
msgid "%cMTP listener doesn't really like recipient address `%s'\n"
msgstr "� �������� %cMTP ���������� ����������� �� ��������� ��������� `%s'\n"

#: sink.c:967
msgid "no address matches; no postmaster set.\n"
msgstr "������ ��������� ���������� ��� ���� ������� postmaster.\n"

#: sink.c:979
#, c-format
msgid "can't even send to %s!\n"
msgstr "�������� ��������� ����� ��� ��� %s!\n"

#: sink.c:985
#, c-format
msgid "no address matches; forwarding to %s.\n"
msgstr "������ ��������� ���������� �������� ��� %s.\n"

#: sink.c:1138
#, c-format
msgid "about to deliver with: %s\n"
msgstr "�������� �� ����������� ��: %s\n"

#: sink.c:1162
msgid "MDA open failed\n"
msgstr "������� MDA �������\n"

#: sink.c:1199
#, c-format
msgid "%cMTP connect to %s failed\n"
msgstr "������� %cMTP ��� %s �������\n"

#: sink.c:1223
#, c-format
msgid "can't raise the listener; falling back to %s"
msgstr "�������� �������� ������޷ ����� ��� %s"

#: sink.c:1279
#, c-format
msgid "MDA died of signal %d\n"
msgstr "�� MDA �������� ��� ���� %d\n"

#: sink.c:1282
#, c-format
msgid "MDA returned nonzero status %d\n"
msgstr "�� MDA ��������� ��-�������� ��������� %d\n"

#: sink.c:1285
#, c-format
msgid "Strange: MDA pclose returned %d, cannot handle at %s:%d\n"
msgstr "��������: �� MDA pclose ��������� %d, �������� ��������� ��� %s:%d\n"

#: sink.c:1306
msgid "Message termination or close of BSMTP file failed\n"
msgstr "����������� ��������� � �������� ��� ������� BSMTP �������\n"

#: sink.c:1327
msgid "SMTP listener refused delivery\n"
msgstr "� �������� SMTP �������� �� �������\n"

#: sink.c:1357
msgid "LMTP delivery error on EOM\n"
msgstr "������ �������� LMTP ���  EOM\n"

#: sink.c:1360
#, c-format
msgid "Unexpected non-503 response to LMTP EOM: %s\n"
msgstr "�� ����������� �������� ���-503 ��� LMTP EOM: %s\n"

#: sink.c:1510
msgid ""
"--\n"
"\t\t\t\tThe Fetchmail Daemon\n"
msgstr ""
"--\n"
"\t\t\t\t� ��������  Fetchmail\n"

#: smtp.c:86
msgid "ESMTP CRAM-MD5 Authentication...\n"
msgstr "������������� ESMTP CRAM-MD5...\n"

#. Server rejects AUTH
#: smtp.c:93 smtp.c:153
msgid "Server rejected the AUTH command.\n"
msgstr "� ������������ �������� ��� ������ AUTH.\n"

#: smtp.c:101 smtp.c:160 smtp.c:170 smtp.c:176
msgid "Bad base64 reply from server.\n"
msgstr "��������� �������� BASE64 ��� �� �����������.\n"

#: smtp.c:105
#, c-format
msgid "Challenge decoded: %s\n"
msgstr "��������������� ���������: %s\n"

#: smtp.c:126
msgid "ESMTP PLAIN Authentication...\n"
msgstr "������������� ESMTP PLAIN...\n"

#: smtp.c:146
msgid "ESMTP LOGIN Authentication...\n"
msgstr "������������� ESMTP LOGIN...\n"

#: smtp.c:359 smtp.c:380
msgid "smtp listener protocol error\n"
msgstr "������ ����������� ������� smtp\n"

#: socket.c:107 socket.c:133
msgid "fetchmail: malloc failed\n"
msgstr "fetchmail: ������� �� malloc\n"

#: socket.c:165
msgid "fetchmail: socketpair failed\n"
msgstr "fetchmail: socketpair �������\n"

#. error
#: socket.c:171
msgid "fetchmail: fork failed\n"
msgstr "fetchmail: ������� �� fork\n"

#: socket.c:179
msgid "dup2 failed\n"
msgstr "dup2 �������\n"

#: socket.c:185
#, c-format
msgid "running %s (host %s service %s)\n"
msgstr "��������� %s (����������� %s �������� %s)\n"

#: socket.c:188
#, c-format
msgid "execvp(%s) failed\n"
msgstr "execvp(%s) �������\n"

#: socket.c:280
#, c-format
msgid "fetchmail: getaddrinfo(%s.%s)\n"
msgstr "fetchmail: getaddrinfo(%s.%s)\n"

#: socket.c:427
#, c-format
msgid "fetchmail: illegal address length received for host %s\n"
msgstr "fetchmail: ���� ��������� ������ ���������� ��� �� ���������� %s\n"

#: socket.c:733
#, c-format
msgid "Issuer Organization: %s\n"
msgstr "���������� ������: %s\n"

#: socket.c:735
msgid "Warning: Issuer Organization Name too long (possibly truncated).\n"
msgstr "�������������: ���������� ������ ����� ���������� ������ (������ �������).\n"

#: socket.c:737
msgid "Unknown Organization\n"
msgstr "�������� ����������\n"

#: socket.c:739
#, c-format
msgid "Issuer CommonName: %s\n"
msgstr "���������� ������: %s\n"

#: socket.c:741
msgid "Warning: Issuer CommonName too long (possibly truncated).\n"
msgstr "�������������: ���������� ������ ����� ���������� ������ (������ �������).\n"

#: socket.c:743
msgid "Unknown Issuer CommonName\n"
msgstr "������� ���������� ������\n"

#: socket.c:747
#, c-format
msgid "Server CommonName: %s\n"
msgstr "���������� �����������: %s\n"

#. Possible truncation. In this case, this is a DNS name, so this
#. * is really bad. We do not tolerate this even in the non-strict case.
#: socket.c:751
msgid "Bad certificate: Subject CommonName too long!\n"
msgstr "���� �������������: Subject ���������� ���������� ������!\n"

#: socket.c:767
#, c-format
msgid "Server CommonName mismatch: %s != %s\n"
msgstr "�� ��������� �������������� ����������: %s != %s\n"

#: socket.c:773
msgid "Server name not set, could not verify certificate!\n"
msgstr "��� ���� ������� ����� �����������, �������� ����������� ��������������!\n"

#: socket.c:778
msgid "Unknown Server CommonName\n"
msgstr "������� ���������� ����������\n"

#: socket.c:780
msgid "Server name not specified in certificate!\n"
msgstr "��� ���� ������� ����� ���������� ��� �������������!\n"

#: socket.c:790
msgid "EVP_md5() failed!\n"
msgstr "EVP_md5() �������!\n"

#: socket.c:794
msgid "Out of memory!\n"
msgstr "������ � �����!\n"

#: socket.c:806
msgid "Digest text buffer too small!\n"
msgstr "� ��������� ����� �������� ��������� ����� ���������� �����!\n"

#: socket.c:812
#, c-format
msgid "%s key fingerprint: %s\n"
msgstr "%s ��������� ��������: %s\n"

#: socket.c:816
#, c-format
msgid "%s fingerprints match.\n"
msgstr "%s ����������� ����������.\n"

#: socket.c:819
#, c-format
msgid "%s fingerprints do not match!\n"
msgstr "%s ����������� ��� ����������!\n"

#: socket.c:827
#, c-format
msgid "Warning: server certificate verification: %s\n"
msgstr "�������������: ���������� �������������� ����������: %s\n"

#: socket.c:833
#, c-format
msgid "unknown issuer (first %d characters): %s\n"
msgstr "�������� ������� (������ %d ����������): %s\n"

#: socket.c:865
msgid "File descriptor out of range for SSL"
msgstr "� ����������� ������� ����� �������� ��� �� SSL"

#: socket.c:882
#, c-format
msgid "Invalid SSL protocol '%s' specified, using default (SSLv23).\n"
msgstr "����������� ����� ���������� SSL '%s', ����� �� ������� (SSLv23).\n"

#: socket.c:942
msgid "Certificate/fingerprint verification was somehow skipped!\n"
msgstr "���������� ��������������/������������ ����� �����������!\n"

#: socket.c:1014
msgid "Cygwin socket read retry\n"
msgstr "��������������� ��������� �������� Cygwin\n"

#: socket.c:1017
msgid "Cygwin socket read retry failed!\n"
msgstr "��������������� ��������� �������� Cygwin �������!\n"

#: transact.c:69
#, c-format
msgid "mapped %s to local %s\n"
msgstr "������������ ��� %s ��� ������ %s\n"

#: transact.c:133
#, c-format
msgid "passed through %s matching %s\n"
msgstr "������ ���� ��� %s ������������ �� %s\n"

#: transact.c:202
#, c-format
msgid ""
"analyzing Received line:\n"
"%s"
msgstr "������� ������� Received:%s"

#: transact.c:241
#, c-format
msgid "line accepted, %s is an alias of the mailserver\n"
msgstr "����� ������, �� %s ����� ��������� ��� ����. �������������\n"

#: transact.c:247
#, c-format
msgid "line rejected, %s is not an alias of the mailserver\n"
msgstr "�� ����� ������, �� %s ��� ����� ��������� ��� ����. �������������\n"

#: transact.c:321
msgid "no Received address found\n"
msgstr "��� �������� ����������� Received\n"

#: transact.c:330
#, c-format
msgid "found Received address `%s'\n"
msgstr "�������� ����������� Received `%s'\n"

#: transact.c:521
msgid "incorrect header line found while scanning headers\n"
msgstr "������� ����� ������ ������������ ���� ��� ������ ������������\n"

#: transact.c:1005
#, c-format
msgid "no local matches, forwarding to %s\n"
msgstr "��� �������� ������ �����, �������� ��� %s\n"

#: transact.c:1020
msgid "forwarding and deletion suppressed due to DNS errors\n"
msgstr "��������� ��������� ��� ��������� ���� ��������� ��� DNS\n"

#: transact.c:1156
msgid "writing RFC822 msgblk.headers\n"
msgstr "������� RFC822 msgblk.headers\n"

#: transact.c:1177
msgid "no recipient addresses matched declared local names"
msgstr "������ ��������� ��������� �� ��������� �� �� �������� ������ �������"

#: transact.c:1188
#, c-format
msgid "recipient address %s didn't match any local name"
msgstr "��������� ��������� %s ��� ��������� �� ������ ������ �����"

#: transact.c:1202
msgid "message has embedded NULs"
msgstr "�� ������ �������� ���������� NULs"

#: transact.c:1215
msgid "SMTP listener rejected local recipient addresses: "
msgstr "� �������� SMTP �������� ��� ����������� ������� ����������: "

#: transact.c:1250
msgid "message delimiter found while scanning headers\n"
msgstr "������� ��������� ��������� ���� ��� ������ ������������\n"

#: transact.c:1350
msgid "writing message text\n"
msgstr "������� �������� ���������\n"

#: uid.c:101
#, c-format
msgid "lstat: %s: %s\n"
msgstr "lstat: %s: %s\n"

#: uid.c:215
#, c-format
msgid "Old UID list from %s:"
msgstr "����� ����� UID ��� %s:"

#: uid.c:220 uid.c:231 uid.c:472
msgid " <empty>"
msgstr " <�����>"

#: uid.c:227
msgid "Scratch list of UIDs:"
msgstr "�������� ����� �� UID:"

#: uid.c:468
#, c-format
msgid "New UID list from %s:"
msgstr "��� ����� UID ��� %s:"

#: uid.c:496
msgid "swapping UID lists\n"
msgstr "��������� ������ UID\n"

#: uid.c:502
msgid "not swapping UID lists, no UIDs seen this query\n"
msgstr "��� ��������� ������ UID, �� ������� ������ UID �� ���� ��� �������\n"

#: uid.c:526
msgid "Deleting fetchids file.\n"
msgstr "�������� ������� fetchids.\n"

#: uid.c:532
msgid "Writing fetchids file.\n"
msgstr "������� ������� fetchids\n"

#: xmalloc.c:33
msgid "malloc failed\n"
msgstr "������� �� malloc\n"

#: xmalloc.c:47
msgid "realloc failed\n"
msgstr "������� �� realloc\n"