1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 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
|
# gftp.HEAD.po faylının Azərbaycan dilinə tərcüməsi
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# Mətin Əmirov <metin@karegen.com>, 2003
#
msgid ""
msgstr ""
"Project-Id-Version: gftp.HEAD\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-08-23 04:09+0200\n"
"PO-Revision-Date: 2003-08-24 22:22+0300\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani <gnome@azitt.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0.1\n"
#: lib/bookmark.c:38
#, c-format
msgid "Invalid URL %s\n"
msgstr ""
#: lib/cache.c:50 lib/cache.c:64 lib/cache.c:77
#, c-format
msgid "Error: Invalid line %s in cache index file\n"
msgstr ""
#: lib/cache.c:136 lib/local.c:542
#, c-format
msgid "Error: Could not make directory %s: %s\n"
msgstr ""
#: lib/cache.c:160
#, c-format
msgid "Error: Cannot create temporary file: %s\n"
msgstr ""
#: lib/cache.c:182 lib/cache.c:231 lib/local.c:98 lib/local.c:213
#: lib/misc.c:292 lib/misc.c:298 lib/rfc2068.c:263 lib/sshv2.c:997
#, c-format
msgid "Error closing file descriptor: %s\n"
msgstr ""
#: lib/cache.c:249 lib/local.c:132 lib/local.c:141 lib/local.c:188
#, c-format
msgid "Error: Cannot seek on file %s: %s\n"
msgstr ""
#: lib/config_file.c:120 lib/config_file.c:672
#, c-format
msgid "gFTP Error: Bad bookmarks file name %s\n"
msgstr ""
#: lib/config_file.c:129
#, c-format
msgid "Warning: Cannot find master bookmark file %s\n"
msgstr ""
#: lib/config_file.c:140 lib/config_file.c:678
#, c-format
msgid "gFTP Error: Cannot open bookmarks file %s: %s\n"
msgstr ""
#: lib/config_file.c:229 lib/config_file.c:251
#, c-format
msgid "gFTP Warning: Skipping line %d in bookmarks file: %s\n"
msgstr ""
#: lib/config_file.c:281
#, c-format
msgid "gFTP Warning: Line %d doesn't have enough arguments\n"
msgstr ""
#: lib/config_file.c:442
msgid ""
"This section specifies which hosts are on the local subnet and won't need to "
"go out the proxy server (if available). Syntax: dont_use_proxy=.domain or "
"dont_use_proxy=network number/netmask"
msgstr ""
#: lib/config_file.c:445
msgid ""
"ext=file extenstion:XPM file:Ascii or Binary (A or B):viewer program. Note: "
"All arguments except the file extension are optional"
msgstr ""
#: lib/config_file.c:523 lib/config_file.c:750
#, c-format
msgid "gFTP Error: Bad config file name %s\n"
msgstr ""
#: lib/config_file.c:534
#, c-format
msgid "gFTP Error: Could not make directory %s: %s\n"
msgstr ""
#: lib/config_file.c:544
#, c-format
msgid "gFTP Error: Cannot find master config file %s\n"
msgstr ""
#: lib/config_file.c:546
msgid "Did you do a make install?\n"
msgstr ""
#: lib/config_file.c:555 lib/config_file.c:756
#, c-format
msgid "gFTP Error: Cannot open config file %s: %s\n"
msgstr ""
#: lib/config_file.c:594
#, c-format
msgid "Terminating due to parse errors at line %d in the config file\n"
msgstr ""
#: lib/config_file.c:600
#, c-format
msgid "gFTP Warning: Skipping line %d in config file: %s\n"
msgstr ""
#: lib/config_file.c:607
#, c-format
msgid "gFTP Error: Bad log file name %s\n"
msgstr ""
#: lib/config_file.c:613
#, c-format
msgid "gFTP Warning: Cannot open %s for writing: %s\n"
msgstr ""
#: lib/config_file.c:668
msgid ""
"Bookmarks file for gFTP. Copyright (C) 1998-2003 Brian Masney <masneyb@gftp."
"org>. Warning: Any comments that you add to this file WILL be overwritten"
msgstr ""
#: lib/config_file.c:763
msgid ""
"Config file for gFTP. Copyright (C) 1998-2003 Brian Masney <masneyb@gftp."
"org>. Warning: Any comments that you add to this file WILL be overwritten. "
"If a entry has a (*) in it's comment, you can't change it inside gFTP"
msgstr ""
#: lib/config_file.c:1122 lib/rfc2068.c:557 lib/rfc2068.c:558
msgid "<unknown>"
msgstr ""
#: lib/config_file.c:1198 lib/config_file.c:1259 lib/config_file.c:1300
#: lib/config_file.c:1332
#, c-format
msgid "FATAL gFTP Error: Config option '%s' not found in global hash table\n"
msgstr ""
#: lib/https.c:89
msgid ""
"HTTPS Support unavailable since SSL support was not compiled in. Aborting "
"connection.\n"
msgstr ""
#: lib/local.c:67 lib/local.c:472
#, c-format
msgid "Could not change local directory to %s: %s\n"
msgstr ""
#: lib/local.c:81 lib/local.c:457
#, c-format
msgid "Could not get current working directory: %s\n"
msgstr ""
#: lib/local.c:179
#, c-format
msgid "Error: Cannot truncate local file %s: %s\n"
msgstr ""
#: lib/local.c:412
#, c-format
msgid "Could not get local directory listing %s: %s\n"
msgstr ""
#: lib/local.c:449
#, c-format
msgid "Successfully changed local directory to %s\n"
msgstr ""
#: lib/local.c:489 lib/local.c:512 src/gtk/transfer.c:907
#: src/gtk/view_dialog.c:301
#, c-format
msgid "Successfully removed %s\n"
msgstr ""
#: lib/local.c:495
#, c-format
msgid "Error: Could not remove directory %s: %s\n"
msgstr ""
#: lib/local.c:518 src/gtk/transfer.c:911 src/gtk/view_dialog.c:305
#, c-format
msgid "Error: Could not remove file %s: %s\n"
msgstr ""
#: lib/local.c:535
#, c-format
msgid "Successfully made directory %s\n"
msgstr ""
#: lib/local.c:561
#, c-format
msgid "Successfully renamed %s to %s\n"
msgstr ""
#: lib/local.c:568
#, c-format
msgid "Error: Could not rename %s to %s: %s\n"
msgstr ""
#: lib/local.c:591
#, c-format
msgid "Successfully changed mode of %s to %d\n"
msgstr ""
#: lib/local.c:598
#, c-format
msgid "Error: Could not change mode of %s to %d: %s\n"
msgstr ""
#: lib/local.c:690
msgid "local filesystem"
msgstr ""
#: lib/misc.c:261 lib/misc.c:268 lib/protocols.c:2514
#, c-format
msgid "Error: Cannot open local file %s: %s\n"
msgstr ""
#: lib/misc.c:278 lib/protocols.c:2232 lib/sslcommon.c:467
#, c-format
msgid "Error: Could not write to socket: %s\n"
msgstr ""
#: lib/misc.c:286 lib/protocols.c:2160 lib/sslcommon.c:421
#, c-format
msgid "Error: Could not read from socket: %s\n"
msgstr ""
#: lib/misc.c:442
msgid "usage: gftp [[protocol://][user[:pass]@]site[:port][/directory]]\n"
msgstr ""
#: lib/options.h:24 lib/rfc959.c:24
msgid "none"
msgstr "yoxdur"
#: lib/options.h:24
msgid "file"
msgstr ""
#: lib/options.h:24
msgid "size"
msgstr "böyüklük"
#: lib/options.h:25
msgid "user"
msgstr ""
#: lib/options.h:25
msgid "group"
msgstr "qrup"
#: lib/options.h:26
msgid "datetime"
msgstr ""
#: lib/options.h:26
msgid "attribs"
msgstr ""
#: lib/options.h:28
msgid "descending"
msgstr ""
#: lib/options.h:28
msgid "ascending"
msgstr ""
#: lib/options.h:34
msgid "General"
msgstr "Ümumi"
#: lib/options.h:37
msgid "View program:"
msgstr ""
#: lib/options.h:38
msgid ""
"The default program used to view files. If this is blank, the internal file "
"viewer will be used"
msgstr ""
#: lib/options.h:40
msgid "Edit program:"
msgstr ""
#: lib/options.h:41
msgid "The default program used to edit files."
msgstr ""
#: lib/options.h:42
msgid "Startup Directory:"
msgstr ""
#: lib/options.h:44
msgid "The default directory gFTP will go to on startup"
msgstr ""
#: lib/options.h:45
msgid "Max Log Window Size:"
msgstr ""
#: lib/options.h:47
msgid "The maximum size of the log window in bytes for the GTK+ port"
msgstr ""
#: lib/options.h:49
msgid "Remote Character Sets:"
msgstr ""
#: lib/options.h:51
msgid ""
"This is a comma separated list of charsets to try to convert the remote "
"messages to the current locale"
msgstr ""
#: lib/options.h:53
msgid "Cache TTL:"
msgstr ""
#: lib/options.h:56
msgid "The number of seconds to keep cache entries before they expire."
msgstr ""
#: lib/options.h:59
msgid "Append file transfers"
msgstr ""
#: lib/options.h:61
msgid "Append new file transfers onto existing ones"
msgstr ""
#: lib/options.h:62
msgid "Do one transfer at a time"
msgstr ""
#: lib/options.h:64
msgid "Do only one transfer at a time?"
msgstr ""
#: lib/options.h:65
msgid "Overwrite by Default"
msgstr ""
#: lib/options.h:68
msgid "Overwrite files by default or set to resume file transfers"
msgstr ""
#: lib/options.h:70
msgid "Preserve file permissions"
msgstr ""
#: lib/options.h:73
msgid "Preserve file permissions of transfered files"
msgstr ""
#: lib/options.h:75
msgid "Refresh after each file transfer"
msgstr ""
#: lib/options.h:78
msgid "Refresh the listbox after each file is transfered"
msgstr ""
#: lib/options.h:80
msgid "Sort directories first"
msgstr ""
#: lib/options.h:83
msgid "Put the directories first then the files"
msgstr ""
#: lib/options.h:84
msgid "Show hidden files"
msgstr "Gizli faylları göstər"
#: lib/options.h:87
msgid "Show hidden files in the listboxes"
msgstr ""
#: lib/options.h:89 src/gtk/options_dialog.c:1048
#: src/gtk/options_dialog.c:1141
msgid "Network"
msgstr "Şəbəkə"
#: lib/options.h:91
msgid "Network timeout:"
msgstr ""
#: lib/options.h:94
msgid "The timeout waiting for network input/output. This is NOT an idle timeout."
msgstr ""
#: lib/options.h:96
msgid "Connect retries:"
msgstr ""
#: lib/options.h:99
msgid "The number of auto-retries to do. Set this to 0 to retry indefinately"
msgstr ""
#: lib/options.h:101
msgid "Retry sleep time:"
msgstr ""
#: lib/options.h:104
msgid "The number of seconds to wait between retries"
msgstr ""
#: lib/options.h:105
msgid "Max KB/S:"
msgstr ""
#: lib/options.h:108
msgid "The maximum KB/s a file transfer can get. (Set to 0 to disable)"
msgstr ""
#: lib/options.h:111
msgid "Default Protocol:"
msgstr ""
#: lib/options.h:113
msgid "This specifies the default protocol to use"
msgstr ""
#: lib/options.h:117
msgid ""
"This defines what will happen when you double click a file in the file "
"listboxes. 0=View file 1=Edit file 2=Transfer file"
msgstr ""
#: lib/options.h:120
msgid "The default width of the local files listbox"
msgstr ""
#: lib/options.h:123
msgid "The default width of the remote files listbox"
msgstr ""
#: lib/options.h:126
msgid "The default height of the local/remote files listboxes"
msgstr ""
#: lib/options.h:129
msgid "The default height of the transfer listbox"
msgstr ""
#: lib/options.h:132
msgid "The default height of the logging window"
msgstr ""
#: lib/options.h:135
msgid ""
"The width of the filename column in the transfer window. Set this to 0 to "
"have this column automagically resize."
msgstr ""
#: lib/options.h:139 lib/options.h:145
msgid "The default column to sort by"
msgstr ""
#: lib/options.h:142 lib/options.h:148
msgid "Sort ascending or descending"
msgstr ""
#: lib/options.h:152 lib/options.h:170
msgid ""
"The width of the filename column in the file listboxes. Set this to 0 to "
"have this column automagically resize. Set this to -1 to disable this column"
msgstr ""
#: lib/options.h:155 lib/options.h:173
msgid ""
"The width of the size column in the file listboxes. Set this to 0 to have "
"this column automagically resize. Set this to -1 to disable this column"
msgstr ""
#: lib/options.h:158 lib/options.h:176
msgid ""
"The width of the user column in the file listboxes. Set this to 0 to have "
"this column automagically resize. Set this to -1 to disable this column"
msgstr ""
#: lib/options.h:161 lib/options.h:179
msgid ""
"The width of the group column in the file listboxes. Set this to 0 to have "
"this column automagically resize. Set this to -1 to disable this column"
msgstr ""
#: lib/options.h:164 lib/options.h:182
msgid ""
"The width of the date column in the file listboxes. Set this to 0 to have "
"this column automagically resize. Set this to -1 to disable this column"
msgstr ""
#: lib/options.h:167 lib/options.h:185
msgid ""
"The width of the attribs column in the file listboxes. Set this to 0 to have "
"this column automagically resize. Set this to -1 to disable this column"
msgstr ""
#: lib/options.h:188
msgid "The color of the commands that are sent to the server"
msgstr ""
#: lib/options.h:191
msgid "The color of the commands that are received from the server"
msgstr ""
#: lib/options.h:194
msgid "The color of the error messages"
msgstr ""
#: lib/options.h:197
msgid "The color of the rest of the log messages"
msgstr ""
#: lib/options.h:212 src/gtk/bookmarks.c:855
msgid "Bookmark"
msgstr "Nişan"
#: lib/protocols.c:168 lib/protocols.c:193
#, c-format
msgid "File transfer will be throttled to %.2f KB/s\n"
msgstr ""
#: lib/protocols.c:322
#, c-format
msgid "Loading directory listing %s from cache\n"
msgstr ""
#: lib/protocols.c:467
#, c-format
msgid "Error: Cannot write to cache: %s\n"
msgstr ""
#: lib/protocols.c:499
#, c-format
msgid "Error: Could not find bookmark %s\n"
msgstr ""
#: lib/protocols.c:506
#, c-format
msgid "Bookmarks Error: The bookmark entry %s does not have a hostname\n"
msgstr ""
#: lib/protocols.c:609
#, c-format
msgid "The protocol '%s' is currently not supported.\n"
msgstr ""
#: lib/protocols.c:926 lib/protocols.c:941 lib/protocols.c:1757
#: lib/protocols.c:1866
#, c-format
msgid "Looking up %s\n"
msgstr ""
#: lib/protocols.c:932 lib/protocols.c:947 lib/protocols.c:1762
#: lib/protocols.c:1871
#, c-format
msgid "Cannot look up hostname %s: %s\n"
msgstr ""
#: lib/protocols.c:1204 lib/protocols.c:1205 lib/protocols.c:1264
#: lib/protocols.c:1271 lib/protocols.c:1350 lib/protocols.c:1351
#: lib/protocols.c:1385
msgid "unknown"
msgstr "namə'lum"
#: lib/protocols.c:1780 lib/protocols.c:1823 lib/rfc959.c:589 lib/rfc959.c:736
#, c-format
msgid "Failed to create a socket: %s\n"
msgstr ""
#: lib/protocols.c:1786 lib/protocols.c:1885
#, c-format
msgid "Trying %s:%d\n"
msgstr ""
#: lib/protocols.c:1791 lib/protocols.c:1892
#, c-format
msgid "Cannot connect to %s: %s\n"
msgstr ""
#: lib/protocols.c:1847 lib/sshv2.c:895
#, c-format
msgid "Cannot look up service name %s/tcp. Please check your services file\n"
msgstr ""
#: lib/protocols.c:1909 lib/protocols.c:2523 lib/rfc959.c:598 lib/rfc959.c:745
#, c-format
msgid "Error: Cannot set close on exec flag: %s\n"
msgstr ""
#: lib/protocols.c:1916
#, c-format
msgid "Connected to %s:%d\n"
msgstr ""
#: lib/protocols.c:2140 lib/protocols.c:2211
#, c-format
msgid "Connection to %s timed out\n"
msgstr ""
#: lib/protocols.c:2280
#, c-format
msgid "Cannot get socket flags: %s\n"
msgstr ""
#: lib/protocols.c:2294
#, c-format
msgid "Cannot set socket to non-blocking: %s\n"
msgstr ""
#: lib/protocols.c:2420
#, c-format
msgid "Error: Remote site %s disconnected. Max retries reached...giving up\n"
msgstr ""
#: lib/protocols.c:2428
#, c-format
msgid "Error: Remote site %s disconnected. Will reconnect in %d seconds\n"
msgstr ""
#: lib/pty.c:288
#, c-format
msgid "Cannot create a socket pair: %s\n"
msgstr ""
#: lib/pty.c:307 lib/pty.c:364
#, c-format
msgid "Error: Cannot execute ssh: %s\n"
msgstr ""
#: lib/pty.c:320 lib/pty.c:375
#, c-format
msgid "Cannot fork another process: %s\n"
msgstr ""
#: lib/pty.c:338
#, c-format
msgid "Cannot open master pty %s: %s\n"
msgstr ""
#: lib/rfc2068.c:30 lib/rfc959.c:45
msgid "Proxy hostname:"
msgstr ""
#: lib/rfc2068.c:32 lib/rfc959.c:47
msgid "Firewall hostname"
msgstr ""
#: lib/rfc2068.c:33 lib/rfc959.c:48
msgid "Proxy port:"
msgstr "Vəkil qapısı:"
#: lib/rfc2068.c:35 lib/rfc959.c:50
msgid "Port to connect to on the firewall"
msgstr ""
#: lib/rfc2068.c:36 lib/rfc959.c:51
msgid "Proxy username:"
msgstr ""
#: lib/rfc2068.c:38 lib/rfc959.c:53
msgid "Your firewall username"
msgstr ""
#: lib/rfc2068.c:39 lib/rfc959.c:54
msgid "Proxy password:"
msgstr ""
#: lib/rfc2068.c:41 lib/rfc959.c:56
msgid "Your firewall password"
msgstr ""
#: lib/rfc2068.c:43
msgid "Use HTTP/1.1"
msgstr ""
#: lib/rfc2068.c:46
msgid "Do you want to use HTTP/1.1 or HTTP/1.0"
msgstr ""
#: lib/rfc2068.c:153 lib/rfc2068.c:835
#, c-format
msgid ""
"Received wrong response from server, disconnecting\n"
"Invalid chunk size '%s' returned by the remote server\n"
msgstr ""
#: lib/rfc2068.c:258 lib/rfc959.c:559 lib/sshv2.c:992
#, c-format
msgid "Disconnecting from site %s\n"
msgstr ""
#: lib/rfc2068.c:309
#, c-format
msgid "Starting the file transfer at offset %lld\n"
msgstr ""
#: lib/rfc2068.c:317
#, c-format
msgid "Starting the file transfer at offset %ld\n"
msgstr ""
#: lib/rfc2068.c:339
#, c-format
msgid "Cannot retrieve file %s\n"
msgstr ""
#: lib/rfc2068.c:429 lib/sshv2.c:1077
msgid "Retrieving directory listing...\n"
msgstr ""
#: lib/rfc2068.c:816
msgid ""
"Received wrong response from server, disconnecting\n"
"Expecting a carriage return and line feed before the chunk size in the "
"server response\n"
msgstr ""
#: lib/rfc2068.c:824
msgid ""
"Received wrong response from server, disconnecting\n"
"Expecting a carriage return and line feed after the chunk size in the server "
"response\n"
msgstr ""
#: lib/rfc959.c:25
msgid "SITE command"
msgstr ""
#: lib/rfc959.c:26
msgid "user@host"
msgstr ""
#: lib/rfc959.c:27
msgid "user@host:port"
msgstr ""
#: lib/rfc959.c:28
msgid "AUTHENTICATE"
msgstr ""
#: lib/rfc959.c:29
msgid "user@host port"
msgstr ""
#: lib/rfc959.c:30
msgid "user@host NOAUTH"
msgstr ""
#: lib/rfc959.c:31
msgid "HTTP Proxy"
msgstr ""
#: lib/rfc959.c:32
msgid "Custom"
msgstr "Xüsusi"
#: lib/rfc959.c:41
msgid "Email address:"
msgstr ""
#: lib/rfc959.c:43
msgid ""
"This is the password that will be used whenever you log into a remote FTP "
"server as anonymous"
msgstr ""
#: lib/rfc959.c:57
msgid "Proxy account:"
msgstr ""
#: lib/rfc959.c:59
msgid "Your firewall account (optional)"
msgstr ""
#: lib/rfc959.c:61
msgid "Proxy server type:"
msgstr ""
#: lib/rfc959.c:64
#, no-c-format
msgid ""
"This specifies how your proxy server expects us to log in. You can specify a "
"2 character replacement string prefixed by a % that will be replaced with "
"the proper data. The first character can be either p for proxy or h for the "
"host of the FTP server. The second character can be u (user), p (pass), h "
"(host), o (port) or a (account). For example, to specify the proxy user, you "
"can you type in %pu"
msgstr ""
#: lib/rfc959.c:67
msgid "Passive file transfers"
msgstr ""
#: lib/rfc959.c:70
msgid ""
"If this is enabled, then the remote FTP server will open up a port for the "
"data connection. If you are behind a firewall, you will need to enable this. "
"Generally, it is a good idea to keep this enabled unless you are connecting "
"to an older FTP server that doesn't support this. If this is disabled, then "
"gFTP will open up a port on the client side and the remote server will "
"attempt to connect to it."
msgstr ""
#: lib/rfc959.c:72
msgid "Resolve Remote Symlinks (LIST -L)"
msgstr ""
#: lib/rfc959.c:75
msgid ""
"The remote FTP server will attempt to resolve symlinks in the directory "
"listings. Generally, this is a good idea to leave enabled. The only time you "
"will want to disable this is if the remote FTP server doesn't support the -L "
"option to LIST"
msgstr ""
#: lib/rfc959.c:77
msgid "Transfer files in ASCII mode"
msgstr ""
#: lib/rfc959.c:80
msgid ""
"If you are transfering a text file from Windows to UNIX box or vice versa, "
"then you should enable this. Each system represents newlines differently for "
"text files. If you are transfering from UNIX to UNIX, then it is safe to "
"leave this off. If you are downloading binary data, you will want to disable "
"this."
msgstr ""
#: lib/rfc959.c:307 lib/rfc959.c:316 lib/rfc959.c:327
#, c-format
msgid "Received invalid response to PWD command: '%s'\n"
msgstr ""
#: lib/rfc959.c:627 lib/rfc959.c:637
#, c-format
msgid "Cannot find an IP address in PASV response '%s'\n"
msgstr ""
#: lib/rfc959.c:652 lib/rfc959.c:807
#, c-format
msgid "Cannot create a data connection: %s\n"
msgstr ""
#: lib/rfc959.c:664 lib/rfc959.c:685 lib/rfc959.c:832
#, c-format
msgid "Cannot get socket name: %s\n"
msgstr ""
#: lib/rfc959.c:675 lib/rfc959.c:822
#, c-format
msgid "Cannot bind a port: %s\n"
msgstr ""
#: lib/rfc959.c:694 lib/rfc959.c:841
#, c-format
msgid "Cannot listen on port %d: %s\n"
msgstr ""
#: lib/rfc959.c:756
msgid "Error: It doesn't look like we are connected via IPv6. Aborting connection.\n"
msgstr ""
#: lib/rfc959.c:785 lib/rfc959.c:794
#, c-format
msgid "Invalid EPSV response '%s'\n"
msgstr ""
#: lib/rfc959.c:851
#, c-format
msgid "Cannot get address of local socket: %s\n"
msgstr ""
#: lib/rfc959.c:923
#, c-format
msgid "Cannot accept connection from server: %s\n"
msgstr ""
#: lib/rfc959.c:1422
msgid "total"
msgstr ""
#: lib/rfc959.c:1424
#, c-format
msgid "Warning: Cannot parse listing %s\n"
msgstr ""
#: lib/sshv2.c:28
msgid "SSH"
msgstr ""
#: lib/sshv2.c:31
msgid "SSH Prog Name:"
msgstr ""
#: lib/sshv2.c:33
msgid "The path to the SSH executable"
msgstr ""
#: lib/sshv2.c:34
msgid "SSH Extra Params:"
msgstr ""
#: lib/sshv2.c:36
msgid "Extra parameters to pass to the SSH program"
msgstr ""
#: lib/sshv2.c:37
msgid "SSH2 sftp-server path:"
msgstr ""
#: lib/sshv2.c:39
msgid "Default remote SSH2 sftp-server path"
msgstr ""
#: lib/sshv2.c:41
msgid "Need SSH User/Pass"
msgstr ""
#: lib/sshv2.c:44
msgid "Require a username/password for SSH connections"
msgstr ""
#: lib/sshv2.c:45
msgid "Use ssh-askpass utility"
msgstr ""
#: lib/sshv2.c:48
msgid "Use the ssh-askpass utility to supply the remote password"
msgstr ""
#: lib/sshv2.c:50
msgid "Use SSH2 SFTP subsys"
msgstr ""
#: lib/sshv2.c:53
msgid ""
"Call ssh with the -s sftp flag. This is helpful because you won't have to "
"know the remote path to the remote sftp-server"
msgstr ""
#: lib/sshv2.c:257
#, c-format
msgid "Running program %s\n"
msgstr ""
#: lib/sshv2.c:304 lib/sshv2.c:329
msgid "WARNING"
msgstr "DİQQƏT"
#: lib/sshv2.c:371
msgid "Error: An incorrect password was entered\n"
msgstr ""
#: lib/sshv2.c:374
msgid ""
"Please connect to this host with the command line SSH utility and answer "
"this question appropriately.\n"
msgstr ""
#: lib/sshv2.c:377
msgid "Please correct the above warning to connect to this host.\n"
msgstr ""
#: lib/sshv2.c:416
#, c-format
msgid "%d: Protocol Initialization\n"
msgstr ""
#: lib/sshv2.c:422
#, c-format
msgid "%d: Protocol version %d\n"
msgstr ""
#: lib/sshv2.c:431
#, c-format
msgid "%d: Open %s\n"
msgstr ""
#: lib/sshv2.c:436
#, c-format
msgid "%d: Close\n"
msgstr ""
#: lib/sshv2.c:442
#, c-format
msgid "%d: Open Directory %s\n"
msgstr ""
#: lib/sshv2.c:447
#, c-format
msgid "%d: Read Directory\n"
msgstr ""
#: lib/sshv2.c:451
#, c-format
msgid "%d: Remove file %s\n"
msgstr ""
#: lib/sshv2.c:456
#, c-format
msgid "%d: Make directory %s\n"
msgstr ""
#: lib/sshv2.c:461
#, c-format
msgid "%d: Remove directory %s\n"
msgstr ""
#: lib/sshv2.c:466
#, c-format
msgid "%d: Realpath %s\n"
msgstr ""
#: lib/sshv2.c:471
#, c-format
msgid "%d: File attributes\n"
msgstr ""
#: lib/sshv2.c:475
#, c-format
msgid "%d: Stat %s\n"
msgstr ""
#: lib/sshv2.c:492
#, c-format
msgid "%d: Chmod %s %o\n"
msgstr ""
#: lib/sshv2.c:497
#, c-format
msgid "%d: Utime %s %d\n"
msgstr ""
#: lib/sshv2.c:510 src/gtk/bookmarks.c:1014 src/gtk/bookmarks.c:1251
#: src/gtk/chmod_dialog.c:281 src/gtk/options_dialog.c:1106
#: src/gtk/options_dialog.c:1308 src/gtk/transfer.c:2046
msgid "OK"
msgstr "Oldu"
#: lib/sshv2.c:513
msgid "EOF"
msgstr ""
#: lib/sshv2.c:516
msgid "No such file or directory"
msgstr ""
#: lib/sshv2.c:519
msgid "Permission denied"
msgstr "Səlahiyyət yoxdur"
#: lib/sshv2.c:522
msgid "Failure"
msgstr ""
#: lib/sshv2.c:525
msgid "Bad message"
msgstr ""
#: lib/sshv2.c:528
msgid "No connection"
msgstr ""
#: lib/sshv2.c:531
msgid "Connection lost"
msgstr ""
#: lib/sshv2.c:534
msgid "Operation unsupported"
msgstr ""
#: lib/sshv2.c:537
msgid "Unknown message returned from server"
msgstr ""
#: lib/sshv2.c:574
#, c-format
msgid "Error: Message size %d too big\n"
msgstr ""
#: lib/sshv2.c:632 lib/sshv2.c:1116 lib/sshv2.c:1951 lib/sshv2.c:2044
#: lib/sshv2.c:2132
#, c-format
msgid "Error: Message size %d too big from server\n"
msgstr ""
#: lib/sshv2.c:638
msgid ""
"There was an error initializing a SSH connection with the remote server. The "
"error message from the remote server follows:\n"
msgstr ""
#: lib/sshv2.c:714 lib/sshv2.c:727 lib/sshv2.c:749 lib/sshv2.c:817
#: lib/sshv2.c:948 lib/sshv2.c:1039 lib/sshv2.c:1107 lib/sshv2.c:1220
#: lib/sshv2.c:1233 lib/sshv2.c:1246 lib/sshv2.c:1259 lib/sshv2.c:1315
#: lib/sshv2.c:1380 lib/sshv2.c:1840 lib/sshv2.c:1942 lib/sshv2.c:2035
#: lib/sshv2.c:2120 lib/sshv2.c:2205
msgid "Received wrong response from server, disconnecting\n"
msgstr ""
#: lib/sshv2.c:866
#, c-format
msgid "Opening SSH connection to %s\n"
msgstr ""
#: lib/sshv2.c:959
#, c-format
msgid "Successfully logged into SSH server %s\n"
msgstr ""
#: lib/sslcommon.c:31
msgid "SSL Engine"
msgstr ""
#: lib/sslcommon.c:34
msgid "SSL Entropy File:"
msgstr ""
#: lib/sslcommon.c:36
msgid "SSL entropy file"
msgstr ""
#: lib/sslcommon.c:37
msgid "Entropy Seed Length:"
msgstr ""
#: lib/sslcommon.c:39
msgid "The maximum number of bytes to seed the SSL engine with"
msgstr ""
#: lib/sslcommon.c:99
#, c-format
msgid ""
"Error with certificate at depth: %i\n"
"Issuer = %s\n"
"Subject = %s\n"
"Error %i:%s\n"
msgstr ""
#: lib/sslcommon.c:121
msgid "Cannot get peer certificate\n"
msgstr ""
#: lib/sslcommon.c:180
#, c-format
msgid ""
"ERROR: The host in the SSL certificate (%s) does not match the host that we "
"connected to (%s). Aborting connection.\n"
msgstr ""
#: lib/sslcommon.c:287
msgid "Cannot initialized the OpenSSL library\n"
msgstr ""
#: lib/sslcommon.c:302
msgid "Error loading default SSL certificates\n"
msgstr ""
#: lib/sslcommon.c:313
msgid "Error setting cipher list (no valid ciphers)\n"
msgstr ""
#: lib/sslcommon.c:332 lib/sslcommon.c:401 lib/sslcommon.c:448
msgid "Error: SSL engine was not initialized\n"
msgstr ""
#: lib/sslcommon.c:349
msgid "Error setting up SSL connection (BIO object)\n"
msgstr ""
#: lib/sslcommon.c:359
msgid "Error setting up SSL connection (SSL object)\n"
msgstr ""
#: lib/sslcommon.c:377
#, c-format
msgid "Error with peer certificate: %s\n"
msgstr ""
#: src/gtk/bookmarks.c:37 src/gtk/gftp-gtk.c:912 src/gtk/menu-items.c:58
#: src/gtk/menu-items.c:88 src/gtk/misc-gtk.c:483 src/gtk/misc-gtk.c:491
#, c-format
msgid "%s: Please hit the stop button first to do anything else\n"
msgstr ""
#: src/gtk/bookmarks.c:38
msgid "Run Bookmark"
msgstr ""
#: src/gtk/bookmarks.c:65
msgid "Add Bookmark: You must enter a name for the bookmark\n"
msgstr ""
#: src/gtk/bookmarks.c:72
#, c-format
msgid "Add Bookmark: Cannot add bookmark %s because that name already exists\n"
msgstr ""
#: src/gtk/bookmarks.c:129 src/gtk/bookmarks.c:140
msgid "Add Bookmark"
msgstr ""
#: src/gtk/bookmarks.c:136
msgid "Add Bookmark: You must enter a hostname\n"
msgstr ""
#: src/gtk/bookmarks.c:140
msgid ""
"Enter the name of the bookmark you want to add\n"
"You can separate items by a / to put it into a submenu\n"
"(ex: Linux Sites/Debian)"
msgstr ""
#: src/gtk/bookmarks.c:140
msgid "Remember password"
msgstr ""
#: src/gtk/bookmarks.c:466 src/gtk/bookmarks.c:476
msgid "New Folder"
msgstr "Yeni Qovluq"
#: src/gtk/bookmarks.c:467
msgid "Enter the name of the new folder to create"
msgstr ""
#: src/gtk/bookmarks.c:477
msgid "Enter the name of the new item to create"
msgstr ""
#: src/gtk/bookmarks.c:550
#, c-format
msgid ""
"Are you sure you want to erase the bookmark\n"
"%s and all it's children?"
msgstr ""
#: src/gtk/bookmarks.c:551
msgid "Delete Bookmark"
msgstr ""
#: src/gtk/bookmarks.c:578
msgid "Bookmarks"
msgstr "Nişanlar"
#: src/gtk/bookmarks.c:820 src/gtk/bookmarks.c:823
msgid "Edit Entry"
msgstr ""
#: src/gtk/bookmarks.c:860
msgid "Description:"
msgstr "İzahat:"
#: src/gtk/bookmarks.c:875
msgid "Hostname:"
msgstr ""
#: src/gtk/bookmarks.c:888
msgid "Port:"
msgstr "Qapı:"
#: src/gtk/bookmarks.c:905
msgid "Protocol:"
msgstr ""
#: src/gtk/bookmarks.c:929
msgid "Remote Directory:"
msgstr ""
#: src/gtk/bookmarks.c:942
msgid "Local Directory:"
msgstr ""
#: src/gtk/bookmarks.c:959
msgid "Username:"
msgstr "İstifadəçi Adı:"
#: src/gtk/bookmarks.c:972
msgid "Password:"
msgstr "Şifrə:"
#: src/gtk/bookmarks.c:986
msgid "Account:"
msgstr ""
#: src/gtk/bookmarks.c:1000
msgid "Log in as ANONYMOUS"
msgstr ""
#: src/gtk/bookmarks.c:1026 src/gtk/bookmarks.c:1261
#: src/gtk/chmod_dialog.c:293 src/gtk/options_dialog.c:1117
#: src/gtk/options_dialog.c:1319 src/gtk/transfer.c:2058
msgid " Cancel "
msgstr ""
#: src/gtk/bookmarks.c:1036 src/gtk/options_dialog.c:1330
msgid "Apply"
msgstr "Tədbiq Et"
#: src/gtk/bookmarks.c:1178
msgid "/_File"
msgstr "/_Fayl"
#: src/gtk/bookmarks.c:1179
msgid "/File/tearoff"
msgstr ""
#: src/gtk/bookmarks.c:1180
msgid "/File/New Folder..."
msgstr ""
#: src/gtk/bookmarks.c:1181
msgid "/File/New Item..."
msgstr ""
#: src/gtk/bookmarks.c:1182
msgid "/File/Delete"
msgstr ""
#: src/gtk/bookmarks.c:1183
msgid "/File/Properties..."
msgstr ""
#: src/gtk/bookmarks.c:1184
msgid "/File/sep"
msgstr ""
#: src/gtk/bookmarks.c:1185
msgid "/File/Close"
msgstr ""
#: src/gtk/bookmarks.c:1196 src/gtk/bookmarks.c:1199
msgid "Edit Bookmarks"
msgstr "Nişanları Düzəlt"
#: src/gtk/chmod_dialog.c:73 src/gtk/delete_dialog.c:89
#: src/gtk/menu-items.c:422 src/gtk/mkdir_dialog.c:58
#: src/gtk/rename_dialog.c:59 src/gtk/transfer.c:533
msgid "Operation canceled\n"
msgstr ""
#: src/gtk/chmod_dialog.c:159 src/gtk/chmod_dialog.c:165
#: src/gtk/chmod_dialog.c:170
msgid "Chmod"
msgstr ""
#: src/gtk/chmod_dialog.c:190
msgid ""
"You can now adjust the attributes of your file(s)\n"
"Note: Not all ftp servers support the chmod feature"
msgstr ""
#: src/gtk/chmod_dialog.c:200
msgid "Special"
msgstr "Xüsusi"
#: src/gtk/chmod_dialog.c:208
msgid "SUID"
msgstr ""
#: src/gtk/chmod_dialog.c:212
msgid "SGID"
msgstr ""
#: src/gtk/chmod_dialog.c:216
msgid "Sticky"
msgstr "Yapışan"
#: src/gtk/chmod_dialog.c:220 src/gtk/gftp-gtk.c:600
msgid "User"
msgstr "İstifadəçi"
#: src/gtk/chmod_dialog.c:228 src/gtk/chmod_dialog.c:248
#: src/gtk/chmod_dialog.c:268
msgid "Read"
msgstr ""
#: src/gtk/chmod_dialog.c:232 src/gtk/chmod_dialog.c:252
#: src/gtk/chmod_dialog.c:272
msgid "Write"
msgstr ""
#: src/gtk/chmod_dialog.c:236 src/gtk/chmod_dialog.c:256
#: src/gtk/chmod_dialog.c:276
msgid "Execute"
msgstr "İcra Et"
#: src/gtk/chmod_dialog.c:240 src/gtk/gftp-gtk.c:601
msgid "Group"
msgstr "Qrup"
#: src/gtk/chmod_dialog.c:260
msgid "Other"
msgstr "Digər"
#: src/gtk/delete_dialog.c:156
#, c-format
msgid "Are you sure you want to delete these %ld files and %ld directories"
msgstr ""
#: src/gtk/delete_dialog.c:158
msgid "Delete Files/Directories"
msgstr ""
#: src/gtk/delete_dialog.c:176 src/gtk/options_dialog.c:1191
msgid "Delete"
msgstr "Sil"
#: src/gtk/dnd.c:130 src/gtk/dnd.c:222
msgid "Drag-N-Drop"
msgstr ""
#: src/gtk/dnd.c:234
#, c-format
msgid "Received URL %s\n"
msgstr ""
#: src/gtk/gftp-gtk.c:116
msgid "Exit"
msgstr "Çıx"
#: src/gtk/gftp-gtk.c:116
msgid ""
"There are file transfers in progress.\n"
"Are you sure you want to exit?"
msgstr ""
#: src/gtk/gftp-gtk.c:160
msgid "/_FTP"
msgstr ""
#: src/gtk/gftp-gtk.c:161
msgid "/FTP/tearoff"
msgstr ""
#: src/gtk/gftp-gtk.c:162
msgid "/FTP/Window 1"
msgstr ""
#: src/gtk/gftp-gtk.c:163
msgid "/FTP/Window 2"
msgstr ""
#: src/gtk/gftp-gtk.c:164 src/gtk/gftp-gtk.c:167 src/gtk/gftp-gtk.c:170
msgid "/FTP/sep"
msgstr ""
#: src/gtk/gftp-gtk.c:165
msgid "/FTP/Ascii"
msgstr ""
#: src/gtk/gftp-gtk.c:166
msgid "/FTP/Binary"
msgstr ""
#: src/gtk/gftp-gtk.c:168
msgid "/FTP/_Options..."
msgstr ""
#: src/gtk/gftp-gtk.c:171
msgid "/FTP/_Quit"
msgstr ""
#: src/gtk/gftp-gtk.c:172
msgid "/_Local"
msgstr ""
#: src/gtk/gftp-gtk.c:173
msgid "/Local/tearoff"
msgstr ""
#: src/gtk/gftp-gtk.c:174
msgid "/Local/Open _URL..."
msgstr ""
#: src/gtk/gftp-gtk.c:175
msgid "/Local/Disconnect"
msgstr ""
#: src/gtk/gftp-gtk.c:176 src/gtk/gftp-gtk.c:182
msgid "/Local/sep"
msgstr ""
#: src/gtk/gftp-gtk.c:177
msgid "/Local/Change Filespec..."
msgstr ""
#: src/gtk/gftp-gtk.c:178
msgid "/Local/Show selected"
msgstr ""
#: src/gtk/gftp-gtk.c:179
msgid "/Local/Select All"
msgstr ""
#: src/gtk/gftp-gtk.c:180
msgid "/Local/Select All Files"
msgstr ""
#: src/gtk/gftp-gtk.c:181
msgid "/Local/Deselect All"
msgstr ""
#: src/gtk/gftp-gtk.c:183
msgid "/Local/Save Directory Listing..."
msgstr ""
#: src/gtk/gftp-gtk.c:184
msgid "/Local/Send SITE Command..."
msgstr ""
#: src/gtk/gftp-gtk.c:185
msgid "/Local/Change Directory"
msgstr ""
#: src/gtk/gftp-gtk.c:186
msgid "/Local/Chmod..."
msgstr ""
#: src/gtk/gftp-gtk.c:187
msgid "/Local/Make Directory..."
msgstr ""
#: src/gtk/gftp-gtk.c:188
msgid "/Local/Rename..."
msgstr ""
#: src/gtk/gftp-gtk.c:189
msgid "/Local/Delete..."
msgstr ""
#: src/gtk/gftp-gtk.c:190
msgid "/Local/Edit..."
msgstr ""
#: src/gtk/gftp-gtk.c:191
msgid "/Local/View..."
msgstr ""
#: src/gtk/gftp-gtk.c:192
msgid "/Local/Refresh"
msgstr ""
#: src/gtk/gftp-gtk.c:193
msgid "/_Remote"
msgstr ""
#: src/gtk/gftp-gtk.c:194
msgid "/Remote/tearoff"
msgstr ""
#: src/gtk/gftp-gtk.c:195
msgid "/Remote/Open _URL..."
msgstr ""
#: src/gtk/gftp-gtk.c:197
msgid "/Remote/Disconnect"
msgstr ""
#: src/gtk/gftp-gtk.c:199 src/gtk/gftp-gtk.c:205
msgid "/Remote/sep"
msgstr ""
#: src/gtk/gftp-gtk.c:200
msgid "/Remote/Change Filespec..."
msgstr ""
#: src/gtk/gftp-gtk.c:201
msgid "/Remote/Show selected"
msgstr ""
#: src/gtk/gftp-gtk.c:202
msgid "/Remote/Select All"
msgstr ""
#: src/gtk/gftp-gtk.c:203
msgid "/Remote/Select All Files"
msgstr ""
#: src/gtk/gftp-gtk.c:204
msgid "/Remote/Deselect All"
msgstr ""
#: src/gtk/gftp-gtk.c:206
msgid "/Remote/Save Directory Listing..."
msgstr ""
#: src/gtk/gftp-gtk.c:207
msgid "/Remote/Send SITE Command..."
msgstr ""
#: src/gtk/gftp-gtk.c:208
msgid "/Remote/Change Directory"
msgstr ""
#: src/gtk/gftp-gtk.c:209
msgid "/Remote/Chmod..."
msgstr ""
#: src/gtk/gftp-gtk.c:210
msgid "/Remote/Make Directory..."
msgstr ""
#: src/gtk/gftp-gtk.c:211
msgid "/Remote/Rename..."
msgstr ""
#: src/gtk/gftp-gtk.c:212
msgid "/Remote/Delete..."
msgstr ""
#: src/gtk/gftp-gtk.c:213
msgid "/Remote/Edit..."
msgstr ""
#: src/gtk/gftp-gtk.c:214
msgid "/Remote/View..."
msgstr ""
#: src/gtk/gftp-gtk.c:215
msgid "/Remote/Refresh"
msgstr ""
#: src/gtk/gftp-gtk.c:216
msgid "/_Bookmarks"
msgstr "/_Nişanlar"
#: src/gtk/gftp-gtk.c:217
msgid "/Bookmarks/tearoff"
msgstr ""
#: src/gtk/gftp-gtk.c:218
msgid "/Bookmarks/Add bookmark"
msgstr ""
#: src/gtk/gftp-gtk.c:220
msgid "/Bookmarks/Edit bookmarks"
msgstr ""
#: src/gtk/gftp-gtk.c:221
msgid "/Bookmarks/sep"
msgstr ""
#: src/gtk/gftp-gtk.c:222
msgid "/_Transfers"
msgstr ""
#: src/gtk/gftp-gtk.c:223
msgid "/Transfers/tearoff"
msgstr ""
#: src/gtk/gftp-gtk.c:224
msgid "/Transfers/Start Transfer"
msgstr ""
#: src/gtk/gftp-gtk.c:225
msgid "/Transfers/Stop Transfer"
msgstr ""
#: src/gtk/gftp-gtk.c:227 src/gtk/gftp-gtk.c:235
msgid "/Transfers/sep"
msgstr ""
#: src/gtk/gftp-gtk.c:228
msgid "/Transfers/Skip Current File"
msgstr ""
#: src/gtk/gftp-gtk.c:229
msgid "/Transfers/Remove File"
msgstr ""
#: src/gtk/gftp-gtk.c:231
msgid "/Transfers/Move File _Up"
msgstr ""
#: src/gtk/gftp-gtk.c:233
msgid "/Transfers/Move File _Down"
msgstr ""
#: src/gtk/gftp-gtk.c:236
msgid "/Transfers/Retrieve Files"
msgstr ""
#: src/gtk/gftp-gtk.c:237
msgid "/Transfers/Put Files"
msgstr ""
#: src/gtk/gftp-gtk.c:238
msgid "/L_ogging"
msgstr ""
#: src/gtk/gftp-gtk.c:239
msgid "/Logging/tearoff"
msgstr ""
#: src/gtk/gftp-gtk.c:240
msgid "/Logging/Clear"
msgstr ""
#: src/gtk/gftp-gtk.c:241
msgid "/Logging/View log..."
msgstr ""
#: src/gtk/gftp-gtk.c:242
msgid "/Logging/Save log..."
msgstr ""
#: src/gtk/gftp-gtk.c:243
msgid "/Tool_s"
msgstr ""
#: src/gtk/gftp-gtk.c:244
msgid "/Tools/tearoff"
msgstr ""
#: src/gtk/gftp-gtk.c:245
msgid "/Tools/Compare Windows"
msgstr ""
#: src/gtk/gftp-gtk.c:246
msgid "/Tools/Clear Cache"
msgstr ""
#: src/gtk/gftp-gtk.c:247
msgid "/_Help"
msgstr "/_Yardım"
#: src/gtk/gftp-gtk.c:248
msgid "/Help/tearoff"
msgstr ""
#: src/gtk/gftp-gtk.c:249
msgid "/Help/About..."
msgstr "/Yardım/Haqqında..."
#: src/gtk/gftp-gtk.c:367
msgid "Host: "
msgstr ""
#: src/gtk/gftp-gtk.c:385
msgid "Port: "
msgstr ""
#: src/gtk/gftp-gtk.c:403
msgid "User: "
msgstr "İstifadəçi: "
#: src/gtk/gftp-gtk.c:421
msgid "Pass: "
msgstr ""
#: src/gtk/gftp-gtk.c:598 src/gtk/gftp-gtk.c:802 src/gtk/transfer.c:1887
msgid "Filename"
msgstr "Fayl adı"
#: src/gtk/gftp-gtk.c:599
msgid "Size"
msgstr "Böyüklük"
#: src/gtk/gftp-gtk.c:602
msgid "Date"
msgstr "Tarix"
#: src/gtk/gftp-gtk.c:603
msgid "Attribs"
msgstr ""
#: src/gtk/gftp-gtk.c:803
msgid "Progress"
msgstr "İrəliləmə"
#: src/gtk/gftp-gtk.c:913 src/gtk/misc-gtk.c:892 src/gtk/misc-gtk.c:963
msgid "Connect"
msgstr "Bağlan"
#: src/gtk/gftp-gtk.c:935
msgid "Error: You must type in a host to connect to\n"
msgstr ""
#: src/gtk/gftp-gtk.c:1170
msgid ""
">. If you have any questions, comments, or suggestions about this program, "
"please feel free to email them to me. You can always find out the latest "
"news about gFTP from my website at http://www.gftp.org/\n"
msgstr ""
#: src/gtk/gftp-gtk.c:1172 src/text/gftp-text.c:150
msgid ""
"gFTP comes with ABSOLUTELY NO WARRANTY; for details, see the COPYING file. "
"This is free software, and you are welcome to redistribute it under certain "
"conditions; for details, see the COPYING file\n"
msgstr ""
#: src/gtk/menu-items.c:59 src/gtk/menu-items.c:89
msgid "OpenURL"
msgstr ""
#: src/gtk/menu-items.c:67 src/gtk/menu-items.c:97
msgid "OpenURL: Operation canceled...you must enter a string\n"
msgstr ""
#: src/gtk/menu-items.c:119
msgid "Connect via URL"
msgstr ""
#: src/gtk/menu-items.c:119
msgid "Enter ftp url to connect to"
msgstr ""
#: src/gtk/menu-items.c:152
msgid "Change Filespec: Operation canceled...you must enter a string\n"
msgstr ""
#: src/gtk/menu-items.c:189 src/gtk/menu-items.c:192
msgid "Change Filespec"
msgstr ""
#: src/gtk/menu-items.c:192
msgid "Enter the new file specification"
msgstr ""
#: src/gtk/menu-items.c:220 src/gtk/menu-items.c:592 src/gtk/menu-items.c:650
#: src/gtk/view_dialog.c:62 src/gtk/view_dialog.c:129
#, c-format
msgid "Error: Cannot open %s for writing: %s\n"
msgstr ""
#: src/gtk/menu-items.c:246
msgid "Save Directory Listing"
msgstr ""
#: src/gtk/menu-items.c:363
msgid "SITE: Operation canceled...you must enter a string\n"
msgstr ""
#: src/gtk/menu-items.c:382 src/gtk/menu-items.c:385
msgid "Site"
msgstr ""
#: src/gtk/menu-items.c:385
msgid "Enter site-specific command"
msgstr ""
#: src/gtk/menu-items.c:484 src/gtk/menu-items.c:518
msgid "Chdir"
msgstr ""
#: src/gtk/menu-items.c:616 src/gtk/menu-items.c:674
#, c-format
msgid "Error: Error writing to %s: %s\n"
msgstr ""
#: src/gtk/menu-items.c:685
#, c-format
msgid "Successfully wrote the log file to %s\n"
msgstr ""
#: src/gtk/menu-items.c:697
msgid "Save Log"
msgstr ""
#: src/gtk/menu-items.c:733
#, c-format
msgid ""
"Cannot find the license agreement file COPYING. Please make sure it is in "
"either %s or in %s"
msgstr ""
#: src/gtk/menu-items.c:737 src/gtk/menu-items.c:742
msgid "About gFTP"
msgstr ""
#: src/gtk/menu-items.c:773
#, c-format
msgid ""
"%s\n"
"Copyright (C) 1998-2003 Brian Masney <masneyb@gftp.org>\n"
"Official Homepage: http://www.gftp.org/\n"
"Logo by: Aaron Worley <planet_hoth@yahoo.com>\n"
msgstr ""
#: src/gtk/menu-items.c:774 src/text/gftp-text.c:390
msgid "Translated by"
msgstr "Tərcüməçilər"
#: src/gtk/menu-items.c:785
msgid "About"
msgstr "Haqqında"
#: src/gtk/menu-items.c:834
msgid "License Agreement"
msgstr ""
#: src/gtk/menu-items.c:840 src/gtk/view_dialog.c:377
msgid " Close "
msgstr ""
#: src/gtk/menu-items.c:922
msgid "Compare Windows"
msgstr ""
#: src/gtk/misc-gtk.c:214
msgid "Refresh"
msgstr "Yenilə"
#: src/gtk/misc-gtk.c:303
msgid "All Files"
msgstr ""
#: src/gtk/misc-gtk.c:310
msgid "] (Cached) ["
msgstr ""
#: src/gtk/misc-gtk.c:324
msgid "Not connected"
msgstr ""
#: src/gtk/misc-gtk.c:410
#, c-format
msgid "Error opening file %s: %s\n"
msgstr ""
#: src/gtk/misc-gtk.c:499
#, c-format
msgid "%s: Not connected to a remote site\n"
msgstr ""
#: src/gtk/misc-gtk.c:506
#, c-format
msgid "%s: This feature is not available using this protocol\n"
msgstr ""
#: src/gtk/misc-gtk.c:514
#, c-format
msgid "%s: You must only have one item selected\n"
msgstr ""
#: src/gtk/misc-gtk.c:521
#, c-format
msgid "%s: You must have at least one item selected\n"
msgstr ""
#: src/gtk/misc-gtk.c:889 src/gtk/misc-gtk.c:960
msgid "Change"
msgstr ""
#: src/gtk/misc-gtk.c:895 src/gtk/misc-gtk.c:966 src/gtk/rename_dialog.c:101
#: src/gtk/rename_dialog.c:113
msgid "Rename"
msgstr "Yenidən adlandır"
#: src/gtk/misc-gtk.c:957 src/gtk/options_dialog.c:1177
msgid "Add"
msgstr "Əlavə Et"
#: src/gtk/misc-gtk.c:983
msgid "Cancel"
msgstr "Ləğv Et"
#: src/gtk/misc-gtk.c:1053
msgid " Yes "
msgstr ""
#: src/gtk/misc-gtk.c:1063
msgid " No "
msgstr ""
#: src/gtk/misc-gtk.c:1119
msgid "Getting directory listings"
msgstr ""
#: src/gtk/misc-gtk.c:1139
msgid " Stop "
msgstr ""
#: src/gtk/misc-gtk.c:1149
#, c-format
msgid ""
"Received %ld directories\n"
"and %ld files"
msgstr ""
#: src/gtk/misc-gtk.c:1269
#, c-format
msgid "gFTP Error: Cannot find file %s in %s or %s\n"
msgstr ""
#: src/gtk/mkdir_dialog.c:78
msgid "Mkdir: Operation canceled...you must enter a string\n"
msgstr ""
#: src/gtk/mkdir_dialog.c:100
msgid "Mkdir"
msgstr ""
#: src/gtk/mkdir_dialog.c:104
msgid "Make Directory"
msgstr ""
#: src/gtk/mkdir_dialog.c:104
msgid "Enter name of directory to create"
msgstr ""
#: src/gtk/options_dialog.c:917
msgid "Edit Host"
msgstr ""
#: src/gtk/options_dialog.c:917
msgid "Add Host"
msgstr ""
#: src/gtk/options_dialog.c:949 src/gtk/options_dialog.c:1040
msgid "Domain"
msgstr "Domen"
#: src/gtk/options_dialog.c:969
msgid "Network Address"
msgstr "Şəbəkə Ünvanı"
#: src/gtk/options_dialog.c:1002 src/gtk/options_dialog.c:1142
msgid "Netmask"
msgstr ""
#: src/gtk/options_dialog.c:1148
msgid "Local Hosts"
msgstr ""
#: src/gtk/options_dialog.c:1184 src/gtk/view_dialog.c:91
msgid "Edit"
msgstr "Düzəlt"
#: src/gtk/options_dialog.c:1246 src/gtk/options_dialog.c:1251
msgid "Options"
msgstr "Seçənəklər"
#: src/gtk/rename_dialog.c:79
msgid "Rename: Operation canceled...you must enter a string\n"
msgstr ""
#: src/gtk/rename_dialog.c:111
#, c-format
msgid "What would you like to rename %s to?"
msgstr ""
#: src/gtk/transfer.c:166
msgid "Receiving file names..."
msgstr ""
#: src/gtk/transfer.c:282
#, c-format
msgid "Waiting %d seconds until trying to connect again\n"
msgstr ""
#: src/gtk/transfer.c:309 src/gtk/transfer.c:1285
msgid "Connecting..."
msgstr "Bağlanılır..."
#: src/gtk/transfer.c:319 src/gtk/transfer.c:1179 src/gtk/transfer.c:1190
msgid "Enter Password"
msgstr ""
#: src/gtk/transfer.c:320 src/gtk/transfer.c:1180 src/gtk/transfer.c:1191
msgid "Please enter your password for this site"
msgstr ""
#: src/gtk/transfer.c:410
msgid "Transfer Files"
msgstr ""
#: src/gtk/transfer.c:418
msgid "Retrieve Files: Not connected to a remote site\n"
msgstr ""
#: src/gtk/transfer.c:645
msgid "Error: Remote site disconnected after trying to transfer file\n"
msgstr ""
#: src/gtk/transfer.c:702
#, c-format
msgid "Could not download %s from %s\n"
msgstr ""
#: src/gtk/transfer.c:732
#, c-format
msgid "Successfully transferred %s at %.2f KB/s\n"
msgstr ""
#: src/gtk/transfer.c:837 src/gtk/transfer.c:1071 src/gtk/transfer.c:1157
#: src/gtk/transfer.c:1600
msgid "Skipped"
msgstr ""
#: src/gtk/transfer.c:841 src/gtk/transfer.c:1133 src/gtk/transfer.c:1161
msgid "Waiting..."
msgstr ""
#: src/gtk/transfer.c:984
#, c-format
msgid "Error: Child %d returned %d\n"
msgstr ""
#: src/gtk/transfer.c:987
#, c-format
msgid "Child %d returned successfully\n"
msgstr ""
#: src/gtk/transfer.c:994
#, c-format
msgid "Error: Cannot get information about file %s: %s\n"
msgstr ""
#: src/gtk/transfer.c:999
#, c-format
msgid "File %s was not changed\n"
msgstr ""
#: src/gtk/transfer.c:1007
#, c-format
msgid ""
"File %s has changed.\n"
"Would you like to upload it?"
msgstr ""
#: src/gtk/transfer.c:1010
msgid "Edit File"
msgstr ""
#: src/gtk/transfer.c:1074
msgid "Finished"
msgstr ""
#: src/gtk/transfer.c:1114
#, c-format
msgid "Stopping the transfer of %s\n"
msgstr ""
#: src/gtk/transfer.c:1329
#, c-format
msgid "%d%% complete, %02d:%02d:%02d est. time remaining. (File %ld of %ld)"
msgstr ""
#: src/gtk/transfer.c:1359
#, c-format
msgid "Recv %s of %s at %.2fKB/s, %02d:%02d:%02d est. time remaining"
msgstr ""
#: src/gtk/transfer.c:1368
#, c-format
msgid "Recv %s of %s, transfer stalled, unknown time remaining"
msgstr ""
#: src/gtk/transfer.c:1394
#, c-format
msgid "Retrieving file names...%s bytes"
msgstr ""
#: src/gtk/transfer.c:1472 src/gtk/transfer.c:1494 src/gtk/transfer.c:1528
#: src/gtk/transfer.c:1568 src/gtk/transfer.c:1621 src/gtk/transfer.c:1680
msgid "There are no file transfers selected\n"
msgstr ""
#: src/gtk/transfer.c:1512
#, c-format
msgid "Stopping the transfer on host %s\n"
msgstr ""
#: src/gtk/transfer.c:1553 src/gtk/transfer.c:1606
#, c-format
msgid "Skipping file %s on host %s\n"
msgstr ""
#: src/gtk/transfer.c:1767 src/gtk/transfer.c:1972 src/gtk/transfer.c:2011
msgid "Overwrite"
msgstr "Üstünə yaz"
#: src/gtk/transfer.c:1789 src/gtk/transfer.c:1982 src/gtk/transfer.c:2017
msgid "Resume"
msgstr "Davam et"
#: src/gtk/transfer.c:1811 src/gtk/transfer.c:1977
msgid "Skip"
msgstr "Keç"
#: src/gtk/transfer.c:1888
msgid "Local Size"
msgstr ""
#: src/gtk/transfer.c:1889
msgid "Remote Size"
msgstr ""
#: src/gtk/transfer.c:1890
msgid "Action"
msgstr "Gedişat"
#: src/gtk/transfer.c:1892
msgid "Download Files"
msgstr ""
#: src/gtk/transfer.c:1892
msgid "Upload Files"
msgstr ""
#: src/gtk/transfer.c:1918
msgid ""
"The following file(s) exist on both the local and remote computer\n"
"Please select what you would like to do"
msgstr ""
#: src/gtk/transfer.c:2023
msgid "Skip File"
msgstr ""
#: src/gtk/transfer.c:2033
msgid "Select All"
msgstr "Hamısını Seç"
#: src/gtk/transfer.c:2039
msgid "Deselect All"
msgstr ""
#: src/gtk/view_dialog.c:35
msgid "View"
msgstr "Göstər"
#: src/gtk/view_dialog.c:47
#, c-format
msgid "View: %s is a directory. Cannot view it.\n"
msgstr ""
#: src/gtk/view_dialog.c:100
msgid "Edit: You must specify an editor in the options dialog\n"
msgstr ""
#: src/gtk/view_dialog.c:113
#, c-format
msgid "Edit: %s is a directory. Cannot edit it.\n"
msgstr ""
#: src/gtk/view_dialog.c:184
#, c-format
msgid "View: Cannot fork another process: %s\n"
msgstr ""
#: src/gtk/view_dialog.c:187
#, c-format
msgid "Running program: %s %s\n"
msgstr ""
#: src/gtk/view_dialog.c:244
#, c-format
msgid "Opening %s with %s\n"
msgstr ""
#: src/gtk/view_dialog.c:279
#, c-format
msgid "Viewing file %s\n"
msgstr ""
#: src/gtk/view_dialog.c:286
#, c-format
msgid "View: Cannot open file %s: %s\n"
msgstr ""
#: src/text/gftp-text.c:30
msgid "Shows gFTP information"
msgstr ""
#: src/text/gftp-text.c:32
msgid "Sets the current file transfer mode to Ascii (only for FTP)"
msgstr ""
#: src/text/gftp-text.c:34
msgid "Sets the current file transfer mode to Binary (only for FTP)"
msgstr ""
#: src/text/gftp-text.c:36 src/text/gftp-text.c:38
msgid "Changes the remote working directory"
msgstr ""
#: src/text/gftp-text.c:40
msgid "Changes the permissions of a remote file"
msgstr ""
#: src/text/gftp-text.c:42
msgid "Available options: cache"
msgstr ""
#: src/text/gftp-text.c:44
msgid "Disconnects from the remote site"
msgstr ""
#: src/text/gftp-text.c:46
msgid "Removes a remote file"
msgstr ""
#: src/text/gftp-text.c:48 src/text/gftp-text.c:72
msgid "Downloads remote file(s)"
msgstr ""
#: src/text/gftp-text.c:50
msgid "Shows this help screen"
msgstr ""
#: src/text/gftp-text.c:52 src/text/gftp-text.c:54
msgid "Changes the local working directory"
msgstr ""
#: src/text/gftp-text.c:56
msgid "Changes the permissions of a local file"
msgstr ""
#: src/text/gftp-text.c:58
msgid "Removes a local file"
msgstr ""
#: src/text/gftp-text.c:60
msgid "Shows the directory listing for the current local directory"
msgstr ""
#: src/text/gftp-text.c:62
msgid "Creates a local directory"
msgstr ""
#: src/text/gftp-text.c:64
msgid "Show current local directory"
msgstr ""
#: src/text/gftp-text.c:66
msgid "Rename a local file"
msgstr ""
#: src/text/gftp-text.c:68
msgid "Remove a local directory"
msgstr ""
#: src/text/gftp-text.c:70
msgid "Shows the directory listing for the current remote directory"
msgstr ""
#: src/text/gftp-text.c:74
msgid "Creates a remote directory"
msgstr ""
#: src/text/gftp-text.c:76 src/text/gftp-text.c:80
msgid "Uploads local file(s)"
msgstr ""
#: src/text/gftp-text.c:78
msgid "Opens a connection to a remote site"
msgstr ""
#: src/text/gftp-text.c:82
msgid "Show current remote directory"
msgstr ""
#: src/text/gftp-text.c:84
msgid "Exit from gFTP"
msgstr ""
#: src/text/gftp-text.c:86
msgid "Rename a remote file"
msgstr ""
#: src/text/gftp-text.c:88
msgid "Remove a remote directory"
msgstr ""
#: src/text/gftp-text.c:90
msgid "Show configuration file variables. You can also set variables by set var=val"
msgstr ""
#: src/text/gftp-text.c:148
msgid ""
">.\n"
"If you have any questions, comments, or suggestions about this program, "
"please feel free to email them to me. You can always find out the latest "
"news about gFTP from my website at http://www.gftp.org/\n"
msgstr ""
#: src/text/gftp-text.c:231
msgid "Error: Command not recognized\n"
msgstr ""
#: src/text/gftp-text.c:338
msgid "usage: open [[ftp://][user:pass@]ftp-site[:port][/directory]]\n"
msgstr ""
#: src/text/gftp-text.c:414 src/text/gftp-text.c:430 src/text/gftp-text.c:473
#: src/text/gftp-text.c:496 src/text/gftp-text.c:519 src/text/gftp-text.c:545
#: src/text/gftp-text.c:573 src/text/gftp-text.c:606 src/text/gftp-text.c:698
#: src/text/gftp-text.c:716 src/text/gftp-text.c:737 src/text/gftp-text.c:811
msgid "Error: Not connected to a remote site\n"
msgstr ""
#: src/text/gftp-text.c:436 src/text/gftp-text.c:453
msgid "usage: chdir <directory>\n"
msgstr ""
#: src/text/gftp-text.c:480
msgid "usage: mkdir <new directory>\n"
msgstr ""
#: src/text/gftp-text.c:503
msgid "usage: rmdir <directory>\n"
msgstr ""
#: src/text/gftp-text.c:526
msgid "usage: delete <file>\n"
msgstr ""
#: src/text/gftp-text.c:555
msgid "usage: rename <old name> <new name>\n"
msgstr ""
#: src/text/gftp-text.c:583
msgid "usage: chmod <mode> <file>\n"
msgstr ""
#: src/text/gftp-text.c:744
msgid "usage: mget <filespec>\n"
msgstr ""
#: src/text/gftp-text.c:818
msgid "usage: mput <filespec>\n"
msgstr ""
#: src/text/gftp-text.c:956
#, c-format
msgid "Could not download %s\n"
msgstr ""
#: src/text/gftp-text.c:963
#, c-format
msgid "Successfully transferred %s\n"
msgstr ""
#: src/text/gftp-text.c:1030
msgid ""
"Supported commands:\n"
"\n"
msgstr ""
#: src/text/gftp-text.c:1086
msgid "usage: set [variable = value]\n"
msgstr ""
#: src/text/gftp-text.c:1100
#, c-format
msgid "Error: Variable %s is not a valid configuration variable.\n"
msgstr ""
#: src/text/gftp-text.c:1107
#, c-format
msgid "Error: Variable %s is not available in the text port of gFTP\n"
msgstr ""
#: src/text/gftp-text.c:1135
msgid "Invalid argument\n"
msgstr ""
#: src/text/gftp-text.c:1160
#, c-format
msgid "Cannot open controlling terminal %s\n"
msgstr ""
#: src/text/gftp-text.c:1238
msgid "Clear the directory cache\n"
msgstr ""
|