File size: 64,577 Bytes
e5bcf98 |
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 |
M
L
VOC
WAVE
-f cd (16 bit little endian, 44100, stereo)
-f cdr (16 bit big endian, 44100, stereo)
-f dat (16 bit little endian, 48000, stereo)
AppArmorApplet is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
AppArmor Desktop Preferences
Profile Generation
Path
YAST
genprof
AppArmor Rejections
Total package names:
Normal packages:
Hmm, seems like the AutoRemover destroyed something which really shouldn't happen. Please file a bug report against apt.
OK
Invalid DNS TTL
Could not open data file: %s
%s: can not represent section for symbol `%s' in a.out object file format
No symbols
OK
Cancel
Reboot
Continue
Exiting...
Help
I/O error
Normal
No format for the temporary image could be found
There is no selected disc image.
%s: not enough free space
"%s": %s
All files
The file does not appear to be a playlist
Vertical gradient
_Image
Image path:
Choose an image
FRONT COVER
Medium Icon
Write to Disc
Creates disc images suitable for video DVDs
translator-credits
P_review
_Remove Files
Display playlists and their contents
Insert
at the beginning
Delete every occurrence of
{number}
Add a splitting point
Split this track every
seconds
Split this track in
FILE
_Effects
Cheese
Use a countdown
No device found
translator-credits
No Effect
Compiz
`'like this`" and "'
yes
no
(C)(C)
Report translation bugs to <\.\.\.>
ss, %g second, %s/s ", ", %g seconds, %s/s
1K-blocks" header in "df1024-blocks" header in "df -P
F. Pinard" to "François Pinardç
%s: remove %s (write-protected) %s?
-f, --frontend\t\tSpecify debconf frontend to use. -p, --priority\t\tSpecify minimum priority question to show. --terse\t\t\tEnable terse mode.
yes
no
_Help
Help
Debconf
Debconf, running at %s
https://wiki.gnome.org/Apps/Devhelp?action=AttachFile#x26;do=view#x26;target=devhelp.png
Developer's Help program
Font for text
translator-credits
DevHelp Website
Book
Warning: invalid layer range %lu - %lu
%s --> %s
Replace _All
Scroll around the diagram
Can't open output file %s: %s
25
Connection Points:
Hex Size:
_Attributes
_New
_Delete
Move up
Requirement
Show arrow:
character `%c' not allowed (only letters, digits and characters `%s')
must start with an alphanumeric character
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: 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
Eject version %s by Jeff Tranter ([email protected]) Usage: eject -h\t\t\t\t-- display command usage and exit eject -V\t\t\t\t-- display program version and exit eject [-vnrsfqpm] [<name>]\t\t-- eject device eject [-vn] -d\t\t\t-- display default device eject [-vn] -a on_BAR_off_BAR_1_BAR_0 [<name>]\t-- turn auto-eject feature on or off eject [-vn] -c <slot> [<name>]\t-- switch discs on a CD-ROM changer eject [-vn] -t [<name>]\t\t-- close tray eject [-vn] -T [<name>]\t\t-- toggle tray eject [-vn] -i on_BAR_off_BAR_1_BAR_0 [<name>]\t-- toggle manual eject protection on/off eject [-vn] -x <speed> [<name>]\t-- set CD-ROM max speed eject [-vn] -X [<name>]\t\t-- list CD-ROM available speeds Options: -v\t-- enable verbose output -n\t-- don't eject, just show device found -r\t-- eject CD-ROM -s\t-- eject SCSI device -f\t-- eject floppy -q\t-- eject tape -p\t-- use /proc/mounts instead of /etc/mtab -m\t-- do not unmount device even if it is mounted
Long options: -h --help -v --verbose -d --default -a --auto -c --changerslot -t --trayclose -x --cdspeed -r --cdrom -s --scsi -f --floppy -X --listspeed -q --tape -n --noop -V --version -p --proc -m --no-unmount -T --traytoggle
Parameter <name> can be a device file or a mount point. If omitted, name defaults to `%s'. By default tries -r, -s, -f, and -q in order until success.
%s: invalid argument to --auto/-a option
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…
%02u.%02u
Show “_%s”
_Move on Toolbar
_Delete Toolbar
Separator
Image Viewer
_Next
General
Date in statusbar
Please try a different file extension like .png or .jpg.
as is
Gallery
translator-credits
Not embedded
(One of the Standard 14 Fonts)
Unknown MIME Type
Paper Size:
translator-credits
Running in presentation mode
_Profession:
_First:
Telex
Categories
evolution address book
New Contact
Open
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
translator-credits
Certificates Table
Extensions
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
Text Editor
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)
GIMP
GNU Image Manipulation Program
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
Options to use when changing user
_login shell
Run program
Run:
Missing command to run.
Root Terminal
Opens a terminal as the root user, using gksu to ask for the password
Open as administrator
background, style
background, style
background, style
background, style
background, style
x
Automatically generated profile
Profile quality
Profile quality
Colorspace fallback
Colorspace fallback
Colorspace fallback
universal access, color
Calibration quality
Calibration quality
Calibration quality
universal access, brightness
display panel, rotation
display panel, rotation
display panel, rotation
MirroredPantallas en EspejoMirroredPantallas en Espejo
translation
keybinding
keyboard, delay
Distance
keyboard, delay
Page SetupPrinter Option Group
mouse, speed
mouse, left button as primary
mouse, right button as primary
Wifi security
Wacom action-type
Signal strength
Password strength
Signal strength
Password strength
network parameters
proxy method
Wi-Fi/Ethernet security
Forget wireless networkWi-Fi Network
proxy method
category
notifications
notifications
notifications
notifications
notifications
service is disabled
Add Account
1 hour 5 minutes
1 hour 5 minutes
Battery power
Battery power
Battery name
Battery name
Battery power
Battery power
Developer
Developer
marker
marker
printer state
printer state
print job
printer state
printer state
printer state
printer state
print job
printer state
Two Sided
Two Sided
Two Sided
Orientation
Orientation
Orientation
Orientation
print job
print job
print job
print job
print job
GeneralPrinter Option Group
Installable OptionsPrinter Option Group
JobPrinter Option Group
Image QualityPrinter Option Group
ColorPrinter Option Group
AdvancedPrinter Option Group
Paper Source
Paper SourceResolution
GhostScript
GhostScript
GhostScript
GhostScript
measurement format
measurement format
Language
service is enabled
balance
balance
balance
balance
balance
balance
volume
universal access, text size
universal access, contrast
universal access, text size
universal access, threshold
universal access, text size
universal access, text size
universal access, zoom
universal access, delay
universal access, delay
Beep when a key is
Beep when a key is
Beep when a key is
universal access, threshold
Distance
Distance
Distance
Distance
universal access, thickness
universal access, thickness
universal access, contrast
universal access, brightness
Account type
Account type
Password strength
Password strength
Password strength
Password strength
Could you not access "Digital Persona U.are.U 4000/4000B
Could you not access "Digital Persona U.are.U 4000/4000B
Password mode
Password mode
Password mode
Wacom action-type
Wacom action-type
Wacom action-type
Wacom tablet button
Wacom tablet button
left-ring-mode-1
right-ring-mode-1
left-strip-mode-1
right-strip-mode-1
category
category
x
About GNOME
Learn more about GNOME
News
GNOME Library
Friends of GNOME
Contact
The Mysterious GEGL
Wanda The GNOME Fish
About the GNOME Desktop
Welcome to the GNOME Desktop
Brought to you by:
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.
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 rewinding file '%s': %s
No name
No filename to save to
Starting %s
could not get information about output %d
Laptop
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)
GNOME
Default GNOME Theme
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
Universal Access
Universal Access Settings
Accessories
Desktop accessories
Applications
Other
Applications that did not fit in other categories
Administration
Preferences
Personal preferences
Hardware
Settings for several hardware devices
Personal
Personal settings
System
System settings
translator-credits
Copyright © 2003-2008 %s
Network Tools
Idle
Collisions:
Devices
0.0
0%
Details
Group
Protocol\tIP Source\tPort/Service\tState
Destination\tGateway\tNetmask\tInterface
No
Rechargeable
Intel wireless adaptor
Screensaver
Select Command
Add Startup Program
Edit Startup Program
Enabled
Icon
Program
No description
Version of this application
GNOME
This session logs you into GNOME
Some programs are still running:
Comm_ent:
_Name:
Starting %s
FILE
ID
Unknown
A program is still running:
Lock Screen
Cancel
Not responding
System Monitor
File Systems
S_earch results:
translator-credits
Device
Type
Total
Free
Used
?
%a %l:%M %p
%b %d %l:%M %p
%b %d %Y
unknown type
Terminal
Use the command line
FILE
ID
Icon for terminal window
Font
Background type
Background image
translator-credits
Partition Editor
Align to:
Cylinder
MiB
Resize
Resize/Move
Clear Partition Label on %1
_Help
Apply All Operations
translator-credits
CLASS
Program name as used by the window manager
NAME
X display to use
DISPLAY
SCREEN
FLAGS
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
(no suggestions)
More...
Ignore All
Character Map
UTF-8:
UTF-16:
Notes:
See also:
Equivalents:
Mandarin Pronunciation:
Cantonese Pronunciation:
Japanese On Pronunciation:
Korean Pronunciation:
Font
Font Size
Script
Common
translator-credits
Page _Setup
This is the last character that was selected in the character map (and will be selected again when the character map is next started). By default, it is the first letter of the alphabet in the current locale.
Ubuntu default theme
Human-Clearlooks
DarkRoom
%l:%M:%S %p
%H:%M:%S
%H:%M
%a %b %e %Y
%a %b %e
%a
%b %e %Y
%Y
%A
%a %d %b
Tomorrow\\u2003%l:%M %p
%a\\u2003%l:%M %p
%a %d %b\\u2003%l:%M %p
Tomorrow\\u2003%H:%M
%a\\u2003%H:%M
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
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:
KdeSudo
Sudo frontend for KDE
(C) 2007 - 2008 Anthony Mercatante
Robert Gruber
Anthony Mercatante
Martin Böhm
Jonathan Riddell
Forget passwords
Manual override for automatic desktop file detection
Your names
Your emails
Language
Installed
%s, %s
_Install
Cancel
Valid arguments are:
%s: option '-W %s' requires an argument
Log in
Log out
Informational message
Error message
Credits
Written by
Quit the application
Configure the application
Close the current window
Authentication Required
hanja
hanja(hangul)
hangul(hanja)
Orientation
Cancelled
(dir)
(parent dir)
Search
[Case Sensitive]
[Regexp]
Requested fill size "%s" is invalid
If you want to unmount the volume, please use Unmount Volume in the popup menu of the volume.
Unable to rename desktop file
Specified group '%s' doesn't exist
Link
Another link to %s
%s (%'dth copy)%s
%s (%'drd copy)%s
(
Deleting files
Duplicating file %'d of %'d
%S of %S
This doesn't look like an address.
Command
%s Properties
(some contents unreadable)
Contents:
used
Free space:
Restore selected items to their original position
(%s)
Redo the last undone action
translator-credits
Don't have permission to access the requested location.
Network Connections
Disconnect
Available
WEP
%u Mb/s
%d dB
IPv4
Broadcast Address:
_Transport mode:
VLAN _id:
Device name + number
Bridge connection %d
MSCHAP
Wi-Fi connection %d
USB
PIN code is needed for the mobile broadband device
frm
fnt
underline
tilde
heavy check mark
x-shaped bullet
subscript right paren
Performs right click on current flat review item.
Speaks entire document.
Performs the basic where am I operation.
Speaks the title bar.
Opens the Find dialog.
Searches for the next instance of a string.
Spells the current flat review line.
Spells the current flat review item or word.
Speaks the current flat review character.
Marks the end of a text selection.
Cycles to the next speaking of punctuation level.
Cycles to the next capitalization style.
Cycles the debug level at run time.
Bookmark where am I with respect to current position.
Go to previous bookmark location.
Go to bookmark.
Speak and braille a previous chat room message.
Toggle whether we provide chat room specific message histories.
Cursor Routing
Cut Begin
Switches between native and screen-reader caret navigation.
Advance live region politeness setting.
Review live region announcement.
Clears the dynamic row headers
toggle
_Activate
Dot _7
Dot _8
_Speak Chat Room name
double click
Default Synthesizer
Actual String
Replacement String
Enable echo by cha_racter
Enable non-spacing _diacritical keys
Key Binding
Default
Unbound
_Desktop
Screen Reader Preferences for %s
Mark in braille
Present Unless
Speak
Save Profile As Conflict
User Profile Conflict!
Profile %s already exists. Continue updating the existing profile with these new changes?
Load user profile
_Profile Name:
Sentence
Blockquote
Button
Caption
Check Box
Combo Box
Description
Heading
Label
Landmark
Level
Link
List
List Item
Object
Paragraph
Radio Button
Role
Selected Item
State
Text
URI
Value
Blockquotes
Buttons
Check Boxes
Combo Boxes
Entries
Form Fields
Headings
Headings at Level %d
Landmarks
Large Objects
Links
Lists
List Items
Paragraphs
Radio Buttons
Tables
Unvisited Links
Break speech into ch_unks between pauses
%s default voice
Speech Dispatcher
Spell Check
Spell _error
Speak _multiple cell spans
Brie_f
Shift
Alt
left
right
minus
Insert
Caps_Lock
Alt_R
Super
Meta2
Alt_L
Ctrl
bold
bookmark entered
comparison unknown
bookmark is current object
bookmark and current object have same parent
shared ancestor %s
bookmarks saved
Unable to get calculator display
Capitalization style set to icon.
none
Capitalization style set to none.
Report bugs to orca-list@gnome.org.
Do not announce when your buddies are typing.
Message from chat room %s
New chat tab %s
Do not speak chat room name.
Provide chat room specific message histories.
^[Yy1]
Please enter y or n.
Select desired keyboard layout.
1. Desktop
Setup complete. Press Return to continue.
Leaving flat review.
enter new key
key
Key echo set to key.
Key echo set to None.
key and word
Key echo set to key and word.
sentence
Key echo set to sentence.
word
Key echo set to word.
word and sentence
inaccessible
Speaking of indentation and justification disabled.
Speaking of indentation and justification enabled.
Learn mode. Press escape to exit.
line unselected up from cursor position
Use Up and Down Arrow to navigate the list. Press Escape to exit.
All live regions set to off
live regions politeness levels restored
politeness level %s
setting live region to assertive
setting live region to off
setting live region to polite
setting live region to rude
Live regions monitoring off
Live region support is off
Could not find current location.
Error: Could not create list of objects.
Notification
Exiting list notification messages mode.
slide %(position)d of %(count)d
Profile set to %s.
Progress bar %d.
Punctuation level set to all.
Punctuation level set to most.
Punctuation level set to none.
lower.
Speech is unavailable.
Structural navigation keys on.
Rows reordered
column %d
Top of column.
row %d
Row inserted at the end of the table.
selected
white space
Wrapping to bottom.
0 items
%(index)d of %(total)d
expanded
vertical
checked
not checked
partially checked
pressed
not pressed
not selected
visited
grayed
read only
required
Spoken Context
Enable_d
Display Settings
Text Attributes
Work online / offline
%H hours and %M minutes.
background color
background full height
background stipple
direction
editable
family name
foreground color
foreground stipple
font effect
indent
mistake
invisible
justification
language
left margin
line height
paragraph style
pixels above lines
pixels below lines
pixels inside wrap
right margin
rise
scale
size
stretch
strike through
style
text decoration
text rotation
text shadow
variant
vertical align
weight
wrap mode
writing mode
true
false
engrave
emboss
outline
overline
line through
blink
black
single
double
low
char
word char
ltr
rtl
center
no justification
fill
ultra condensed
extra condensed
condensed
semi condensed
normal
semi expanded
extra expanded
ultra expanded
small caps
oblique
italic
Text body
baseline
sub
super
top
text-top
middle
bottom
text-bottom
inherit
lr-tb
rl-tb
tb-rl
tb-lr
bt-rl
bt-lr
lr
rl
tb
solid
write error
%s: option '-W %s' requires an argument
No previous regular expression
^[yY]
Packaged by %s
Written by %s, %s, %s, %s, %s, %s, %s, %s, %s, and others.
Finch
Error
Account was not added
Username of an account must be non-empty.
New mail notifications
Remember password
There are no protocol plugins installed.
(You probably forgot to 'make install'.)
Modify Account
New Account
Protocol:
Username:
Password:
Alias:
Create this account on the server
Cancel
Save
Are you sure you want to delete %s?
Delete Account
Delete
Accounts
Add
Modify
%s%s%s%s has made %s his or her buddy%s%s
Add buddy to your list?
%s%s%s%s wants to add %s to his or her buddy list%s%s
Authorize buddy?
Authorize
Deny
Account: %s (%s)
Last Seen: %s ago
Default
You must provide a username for the buddy.
You must provide a group.
You must select an account.
The selected account is not online.
Error adding buddy
Username
Alias (optional)
Add in group
Account
Add Buddy
Please enter buddy information.
Chats
Name
Alias
Group
Auto-join
Add Chat
You can edit more information from the context menu later.
Error adding group
You must give a name for the group to add.
Add Group
Enter the name of the group
Edit Chat
Please Update the necessary fields.
Edit
Edit Settings
Information
Retrieving...
Get Info
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 >
http://changelogs.ubuntu.com/changelogs/pool/%s/%s/%s/%s_%s/changelog
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
Cdrom with Ubuntu 6.10 'Edgy Eft'
Ubuntu 6.06 LTS 'Dapper Drake'
Community-maintained (universe)
Non-free drivers
Cdrom with Ubuntu 6.06 LTS 'Dapper Drake'
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'
Non-free (Multiverse)
Cdrom with Ubuntu 4.10 'Warty Warthog'
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 5.0 'Lenny'
Debian 4.0 'Etch'
Debian 3.1 'Sarge'
Security updates
Debian current stable release
Debian testing
Debian 'Sid' (unstable)
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
Failed to link GStreamer pipeline; check your installation
_Artists and albums
_Genres and artists
Track _number
_Artist
A_lbum
_Year
_Genre
Da_te added
Ti_me
Lo_cation
_Quality
_Edit...
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
failed to stat %s: %m
translator-credits
Key Servers
Ultimate
You have no personal PGP keys that can be used to indicate your trust of this key.
Importing keys from key servers
Key ID:
_Subkeys
Marginally
Fully
Unnamed private key
Identifier:
Canonical Partners
People Also Installed
OpenGL hardware acceleration
,
Also post this review to:
Use This Source
Test drive
Departments
Come and explore our favourites
%(sym)s%(hardware)s
Inappropriate?
Software Sources
Mirror
Testing Mirrors
Cancel
Daily
%s (%s)
Other...
Valid arguments are:
Usage:
or:
[OPTION...]
NAME
SECS
failed to return to initial working directory
'
^[yY]
Packaged by %s
Written by %s, %s, %s, %s, %s, %s, %s, %s, %s, and others.
read
Write checkpoint %u
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
Leave Fullscreen
Time:
_Remove
Remove file from playlist
Add...
Remove
Save Playlist...
Move Up
Move Down
4-channel
4.1-channel
5.0-channel
5.1-channel
General
Disable screensaver when playing
Video
Audio
Title:
Artist:
Year:
Album:
Comment:
Channels:
Show or hide the sidebar
Show session management options
%d:%02d:%02d
Unknown
0 Hz
0 Channels
%s %s %s
0 seconds
Totem contains an exception to allow the use of proprietary GStreamer plugins.
None
translator-credits
XML Shareable Playlist
%d Hz
Add Directory
Save Gallery
_Skip to:
Server for %s
File %s of %s
Please insert '%s' into the drive '%s'
%(str_days)s %(str_hours)s
Details [d]
y
n
Ubuntu
x
Power
Colorspace fallback
Colorspace fallback
Colorspace fallback
Device kind
Device kind
Device kind
Device kind
Device kind
Zoom Grayscale
display panel, rotation
display panel, rotation
display panel, rotation
MirroredPantallas en EspejoMirroredPantallas en Espejo
64-bit" or "32-bit
translation
Distance
Page SetupPrinter Option Group
Wifi security
Wacom action-type
Signal strength
Password strength
Signal strength
Password strength
proxy method
proxy method
1 hour 5 minutes
1 hour 5 minutes
Battery power
Battery power
1 hour 5 minutes
Battery power
Battery power
Developer
Developer
marker
marker
printer state
printer state
printer state
printer state
printer state
print job
print job
printer state
Two Sided
Two Sided
Two Sided
Orientation
Orientation
Orientation
Orientation
print job
print job
print job
print job
print job
GeneralPrinter Option Group
Installable OptionsPrinter Option Group
JobPrinter Option Group
Image QualityPrinter Option Group
ColorPrinter Option Group
AdvancedPrinter Option Group
MyPrinter Options
Paper Source
Paper SourceResolution
GhostScript
GhostScript
GhostScript
GhostScript
balance
balance
balance
balance
balance
balance
volume
universal access, text size
universal access, contrast
universal access, text size
universal access, text size
universal access, text size
universal access, zoom
Beep when a key is
Beep when a key is
Beep when a key is
Distance
Distance
Distance
Distance
Zoom Grayscale
Account type
Account type
Password strength
Password strength
Password strength
Password strength
Could you not access "Digital Persona U.are.U 4000/4000B
Could you not access "Digital Persona U.are.U 4000/4000B
Feb 18Feb 24login history week label
Feb 24, 2013
22:58login date-time
login date-time
Password mode
Password mode
Password mode
Feb 24
Wacom action-type
Wacom action-type
Wacom action-type
Wacom tablet button
Wacom tablet button
left-ring-mode-1
right-ring-mode-1
left-strip-mode-1
right-strip-mode-1
Last Updated
The software on this computer is up to date.
Upgrade…
Software updates are no longer provided for %s %s.
The computer also needs to restart to finish installing previous updates.
%s base
%.1f MB
Do you really want to quit the installation now?
Other...
How much:
Make Startup Disk
Installation Failed
Installation Complete
Applications
applications
Documents
documents
Download
download
Movies
movies
Music
music
Photos
photos
Pictures
pictures
Projects
projects
Public
public
Videos
videos
|