File size: 159,978 Bytes
2a404f3 |
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 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 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 |
Usage:
\t%s acl pathname...
\t%s -b acl dacl pathname...
\t%s -d dacl pathname...
\t%s -R pathname...
locale noexpr
locale yesexpr
--help" and "--version
Display some available commands at the top of the screen
Use a minibuffer-style prompt when possible
Show partial search results (incremental search)
Closing the last view exits the program
Prompt for confirmation at exit
Pause after downloading files
Never
When an error occurs
Always
Use a 'status-line' download indicator for all downloads
Advance to the next item after changing the state of a package
Automatically show why packages are broken
The default grouping method for package views
The default display-limit for package views
The display format for package views
The display format for the status line
The display format for the header line
Automatically upgrade installed packages
Remove obsolete package files after downloading new package lists
URL to use to download changelogs
Display a preview of what will be done before doing it
Forget which packages are "new" whenever the package lists are updated
Forget which packages are "new" whenever packages are installed or removed
Warn when attempting to perform a privileged action as a non-root user
File to log actions into
Automatically resolve dependencies of a package when it is selected
Automatically fix broken packages before installing or removing
Remove unused packages automatically
Miscellaneous
Note: "%s", providing the virtual package "%s", is already installed.
Note: "%s", providing the virtual package "%s", is already going to be installed.
"%s" exists in the package database, but it is not a real package and no package provides it.
"%s" is a virtual package provided by:
You must choose one to install.
Note: selecting "%s" instead of the virtual package "%s"
%s is already installed at the requested version (%s)
%s is not currently installed, so it will not be reinstalled.
Package %s is not installed, so it will not be removed
Package %s is not installed, cannot forbid an upgrade
Package %s is not upgradable, cannot forbid an upgrade
Note: selecting the task "%s: %s" for installation
You can only specify a package archive with an 'install' command.
Couldn't find package "%s", and more than 40 packages contain "%s" in their name.
Couldn't find package "%s". However, the following packages contain "%s" in their name:
Couldn't find any package whose name or description matched "%s"
Couldn't find any package matching "%s", and more than 40 packages contain "%s" in their description.
Couldn't find any package matching "%s". However, the following packages contain "%s" in their description:
Bad action character '%c'
Get:
Changelog of %s
Can't execute sensible-pager, is this a working Debian system?
%s is not an official Debian package, cannot display its changelog.
Couldn't find a changelog for %s
Del %s* %spartial/*
Would free %sB of disk space
Freed %sB of disk space
Invalid operation %s
Abort.
download: you must specify at least one package to download
Couldn't read source list
Can't find a package named "%s"
No downloadable files for %s version %s; perhaps it is a local or obsolete package?
Hit
Would forget what packages are new
There are no Easter Eggs in this program.
There really are no Easter Eggs in this program.
Didn't I already tell you that there are no Easter Eggs in this program?
Stop it!
Okay, okay, if I give you an Easter Egg, will you go away?
All right, you win.
What is it? It's an elephant being eaten by a snake, of course.
Done
Couldn't read list of sources
The following packages are BROKEN:
The following packages are unused and will be REMOVED:
The following packages have been automatically kept back:
The following NEW packages will be automatically installed:
The following packages will be automatically REMOVED:
The following packages will be DOWNGRADED:
The following packages have been kept back:
The following packages will be REINSTALLED:
The following NEW packages will be installed:
The following packages will be REMOVED:
The following packages will be upgraded:
The following ESSENTIAL packages will be REMOVED!
The following ESSENTIAL packages will be BROKEN by this action:
WARNING: Performing this action will probably cause your system to break! Do NOT continue unless you know EXACTLY what you are doing!
I am aware that this is a very bad idea
To continue, type the phrase "%s":
WARNING: untrusted versions of the following packages will be installed! Untrusted packages could compromise your system's security. You should only proceed with the installation if you are certain that this is what you want to do.
Do you want to ignore this warning and proceed anyway?
To continue, enter "%s"; to abort, enter "%s":
Unrecognized input. Enter either "%s" or "%s".
The following packages are RECOMMENDED but will NOT be installed:
The following packages are SUGGESTED but will NOT be installed:
No packages will be installed, upgraded, or removed.
%lu packages upgraded, %lu newly installed,
%lu reinstalled,
%lu downgraded,
%lu to remove and %lu not upgraded.
Need to get %sB/%sB of archives.
Need to get %sB of archives.
After unpacking %sB will be used.
After unpacking %sB will be freed.
No packages to show -- enter the package names on the line after 'i'.
Press Return to continue.
No packages found -- enter the package names on the line after 'c'.
Do you want to continue? [Y/n/?]
Invalid response. Please enter a valid command or '?' for help.
Dependency information will be shown.
Dependency information will not be shown.
Versions will be shown.
Versions will not be shown.
Size changes will be shown.
Size changes will not be shown.
Unable to open %s for writing
Action "%s"
This action is currently approved; it will be selected whenever possible.
Enter "r %s" to allow this action to appear in new solutions.
Enter "r %s" to prevent this action from appearing in new solutions.
Enter "a %s" to cease requiring that new solutions include this action if possible.
search: You must provide at least one search term
but %s is to be installed.
but %s is installed and it is kept back.
but %s is installed.
which is a virtual package.
or
The following packages have unmet dependencies:
not installed
unpacked
partially configured
partially installed
not installed (configuration files remain)
installed
%s; will be purged because nothing depends on it
%s; will be purged
%s; will be removed because nothing depends on it
%s; will be removed
%s%s; will be downgraded [%s -> %s]
%s%s; will be upgraded [%s -> %s]
not a real package
[held]
%s; version %s will be installed
%s; version %s will be installed automatically
Package:
State
Provided by
Essential:
yes
New
Forbidden version
Automatically installed
no
Version:
Priority:
N/A
Section:
Maintainer:
Architecture:
Uncompressed Size:
Compressed Size:
Filename:
MD5sum:
Archive
Depends
PreDepends
Recommends
Suggests
Conflicts
Replaces
Obsoletes
Provides
Description:
Would download/install/remove packages.
Internal Error, Ordering didn't finish
Deleting obsolete downloaded files
E: The update command takes no arguments
No candidate version found for %s
Unable to find an archive "%s" for the package "%s"
Unable to find a version "%s" for the package "%s"
Internal error: invalid value %i passed to cmdline_find_ver!
You cannot specify both an archive and a version for a package
Unexpected end-of-file on standard input
UNSATISFIED
UNAVAILABLE
[Working]
[Hit]
[Downloaded]
Downloaded %sB in %s (%sB/s).
Continue
Cancel
Total Progress:
[ %i%% ] (%sB/s, %s remaining)
[ %i%% ] (stalled)
[ %i%% ]
Please insert the disc labeled "%s" into the drive "%s"
[IGNORED]
[ERROR]
No hierarchy information to edit
Can't open Aptitude extended state file
Reading extended state information
Initializing package states
Cannot open Aptitude state file
Writing extended state information
Couldn't write state file
Error writing state file
Unable to correct dependencies, some packages cannot be installed
The list of sources could not be read.
The package lists or status file could not be parsed or opened.
You may want to update the package lists to correct these missing files
Unable to replace %s with new configuration file
main
Internal error: couldn't generate list of packages to download
Unable to correct for unavailable packages
Could not regain the system lock! (Perhaps another apt or dpkg is running?)
Couldn't read list of package sources
Couldn't clean out list directories
Unable to open %s to log actions
log report
IMPORTANT: this log only lists intended actions; actions which fail due to dpkg problems may not be completed.
Will install %li packages, and remove %li packages.
%sB of disk space will be used
[UPGRADE] %s %s -> %s
[DOWNGRADE] %s %s -> %s
REMOVE
INSTALL
REINSTALL
HOLD
BROKEN
REMOVE, NOT USED
REMOVE, DEPENDENCIES
INSTALL, DEPENDENCIES
HOLD, DEPENDENCIES
????????
[%s] %s
=============================================================================== Log complete.
Unknown action type: %s
Unknown priority %s
Unknown dependency type: %s
Unknown term type: "%s".
Unmatched '('
Unknown pattern type: %c
Unexpected empty expression
Unexpected ')'
I wasn't able to locate a file for the %s package. This might mean you need to manually fix this package. (due to missing arch)
The package index files are corrupted. No Filename: field for package %s.
Warning: group %s is involved in a cycle
Cannot open package hierarchy file %s
Global block encountered after first record, ignoring
Bad record encountered (no Package or Group entry), skipping
Bad record encountered (Package=%s, Group=%s), skipping
Multiple descriptions found for group %s, ignoring one
Reading task descriptions
Perform all pending installs and removals
Check for new versions of packages
Mark all upgradable packages which are not held for upgrade
Forget which packages are "new"
Delete package files which were previously downloaded
Delete package files which can no longer be downloaded
Reload the package cache
Exit the program
Undo the last package operation or group of operations
Packages
Description
Auto
A package-list update or install run is already taking place.
Downloading packages
Unknown
Building view
Packages with unsatisfied dependencies The dependency requirements of these packages will be unmet after the install is complete. . The presence of this tree probably indicates that something is broken, either on your system or in the Debian archive.
Packages being removed because they are no longer used These packages are being deleted because they were automatically installed to fulfill dependencies, and the planned action will result in no installed package declaring an 'important' dependency on them.
Packages being automatically held in their current state These packages could be upgraded, but they have been kept in their current state to avoid breaking dependencies.
Packages being automatically installed to satisfy dependencies These packages are being installed because they are required by another package you have chosen for installation.
Packages being deleted due to unsatisfied dependencies These packages are being deleted because one or more of their dependencies is no longer available, or because another package conflicts with them.
Packages to be downgraded An older version of these packages than is currently installed will be installed.
Packages being held back These packages could be upgraded, but you have asked for them to be held at their current version.
Packages to be reinstalled These packages will be reinstalled.
Packages to be installed These packages have been manually selected for installation on your computer.
Packages to be removed These packages have been manually selected for removal.
Packages to be upgraded These packages will be upgraded to a newer version.
Invalid entry in keybinding group: "%s"
Ignoring invalid keybinding "%s" -> "%s"
Bad passthrough setting '%s' (use 'passthrough' or 'nopassthrough')
Couldn't parse layout: No column format specified for static item
Couldn't parse layout: unknown view item type "%s"
Couldn't parse layout: no row number specified
Couldn't parse layout: no width specified
Couldn't parse layout: no height specified
Unknown alignment type '%s'
Invalid zero-length sorting policy name
Unmatched '(' in sorting policy description
Invalid sorting policy type '%s'
%s %s compiled at %s %s
Compiler: g++ %s
Usage: aptitude [-S fname] [-u_BAR_-i]
aptitude [options] <action> ...
Actions (if none is specified, aptitude will enter interactive mode):
forbid-version - Forbid aptitude from upgrading to a specific package version.
Options:
-s Simulate actions, but do not actually perform them.
-d Only download packages, do not install or remove anything.
-f Aggressively try to fix broken packages.
-V Show which versions of packages are to be installed.
-D Show the dependencies of automatically changed packages.
-Z Show the change in installed size of each package.
-S fname Read the aptitude extended status info from fname.
-u Download new package lists on startup.
-i Perform an install run on startup.
This aptitude does not have Super Cow Powers.
Unknown log level name "%s" (expected "trace", "debug", "info", "warn", "error", "fatal", or "off").
WEIRDNESS: unknown option code received
all-packages-with-dep-versions
Unknown command "%s"
Search for:
Minesweeper
%i/%i mines %d %s
second
seconds
Won
Lost
Could not open file "%s"
Could not load game from %s
Setup custom game
Height of board:
Width of board:
Number of mines:
Ok
Choose difficulty level
Easy
Medium
Hard
Custom
You have won.
You lose!
You die... --More--
You land on a set of sharp iron spikes! --More--
You fall into a pit! --More--
KABOOM! You step on a land mine. --More--
The dart was poisoned! The poison was deadly... --More--
A little dart shoots out at you! You are hit by a little dart! --More--
You turn to stone... --More--
Touching the cockatrice corpse was a fatal mistake. --More--
You feel here a cockatrice corpse. --More--
Click! You trigger a rolling boulder trap! You are hit by a boulder! --More--
sleep
striking
death
polymorph
magic missile
secret door detection
invisibility
cold
Your wand of %s breaks apart and explodes! --More--
You are jolted by a surge of electricity! --More--
Enter the filename to load:
Enter the filename to save:
mine-help.txt
30 8 8 1 1 40 14 14 11 10 35 9 10 2 1 1 10 9 12 30 17 15
Package
InstSz
DebSz
Action
InstVer
CandVer
LongState
LongAction
Maintainer
Priority
Section
RC
Tag
ProgName
ProgVer
#Broken
DiskUsage
DownloadSize
<N\/A>
<none>
virtual
purged
half-config
half-install
config-files
ERROR
hold
purge
delete
broken
install
reinstall
upgrade
none
Imp
Req
Std
Opt
Xtr
ERR
#Broken: %ld
Will use %sB of disk space
Will free %sB of disk space
DL Size: %sB
HN too long
Internal error: Default column string is unparsable
Tasks
Security Updates Security updates for these packages are available from security.debian.org.
Upgradable Packages A newer version of these packages is available.
Installed Packages These packages are currently installed on your computer.
Not Installed Packages These packages are not installed on your computer.
Obsolete and Locally Created Packages These packages are currently installed on your computer, but they are not available from any apt source. They may be obsolete and removed from the archive, or you may have built a private version of them yourself.
Virtual Packages These packages do not exist; they are names other packages use to require or provide some functionality.
Packages which are recommended by other packages These packages are not strictly required, but they may be necessary to provide full functionality in some other programs that you are installing or upgrading.
Packages which are suggested by other packages These packages are not required in order to make your system function properly, but they may provide enhanced functionality for some programs that you are currently installing.
unknown
Priority %s
End-user
Servers
Development
Localization
Hardware Support
Unrecognized tasks
Tasks are groups of packages which provide an easy way to select a predefined set of packages for a particular purpose.
Source Package:
Package names provided by %s
Packages which depend on %s
Reporting a bug in %s:
Reconfiguring %s
All Packages
Enter the new package tree limit:
Enter the new package grouping mechanism for this display:
Enter the new package sorting mechanism for this display:
make_package_view: error in arguments -- two main widgets??
make_package_view: error in arguments -- bad column list for static item
make_package_view: bad argument!
make_package_view: no main widget found
depends on
pre-depends on
suggests
recommends
conflicts with
replaces
obsoletes
(provided by %F)
%F%s %F %F
If you select a package, an explanation of its current state will appear in this space.
%B%s%b was installed automatically; it is being removed because all of the packages which depend upon it are being removed:
%B%s%b will be automatically removed because of dependency errors:
%B%s%b will be automatically installed to satisfy the following dependencies:
%B%s%b cannot be upgraded now, but if it could be, it would still be held at version %B%s%b.
%B%s%b will not be upgraded to version %B%s%b, to avoid breaking the following dependencies:
%B%s%b is currently installed.
%B%s%b is not currently installed.
Some dependencies of %B%s%b are not satisfied:
%B%s%b will be downgraded.
%B%s%b will not be upgraded to the forbidden version %B%s%b.
%B%s%b could be upgraded to version %B%s%b, but it is being held at version %B%s%b.
%B%s%b will be re-installed.
%B%s%b will be installed.
%B%s%b will be removed.
%B%s%b will be upgraded from version %B%s%b to version %B%s%b.
The following packages depend on %B%s%b and will be broken by its removal:
The following packages depend on %B%s%b and are broken:
The following packages conflict with %B%s%b and will be broken by its installation:
The following packages depend on a version of %B%s%b other than the currently installed version of %B%s%b, or conflict with the currently installed version:
The following packages conflict with %B%s%b, or depend on a version of it which is not going to be installed.
The following packages conflict with %B%s%b:
The following packages depend on a version of %B%s%b other than the currently installed version of %B%s%b:
The following packages depend on a version of %B%s%b which is not going to be installed.
upgraded
downgraded
The following packages depend on the currently installed version of %B%s%b (%B%s%b), or conflict with the version it will be %s to (%B%s%b), and will be broken if it is %s.
The following packages conflict with version %B%s%b of %B%s%b, and will be broken if it is %s.
The following packages depend on version %B%s%b of %B%s%b, and will be broken if it is %s.
WARNING
%F: This version of %s is from an %Buntrusted source%b! Installing this package could allow a malicious individual to damage or take control of your system.
Yes, I am aware this is a very bad idea
Er, there aren't any errors, this shouldn't have happened..
You already are root!
Subprocess exited with an error -- did you type your password correctly?
Loading cache
Really quit Aptitude?
Really discard your personal settings and reload the defaults?
View available packages and choose actions to perform
Information about %s
Packages depending on %s
Dependencies of %s
Help
View a list of frequently asked questions
View the progress of the package download
%BWARNING%b: untrusted versions of the following packages will be installed!%n%nUntrusted packages could %Bcompromise your system's security%b. You should only proceed with the installation if you are certain that this is what you want to do.%n%n
Really Continue
Abort Installation
Preview of package installation
View and/or adjust the actions that will be performed
Become root
Don't become root
No packages are scheduled to be installed, removed, or upgraded.
Updating package lists
View the progress of the package list update
Waste time trying to find mines
Cleaning while a download is in progress is not allowed
Deleting downloaded files
Downloaded package files have been deleted
^Install/remove packages
^Update package list
^Forget new packages
^Clean package cache
Clean ^obsolete files
^Reload package cache
^Play Minesweeper
^Become root
^Quit
Undo
^Install
Flag the currently selected package for installation or upgrade
^Remove
Flag the currently selected package for removal
^Purge
Flag the currently selected package and its configuration files for removal
^Keep
Cancel any action on the selected package
^Hold
Cancel any action on the selected package, and protect it from future upgrades
Mark ^Auto
Mark ^Manual
^Forbid Version
I^nformation
Display more information about the selected package
^Changelog
Display the Debian changelog of the selected package
^Find
Find ^Again
Repeat the last search
^Limit Display
Apply a filter to the package list
^Un-Limit Display
Remove the filter from the package list
Find ^Broken
Find the next package with unsatisfied dependencies
^UI options
Change the settings which affect the user interface
^Dependency handling
Change the settings which affect how package dependencies are handled
^Miscellaneous
Change miscellaneous program settings
^Revert options
Reset all settings to the system defaults
^Next
View next display
^Prev
View previous display
^Close
Close this display
New Package ^View
Create a new default package view
New Categorical ^Browser
Browse packages by category
^About
View information about this program
^Help
View the on-line help
User's ^Manual
View the detailed program manual
^FAQ
^License
Actions
Search
Options
Views
yes_key
no_key
You can only view changelogs of official Debian packages.
Package %s version %s has an unmet dep:
Total package names:
Normal packages:
Pure virtual packages:
Single virtual packages:
Mixed virtual packages:
Missing:
Total distinct versions:
Total dependencies:
Total ver/file relations:
Total Provides mappings:
Total globbed strings:
Total dependency version space:
Total slack space:
Total space accounted for:
Package file %s is out of sync.
No packages found
Unable to locate package %s
Package files:
Cache is out of sync, can't x-ref a package file
Pinned packages:
(not found)
Installed:
Candidate:
(none)
Package pin:
Version table:
Please insert a Disc in the drive and press enter
Repeat this process for the rest of the CDs in your set.
Arguments not in pairs
Usage: apt-config [options] command apt-config is a simple tool to read the APT config file Commands: shell - Shell mode dump - Show the configuration Options: -h This help text. -c=? Read this configuration file -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp
%s not a valid DEB package.
Usage: apt-extracttemplates file1 [file2 ...] apt-extracttemplates is a tool to extract config and template info from debian packages Options: -h This help text -t Set the temp dir -c=? Read this configuration file -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp
Unable to write to %s
Cannot get debconf version. Is debconf installed?
Package extension list is too long
Error processing directory %s
Source extension list is too long
Error writing header to contents file
Error processing contents %s
Usage: apt-ftparchive [options] command Commands: packages binarypath [overridefile [pathprefix]] sources srcpath [overridefile [pathprefix]] contents path release path generate config [groups] clean config apt-ftparchive generates index files for Debian archives. It supports many styles of generation from fully automated to functional replacements for dpkg-scanpackages and dpkg-scansources apt-ftparchive generates Package files from a tree of .debs. The Package file contains the contents of all the control fields from each package as well as the MD5 hash and filesize. An override file is supported to force the value of Priority and Section. Similarly apt-ftparchive generates Sources files from a tree of .dscs. The --source-override option can be used to specify a src override file The 'packages' and 'sources' command should be run in the root of the tree. BinaryPath should point to the base of the recursive search and override file should contain the override flags. Pathprefix is appended to the filename fields if present. Example usage from the Debian archive: apt-ftparchive packages dists/potato/main/binary-i386/ > \\ dists/potato/main/binary-i386/Packages Options: -h This help text --md5 Control MD5 generation -s=? Source override file -q Quiet -d=? Select the optional caching database --no-delink Enable delinking debug mode --contents Control contents file generation -c=? Read this configuration file -o=? Set an arbitrary configuration option
No selections matched
Some files are missing in the package file group `%s'
DB was corrupted, file renamed to %s.old
DB is old, attempting to upgrade %s
Unable to open DB file %s: %s
Failed to stat %s
Archive has no control record
Unable to get a cursor
W: Unable to read directory %s
W: Unable to stat %s
E:
W:
E: Errors apply to file
Failed to resolve %s
Tree walking failed
Failed to open %s
DeLink %s [%s]
Failed to readlink %s
Failed to unlink %s
*** Failed to link %s to %s
DeLink limit of %sB hit.
Archive had no package field
%s has no override entry
%s maintainer is %s not %s
%s has no source override entry
%s has no binary override entry either
realloc - Failed to allocate memory
Unable to open %s
Failed to read the override file %s
Unknown compression algorithm '%s'
Compressed output %s needs a compression set
Failed to create IPC pipe to subprocess
Failed to create FILE*
Failed to fork
Compress child
Internal error, failed to create %s
IO to subprocess/file failed
Failed to read while computing MD5
Problem unlinking %s
Failed to rename %s to %s
Y
N
Regex compilation error - %s
The following packages have unmet dependencies:
but %s is installed
but %s is to be installed
but it is not installable
but it is a virtual package
but it is not installed
but it is not going to be installed
or
The following NEW packages will be installed:
The following packages will be REMOVED:
The following packages have been kept back:
The following packages will be upgraded:
The following packages will be DOWNGRADED:
The following held packages will be changed:
%s (due to %s)
WARNING: The following essential packages will be removed. This should NOT be done unless you know exactly what you are doing!
%lu upgraded, %lu newly installed,
%lu reinstalled,
%lu downgraded,
%lu to remove and %lu not upgraded.
%lu not fully installed or removed.
Package %s is a virtual package provided by:
[Installed]
You should explicitly select one to install.
Package %s is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source
However the following packages replace it:
Skipping %s, it is already installed and upgrade is not set.
Reinstallation of %s is not possible, it cannot be downloaded.
%s is already the newest version.
Package %s is not installed, so not removed
Correcting dependencies...
failed.
Unable to correct dependencies
Unable to minimize the upgrade set
Done
You might want to run 'apt-get -f install' to correct these.
Unmet dependencies. Try using -f.
WARNING: The following packages cannot be authenticated!
Authentication warning overridden.
Install these packages without verification [y/N]?
Some packages could not be authenticated
There are problems and -y was used without --force-yes
Internal error, InstallPackages was called with broken packages!
Packages need to be removed but remove is disabled.
Internal error, Ordering didn't finish
How odd.. The sizes didn't match, email apt@packages.debian.org
Need to get %sB/%sB of archives.
Need to get %sB of archives.
Couldn't determine free space in %s
You don't have enough free space in %s.
Trivial Only specified but this is not a trivial operation.
Yes, do as I say!
You are about to do something potentially harmful. To continue type in the phrase '%s' ?]
Abort.
Do you want to continue [Y/n]?
Failed to fetch %s %s
Some files failed to download
Download complete and in download only mode
Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
--fix-missing and media swapping is not currently supported
Unable to correct missing packages.
Aborting install.
The update command takes no arguments
We are not supposed to delete stuff, can't start AutoRemover
Hmm, seems like the AutoRemover destroyed something which really shouldn't happen. Please file a bug report against apt.
The following information may help to resolve the situation:
Use 'apt-get autoremove' to remove them.
Internal error, AllUpgrade broke stuff
You might want to run 'apt-get -f install' to correct these:
Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming.
Broken packages
The following extra packages will be installed:
Suggested packages:
Recommended packages:
Couldn't find package %s
Calculating upgrade...
Failed
Done
Internal error, problem resolver broke stuff
Unable to lock the download directory
Must specify at least one package to fetch source for
Unable to find a source package for %s
Skipping already downloaded file '%s'
You don't have enough free space in %s
Need to get %sB/%sB of source archives.
Need to get %sB of source archives.
Fetch source %s
Failed to fetch some archives.
Skipping unpack of already unpacked source in %s
Unpack command '%s' failed.
Check if the 'dpkg-dev' package is installed.
Build command '%s' failed.
Child process failed
Must specify at least one package to check builddeps for
Unable to get build-dependency information for %s
%s has no build depends.
%s dependency for %s cannot be satisfied because the package %s cannot be found
Failed to satisfy %s dependency for %s: Installed package %s is too new
Failed to satisfy %s dependency for %s: %s
Build-dependencies for %s could not be satisfied.
Failed to process build dependencies
Supported modules:
Hit
Get:
Ign
Err
Fetched %sB in %s (%sB/s)
[Working]
Media change: please insert the disc labeled '%s' in the drive '%s' and press enter
Unknown package record!
Usage: apt-sortpkgs [options] file1 [file2 ...] apt-sortpkgs is a simple tool to sort package files. The -s option is used to indicate what kind of file it is. Options: -h This help text -s Use source file sorting -c=? Read this configuration file -o=? Set an arbitrary configuration option, eg -o dir::cache=/tmp
Bad default setting!
Press enter to continue.
or errors caused by missing dependencies. This is OK, only the errors
above this message are important. Please fix them and run [I]nstall again
Merging available information
OK
Cancel
Reboot
Continue
Boot Options
You are leaving the graphical boot menu and starting the text mode interface.
Help
Boot loader
I/O error
Change Boot Disk
Insert boot disk %u.
Password
Enter your password:
DVD Error
This is a two-sided DVD. You have booted from the second side. Turn the DVD over then continue.
Power Off
Halt the system now?
Password
Other Options
Language
Keymap
Expert mode
Accessibility
None
Motor Difficulties - switch devices
Everything
^Rescue a broken system
^Boot from first hard disk
_Help
_Effects
Saturation
Cheese
Use a countdown
No device found
translator-credits
Cheese Website
No Effect
Save File
Could not save %s
Move to _Trash
The program '%s' is currently not installed.
You can install it by typing:
To run '%(command)s' please ask your administrator to install the package '%(package)s'
The program '%s' can be found in the following packages:
Try: %s
Ask your administrator to install one of them
%prog [options] <command\-name>
use this path to locate data fields
falling back to frontend: %s
unable to initialize frontend: %s
Unable to start a frontend: %s
Config database not specified in config file.
Template database not specified in config file.
The Sigils and Smileys options in the config file are no longer used. Please remove them.
Problem setting up the database defined by stanza %s of %s.
-f, --frontend\t\tSpecify debconf frontend to use. -p, --priority\t\tSpecify minimum priority question to show. --terse\t\t\tEnable terse mode.
Ignoring invalid priority "%s"
Valid priorities are: %s
Choices
yes
no
(Enter zero or more items separated by a comma followed by a space (', ').)
_Help
Help
Debconf
Debconf, running at %s
Input value, "%s" not found in C choices! This should never happen. Perhaps the templates were incorrectly localized.
none of the above
Enter the items you want to select, separated by spaces.
Unable to load Debconf::Element::%s. Failed because: %s
Configuring %s
TERM is not set, so the dialog frontend is not usable.
Dialog frontend is incompatible with emacs shell buffers
Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.
No usable dialog-like program is installed, so the dialog based frontend cannot be used.
Dialog frontend requires a screen at least 13 lines tall and 31 columns wide.
Package configuration
You are using the editor-based debconf frontend to configure your system. See the end of this document for detailed instructions.
The editor-based debconf frontend presents you with one or more text files to edit. This is one such text file. If you are familiar with standard unix configuration files, this file will look familiar to you -- it contains comments interspersed with configuration items. Edit the file, changing any items as necessary, and then save it and exit. At that point, debconf will read the edited file, and use the values you entered to configure the system.
Debconf on %s
This frontend requires a controlling tty.
Term::ReadLine::GNU is incompatable with emacs shell buffers.
More
Note: Debconf is running in web mode. Go to http://localhost:%i/
Back
Next
warning: possible database corruption. Will attempt to repair by adding back missing question %s.
Template #%s in %s has a duplicate field "%s" with new value "%s". Probably two templates are not properly separated by a lone newline.
Unknown template field '%s', in stanza #%s of %s
Template parse error near `%s', in stanza #%s of %s
Template #%s in %s does not contain a 'Template:' line
must specify some debs to preconfigure
delaying package configuration, since apt-utils is not installed
unable to re-open stdin: %s
apt-extracttemplates failed: %s
Extracting templates from packages: %d%%
Preconfiguring packages ...
template parse error: %s
debconf: can't chmod: %s
%s failed to preconfigure, with exit status %s
%s must be run as root
please specify a package to reconfigure
%s is not installed
%s is broken or not fully installed
Usage: debconf-communicate [options] [package]
debconf-mergetemplate: This utility is deprecated. You should switch to using po-debconf's po2debconf program.
Usage: debconf-mergetemplate [options] [templates.ll ...] templates
--outdated\t\tMerge in even outdated translations. \t--drop-old-templates\tDrop entire outdated templates.
%s is missing
%s is missing; dropping %s
%s is fuzzy at byte %s: %s
%s is fuzzy at byte %s: %s; dropping it
%s is outdated
%s is outdated; dropping whole template!
Usage: debconf [options] command [args]
-o, --owner=package\t\tSet the package that owns the command.
SQL database
This task selects client and server packages for the PostgreSQL database.
PostgreSQL is an SQL relational database, offering increasing SQL92 compliance and some SQL3 features. It is suitable for use with multi-user database access, through its facilities for transactions and fine-grained locking.
This task provides basic desktop software and serves as a basis for the GNOME and KDE desktop tasks.
DNS server
Selects the BIND DNS server, and related documentation and utility packages.
File server
This task sets up your system to be a file server, supporting both CIFS and NFS.
GNOME desktop environment
This task provides basic "desktop" software using the GNOME desktop environment.
KDE desktop environment
This task provides basic "desktop" software using the K Desktop Environment.
Laptop
This task installs software useful for a laptop.
LXDE desktop environment
This task provides basic "desktop" software using the LXDE desktop environment.
Mail server
This task selects a variety of package useful for a general purpose mail server system.
manual package selection
Manually select packages to install in aptitude.
Print server
This task sets up your system to be a print server.
Web server
This task selects packages useful for a general purpose web server system.
Xfce desktop environment
This task provides basic "desktop" software using the Xfce desktop environment.
may not be empty string
must start with an alphanumeric
character `%c' not allowed (only letters, digits and characters `%s')
cannot remove `%.250s'
updates directory contains file `%.250s' whose name is too long (length=%d, max=%d)
updates directory contains files with different length names (both %d and %d)
cannot scan updates directory `%.255s'
failed to remove incorporated update file %.255s
unable to create `%.255s'
unable to fill %.250s with padding
unable to open/create status database lockfile
you do not have permission to lock the dpkg status database
requested operation requires superuser privilege
unable to access dpkg status area
operation requires read/write access to dpkg status area
failed to remove my own update file %.255s
unable to write updated status of `%.250s'
unable to flush updated status of `%.250s'
unable to truncate for updated status of `%.250s'
unable to fsync updated status of `%.250s'
unable to close updated status of `%.250s'
unable to install updated status of `%.250s'
%s: error while cleaning up: %s
out of memory for new cleanup entry
out of memory for new cleanup entry with many arguments
%s is missing
junk after %s
invalid package name (%.250s)
empty file details field `%s'
file details field `%s' not allowed in status file
too many values in file details field `%s' (compared to others)
too few values in file details field `%s' (compared to others)
yes/no in boolean field
root or null directory is listed as a conffile
`%s' field, missing package name, or garbage where package name expected
`%s' field, invalid package name `%.255s': %s
`%s' field, reference to `%.255s': bad version relationship %c%c
`%s' field, reference to `%.255s': `%c' is obsolete, use `%c=' or `%c%c' instead
`%s' field, reference to `%.255s': implicit exact match on version number, suggest using `=' instead
`%s' field, reference to `%.255s': version value starts with non-alphanumeric, suggest adding a space
`%s' field, reference to `%.255s': version unterminated
`%s' field, syntax error after reference to package `%.255s'
alternatives (`_BAR_') not allowed in %s field
failed to dup for std%s
failed to dup for fd %d
failed to create pipe
unable to read filedescriptor flags for %.250s
unable to set close-on-exec flag for %.250s
read error in configuration file `%.255s'
error closing configuration file `%.255s'
unknown option --%s
--%s option takes a value
--%s option does not take a value
unknown option -%c
-%c option takes a value
-%c option does not take a value
invalid integer for --%s: `%.250s'
duplicate value for `%s' field
user-defined field name `%.*s' too short
duplicate value for user-defined field `%.*s'
missing %s
empty value for %s
Package which in state not-installed has conffiles, forgetting them
failed to open package info file `%.255s' for reading
can't stat package info file `%.255s'
can't mmap package info file `%.255s'
EOF after field name `%.*s'
newline in field name `%.*s'
MSDOS EOF (^Z) in field name `%.*s'
field name `%.*s' must be followed by colon
EOF before value of field `%.*s' (missing final newline)
MSDOS EOF char in value of field `%.*s' (missing newline?)
EOF during value of field `%.*s' (missing final newline)
failed to close after read: `%.255s'
several package info entries found, only one allowed
no package information in `%.255s'
must start with an alphanumeric character
version string is empty
version string has embedded spaces
epoch in version is not number
nothing after colon in version number
(no description available)
error un-catching signal %s: %s
%s (subprocess): %s
fork failed
subprocess %s returned error exit status %d
subprocess %s failed with wait status code %d
error reading from dpkg-deb pipe
error setting ownership of `%.255s'
error setting permissions of `%.255s'
error closing/writing `%.255s'
error creating pipe `%.255s'
error creating device `%.255s'
error creating hard link `%.255s'
error creating symbolic link `%.255s'
error creating directory `%.255s'
error setting timestamps of `%.255s'
error setting ownership of symlink `%.255s'
unable to read link `%.255s'
unable to stat `%.255s' (which I was about to install)
unable to clean up mess surrounding `%.255s' before installing another version
unable to stat restored `%.255s' before installing another version
archive contained object `%.255s' of unknown type 0x%x
unable to move aside `%.255s' to install new version
unable to make backup symlink for `%.255s'
unable to chown backup symlink for `%.255s'
unable to make backup link of `%.255s' before installing new version
unable to install new version of `%.255s'
conflicting packages - not installing %.250s
--%s --recursive needs at least one path argument
failed to fdopen find's pipe
error reading find's pipe
error closing find's pipe
find for --recursive returned unhandled error %i
searched, but found no packages (files matching *.deb)
--%s needs at least one package archive file argument
unable to remove newly-installed version of `%.250s' to allow reinstallation of backup copy
unable to restore backup version of `%.250s'
unable to remove newly-installed version of `%.250s'
unable to remove newly-extracted version of `%.250s'
==> Package distributor has shipped an updated version.
Version in package is the same as at last installation.
==> Using new file as you requested.
==> Using current old file as you requested.
==> Keeping old config file as default.
==> Using new config file as default.
The default action is to keep your current version.
The default action is to install the new version.
[default=N]
[default=Y]
[no default]
error writing to stderr, discovered before conffile prompt
read error on stdin at conffile prompt
EOF on stdin at conffile prompt
Type `exit' when you're done.
unable to stat current installed conffile `%.250s'
Configuration file `%s', does not exist on system. Installing new config file as you requested.
Installing new version of config file %s ...
unable to install `%.250s' as `%.250s'
no package named `%s' is installed, cannot configure
package %.250s is already installed and configured
package %.250s is not ready for configuration cannot configure (current status `%.250s')
dependency problems - leaving unconfigured
Setting up %s (%s) ...
%.250s is to be removed.
%.250s is to be deconfigured.
%.250s is to be installed, but is version %.250s.
%.250s is installed, but is version %.250s.
%.250s is unpacked, but has never been configured.
%.250s is unpacked, but is version %.250s.
%.250s latest configured version is %.250s.
%.250s is %s.
%.250s provides %.250s but is to be removed.
%.250s provides %.250s but is to be deconfigured.
%.250s provides %.250s but is %s.
%.250s is not installed.
%.250s (version %.250s) is to be installed.
%.250s provides %.250s and is to be installed.
failed to open diversions file
failed to fstat diversions file
conflicting diversions involving `%.250s' or `%.250s'
The following packages are in a mess due to serious problems during installation. They must be reinstalled for them (and any packages that depend on them) to function properly:
The following packages have been unpacked but not yet configured. They must be configured using dpkg --configure or the configure menu option in dselect for them to work:
The following packages are only half configured, probably due to problems configuring them the first time. The configuration should be retried using dpkg --configure <package> or the configure menu option in dselect:
The following packages are only half installed, due to problems during installation. The installation can probably be completed by retrying it; the packages can be removed using dselect or dpkg --remove:
Another process has locked the database for writing, and might currently be modifying it, some of the following problems might just be due to that.
--%s takes no arguments
%d in %s:
cannot satisfy pre-dependencies for %.250s (wanted due to %.250s)
--compare-versions takes three arguments: <version> <relation> <version>
--compare-versions bad relation
Errors were encountered while processing:
Processing was halted because there were too many errors.
Package %s is on hold, not touching it. Use --force-hold to override.
unable to open files list file for package `%.250s'
files list file for package `%.250s' contains empty filename
error closing files list file for package `%.250s'
(Reading database ...
not installed
not installed but configs remain
unpacked but not configured
broken due to postinst failure
installed
unable to check existence of `%.250s'
cannot read info directory
error trying to open %.250s
unknown force/refuse option `%.*s'
couldn't open `%i' for stream
unexpected eof before end of line %d
need an action option
you must specify packages by their own names, not by quoting the names of the files they come in
--%s --pending does not take any non-option arguments
--%s needs at least one package name argument
Package %s listed more than once, only processing once.
More than one copy of package %s has been unpacked in this run ! Only configuring it once.
depends on
; however:
Name
Version
Description
--search needs at least one file name pattern argument
Package `%s' does not contain any files (!)
Use dpkg --info (= dpkg-deb --info) to examine archive files, and dpkg --contents (= dpkg-deb --contents) to list their contents.
dependency problems - not removing
unable to delete control info file `%.250s'
cannot remove old config file `%.250s' (= `%.250s')
cannot read config file dir `%.250s' (from `%.250s')
cannot remove old backup config file `%.250s' (of `%.250s')
cannot remove old files list
can't remove old postrm script
unable to set execute permissions on `%.250s'
failed to chroot to `%.250s'
failed to chdir to `%.255s'
unable to stat %s `%.250s'
new %s script
old %s script
there is no script in the new version of the package - giving up
unexpected eof in package name at line %d
unexpected end of line in package name at line %d
unexpected eof after package name at line %d
unexpected end of line after package name at line %d
unexpected data after package and selection at line %d
illegal package name at line %d: %.250s
unknown wanted status at line %d: %.250s
read error on standard input
failed to open statoverride file
failed to fstat statoverride file
statoverride file contains empty line
error ensuring `%.250s' doesn't exist
reassembled package file
Authenticating %s ...
passed
old version of package has overly-long info file name starting `%.250s'
unable to remove obsolete info file `%.250s'
unable to install (supposed) new info file `%.250s'
unable to open temp control directory
package contains overly-long control info file name (starting `%.50s')
package control info contained directory `%.250s'
package control info rmdir of `%.250s' didn't say not a dir
unable to install new info file `%.250s' as `%.250s'
(Noting disappearance of %s, which has been completely replaced.)
cannot access archive
Recorded info about %s from %s.
package architecture (%s) does not match system (%s)
pre-dependency problem - not installing %.250s
read error in %.250s
error closing %.250s
error reading dpkg-deb tar output
corrupted filesystem tarfile - corrupted package archive
unable to access dpkg status area for bulk available update
bulk available update requires write access to dpkg status area
Replacing available packages info, using %s.
Updating available packages info, using %s.
control directory has bad permissions %03lo (must be >=0755 and <=0775)
maintainer script `%.50s' is not a plain file or symlink
maintainer script `%.50s' has bad permissions %03lo (must be >=0555 and <=0775)
maintainer script `%.50s' is not stattable
error opening conffiles file
empty string from fgets reading conffiles
conffile `%.250s' does not appear in package
conffile `%.250s' is not stattable
error reading conffiles file
package name has characters that aren't lowercase alphanums or `-+.'
unable to check for existence of archive `%.250s'
target is directory - cannot skip control file check
dpkg-deb: building package `%s' in `%s'.
error writing `%s'
unexpected end of file in %s in %.255s
failed to read archive `%.255s'
failed to fstat archive
file `%.250s' is not a debian binary archive (try dpkg-split?)
archive has no newlines in header
`%.255s' is not a debian format archive
failed to chdir to directory
failed to create directory
failed to chdir to directory after creating it
--%s needs a .deb filename argument
--%s takes only one argument (.deb filename)
--%s takes at most two arguments (.deb and directory)
--%s needs a target directory. Perhaps you should be using dpkg --install ?
failed to chdir to `/' for cleanup
open component `%.255s' (in %.255s) failed in an unexpected way
cannot scan directory `%.255s'
cannot stat `%.255s' (in `%.255s')
cannot open `%.255s' (in `%.255s')
failed to read `%.255s' (in `%.255s')
not a plain file %.255s
(no `control' file in control archive!)
could not open the `control' component
failed during read of `control' component
Type dpkg-deb --help for help about manipulating *.deb files; Type dpkg --help for help about installing and deinstalling packages.
unknown compression type `%s'!
file `%.250s' is corrupt - bad digit (code %d) in %s
file `%.250s' is corrupt - %.250s missing
file `%.250s' is corrupt - missing newline after %.250s
error reading %.250s
file `%.250s' is corrupt - bad magic at end of first header
file `%.250s' is corrupt - bad padding character (code %d)
file `%.250s' is corrupt - nulls in info section
file `%.250s' is corrupt - bad MD5 checksum `%.250s'
file `%.250s' is corrupt - bad magic at end of second header
file `%.250s' is corrupt - second member is not data member
file `%.250s' is corrupt - wrong number of parts for quoted sizes
file `%.250s' is corrupt - size is wrong for quoted part number
unable to fstat part file `%.250s'
file `%.250s' is corrupt - too short
cannot open archive part file `%.250s'
file `%.250s' is not an archive part
%s: Part format version: %d.%d Part of package: %s ... version: %s ... architecture: %s ... MD5 checksum: %s ... length: %jd bytes ... split every: %jd bytes Part number: %d/%d Part length: %jd bytes Part offset: %jd bytes Part file size (used portion): %jd bytes
file `%s' is not an archive part
unable to open output file `%.250s'
unable to (re)open input part file `%.250s'
done
files `%.250s' and `%.250s' are not parts of the same file
there are several versions of part %d - at least `%.250s' and `%.250s'
part %d is missing
Type dpkg-split --help for help.
unexpected end of file in %.250s
part size is far too large or is not positive
unable to read depot directory `%.250s'
--auto requires the use of the --output option
--auto requires exactly one part file argument
unable to read part file `%.250s'
File `%.250s' is not part of a multipart archive.
unable to reopen part file `%.250s'
unable to open new depot file `%.250s'
unable to rename new depot file `%.250s' to `%.250s'
Part %d of package %s filed (still want
and
unable to delete used-up depot file `%.250s'
Junk files left around in the depot directory:
unable to stat `%.250s'
%s (not a plain file)
Packages not yet reassembled:
part file `%.250s' is not a plain file
unable to discard `%.250s'
Deleted %s.
unable to open source file `%.250s'
unable to fstat source file
source file `%.250s' not a plain file
--split needs a source filename argument
--split takes at most a source filename and destination prefix
warning
Search for ?
Error:
Help:
Press ? for help menu, . for next topic, <space> to exit help.
Help information is available under the following topics:
Press a key from the list above, <space> or `q' to exit help, or `.' (full stop) to read each help page in turn.
error reading keyboard in help
ioctl(TIOCGWINSZ) failed
doupdate in SIGWINCH handler failed
failed to restore old SIGWINCH sigact
failed to restore old signal mask
failed to get old signal mask
failed to get old SIGWINCH sigact
failed to block SIGWINCH
failed to set new SIGWINCH sigact
failed to allocate colour pair
failed to create title window
failed to create whatinfo window
failed to create baselist pad
failed to create heading pad
failed to create thisstate pad
failed to create info pad
failed to create query window
-- %d%%, press
%s for more
%s to go back
[not bound]
[unk: %d]
Scroll onwards through help/information
Scroll backwards through help/information
Move up
Move down
Go to top of list
Go to end of list
Request help (cycle through help screens)
Cycle through information displays
Redraw display
Scroll onwards through list by 1 line
Scroll backwards through list by 1 line
Scroll onwards through help/information by 1 line
Scroll backwards through help/information by 1 line
Scroll onwards through list
Scroll backwards through list
Mark package(s) for installation
Mark package(s) for deinstallation
Mark package(s) for deinstall and purge
Make highlight more specific
Make highlight less specific
Search for a package whose name contains a string
Swap sort order priority/section
Quit, confirming, and checking dependencies
Quit, confirming without check
Quit, rejecting conflict/dependency suggestions
Abort - quit without making changes
Revert to old state for all packages
Revert to suggested state for all packages
Revert to directly requested state for all packages
Select currently-highlighted access method
Quit without changing selected access method
Keystrokes
Introduction to package selections
Welcome to dselect's main package listing. You will be presented with a list of packages which are installed or available for installation. You can navigate around the list using the cursor keys, mark packages for installation (using `+') or deinstallation (using `-'). Packages can be marked either singly or in groups; initially you will see that the line `All packages' is selected. `+', `-' and so on will affect all the packages described by the highlighted line. Some of your choices will cause conflicts or dependency problems; you will be given a sub-list of the relevant packages, so that you can solve the problems. You should read the list of keys and the explanations of the display. Much on-line help is available, please make use of it - press `?' at any time for help. When you have finished selecting packages, press <enter> to confirm changes, or `X' to quit without saving changes. A final check on conflicts and dependencies will be done - here too you may see a sublist. Press <space> to leave help and enter the list now.
Introduction to read-only package list browser
Welcome to dselect's main package listing. You will be presented with a list of packages which are installed or available for installation. Since you do not have the privilege necessary to update package states, you are in a read-only mode. You can navigate around the list using the cursor keys (please see the `Keystrokes' help screen), observe the status of the packages and read information about them. You should read the list of keys and the explanations of the display. Much on-line help is available, please make use of it - press `?' at any time for help. When you have finished browsing, press `Q' or <enter> to quit. Press <space> to leave help and enter the list now.
Introduction to conflict/dependency resolution sub-list
Dependency/conflict resolution - introduction. One or more of your choices have raised a conflict or dependency problem - some packages should only be installed in conjunction with certain others, and some combinations of packages may not be installed together. You will see a sub-list containing the packages involved. The bottom half of the display shows relevant conflicts and dependencies; use `i' to cycle between that, the package descriptions and the internal control information. A set of `suggested' packages has been calculated, and the initial markings in this sub-list have been set to match those, so you can just hit Return to accept the suggestions if you wish. You may abort the change(s) which caused the problem(s), and go back to the main list, by pressing capital `X'. You can also move around the list and change the markings so that they are more like what you want, and you can `reject' my suggestions by using the capital `D' or `R' keys (see the keybindings help screen). You can use capital `Q' to force me to accept the situation currently displayed, in case you want to override a recommendation or think that the program is mistaken. Press <space> to leave help and enter the sub-list; remember: press `?' for help.
Display, part 1: package listing and status chars
Display, part 2: list highlight; information display
* Highlight: One line in the package list will be highlighted. It indicates which package(s) will be affected by presses of `+', `-' and `_'. * The dividing line in the middle of the screen shows a brief explanation of the status of the currently-highlighted package, or a description of which group is highlighted if a group line is. If you don't understand the meaning of some of the status characters displayed, go to the relevant package and look at this divider line, or use the `v' key for a verbose display (press `v' again to go back to the terse display). * The bottom of the screen shows more information about the currently-highlighted package (if there is only one). It can show an extended description of the package, the internal package control details (either for the installed or available version of the package), or information about conflicts and dependencies involving the current package (in conflict/dependency resolution sublists). Use the `i' key to cycle through the displays, and `I' to hide the information display or expand it to use almost all of the screen.
Introduction to method selection display
dselect and dpkg can do automatic installation, loading the package files to be installed from one of a number of different possible places. This list allows you to select one of these installation methods. Move the highlight to the method you wish to use, and hit Enter. You will then be prompted for the information required to do the installation. As you move the highlight a description of each method, where available, is displayed in the bottom half of the screen. If you wish to quit without changing anything use the `x' key while in the list of installation methods. A full list of keystrokes is available by pressing `k' now, or from the help menu reachable by pressing `?'.
Keystrokes for method selection
Type dselect --help for help.
a
[A]ccess
Choose the access method to use.
u
[U]pdate
Update list of available packages, if possible.
s
[S]elect
Request which packages you want on your system.
i
[I]nstall
Install and upgrade wanted packages.
c
[C]onfig
Configure any packages that are unconfigured.
r
[R]emove
Remove unwanted software.
q
[Q]uit
Quit dselect.
menu
Screenparts:
Colours:
Attributes:
couldn't open debug file `%.255s'
screen part
colour
colour attribute
Terminal does not appear to support cursor addressing.
Terminal does not appear to support highlighting.
terminal lacks necessary features, giving up
Move around with ^P and ^N, cursor keys, initial letters, or digits; Press <enter> to confirm selection. ^L redraws screen.
Read-only access: only preview of selections is available!
failed to getch in main menu
unknown action string `%.50s'
dselect - list of access methods
Access method `%s'.
Abbrev.
Description
doupdate failed
failed to unblock SIGWINCH
failed to re-block SIGWINCH
getch failed
No explanation available.
%s: %s
Press <enter> to continue.
Press <enter> to continue.
error reading acknowledgement of program failure message
update available list script
installation script
query/setup script
syntax error in method options file `%.250s' -- %s
error reading options file `%.250s'
unable to read `%.250s' directory for reading methods
method `%.250s' has name that is too long (%d > %d characters)
unable to access method script `%.250s'
unable to read method options file `%.250s'
non-digit where digit wanted
EOF in index string
index string too long
newline before option name start
EOF before option name start
nonalpha where option name start wanted
non-alphanum in option name
EOF in option name
newline before summary
EOF before summary
EOF in summary - missing newline
unable to open option description file `%.250s'
unable to stat option description file `%.250s'
failed to read option description file `%.250s'
error during read of option description file `%.250s'
error during read of method options file `%.250s'
unable to open current option file `%.250s'
unable to write new option to `%.250s'
new package
install
hold
remove
purge
REINSTALL
not installed
removed (configs remain)
half installed
unpacked (not set up)
installed
Required
Important
Standard
Optional
Extra
!Bug!
Unclassified
suggests
recommends
depends on
pre-depends on
conflicts with
provides
replaces
enhances
Req
Imp
Std
Opt
Xtr
bUG
?
Broken
New
Updated
Obsolete/local
Up-to-date
Available
Removed
Brokenly installed packages
Newly available packages
Updated packages (newer version is available)
Obsolete and local packages present on system
Up to date installed packages
Available packages (not currently installed)
Removed and no longer available packages
Installed packages
Removed packages (configuration still present)
Purged packages and those never installed
Installed
Purged
dselect - recursive package listing
dselect - inspection of package states
dselect - main package listing
(by section)
(avail., section)
(status, section)
(by priority)
(avail., priority)
(status, priority)
(alphabetically)
(by availability)
(by status)
mark:+/=/- terse:v help:?
mark:+/=/- verbose:v help:?
terse:v help:?
verbose:v help:?
The line you have highlighted represents many packages; if you ask to install, remove, hold, etc. it you will affect all the packages which match the criterion shown. If you move the highlight to a line for a particular package you will see information about that package displayed here. You can use `o' and `O' to change the sort order and give yourself the opportunity to mark packages in different kinds of groups.
invalid search option given
error in regular expression
does not appear to be available
or
All
All packages
%s packages without a section
%s packages in section %s
%s %s packages
%s %s packages without a section
%s %s packages in section %s
%-*s %s%s%s; %s (was: %s). %s
Error
Installed?
Old mark
Marked for
EIOM
Section
Priority
Package
Inst.ver
Avail.ver
Always open a separate chat window for new chats.
Offline
Create a new account on the server
%1$s on %2$s
%s has left the room
Conversation
_Add Group
_SMS
Infor_mation
Location
Reset _Networks List
Chat with %s
Custom messages…
translator-credits
%02u.%02u
_Profession:
_First:
Telex
Categories
Personal
Evolution vCard Importer
Snooze _time:
invalid time
Summary
Description
Classification
Public
Private
Confidential
Organizer
Location
day(s)
Attendees
Customize
for
until
15 minutes before appointment
1 hour before appointment
Memo
first
Date/Time
week(s)
month(s)
year(s)
Task
Completed
Click here, you can find more events.
%s %s after the start of the appointment
%s %s after the end of the appointment
%s at the end of the appointment
%s at %s
Updating objects
Organizer: %s
Location: %s
Accepted
Declined
Delegated
The geographical position must be entered in the format: 45.436845,125.862501
Week %d
Show the second time zone
Click to add a memo
Calendar information
Updated
Refresh
Su
(Completed
Completed
(Due
Evolution Calendar intelligent importer
Meeting
Event
has recurrences
is an instance
has reminders
has attachments
Subject
Secret
For Your Eyes Only
R_eply requested
Wi_thin
_Delay message delivery
_After
_Set expiration date
Open this attachment in %s
Copy book content locally for offline operation
Copy memo list contents locally for offline operation
%B
%Y
Today
Western European, New
Traditional
Simplified
Ukrainian
_None
Yesterday
Next Mon
Next Tue
Next Wed
Next Thu
Next Fri
Next Sat
Find items that meet the following conditions
From %s:
_Remove
Name:
Input Methods
Please choose another name.
popup a child
toggle the cell
expands the row in the ETree containing this cell
Security:
Play Sound
Folder names cannot contain '/'
Select folder to import into
Digitally _sign messages when original message signed (PGP or S/MIME)
Attachment
Inline (Outlook style)
Quoted
Do Not Quote
If you quit, these messages will not be sent until Evolution is started again.
New Address Book
Create a new contact
Create a new contact list
Work Week
Display reminders in _notification area only
Sh_ow a reminder
before every appointment
Show a _reminder
New Calendar
Create a new appointment
Create a new all-day appointment
Create a new meeting request
This operation will permanently erase all events older than the selected amount of time. If you continue, you will not be able to recover these events.
New Memo List
Mem_o
Create a new shared memo
New Task List
_Task
Create a new assigned task
To process all of these items, the file should be saved and the calendar imported
Compose a new mail message
Create a new mail account
Network Preferences
Import Outlook Express messages from DBX file
Unclassified
Protected
Top secret
From: %s
New email in Evolution
Notifies you when new mail messages arrive.
Save Search
Certificates Table
Extensions
Calculates the amount of the periodic payment of a loan, where payments are made at the end of each payment period.
translator-credits
Sign
Inverse hyperbolic tangent is undefined for values outside [-1, 1]
%s degrees
degree,degrees,deg
%s radians
radian,radians,rad
%s gradians
Parsecs
%s pc
Light Years
%s ly
Astronomical Units
%s au
Nautical Miles
%s nmi
Miles
%s mi
Kilometers
%s km
Cables
%s cb
Fathoms
%s ftm
Meters
%s m
Yards
%s yd
Feet
%s ft
Inches
%s in
Centimeters
%s cm
Millimeters
%s mm
Micrometers
%s μm
Nanometers
%s nm
Hectares
%s ha
Acres
%s acres
Square Meters
%s m²
Square Centimeters
%s cm²
Square Millimeters
%s mm²
Cubic Meters
%s m³
Gallons
%s gal
Litres
%s L
Quarts
%s qt
Pints
%s pt
Millilitres
%s mL
Microlitres
%s μL
Tonnes
%s T
Kilograms
%s kg
Pounds
%s lb
Ounces
%s oz
Grams
%s g
Years
%s years
Days
%s days
Hours
%s hours
Minutes
%s minutes
Seconds
%s s
Milliseconds
%s ms
Microseconds
%s μs
Celsius
%s ˚C
Farenheit
%s ˚F
Kelvin
%s K
Rankine
%s ˚R
GPL, see /usr/share/common-licenses/GPL
Terminal
Details
_File
_Help
Package:
Status:
Description
package;apt;dpkg;install
To be removed: %s
To be installed: %s
Failed to remove package
Installing %s
Removing %s
File %s of %s
Please insert '%s' into the drive '%s'
A nonexistent file has been selected for installation. Please select an existing .deb package file.
Please close the other application e.g. 'Update Manager', 'aptitude' or 'Synaptic' first.
Text Editor
Edit text files
Use Default Font
Insert spaces
Specifies the font to use for line numbers when printing. This will only take effect if the "Print Line Numbers" option is non-zero.
translator-credits
D_on't Save
Could not save the file “%s”.
Current page (Alt+P)
INS
%d of %d
_Wrap Around
Match as _Regular Expression
Match _Entire Word Only
Activation
Sorts a document or selected text.
Suggestions
Completed spell checking
%s (%s)
Unknown (%s)
Brush Editor
Paint Dynamics
Paint Dynamics Editor
Edit
Gradient Editor
Image
Palette Editor
Quick Mask
%s: %d
Brush Editor Menu
Edit Active Brush
Brushes Menu
_Open Brush as Image
Open brush as image
_New Brush
Create a new brush
D_uplicate Brush
Duplicate this brush
Copy Brush _Location
Copy brush file location to clipboard
_Delete Brush
Delete this brush
_Refresh Brushes
Refresh brushes
_Edit Brush...
Edit this brush
Buffers Menu
_Paste Buffer
Paste the selected buffer
Paste Buffer _Into
Paste the selected buffer into the selection
Paste Buffer as _New
Paste the selected buffer as a new image
_Delete Buffer
Delete the selected buffer
Channels Menu
_Edit Channel Attributes...
Edit the channel's name, color and opacity
_New Channel...
Create a new channel
_New Channel
Create a new channel with last used values
D_uplicate Channel
Create a duplicate of this channel and add it to the image
_Delete Channel
Delete this channel
_Raise Channel
Raise this channel one step in the channel stack
Raise Channel to _Top
Raise this channel to the top of the channel stack
_Lower Channel
Lower this channel one step in the channel stack
Lower Channel to _Bottom
Lower this channel to the bottom of the channel stack
Channel to Sele_ction
Replace the selection with this channel
_Add to Selection
Add this channel to the current selection
_Subtract from Selection
Subtract this channel from the current selection
_Intersect with Selection
%s Channel Copy
Colormap Menu
_Edit Color...
Edit this color
_Add Color from FG
Add current foreground color
_Add Color from BG
Edit Colormap Entry
Use _GEGL
If possible, use GEGL for image processing
_Context
_Colors
_Opacity
Paint _Mode
_Tool
_Palette
_Font
_Shape
_Radius
S_pikes
_Hardness
_Aspect Ratio
A_ngle
_Default Colors
Set foreground color to black, background color to white
S_wap Colors
Brush Angle: %2.2f
Pointer Information Menu
Use the composite color of all visible layers
Untitled
Tool_box
Tool _Options
Open the tool options dialog
_Device Status
Open the device status dialog
_Layers
Open the layers dialog
_Channels
Open the channels dialog
_Paths
Open the paths dialog
Color_map
Open the colormap dialog
Histogra_m
Open the histogram dialog
_Selection Editor
Open the selection editor
Na_vigation
Open the display navigation dialog
Undo _History
Open the undo history dialog
Open the pointer information dialog
_Sample Points
Open the sample points dialog
Colo_rs
Open the FG/BG color dialog
_Brushes
Open the brushes dialog
Open the brush editor
Open paint dynamics dialog
Open the paint dynamics editor
P_atterns
Open the patterns dialog
_Gradients
Open the gradients dialog
Open the gradient editor
Pal_ettes
Open the palettes dialog
Open the palette editor
Tool presets
Open tool presets dialog
_Fonts
Open the fonts dialog
B_uffers
Open the named buffers dialog
_Images
Open the images dialog
Document Histor_y
Open the document history dialog
_Templates
Open the image templates dialog
Error Co_nsole
Open the error console
_Preferences
Open the preferences dialog
_Input Devices
Open the input devices editor
_Keyboard Shortcuts
Open the keyboard shortcuts editor
_Modules
Open the module manager dialog
_Tip of the Day
Show some helpful tips on using GIMP
_About
Create a new toolbox
M_ove to Screen
Close Dock
_Open Display...
Connect to another display
_Show Image Selection
Auto _Follow Active Image
Dialogs Menu
_Add Tab
_Preview Size
_Tab Style
_Close Tab
_Detach Tab
_Tiny
E_xtra Small
_Small
_Medium
_Large
Ex_tra Large
_Huge
_Enormous
_Gigantic
_Icon
Current _Status
_Text
I_con & Text
St_atus & Text
Automatic
Loc_k Tab to Dock
Protect this tab from being dragged with the mouse pointer
Show _Button Bar
View as _List
View as _Grid
Documents Menu
_Open Image
Open the selected entry
_Raise or Open Image
Raise window if already open
File Open _Dialog
Open image dialog
Copy Image _Location
Copy image location to clipboard
Remove _Entry
Remove the selected entry
_Clear History
Clear the entire document history
Recreate _Preview
Recreate preview
Reload _all Previews
Reload all previews
Remove Dangling E_ntries
Clearing the document history will permanently remove all images from the recent documents list.
_Equalize
Automatic contrast enhancement
In_vert
Invert the colors
_White Balance
Automatic white balance correction
_Offset...
Shift the pixels, optionally wrapping them at the borders
_Visible
Toggle visibility
_Linked
Toggle the linked state
L_ock pixels
Keep the pixels on this drawable from being modified
Flip _Horizontally
Flip horizontally
Flip _Vertically
Flip vertically
Rotate 90° _clockwise
Rotate 90 degrees to the right
Rotate _180°
Turn upside-down
Rotate 90° counter-clock_wise
White Balance operates only on RGB color layers.
Paint Dynamics Menu
_New Dynamics
Create a new dynamics
D_uplicate Dynamics
Duplicate this dynamics
Copy Dynamics _Location
Copy dynamics file location to clipboard
_Delete Dynamics
Delete this dynamics
_Refresh Dynamics
Refresh dynamics
_Edit Dynamics...
Edit dynamics
Paint Dynamics Editor Menu
Edit Active Dynamics
_Edit
Paste _as
_Buffer
Undo History Menu
Undo the last operation
Redo the last operation that was undone
Strong Undo
Undo the last operation, skipping visibility changes
Strong Redo
Redo the last operation that was undone, skipping visibility changes
_Clear Undo History
Remove all operations from the undo history
Modify paint mode and opacity of the last pixel manipulation
Cu_t
Move the selected pixels to the clipboard
_Copy
Copy the selected pixels to the clipboard
Copy _Visible
Copy what is visible in the selected region
_Paste
Paste the content of the clipboard
Paste _Into
Paste the content of the clipboard into the current selection
From _Clipboard
Create a new image from the content of the clipboard
_New Image
New _Layer
Create a new layer from the content of the clipboard
Cu_t Named...
Move the selected pixels to a named buffer
_Copy Named...
Copy the selected pixels to a named buffer
Copy _Visible Named...
Copy what is visible in the selected region to a named buffer
_Paste Named...
Paste the content of a named buffer
Cl_ear
Clear the selected pixels
Fill with _FG Color
Fill the selection using the foreground color
Fill with B_G Color
Fill the selection using the background color
Fill _with Pattern
There is no active layer or channel to copy from.
Error Console Menu
_Clear
Clear error console
Select _All
Select all error messages
_Save Error Log to File...
Write all error messages to a file
Save S_election to File...
Error writing file '%s': %s
_File
Crea_te
Open _Recent
_Open...
Open an image file
Op_en as Layers...
Open an image file as layers
Open _Location...
Open an image file from a specified location
Create Template...
Create a new template from this image
Re_vert
Reload the image file from disk
Close all
Close all opened images
_Quit
Quit the GNU Image Manipulation Program
_Save
Save this image
Save _As...
Save this image with a different name
Save a Cop_y...
Save a copy of this image, without affecting the source file (if any) or the current state of the image
Save and Close...
Save this image and close its window
Export the image again
Over_write
Export the image back to the imported file in the import format
Export As...
Reverting to '%s' failed: %s
Fonts Menu
_Rescan Font List
Rescan the installed fonts
Gradient Editor Menu
Left Color Type
_Load Left Color From
_Save Left Color To
Right Color Type
Load Right Color Fr_om
Sa_ve Right Color To
L_eft Endpoint's Color...
R_ight Endpoint's Color...
Ble_nd Endpoints' Colors
Blend Endpoints' Opacit_y
Edit Active Gradient
_Left Neighbor's Right Endpoint
_Right Endpoint
_Foreground Color
_Background Color
_Right Neighbor's Left Endpoint
_Left Endpoint
_Fixed
F_oreground Color
Fo_reground Color (Transparent)
B_ackground Color (Transparent)
_Linear
_Curved
_Sinusoidal
Spherical (i_ncreasing)
Spherical (_decreasing)
_RGB
HSV (_counter-clockwise hue)
HSV (clockwise _hue)
Zoom In
Zoom in
Zoom Out
Zoom out
Select the number of uniform parts in which to split the segments in the selection.
Gradients Menu
_New Gradient
Create a new gradient
D_uplicate Gradient
Duplicate this gradient
Copy Gradient _Location
Copy gradient file location to clipboard
Save as _POV-Ray...
Save gradient as POV-Ray
_Delete Gradient
Delete this gradient
_Refresh Gradients
Refresh gradients
_Edit Gradient...
Save '%s' as POV-Ray
_Help
Open the GIMP user manual
_Context Help
Show the help for a specific user interface item
Image Menu
_Image
_Mode
_Transform
_Guides
I_nfo
_Map
C_omponents
_New...
Create a new image
Can_vas Size...
Adjust the image dimensions
Fit Canvas to L_ayers
Resize the image to enclose all layers
F_it Canvas to Selection
Resize the image to the extents of the selection
_Print Size...
Adjust the print resolution
_Scale Image...
Change the size of the image content
_Crop to Selection
Crop the image to the extents of the selection
_Duplicate
Create a duplicate of this image
Merge Visible _Layers...
Merge all visible layers into one layer
_Flatten Image
Merge all layers into one and remove transparency
Configure G_rid...
Configure the grid for this image
Image Pr_operties
Display information about this image
Convert the image to the RGB colorspace
_Grayscale
Convert the image to grayscale
_Indexed...
Convert the image to indexed colors
Flip image horizontally
Flip image vertically
Rotate the image 90 degrees to the right
Turn the image upside-down
Scaling
Images Menu
_Raise Views
Raise this image's displays
_New View
Create a new display for this image
_Delete Image
Delete this image
Layers Menu
_Layer
Stac_k
_Mask
Tr_ansparency
_Properties
Layer _Mode
Te_xt Tool
Activate the text tool on this text layer
_Edit Layer Attributes...
Edit the layer's name
_New Layer...
Create a new layer and add it to the image
_New Layer
Create a new layer with last used values
New from _Visible
Create a new layer from what is visible in this image
New Layer _Group...
Create a new layer group and add it to the image
D_uplicate Layer
Create a duplicate of the layer and add it to the image
_Delete Layer
Delete this layer
_Raise Layer
Raise this layer one step in the layer stack
Layer to _Top
Move this layer to the top of the layer stack
_Lower Layer
Lower this layer one step in the layer stack
Layer to _Bottom
Move this layer to the bottom of the layer stack
_Anchor Layer
Anchor the floating layer
Merge Do_wn
Merge this layer with the first visible layer below it
Merge Layer Group
Merge the layer group's layers into one normal layer
Merge _Visible Layers...
_Discard Text Information
Turn this text layer into a normal layer
Text to _Path
Create a path from this text layer
Text alon_g Path
Warp this layer's text along the current path
Layer B_oundary Size...
Adjust the layer dimensions
Layer to _Image Size
Resize the layer to the size of the image
_Scale Layer...
Change the size of the layer content
Crop the layer to the extents of the selection
Add La_yer Mask...
Add a mask that allows non-destructive editing of transparency
Add Alpha C_hannel
Add transparency information to the layer
_Remove Alpha Channel
Remove transparency information from the layer
Lock Alph_a Channel
Keep transparency information on this layer from being modified
_Edit Layer Mask
Work on the layer mask
S_how Layer Mask
_Disable Layer Mask
Dismiss the effect of the layer mask
Apply Layer _Mask
Apply the effect of the layer mask and remove it
Delete Layer Mas_k
Remove the layer mask and its effect
_Mask to Selection
Replace the selection with the layer mask
Add the layer mask to the current selection
Subtract the layer mask from the current selection
Intersect the layer mask with the current selection
Al_pha to Selection
Replace the selection with the layer's alpha channel
A_dd to Selection
Add the layer's alpha channel to the current selection
Subtract the layer's alpha channel from the current selection
Intersect the layer's alpha channel with the current selection
Select _Top Layer
Select the topmost layer
Select _Bottom Layer
Select the bottommost layer
Select _Previous Layer
Select the layer above the current layer
Select _Next Layer
Shortcut:
-Click on thumbnail in Layers dockable
Layer
Scale Layer
Add Layer Mask
Palette Editor Menu
Edit this entry
_Delete Color
Delete this entry
Edit Active Palette
New Color from _FG
Create a new entry from the foreground color
New Color from _BG
Zoom _In
Zoom _Out
Edit Color Palette Entry
Palettes Menu
_New Palette
Create a new palette
_Import Palette...
Import palette
D_uplicate Palette
Duplicate this palette
_Merge Palettes...
Merge palettes
Copy Palette _Location
Copy palette file location to clipboard
_Delete Palette
Delete this palette
_Refresh Palettes
Refresh palettes
_Edit Palette...
Enter a name for the merged palette
Patterns Menu
_Open Pattern as Image
Open this pattern as an image
_New Pattern
Create a new pattern
D_uplicate Pattern
Duplicate this pattern
Copy Pattern _Location
Copy pattern file location to clipboard
_Delete Pattern
Delete this pattern
_Refresh Patterns
Refresh patterns
_Edit Pattern...
Edit pattern
Filte_rs
Recently Used
_Blur
_Noise
Edge-De_tect
En_hance
C_ombine
_Generic
_Light and Shadow
_Distorts
_Artistic
_Decor
_Render
_Clouds
_Nature
_Web
An_imation
Reset all _Filters
Reset all plug-ins to their default settings
Re_peat Last
Rerun the last used plug-in using the same settings
R_e-Show Last
Do you really want to reset all filters to default values?
Quick Mask Menu
_Configure Color and Opacity...
Toggle _Quick Mask
Toggle Quick Mask on/off
Mask _Selected Areas
_Mask opacity:
Sample Point Menu
Selection Editor Menu
_Select
_All
Select everything
_None
Dismiss the selection
_Invert
Invert the selection
_Float
Create a floating selection
Fea_ther...
Blur the selection border so that it fades out smoothly
_Sharpen
Remove fuzziness from the selection
S_hrink...
Contract the selection
_Grow...
Enlarge the selection
Bo_rder...
Replace the selection by its border
Save to _Channel
Save the selection to a channel
_Stroke Selection...
Paint along the selection outline
_Stroke Selection
Feather Selection
Grow Selection
Border Selection
Stroke Selection
Templates Menu
_Create Image from Template
Create a new image from the selected template
_New Template...
Create a new template
D_uplicate Template...
Duplicate this template
_Edit Template...
Edit this template
_Delete Template
Are you sure you want to delete template '%s' from the list and from disk?
Open
Load text from file
Clear
Clear all text
LTR
From left to right
RTL
From right to left
Could not open '%s' for reading: %s
Text Tool Menu
Input _Methods
_Delete
_Open text file...
_Path from Text
Create a path from the outlines of the current text
Text _along Path
Bend the text along the currently active path
Tool Options Menu
_Save Tool Preset
_Restore Tool Preset
E_dit Tool Preset
_Delete Tool Preset
_New Tool Preset...
R_eset Tool Options
Reset to default values
Reset _all Tool Options
Do you really want to reset all tool options to default values?
Tool Presets Menu
_New Tool Preset
Create a new tool preset
D_uplicate Tool Preset
Duplicate this tool preset
Copy Tool Preset _Location
Copy tool preset file location to clipboard
Delete this tool preset
_Refresh Tool Presets
Refresh tool presets
_Edit Tool Preset...
Edit this tool preset
Tool Preset Editor Menu
Edit Active Tool Preset
_Tools
_Selection Tools
_Paint Tools
_Transform Tools
_Color Tools
_By Color
Select regions with similar colors
_Arbitrary Rotation...
Rotate by an arbitrary angle
Paths Menu
Path _Tool
_Edit Path Attributes...
Edit path attributes
_New Path...
Create a new path...
_New Path with last values
Create a new path with last used values
D_uplicate Path
Duplicate this path
_Delete Path
Delete this path
Merge _Visible Paths
_Raise Path
Raise this path
Raise Path to _Top
Raise this path to the top
_Lower Path
Lower this path
Lower Path to _Bottom
Lower this path to the bottom
Stro_ke Path...
Paint along the path
Stro_ke Path
Paint along the path with last values
Co_py Path
Paste Pat_h
E_xport Path...
I_mport Path...
L_ock strokes
Path to Sele_ction
Path to selection
Fr_om Path
Replace selection with path
Add path to selection
Subtract path from selection
Intersect path with selection
Selecti_on to Path
Selection to path
To _Path
Selection to Path (_Advanced)
Path
Stroke Path
_View
_Padding Color
Move to Screen
Create another view on this image
_Close View
Close the active image view
_Fit Image in Window
Adjust the zoom ratio so that the image becomes fully visible
Fi_ll Window
Adjust the zoom ratio so that the entire window is used
Restore the previous zoom level
Na_vigation Window
Show an overview window for this image
Display _Filters...
Configure filters applied to this view
Shrink _Wrap
Reduce the image window to the size of the image display
_Dot for Dot
A pixel on the screen represents an image pixel
Show _Selection
Display the selection outline
Show _Layer Boundary
Draw a border around the active layer
Show _Guides
Display the image's guides
S_how Grid
Display the image's grid
Show Sample Points
Display the image's color sample points
Sn_ap to Guides
Tool operations snap to guides
Sna_p to Grid
Tool operations snap to the grid
Snap to _Canvas Edges
Tool operations snap to the canvas edges
Snap t_o Active Path
Tool operations snap to the active path
Show _Menubar
Show this window's menubar
Show R_ulers
Show this window's rulers
Show Scroll_bars
Show this window's scrollbars
Show S_tatusbar
Show this window's statusbar
Fullscr_een
Toggle fullscreen view
Use GEGL
Use GEGL to create this window's projection
1_6:1 (1600%)
Zoom 16:1
_8:1 (800%)
Zoom 8:1
_4:1 (400%)
Zoom 4:1
_2:1 (200%)
Zoom 2:1
_1:1 (100%)
Zoom 1:1
1:_2 (50%)
Zoom 1:2
1:_4 (25%)
Zoom 1:4
1:_8 (12.5%)
Zoom 1:8
1:1_6 (6.25%)
Zoom 1:16
Othe_r...
Set a custom zoom factor
From _Theme
Use the current theme's background color
_Light Check Color
Use the light check color
_Dark Check Color
Use the dark check color
Select _Custom Color...
Use an arbitrary color
As in _Preferences
Move this window to screen %s
_Windows
_Recently Closed Docks
_Dockable Dialogs
Next Image
Switch to the next image
Previous Image
Switch to the previous image
Hide Docks
When enabled docks and other dialogs are hidden, leaving only image windows.
Single-Window Mode
When enabled GIMP is in a single-window mode.
Smooth
Freehand
Value
Alpha
RGB
Normal
Dissolve
Behind
Multiply
Screen
Overlay
Difference
Addition
Subtract
Darken only
Lighten only
Hue
Saturation
Color
Divide
Dodge
Burn
Hard light
Soft light
Grain extract
Grain merge
Color erase
Erase
Replace
Failed to resize swap file: %s
Tool icon
Tool icon with crosshair
Crosshair only
From theme
Light check color
Dark check color
Custom color
No action
Pan view
Switch to Move tool
Low
High
GIMP help browser
Web browser
Normal window
Utility window
Keep above
Black & white
Fancy
Left-handed
value for token %s is not a valid UTF-8 string
Floyd-Steinberg (normal)
Floyd-Steinberg (reduced color bleeding)
Positioned
Generate optimum palette
Use web-optimized palette
Use black and white (1-bit) palette
Use custom palette
First item
Selection
Active layer
Active channel
Active path
Foreground color
Background color
White
Pattern
Solid color
Stroke line
Stroke with a paint tool
Miter
Round
Bevel
Butt
Square
Custom
Line
Long dashes
Medium dashes
Short dashes
Sparse dots
Normal dots
Dense dots
Stipples
Dash, dot
Dash, dot, dot
Circle
Unknown
All layers
Image-sized layers
All visible layers
All linked layers
Tiny
Very small
Small
Medium
Large
Very large
Huge
Enormous
Gigantic
View as list
View as grid
No thumbnails
Normal (128x128)
Large (256x256)
<<invalid>>
Scale image
Resize image
Flip image
Rotate image
Crop image
Convert image
Remove item
Merge layers
Merge paths
Guide
Sample Point
Layer/Channel
Layer/Channel modification
Selection mask
Item visibility
Link/Unlink item
Item properties
Move item
Scale item
Resize item
Add layer
Add layer mask
Apply layer mask
Floating selection to layer
Float selection
Anchor floating selection
Paste
Cut
Text
Transform
Attach parasite
Remove parasite
Import paths
Image type
Image size
Image resolution change
Change indexed palette
Reorder item
Rename item
New layer
Delete layer
Set layer mode
Set layer opacity
Lock/Unlock alpha channel
Suspend group layer resize
Resume group layer resize
Convert group layer
Text layer
Text layer modification
Delete layer mask
Show layer mask
New channel
Delete channel
Channel color
New path
Delete path
Path modification
Select foreground
Not undoable
Composite
Message
Warning
Error
Ask what to do
Keep embedded profile
Convert to RGB workspace
Size
Force
Pasted Layer
Fill with Foreground Color
Fill with Background Color
Fill with White
Fill with Transparency
FG to Transparent
Fatal parse error in brush file '%s': File is corrupt.
Rounded Rectangle Select
Alpha to Selection
%s Channel to Selection
Rename Channel
Move Channel
Scale Channel
Resize Channel
Flip Channel
Rotate Channel
Transform Channel
Stroke Channel
Channel to Selection
Reorder Channel
Raise Channel
Raise Channel to Top
Lower Channel
Channel cannot be lowered more.
Feather Channel
Sharpen Channel
Clear Channel
Fill Channel
Invert Channel
Border Channel
Grow Channel
Cannot stroke empty channel.
Set Channel Color
Failed to load data: %s
No patterns available for this operation.
Desaturate
Levels
Not enough points to fill
Threshold
Transformation
Layer Group
Rename Layer Group
Move Layer Group
Scale Layer Group
Resize Layer Group
Flip Layer Group
Rotate Layer Group
Transform Layer Group
Colormap of Image #%d (%s)
Set Colormap
Unset Colormap
Change Colormap entry
Cannot convert image: palette is empty.
Convert Image to RGB
Convert Image to Grayscale
Converting to indexed colors (stage 3)
Crop Image
Resize Image
Add Horizontal Guide
Add Vertical Guide
Move Guide
Translate Items
Flip Items
Rotate Items
Transform Items
Merge Visible Layers
There is no visible layer to merge down to.
Merge Down
Background
Enable Quick Mask
Disable Quick Mask
Add Sample Point
Move Sample Point
(imported)
Change Image Resolution
Change Image Unit
Attach Parasite to Image
Remove Parasite from Image
Add Layer
Remove Layer
Remove Floating Selection
Add Channel
Remove Channel
Add Path
Could not open thumbnail '%s': %s
Attach Parasite
Attach Parasite to Item
Set Item Exclusive Linked
Cannot create a new layer from the floating selection because it belongs to a layer mask or channel.
Floating Selection to Layer
Rename Layer
Resize Layer
Flip Layer
Rotate Layer
Reorder Layer
Raise Layer
Raise Layer to Top
Lower Layer
Cannot add layer mask of different dimensions than specified layer.
Transfer Alpha to Mask
Apply Layer Mask
Delete Layer Mask
Add Alpha Channel
Remove Alpha Channel
Layer to Image Size
Move Layer Mask
Cannot rename layer masks.
Enable Layer Mask
Disable Layer Mask
Please wait
Sharpen Selection
Select None
Select All
Invert Selection
Cannot float selection because the selected region is empty.
The vertical image resolution.
pixel
inch
inches
millimeter
millimeters
point
points
pica
picas
translator-credits
Comment
_Import
Select Palette File
I_nterval:
Learn more
Path name:
No guides
Center lines
Rule of thirds
Rule of fifths
Golden sections
Diagonal lines
Number of lines
Invalid character sequence in URI
Create or adjust the cage
Perspective Clone
Set a source image first.
Modify Perspective
Aligned
Registered
Blur
Sharpen
The new text layout cannot be generated. Most likely the font size is too big.
Dynamic
_By Color Select
%s to set a new clone source
_Flip
Roughly outline the object to extract
Click-Drag adds a free segment, Click adds a polygonal segment
Fu_zzy Select
%s to set a new heal source
Tool Toggle (%s)
Move
Transformation Matrix
Center _Y:
_Scale
Shear magnitude _Y:
Shear horizontally by %-3.3g
Shear vertically by %-3.3g
There is no active layer or channel to stroke to
Free select
Fixed size
Fixed aspect ratio
Design
Rename Path
Scale Path
Resize Path
Path to Selection
Reorder Path
Raise Path
Raise Path to Top
Lower Path
none
Do you want to replace it with the image you are saving?
,
-
Messages are redirected to stderr.
%s (try %s, %s, %s)
Foreground
Pixel
HSV
CMYK
Pick only
Set foreground color
Set background color
Add to palette
Linear histogram
Logarithmic histogram
Icon
Current status
Description
Icon & text
Icon & desc
Status & text
Status & desc
GKsu version %s
--debug, -d Print information on the screen that might be useful for diagnosing and/or solving problems.
Run program
Run:
As user:
Root Terminal
Opens a terminal as the root user, using gksu to ask for the password
Invalid byte sequence in conversion input
Error during conversion: %s
Conversion from character set '%s' to '%s' is not supported
Could not open converter from '%s' to '%s'
Error: %s is not a valid unique bus name.
Element not allowed at the top level
Partial character sequence at end of input
Cannot convert fallback '%s' to codeset '%s'
The URI '%s' is not an absolute URI using the "file" scheme
The local file URI '%s' may not include a '#'
The URI '%s' is invalid
The hostname of the URI '%s' is invalid
The URI '%s' contains invalidly escaped characters
The pathname '%s' is not an absolute path
Invalid hostname
AM
PM
%a %b %e %H:%M:%S %Y
%m/%d/%y
%H:%M:%S
%I:%M:%S %p
January
February
March
April
May
June
July
August
September
October
November
December
Jan
Feb
Mar
Apr
Jun
Jul
Aug
Sep
Oct
Nov
Dec
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Sunday
Mon
Tue
Wed
Thu
Fri
Sat
Sun
Error opening directory '%s': %s
Error reading file '%s': %s
Failed to read from file '%s': %s
Failed to open file '%s': %s
Failed to get attributes of file '%s': fstat() failed: %s
Failed to open file '%s': fdopen() failed: %s
Failed to rename file '%s' to '%s': g_rename() failed: %s
Failed to create file '%s': %s
Existing file '%s' could not be removed: g_unlink() failed: %s
Template '%s' invalid, should not contain a '%s'
Failed to read the symbolic link '%s': %s
Symbolic links not supported
Could not open converter from '%s' to '%s': %s
Can't do a raw read in g_io_channel_read_line_string
Leftover unconverted data in read buffer
Channel terminates in a partial character
Can't do a raw read in g_io_channel_read_to_end
Not a regular file
Key file contains line '%s' which is not a key-value pair, group, or comment
Key file does not start with a group
Key file contains unsupported encoding '%s'
Key file does not have group '%s'
Key file does not have key '%s'
Key file contains key '%s' with value '%s' which is not UTF-8
Key file does not have key '%s' in group '%s'
Key file contains escape character at end of line
Key file contains invalid escape sequence '%s'
Value '%s' cannot be interpreted as a number.
Integer value '%s' out of range
Value '%s' cannot be interpreted as a boolean.
Failed to open file '%s': open() failed: %s
Error on line %d: %s
Failed to parse '%-.*s', which should have been a digit inside a character reference (#234; for example) - perhaps the digit is too large
Character reference did not end with a semicolon; most likely you used an ampersand character without intending to start an entity - escape ampersand as &
Character reference '%-.*s' does not encode a permitted character
Empty entity ';' seen; valid entities are: & " < > '
Entity did not end with a semicolon; most likely you used an ampersand character without intending to start an entity - escape ampersand as &
Document must begin with an element (e.g. <book>)
'%s' is not a valid character following a '<' character; it may not begin an element name
Odd character '%s', expected a '=' after attribute name '%s' of element '%s'
Odd character '%s', expected a '>' or '/' character to end the start tag of element '%s', or optionally an attribute; perhaps you used an invalid character in an attribute name
Odd character '%s', expected an open quote mark after the equals sign when giving value for attribute '%s' of element '%s'
'%s' is not a valid character following the characters '</'; '%s' may not begin an element name
'%s' is not a valid character following the close element name '%s'; the allowed character is '>'
Element '%s' was closed, no element is currently open
Element '%s' was closed, but the currently open element is '%s'
Document was empty or contained only whitespace
Document ended unexpectedly just after an open angle bracket '<'
Document ended unexpectedly with elements still open - '%s' was the last element opened
Document ended unexpectedly, expected to see a close angle bracket ending the tag
Document ended unexpectedly inside an element name
Document ended unexpectedly inside an attribute name
Document ended unexpectedly inside an element-opening tag.
Document ended unexpectedly after the equals sign following an attribute name; no attribute value
Document ended unexpectedly while inside an attribute value
Document ended unexpectedly inside the close tag for element '%s'
Document ended unexpectedly inside a comment or processing instruction
Usage:
[OPTION...]
Help Options:
Show help options
Show all help options
Application Options:
Cannot parse integer value '%s' for %s
Integer value '%s' for %s out of range
Missing argument for %s
Unknown option %s
Quoted text doesn't begin with a quotation mark
Unmatched quotation mark in command line or other shell-quoted text
Text ended just after a '\\' character. (The text was '%s')
Text ended before matching quote was found for %c. (The text was '%s')
Text was empty (or contained only whitespace)
Failed to read data from child process (%s)
Unexpected error in select() reading data from a child process (%s)
Unexpected error in waitpid() (%s)
Failed to read from child pipe (%s)
Failed to fork (%s)
Failed to change to directory '%s' (%s)
Failed to execute child process "%s" (%s)
Failed to redirect output or input of child process (%s)
Failed to fork child process (%s)
Unknown error executing child process "%s"
Failed to read enough data from child pid pipe (%s)
Failed to read data from child process
Failed to create pipe for communicating with child process (%s)
Failed to execute child process (%s)
Invalid program name: %s
Invalid string in argument vector at %d: %s
Invalid string in environment: %s
Invalid working directory: %s
Failed to execute helper program (%s)
Unexpected error in g_io_channel_win32_poll() reading data from a child process
Character out of range for UTF-8
Invalid sequence in conversion input
Character out of range for UTF-16
%.1f EB
About GNOME
Learn more about GNOME
News
GNOME Library
Friends of GNOME
Contact
The Mysterious GEGL
The Squeaky Rubber GNOME
Wanda The GNOME Fish
_Open URL
_Copy URL
About the GNOME Desktop
%(name)s: %(value)s
Welcome to the GNOME Desktop
Brought to you by:
%(name)s: %(value)s
Version
Distributor
Build Date
Display information on this GNOME version
GNOME is a Free, usable, stable, accessible desktop environment for the Unix-like family of operating systems.
GNOME includes most of what you see on your computer, including the file manager, web browser, menus, and many applications.
GNOME also includes a complete development platform for applications programmers, allowing the creation of powerful and complex applications.
GNOME's focus on usability and accessibility, regular release cycle, and strong corporate backing make it unique among Free Software desktops.
GNOME's greatest strength is our strong community. Virtually anyone, with or without coding skills, can contribute to making GNOME better.
Hundreds of people have contributed code to GNOME since it was started in 1997; many more have contributed in other important ways, including translations, documentation, and quality assurance.
Error reading file '%s': %s
Error rewinding file '%s': %s
No name
File '%s' is not a regular file or directory.
No filename to save to
Starting %s
No URL to launch
Not a launchable item
No command (Exec) to launch
Bad command (Exec) to launch
Unknown encoding of: %s
could not get information about output %d
none of the selected modes were compatible with the possible modes: %s
required virtual size does not fit available size: requested=(%d, %d), minimum=(%d, %d), maximum=(%d, %d)
Sound & Video
Multimedia menu
Programming
Tools for software development
Education
Games
Games and amusements
Graphics
Graphics applications
Internet
Programs for Internet access such as web and email
Office
Office Applications
System Tools
System configuration and monitoring
Accessories
Desktop accessories
Applications
Other
Applications that did not fit in other categories
Kids
Games for kids
Administration
Preferences
Personal preferences
Sports
Sports games
Settings for several hardware devices
Personal
Personal settings
System
Causes the screensaver to exit gracefully
Query the state of the screensaver
Query the length of time the screensaver has been active
Tells the running screensaver process to lock the screen immediately
Turn the screensaver on (blank the screen)
If the screensaver is active then deactivate it (un-blank the screen)
Version of this application
The screensaver is not currently active.
Show debugging output
Show the logout button
Command to invoke from the logout button
Show the switch user button
Message to show in the dialog
MESSAGE
Not used
Username:
Password:
You are required to change your password immediately (password aged)
You are required to change your password immediately (root enforced)
Your account has expired; please contact your system administrator
No password supplied
Password unchanged
Error while changing NIS password.
You must choose a longer password
Password has been already used. Choose another.
You must wait longer to change your password
Sorry, passwords do not match
Authentication failed.
Don't become a daemon
Enable debugging code
Screensaver
Unable to establish service %s: %s
Can't set PAM_TTY=%s
Incorrect password.
Not permitted to gain access at this time.
No longer permitted to access the system.
failed to register with the message bus
not connected to the message bus
screensaver already running in this session
Time has expired.
You have the Caps Lock key on.
Log _Out
_Unlock
_Password:
Program
Unknown
Terminal
Use the command line
Disable connection to session manager
FILE
ID
Show session management options
Add or Remove Terminal Encodings
A_vailable encodings:
C_reate
Title
Command
Palette
Note: Terminal applications have these colors available to them.
Colors
None
Maximum
Note: These options may cause some applications to behave incorrectly. They are only here to allow you to work around certain applications and operating systems that expect different terminal behavior.
User Defined
Western
Central European
South European
Baltic
Cyrillic
Arabic
Greek
Hebrew Visual
Hebrew
Turkish
Nordic
Celtic
Romanian
Unicode
Armenian
Chinese Traditional
Cyrillic/Russian
Japanese
Korean
Chinese Simplified
Georgian
Cyrillic/Ukrainian
Croatian
Hindi
Persian
Gujarati
Gurmukhi
Icelandic
Vietnamese
Thai
_Description
_Encoding
Current Locale
translator-credits
Disabled
Fast
Very Low
Low
Medium
High
Very High
GDK debugging flags to unset
BackSpace
Tab
Return
Pause
Scroll_Lock
Sys_Req
Escape
Multi_key
Home
Left
Up
Right
Down
Page_Up
Page_Down
End
Begin
Insert
Num_Lock
KP_Space
KP_Tab
KP_Enter
KP_Home
KP_Left
KP_Up
KP_Right
KP_Down
KP_Page_Up
KP_Prior
KP_Page_Down
KP_Next
KP_End
KP_Begin
KP_Insert
KP_Delete
Artwork by
Shift
Ctrl
Alt
Super
Hyper
Meta
Space
Unhandled tag: '%s'
calendar:week_start:0
2000
%Y
New accelerator...
%d %%
Color Selection
Completing...
Only local files may be selected
Couldn't convert filename
Simple
System
GTK+ debugging flags to unset
%s job #%d
Initial state
Preparing to print
Generating data
Sending data
Waiting
Blocking on issue
Printing
Finished
Portrait
Landscape
Reverse portrait
Reverse landscape
Color
Unknown item
_%d. %s
Unable to find an item with URI '%s'
Provides visual indication of progress
Information
Warning
Error
Question
_About
_Add
_Apply
_Bold
_Cancel
_CD-Rom
_Clear
_Close
C_onnect
_Convert
_Copy
Cu_t
_Delete
_Discard
_Disconnect
_Execute
_Edit
_Find
Find and _Replace
_Floppy
_Fullscreen
_Leave Fullscreen
_Bottom
_First
_Last
_Top
_Back
_Down
_Forward
_Up
_Harddisk
_Help
_Home
Increase Indent
Decrease Indent
_Index
_Information
_Italic
_Jump to
_Center
_Fill
_Left
_Right
_Next
P_ause
_Play
Pre_vious
_Record
R_ewind
_Stop
_Network
_New
_No
_OK
_Open
Page Set_up
_Paste
_Preferences
_Print
Print Pre_view
_Properties
_Quit
_Redo
_Refresh
_Remove
_Revert
_Save
Save _As
Select _All
_Color
_Font
_Ascending
_Descending
_Spell Check
_Strikethrough
_Undelete
_Underline
_Undo
_Yes
_Normal Size
Best _Fit
Zoom _In
Full Volume
asme_f
A0x2
A0
A0x3
A1
A10
A1x3
A1x4
A2
A2x3
A2x4
A2x5
A3
A3 Extra
A3x3
A3x4
A3x5
A3x6
A3x7
A4
A4 Extra
A4 Tab
A4x3
A4x4
A4x5
A4x6
A4x7
A4x8
A4x9
A5
A5 Extra
A6
A7
A8
A9
B0
B1
B10
B2
B3
B4
B5
B5 Extra
B6
B6/C4
B7
B8
B9
C0
C1
C10
C2
C3
C4
C5
C6
C6/C5
C7
C7/C6
C8
C9
DL Envelope
RA0
RA1
RA2
SRA0
SRA1
SRA2
JB0
JB1
JB10
JB2
JB3
JB4
JB5
JB6
JB7
JB8
JB9
jis exec
Choukei 2 Envelope
Choukei 3 Envelope
Choukei 4 Envelope
hagaki (postcard)
kahu Envelope
kaku2 Envelope
oufuku (reply postcard)
you4 Envelope
10x11
10x13
10x14
10x15
11x12
11x15
12x19
5x7
6x9 Envelope
7x9 Envelope
9x11 Envelope
a2 Envelope
Arch A
Arch B
Arch C
Arch D
Arch E
b-plus
c
c5 Envelope
d
e
edp
European edp
Executive
f
FanFold European
FanFold US
FanFold German Legal
Government Legal
Government Letter
Index 3x5
Index 4x6 (postcard)
Index 4x6 ext
Index 5x8
Invoice
Tabloid
US Legal
US Legal Extra
US Letter
US Letter Extra
US Letter Plus
Monarch Envelope
#10 Envelope
#11 Envelope
#12 Envelope
#14 Envelope
#9 Envelope
Personal Envelope
Quarto
Super A
Super B
Wide Format
Dai-pa-kai
Folio
Folio sp
Invite Envelope
Italian Envelope
juuro-ku-kai
pa-kai
Postfix Envelope
Small Photo
prc1 Envelope
prc10 Envelope
prc 16k
prc2 Envelope
prc3 Envelope
prc 32k
prc4 Envelope
prc5 Envelope
prc6 Envelope
prc7 Envelope
prc8 Envelope
prc9 Envelope
ROC 16k
Printer '%s' has no toner left.
Printer '%s' is low on developer.
Printer '%s' is out of developer.
Printer '%s' is low on at least one marker supply.
One Sided
Long Edge (Standard)
Short Edge (Flip)
Auto Select
Printer Default
Embed GhostScript fonts only
Convert to PS level 1
Convert to PS level 2
No pre-filtering
Print at time
Failed to open file '%s': %s
Failed to load image '%s': reason not known, probably a corrupt image file
(no suggestions)
More...
Add "%s" to Dictionary
Ignore All
Try `%s --help' for more information.
write error
Try `%s --help' for more information.
write error
Ubuntu default theme
Select one of the 17 symmetry groups for the tiling
PM: reflection
S_hift
Randomize the horizontal shift by this percentage
Whether columns are spaced evenly (1), converge (1)
Alternate the sign of shifts for each column
Cumulate the shifts for each column
Pick the Blue component of the color
Pick the hue of the color
Pick the saturation of the color
Create and tile the clones of the selection
R_eset
Select a filename for exporting
Search clones
Include locked objects in search
Check to make the object invisible
Target:
Line spacing:
Delete attribute
Attribute name
Set attribute
Set
'%s' working, please wait...
no implementation was defined for the extension.
Channel
PDF Import Settings
Is the effect previewed live on canvas?
Stroke Paint
Automatic backup of the following documents failed:
Open _Recent
direction of thickest strokes (opposite = thinest)
Defines hatches frequency and direction
Choose whether to draw marks at the beginning and end of the path
If unchecked, draw only the last generation
The reference segment. Defaults to the horizontal midline of the bbox.
ID
Render filtered objects without filters, instead of rasterizing (PS, EPS, PDF)
Query the X coordinate of the drawing or, if specified, of the object with --query-id
Query the Y coordinate of the drawing or, if specified, of the object with --query-id
Query the width of the drawing or, if specified, of the object with --query-id
Inkscape will run with default settings, and new settings will not be saved.
Cannot create profile directory %s.
%s is not a valid directory.
The topic of this document as comma-separated key words, phrases, or classifications.
You cannot raise/lower objects from different groups or layers.
Fit Page to Selection or Drawing
3D Box
Scale: %0.2f%% x %0.2f%%; with Ctrl to lock ratio
Skew: %0.2f#176;; with Ctrl to snap angle
Arc
Flow region
Convert stroke to path
An exception occurred during execution of the Path Effect.
inset
Text span
Create link
_License
translator-credits
Minimum horizontal gap (in px units) between bounding boxes
Color of a guideline when it is under mouse
Exponent value controlling the focus for the light source
Y coordinate of the target point in the convolve matrix. The convolution is applied to pixels around this point.
When duplicating a selection containing both a clone and its original (possibly in groups), relink the duplicated clone to the duplicated original instead of the old original
Interval (in minutes) at which document will be autosaved
Rename layer
New
In Use
Single scan: creates a path
Same as Colors, but the result is converted to grayscale
Apply Gaussian blur to the bitmap before tracing
Add node
Shift: click to toggle segment selection
Ctrl+Alt: click to insert a node
Linear segment: drag to convert to a Bezier segment, doubleclick to insert node, click to select (more: Shift, Ctrl+Alt)
Auto-smooth node handle
more: Shift, Ctrl, Alt
more: Ctrl, Alt
Shift+Ctrl+Alt: preserve length and snap rotation angle to %g° increments while rotating both handles
Ctrl+Alt: preserve length and snap rotation angle to %g° increments
Shift+Alt: preserve handle length and rotate both handles
Alt: preserve handle length while dragging
Shift+Ctrl: snap rotation angle to %g° increments and rotate both handles
Ctrl: snap rotation angle to %g° increments, click to retract
Shift: rotate both handles by the same angle
Auto node handle: drag to convert to smooth node (%s)
%s: drag to shape the segment (%s)
Move handle by %s, %s; angle %.2f°, length %s
Shift: drag out a handle, click to toggle selection
Shift: click to toggle selection
Ctrl+Alt: move along handle lines, click to delete node
Ctrl: move along axes, click to change node type
Alt: sculpt nodes
%s: drag to shape the path (more: Shift, Ctrl, Alt)
%s: drag to shape the path, click to toggle scale/rotation handles (more: Shift, Ctrl, Alt)
%s: drag to shape the path, click to select only this node (more: Shift, Ctrl, Alt)
Auto-smooth node
Shift: drag to add nodes to the selection, click to toggle object selection
%s Drag to select nodes, click to edit only this object (more: Shift)
%s Drag to select nodes, click clear the selection
Drag to select nodes, click to edit only this object
Drag to select nodes, click to clear the selection
Drag to select objects to edit, click to edit this object (more: Shift)
Retract handle
Shift+Ctrl: scale uniformly about the rotation center
Ctrl: scale uniformly
Shift+Alt: scale using an integer ratio about the rotation center
Shift: scale from the rotation center
Alt: scale using an integer ratio
Scale handle: drag to scale the selection
Scale by %.2f%% x %.2f%%
Shift+Ctrl: rotate around the opposite corner and snap angle to %f° increments
Shift: rotate around the opposite corner
Ctrl: snap angle to %f° increments
Rotation handle: drag to rotate the selection around the rotation center
Rotate by %.2f°
Shift+Ctrl: skew about the rotation center with snapping to %f° increments
Shift: skew about the rotation center
Ctrl: snap skew angle to %f° increments
Skew handle: drag to skew (shear) selection about the opposite handle
Skew horizontally by %.2f°
Skew vertically by %.2f°
List
small
huge
narrow
wider
Flat color stroke
Stroke is averaged over selected objects
Adjusting stroke width: was %.3g, now %.3g (diff %.3g)
Duplicate layer
Delete layer
Flip vertically
tutorial-basic.svg
tutorial-shapes.svg
tutorial-advanced.svg
tutorial-tracing.svg
tutorial-calligraphy.svg
tutorial-interpolate.svg
tutorial-elements.svg
Print document
Import a document from Open Clip Art Library
Remove Manual _Kerns
Cut the bottom path into pieces
Cut the bottom path's stroke into pieces, removing fill
Outset selected paths by 10 px
Reverse the direction of selected paths (useful for flipping markers)
Combine several paths into one
New View Preview
Switch to outline (wireframe) display mode
Select characters from a glyphs palette
Edit the ID, locked and visible status, and other object properties
Inkscape version, authors, license
Getting started with Inkscape
Advanced Inkscape topics
Using bitmap tracing
Using the interpolate extension
Principles of design in the tutorial form
Miscellaneous tips and tricks
Font family
Create gradient in the stroke
Change gradient stop offset
Offset:
Now patterns remain fixed when objects are transformed (moved, scaled, rotated, or skewed).
Horizontal coordinate of selection
Vertical coordinate of selection
When locked, change both width and height by the same proportion
Set markers
StrokeWidth_BAR_Width:
Join:
Miter join
Round join
Bevel join
In color mode, act on objects' hue
In color mode, act on objects' saturation
In color mode, act on objects' lightness
In color mode, act on objects' opacity
Scale Factor (Drawing:Real Length) = 1:
Manual override for automatic desktop file detection
Your names
Your emails
Installed
Failed to create pipes
Failed to exec gzip
Corrupted archive
Tar checksum failed, archive corrupted
Unknown TAR header type %u, member %s
Invalid archive signature
Error reading archive member header
Invalid archive member header
Archive is too short
Failed to read the archive headers
DropNode called on still linked node
Failed to locate the hash element!
Failed to allocate diversion
Internal error in AddDiversion
Trying to overwrite a diversion, %s -> %s and %s/%s
Double add of diversion %s -> %s
Duplicate conf file %s/%s
Failed to write file %s
Failed to close file %s
The path %s is too long
Unpacking %s more than once
The directory %s is diverted
The package is trying to write to the diversion target %s/%s
The diversion path is too long
Failed to stat %s
Failed to rename %s to %s
The directory %s is being replaced by a non-directory
Failed to locate node in its hash bucket
The path is too long
Overwrite package match with no version for %s
File %s/%s overwrites the one in the package %s
Unable to read %s
Unable to stat %s
Failed to remove %s
Unable to create %s
Failed to stat %sinfo
The info and temp directories need to be on the same filesystem
Reading package lists
Failed to change to the admin dir %sinfo
Internal error getting a package name
Reading file listing
Failed to open the list file '%sinfo/%s'. If you cannot restore this file then make it empty and immediately re-install the same version of the package!
Failed reading the list file %sinfo/%s
Internal error getting a node
Failed to open the diversions file %sdiversions
The diversion file is corrupted
Invalid line in the diversion file: %s
Internal error adding a diversion
The pkg cache must be initialized first
Failed to find a Package: header, offset %lu
Bad ConfFile section in the status file. Offset %lu
Error parsing MD5. Offset %lu
This is not a valid DEB archive, missing '%s' member
Couldn't change to %s
Internal error, could not locate member %s
Failed to locate a valid control file
Unparsable control file
Couldn't open pipe for %s
Read error from %s process
Failed to stat
Failed to set modification time
Unable to read the cdrom database %s
Please use apt-cdrom to make this CD-ROM recognized by APT. apt-get update cannot be used to add new CD-ROMs
Wrong CD-ROM
Unable to unmount the CD-ROM in %s, it may still be in use.
Disk not found.
File not found
Invalid URI, local URIS must not start with //
Logging in
Unable to determine the peer name
Unable to determine the local name
The server refused the connection and said: %s
USER failed, server said: %s
PASS failed, server said: %s
A proxy server was specified but no login script, Acquire::ftp::ProxyLogin is empty.
Login script command '%s' failed, server said: %s
TYPE failed, server said: %s
Connection timeout
Server closed the connection
Read error
A response overflowed the buffer.
Protocol corruption
Write error
Could not create a socket
Could not connect data socket, connection timed out
Failed
Could not connect passive socket.
getaddrinfo was unable to get a listening socket
Could not bind a socket
Could not listen on the socket
Could not determine the socket's name
Unable to send PORT command
Unknown address family %u (AF_*)
EPRT failed, server said: %s
Data socket connect timed out
Unable to accept connection
Problem hashing file
Unable to fetch file, server said '%s'
Data socket timed out
Data transfer failed, server said '%s'
Query
Unable to invoke
Connecting to %s (%s)
[IP: %s %s]
Could not create a socket for %s (f=%u t=%u p=%u)
Cannot initiate the connection to %s:%s (%s).
Could not connect to %s:%s (%s), connection timed out
Could not connect to %s:%s (%s).
Connecting to %s
Could not resolve '%s'
Temporary failure resolving '%s'
Internal error: Good signature, but could not determine key fingerprint?!
At least one invalid signature was encountered.
Unknown error executing gpgv
The following signatures were invalid:
The following signatures couldn't be verified because the public key is not available:
Waiting for headers
Got a single header line over %u chars
Bad header line
The HTTP server sent an invalid reply header
The HTTP server sent an invalid Content-Length header
The HTTP server sent an invalid Content-Range header
This HTTP server has broken range support
Unknown date format
Select failed
Connection timed out
Error writing to output file
Error writing to file
Error writing to the file
Error reading from server. Remote end closed connection
Error reading from server
Bad header data
Connection failed
Internal error
Can't mmap an empty file
Couldn't make mmap of %lu bytes
Selection %s not found
Unrecognized type abbreviation: '%c'
Opening configuration file %s
Syntax error %s:%u: Block starts with no name.
Syntax error %s:%u: Malformed tag
Syntax error %s:%u: Extra junk after value
Syntax error %s:%u: Directives can only be done at the top level
Syntax error %s:%u: Too many nested includes
Syntax error %s:%u: Included from here
Syntax error %s:%u: Unsupported directive '%s'
Syntax error %s:%u: Extra junk at end of file
%c%s... Error!
%c%s... Done
Command line option '%c' [from %s] is not known.
Command line option %s is not understood
Command line option %s is not boolean
Option %s requires an argument.
Option %s: Configuration item specification must have an =<val>.
Option %s requires an integer argument, not '%s'
Option '%s' is too long
Sense %s is not understood, try true or false.
Invalid operation %s
Unable to stat the mount point %s
Unable to change to %s
Unable to read %s
Failed to stat the cdrom
Not using locking for read only lock file %s
Could not open lock file %s
Not using locking for nfs mounted lock file %s
Could not get lock %s
Waited for %s but it wasn't there
Sub-process %s received a segmentation fault.
Sub-process %s returned an error code (%u)
Sub-process %s exited unexpectedly
Could not open file %s
Failed to create subprocess IPC
Failed to exec compressor
Problem syncing the file
Empty package cache
The package cache file is corrupted
The package cache file is an incompatible version
This APT does not support the versioning system '%s'
The package cache was built for a different architecture
Depends
PreDepends
Suggests
Recommends
Conflicts
Replaces
Obsoletes
important
required
standard
optional
extra
Building dependency tree
Candidate versions
Dependency generation
Unable to parse package file %s (1)
Unable to parse package file %s (2)
Malformed line %lu in source list %s (URI)
Malformed line %lu in source list %s (dist)
Malformed line %lu in source list %s (URI parse)
Malformed line %lu in source list %s (absolute dist)
Malformed line %lu in source list %s (dist parse)
Opening %s
Line %u too long in source list %s.
Malformed line %u in source list %s (type)
Type '%s' is not known on line %u in source list %s
This installation run will require temporarily removing the essential package %s due to a Conflicts/Pre-Depends loop. This is often bad, but if you really want to do it, activate the APT::Force-LoopBreak option.
Index file type '%s' is not supported
The package %s needs to be reinstalled, but I can't find an archive for it.
Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
Unable to correct problems, you have held broken packages.
Failed to fetch %s %s
Retrieving file %li of %li (%s remaining)
Retrieving file %li of %li
The method driver %s could not be found.
Method %s did not start correctly
Please insert the disc labeled: '%s' in the drive '%s' and press enter.
Packaging system '%s' is not supported
Unable to determine a suitable packaging system type
Unable to stat %s.
You must put some 'source' URIs in your sources.list
The package lists or status file could not be parsed or opened.
You may want to run apt-get update to correct these problems
The list of sources could not be read.
Did not understand pin type %s
No priority (or zero) specified for pin
Cache has an incompatible versioning system
Wow, you exceeded the number of package names this APT is capable of.
Wow, you exceeded the number of versions this APT is capable of.
Wow, you exceeded the number of dependencies this APT is capable of.
Package %s %s was not found while processing file dependencies
Couldn't stat source package list %s
Reading package lists
Collecting File Provides
Unable to write to %s
IO Error saving source cache
rename failed, %s (%s -> %s).
MD5Sum mismatch
There is no public key available for the following key IDs:
I wasn't able to locate a file for the %s package. This might mean you need to manually fix this package. (due to missing arch)
I wasn't able to locate a file for the %s package. This might mean you need to manually fix this package.
The package index files are corrupted. No Filename: field for package %s.
Size mismatch
Vendor block %s contains no fingerprint
Using CD-ROM mount point %s Mounting CD-ROM
Identifying..
Stored label: %s
Unmounting CD-ROM...
Using CD-ROM mount point %s
Unmounting CD-ROM
Waiting for disc...
Mounting CD-ROM...
Scanning disc for index files..
That is not a valid name, try again.
This disc is called: '%s'
Copying package lists...
Writing new source list
Source list entries for this disc are:
Wrote %i records.
Wrote %i records with %i missing files.
Wrote %i records with %i mismatched files
Wrote %i records with %i missing files and %i mismatched files
Regex compilation error - %s
Release '%s' for '%s' was not found
Version '%s' for '%s' was not found
Unable to locate package %s
Configuring %s
Removing %s
Preparing %s
Unpacking %s
Preparing to configure %s
Installed %s
Preparing for removal of %s
Removed %s
Preparing to completely remove %s
Completely removed %s
Failed to create IPC pipe to subprocess
Connection closed prematurely
Credits
Written by
Translated by
Program name
Program version
Authors
List of authors of the programs
Logo
_File
_Edit
_New
Quit the application
Configure the application
Close the current window
Authentication Required
Move window to workspace 1
Move window to workspace 2
Move window to workspace 3
Move window to workspace 4
Move window one workspace to the left
Move window one workspace to the right
Move window one workspace up
Move window one workspace down
Switch to workspace 1
Switch to workspace 2
Switch to workspace 3
Switch to workspace 4
Close window
Failed to get hostname: %s
Failed to open X Window System display '%s'
Replace the running window manager with Metacity
Screen %d on display '%s' is invalid
Screen %d on display "%s" already has a window manager; try using the --replace option to replace the current window manager.
Screen %d on display "%s" already has a window manager
Could not release screen %d on display "%s"
Usage: %s
Window Menu
Minimize Window
Maximize Window
Keep Window On Top
Remove Window From Top
Put Window On Only One Workspace
Shift
Ctrl
Alt
Meta
Super
Hyper
Mod2
Mod3
Mod4
Mod5
%d x %d
Ok
Cancel
Yes
No
_Settings
Snippet {}
Settings
Please enter the username or alias of the person whose log you would like to view.
Configure Plugin
Buddy name:
Sends a message
Lastlog
The certificate has expired and should not be considered valid. Check that your computer's date and time are accurate.
MOTD for %s
Real name
Server requires plaintext authentication over an unencrypted stream
Search for XMPP users
You can sign out from other locations here
Profile Update Error
Verify PIN
Re-Invite
Zapping %s...
Whacking %s...
Torching %s...
Hugging %s...
Slapping %s...
High-fiving %s...
User ID
Surfing
+++ %s became unidle
Edit User Mood
libfaim maintainer
C_lear finished transfers
Conversation with %s on %s
New Pounces
Modify Buddy Pounce
Epiphany
Chromium (chromium-browser)
You can insert this image into this message, or use it as the buddy icon for this user
Apply in IMs
Conversation Placement
Right mouse button
Group:
New Person
User _details
The Music Messaging Plugin allows a number of users to simultaneously work on a piece of music by editing a common score in real-time.
_Focused windows
_Present conversation window
An instance of Pidgin is currently running. Please exit Pidgin and try again.
Next >
"GNU/Linux PPP Configuration Utility"
No UI
You must be root to run this program.
%s does not exist.
Can't close WTR in parent:
Can't close RDR in parent:
cannot fork:
Can't close RDR in child:
Can't redirect stderr:
Exec failed:
Internal error:
Create a connection
Change the connection named %s
Create a connection named %s
This is the PPP configuration utility. It does not connect to your isp: just configures ppp so that you can do so with a utility such as pon. It will ask for the username, password, and phone number that your ISP gave you. If your ISP uses PAP or CHAP, that is all you need. If you must use a chat script, you will need to know how your ISP prompts for your username and password. If you do not know what your ISP uses, try PAP. Use the up and down arrow keys to move around the menus. Hit ENTER to select an item. Use the TAB key to move from the menu to to <CANCEL> and back. To move on to the next menu go to and hit ENTER. To go back to the previous menu go to <CANCEL> and hit enter.
Main Menu
Change a connection
Delete a connection
Finish and save files
Please select the authentication method for this connection. PAP is the method most often used in Windows 95, so if your ISP supports the NT or Win95 dial up client, try PAP. The method is now set to %s.
Authentication Method for %s
Peer Authentication Protocol
Use "chat" for login:/password: authentication
Crypto Handshake Auth Protocol
Please select the property you wish to modify, select "Cancel" to go back to start over, or select "Finished" to write out the changed files.
"Properties of %s"
%s Telephone number
%s Login prompt
%s ISP user name
%s Password prompt
%s ISP password
%s Port speed
%s Modem com port
%s Authentication method
Advanced Options
Write files and return to main menu.
This menu allows you to change some of the more obscure settings. Select the setting you wish to change, and select "Previous" when you are done. Use the arrow keys to scroll the list.
"Advanced Settings for %s"
%s Modem init string
%s Connect response
%s Pre-login chat
%s Default route state
%s Set ip addresses
%s Turn debugging on or off
%s Turn demand dialing on or off
%s Turn persist on or off
%s Change DNS
Add a ppp user
%s Post-login chat
%s Change remotename
%s Idle timeout
Return to previous menu
Exit this utility
Internal error: no such thing as %s,
Enter the text of connect acknowledgement, if any. This string will be sent when the CONNECT string is received from the modem. Unless you know for sure that your ISP requires such an acknowledgement you should leave this as a null string: that is, ''.
Ack String
Enter the text of the login prompt. Chat will send your username in response. The most common prompts are login: and username:. Sometimes the first letter is capitalized and so we leave it off and match the rest of the word. Sometimes the colon is omitted. If you aren't sure, try ogin:.
Login Prompt
Enter the text of the password prompt. Chat will send your password in response. The most common prompt is password:. Sometimes the first letter is capitalized and so we leave it off and match the last part of the word.
Password Prompt
You probably do not need to put anything here. Enter any additional input your isp requires before you log in. If you need to make an entry, make the first entry the prompt you expect and the second the required response. Example: your isp sends 'Server:' and expect you to respond with 'trilobite'. You would put 'erver trilobite' (without the quotes) here. All entries must be separated by white space. You can have more than one expect-send pair.
Pre-Login
You probably do not need to change this. It is initially '' \\d\\c which tells chat to expect nothing, wait one second, and send nothing. This gives your isp time to get ppp started. If your isp requires any additional input after you have logged in you should put it here. This may be a program name like ppp as a response to a menu prompt. If you need to make an entry, make the first entry the prompt you expect and the second the required response. Example: your isp sends 'Protocol' and expect you to respond with 'ppp'. You would put 'otocol ppp' (without the quotes) here. Fields must be separated by white space. You can have more than one expect-send pair.
Post-Login
Enter the username given to you by your ISP.
User Name
Answer 'yes' to have the port your modem is on identified automatically. It will take several seconds to test each serial port. Answer 'no' if you would rather enter the serial port yourself
Choose Modem Config Method
Can't probe while pppd is running.
Probing %s
Below is a list of all the serial ports that appear to have hardware that can be used for ppp. One that seems to have a modem on it has been preselected. If no modem was found 'Manual' was preselected. To accept the preselection just hit TAB and then ENTER. Use the up and down arrow keys to move among the selections, and press the spacebar to select one. When you are finished, use TAB to select and ENTER to move on to the next item.
Select Modem Port
Enter the port by hand.
Enter the port your modem is on. /dev/ttyS0 is COM1 in DOS. /dev/ttyS1 is COM2 in DOS. /dev/ttyS2 is COM3 in DOS. /dev/ttyS3 is COM4 in DOS. /dev/ttyS1 is the most common. Note that this must be typed exactly as shown. Capitalization is important: ttyS1 is not the same as ttys1.
Manually Select Modem Port
Enabling default routing tells your system that the way to reach hosts to which it is not directly connected is via your ISP. This is almost certainly what you want. Use the up and down arrow keys to move among the selections, and press the spacebar to select one. When you are finished, use TAB to select and ENTER to move on to the next item.
Default Route
Enable default route
Disable default route
IP Numbers
Enter your modem port speed (e.g. 9600, 19200, 38400, 57600, 115200). I suggest that you leave it at 115200.
Speed
Enter modem initialization string. The default value is ATZ, which tells the modem to use it's default settings. As most modems are shipped from the factory with default settings that are appropriate for ppp, I suggest you not change this.
Modem Initialization
Select method of dialing. Since almost everyone has touch-tone, you should leave the dialing method set to tone unless you are sure you need pulse. Use the up and down arrow keys to move among the selections, and press the spacebar to select one. When you are finished, use TAB to select and ENTER to move on to the next item.
Pulse or Tone
Enter the number to dial. Don't include any dashes. See your modem manual if you need to do anything unusual like dialing through a PBX.
Phone Number
Enter the password your ISP gave you.
Password
Enter the name you wish to use to refer to this isp. You will probably want to give the default name of 'provider' to your primary isp. That way, you can dial it by just giving the command 'pon'. Give each additional isp a unique name. For example, you might call your employer 'theoffice' and your university 'theschool'. Then you can connect to your isp with 'pon', your office with 'pon theoffice', and your university with 'pon theschool'. Note: the name must contain no spaces.
Provider Name
This connection exists. Do you want to overwrite it?
Connection Exists
Finished configuring connection and writing changed files. The chat strings for connecting to the ISP are in /etc/chatscripts/%s, while the options for pppd are in /etc/ppp/peers/%s. You may edit these files by hand if you wish. You will now have an opportunity to exit the program, configure another connection, or revise this or another one.
Finished
Create Connection
No connections to change.
Select a Connection
Select connection to change.
No connections to delete.
Delete a Connection
Select connection to delete.
Return to Previous Menu
Do you wish to quit without saving your changes?
Quit
Debug Command
Demand Command
Selecting YES will enable persist mode. Selecting NO will disable it. This will cause pppd to keep trying until it connects and to try to reconnect if the connection goes down. Persist is incompatible with demand dialing: enabling demand will disable persist. Persist is presently %s.
Persist Command
Choose a method. 'Static' means that the same nameservers will be used every time this provider is used. You will be asked for the nameserver numbers in the next screen. 'Dynamic' means that pppd will automatically get the nameserver numbers each time you connect to this provider. 'None' means that DNS will be handled by other means, such as BIND (named) or manual editing of /etc/resolv.conf. Select 'None' if you do not want /etc/resolv.conf to be changed when you connect to this provider. Use the up and down arrow keys to move among the selections, and press the spacebar to select one. When you are finished, use TAB to select and ENTER to move on to the next item.
Configure Nameservers (DNS)
Use static DNS
Use dynamic DNS
DNS will be handled by other means
Enter the IP number for your primary nameserver.
IP number
Enter the IP number for your secondary nameserver (if any).
Enter the username of a user who you want to be able to start and stop ppp. She will be able to start any connection. To remove a user run the program vigr and remove the user from the dip group.
Add User
No such user as %s.
You probably don't want to change this. Pppd uses the remotename as well as the username to find the right password in the secrets file. The default remotename is the provider name. This allows you to use the same username with different providers. To disable the remotename option give a blank remotename. The remotename option will be omitted from the provider file and a line with a * instead of a remotename will be put in the secrets file.
Remotename
If you want this PPP link to shut down automatically when it has been idle for a certain number of seconds, put that number here. Leave this blank if you want no idle shutdown at all.
Idle Timeout
Couldn't open %s.
Can't open %s.
Can't lock %s.
Couldn't print to %s.
Couldn't rename %s.
http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog
Ubuntu 12.04 'Precise Pangolin'
Cdrom with Ubuntu 12.04 'Precise Pangolin'
Ubuntu 11.10 'Oneiric Ocelot'
Cdrom with Ubuntu 11.10 'Oneiric Ocelot'
Ubuntu 11.04 'Natty Narwhal'
Cdrom with Ubuntu 11.04 'Natty Narwhal'
Ubuntu 10.10 'Maverick Meerkat'
Cdrom with Ubuntu 10.10 'Maverick Meerkat'
Canonical Partners
Software packaged by Canonical for their partners
This software is not part of Ubuntu.
Independent
Provided by third-party software developers
Software offered by third party developers.
Ubuntu 10.04 'Lucid Lynx'
Cdrom with Ubuntu 10.04 'Lucid Lynx'
Ubuntu 9.10 'Karmic Koala'
Cdrom with Ubuntu 9.10 'Karmic Koala'
Ubuntu 9.04 'Jaunty Jackalope'
Cdrom with Ubuntu 9.04 'Jaunty Jackalope'
Ubuntu 8.10 'Intrepid Ibex'
Cdrom with Ubuntu 8.10 'Intrepid Ibex'
Ubuntu 8.04 'Hardy Heron'
Cdrom with Ubuntu 8.04 'Hardy Heron'
Ubuntu 7.10 'Gutsy Gibbon'
Cdrom with Ubuntu 7.10 'Gutsy Gibbon'
Ubuntu 7.04 'Feisty Fawn'
Cdrom with Ubuntu 7.04 'Feisty Fawn'
Ubuntu 6.10 'Edgy Eft'
Community-maintained
Restricted software
Cdrom with Ubuntu 6.10 'Edgy Eft'
Ubuntu 6.06 LTS 'Dapper Drake'
Canonical-supported free and open-source software
Community-maintained (universe)
Community-maintained free and open-source software
Non-free drivers
Proprietary drivers for devices
Restricted software (Multiverse)
Software restricted by copyright or legal issues
Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'
Important security updates
Recommended updates
Pre-released updates
Unsupported updates
Ubuntu 5.10 'Breezy Badger'
Cdrom with Ubuntu 5.10 'Breezy Badger'
Ubuntu 5.10 Security Updates
Ubuntu 5.10 Updates
Ubuntu 5.10 Backports
Ubuntu 5.04 'Hoary Hedgehog'
Cdrom with Ubuntu 5.04 'Hoary Hedgehog'
Officially supported
Ubuntu 5.04 Security Updates
Ubuntu 5.04 Updates
Ubuntu 5.04 Backports
Ubuntu 4.10 'Warty Warthog'
Community-maintained (Universe)
Non-free (Multiverse)
Cdrom with Ubuntu 4.10 'Warty Warthog'
No longer officially supported
Restricted copyright
Ubuntu 4.10 Security Updates
Ubuntu 4.10 Updates
Ubuntu 4.10 Backports
http://packages.debian.org/changelogs/pool/%s/%s/%s/%s_%s/changelog
Debian 7 'Wheezy'
Debian 6.0 'Squeeze'
Debian 5.0 'Lenny'
Debian 4.0 'Etch'
Debian 3.1 'Sarge'
Proposed updates
Security updates
Debian current stable release
Debian testing
Debian 'Sid' (unstable)
DFSG-compatible Software with Non-Free Dependencies
Non-DFSG-compatible Software
Server for %s
Main server
Custom servers
Downloading file %(current)li of %(total)li with %(speed)s/s
Downloading file %(current)li of %(total)li
Details
Starting...
Complete
Invalid unicode in description for '%s' (%s). Please report.
The list of changes is not available
The list of changes is not available yet. Please use http://launchpad.net/ubuntu/+source/%s/%s/+changelog until the changes become available or try again later.
Failed to download the list of changes. Please check your Internet connection.
List of files for '%s' could not be read
List of control files for '%s' could not be read
Dependency is not satisfiable: %s
Conflicts with the installed package '%s'
Breaks existing package '%(pkgname)s' dependency %(depname)s (%(deprelation)s %(depversion)s)
Breaks existing package '%(pkgname)s' conflict: %(targetpkg)s (%(comptype)s %(targetver)s)
Breaks existing package '%(pkgname)s' that conflict: '%(targetpkg)s'. But the '%(debfile)s' provides it via: '%(provides)s'
No Architecture field in the package
Wrong architecture '%s'
A later version is already installed
Failed to satisfy all dependencies (broken cache)
Cannot install '%s'
Automatically decompressed:
Automatically converted to printable ascii:
Install Build-Dependencies for source package '%s' that builds %s
An essential package would be removed
%c%s... Done
Hit
Ign
Err
Get:
[Working]
Media change: please insert the disc labeled '%s' in the drive '%s' and press enter
Fetched %sB in %s (%sB/s)
Please provide a name for this Disc, such as 'Debian 2.1r1 Disk 1'
Please insert a Disc in the drive and press enter
Building data structures
Recently Played
Rhythmbox Music Player
Minutes
Never
Today %I:%M %p
Yesterday %I:%M %p
%a %I:%M %p
%b %d %I:%M %p
%s plays
Recommendations for User:
%s's Library
%s's Neighbourhood
%s's Recommended Radio
%s's Mix Radio
Invalid station URL
Not enough content to play station
Error tuning station: invalid response
Genre
Searching for lyrics...
Title
Toggle play/pause mode
Print the current playback volume
%s, %s and %s
translator-credits
Album
Composer
Comment
Edit Automatic Playlist
Album Artist
Path
Disc Number
Bitrate
Time of Last Play
Time Added to Library
_In reverse alphabetical order
W_ith more highly rated tracks first
W_ith more often played songs first
W_ith newer tracks first
W_ith longer tracks first
_In decreasing order
W_ith more recently played tracks first
W_ith more recently added tracks first
before
Could not allocate space for config info.
configuration error - unknown item '%s' (notify administrator)
Password:
%s's Password:
%s: out of memory
Warning: unknown group %s
Warning: too many groups
Your password has expired.
Your password is inactive.
Your login has expired.
Contact the system administrator.
Choose a new password.
Your password will expire in %ld days.
Your password will expire tomorrow.
Your password will expire today.
Environment overflow
You may not change $%s
Too many logins.
You have new mail.
No mail.
You have mail.
no change
a palindrome
case changes only
too similar
too simple
rotated
too short
Bad password: %s.
passwd: pam_start() failed, error %d
passwd: %s
passwd: password updated successfully
Incorrect password for %s.
%s: failed to drop privileges (%s)
Unable to cd to '%s'
No directory, logging in with HOME=/
Cannot execute %s
Invalid root directory '%s'
Can't change root directory to '%s'
Unable to determine your tty name.
Enter the new value, or press ENTER for the default
Minimum Password Age
Maximum Password Age
Last Password Change (YYYY-MM-DD)
Password Expiration Warning
Password Inactive
Account Expiration Date (YYYY-MM-DD)
Last password change\t\t\t\t\t:
never
password must be changed
Password expires\t\t\t\t\t:
Password inactive\t\t\t\t\t:
Account expires\t\t\t\t\t\t:
Minimum number of days between password change\t\t: %ld
Maximum number of days between password change\t\t: %ld
Number of days of warning before password expires\t: %ld
%s: invalid date '%s'
%s: invalid numeric argument '%s'
%s: do not include "l" with other flags
%s: Permission denied.
%s: Cannot determine your user name.
%s: the shadow password file is not present
Changing the aging information for %s
%s: error changing fields
Full Name
Room Number
Work Phone
Home Phone
Other
Cannot change ID to root.
%s: invalid name: '%s'
%s: invalid room number: '%s'
%s: invalid work phone: '%s'
%s: invalid home phone: '%s'
%s: '%s' contains illegal characters
%s: cannot change user '%s' on NIS client.
%s: '%s' is the NIS master for this client.
Changing the user information for %s
%s: fields too long
%s: line %d: line too long
%s: line %d: missing new password
%s: error detected, changes ignored
Login Shell
Changing the login shell for %s
%s: Invalid entry: %s
Login Failures Maximum Latest On
[%lds lock]
%s: shadow group passwords required for -A
Changing the password for group %s
New Password:
Re-enter new password:
They don't match; try again
%s: Try again later
Adding user %s to group %s
Removing user %s from group %s
%s: Not a tty
%s: -K requires KEY=VALUE
%s: %s is the NIS master
%s: group %s is a NIS group
%s: unknown user %s
invalid group file entry
delete line '%s'?
duplicate group entry
invalid group name '%s'
group %s: no user %s
delete member '%s'?
no matching group file entry in %s
invalid shadow group file entry
duplicate shadow group entry
shadow group %s: no administrative user %s
delete administrative member '%s'?
shadow group %s: no user %s
%s: the files have been updated
%s: no changes
Usage: id [-a]
Usage: id
groups=
Username Port From Latest
Username Port Latest
**Never logged in**
Usage: %s [-p] [name]
%s [-p] [-h host] [-f name]
%s [-p] -r host
Invalid login time
System closed for routine maintenance
[Disconnect bypassed -- root login allowed.]
No utmp entry. You must exec "login" from the lowest level "sh"
login: PAM Failure, aborting: %s
%s login:
login:
login: abort requested by PAM
Login incorrect
%s login:
%s: failure forking: %s
Warning: login re-enabled after temporary lockout.
Last login: %s on %s
Last login: %.19s on %s
from %.*s
login time exceeded
Usage: newgrp [-] [group]
Usage: sg group [[-c] command]
too many groups
%s: invalid user name '%s'
%s: line %d: invalid line
%s: line %d: can't update password
%s: line %d: can't update entry
Old password:
Enter the new password (minimum of %d, maximum of %d characters) Please use a combination of upper and lower case letters and numbers.
New password:
Try again.
Warning: weak password (enter it again to use it anyway).
They don't match; try again.
The password for %s cannot be changed.
%s: repository %s not supported
%s: You may not view or modify password information for %s.
Changing password for %s
The password for %s is unchanged.
invalid password file entry
duplicate password entry
invalid user name '%s'
no matching password file entry in %s
add user '%s' in %s?
invalid shadow password file entry
duplicate shadow password entry
user %s: last password change in the future
Access to su to that account DENIED.
Password authentication bypassed.
Please enter your OWN password as authentication.
%s: %s
Usage: su [options] [LOGIN] Options: -c, --command COMMAND pass COMMAND to the invoked shell -h, --help display this help message and exit -, -l, --login make the shell a login shell -m, -p, --preserve-environment do not reset environment variables, and keep the same shell -s, --shell SHELL use SHELL instead of the default in passwd
%s: %s (Ignored)
You are not authorized to su %s
(Enter your own password)
%s: must be run from a terminal
%s: pam_start: error %d
No password file
No password entry for 'root'
Type control-d to proceed with normal startup, (or give root password for system maintenance):
Entering System Maintenance Mode
%s: cannot create new defaults file
%s: cannot open new defaults file
%s: group '%s' is a NIS group.
%s: too many groups specified (max %d).
%s: invalid base directory '%s'
%s: invalid comment '%s'
%s: invalid home directory '%s'
%s: shadow passwords required for -e
%s: shadow passwords required for -f
%s: invalid field '%s'
%s: invalid shell '%s'
%s: cannot create directory %s
Creating mailbox file
Group 'mail' not found. Creating the user mailbox file with 0600 mode.
Setting mailbox file permissions
%s: group %s exists - if you want to add this user to that group, use -g.
%s: warning: the home directory already exists. Not copying any file from skel directory into it.
%s: %s not owned by %s, not removing
%s: user %s is a NIS user
%s: not removing directory %s (would remove home of user %s)
%s: error removing directory %s
%s: shadow passwords required for -e and -f
%s: directory %s exists
%s: warning: failed to completely remove old home directory %s
%s: cannot rename directory %s to %s
%s: warning: %s not owned by %s
failed to change mailbox owner
failed to rename mailbox
Couldn't lock file
Couldn't make backup
%s: can't restore %s: %s (your changes are in %s)
translator-credits
Canonical Partners
People Also Installed
OpenGL hardware acceleration
,
translator-credits
Also post this review to:
Use This Source
Test drive
Departments
Come and explore our favourites
%(sym)s%(hardware)s
Inappropriate?
Configure the sources for installable software and updates
Software Sources
Error: must run as root
Error: need a repository as argument
Error: '%s' invalid
To improve the user experience of Ubuntu please take part in the popularity contest. If you do so the list of installed software and how often it was used will be collected and sent anonymously to the Ubuntu project on a weekly basis. The results are used to improve the support for popular applications and to rank applications in the search results.
To improve the user experiece of Debian please take part in the popularity contest. If you do so the list of installed software and how often it was used will be collected and sent anonymously to the Debian project. The results are used to optimise the layout of the installation CDs.
Submit the list of installed software and how often it is is used to the distribution project.
Mirror
Testing Mirrors
Cancel
No suitable download server was found
Please check your Internet connection.
Canceling...
Daily
Every two days
Weekly
Every two weeks
Every %s days
%s updates
%s Software
%s (%s)
Other...
Import key
Error importing selected file
The selected file may not be a GPG key file or it might be corrupt.
Error removing the key
The key you selected could not be removed. Please report this as a bug.
Reload
The information about available software is out-of-date To install software and updates from newly added or changed sources, you have to reload the information about available software. You need a working internet connection to continue.
CD Error
Error scanning the CD %s
CD Name
Please enter a name for the disc
Insert Disk
Please insert a disk in the drive:
Enter the complete APT line of the repository that you want to add as source
The APT line includes the type, location and components of a repository, for example '%s'.
Binary
Source code
(Source Code)
Source Code
New mirror
Completed %s of %s tests
Active
Key
_Add key from paste data
Error importing key
The selected data may not be a GPG key file or it might be corrupt.
Error scanning the CD
Add Software Channels
You can either add the following sources or replace your current sources by them. Only install software from trusted sources.
There are no sources to install software from
The file '%s' does not contain any valid software sources.
Ubuntu Archive Automatic Signing Key <ftpmaster\@ubuntu\.com>
Ubuntu CD Image Automatic Signing Key <cdimage\@ubuntu\.com>
Edit Source
Type:
URI:
Distribution:
Components:
Comment:
_Replace
Scanning CD-ROM
To install from a CD-ROM or DVD, insert the medium into the drive.
Download from:
Downloadable from the Internet
Installable from CD-ROM/DVD
Add...
Edit...
Other Software
Updates
Trusted software providers
Keys are used to authenticate the correct source of software and so protect your computer from malicious software
_Import Key File...
Import the public key from a trusted software provider
Restore _Defaults
Restore the default keys of your distribution
Authentication
_Reload
Choose a Download Server
Protocol:
_Select Best Server
Performs a connection test to find the best mirror for your location
Choose _Server
APT line:
_Add Source
Usage: tasksel install <task> tasksel remove <task> tasksel [options] \t-t, --test test mode; don't really do anything \t --new-install automatically install some tasks \t --list-tasks list tasks that would be displayed and exit \t --task-packages list available packages in a task \t --task-desc returns the description of a task
aptitude failed
Queued for download
Downloading
Queued for seeding
Name
Size
Have
Active
Copyright (c) The Transmission Project
translator-credits
Transmission Up: %1$s %2$s Down: %3$s %4$s
Remote Control
Transmission Preferences
Server for %s
Main server
Custom servers
Could not calculate sources.list entry
Unable to locate any package files, perhaps this is not a Ubuntu Disc or the wrong architecture?
Failed to add the CD
There was a error adding the CD, the upgrade will abort. Please report this as a bug if this is a valid Ubuntu CD. The error message was: '%s'
The server may be overloaded
Broken packages
Your system contains broken packages that couldn't be fixed with this software. Please fix them first using synaptic or apt-get before proceeding.
This is most likely a transient problem, please try again later.
Could not calculate the upgrade
Error authenticating some packages
It was not possible to authenticate some packages. This may be a transient network problem. You may want to try again later. See below for a list of unauthenticated packages.
The package '%s' is marked for removal but it is in the removal blacklist.
The essential package '%s' is marked for removal.
Trying to install blacklisted version '%s'
Can't install '%s'
Can't guess meta-package
Reading cache
Unable to get exclusive lock
This usually means that another package management application (like apt-get or aptitude) already running. Please close that application first.
Upgrading over remote connection not supported
Continue running under SSH?
Starting additional sshd
Can not upgrade
An upgrade from '%s' to '%s' is not supported with this tool.
Sandbox setup failed
It was not possible to create the sandbox environment.
Sandbox mode
Your python install is corrupted. Please fix the '/usr/bin/python' symlink.
Package 'debsig-verify' is installed
The upgrade can not continue with that package installed. Please remove it with synaptic or 'apt-get remove debsig-verify' first and run the upgrade again.
Include latest updates from the Internet?
disabled on upgrade to %s
No valid mirror found
Generate default sources?
Repository information invalid
Third party sources disabled
Some third party entries in your sources.list were disabled. You can re-enable them after the upgrade with the 'software-properties' tool or your package manager.
Error during update
A problem occurred during the update. This is usually some sort of network problem, please check your network connection and retry.
Not enough free disk space
Calculating the changes
Do you want to start the upgrade?
Upgrade canceled
Could not download the upgrades
Error during commit
Restoring original system state
Could not install the upgrades
Remove obsolete packages?
_Keep
_Remove
A problem occurred during the clean-up. Please see the below message for more information.
Required depends is not installed
The required dependency '%s' is not installed.
Checking package manager
Preparing the upgrade failed
Getting upgrade prerequisites failed
Updating repository information
Invalid package information
Fetching
Upgrading
Upgrade complete
Searching for obsolete software
System upgrade is complete.
The partial upgrade was completed.
Could not find the release notes
The server may be overloaded.
Could not download the release notes
Please check your internet connection.
Could not run the upgrade tool
Upgrade tool signature
Upgrade tool
Failed to fetch
Fetching the upgrade failed. There may be a network problem.
Authentication failed
Authenticating the upgrade failed. There may be a problem with the network or with the server.
Failed to extract
Extracting the upgrade failed. There may be a problem with the network or with the server.
Verification failed
Verifying the upgrade failed. There may be a problem with the network or with the server.
Can not run the upgrade
The error message is '%s'.
Upgrade
Release Notes
Downloading additional package files...
File %s of %s at %sB/s
File %s of %s
Please insert '%s' into the drive '%s'
Media Change
Upgrading may reduce desktop effects, and performance in games and other graphically intensive programs.
No ARMv6 CPU
No init available
Sandbox upgrade using aufs
Use the given path to search for a cdrom with upgradable packages
Use frontend. Currently available: DistUpgradeViewText, DistUpgradeViewGtk, DistUpgradeViewKDE
Perform a partial upgrade only (no sources.list rewriting)
Set datadir
Fetching is complete
Fetching file %li of %li at %sB/s
About %s remaining
Fetching file %li of %li
Applying changes
dependency problems - leaving unconfigured
Could not install '%s'
The upgrade will continue but the '%s' package may not be in a working state. Please consider submitting a bug report about it.
Replace the customized configuration file '%s'?
You will lose any changes you have made to this configuration file if you choose to replace it with a newer version.
The 'diff' command was not found
A fatal error occurred
Ctrl-c pressed
This will abort the operation and may leave the system in a broken state. Are you sure you want to do that?
To prevent data loss close all open applications and documents.
Show Difference >>>
<
Error
Show Terminal >>>
<
Information
Details
Remove %s
Remove (was auto installed) %s
Install %s
Upgrade %s
Restart required
Restart the system to complete the upgrade
_Restart Now
&Close
Cancel Upgrade?
%(str_days)s %(str_hours)s
This download will take about %s with your connection.
Preparing to upgrade
Getting new software channels
Getting new packages
Installing the upgrades
Cleaning up
You have to download a total of %s.
There are no upgrades available for your system. The upgrade will now be canceled.
Reboot required
The upgrade is finished and a reboot is required. Do you want to do this now?
Aborting
Demoted:
Continue [yN]
Details [d]
y
n
d
Remove: %s
Install: %s
Upgrade: %s
Continue [Yn]
To finish the upgrade, a restart is required. If you select 'y' the system will be restarted.
Downloading file %(current)li of %(total)li with %(speed)s/s
Downloading file %(current)li of %(total)li
Show progress of individual files
_Cancel Upgrade
_Resume Upgrade
Cancel the running upgrade? The system could be in an unusable state if you cancel the upgrade. You are strongly adviced to resume the upgrade.
_Start Upgrade
_Replace
Difference between the files
_Report Bug
_Continue
Start the upgrade?
Distribution Upgrade
Setting new software channels
Restarting the computer
Terminal
_Upgrade
A new version of Ubuntu is available. Would you like to upgrade?
Don't Upgrade
Ask Me Later
Yes, Upgrade Now
You have declined to upgrade to the new Ubuntu
Show version and exit
Directory that contains the data files
Run the specified frontend
Running partial upgrade
Downloading the release upgrade tool
Check if upgrading to the latest devel release is possible
Try upgrading to the latest release using the upgrader from $distro-proposed
Run in a special upgrade mode. Currently 'desktop' for regular upgrades of a desktop system and 'server' for server systems are supported.
No new release found
New release '%s' available.
Run 'do-release-upgrade' to upgrade to it.
Ubuntu %(version)s Upgrade Available
Last Updated
Please wait, this can take some time.
Update is complete
Open Link in Browser
Copy Link to Clipboard
The software on this computer is up to date.
Upgrade…
Software updates are no longer provided for %s %s.
_Partial Upgrade
_Continue
Restart _Later
Software index is broken
It is impossible to install or remove any software. Please use the package manager "Synaptic" or run "sudo apt-get install -f" in a terminal to fix this issue at first.
Could not initialize the package information
Could not calculate the upgrade
Install
Version %s:
Downloading list of changes...
The computer also needs to restart to finish installing previous updates.
Not enough free disk space
Other updates
Cancel
Building Updates List
Downloading changelog
Failed to download the list of changes. Please check your Internet connection.
%s base
%.1f MB
updates
Changes
Description
Software Updates
Show and install available updates
Show version and exit
Directory that contains the data files
Check if a new Ubuntu release is available
Check if upgrading to the latest devel release is possible
Do not focus on map when starting
A file on disk
Package %s should be installed.
.deb package
%s needs to be marked as manually installed.
%i obsolete entries in the status file
Obsolete entries in dpkg status
Obsolete dpkg status entries
Remove lilo since grub is also installed.(See bug #314004 for details.)
Version %s. Report bugs to %s.
Using server %s.
This TLD has no whois server, but you can access the whois database at
This TLD has no whois server.
No whois server is known for this kind of object.
Unknown AS number or IP network. Please upgrade this program.
Cannot parse this line: %s
Host %s not found.
%s/tcp: unknown service
Timeout.
Invalid number '%s'.
Try '%s --help' for more information.
Password:
Channel _Name
Channel _Topic
Servers
translator-credits
C_onnect
|