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
|
#
# "$Id$"
#
# Message catalog template for the Common UNIX Printing System (CUPS).
#
# Copyright 2007 by Apple Inc.
# Copyright 2005-2007 by Easy Software Products.
#
# These coded instructions, statements, and computer programs are the
# property of Apple Inc. and are protected by Federal copyright
# law. Distribution and use rights are outlined in the file "LICENSE.txt"
# which should have been included with this file. If this file is
# file is missing or damaged, see the license at "http://www.cups.org/".
#
msgid ""
msgstr ""
"Project-Id-Version: CUPS 1.3\n"
"Report-Msgid-Bugs-To: http://www.cups.org/str.php\n"
"POT-Creation-Date: 2007-07-27 14:55-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: systemv/lpstat.c:2103 systemv/lpstat.c:2216
msgid "\t\t(all)\n"
msgstr ""
#: systemv/lpstat.c:2106 systemv/lpstat.c:2109 systemv/lpstat.c:2219
#: systemv/lpstat.c:2222
msgid "\t\t(none)\n"
msgstr ""
#: berkeley/lpc.c:450
#, c-format
msgid "\t%d entries\n"
msgstr ""
#: systemv/lpstat.c:2084 systemv/lpstat.c:2197
msgid "\tAfter fault: continue\n"
msgstr ""
#: systemv/lpstat.c:1670 systemv/lpstat.c:2050 systemv/lpstat.c:2163
msgid "\tAlerts:"
msgstr ""
#: systemv/lpstat.c:2107 systemv/lpstat.c:2220
msgid "\tBanner required\n"
msgstr ""
#: systemv/lpstat.c:2108 systemv/lpstat.c:2221
msgid "\tCharset sets:\n"
msgstr ""
#: systemv/lpstat.c:2073 systemv/lpstat.c:2186
msgid "\tConnection: direct\n"
msgstr ""
#: systemv/lpstat.c:2064 systemv/lpstat.c:2177
msgid "\tConnection: remote\n"
msgstr ""
#: systemv/lpstat.c:2111 systemv/lpstat.c:2224
msgid "\tDefault page size:\n"
msgstr ""
#: systemv/lpstat.c:2110 systemv/lpstat.c:2223
msgid "\tDefault pitch:\n"
msgstr ""
#: systemv/lpstat.c:2112 systemv/lpstat.c:2225
msgid "\tDefault port settings:\n"
msgstr ""
#: systemv/lpstat.c:2045 systemv/lpstat.c:2158
#, c-format
msgid "\tDescription: %s\n"
msgstr ""
#: systemv/lpstat.c:2039 systemv/lpstat.c:2152
msgid ""
"\tForm mounted:\n"
"\tContent types: any\n"
"\tPrinter types: unknown\n"
msgstr ""
#: systemv/lpstat.c:2105 systemv/lpstat.c:2218
msgid "\tForms allowed:\n"
msgstr ""
#: systemv/lpstat.c:2068 systemv/lpstat.c:2181
#, c-format
msgid "\tInterface: %s.ppd\n"
msgstr ""
#: systemv/lpstat.c:2077 systemv/lpstat.c:2190
#, c-format
msgid "\tInterface: %s/interfaces/%s\n"
msgstr ""
#: systemv/lpstat.c:2081 systemv/lpstat.c:2194
#, c-format
msgid "\tInterface: %s/ppd/%s.ppd\n"
msgstr ""
#: systemv/lpstat.c:2059 systemv/lpstat.c:2172
#, c-format
msgid "\tLocation: %s\n"
msgstr ""
#: systemv/lpstat.c:2083 systemv/lpstat.c:2196
msgid "\tOn fault: no alert\n"
msgstr ""
#: systemv/lpstat.c:2088 systemv/lpstat.c:2102 systemv/lpstat.c:2201
#: systemv/lpstat.c:2215
msgid "\tUsers allowed:\n"
msgstr ""
#: systemv/lpstat.c:2095 systemv/lpstat.c:2208
msgid "\tUsers denied:\n"
msgstr ""
#: berkeley/lpc.c:452
msgid "\tdaemon present\n"
msgstr ""
#: berkeley/lpc.c:448
msgid "\tno entries\n"
msgstr ""
#: berkeley/lpc.c:420 berkeley/lpc.c:432
#, c-format
msgid "\tprinter is on device '%s' speed -1\n"
msgstr ""
#: berkeley/lpc.c:445
msgid "\tprinting is disabled\n"
msgstr ""
#: berkeley/lpc.c:443
msgid "\tprinting is enabled\n"
msgstr ""
#: systemv/lpstat.c:1676
#, c-format
msgid "\tqueued for %s\n"
msgstr ""
#: berkeley/lpc.c:440
msgid "\tqueuing is disabled\n"
msgstr ""
#: berkeley/lpc.c:438
msgid "\tqueuing is enabled\n"
msgstr ""
#: systemv/lpstat.c:2032 systemv/lpstat.c:2145
msgid "\treason unknown\n"
msgstr ""
#: systemv/cupstestppd.c:363
msgid ""
"\n"
" DETAILED CONFORMANCE TEST RESULTS\n"
msgstr ""
#: systemv/cupstestppd.c:324 systemv/cupstestppd.c:328
msgid " REF: Page 15, section 3.1.\n"
msgstr ""
#: systemv/cupstestppd.c:320
msgid " REF: Page 15, section 3.2.\n"
msgstr ""
#: systemv/cupstestppd.c:336
msgid " REF: Page 19, section 3.3.\n"
msgstr ""
#: systemv/cupstestppd.c:298
msgid " REF: Page 20, section 3.4.\n"
msgstr ""
#: systemv/cupstestppd.c:340
msgid " REF: Page 27, section 3.5.\n"
msgstr ""
#: systemv/cupstestppd.c:294
msgid " REF: Page 42, section 5.2.\n"
msgstr ""
#: systemv/cupstestppd.c:332
msgid " REF: Pages 16-17, section 3.2.\n"
msgstr ""
#: systemv/cupstestppd.c:308
msgid " REF: Pages 42-45, section 5.2.\n"
msgstr ""
#: systemv/cupstestppd.c:303
msgid " REF: Pages 45-46, section 5.2.\n"
msgstr ""
#: systemv/cupstestppd.c:312
msgid " REF: Pages 48-49, section 5.2.\n"
msgstr ""
#: systemv/cupstestppd.c:316
msgid " REF: Pages 52-54, section 5.2.\n"
msgstr ""
#: berkeley/lpq.c:547
#, c-format
msgid " %-39.39s %.0f bytes\n"
msgstr ""
#: systemv/cupstestppd.c:480
#, c-format
msgid " PASS Default%s\n"
msgstr ""
#: systemv/cupstestppd.c:417
msgid " PASS DefaultImageableArea\n"
msgstr ""
#: systemv/cupstestppd.c:451
msgid " PASS DefaultPaperDimension\n"
msgstr ""
#: systemv/cupstestppd.c:503
msgid " PASS FileVersion\n"
msgstr ""
#: systemv/cupstestppd.c:523
msgid " PASS FormatVersion\n"
msgstr ""
#: systemv/cupstestppd.c:543
msgid " PASS LanguageEncoding\n"
msgstr ""
#: systemv/cupstestppd.c:563
msgid " PASS LanguageVersion\n"
msgstr ""
#: systemv/cupstestppd.c:615
msgid " PASS Manufacturer\n"
msgstr ""
#: systemv/cupstestppd.c:655
msgid " PASS ModelName\n"
msgstr ""
#: systemv/cupstestppd.c:675
msgid " PASS NickName\n"
msgstr ""
#: systemv/cupstestppd.c:735
msgid " PASS PCFileName\n"
msgstr ""
#: systemv/cupstestppd.c:810
msgid " PASS PSVersion\n"
msgstr ""
#: systemv/cupstestppd.c:715
msgid " PASS PageRegion\n"
msgstr ""
#: systemv/cupstestppd.c:695
msgid " PASS PageSize\n"
msgstr ""
#: systemv/cupstestppd.c:770
msgid " PASS Product\n"
msgstr ""
#: systemv/cupstestppd.c:845
msgid " PASS ShortNickName\n"
msgstr ""
#: systemv/cupstestppd.c:2364
#, c-format
msgid ""
" WARN \"%s %s\" conflicts with \"%s %s\"\n"
" (constraint=\"%s %s %s %s\")\n"
msgstr ""
#: systemv/cupstestppd.c:1229
#, c-format
msgid " WARN %s has no corresponding options!\n"
msgstr ""
#: systemv/cupstestppd.c:1353
#, c-format
msgid ""
" WARN %s shares a common prefix with %s\n"
" REF: Page 15, section 3.2.\n"
msgstr ""
#: systemv/cupstestppd.c:1254
msgid " WARN Default choices conflicting!\n"
msgstr ""
#: systemv/cupstestppd.c:1244
#, c-format
msgid ""
" WARN Duplex option keyword %s should be named Duplex or JCLDuplex!\n"
" REF: Page 122, section 5.17\n"
msgstr ""
#: systemv/cupstestppd.c:1682
msgid " WARN File contains a mix of CR, LF, and CR LF line endings!\n"
msgstr ""
#: systemv/cupstestppd.c:1270
msgid ""
" WARN LanguageEncoding required by PPD 4.3 spec.\n"
" REF: Pages 56-57, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:1664
#, c-format
msgid " WARN Line %d only contains whitespace!\n"
msgstr ""
#: systemv/cupstestppd.c:1278
msgid ""
" WARN Manufacturer required by PPD 4.3 spec.\n"
" REF: Pages 58-59, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:1409
#, c-format
msgid " WARN Missing APDialogExtension file \"%s\"\n"
msgstr ""
#: systemv/cupstestppd.c:1423
#, c-format
msgid " WARN Missing APPrinterIconPath file \"%s\"\n"
msgstr ""
#: systemv/cupstestppd.c:1392
#, c-format
msgid " WARN Missing cupsICCProfile file \"%s\"\n"
msgstr ""
#: systemv/cupstestppd.c:1687
msgid " WARN Non-Windows PPD files should use lines ending with only LF, not CR LF!\n"
msgstr ""
#: systemv/cupstestppd.c:1262
#, c-format
msgid ""
" WARN Obsolete PPD version %.1f!\n"
" REF: Page 42, section 5.2.\n"
msgstr ""
#: systemv/cupstestppd.c:1291
msgid ""
" WARN PCFileName longer than 8.3 in violation of PPD spec.\n"
" REF: Pages 61-62, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:1325
msgid ""
" WARN Protocols contains PJL but JCL attributes are not set.\n"
" REF: Pages 78-79, section 5.7.\n"
msgstr ""
#: systemv/cupstestppd.c:1316
msgid ""
" WARN Protocols contains both PJL and BCP; expected TBCP.\n"
" REF: Pages 78-79, section 5.7.\n"
msgstr ""
#: systemv/cupstestppd.c:1299
msgid ""
" WARN ShortNickName required by PPD 4.3 spec.\n"
" REF: Pages 64-65, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:1831
#, c-format
msgid " %s %s %s does not exist!\n"
msgstr ""
#: systemv/cupstestppd.c:2095
#, c-format
msgid " %s Bad UTF-8 \"%s\" translation string for option %s!\n"
msgstr ""
#: systemv/cupstestppd.c:2125 systemv/cupstestppd.c:2174
#: systemv/cupstestppd.c:2213
#, c-format
msgid " %s Bad UTF-8 \"%s\" translation string for option %s, choice %s!\n"
msgstr ""
#: systemv/cupstestppd.c:1882
#, c-format
msgid " %s Bad cupsFilter value \"%s\"!\n"
msgstr ""
#: systemv/cupstestppd.c:1933
#, c-format
msgid " %s Bad cupsPreFilter value \"%s\"!\n"
msgstr ""
#: systemv/cupstestppd.c:2046
#, c-format
msgid " %s Bad language \"%s\"!\n"
msgstr ""
#: systemv/cupstestppd.c:2081
#, c-format
msgid " %s Missing \"%s\" translation string for option %s!\n"
msgstr ""
#: systemv/cupstestppd.c:2157 systemv/cupstestppd.c:2197
#, c-format
msgid " %s Missing \"%s\" translation string for option %s, choice %s!\n"
msgstr ""
#: systemv/cupstestppd.c:1749 systemv/cupstestppd.c:1764
#, c-format
msgid " %s Missing choice *%s %s in UIConstraint \"*%s %s *%s %s\"!\n"
msgstr ""
#: systemv/cupstestppd.c:1911
#, c-format
msgid " %s Missing cupsFilter file \"%s\"\n"
msgstr ""
#: systemv/cupstestppd.c:1962
#, c-format
msgid " %s Missing cupsPreFilter file \"%s\"\n"
msgstr ""
#: systemv/cupstestppd.c:1725 systemv/cupstestppd.c:1732
#, c-format
msgid " %s Missing option %s in UIConstraint \"*%s %s *%s %s\"!\n"
msgstr ""
#: systemv/cupstestppd.c:2250
#, c-format
msgid " %s No base translation \"%s\" is included in file!\n"
msgstr ""
#: systemv/cupstestppd.c:1060
#, c-format
msgid ""
" **FAIL** %s must be 1284DeviceID!\n"
" REF: Page 72, section 5.5\n"
msgstr ""
#: systemv/cupstestppd.c:471
#, c-format
msgid ""
" **FAIL** BAD Default%s %s\n"
" REF: Page 40, section 4.5.\n"
msgstr ""
#: systemv/cupstestppd.c:407
#, c-format
msgid ""
" **FAIL** BAD DefaultImageableArea %s!\n"
" REF: Page 102, section 5.15.\n"
msgstr ""
#: systemv/cupstestppd.c:443
#, c-format
msgid ""
" **FAIL** BAD DefaultPaperDimension %s!\n"
" REF: Page 103, section 5.15.\n"
msgstr ""
#: systemv/cupstestppd.c:871
msgid ""
" **FAIL** BAD JobPatchFile attribute in file\n"
" REF: Page 24, section 3.4.\n"
msgstr ""
#: systemv/cupstestppd.c:591
msgid ""
" **FAIL** BAD Manufacturer (should be \"HP\")\n"
" REF: Page 211, table D.1.\n"
msgstr ""
#: systemv/cupstestppd.c:607
msgid ""
" **FAIL** BAD Manufacturer (should be \"Oki\")\n"
" REF: Page 211, table D.1.\n"
msgstr ""
#: systemv/cupstestppd.c:646
#, c-format
msgid ""
" **FAIL** BAD ModelName - \"%c\" not allowed in string.\n"
" REF: Pages 59-60, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:802
msgid ""
" **FAIL** BAD PSVersion - not \"(string) int\".\n"
" REF: Pages 62-64, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:763
msgid ""
" **FAIL** BAD Product - not \"(string)\".\n"
" REF: Page 62, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:837
msgid ""
" **FAIL** BAD ShortNickName - longer than 31 chars.\n"
" REF: Pages 64-65, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:1042
#, c-format
msgid ""
" **FAIL** Bad %s choice %s!\n"
" REF: Page 122, section 5.17\n"
msgstr ""
#: systemv/cupstestppd.c:992
#, c-format
msgid ""
" **FAIL** Bad %s choice %s!\n"
" REF: Page 84, section 5.9\n"
msgstr ""
#: systemv/cupstestppd.c:1094
#, c-format
msgid " **FAIL** Bad LanguageEncoding %s - must be ISOLatin1!\n"
msgstr ""
#: systemv/cupstestppd.c:1108
#, c-format
msgid " **FAIL** Bad LanguageVersion %s - must be English!\n"
msgstr ""
#: systemv/cupstestppd.c:2391
#, c-format
msgid " **FAIL** Default option code cannot be interpreted: %s\n"
msgstr ""
#: systemv/cupstestppd.c:1167
#, c-format
msgid " **FAIL** Default translation string for option %s choice %s contains 8-bit characters!\n"
msgstr ""
#: systemv/cupstestppd.c:1140
#, c-format
msgid " **FAIL** Default translation string for option %s contains 8-bit characters!\n"
msgstr ""
#: systemv/cupstestppd.c:1021
#, c-format
msgid ""
" **FAIL** REQUIRED %s does not define choice None!\n"
" REF: Page 122, section 5.17\n"
msgstr ""
#: systemv/cupstestppd.c:491
#, c-format
msgid ""
" **FAIL** REQUIRED Default%s\n"
" REF: Page 40, section 4.5.\n"
msgstr ""
#: systemv/cupstestppd.c:392
msgid ""
" **FAIL** REQUIRED DefaultImageableArea\n"
" REF: Page 102, section 5.15.\n"
msgstr ""
#: systemv/cupstestppd.c:428
msgid ""
" **FAIL** REQUIRED DefaultPaperDimension\n"
" REF: Page 103, section 5.15.\n"
msgstr ""
#: systemv/cupstestppd.c:513
msgid ""
" **FAIL** REQUIRED FileVersion\n"
" REF: Page 56, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:533
msgid ""
" **FAIL** REQUIRED FormatVersion\n"
" REF: Page 56, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:922
#, c-format
msgid ""
" **FAIL** REQUIRED ImageableArea for PageSize %s\n"
" REF: Page 41, section 5.\n"
" REF: Page 102, section 5.15.\n"
msgstr ""
#: systemv/cupstestppd.c:553
msgid ""
" **FAIL** REQUIRED LanguageEncoding\n"
" REF: Pages 56-57, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:573
msgid ""
" **FAIL** REQUIRED LanguageVersion\n"
" REF: Pages 57-58, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:625
msgid ""
" **FAIL** REQUIRED Manufacturer\n"
" REF: Pages 58-59, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:665
msgid ""
" **FAIL** REQUIRED ModelName\n"
" REF: Pages 59-60, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:685
msgid ""
" **FAIL** REQUIRED NickName\n"
" REF: Page 60, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:745
msgid ""
" **FAIL** REQUIRED PCFileName\n"
" REF: Pages 61-62, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:820
msgid ""
" **FAIL** REQUIRED PSVersion\n"
" REF: Pages 62-64, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:725
msgid ""
" **FAIL** REQUIRED PageRegion\n"
" REF: Page 100, section 5.14.\n"
msgstr ""
#: systemv/cupstestppd.c:891
msgid ""
" **FAIL** REQUIRED PageSize\n"
" REF: Page 41, section 5.\n"
" REF: Page 99, section 5.14.\n"
msgstr ""
#: systemv/cupstestppd.c:705
msgid ""
" **FAIL** REQUIRED PageSize\n"
" REF: Pages 99-100, section 5.14.\n"
msgstr ""
#: systemv/cupstestppd.c:944
#, c-format
msgid ""
" **FAIL** REQUIRED PaperDimension for PageSize %s\n"
" REF: Page 41, section 5.\n"
" REF: Page 103, section 5.15.\n"
msgstr ""
#: systemv/cupstestppd.c:780
msgid ""
" **FAIL** REQUIRED Product\n"
" REF: Page 62, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:855
msgid ""
" **FAIL** REQUIRED ShortNickName\n"
" REF: Page 64-65, section 5.3.\n"
msgstr ""
#: systemv/cupstestppd.c:1432
#, c-format
msgid " %d ERRORS FOUND\n"
msgstr ""
#: systemv/cupstestdsc.c:239 systemv/cupstestdsc.c:281
#, c-format
msgid ""
" Bad %%%%BoundingBox: on line %d!\n"
" REF: Page 39, %%%%BoundingBox:\n"
msgstr ""
#: systemv/cupstestdsc.c:310
#, c-format
msgid ""
" Bad %%%%Page: on line %d!\n"
" REF: Page 53, %%%%Page:\n"
msgstr ""
#: systemv/cupstestdsc.c:223 systemv/cupstestdsc.c:263
#, c-format
msgid ""
" Bad %%%%Pages: on line %d!\n"
" REF: Page 43, %%%%Pages:\n"
msgstr ""
#: systemv/cupstestdsc.c:180
#, c-format
msgid ""
" Line %d is longer than 255 characters (%d)!\n"
" REF: Page 25, Line Length\n"
msgstr ""
#: systemv/cupstestdsc.c:197
msgid ""
" Missing %!PS-Adobe-3.0 on first line!\n"
" REF: Page 17, 3.1 Conforming Documents\n"
msgstr ""
#: systemv/cupstestdsc.c:367
#, c-format
msgid ""
" Missing %%EndComments comment!\n"
" REF: Page 41, %%EndComments\n"
msgstr ""
#: systemv/cupstestdsc.c:347
#, c-format
msgid ""
" Missing or bad %%BoundingBox: comment!\n"
" REF: Page 39, %%BoundingBox:\n"
msgstr ""
#: systemv/cupstestdsc.c:377
#, c-format
msgid ""
" Missing or bad %%Page: comments!\n"
" REF: Page 53, %%Page:\n"
msgstr ""
#: systemv/cupstestdsc.c:357
#, c-format
msgid ""
" Missing or bad %%Pages: comment!\n"
" REF: Page 43, %%Pages:\n"
msgstr ""
#: systemv/cupstestppd.c:1434
msgid " NO ERRORS FOUND\n"
msgstr ""
#: systemv/cupstestdsc.c:400
#, c-format
msgid " Saw %d lines that exceeded 255 characters!\n"
msgstr ""
#: systemv/cupstestdsc.c:395
#, c-format
msgid " Too many %%BeginDocument comments!\n"
msgstr ""
#: systemv/cupstestdsc.c:387
#, c-format
msgid " Too many %%EndDocument comments!\n"
msgstr ""
#: systemv/cupstestdsc.c:407
msgid " Warning: file contains binary data!\n"
msgstr ""
#: systemv/cupstestdsc.c:415
#, c-format
msgid " Warning: no %%EndComments comment in file!\n"
msgstr ""
#: systemv/cupstestdsc.c:411
#, c-format
msgid " Warning: obsolete DSC version %.1f in file!\n"
msgstr ""
#: systemv/cupstestppd.c:389 systemv/cupstestppd.c:404
#: systemv/cupstestppd.c:425 systemv/cupstestppd.c:440
#: systemv/cupstestppd.c:468 systemv/cupstestppd.c:488
#: systemv/cupstestppd.c:510 systemv/cupstestppd.c:530
#: systemv/cupstestppd.c:550 systemv/cupstestppd.c:570
#: systemv/cupstestppd.c:588 systemv/cupstestppd.c:604
#: systemv/cupstestppd.c:622 systemv/cupstestppd.c:643
#: systemv/cupstestppd.c:662 systemv/cupstestppd.c:682
#: systemv/cupstestppd.c:702 systemv/cupstestppd.c:722
#: systemv/cupstestppd.c:742 systemv/cupstestppd.c:760
#: systemv/cupstestppd.c:777 systemv/cupstestppd.c:799
#: systemv/cupstestppd.c:817 systemv/cupstestppd.c:834
#: systemv/cupstestppd.c:852 systemv/cupstestppd.c:868
#: systemv/cupstestppd.c:888 systemv/cupstestppd.c:919
#: systemv/cupstestppd.c:941 systemv/cupstestppd.c:989
#: systemv/cupstestppd.c:1018 systemv/cupstestppd.c:1039
#: systemv/cupstestppd.c:1057 systemv/cupstestppd.c:1090
#: systemv/cupstestppd.c:1104 systemv/cupstestppd.c:1136
#: systemv/cupstestppd.c:1163 systemv/cupstestppd.c:1721
#: systemv/cupstestppd.c:1746 systemv/cupstestppd.c:1761
#: systemv/cupstestppd.c:1827 systemv/cupstestppd.c:1878
#: systemv/cupstestppd.c:1908 systemv/cupstestppd.c:1929
#: systemv/cupstestppd.c:1959 systemv/cupstestppd.c:2042
#: systemv/cupstestppd.c:2077 systemv/cupstestppd.c:2091
#: systemv/cupstestppd.c:2121 systemv/cupstestppd.c:2153
#: systemv/cupstestppd.c:2170 systemv/cupstestppd.c:2193
#: systemv/cupstestppd.c:2209 systemv/cupstestppd.c:2246
#: systemv/cupstestppd.c:2387
msgid " FAIL\n"
msgstr ""
#: systemv/cupstestppd.c:274
#, c-format
msgid ""
" FAIL\n"
" **FAIL** Unable to open PPD file - %s\n"
msgstr ""
#: systemv/cupstestppd.c:285
#, c-format
msgid ""
" FAIL\n"
" **FAIL** Unable to open PPD file - %s on line %d.\n"
msgstr ""
#: systemv/cupstestppd.c:1187
msgid " PASS\n"
msgstr ""
#: berkeley/lpq.c:553
#, c-format
msgid "%-6s %-10.10s %-4d %-10d %-27.27s %.0f bytes\n"
msgstr ""
#: berkeley/lpq.c:558
#, c-format
msgid "%-7s %-7.7s %-7d %-31.31s %.0f bytes\n"
msgstr ""
#: systemv/lpstat.c:762
#, c-format
msgid "%s accepting requests since %s\n"
msgstr ""
#: scheduler/ipp.c:9002
#, c-format
msgid "%s cannot be changed."
msgstr ""
#: berkeley/lpc.c:194
#, c-format
msgid "%s is not implemented by the CUPS version of lpc.\n"
msgstr ""
#: berkeley/lpq.c:644
#, c-format
msgid "%s is not ready\n"
msgstr ""
#: berkeley/lpq.c:637
#, c-format
msgid "%s is ready\n"
msgstr ""
#: berkeley/lpq.c:640
#, c-format
msgid "%s is ready and printing\n"
msgstr ""
#: systemv/lpstat.c:765
#, c-format
msgid ""
"%s not accepting requests since %s -\n"
"\t%s\n"
msgstr ""
#: scheduler/ipp.c:627
#, c-format
msgid "%s not supported!"
msgstr ""
#: systemv/lpstat.c:774
#, c-format
msgid "%s/%s accepting requests since %s\n"
msgstr ""
#: systemv/lpstat.c:777
#, c-format
msgid ""
"%s/%s not accepting requests since %s -\n"
"\t%s\n"
msgstr ""
#: berkeley/lpq.c:545
#, c-format
msgid "%s: %-33.33s [job %d localhost]\n"
msgstr ""
#: systemv/cancel.c:304 systemv/cancel.c:368
#, c-format
msgid "%s: %s failed: %s\n"
msgstr ""
#: systemv/accept.c:75
#, c-format
msgid "%s: Don't know what to do!\n"
msgstr ""
#: berkeley/lpr.c:392 systemv/lp.c:630
#, c-format
msgid "%s: Error - %s environment variable names non-existent destination \"%s\"!\n"
msgstr ""
#: systemv/lp.c:268
#, c-format
msgid "%s: Error - bad job ID!\n"
msgstr ""
#: systemv/lp.c:255
#, c-format
msgid "%s: Error - cannot print files and alter jobs simultaneously!\n"
msgstr ""
#: systemv/lp.c:547
#, c-format
msgid "%s: Error - cannot print from stdin if files or a job ID are provided!\n"
msgstr ""
#: systemv/lp.c:501
#, c-format
msgid "%s: Error - expected character set after '-S' option!\n"
msgstr ""
#: systemv/lp.c:521
#, c-format
msgid "%s: Error - expected content type after '-T' option!\n"
msgstr ""
#: systemv/lp.c:301
#, c-format
msgid "%s: Error - expected copies after '-n' option!\n"
msgstr ""
#: berkeley/lpr.c:284
#, c-format
msgid "%s: Error - expected copy count after '-#' option!\n"
msgstr ""
#: berkeley/lpr.c:249
#, c-format
msgid "%s: Error - expected destination after '-P' option!\n"
msgstr ""
#: systemv/lpstat.c:231
#, c-format
msgid "%s: Error - expected destination after '-b' option!\n"
msgstr ""
#: systemv/lp.c:170
#, c-format
msgid "%s: Error - expected destination after '-d' option!\n"
msgstr ""
#: systemv/lp.c:203
#, c-format
msgid "%s: Error - expected form after '-f' option!\n"
msgstr ""
#: systemv/lp.c:432
#, c-format
msgid "%s: Error - expected hold name after '-H' option!\n"
msgstr ""
#: berkeley/lpr.c:141
#, c-format
msgid "%s: Error - expected hostname after '-H' option!\n"
msgstr ""
#: berkeley/lpq.c:188 berkeley/lprm.c:155 systemv/accept.c:139
#: systemv/cancel.c:131 systemv/lp.c:224 systemv/lpstat.c:294
#, c-format
msgid "%s: Error - expected hostname after '-h' option!\n"
msgstr ""
#: systemv/lp.c:410
#, c-format
msgid "%s: Error - expected mode list after '-y' option!\n"
msgstr ""
#: berkeley/lpr.c:308
#, c-format
msgid "%s: Error - expected name after '-%c' option!\n"
msgstr ""
#: systemv/lp.c:324
#, c-format
msgid "%s: Error - expected option string after '-o' option!\n"
msgstr ""
#: systemv/lp.c:480
#, c-format
msgid "%s: Error - expected page list after '-P' option!\n"
msgstr ""
#: systemv/lp.c:345
#, c-format
msgid "%s: Error - expected priority after '-%c' option!\n"
msgstr ""
#: systemv/accept.c:158
#, c-format
msgid "%s: Error - expected reason text after '-r' option!\n"
msgstr ""
#: systemv/lp.c:392
#, c-format
msgid "%s: Error - expected title after '-t' option!\n"
msgstr ""
#: berkeley/lpq.c:117 berkeley/lpr.c:121 berkeley/lprm.c:135
#: systemv/accept.c:113 systemv/cancel.c:100 systemv/lpadmin.c:471
#: systemv/lp.c:147 systemv/lpstat.c:138
#, c-format
msgid "%s: Error - expected username after '-U' option!\n"
msgstr ""
#: systemv/cancel.c:153
#, c-format
msgid "%s: Error - expected username after '-u' option!\n"
msgstr ""
#: berkeley/lpr.c:164
#, c-format
msgid "%s: Error - expected value after '-%c' option!\n"
msgstr ""
#: systemv/lpstat.c:158 systemv/lpstat.c:172
#, c-format
msgid "%s: Error - need \"completed\", \"not-completed\", or \"all\" after '-W' option!\n"
msgstr ""
#: berkeley/lpr.c:397 systemv/lp.c:635
#, c-format
msgid "%s: Error - no default destination available.\n"
msgstr ""
#: systemv/lp.c:368
#, c-format
msgid "%s: Error - priority must be between 1 and 100.\n"
msgstr ""
#: berkeley/lpr.c:401 systemv/lp.c:639
#, c-format
msgid "%s: Error - scheduler not responding!\n"
msgstr ""
#: berkeley/lpr.c:475 systemv/lp.c:702
#, c-format
msgid "%s: Error - stdin is empty, so no job has been sent.\n"
msgstr ""
#: berkeley/lpr.c:350 systemv/lp.c:580
#, c-format
msgid "%s: Error - too many files - \"%s\"\n"
msgstr ""
#: berkeley/lpr.c:332 systemv/lp.c:563
#, c-format
msgid "%s: Error - unable to access \"%s\" - %s\n"
msgstr ""
#: berkeley/lpr.c:451 systemv/lp.c:679
#, c-format
msgid "%s: Error - unable to create temporary file \"%s\" - %s\n"
msgstr ""
#: berkeley/lpr.c:461 systemv/lp.c:688
#, c-format
msgid "%s: Error - unable to write to temporary file \"%s\" - %s\n"
msgstr ""
#: berkeley/lprm.c:118 systemv/cancel.c:223
#, c-format
msgid "%s: Error - unknown destination \"%s\"!\n"
msgstr ""
#: berkeley/lpq.c:157
#, c-format
msgid "%s: Error - unknown destination \"%s/%s\"!\n"
msgstr ""
#: berkeley/lpr.c:319 berkeley/lprm.c:181 systemv/accept.c:169
#: systemv/cancel.c:165 systemv/lp.c:538 systemv/lpstat.c:455
#, c-format
msgid "%s: Error - unknown option '%c'!\n"
msgstr ""
#: systemv/lp.c:244
#, c-format
msgid "%s: Expected job ID after '-i' option!\n"
msgstr ""
#: systemv/lpstat.c:528
#, c-format
msgid "%s: Invalid destination name in list \"%s\"!\n"
msgstr ""
#: systemv/lp.c:456
#, c-format
msgid "%s: Need job ID ('-i jobid') before '-H restart'!\n"
msgstr ""
#: scheduler/cupsfilter.c:388
#, c-format
msgid "%s: No filter to convert from %s/%s to %s/%s!\n"
msgstr ""
#: systemv/accept.c:223
#, c-format
msgid "%s: Operation failed: %s\n"
msgstr ""
#: berkeley/lpq.c:103 berkeley/lpr.c:107 berkeley/lprm.c:98
#: systemv/accept.c:99 systemv/cancel.c:86 systemv/cupsaddsmb.c:91
#: systemv/lpadmin.c:277 systemv/lp.c:133 systemv/lpinfo.c:73
#: systemv/lpmove.c:82 systemv/lpstat.c:110
#, c-format
msgid "%s: Sorry, no encryption support compiled in!\n"
msgstr ""
#: berkeley/lpq.c:304 systemv/cupsaddsmb.c:149 systemv/cupsaddsmb.c:170
#: systemv/lpstat.c:565
#, c-format
msgid "%s: Unable to connect to server\n"
msgstr ""
#: systemv/accept.c:185
#, c-format
msgid "%s: Unable to connect to server: %s\n"
msgstr ""
#: systemv/cancel.c:246 systemv/cancel.c:327
#, c-format
msgid "%s: Unable to contact server!\n"
msgstr ""
#: scheduler/cupsfilter.c:358
#, c-format
msgid "%s: Unable to determine MIME type of \"%s\"!\n"
msgstr ""
#: scheduler/cupsfilter.c:335
#, c-format
msgid "%s: Unable to read MIME database from \"%s\"!\n"
msgstr ""
#: berkeley/lpq.c:161 systemv/lpstat.c:543
#, c-format
msgid "%s: Unknown destination \"%s\"!\n"
msgstr ""
#: scheduler/cupsfilter.c:367
#, c-format
msgid "%s: Unknown destination MIME type %s/%s!\n"
msgstr ""
#: scheduler/cupsfilter.c:949
#, c-format
msgid "%s: Unknown option '%c'!\n"
msgstr ""
#: scheduler/cupsfilter.c:350
#, c-format
msgid "%s: Unknown source MIME type %s/%s!\n"
msgstr ""
#: berkeley/lpr.c:178
#, c-format
msgid "%s: Warning - '%c' format modifier not supported - output may not be correct!\n"
msgstr ""
#: systemv/lp.c:509
#, c-format
msgid "%s: Warning - character set option ignored!\n"
msgstr ""
#: systemv/lp.c:529
#, c-format
msgid "%s: Warning - content type option ignored!\n"
msgstr ""
#: systemv/lp.c:210
#, c-format
msgid "%s: Warning - form option ignored!\n"
msgstr ""
#: systemv/lp.c:418
#, c-format
msgid "%s: Warning - mode option ignored!\n"
msgstr ""
#: berkeley/lpq.c:245
#, c-format
msgid "%s: error - %s environment variable names non-existent destination \"%s\"!\n"
msgstr ""
#: berkeley/lpr.c:192
#, c-format
msgid "%s: error - expected option=value after '-o' option!\n"
msgstr ""
#: berkeley/lpq.c:250
#, c-format
msgid "%s: error - no default destination available.\n"
msgstr ""
#: berkeley/lpc.c:218
msgid "?Invalid help command unknown\n"
msgstr ""
#: cgi-bin/admin.c:1994
msgid "A Samba password is required to export printer drivers!"
msgstr ""
#: cgi-bin/admin.c:1990
msgid "A Samba username is required to export printer drivers!"
msgstr ""
#: scheduler/ipp.c:2208
#, c-format
msgid "A class named \"%s\" already exists!"
msgstr ""
#: scheduler/ipp.c:936
#, c-format
msgid "A printer named \"%s\" already exists!"
msgstr ""
#: cgi-bin/admin.c:157
msgid "Accept Jobs"
msgstr ""
#: cgi-bin/admin.c:421
msgid "Add Class"
msgstr ""
#: cgi-bin/admin.c:713
msgid "Add Printer"
msgstr ""
#: cgi-bin/admin.c:303 cgi-bin/admin.c:326 cgi-bin/admin.c:377
#: cgi-bin/admin.c:387
msgid "Add RSS Subscription"
msgstr ""
#: cgi-bin/admin.c:201 cgi-bin/admin.c:212 cgi-bin/admin.c:2357
msgid "Administration"
msgstr ""
#: scheduler/ipp.c:1033
#, c-format
msgid "Attempt to set %s printer-state to bad value %d!"
msgstr ""
#: scheduler/ipp.c:307
#, c-format
msgid "Attribute groups are out of order (%x < %x)!"
msgstr ""
#: cups/ppd.c:314
msgid "Bad OpenGroup"
msgstr ""
#: cups/ppd.c:316
msgid "Bad OpenUI/JCLOpenUI"
msgstr ""
#: cups/ppd.c:318
msgid "Bad OrderDependency"
msgstr ""
#: cups/ppd.c:319
msgid "Bad UIConstraints"
msgstr ""
#: scheduler/ipp.c:1328
#, c-format
msgid "Bad copies value %d."
msgstr ""
#: cups/ppd.c:327
msgid "Bad custom parameter"
msgstr ""
#: scheduler/ipp.c:2323
#, c-format
msgid "Bad device-uri \"%s\"!"
msgstr ""
#: scheduler/ipp.c:8493 scheduler/ipp.c:9764
#, c-format
msgid "Bad document-format \"%s\"!"
msgstr ""
#: scheduler/ipp.c:9018
msgid "Bad job-priority value!"
msgstr ""
#: scheduler/ipp.c:9043
msgid "Bad job-state value!"
msgstr ""
#: scheduler/ipp.c:2833 scheduler/ipp.c:3180 scheduler/ipp.c:5656
#: scheduler/ipp.c:6825 scheduler/ipp.c:7051 scheduler/ipp.c:7815
#: scheduler/ipp.c:8039 scheduler/ipp.c:8406 scheduler/ipp.c:8912
#, c-format
msgid "Bad job-uri attribute \"%s\"!"
msgstr ""
#: scheduler/ipp.c:5244
#, c-format
msgid "Bad notify-pull-method \"%s\"!"
msgstr ""
#: scheduler/ipp.c:5218
#, c-format
msgid "Bad notify-recipient-uri URI \"%s\"!"
msgstr ""
#: scheduler/ipp.c:1346
#, c-format
msgid "Bad number-up value %d."
msgstr ""
#: cups/adminutil.c:298
#, c-format
msgid "Bad option + choice on line %d!"
msgstr ""
#: scheduler/ipp.c:1363
#, c-format
msgid "Bad page-ranges values %d-%d."
msgstr ""
#: scheduler/ipp.c:2360
#, c-format
msgid "Bad port-monitor \"%s\"!"
msgstr ""
#: scheduler/ipp.c:2408
#, c-format
msgid "Bad printer-state value %d!"
msgstr ""
#: scheduler/ipp.c:274
#, c-format
msgid "Bad request version number %d.%d!"
msgstr ""
#: cgi-bin/admin.c:1264
msgid "Bad subscription ID!"
msgstr ""
#: cgi-bin/admin.c:2967
msgid "Banners"
msgstr ""
#: cgi-bin/admin.c:1265 cgi-bin/admin.c:1297 cgi-bin/admin.c:1307
msgid "Cancel RSS Subscription"
msgstr ""
#: cgi-bin/admin.c:1366 cgi-bin/admin.c:1429 cgi-bin/admin.c:1438
#: cgi-bin/admin.c:1449
msgid "Change Settings"
msgstr ""
#: scheduler/ipp.c:1953 scheduler/ipp.c:5256
#, c-format
msgid "Character set \"%s\" not supported!"
msgstr ""
#: cgi-bin/classes.c:154 cgi-bin/classes.c:201
msgid "Classes"
msgstr ""
#: berkeley/lpc.c:209
msgid ""
"Commands may be abbreviated. Commands are:\n"
"\n"
"exit help quit status ?\n"
msgstr ""
#: scheduler/ipp.c:7333 scheduler/ipp.c:7349 scheduler/ipp.c:8509
#, c-format
msgid "Could not scan type \"%s\"!"
msgstr ""
#: backend/ipp.c:1440
msgid "Cover open."
msgstr ""
#: cups/ppd.c:1066 cups/ppd.c:1118
msgid "Custom"
msgstr ""
#: cgi-bin/admin.c:1719 cgi-bin/admin.c:1730 cgi-bin/admin.c:1775
msgid "Delete Class"
msgstr ""
#: cgi-bin/admin.c:1804 cgi-bin/admin.c:1815 cgi-bin/admin.c:1860
msgid "Delete Printer"
msgstr ""
#: scheduler/ipp.c:1294
#, c-format
msgid "Destination \"%s\" is not accepting jobs."
msgstr ""
#: backend/ipp.c:1474
msgid "Developer almost empty."
msgstr ""
#: backend/ipp.c:1476
msgid "Developer empty!"
msgstr ""
#: systemv/lpinfo.c:271
#, c-format
msgid ""
"Device: uri = %s\n"
" class = %s\n"
" info = %s\n"
" make-and-model = %s\n"
" device-id = %s\n"
msgstr ""
#: backend/ipp.c:1444
msgid "Door open."
msgstr ""
#: filter/pstops.c:408
#, c-format
msgid "EMERG: Unable to allocate memory for page info: %s\n"
msgstr ""
#: filter/pstops.c:401
#, c-format
msgid "EMERG: Unable to allocate memory for pages array: %s\n"
msgstr ""
#: backend/usb-darwin.c:635
#, c-format
msgid "ERROR: %ld: (canceled:%ld)\n"
msgstr ""
#: filter/pstops.c:655
#, c-format
msgid "ERROR: Bad %%BoundingBox: comment seen!\n"
msgstr ""
#: filter/pstops.c:2128
#, c-format
msgid "ERROR: Bad %%IncludeFeature: comment!\n"
msgstr ""
#: filter/pstops.c:1211 filter/pstops.c:1217
#, c-format
msgid "ERROR: Bad %%Page: comment in file!\n"
msgstr ""
#: filter/pstops.c:1287
#, c-format
msgid "ERROR: Bad %%PageBoundingBox: comment in file!\n"
msgstr ""
#: backend/scsi-irix.c:99 backend/scsi-linux.c:113
#, c-format
msgid "ERROR: Bad SCSI device file \"%s\"!\n"
msgstr ""
#: filter/texttops.c:269 filter/texttops.c:280
#, c-format
msgid "ERROR: Bad charset file %s\n"
msgstr ""
#: filter/texttops.c:610
#, c-format
msgid "ERROR: Bad charset type %s\n"
msgstr ""
#: filter/texttops.c:341 filter/texttops.c:377 filter/texttops.c:505
#: filter/texttops.c:541
#, c-format
msgid "ERROR: Bad font description line: %s\n"
msgstr ""
#: filter/imagetoraster.c:457
msgid "ERROR: Bad page setup!\n"
msgstr ""
#: filter/texttops.c:354 filter/texttops.c:518
#, c-format
msgid "ERROR: Bad text direction %s\n"
msgstr ""
#: filter/texttops.c:390 filter/texttops.c:554
#, c-format
msgid "ERROR: Bad text width %s\n"
msgstr ""
#: backend/ipp.c:672
msgid "ERROR: Destination printer does not exist!\n"
msgstr ""
#: filter/pstops.c:644
#, c-format
msgid "ERROR: Duplicate %%BoundingBox: comment seen!\n"
msgstr ""
#: filter/pstops.c:597
#, c-format
msgid "ERROR: Duplicate %%Pages: comment seen!\n"
msgstr ""
#: filter/pstops.c:267
msgid "ERROR: Empty print file!\n"
msgstr ""
#: filter/hpgl-input.c:138
msgid "ERROR: Invalid HP-GL/2 command seen, unable to print file!\n"
msgstr ""
#: filter/pstops.c:1693
#, c-format
msgid "ERROR: Missing %%EndProlog!\n"
msgstr ""
#: filter/pstops.c:1758
#, c-format
msgid "ERROR: Missing %%EndSetup!\n"
msgstr ""
#: backend/ipp.c:226
msgid "ERROR: Missing device URI on command-line and no DEVICE_URI environment variable!\n"
msgstr ""
#: filter/pstops.c:707
#, c-format
msgid "ERROR: No %%BoundingBox: comment in header!\n"
msgstr ""
#: filter/pstops.c:710
#, c-format
msgid "ERROR: No %%Pages: comment in header!\n"
msgstr ""
#: backend/usb.c:203
msgid "ERROR: No device URI found in argv[0] or in DEVICE_URI environment variable!\n"
msgstr ""
#: filter/rastertoepson.c:1135 filter/rastertohp.c:871
#: filter/rastertolabel.c:1293
msgid "ERROR: No pages found!\n"
msgstr ""
#: backend/runloop.c:324
msgid "ERROR: Out of paper!\n"
msgstr ""
#: backend/ipp.c:1535
msgid "ERROR: PRINTER environment variable not defined!\n"
msgstr ""
#: backend/ipp.c:962
#, c-format
msgid "ERROR: Print file was not accepted (%s)!\n"
msgstr ""
#: backend/ipp.c:527 backend/ipp.c:640 backend/lpd.c:813 backend/socket.c:295
msgid "ERROR: Printer not responding!\n"
msgstr ""
#: backend/lpd.c:992 backend/lpd.c:1121
#, c-format
msgid "ERROR: Remote host did not accept control file (%d)\n"
msgstr ""
#: backend/lpd.c:1079
#, c-format
msgid "ERROR: Remote host did not accept data file (%d)\n"
msgstr ""
#: backend/ipp.c:1012
#, c-format
msgid "ERROR: Unable to add file %d to job: %s\n"
msgstr ""
#: backend/ipp.c:1220
#, c-format
msgid "ERROR: Unable to cancel job %d: %s\n"
msgstr ""
#: backend/ipp.c:1302
#, c-format
msgid "ERROR: Unable to create temporary compressed print file: %s\n"
msgstr ""
#: backend/ipp.c:1557
#, c-format
msgid "ERROR: Unable to create temporary file - %s.\n"
msgstr ""
#: filter/pstops.c:2624
#, c-format
msgid "ERROR: Unable to create temporary file: %s\n"
msgstr ""
#: backend/ipp.c:1614
#, c-format
msgid "ERROR: Unable to exec pictwpstops: %s\n"
msgstr ""
#: backend/ipp.c:1627
#, c-format
msgid "ERROR: Unable to fork pictwpstops: %s\n"
msgstr ""
#: backend/ipp.c:1542
#, c-format
msgid "ERROR: Unable to get PPD file for printer \"%s\" - %s.\n"
msgstr ""
#: backend/ipp.c:1091
#, c-format
msgid "ERROR: Unable to get job %d attributes (%s)!\n"
msgstr ""
#: backend/ipp.c:681
#, c-format
msgid "ERROR: Unable to get printer status (%s)!\n"
msgstr ""
#: backend/ipp.c:545 backend/lpd.c:671 backend/socket.c:253
#, c-format
msgid "ERROR: Unable to locate printer '%s'!\n"
msgstr ""
#: filter/texttops.c:233
#, c-format
msgid "ERROR: Unable to open \"%s\" - %s\n"
msgstr ""
#: filter/texttops.c:253
#, c-format
msgid "ERROR: Unable to open %s: %s\n"
msgstr ""
#: backend/parallel.c:241 backend/scsi-irix.c:136 backend/scsi-linux.c:151
#: backend/serial.c:256 backend/usb-unix.c:134
#, c-format
msgid "ERROR: Unable to open device file \"%s\": %s\n"
msgstr ""
#: filter/pstops.c:255
#, c-format
msgid "ERROR: Unable to open file \"%s\" - %s\n"
msgstr ""
#: filter/gziptoany.c:74
#, c-format
msgid "ERROR: Unable to open file \"%s\": %s\n"
msgstr ""
#: filter/imagetops.c:309 filter/imagetoraster.c:634
msgid "ERROR: Unable to open image file for printing!\n"
msgstr ""
#: backend/ipp.c:1318
#, c-format
msgid "ERROR: Unable to open print file \"%s\": %s\n"
msgstr ""
#: backend/usb.c:240
#, c-format
msgid "ERROR: Unable to open print file %s - %s\n"
msgstr ""
#: backend/lpd.c:460
#, c-format
msgid "ERROR: Unable to open print file %s: %s\n"
msgstr ""
#: backend/ipp.c:1311
#, c-format
msgid "ERROR: Unable to open temporary compressed print file: %s\n"
msgstr ""
#: filter/pstops.c:512
#, c-format
msgid "ERROR: Unable to seek to offset %ld in file - %s\n"
msgstr ""
#: filter/pstops.c:510
#, c-format
msgid "ERROR: Unable to seek to offset %lld in file - %s\n"
msgstr ""
#: backend/scsi-irix.c:214 backend/scsi-linux.c:233
#, c-format
msgid "ERROR: Unable to send print data (%d)\n"
msgstr ""
#: backend/ipp.c:1641
#, c-format
msgid "ERROR: Unable to wait for pictwpstops: %s\n"
msgstr ""
#: backend/ipp.c:1328
#, c-format
msgid "ERROR: Unable to write %d bytes to \"%s\": %s\n"
msgstr ""
#: backend/runloop.c:121 backend/runloop.c:339
#, c-format
msgid "ERROR: Unable to write print data: %s\n"
msgstr ""
#: filter/imagetoraster.c:1196 filter/imagetoraster.c:1292
#: filter/imagetoraster.c:1332
msgid "ERROR: Unable to write raster data to driver!\n"
msgstr ""
#: filter/gziptoany.c:96
#, c-format
msgid "ERROR: Unable to write uncompressed document data: %s\n"
msgstr ""
#: backend/ipp.c:330
#, c-format
msgid "ERROR: Unknown encryption option value \"%s\"!\n"
msgstr ""
#: backend/lpd.c:352
#, c-format
msgid "ERROR: Unknown file order \"%s\"\n"
msgstr ""
#: backend/lpd.c:325
#, c-format
msgid "ERROR: Unknown format character \"%c\"\n"
msgstr ""
#: backend/ipp.c:371
#, c-format
msgid "ERROR: Unknown option \"%s\" with value \"%s\"!\n"
msgstr ""
#: backend/lpd.c:339
#, c-format
msgid "ERROR: Unknown print mode \"%s\"\n"
msgstr ""
#: backend/ipp.c:343
#, c-format
msgid "ERROR: Unknown version option value \"%s\"!\n"
msgstr ""
#: filter/pstops.c:2325
#, c-format
msgid "ERROR: Unsupported brightness value %s, using brightness=100!\n"
msgstr ""
#: filter/pstops.c:2392
#, c-format
msgid "ERROR: Unsupported gamma value %s, using gamma=1000!\n"
msgstr ""
#: filter/pstops.c:2446
#, c-format
msgid "ERROR: Unsupported number-up value %d, using number-up=1!\n"
msgstr ""
#: filter/pstops.c:2479
#, c-format
msgid "ERROR: Unsupported number-up-layout value %s, using number-up-layout=lrtb!\n"
msgstr ""
#: filter/pstops.c:2529
#, c-format
msgid "ERROR: Unsupported page-border value %s, using page-border=none!\n"
msgstr ""
#: filter/pstops.c:1997
#, c-format
msgid "ERROR: doc_printf overflow (%d bytes) detected, aborting!\n"
msgstr ""
#: backend/ipp.c:1661
#, c-format
msgid "ERROR: pictwpstops exited on signal %d!\n"
msgstr ""
#: backend/ipp.c:1658
#, c-format
msgid "ERROR: pictwpstops exited with status %d!\n"
msgstr ""
#: backend/ipp.c:554 backend/lpd.c:842 backend/socket.c:316
msgid "ERROR: recoverable: Unable to connect to printer; will retry in 30 seconds...\n"
msgstr ""
#: backend/usb-darwin.c:559
#, c-format
msgid "ERROR: select() returned %d\n"
msgstr ""
#: cgi-bin/admin.c:1477 cgi-bin/admin.c:1489 cgi-bin/admin.c:1543
#: cgi-bin/admin.c:1550 cgi-bin/admin.c:1585 cgi-bin/admin.c:1598
#: cgi-bin/admin.c:1622 cgi-bin/admin.c:1692
msgid "Edit Configuration File"
msgstr ""
#: cups/adminutil.c:344
msgid "Empty PPD file!"
msgstr ""
#: cgi-bin/admin.c:2988
msgid "Ending Banner"
msgstr ""
#: systemv/lppasswd.c:205
msgid "Enter old password:"
msgstr ""
#: systemv/lppasswd.c:234
msgid "Enter password again:"
msgstr ""
#: systemv/lppasswd.c:223
msgid "Enter password:"
msgstr ""
#: scheduler/client.c:2274
msgid "Enter your username and password or the root username and password to access this page. If you are using Kerberos authentication, make sure you have a valid Kerberos ticket."
msgstr ""
#: cgi-bin/admin.c:3030
msgid "Error Policy"
msgstr ""
#: systemv/lpinfo.c:136 systemv/lpmove.c:103
msgid "Error: need hostname after '-h' option!\n"
msgstr ""
#: cgi-bin/admin.c:1982 cgi-bin/admin.c:2001
msgid "Export Printers to Samba"
msgstr ""
#: systemv/cupstestdsc.c:176 systemv/cupstestdsc.c:193
#: systemv/cupstestdsc.c:219 systemv/cupstestdsc.c:236
#: systemv/cupstestdsc.c:260 systemv/cupstestdsc.c:278
#: systemv/cupstestdsc.c:307 systemv/cupstestdsc.c:344
#: systemv/cupstestdsc.c:354 systemv/cupstestdsc.c:364
#: systemv/cupstestdsc.c:374 systemv/cupstestdsc.c:384
#: systemv/cupstestdsc.c:392
msgid "FAIL\n"
msgstr ""
#: backend/usb-darwin.c:390
#, c-format
msgid "FATAL: Could not load %s\n"
msgstr ""
#: scheduler/ipp.c:2303
#, c-format
msgid "File device URIs have been disabled! To enable, see the FileDevice directive in \"%s/cupsd.conf\"."
msgstr ""
#: backend/ipp.c:1466
msgid "Fuser temperature high!"
msgstr ""
#: backend/ipp.c:1468
msgid "Fuser temperature low!"
msgstr ""
#: cups/ppd.c:678 cups/ppd.c:1025 cups/ppd.c:1095 cups/ppd.c:1231
msgid "General"
msgstr ""
#: scheduler/ipp.c:2811 scheduler/ipp.c:3100 scheduler/ipp.c:5633
#: scheduler/ipp.c:6802 scheduler/ipp.c:7792 scheduler/ipp.c:8016
#: scheduler/ipp.c:8383 scheduler/ipp.c:8889
msgid "Got a printer-uri attribute but no job-id!"
msgstr ""
#: cgi-bin/help.c:89 cgi-bin/help.c:130 cgi-bin/help.c:140 cgi-bin/help.c:170
msgid "Help"
msgstr ""
#: backend/lpd.c:694
#, c-format
msgid "INFO: Attempting to connect to host %s for printer %s\n"
msgstr ""
#: backend/socket.c:257
#, c-format
msgid "INFO: Attempting to connect to host %s on port %d\n"
msgstr ""
#: backend/ipp.c:1200
msgid "INFO: Canceling print job...\n"
msgstr ""
#: backend/ipp.c:574 backend/lpd.c:861 backend/socket.c:338
#, c-format
msgid "INFO: Connected to %s...\n"
msgstr ""
#: backend/ipp.c:490
#, c-format
msgid "INFO: Connecting to %s on port %d...\n"
msgstr ""
#: backend/lpd.c:995 backend/lpd.c:1124
msgid "INFO: Control file sent successfully\n"
msgstr ""
#: backend/lpd.c:1082
msgid "INFO: Data file sent successfully\n"
msgstr ""
#: filter/imagetoraster.c:1139
#, c-format
msgid "INFO: Formatting page %d...\n"
msgstr ""
#: filter/imagetoraster.c:620
msgid "INFO: Loading image file...\n"
msgstr ""
#: backend/socket.c:392
msgid "INFO: Print file sent, waiting for printer to finish...\n"
msgstr ""
#: backend/usb-darwin.c:407
#, c-format
msgid "INFO: Printer busy (status:0x%08x)\n"
msgstr ""
#: backend/ipp.c:946 backend/usb-unix.c:122
msgid "INFO: Printer busy; will retry in 10 seconds...\n"
msgstr ""
#: backend/parallel.c:230 backend/scsi-irix.c:142 backend/scsi-linux.c:157
#: backend/serial.c:251
msgid "INFO: Printer busy; will retry in 30 seconds...\n"
msgstr ""
#: backend/usb-unix.c:414
msgid "INFO: Printer busy; will retry in 5 seconds...\n"
msgstr ""
#: backend/ipp.c:665 backend/ipp.c:956
msgid "INFO: Printer does not support IPP/1.1, trying IPP/1.0...\n"
msgstr ""
#: backend/usb-unix.c:507
msgid "INFO: Printer is busy; will retry in 5 seconds...\n"
msgstr ""
#: backend/runloop.c:233 backend/runloop.c:333 backend/usb-darwin.c:1112
msgid "INFO: Printer is currently off-line.\n"
msgstr ""
#: backend/runloop.c:355 backend/usb-darwin.c:1094
msgid "INFO: Printer is now on-line.\n"
msgstr ""
#: backend/parallel.c:235 backend/usb-unix.c:128
msgid "INFO: Printer not connected; will retry in 30 seconds...\n"
msgstr ""
#: filter/rastertoepson.c:1090 filter/rastertohp.c:821
#: filter/rastertolabel.c:1246
#, c-format
msgid "INFO: Printing page %d, %d%% complete...\n"
msgstr ""
#: filter/imagetops.c:804
#, c-format
msgid "INFO: Printing page %d...\n"
msgstr ""
#: backend/socket.c:416 filter/rastertoepson.c:1137 filter/rastertohp.c:873
#: filter/rastertolabel.c:1295
msgid "INFO: Ready to print.\n"
msgstr ""
#: backend/lpd.c:1096
#, c-format
msgid "INFO: Sending control file (%lu bytes)\n"
msgstr ""
#: backend/lpd.c:967
#, c-format
msgid "INFO: Sending control file (%u bytes)\n"
msgstr ""
#: backend/usb-darwin.c:491
msgid "INFO: Sending data\n"
msgstr ""
#: backend/lpd.c:1020
#, c-format
msgid "INFO: Sending data file (%ld bytes)\n"
msgstr ""
#: backend/lpd.c:1018
#, c-format
msgid "INFO: Sending data file (%lld bytes)\n"
msgstr ""
#: backend/parallel.c:286 backend/socket.c:375 backend/usb-unix.c:179
#, c-format
msgid "INFO: Sent print file, %ld bytes...\n"
msgstr ""
#: backend/parallel.c:284 backend/socket.c:373 backend/usb-unix.c:177
#, c-format
msgid "INFO: Sent print file, %lld bytes...\n"
msgstr ""
#: backend/lpd.c:1031
#, c-format
msgid "INFO: Spooling LPR job, %.0f%% complete...\n"
msgstr ""
#: backend/ipp.c:507 backend/ipp.c:744 backend/lpd.c:794
#: backend/parallel.c:216 backend/scsi-irix.c:122 backend/scsi-linux.c:137
#: backend/serial.c:237 backend/socket.c:278 backend/usb-unix.c:108
msgid "INFO: Unable to contact printer, queuing on next printer in class...\n"
msgstr ""
#: backend/ipp.c:1037
msgid "INFO: Waiting for job to complete...\n"
msgstr ""
#: cups/ppd.c:322
msgid "Illegal control character"
msgstr ""
#: cups/ppd.c:323
msgid "Illegal main keyword string"
msgstr ""
#: cups/ppd.c:324
msgid "Illegal option keyword string"
msgstr ""
#: cups/ppd.c:325
msgid "Illegal translation string"
msgstr ""
#: cups/ppd.c:326
msgid "Illegal whitespace character"
msgstr ""
#: backend/ipp.c:1458
msgid "Ink/toner almost empty."
msgstr ""
#: backend/ipp.c:1460
msgid "Ink/toner empty!"
msgstr ""
#: backend/ipp.c:1462
msgid "Ink/toner waste bin almost full."
msgstr ""
#: backend/ipp.c:1464
msgid "Ink/toner waste bin full!"
msgstr ""
#: backend/ipp.c:1442
msgid "Interlock open."
msgstr ""
#: cups/ppd.c:313
msgid "Internal error"
msgstr ""
#: cups/ppd.c:1321
msgid "JCL"
msgstr ""
#: scheduler/ipp.c:8089
#, c-format
msgid "Job #%d cannot be restarted - no files!"
msgstr ""
#: scheduler/ipp.c:2852 scheduler/ipp.c:3198 scheduler/ipp.c:5674
#: scheduler/ipp.c:6679 scheduler/ipp.c:6843 scheduler/ipp.c:7024
#: scheduler/ipp.c:7069 scheduler/ipp.c:7833 scheduler/ipp.c:8057
#: scheduler/ipp.c:8424 scheduler/ipp.c:8930
#, c-format
msgid "Job #%d does not exist!"
msgstr ""
#: scheduler/ipp.c:3229
#, c-format
msgid "Job #%d is already aborted - can't cancel."
msgstr ""
#: scheduler/ipp.c:3223
#, c-format
msgid "Job #%d is already canceled - can't cancel."
msgstr ""
#: scheduler/ipp.c:3235
#, c-format
msgid "Job #%d is already completed - can't cancel."
msgstr ""
#: scheduler/ipp.c:7100 scheduler/ipp.c:8945
#, c-format
msgid "Job #%d is finished and cannot be altered!"
msgstr ""
#: scheduler/ipp.c:8071
#, c-format
msgid "Job #%d is not complete!"
msgstr ""
#: scheduler/ipp.c:2867
#, c-format
msgid "Job #%d is not held for authentication!"
msgstr ""
#: scheduler/ipp.c:7847
#, c-format
msgid "Job #%d is not held!"
msgstr ""
#: scheduler/ipp.c:6657
#, c-format
msgid "Job #%s does not exist!"
msgstr ""
#: scheduler/ipp.c:5342
#, c-format
msgid "Job %d not found!"
msgstr ""
#: cgi-bin/ipp-var.c:858
msgid "Job Completed"
msgstr ""
#: cgi-bin/ipp-var.c:856
msgid "Job Created"
msgstr ""
#: cgi-bin/ipp-var.c:862
msgid "Job Options Changed"
msgstr ""
#: cgi-bin/ipp-var.c:860
msgid "Job Stopped"
msgstr ""
#: scheduler/ipp.c:9026
msgid "Job is completed and cannot be changed."
msgstr ""
#: cgi-bin/jobs.c:192
msgid "Job operation failed:"
msgstr ""
#: scheduler/ipp.c:9057 scheduler/ipp.c:9074 scheduler/ipp.c:9085
msgid "Job state cannot be changed."
msgstr ""
#: scheduler/ipp.c:7936
msgid "Job subscriptions cannot be renewed!"
msgstr ""
#: cgi-bin/jobs.c:102 cgi-bin/jobs.c:113 cgi-bin/jobs.c:189
msgid "Jobs"
msgstr ""
#: scheduler/ipp.c:1962 scheduler/ipp.c:5265
#, c-format
msgid "Language \"%s\" not supported!"
msgstr ""
#: cups/ppd.c:321
msgid "Line longer than the maximum allowed (255 characters)"
msgstr ""
#: cgi-bin/admin.c:2019
msgid "List Available Printers"
msgstr ""
#: cups/ppd.c:725 cups/ppd.c:1286
msgid "Media Size"
msgstr ""
#: cups/ppd.c:729 cups/ppd.c:1290
msgid "Media Source"
msgstr ""
#: cups/ppd.c:727 cups/ppd.c:1288
msgid "Media Type"
msgstr ""
#: backend/ipp.c:1430
msgid "Media jam!"
msgstr ""
#: backend/ipp.c:1448
msgid "Media tray almost empty."
msgstr ""
#: backend/ipp.c:1450
msgid "Media tray empty!"
msgstr ""
#: backend/ipp.c:1446
msgid "Media tray missing!"
msgstr ""
#: backend/ipp.c:1428
msgid "Media tray needs to be filled."
msgstr ""
#: cups/ppd.c:310
msgid "Memory allocation error"
msgstr ""
#: cups/ppd.c:311
msgid "Missing PPD-Adobe-4.x header"
msgstr ""
#: cups/ppd.c:320
msgid "Missing asterisk in column 1"
msgstr ""
#: cups/adminutil.c:279
#, c-format
msgid "Missing double quote on line %d!"
msgstr ""
#: cgi-bin/admin.c:1731 cgi-bin/admin.c:1816 cgi-bin/admin.c:2385
#: cgi-bin/admin.c:2492 cgi-bin/admin.c:2765 cgi-bin/admin.c:3293
msgid "Missing form variable!"
msgstr ""
#: scheduler/ipp.c:5931
msgid "Missing notify-subscription-ids attribute!"
msgstr ""
#: scheduler/ipp.c:2976
msgid "Missing requesting-user-name attribute!"
msgstr ""
#: scheduler/ipp.c:423
msgid "Missing required attributes!"
msgstr ""
#: cups/adminutil.c:260
#, c-format
msgid "Missing value on line %d!"
msgstr ""
#: cups/ppd.c:312
msgid "Missing value string"
msgstr ""
#: systemv/lpinfo.c:403
#, c-format
msgid ""
"Model: name = %s\n"
" natural_language = %s\n"
" make-and-model = %s\n"
" device-id = %s\n"
msgstr ""
#: cgi-bin/admin.c:421
msgid "Modify Class"
msgstr ""
#: cgi-bin/admin.c:713
msgid "Modify Printer"
msgstr ""
#: cgi-bin/ipp-var.c:413 cgi-bin/ipp-var.c:484
msgid "Move All Jobs"
msgstr ""
#: cgi-bin/ipp-var.c:358 cgi-bin/ipp-var.c:411 cgi-bin/ipp-var.c:482
msgid "Move Job"
msgstr ""
#: backend/ipp.c:974
#, c-format
msgid "NOTICE: Print file accepted - job ID %d.\n"
msgstr ""
#: backend/ipp.c:968
msgid "NOTICE: Print file accepted - job ID unknown.\n"
msgstr ""
#: cups/ppd.c:309
msgid "NULL PPD file pointer"
msgstr ""
#: cups/ppd.c:1862
msgid "No"
msgstr ""
#: cups/adminutil.c:795
msgid "No Windows printer drivers are installed!"
msgstr ""
#: scheduler/ipp.c:3155
#, c-format
msgid "No active jobs on %s!"
msgstr ""
#: scheduler/ipp.c:284
msgid "No attributes in request!"
msgstr ""
#: scheduler/ipp.c:2881
msgid "No authentication information provided!"
msgstr ""
#: scheduler/ipp.c:5522
msgid "No default printer"
msgstr ""
#: scheduler/ipp.c:6429
msgid "No destinations added."
msgstr ""
#: scheduler/ipp.c:7299 scheduler/ipp.c:8475
msgid "No file!?!"
msgstr ""
#: scheduler/ipp.c:5160
msgid "No subscription attributes in request!"
msgstr ""
#: scheduler/ipp.c:6742
msgid "No subscriptions found."
msgstr ""
#: cgi-bin/admin.c:3084
msgid "None"
msgstr ""
#: scheduler/ipp.c:1394
msgid "Not allowed to print."
msgstr ""
#: cups/ppd.c:307
msgid "OK"
msgstr ""
#: backend/ipp.c:1470
msgid "OPC almost at end-of-life."
msgstr ""
#: backend/ipp.c:1472
msgid "OPC at end-of-life!"
msgstr ""
#: cups/ppd.c:315
msgid "OpenGroup without a CloseGroup first"
msgstr ""
#: cups/ppd.c:317
msgid "OpenUI/JCLOpenUI without a CloseUI/JCLCloseUI first"
msgstr ""
#: cgi-bin/admin.c:3057
msgid "Operation Policy"
msgstr ""
#: cgi-bin/admin.c:2879
msgid "Options Installed"
msgstr ""
#: backend/ipp.c:1438
msgid "Out of toner!"
msgstr ""
#: cups/ppd.c:731 cups/ppd.c:1292
msgid "Output Mode"
msgstr ""
#: backend/ipp.c:1454
msgid "Output bin almost full."
msgstr ""
#: backend/ipp.c:1456
msgid "Output bin full!"
msgstr ""
#: systemv/lpstat.c:1311 systemv/lpstat.c:1315
#, c-format
msgid "Output for printer %s is sent to %s\n"
msgstr ""
#: systemv/lpstat.c:1305
#, c-format
msgid "Output for printer %s is sent to remote printer %s on %s\n"
msgstr ""
#: systemv/lpstat.c:1329 systemv/lpstat.c:1333
#, c-format
msgid "Output for printer %s/%s is sent to %s\n"
msgstr ""
#: systemv/lpstat.c:1323
#, c-format
msgid "Output for printer %s/%s is sent to remote printer %s on %s\n"
msgstr ""
#: backend/ipp.c:1452
msgid "Output tray missing!"
msgstr ""
#: systemv/cupstestdsc.c:404
msgid "PASS\n"
msgstr ""
#: cgi-bin/admin.c:3078 cgi-bin/admin.c:3098
msgid "PS Binary Protocol"
msgstr ""
#: cups/auth.c:150
#, c-format
msgid "Password for %s on %s? "
msgstr ""
#: systemv/cupsaddsmb.c:246
#, c-format
msgid "Password for %s required to access %s via SAMBA: "
msgstr ""
#: cgi-bin/admin.c:3006
msgid "Policies"
msgstr ""
#: cups/notify.c:82
msgid "Print Job:"
msgstr ""
#: cgi-bin/ipp-var.c:597
msgid "Print Test Page"
msgstr ""
#: cgi-bin/ipp-var.c:850
msgid "Printer Added"
msgstr ""
#: cgi-bin/ipp-var.c:854
msgid "Printer Deleted"
msgstr ""
#: cgi-bin/printers.c:213 cgi-bin/printers.c:284
msgid "Printer Maintenance"
msgstr ""
#: cgi-bin/ipp-var.c:852
msgid "Printer Modified"
msgstr ""
#: cgi-bin/ipp-var.c:848
msgid "Printer Stopped"
msgstr ""
#: backend/ipp.c:1434
msgid "Printer off-line."
msgstr ""
#: cups/notify.c:126
msgid "Printer:"
msgstr ""
#: cgi-bin/printers.c:161 cgi-bin/printers.c:330
msgid "Printers"
msgstr ""
#: cgi-bin/admin.c:161
msgid "Purge Jobs"
msgstr ""
#: scheduler/ipp.c:1389
msgid "Quota limit reached."
msgstr ""
#: berkeley/lpq.c:508
msgid "Rank Owner Job File(s) Total Size\n"
msgstr ""
#: berkeley/lpq.c:504
msgid "Rank Owner Pri Job Files Total Size\n"
msgstr ""
#: cgi-bin/admin.c:159
msgid "Reject Jobs"
msgstr ""
#: cups/ppd.c:733 cups/ppd.c:1294
msgid "Resolution"
msgstr ""
#: cups/adminutil.c:2066
#, c-format
msgid "Running command: %s %s -N -A %s -c '%s'\n"
msgstr ""
#: cgi-bin/ipp-var.c:864
msgid "Server Restarted"
msgstr ""
#: cgi-bin/ipp-var.c:870
msgid "Server Security Auditing"
msgstr ""
#: cgi-bin/ipp-var.c:866
msgid "Server Started"
msgstr ""
#: cgi-bin/ipp-var.c:868
msgid "Server Stopped"
msgstr ""
#: cgi-bin/admin.c:2493 cgi-bin/admin.c:2539 cgi-bin/admin.c:2690
#: cgi-bin/admin.c:2709
msgid "Set Allowed Users"
msgstr ""
#: cgi-bin/admin.c:165
msgid "Set As Default"
msgstr ""
#: cgi-bin/admin.c:2750
msgid "Set Class Options"
msgstr ""
#: cgi-bin/admin.c:2750 cgi-bin/admin.c:2849 cgi-bin/admin.c:3125
msgid "Set Printer Options"
msgstr ""
#: cgi-bin/admin.c:3294 cgi-bin/admin.c:3338 cgi-bin/admin.c:3356
msgid "Set Publishing"
msgstr ""
#: cgi-bin/admin.c:153
msgid "Start Class"
msgstr ""
#: cgi-bin/admin.c:149
msgid "Start Printer"
msgstr ""
#: cgi-bin/admin.c:2981
msgid "Starting Banner"
msgstr ""
#: cgi-bin/admin.c:155
msgid "Stop Class"
msgstr ""
#: cgi-bin/admin.c:151
msgid "Stop Printer"
msgstr ""
#: scheduler/ipp.c:6178
#, c-format
msgid "The PPD file \"%s\" could not be found."
msgstr ""
#: scheduler/ipp.c:6165
#, c-format
msgid "The PPD file \"%s\" could not be opened: %s"
msgstr ""
#: cgi-bin/admin.c:579
msgid "The class name may only contain up to 127 printable characters and may not contain spaces, slashes (/), or the pound sign (#)."
msgstr ""
#: scheduler/ipp.c:1989
msgid "The notify-lease-duration attribute cannot be used with job subscriptions."
msgstr ""
#: scheduler/ipp.c:1972 scheduler/ipp.c:5275
#, c-format
msgid "The notify-user-data value is too large (%d > 63 octets)!"
msgstr ""
#: cgi-bin/admin.c:783
msgid "The printer name may only contain up to 127 printable characters and may not contain spaces, slashes (/), or the pound sign (#)."
msgstr ""
#: scheduler/ipp.c:1253
msgid "The printer or class is not shared!"
msgstr ""
#: scheduler/ipp.c:797 scheduler/ipp.c:1088 scheduler/ipp.c:3012
#: scheduler/ipp.c:3117 scheduler/ipp.c:4820 scheduler/ipp.c:5119
#: scheduler/ipp.c:5418 scheduler/ipp.c:5771 scheduler/ipp.c:6361
#: scheduler/ipp.c:6669 scheduler/ipp.c:6961 scheduler/ipp.c:7005
#: scheduler/ipp.c:7314 scheduler/ipp.c:7705 scheduler/ipp.c:8805
#: scheduler/ipp.c:9469 scheduler/ipp.c:9536 scheduler/ipp.c:9794
msgid "The printer or class was not found."
msgstr ""
#: scheduler/ipp.c:903 scheduler/ipp.c:2175
#, c-format
msgid "The printer-uri \"%s\" contains invalid characters."
msgstr ""
#: scheduler/ipp.c:2957
msgid "The printer-uri attribute is required!"
msgstr ""
#: scheduler/ipp.c:887
msgid "The printer-uri must be of the form \"ipp://HOSTNAME/classes/CLASSNAME\"."
msgstr ""
#: scheduler/ipp.c:2159
msgid "The printer-uri must be of the form \"ipp://HOSTNAME/printers/PRINTERNAME\"."
msgstr ""
#: cgi-bin/admin.c:323
msgid "The subscription name may not contain spaces, slashes (/), question marks (?), or the pound sign (#)."
msgstr ""
#: backend/ipp.c:1436
msgid "Toner low."
msgstr ""
#: scheduler/ipp.c:1383
msgid "Too many active jobs."
msgstr ""
#: cgi-bin/admin.c:1587 cgi-bin/admin.c:1600 cgi-bin/admin.c:1624
msgid "Unable to access cupsd.conf file:"
msgstr ""
#: cgi-bin/admin.c:378
msgid "Unable to add RSS subscription:"
msgstr ""
#: cgi-bin/admin.c:645
msgid "Unable to add class:"
msgstr ""
#: scheduler/ipp.c:1427
#, c-format
msgid "Unable to add job for destination \"%s\"!"
msgstr ""
#: cgi-bin/admin.c:1202
msgid "Unable to add printer:"
msgstr ""
#: scheduler/ipp.c:1202
msgid "Unable to allocate memory for file types!"
msgstr ""
#: cgi-bin/admin.c:1298
msgid "Unable to cancel RSS subscription:"
msgstr ""
#: cgi-bin/admin.c:3339
msgid "Unable to change printer-is-shared attribute:"
msgstr ""
#: cgi-bin/admin.c:2423 cgi-bin/admin.c:2691
msgid "Unable to change printer:"
msgstr ""
#: cgi-bin/admin.c:1368 cgi-bin/admin.c:1431
msgid "Unable to change server settings:"
msgstr ""
#: cups/adminutil.c:733
#, c-format
msgid "Unable to copy 64-bit CUPS printer driver files (%d)!"
msgstr ""
#: cups/adminutil.c:698
#, c-format
msgid "Unable to copy 64-bit Windows printer driver files (%d)!"
msgstr ""
#: cups/adminutil.c:529
#, c-format
msgid "Unable to copy CUPS printer driver files (%d)!"
msgstr ""
#: scheduler/ipp.c:2516
#, c-format
msgid "Unable to copy PPD file - %s!"
msgstr ""
#: scheduler/ipp.c:2572
msgid "Unable to copy PPD file!"
msgstr ""
#: cups/adminutil.c:494
#, c-format
msgid "Unable to copy Windows 2000 printer driver files (%d)!"
msgstr ""
#: cups/adminutil.c:617
#, c-format
msgid "Unable to copy Windows 9x printer driver files (%d)!"
msgstr ""
#: scheduler/ipp.c:2491
#, c-format
msgid "Unable to copy interface script - %s!"
msgstr ""
#: cgi-bin/admin.c:1478 cgi-bin/admin.c:1490 cgi-bin/printers.c:214
msgid "Unable to create temporary file:"
msgstr ""
#: cgi-bin/admin.c:1778
msgid "Unable to delete class:"
msgstr ""
#: cgi-bin/admin.c:1863
msgid "Unable to delete printer:"
msgstr ""
#: cgi-bin/admin.c:1602
msgid "Unable to edit cupsd.conf files larger than 1MB!"
msgstr ""
#: cgi-bin/ipp-var.c:359
msgid "Unable to find destination for job!"
msgstr ""
#: cgi-bin/classes.c:350
msgid "Unable to get class list:"
msgstr ""
#: cgi-bin/classes.c:449
msgid "Unable to get class status:"
msgstr ""
#: cgi-bin/admin.c:1112
msgid "Unable to get list of printer drivers:"
msgstr ""
#: cgi-bin/admin.c:2547
msgid "Unable to get printer attributes:"
msgstr ""
#: cgi-bin/printers.c:514
msgid "Unable to get printer list:"
msgstr ""
#: cgi-bin/printers.c:624
msgid "Unable to get printer status:"
msgstr ""
#: cups/adminutil.c:572 cups/adminutil.c:776
#, c-format
msgid "Unable to install Windows 2000 printer driver files (%d)!"
msgstr ""
#: cups/adminutil.c:646
#, c-format
msgid "Unable to install Windows 9x printer driver files (%d)!"
msgstr ""
#: cgi-bin/admin.c:644
msgid "Unable to modify class:"
msgstr ""
#: cgi-bin/admin.c:1201
msgid "Unable to modify printer:"
msgstr ""
#: cgi-bin/ipp-var.c:489
msgid "Unable to move job"
msgstr ""
#: cgi-bin/ipp-var.c:491
msgid "Unable to move jobs"
msgstr ""
#: cups/ppd.c:308
msgid "Unable to open PPD file"
msgstr ""
#: cgi-bin/admin.c:2790
msgid "Unable to open PPD file:"
msgstr ""
#: cgi-bin/admin.c:2266
msgid "Unable to open cupsd.conf file:"
msgstr ""
#: cgi-bin/ipp-var.c:600
msgid "Unable to print test page:"
msgstr ""
#: cups/adminutil.c:2097
#, c-format
msgid "Unable to run \"%s\": %s\n"
msgstr ""
#: cgi-bin/printers.c:287
msgid "Unable to send maintenance job:"
msgstr ""
#: cups/adminutil.c:825
#, c-format
msgid "Unable to set Windows printer driver (%d)!"
msgstr ""
#: cgi-bin/admin.c:3240
msgid "Unable to set options:"
msgstr ""
#: cgi-bin/admin.c:1540
msgid "Unable to upload cupsd.conf file:"
msgstr ""
#: cups/ppd.c:332
msgid "Unknown"
msgstr ""
#: backend/ipp.c:1481
#, c-format
msgid "Unknown printer error (%s)!"
msgstr ""
#: scheduler/ipp.c:9342
#, c-format
msgid "Unknown printer-error-policy \"%s\"."
msgstr ""
#: scheduler/ipp.c:9327
#, c-format
msgid "Unknown printer-op-policy \"%s\"."
msgstr ""
#: scheduler/ipp.c:7280 scheduler/ipp.c:8456
#, c-format
msgid "Unsupported compression \"%s\"!"
msgstr ""
#: scheduler/ipp.c:9747
#, c-format
msgid "Unsupported compression attribute %s!"
msgstr ""
#: scheduler/ipp.c:9775
#, c-format
msgid "Unsupported format \"%s\"!"
msgstr ""
#: scheduler/ipp.c:1315 scheduler/ipp.c:8588
#, c-format
msgid "Unsupported format '%s'!"
msgstr ""
#: scheduler/ipp.c:7411 scheduler/ipp.c:8571
#, c-format
msgid "Unsupported format '%s/%s'!"
msgstr ""
#: systemv/lpadmin.c:805
msgid ""
"Usage:\n"
"\n"
" lpadmin [-h server] -d destination\n"
" lpadmin [-h server] -x destination\n"
" lpadmin [-h server] -p printer [-c add-class] [-i interface] [-m model]\n"
" [-r remove-class] [-v device] [-D description]\n"
" [-P ppd-file] [-o name=value]\n"
" [-u allow:user,user] [-u deny:user,user]\n"
"\n"
msgstr ""
#: backend/ipp.c:201 backend/lpd.c:189 backend/parallel.c:125
#: backend/scsi.c:156 backend/serial.c:164 backend/socket.c:125
#: backend/usb.c:187 filter/hpgl-main.c:148 filter/imagetops.c:115
#: filter/imagetoraster.c:208 filter/pstops.c:235 filter/rastertoepson.c:1024
#: filter/rastertohp.c:757 filter/rastertolabel.c:1171 filter/textcommon.c:518
#, c-format
msgid "Usage: %s job-id user title copies options [file]\n"
msgstr ""
#: filter/gziptoany.c:53
#, c-format
msgid "Usage: %s job-id user title copies options file\n"
msgstr ""
#: scheduler/cupsfilter.c:964
msgid ""
"Usage: convert [ options ]\n"
"\n"
"Options:\n"
"\n"
" -f filename Set file to be converted (otherwise stdin)\n"
" -o filename Set file to be generated (otherwise stdout)\n"
" -i mime/type Set input MIME type (otherwise auto-typed)\n"
" -j mime/type Set output MIME type (otherwise application/pdf)\n"
" -P filename.ppd Set PPD file\n"
" -a 'name=value ...' Set option(s)\n"
" -U username Set username for job\n"
" -J title Set title\n"
" -c copies Set number of copies\n"
" -u Remove the PPD file when finished\n"
" -D Remove the input file when finished\n"
msgstr ""
#: systemv/cupsaddsmb.c:276
msgid ""
"Usage: cupsaddsmb [options] printer1 ... printerN\n"
" cupsaddsmb [options] -a\n"
"\n"
"Options:\n"
" -E Encrypt the connection to the server\n"
" -H samba-server Use the named SAMBA server\n"
" -U samba-user Authenticate using the named SAMBA user\n"
" -a Export all printers\n"
" -h cups-server Use the named CUPS server\n"
" -v Be verbose (show commands)\n"
msgstr ""
#: systemv/cupsctl.c:195
msgid ""
"Usage: cupsctl [options] [param=value ... paramN=valueN]\n"
"\n"
"Options:\n"
"\n"
" -E Enable encryption\n"
" -U username Specify username\n"
" -h server[:port] Specify server address\n"
"\n"
" --[no-]debug-logging Turn debug logging on/off\n"
" --[no-]remote-admin Turn remote administration on/off\n"
" --[no-]remote-any Allow/prevent access from the Internet\n"
" --[no-]remote-printers Show/hide remote printers\n"
" --[no-]share-printers Turn printer sharing on/off\n"
" --[no-]user-cancel-any Allow/prevent users to cancel any job\n"
msgstr ""
#: scheduler/main.c:1806
msgid ""
"Usage: cupsd [-c config-file] [-f] [-F] [-h] [-l]\n"
"\n"
"-c config-file Load alternate configuration file\n"
"-f Run in the foreground\n"
"-F Run in the foreground but detach\n"
"-h Show this usage message\n"
"-l Run cupsd from launchd(8)\n"
msgstr ""
#: scheduler/cupsfilter.c:953
msgid ""
"Usage: cupsfilter -m mime/type [ options ] filename\n"
"\n"
"Options:\n"
"\n"
" -c cupsd.conf Set cupsd.conf file to use\n"
" -n copies Set number of copies\n"
" -o name=value Set option(s)\n"
" -p filename.ppd Set PPD file\n"
" -t title Set title\n"
msgstr ""
#: systemv/cupstestdsc.c:431
msgid ""
"Usage: cupstestdsc [options] filename.ps [... filename.ps]\n"
" cupstestdsc [options] -\n"
"\n"
"Options:\n"
"\n"
" -h Show program usage\n"
"\n"
" Note: this program only validates the DSC comments, not the PostScript itself.\n"
msgstr ""
#: systemv/cupstestppd.c:2409
msgid ""
"Usage: cupstestppd [options] filename1.ppd[.gz] [... filenameN.ppd[.gz]]\n"
" program | cupstestppd [options] -\n"
"\n"
"Options:\n"
"\n"
" -R root-directory Set alternate root\n"
" -W {all,none,constraints,defaults,filters,translations}\n"
" Issue warnings instead of errors\n"
" -q Run silently\n"
" -r Use 'relaxed' open mode\n"
" -v Be slightly verbose\n"
" -vv Be very verbose\n"
msgstr ""
#: systemv/lpmove.c:138
msgid "Usage: lpmove job/src dest\n"
msgstr ""
#: systemv/lpoptions.c:479
msgid ""
"Usage: lpoptions [-h server] [-E] -d printer\n"
" lpoptions [-h server] [-E] [-p printer] -l\n"
" lpoptions [-h server] [-E] -p printer -o option[=value] ...\n"
" lpoptions [-h server] [-E] -x printer\n"
msgstr ""
#: systemv/lppasswd.c:493
msgid "Usage: lppasswd [-g groupname]\n"
msgstr ""
#: systemv/lppasswd.c:496
msgid ""
"Usage: lppasswd [-g groupname] [username]\n"
" lppasswd [-g groupname] -a [username]\n"
" lppasswd [-g groupname] -x [username]\n"
msgstr ""
#: berkeley/lpq.c:663
msgid "Usage: lpq [-P dest] [-U username] [-h hostname[:port]] [-l] [+interval]\n"
msgstr ""
#: backend/snmp.c:317
msgid "Usage: snmp [host-or-ip-address]\n"
msgstr ""
#: backend/usb-darwin.c:1606
#, c-format
msgid "WARNING: Boolean expected for waiteof option \"%s\"\n"
msgstr ""
#: backend/usb-darwin.c:476
msgid "WARNING: Couldn't create read channel\n"
msgstr ""
#: backend/usb-darwin.c:459
msgid "WARNING: Couldn't create side channel\n"
msgstr ""
#: backend/pap.c:1283 backend/parallel.c:616 backend/serial.c:1250
#: backend/socket.c:441 backend/usb-unix.c:565
msgid "WARNING: Failed to read side-channel request!\n"
msgstr ""
#: filter/pstops.c:2145
#, c-format
msgid "WARNING: Option \"%s\" cannot be included via IncludeFeature!\n"
msgstr ""
#: backend/lpd.c:589
#, c-format
msgid "WARNING: Remote host did not respond with command status byte after %d seconds!\n"
msgstr ""
#: backend/lpd.c:982 backend/lpd.c:1111
#, c-format
msgid "WARNING: Remote host did not respond with control status byte after %d seconds!\n"
msgstr ""
#: backend/lpd.c:1067
#, c-format
msgid "WARNING: Remote host did not respond with data status byte after %d seconds!\n"
msgstr ""
#: backend/scsi-irix.c:205 backend/scsi-linux.c:224
#, c-format
msgid "WARNING: SCSI command timed out (%d); retrying...\n"
msgstr ""
#: filter/pstops.c:1026
msgid "WARNING: This document does not conform to the Adobe Document Structuring Conventions and may not print correctly!\n"
msgstr ""
#: filter/pstops.c:2152
#, c-format
msgid "WARNING: Unknown choice \"%s\" for option \"%s\"!\n"
msgstr ""
#: filter/pstops.c:2138
#, c-format
msgid "WARNING: Unknown option \"%s\"!\n"
msgstr ""
#: backend/serial.c:373
#, c-format
msgid "WARNING: Unsupported baud rate %s!\n"
msgstr ""
#: backend/ipp.c:534 backend/ipp.c:647 backend/lpd.c:820 backend/socket.c:302
#, c-format
msgid "WARNING: recoverable: Network host '%s' is busy; will retry in %d seconds...\n"
msgstr ""
#: cups/adminutil.c:800
msgid "Warning, no Windows 2000 printer drivers are installed!"
msgstr ""
#: cups/ppd.c:1860
msgid "Yes"
msgstr ""
#: scheduler/client.c:2284
#, c-format
msgid "You must access this page using the URL <A HREF=\"https://%s:%d%s\">https://%s:%d%s</A>."
msgstr ""
#: cups/notify.c:102
msgid "aborted"
msgstr ""
#: cups/notify.c:99
msgid "canceled"
msgstr ""
#: cups/notify.c:105
msgid "completed"
msgstr ""
#: scheduler/cupsfilter.c:300
msgid "convert: Use the -f option to specify a file to convert.\n"
msgstr ""
#: scheduler/ipp.c:5591
msgid "cups-deviced failed to execute."
msgstr ""
#: scheduler/ipp.c:6100 scheduler/ipp.c:6328
msgid "cups-driverd failed to execute."
msgstr ""
#: systemv/cupsaddsmb.c:226
#, c-format
msgid "cupsaddsmb: No PPD file for printer \"%s\" - %s\n"
msgstr ""
#: systemv/cupsctl.c:189
#, c-format
msgid "cupsctl: Unknown option \"%s\"!\n"
msgstr ""
#: systemv/cupsctl.c:191
#, c-format
msgid "cupsctl: Unknown option \"-%c\"!\n"
msgstr ""
#: scheduler/main.c:178
msgid "cupsd: Expected config filename after \"-c\" option!\n"
msgstr ""
#: scheduler/main.c:253
#, c-format
msgid "cupsd: Unknown argument \"%s\" - aborting!\n"
msgstr ""
#: scheduler/main.c:246
#, c-format
msgid "cupsd: Unknown option \"%c\" - aborting!\n"
msgstr ""
#: scheduler/main.c:233
msgid "cupsd: launchd(8) support not compiled in, running in normal mode.\n"
msgstr ""
#: scheduler/cupsfilter.c:308
msgid "cupsfilter: Only one filename can be specified!\n"
msgstr ""
#: systemv/cupstestppd.c:201
msgid "cupstestppd: The -q option is incompatible with the -v option.\n"
msgstr ""
#: systemv/cupstestppd.c:217
msgid "cupstestppd: The -v option is incompatible with the -q option.\n"
msgstr ""
#: systemv/lpstat.c:1351 systemv/lpstat.c:1354 systemv/lpstat.c:1357
#, c-format
msgid "device for %s/%s: %s\n"
msgstr ""
#: systemv/lpstat.c:1338 systemv/lpstat.c:1341 systemv/lpstat.c:1344
#, c-format
msgid "device for %s: %s\n"
msgstr ""
#: cups/notify.c:90
msgid "held"
msgstr ""
#: berkeley/lpc.c:214
msgid "help\t\tget help on commands\n"
msgstr ""
#: cups/notify.c:131
msgid "idle"
msgstr ""
#: scheduler/ipp.c:6950
msgid "job-printer-uri attribute missing!"
msgstr ""
#: systemv/lpadmin.c:141 systemv/lpadmin.c:453
msgid "lpadmin: Class name can only contain printable characters!\n"
msgstr ""
#: systemv/lpadmin.c:750
msgid "lpadmin: Expected PPD after '-P' option!\n"
msgstr ""
#: systemv/lpadmin.c:491
msgid "lpadmin: Expected allow/deny:userlist after '-u' option!\n"
msgstr ""
#: systemv/lpadmin.c:442
msgid "lpadmin: Expected class after '-r' option!\n"
msgstr ""
#: systemv/lpadmin.c:130
msgid "lpadmin: Expected class name after '-c' option!\n"
msgstr ""
#: systemv/lpadmin.c:643
msgid "lpadmin: Expected description after '-D' option!\n"
msgstr ""
#: systemv/lpadmin.c:550
msgid "lpadmin: Expected device URI after '-v' option!\n"
msgstr ""
#: systemv/lpadmin.c:659
msgid "lpadmin: Expected file type(s) after '-I' option!\n"
msgstr ""
#: systemv/lpadmin.c:212
msgid "lpadmin: Expected hostname after '-h' option!\n"
msgstr ""
#: systemv/lpadmin.c:257
msgid "lpadmin: Expected interface after '-i' option!\n"
msgstr ""
#: systemv/lpadmin.c:704
msgid "lpadmin: Expected location after '-L' option!\n"
msgstr ""
#: systemv/lpadmin.c:338
msgid "lpadmin: Expected model after '-m' option!\n"
msgstr ""
#: systemv/lpadmin.c:358
msgid "lpadmin: Expected name=value after '-o' option!\n"
msgstr ""
#: systemv/lpadmin.c:391
msgid "lpadmin: Expected printer after '-p' option!\n"
msgstr ""
#: systemv/lpadmin.c:174
msgid "lpadmin: Expected printer name after '-d' option!\n"
msgstr ""
#: systemv/lpadmin.c:584
msgid "lpadmin: Expected printer or class after '-x' option!\n"
msgstr ""
#: systemv/lpadmin.c:1127
msgid "lpadmin: No member names were seen!\n"
msgstr ""
#: systemv/lpadmin.c:893
#, c-format
msgid "lpadmin: Printer %s is already a member of class %s.\n"
msgstr ""
#: systemv/lpadmin.c:1141
#, c-format
msgid "lpadmin: Printer %s is not a member of class %s.\n"
msgstr ""
#: systemv/lpadmin.c:185 systemv/lpadmin.c:402 systemv/lpadmin.c:595
msgid "lpadmin: Printer name can only contain printable characters!\n"
msgstr ""
#: systemv/lpadmin.c:115
msgid ""
"lpadmin: Unable to add a printer to the class:\n"
" You must specify a printer name first!\n"
msgstr ""
#: systemv/lpadmin.c:106 systemv/lpadmin.c:159 systemv/lpadmin.c:230
#: systemv/lpadmin.c:291 systemv/lpadmin.c:310 systemv/lpadmin.c:376
#: systemv/lpadmin.c:417 systemv/lpadmin.c:523 systemv/lpadmin.c:569
#: systemv/lpadmin.c:615 systemv/lpadmin.c:677 systemv/lpadmin.c:723
#: systemv/lpadmin.c:784
#, c-format
msgid "lpadmin: Unable to connect to server: %s\n"
msgstr ""
#: systemv/lpadmin.c:1843
#, c-format
msgid "lpadmin: Unable to create temporary file - %s\n"
msgstr ""
#: systemv/lpadmin.c:1452
#, c-format
msgid "lpadmin: Unable to create temporary file: %s\n"
msgstr ""
#: systemv/lpadmin.c:1853
#, c-format
msgid "lpadmin: Unable to open PPD file \"%s\" - %s\n"
msgstr ""
#: systemv/lpadmin.c:1460
#, c-format
msgid "lpadmin: Unable to open file \"%s\": %s\n"
msgstr ""
#: systemv/lpadmin.c:426
msgid ""
"lpadmin: Unable to remove a printer from the class:\n"
" You must specify a printer name first!\n"
msgstr ""
#: systemv/lpadmin.c:732
msgid ""
"lpadmin: Unable to set the PPD file:\n"
" You must specify a printer name first!\n"
msgstr ""
#: systemv/lpadmin.c:532
msgid ""
"lpadmin: Unable to set the device URI:\n"
" You must specify a printer name first!\n"
msgstr ""
#: systemv/lpadmin.c:319
msgid ""
"lpadmin: Unable to set the interface script or PPD file:\n"
" You must specify a printer name first!\n"
msgstr ""
#: systemv/lpadmin.c:239
msgid ""
"lpadmin: Unable to set the interface script:\n"
" You must specify a printer name first!\n"
msgstr ""
#: systemv/lpadmin.c:624
msgid ""
"lpadmin: Unable to set the printer description:\n"
" You must specify a printer name first!\n"
msgstr ""
#: systemv/lpadmin.c:686
msgid ""
"lpadmin: Unable to set the printer location:\n"
" You must specify a printer name first!\n"
msgstr ""
#: systemv/lpadmin.c:793
msgid ""
"lpadmin: Unable to set the printer options:\n"
" You must specify a printer name first!\n"
msgstr ""
#: systemv/lpadmin.c:508
#, c-format
msgid "lpadmin: Unknown allow/deny option \"%s\"!\n"
msgstr ""
#: systemv/lpadmin.c:766
#, c-format
msgid "lpadmin: Unknown argument '%s'!\n"
msgstr ""
#: systemv/lpadmin.c:761
#, c-format
msgid "lpadmin: Unknown option '%c'!\n"
msgstr ""
#: systemv/lpadmin.c:665
msgid "lpadmin: Warning - content type list ignored!\n"
msgstr ""
#: berkeley/lpc.c:81 berkeley/lpc.c:109 berkeley/lpc.c:145
msgid "lpc> "
msgstr ""
#: systemv/lpinfo.c:91 systemv/lpinfo.c:110
#, c-format
msgid "lpinfo: Unable to connect to server: %s\n"
msgstr ""
#: systemv/lpinfo.c:151
#, c-format
msgid "lpinfo: Unknown argument '%s'!\n"
msgstr ""
#: systemv/lpinfo.c:145
#, c-format
msgid "lpinfo: Unknown option '%c'!\n"
msgstr ""
#: systemv/lpmove.c:149
#, c-format
msgid "lpmove: Unable to connect to server: %s\n"
msgstr ""
#: systemv/lpmove.c:131
#, c-format
msgid "lpmove: Unknown argument '%s'!\n"
msgstr ""
#: systemv/lpmove.c:112
#, c-format
msgid "lpmove: Unknown option '%c'!\n"
msgstr ""
#: systemv/lpoptions.c:152 systemv/lpoptions.c:170 systemv/lpoptions.c:246
msgid "lpoptions: No printers!?!\n"
msgstr ""
#: systemv/lpoptions.c:221
#, c-format
msgid "lpoptions: Unable to add printer or instance: %s\n"
msgstr ""
#: systemv/lpoptions.c:446
#, c-format
msgid "lpoptions: Unable to get PPD file for %s: %s\n"
msgstr ""
#: systemv/lpoptions.c:455
#, c-format
msgid "lpoptions: Unable to open PPD file for %s!\n"
msgstr ""
#: systemv/lpoptions.c:102
msgid "lpoptions: Unknown printer or class!\n"
msgstr ""
#: systemv/lppasswd.c:185
msgid "lppasswd: Only root can add or delete passwords!\n"
msgstr ""
#: systemv/lppasswd.c:314
msgid "lppasswd: Password file busy!\n"
msgstr ""
#: systemv/lppasswd.c:447
msgid "lppasswd: Password file not updated!\n"
msgstr ""
#: systemv/lppasswd.c:414
msgid "lppasswd: Sorry, password doesn't match!\n"
msgstr ""
#: systemv/lppasswd.c:264
msgid ""
"lppasswd: Sorry, password rejected.\n"
"Your password must be at least 6 characters long, cannot contain\n"
"your username, and must contain at least one letter and number.\n"
msgstr ""
#: systemv/lppasswd.c:240
msgid "lppasswd: Sorry, passwords don't match!\n"
msgstr ""
#: systemv/lppasswd.c:211 systemv/lppasswd.c:229
#, c-format
msgid "lppasswd: Unable to copy password string: %s\n"
msgstr ""
#: systemv/lppasswd.c:317 systemv/lppasswd.c:326 systemv/lppasswd.c:344
#, c-format
msgid "lppasswd: Unable to open password file: %s\n"
msgstr ""
#: systemv/lppasswd.c:379 systemv/lppasswd.c:392 systemv/lppasswd.c:424
#, c-format
msgid "lppasswd: Unable to write to password file: %s\n"
msgstr ""
#: systemv/lppasswd.c:462
#, c-format
msgid "lppasswd: failed to backup old password file: %s\n"
msgstr ""
#: systemv/lppasswd.c:475
#, c-format
msgid "lppasswd: failed to rename password file: %s\n"
msgstr ""
#: systemv/lppasswd.c:404
#, c-format
msgid "lppasswd: user \"%s\" and group \"%s\" do not exist.\n"
msgstr ""
#: berkeley/lprm.c:74 berkeley/lprm.c:170
msgid "lprm: Unable to contact server!\n"
msgstr ""
#: systemv/lpstat.c:1104
#, c-format
msgid "lpstat: error - %s environment variable names non-existent destination \"%s\"!\n"
msgstr ""
#: systemv/lpstat.c:1033
#, c-format
msgid "members of class %s:\n"
msgstr ""
#: berkeley/lpq.c:575
msgid "no entries\n"
msgstr ""
#: systemv/lpstat.c:1108
msgid "no system default destination\n"
msgstr ""
#: scheduler/ipp.c:5324
msgid "notify-events not specified!"
msgstr ""
#: scheduler/ipp.c:5229
#, c-format
msgid "notify-recipient-uri URI \"%s\" uses unknown scheme!"
msgstr ""
#: scheduler/ipp.c:3285 scheduler/ipp.c:5948 scheduler/ipp.c:6571
#: scheduler/ipp.c:7925
#, c-format
msgid "notify-subscription-id %d no good!"
msgstr ""
#: cups/adminutil.c:922
#, c-format
msgid "open of %s failed: %s"
msgstr ""
#: cups/notify.c:87
msgid "pending"
msgstr ""
#: systemv/lpstat.c:2024
#, c-format
msgid "printer %s disabled since %s -\n"
msgstr ""
#: systemv/lpstat.c:2013
#, c-format
msgid "printer %s is idle. enabled since %s\n"
msgstr ""
#: systemv/lpstat.c:2018
#, c-format
msgid "printer %s now printing %s-%d. enabled since %s\n"
msgstr ""
#: systemv/lpstat.c:2136
#, c-format
msgid "printer %s/%s disabled since %s -\n"
msgstr ""
#: systemv/lpstat.c:2122
#, c-format
msgid "printer %s/%s is idle. enabled since %s\n"
msgstr ""
#: systemv/lpstat.c:2129
#, c-format
msgid "printer %s/%s now printing %s-%d. enabled since %s\n"
msgstr ""
#: cups/notify.c:93 cups/notify.c:134
msgid "processing"
msgstr ""
#: systemv/lp.c:722
#, c-format
msgid "request id is %s-%d (%d file(s))\n"
msgstr ""
#: systemv/lpstat.c:2256
msgid "scheduler is not running\n"
msgstr ""
#: systemv/lpstat.c:2254
msgid "scheduler is running\n"
msgstr ""
#: cups/adminutil.c:2168
#, c-format
msgid "stat of %s failed: %s"
msgstr ""
#: berkeley/lpc.c:216
msgid "status\t\tshow status of daemon and queue\n"
msgstr ""
#: cups/notify.c:96 cups/notify.c:137
msgid "stopped"
msgstr ""
#: systemv/lpstat.c:1082
#, c-format
msgid "system default destination: %s\n"
msgstr ""
#: systemv/lpstat.c:1079
#, c-format
msgid "system default destination: %s/%s\n"
msgstr ""
#: cups/notify.c:108 cups/notify.c:140
msgid "unknown"
msgstr ""
#: cups/notify.c:117
msgid "untitled"
msgstr ""
#
# End of "$Id$".
#
|