1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687
|
*PPD-Adobe: "4.3"
*%%%% PPD file for Lexmark X790 Series with CUPS.
*%%%% Created by the CUPS PPD Compiler CUPS v1.4.2.
*% ******************************************************************************
*% * Adobe PostScript(R) Printer Description File *
*% * Produced by Lexmark International, Inc. *
*% * *
*% * *
*% * *
*% * Copyright 2010 Lexmark International, Inc. All Rights Reserved. *
*% ******************************************************************************
*%******************************************************************************
*% License
*%******************************************************************************
*%
*%Redistribution of this file, with or without modification, is permitted
*%provided that the following conditions are met:
*%
*% Redistributions of this file must reproduce the above copyright notice,
*% this list of conditions and the following disclaimer in the file and
*% documentation and/or other materials provided with the distribution.
*%
*% Neither the name of Lexmark International, Inc. nor the names of its
*% contributors may be used to endorse or promote products derived
*% from this file without specific prior written permission.
*%
*%THIS FILE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
*%ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
*%WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
*%DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
*%FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
*%DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
*%SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
*%CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
*%OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
*%OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*%
*%******************************************************************************
*% General Information
*%******************************************************************************
*FormatVersion: "4.3"
*FileVersion: "1.0.0"
*LanguageVersion: English
*LanguageEncoding: ISOLatin1
*PCFileName: "LXX790S.PPD"
*Product: "(Lexmark X790 Series)"
*Product: "(Lexmark X792)"
*Manufacturer: "Lexmark"
*ModelName: "Lexmark X790 Series"
*ShortNickName: "Lexmark X790 Series"
*NickName: "Lexmark X790 Series"
*PSVersion: "(3010.010) 20040929"
*LanguageLevel: "3"
*ColorDevice: True
*DefaultColorSpace: CMYK
*FileSystem: True
*Throughput: "36"
*LandscapeOrientation: Minus90
*TTRasterizer: Type42
*% Driver-defined attributes...
*?TTRasterizer: ""
*LXCountPIN: "4"
*LXlowPINchar: "0"
*LXhiPINchar: "9"
*LexJobNameUTF8: ""
*FreeVM: "252000000"
*VMOption 256Meg: "252000000"
*VMOption 320Meg: "312000000"
*VMOption 384Meg: "376000000"
*VMOption 512Meg: "512000000"
*VMOption 576Meg: "576000000"
*VMOption 640Meg: "640000000"
*VMOption 768Meg: "768000000"
*VMOption 1024Meg: "1024000000"
*Protocols: TBCP
*?FileSystem: ""
*Password: "0"
*ExitServer: "
count 0 eq % is the password on the stack?
{ true }
{ dup % potential password
statusdict /checkpassword get exec not
} ifelse
{ % if no password or not valid
(WARNING : Cannot perform the exitserver command.) =
(Password supplied is not valid.) =
(Please contact the author of this software.) = flush
quit
} if
serverdict /exitserver get exec"
*End
*Reset: "
count 0 eq % is the password on the stack?
{ true }
{ dup % potential password
statusdict /checkpassword get exec not
} ifelse
{ % if no password or not valid
(WARNING : Cannot reset printer.) =
(Password supplied is not valid.) =
(Please contact the author of this software.) = flush
quit
} if
serverdict /exitserver get exec
systemdict /quit get exec
(WARNING : Printer Reset Failed.) = flush"
*End
*JobPatchFile 1: "%%Lexmark Linux PPD File 1"
*JCLBegin: "<1B>%-12345X@PJL JOB<0A>"
*JCLToPSInterpreter: "@PJL ENTER LANGUAGE = POSTSCRIPT<0A>"
*JCLEnd: "<1B>%-12345X<0A>"
*OIDOptDuplex: ".1.3.6.1.2.1.43.13.4.1.10.1.2"
*OIDOptDuplex InstalledM: "Duplex Paper Path"
*OIDOptDuplex NotInstalledM: ".*"
*DefaultOutputOrder: Normal
*ScreenFreq: "154.0"
*ScreenAngle: "50.0"
*DefaultScreenProc: Dot
*ScreenProc Dot: "{abs exch abs 2 copy add 1 gt {1 sub dup mul exch 1 sub dup mul add 1
sub }{dup mul exch dup mul add 1 exch sub }ifelse }"
*End
*ScreenProc Line: "{ pop }"
*ScreenProc Ellipse: "{ dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub }"
*DefaultTransfer: Factory
*Transfer Factory: "{}"
*Transfer Factory.Inverse: "{1 exch sub }"
*Message: "%% exitserver: permanent state may be changed %%"
*Message: "%% Flushing: rest of job (to end-of-file) will be ignored %%"
*Message: "FontName not found, using Courier"
*Status: "Printer Busy"
*Status: "Warming Up"
*Status: "idle"
*Status: "busy"
*Status: "waiting"
*Status: "initializing"
*Status: "not ready"
*Source: "Serial"
*Source: "Parallel"
*Source: "Network"
*PrinterError: "Paper Jam"
*PrinterError: "Wrong Paper Length"
*PrinterError: "Invalid Manual Insertion"
*PrinterError: "Change Size in Feeder"
*PrinterError: "Change Size in Tray 1"
*PrinterError: "Change Size in Tray 2"
*PrinterError: "Paper Out or Feed Failure - Feeder"
*PrinterError: "Paper Out or Feed Failure - Tray 1"
*PrinterError: "Paper Out or Feed Failure - Tray 2"
*PrinterError: "Cover Open/Cartridge Not Installed"
*PrinterError: "Complex Page"
*PrinterError: "Default Storage Error"
*PrinterError: "Defective Font Card Installed"
*PrinterError: "Flash Full"
*PrinterError: "ioerror"
*PrinterError: "Flash Error"
*PrinterError: "Scheduled Maintenance"
*PrinterError: "Toner Low"
*PrinterError: "Service Error"
*PrinterError: "Not Ready"
*DefaultColorSep: ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi
*InkName: ProcessBlack/Process Black
*InkName: CustomColor/Custom Color
*InkName: ProcessCyan/Process Cyan
*InkName: ProcessMagenta/Process Magenta
*InkName: ProcessYellow/Process Yellow
*ColorSepScreenAngle ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: "50.0"
*ColorSepScreenAngle CustomColor.154lpi.600dpi/154 lpi / 600 dpi: "50.0"
*ColorSepScreenAngle ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: "16.0"
*ColorSepScreenAngle ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: "76.0"
*ColorSepScreenAngle ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: "0.0"
*ColorSepScreenFreq ProcessBlack.154lpi.600dpi/154 lpi / 600 dpi: "154.0"
*ColorSepScreenFreq CustomColor.154lpi.600dpi/154 lpi / 600 dpi: "154.0"
*ColorSepScreenFreq ProcessCyan.154lpi.600dpi/154 lpi / 600 dpi: "154.0"
*ColorSepScreenFreq ProcessMagenta.154lpi.600dpi/154 lpi / 600 dpi: "154.0"
*ColorSepScreenFreq ProcessYellow.154lpi.600dpi/154 lpi / 600 dpi: "150.0"
*ColorSepScreenAngle ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: "50.0"
*ColorSepScreenAngle CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: "50.0"
*ColorSepScreenAngle ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: "16.0"
*ColorSepScreenAngle ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: "76.0"
*ColorSepScreenAngle ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: "0.0"
*ColorSepScreenFreq ProcessBlack.154lpi.1200dpi/154 lpi / 1200 dpi: "154.0"
*ColorSepScreenFreq CustomColor.154lpi.1200dpi/154 lpi / 1200 dpi: "154.0"
*ColorSepScreenFreq ProcessCyan.154lpi.1200dpi/154 lpi / 1200 dpi: "154.0"
*ColorSepScreenFreq ProcessMagenta.154lpi.1200dpi/154 lpi / 1200 dpi: "154."
*ColorSepScreenFreq ProcessYellow.154lpi.1200dpi/154 lpi / 1200 dpi: "150.0"
*RequiresPageRegion All: True
*cupsUIConstraints: "*MediaType Transparency *OutputFinisher StandardFinisher *OutputBin Bin1"
*cupsUIConstraints: "*MediaType Labels *OutputFinisher StandardFinisher *OutputBin Bin1"
*cupsUIConstraints: "*MediaType Vinyl *OutputFinisher StandardFinisher *OutputBin Bin1"
*1284DeviceID: "MFG: Lexmark ;MDL: Lexmark X790 Series"
*cupsCommands: "ReportLevels"
*PrinterType: "Laser"
*APICADriver: True
*cupsLanguages: "de es fr it pt ja ko zh_CN zh_TW"
*NonUIConstraints: *StapleJob TrueM *CustomPageSize True
*NonUIConstraints: *CustomPageSize True *StapleJob TrueM
*NonUIConstraints: *StapleJob TrueM *CustomPageRegion True
*NonUIConstraints: *CustomPageRegion True *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageSize A6
*UIConstraints: *PageSize A6 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageSize A5
*UIConstraints: *PageSize A5 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageSize Statement
*UIConstraints: *PageSize Statement *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageSize Executive
*UIConstraints: *PageSize Executive *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageSize B5
*UIConstraints: *PageSize B5 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion A6
*UIConstraints: *PageRegion A6 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion A5
*UIConstraints: *PageRegion A5 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion Statement
*UIConstraints: *PageRegion Statement *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion Executive
*UIConstraints: *PageRegion Executive *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *PageRegion B5
*UIConstraints: *PageRegion B5 *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *MediaType Transparency
*UIConstraints: *MediaType Transparency *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *MediaType Labels
*UIConstraints: *MediaType Labels *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *MediaType Vinyl
*UIConstraints: *MediaType Vinyl *StapleJob TrueM
*UIConstraints: *Offset Jobs *PageSize A6
*UIConstraints: *PageSize A6 *Offset Jobs
*UIConstraints: *Offset Jobs *PageRegion A6
*UIConstraints: *PageRegion A6 *Offset Jobs
*UIConstraints: *Offset Jobs *MediaType Transparency
*UIConstraints: *MediaType Transparency *Offset Jobs
*UIConstraints: *Offset Jobs *MediaType Labels
*UIConstraints: *MediaType Labels *Offset Jobs
*UIConstraints: *Offset Jobs *MediaType Vinyl
*UIConstraints: *MediaType Vinyl *Offset Jobs
*UIConstraints: *Offset Copies *PageSize A6
*UIConstraints: *PageSize A6 *Offset Copies
*UIConstraints: *Offset Copies *PageRegion A6
*UIConstraints: *PageRegion A6 *Offset Copies
*UIConstraints: *Offset Copies *MediaType Transparency
*UIConstraints: *MediaType Transparency *Offset Copies
*UIConstraints: *Offset Copies *MediaType Labels
*UIConstraints: *MediaType Labels *Offset Copies
*UIConstraints: *Offset Copies *MediaType Vinyl
*UIConstraints: *MediaType Vinyl *Offset Copies
*UIConstraints: *HolePunch 2Hole *PageSize A6
*UIConstraints: *PageSize A6 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *PageRegion A6
*UIConstraints: *PageRegion A6 *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *MediaType Transparency
*UIConstraints: *MediaType Transparency *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *MediaType Labels
*UIConstraints: *MediaType Labels *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *MediaType Vinyl
*UIConstraints: *MediaType Vinyl *HolePunch 2Hole
*UIConstraints: *HolePunch 3Hole *PageSize A6
*UIConstraints: *PageSize A6 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *PageRegion A6
*UIConstraints: *PageRegion A6 *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *MediaType Transparency
*UIConstraints: *MediaType Transparency *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *MediaType Labels
*UIConstraints: *MediaType Labels *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *MediaType Vinyl
*UIConstraints: *MediaType Vinyl *HolePunch 3Hole
*UIConstraints: *HolePunch 4Hole *PageSize A6
*UIConstraints: *PageSize A6 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *PageRegion A6
*UIConstraints: *PageRegion A6 *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *MediaType Transparency
*UIConstraints: *MediaType Transparency *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *MediaType Labels
*UIConstraints: *MediaType Labels *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *MediaType Vinyl
*UIConstraints: *MediaType Vinyl *HolePunch 4Hole
*UIConstraints: *OutputFinisher NotInstalledM *StapleJob TrueM
*UIConstraints: *StapleJob TrueM *OutputFinisher NotInstalledM
*UIConstraints: *OutputFinisher NotInstalledM *Offset Jobs
*UIConstraints: *Offset Jobs *OutputFinisher NotInstalledM
*UIConstraints: *OutputFinisher NotInstalledM *Offset Copies
*UIConstraints: *Offset Copies *OutputFinisher NotInstalledM
*UIConstraints: *OutputFinisher StandardFinisher *OptOutputBins StandardBin
*UIConstraints: *OptOutputBins StandardBin *OutputFinisher StandardFinisher
*UIConstraints: *OutputFinisher StandardFinisher *OptOutputBins OBin5
*UIConstraints: *OptOutputBins OBin5 *OutputFinisher StandardFinisher
*UIConstraints: *OptOutputBins StandardBin *OutputBin Bin1
*UIConstraints: *OutputBin Bin1 *OptOutputBins StandardBin
*UIConstraints: *OptOutputBins StandardBin *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *OptOutputBins StandardBin
*UIConstraints: *OptOutputBins StandardBin *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *OptOutputBins StandardBin
*UIConstraints: *OptOutputBins StandardBin *OutputBin Bin4
*UIConstraints: *OutputBin Bin4 *OptOutputBins StandardBin
*UIConstraints: *OptOutputBins StandardBin *OutputBin Bin5
*UIConstraints: *OutputBin Bin5 *OptOutputBins StandardBin
*UIConstraints: *OptOutputBins StandardBin *HolePunch 2Hole
*UIConstraints: *HolePunch 2Hole *OptOutputBins StandardBin
*UIConstraints: *OptOutputBins StandardBin *HolePunch 3Hole
*UIConstraints: *HolePunch 3Hole *OptOutputBins StandardBin
*UIConstraints: *OptOutputBins StandardBin *HolePunch 4Hole
*UIConstraints: *HolePunch 4Hole *OptOutputBins StandardBin
*UIConstraints: *OptOutputBins OBin1 *OutputBin Bin2
*UIConstraints: *OutputBin Bin2 *OptOutputBins OBin1
*UIConstraints: *OptOutputBins OBin1 *OutputBin Bin3
*UIConstraints: *OutputBin Bin3 *OptOutputBins OBin1
*UIConstraints: *OptOutputBins OBin1 *OutputBin Bin4
*UIConstraints: *OutputBin Bin4 *OptOutputBins OBin1
*UIConstraints: *OptOutputBins OBin1 *OutputBin Bin5
*UIConstraints: *OutputBin Bin5 *OptOutputBins OBin1
*UIConstraints: *OptDuplex NotInstalledM *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *OptDuplex NotInstalledM
*UIConstraints: *OptDuplex NotInstalledM *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *OptDuplex NotInstalledM
*UIConstraints: *Duplex DuplexNoTumble *PageSize A6
*UIConstraints: *PageSize A6 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *PageRegion A6
*UIConstraints: *PageRegion A6 *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType Transparency
*UIConstraints: *MediaType Transparency *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexNoTumble *MediaType Rough
*UIConstraints: *MediaType Rough *Duplex DuplexNoTumble
*UIConstraints: *Duplex DuplexTumble *PageSize A6
*UIConstraints: *PageSize A6 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *PageRegion A6
*UIConstraints: *PageRegion A6 *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *MediaType Transparency
*UIConstraints: *MediaType Transparency *Duplex DuplexTumble
*UIConstraints: *Duplex DuplexTumble *MediaType Rough
*UIConstraints: *MediaType Rough *Duplex DuplexTumble
*UIConstraints: *MediaColor Auto *ManualRGBImage Vivid
*UIConstraints: *ManualRGBImage Vivid *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBImage sRGBDisplay
*UIConstraints: *ManualRGBImage sRGBDisplay *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBImage sRGBVivid
*UIConstraints: *ManualRGBImage sRGBVivid *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBImage DisplayRealBlack
*UIConstraints: *ManualRGBImage DisplayRealBlack *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBText Vivid
*UIConstraints: *ManualRGBText Vivid *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBText sRGBDisplay
*UIConstraints: *ManualRGBText sRGBDisplay *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBText sRGBVivid
*UIConstraints: *ManualRGBText sRGBVivid *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBText DisplayRealBlack
*UIConstraints: *ManualRGBText DisplayRealBlack *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBGraphics Vivid
*UIConstraints: *ManualRGBGraphics Vivid *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBGraphics sRGBDisplay
*UIConstraints: *ManualRGBGraphics sRGBDisplay *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBGraphics sRGBVivid
*UIConstraints: *ManualRGBGraphics sRGBVivid *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualRGBGraphics DisplayRealBlack
*UIConstraints: *ManualRGBGraphics DisplayRealBlack *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualCMYK USCMYK
*UIConstraints: *ManualCMYK USCMYK *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualCMYK EuroCMYK
*UIConstraints: *ManualCMYK EuroCMYK *MediaColor Auto
*UIConstraints: *MediaColor Auto *ManualCMYK VividCMYK
*UIConstraints: *ManualCMYK VividCMYK *MediaColor Auto
*UIConstraints: *MediaColor FalseM *ManualRGBImage Vivid
*UIConstraints: *ManualRGBImage Vivid *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBImage sRGBDisplay
*UIConstraints: *ManualRGBImage sRGBDisplay *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBImage sRGBVivid
*UIConstraints: *ManualRGBImage sRGBVivid *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBImage DisplayRealBlack
*UIConstraints: *ManualRGBImage DisplayRealBlack *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBText Vivid
*UIConstraints: *ManualRGBText Vivid *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBText sRGBDisplay
*UIConstraints: *ManualRGBText sRGBDisplay *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBText sRGBVivid
*UIConstraints: *ManualRGBText sRGBVivid *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBText DisplayRealBlack
*UIConstraints: *ManualRGBText DisplayRealBlack *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics Vivid
*UIConstraints: *ManualRGBGraphics Vivid *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics sRGBDisplay
*UIConstraints: *ManualRGBGraphics sRGBDisplay *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics sRGBVivid
*UIConstraints: *ManualRGBGraphics sRGBVivid *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualRGBGraphics DisplayRealBlack
*UIConstraints: *ManualRGBGraphics DisplayRealBlack *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualCMYK USCMYK
*UIConstraints: *ManualCMYK USCMYK *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualCMYK EuroCMYK
*UIConstraints: *ManualCMYK EuroCMYK *MediaColor FalseM
*UIConstraints: *MediaColor FalseM *ManualCMYK VividCMYK
*UIConstraints: *ManualCMYK VividCMYK *MediaColor FalseM
*UIConstraints: *Trays Tray1 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *Trays Tray1
*UIConstraints: *Trays Tray1 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *Trays Tray1
*UIConstraints: *Trays Tray1 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *Trays Tray1
*UIConstraints: *Trays Tray12 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *Trays Tray12
*UIConstraints: *Trays Tray12 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *Trays Tray12
*UIConstraints: *Trays Tray123 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *Trays Tray123
*UIConstraints: *Trays Tray1 *SepSource Tray2
*UIConstraints: *SepSource Tray2 *Trays Tray1
*UIConstraints: *Trays Tray1 *SepSource Tray3
*UIConstraints: *SepSource Tray3 *Trays Tray1
*UIConstraints: *Trays Tray1 *SepSource Tray4
*UIConstraints: *SepSource Tray4 *Trays Tray1
*UIConstraints: *Trays Tray12 *SepSource Tray3
*UIConstraints: *SepSource Tray3 *Trays Tray12
*UIConstraints: *Trays Tray12 *SepSource Tray4
*UIConstraints: *SepSource Tray4 *Trays Tray12
*UIConstraints: *Trays Tray123 *SepSource Tray4
*UIConstraints: *SepSource Tray4 *Trays Tray123
*UIConstraints: *SepPages NoneF *SepSource Tray1
*UIConstraints: *SepSource Tray1 *SepPages NoneF
*UIConstraints: *SepPages NoneF *SepSource Tray2
*UIConstraints: *SepSource Tray2 *SepPages NoneF
*UIConstraints: *SepPages NoneF *SepSource Tray3
*UIConstraints: *SepSource Tray3 *SepPages NoneF
*UIConstraints: *SepPages NoneF *SepSource Tray4
*UIConstraints: *SepSource Tray4 *SepPages NoneF
*UIConstraints: *SepPages NoneF *SepSource MultipurposeFeeder
*UIConstraints: *SepSource MultipurposeFeeder *SepPages NoneF
*UIConstraints: *InputSlot Tray1 *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot Tray1
*UIConstraints: *InputSlot Tray1 *PageRegion A6
*UIConstraints: *PageRegion A6 *InputSlot Tray1
*UIConstraints: *InputSlot Tray2 *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot Tray2
*UIConstraints: *InputSlot Tray2 *PageRegion A6
*UIConstraints: *PageRegion A6 *InputSlot Tray2
*UIConstraints: *InputSlot Tray3 *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot Tray3
*UIConstraints: *InputSlot Tray3 *PageRegion A6
*UIConstraints: *PageRegion A6 *InputSlot Tray3
*UIConstraints: *InputSlot Tray4 *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot Tray4
*UIConstraints: *InputSlot Tray4 *PageRegion A6
*UIConstraints: *PageRegion A6 *InputSlot Tray4
*UIConstraints: *InputSlot ManualEnv *PageSize Letter
*UIConstraints: *PageSize Letter *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize Legal
*UIConstraints: *PageSize Legal *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize Oficio
*UIConstraints: *PageSize Oficio *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize B5
*UIConstraints: *PageSize B5 *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize A4
*UIConstraints: *PageSize A4 *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize Executive
*UIConstraints: *PageSize Executive *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize A6
*UIConstraints: *PageSize A6 *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize A5
*UIConstraints: *PageSize A5 *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize Folio
*UIConstraints: *PageSize Folio *InputSlot ManualEnv
*UIConstraints: *InputSlot ManualEnv *PageSize Statement
*UIConstraints: *PageSize Statement *InputSlot ManualEnv
*OpenUI *PageSize/Media Size: PickOne
*OrderDependency: 30 AnySetup *PageSize
*DefaultPageSize: Letter
*PageSize Letter/Letter: "
<< /Policies << /PageSize 2 >> /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*End
*PageSize Legal/Legal: "
<< /Policies << /PageSize 2 >> /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*End
*PageSize Oficio/Oficio (Mexico): "
<< /Policies << /PageSize 2 >> /PageSize [612 965] /ImagingBBox null >> setpagedevice"
*End
*PageSize B5/JIS B5: "
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
*End
*PageSize A4/A4: "
<< /Policies << /PageSize 2 >> /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*End
*PageSize Executive/Executive: "
<< /Policies << /PageSize 2 >> /PageSize [522 756] /ImagingBBox null >> setpagedevice"
*End
*PageSize A6/A6: "
<< /Policies << /PageSize 2 >> /PageSize [297 419] /ImagingBBox null >> setpagedevice"
*End
*PageSize A5/A5: "
<< /Policies << /PageSize 2 >> /PageSize [420 595] /ImagingBBox null >> setpagedevice"
*End
*PageSize Folio/Folio: "
<< /Policies << /PageSize 2 >> /PageSize [612 936] /ImagingBBox null >> setpagedevice"
*End
*PageSize Statement/Statement: "
<< /Policies << /PageSize 2 >> /PageSize [396 612] /ImagingBBox null >> setpagedevice"
*End
*PageSize Monarch/7 3/4 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [279 540] /ImagingBBox null >> setpagedevice"
*End
*PageSize C4/9 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [279 639] /ImagingBBox null >> setpagedevice"
*End
*PageSize Comm10/10 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [297 684] /ImagingBBox null >> setpagedevice"
*End
*PageSize DL/DL Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [312 624] /ImagingBBox null >> setpagedevice"
*End
*PageSize C5/C5 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [459 649] /ImagingBBox null >> setpagedevice"
*End
*PageSize ISOB5/B5 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [499 708] /ImagingBBox null >> setpagedevice"
*End
*PageSize OthEnv/Other Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [612 996] /ImagingBBox null >> setpagedevice"
*End
*CloseUI: *PageSize
*OpenUI *PageRegion/Media Size: PickOne
*OrderDependency: 35 AnySetup *PageRegion
*DefaultPageRegion: Letter
*PageRegion Letter/Letter: "
<</Policies <</PageSize 2>> /PageSize [612 792] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Legal/Legal: "
<</Policies <</PageSize 2>> /PageSize [612 1008] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Oficio/Oficio (Mexico): "
<</Policies <</PageSize 2>> /PageSize [612 965] /ImagingBBox null >> setpagedevice"
*End
*PageRegion B5/JIS B5: "
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
2 dict dup /PageSize [516 729] put dup /ImagingBBox null put setpagedevice"
*End
*PageRegion A4/A4: "
<</Policies <</PageSize 2>> /PageSize [595 842] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Executive/Executive: "
<</Policies <</PageSize 2>> /PageSize [522 756] /ImagingBBox null >> setpagedevice"
*End
*PageRegion A6/A6: "
<< /Policies << /PageSize 2 >> /PageSize [297 419] /ImagingBBox null >> setpagedevice"
*End
*PageRegion A5/A5: "
<</Policies <</PageSize 2>> /PageSize [420 595] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Folio/Folio: "
<< /Policies << /PageSize 2 >> /PageSize [612 936] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Statement/Statement: "
<< /Policies << /PageSize 2 >> /PageSize [396 612] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Monarch/7 3/4 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [279 540] /ImagingBBox null >> setpagedevice"
*End
*PageRegion C4/9 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [279 639] /ImagingBBox null >> setpagedevice"
*End
*PageRegion Comm10/10 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [297 684] /ImagingBBox null >> setpagedevice"
*End
*PageRegion DL/DL Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [312 624] /ImagingBBox null >> setpagedevice"
*End
*PageRegion C5/C5 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [459 649] /ImagingBBox null >> setpagedevice"
*End
*PageRegion ISOB5/B5 Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [499 708] /ImagingBBox null >> setpagedevice"
*End
*PageRegion OthEnv/Other Envelope: "
<< /Policies << /PageSize 2 >> /PageSize [612 996] /ImagingBBox null >> setpagedevice"
*End
*CloseUI: *PageRegion
*DefaultImageableArea: Letter
*ImageableArea Letter/Letter: "12 12 600 780"
*ImageableArea Legal/Legal: "12 12 600 996"
*ImageableArea Oficio/Oficio (Mexico): "12 12 600 953"
*ImageableArea B5/JIS B5: "12 12 505.999990463257 716.000014305115"
*ImageableArea A4/A4: "10 12 589 830"
*ImageableArea Executive/Executive: "12 12 510 744"
*ImageableArea A6/A6: "12 12 285 407"
*ImageableArea A5/A5: "12 12 408.000009536743 583.000002861023"
*ImageableArea Folio/Folio: "12 12 600 924"
*ImageableArea Statement/Statement: "12 12 384 600"
*ImageableArea Monarch/7 3/4 Envelope: "12 12 279 528"
*ImageableArea C4/9 Envelope: "12 12 279 627"
*ImageableArea Comm10/10 Envelope: "12 12 294 672"
*ImageableArea DL/DL Envelope: "12 12 310.000009775162 612.000019073486"
*ImageableArea C5/C5 Envelope: "12 12 455.999985456467 637.000002861023"
*ImageableArea ISOB5/B5 Envelope: "12 12 497.999991476536 695.999980926514"
*ImageableArea OthEnv/Other Envelope: "12 12 600 985"
*DefaultPaperDimension: Letter
*PaperDimension Letter/Letter: "612 792"
*PaperDimension Legal/Legal: "612 1008"
*PaperDimension Oficio/Oficio (Mexico): "612 965"
*PaperDimension B5/JIS B5: "516.239990234375 728.640014648438"
*PaperDimension A4/A4: "595 842"
*PaperDimension Executive/Executive: "522 756"
*PaperDimension A6/A6: "297 419"
*PaperDimension A5/A5: "419.760009765625 595.440002441406"
*PaperDimension Folio/Folio: "612 936"
*PaperDimension Statement/Statement: "396 612"
*PaperDimension Monarch/7 3/4 Envelope: "279 540"
*PaperDimension C4/9 Envelope: "279 639"
*PaperDimension Comm10/10 Envelope: "297 684"
*PaperDimension DL/DL Envelope: "311.760009765625 623.52001953125"
*PaperDimension C5/C5 Envelope: "459.359985351562 649.440002441406"
*PaperDimension ISOB5/B5 Envelope: "498.959991455078 708.47998046875"
*PaperDimension OthEnv/Other Envelope: "612 996"
*MaxMediaWidth: "612"
*MaxMediaHeight: "3456"
*HWMargins: 0 0 0 0
*CustomPageSize True: "pop pop pop <</PageSize[5 -2 roll]/ImagingBBox null>>setpagedevice"
*ParamCustomPageSize Width: 1 points 216 612
*ParamCustomPageSize Height: 2 points 216 3456
*ParamCustomPageSize WidthOffset: 3 points 0 0
*ParamCustomPageSize HeightOffset: 4 points 0 0
*ParamCustomPageSize Orientation: 5 int 0 0
*RequiresPageRegion All: True
*OpenUI *InputSlot/Media Source: PickOne
*OrderDependency: 20 AnySetup *InputSlot
*DefaultInputSlot: Tray1
*InputSlot Tray1/Tray 1: "
1 dict dup /MediaPosition null put setpagedevice
currentpagedevice /InputAttributes get 0 get setpagedevice
1 dict dup /InputAttributes 1 dict dup /Priority [0] put put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
<< /ManualFeed false >> setpagedevice"
*End
*InputSlot Tray2/Tray 2: "
1 dict dup /MediaPosition null put setpagedevice
userdict /lms
currentpagedevice /InputAttributes get 1 known { 1 }{ 0 }ifelse put
currentpagedevice /InputAttributes get lms get setpagedevice
1 dict dup /InputAttributes 1 dict dup /Priority [lms] put put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
<< /ManualFeed false >> setpagedevice"
*End
*InputSlot Tray3/Tray 3: "
1 dict dup /MediaPosition null put setpagedevice
userdict /lms
currentpagedevice /InputAttributes get 3 known { 3 }{ 0 }ifelse put
currentpagedevice /InputAttributes get lms get setpagedevice
1 dict dup /InputAttributes 1 dict dup /Priority [lms] put put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
<< /ManualFeed false >> setpagedevice"
*End
*InputSlot Tray4/Tray 4: "
1 dict dup /MediaPosition null put setpagedevice
userdict /lms
currentpagedevice /InputAttributes get 5 known { 5 }{ 0 }ifelse put
currentpagedevice /InputAttributes get lms get setpagedevice
1 dict dup /InputAttributes 1 dict dup /Priority [lms] put put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
<< /ManualFeed false >> setpagedevice"
*End
*InputSlot MultipurposeFeeder/Multipurpose Feeder: "
1 dict dup /MediaPosition null put setpagedevice
userdict /lms
currentpagedevice /InputAttributes get 4 known { 4 }{ 0 }ifelse put
currentpagedevice /InputAttributes get lms get setpagedevice
1 dict dup /InputAttributes 1 dict dup /Priority [lms] put put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice
<< /ManualFeed false >> setpagedevice"
*End
*InputSlot ManualPaper/Manual Paper: "
1 dict dup /MediaPosition null put setpagedevice
1 dict dup /ManualFeed true put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice"
*End
*InputSlot ManualEnv/Manual Envelope: "
1 dict dup /MediaPosition null put setpagedevice
1 dict dup /ManualFeed true put setpagedevice
1 dict dup /Policies 1 dict dup /PageSize 2 put put setpagedevice"
*End
*?InputSlot: "
gsave
[(Tray1) (Tray2) (ManualPaper) (ManualEnv) (Tray3) (MultipurposeFeeder) (Tray4)]
statusdict /papertray get exec {get exec} stopped {pop pop (Unknown)}
if
= flush
grestore"
*End
*CloseUI: *InputSlot
*OpenGroup: InstallableOptions/Installable Options
*OpenUI *OptOutputBins/Output Bins: PickOne
*OrderDependency: 0 AnySetup *OptOutputBins
*DefaultOptOutputBins: StandardBin
*OptOutputBins StandardBin/Standard Bin: ""
*OptOutputBins OBin1/1 Optional Bin: ""
*OptOutputBins OBin5/5 Optional Bins: ""
*?OptOutputBins: "
gsave
currentpagedevice /OutputAttributes get
5 -1 0 {
exch dup 3 -1 roll dup /count exch def get null eq {}{count exit} ifelse
} for
[(StandardBin)(OBin1)()()()(OBin5)()()()()()] exch get
= flush
grestore"
*End
*CloseUI: *OptOutputBins
*OpenUI *OptDuplex/Duplex: PickOne
*OrderDependency: 0 AnySetup *OptDuplex
*DefaultOptDuplex: InstalledM
*OptDuplex InstalledM/Installed: ""
*OptDuplex NotInstalledM/Not Installed: ""
*?OptDuplex: "
gsave
statusdict /duplexer get exec
true eq {(InstalledM)} {(NotInstalledM)} ifelse
= flush
grestore"
*End
*CloseUI: *OptDuplex
*OpenUI *OutputFinisher/Output Finisher: PickOne
*OrderDependency: 0 AnySetup *OutputFinisher
*DefaultOutputFinisher: NotInstalledM
*OutputFinisher NotInstalledM/Not Installed: ""
*OutputFinisher StandardFinisher/Standard Finisher: ""
*?OutputFinisher: "
gsave
currentpagedevice /OutputAttributes get
3 -1 0 {
exch dup 3 -1 roll dup /count exch def get null eq {}{count exit} ifelse
} for
[(NotInstalledM)(StandardFinisher)(StandardFinisher)(AdvancedFinisher)] exch get
= flush
grestore"
*End
*CloseUI: *OutputFinisher
*OpenUI *Trays/Trays: PickOne
*OrderDependency: 0 AnySetup *Trays
*DefaultTrays: Tray1
*Trays Tray1/Tray 1: ""
*Trays Tray12/Tray 1+2: ""
*Trays Tray123/Tray 1+2+3: ""
*Trays Tray1234/Tray 1+2+3+4: ""
*?Trays: "
gsave
currentpagedevice /InputAttributes get
dup 5 get null eq
{dup 3 get null eq
{dup 1 get null eq
{(Tray1)} {(Tray12)}
ifelse}
{(Tray123)}
ifelse}
{(Tray1234)}
ifelse
= flush
pop
grestore"
*End
*CloseUI: *Trays
*CloseGroup: InstallableOptions
*OpenGroup: Quality/Quality
*OpenUI *Resolution/Resolution: PickOne
*OrderDependency: 11 AnySetup *Resolution
*DefaultResolution: 2400x1200dpi
*Resolution 2400x1200dpi/4800 CQ: "<< /HWResolution [600 600] >> setpagedevice"
*Resolution 1200dpi/1200 dpi: "<< /HWResolution [1200 1200] >> setpagedevice"
*CloseUI: *Resolution
*OpenUI *TonerDarkness/Toner Darkness: PickOne
*OrderDependency: 16 AnySetup *TonerDarkness
*DefaultTonerDarkness: PrinterS
*TonerDarkness PrinterS/Printer Setting: ""
*TonerDarkness 1: "<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 1 >> >> setpagedevice"
*TonerDarkness 2: "<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 2 >> >> setpagedevice"
*TonerDarkness 3: "<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 3 >> >> setpagedevice"
*TonerDarkness 4: "<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 4 >> >> setpagedevice"
*TonerDarkness 5: "<< /DeviceRenderingInfo << /Type 106 /PrintDarkness 5 >> >> setpagedevice"
*?TonerDarkness: "
gsave
currentpagedevice /DeviceRenderingInfo get dup /TonerSaver get
true eq {/PrintDarkness get}{/PrintDarkness get 5 add} ifelse
= flush
grestore"
*End
*CloseUI: *TonerDarkness
*OpenUI *LexBrightness/Brightness: PickOne
*OrderDependency: 185 AnySetup *LexBrightness
*DefaultLexBrightness: PrinterS
*LexBrightness PrinterS/Printer Setting: ""
*LexBrightness -6/ -6: "<< /DeviceRenderingInfo << /ImageBrightness -6 >> >> setpagedevice"
*LexBrightness -5/ -5: "<< /DeviceRenderingInfo << /ImageBrightness -5 >> >> setpagedevice"
*LexBrightness -4/ -4: "<< /DeviceRenderingInfo << /ImageBrightness -4 >> >> setpagedevice"
*LexBrightness -3/ -3: "<< /DeviceRenderingInfo << /ImageBrightness -3 >> >> setpagedevice"
*LexBrightness -2/ -2: "<< /DeviceRenderingInfo << /ImageBrightness -2 >> >> setpagedevice"
*LexBrightness -1/ -1: "<< /DeviceRenderingInfo << /ImageBrightness -1 >> >> setpagedevice"
*LexBrightness 0/ 0: "<< /DeviceRenderingInfo << /ImageBrightness 0 >> >> setpagedevice"
*LexBrightness +1/ +1: "<< /DeviceRenderingInfo << /ImageBrightness 1 >> >> setpagedevice"
*LexBrightness +2/ +2: "<< /DeviceRenderingInfo << /ImageBrightness 2 >> >> setpagedevice"
*LexBrightness +3/ +3: "<< /DeviceRenderingInfo << /ImageBrightness 3 >> >> setpagedevice"
*LexBrightness +4/ +4: "<< /DeviceRenderingInfo << /ImageBrightness 4 >> >> setpagedevice"
*LexBrightness +5/ +5: "<< /DeviceRenderingInfo << /ImageBrightness 5 >> >> setpagedevice"
*LexBrightness +6/ +6: "<< /DeviceRenderingInfo << /ImageBrightness 6 >> >> setpagedevice"
*?LexBrightness: "
gsave
currentpagedevice /DeviceRenderingInfo get /ImageBrightness get
= flush
grestore"
*End
*CloseUI: *LexBrightness
*OpenUI *LexContrast/Contrast: PickOne
*OrderDependency: 190 AnySetup *LexContrast
*DefaultLexContrast: PrinterS
*LexContrast PrinterS/Printer Setting: ""
*LexContrast 0: "<< /DeviceRenderingInfo << /ImageContrast 0 >> >> setpagedevice"
*LexContrast 1: "<< /DeviceRenderingInfo << /ImageContrast 1 >> >> setpagedevice"
*LexContrast 2: "<< /DeviceRenderingInfo << /ImageContrast 2 >> >> setpagedevice"
*LexContrast 3: "<< /DeviceRenderingInfo << /ImageContrast 3 >> >> setpagedevice"
*LexContrast 4: "<< /DeviceRenderingInfo << /ImageContrast 4 >> >> setpagedevice"
*LexContrast 5: "<< /DeviceRenderingInfo << /ImageContrast 5 >> >> setpagedevice"
*?LexContrast: "
gsave
currentpagedevice /DeviceRenderingInfo get /ImageContrast get
= flush
grestore"
*End
*CloseUI: *LexContrast
*OpenUI *LexSaturation/Saturation: PickOne
*OrderDependency: 195 AnySetup *LexSaturation
*DefaultLexSaturation: PrinterS
*LexSaturation PrinterS/Printer Setting: ""
*LexSaturation 0: "<< /DeviceRenderingInfo << /ImageSaturation 0 >> >> setpagedevice"
*LexSaturation 1: "<< /DeviceRenderingInfo << /ImageSaturation 1 >> >> setpagedevice"
*LexSaturation 2: "<< /DeviceRenderingInfo << /ImageSaturation 2 >> >> setpagedevice"
*LexSaturation 3: "<< /DeviceRenderingInfo << /ImageSaturation 3 >> >> setpagedevice"
*LexSaturation 4: "<< /DeviceRenderingInfo << /ImageSaturation 4 >> >> setpagedevice"
*LexSaturation 5: "<< /DeviceRenderingInfo << /ImageSaturation 5 >> >> setpagedevice"
*?LexSaturation: "
gsave
currentpagedevice /DeviceRenderingInfo get /ImageSaturation get
= flush
grestore"
*End
*CloseUI: *LexSaturation
*OpenUI *LexLineDetail/Enhance Fine Lines: PickOne
*OrderDependency: 180 AnySetup *LexLineDetail
*DefaultLexLineDetail: PrinterS
*LexLineDetail PrinterS/Printer Setting: ""
*LexLineDetail FalseF/Off: "<< /DeviceRenderingInfo << /LineDetail /Off >> >> setpagedevice"
*LexLineDetail TrueF/On: "<< /DeviceRenderingInfo << /LineDetail /On >> >> setpagedevice"
*?LexLineDetail: "
gsave
2 dict
dup /On (TrueF) put
dup /Off (FalseF) put
currentpagedevice /DeviceRenderingInfo get /LineDetail get
= flush
grestore"
*End
*CloseUI: *LexLineDetail
*OpenUI *LexMirror/Mirror: Boolean
*OrderDependency: 500 AnySetup *LexMirror
*DefaultLexMirror: False
*LexMirror False/Off: ""
*LexMirror True/On: "<< /Install { currentpagedevice /PageSize get 0 get 0 translate -1 1 scale } >> setpagedevice"
*CloseUI: *LexMirror
*CloseGroup: Quality
*OpenGroup: Color/Color
*OpenUI *MediaColor/Color Correction: PickOne
*OrderDependency: 12 AnySetup *MediaColor
*DefaultMediaColor: PrinterS
*MediaColor PrinterS/Printer Setting: ""
*MediaColor Auto: "<< /DeviceRenderingInfo << /Type 106 /ColorCorrection /Automatic >> >> setpagedevice"
*MediaColor FalseM/Off: "<< /DeviceRenderingInfo << /Type 106 /ColorCorrection /Off >> >> setpagedevice"
*MediaColor Manual: "<< /DeviceRenderingInfo << /Type 106 /ColorCorrection /Manual >> >> setpagedevice"
*?MediaColor: "
gsave
3 dict
dup /Automatic (Auto) put
dup /Manual (Manual) put
dup /Off (FalseM) put
currentpagedevice /DeviceRenderingInfo get /ColorCorrection get
get = flush
grestore"
*End
*CloseUI: *MediaColor
*OpenUI *ColorSaver/ColorSaver: PickOne
*OrderDependency: 14 AnySetup *ColorSaver
*DefaultColorSaver: PrinterS
*ColorSaver PrinterS/Printer Setting: ""
*ColorSaver FalseM/Off: "<< /DeviceRenderingInfo << /ColorSaver /Off >> >> setpagedevice"
*ColorSaver TrueM/On: "<< /DeviceRenderingInfo << /ColorSaver /On >> >> setpagedevice"
*?ColorSaver: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorSaver get
(On) eq {(TrueM)}{(FalseM)} ifelse
= flush
grestore"
*End
*CloseUI: *ColorSaver
*OpenUI *BLW/Black & White: PickOne
*OrderDependency: 13 AnySetup *BLW
*DefaultBLW: PrinterS
*BLW PrinterS/Printer Setting: ""
*BLW FalseM/Off: "<< /ProcessColorModel /DeviceCMYK >> setpagedevice"
*BLW TrueM/On: "<< /ProcessColorModel /DeviceGray >> setpagedevice"
*?BLW: "
gsave
currentpagedevice /ProcessColorModel get /DeviceGray
(True) eq {(TrueM)}{(FalseM)} ifelse
= flush
grestore"
*End
*CloseUI: *BLW
*CloseGroup: Color
*OpenGroup: ColorBalance/Color Balance
*OpenUI *CyanBalance/Cyan Balance: PickOne
*OrderDependency: 71 AnySetup *CyanBalance
*DefaultCyanBalance: PrinterS
*CyanBalance PrinterS/Printer Setting: ""
*CyanBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceCyan -5 >> >> setpagedevice"
*CyanBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceCyan -4 >> >> setpagedevice"
*CyanBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceCyan -3 >> >> setpagedevice"
*CyanBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceCyan -2 >> >> setpagedevice"
*CyanBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceCyan -1 >> >> setpagedevice"
*CyanBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceCyan 0 >> >> setpagedevice"
*CyanBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceCyan 1 >> >> setpagedevice"
*CyanBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceCyan 2 >> >> setpagedevice"
*CyanBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceCyan 3 >> >> setpagedevice"
*CyanBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceCyan 4 >> >> setpagedevice"
*CyanBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceCyan 5 >> >> setpagedevice"
*?CyanBalance: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorBalanceCyan get = flush
grestore"
*End
*CloseUI: *CyanBalance
*OpenUI *MagentaBalance/Magenta Balance: PickOne
*OrderDependency: 72 AnySetup *MagentaBalance
*DefaultMagentaBalance: PrinterS
*MagentaBalance PrinterS/Printer Setting: ""
*MagentaBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -5 >> >> setpagedevice"
*MagentaBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -4 >> >> setpagedevice"
*MagentaBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -3 >> >> setpagedevice"
*MagentaBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -2 >> >> setpagedevice"
*MagentaBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceMagenta -1 >> >> setpagedevice"
*MagentaBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 0 >> >> setpagedevice"
*MagentaBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 1 >> >> setpagedevice"
*MagentaBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 2 >> >> setpagedevice"
*MagentaBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 3 >> >> setpagedevice"
*MagentaBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 4 >> >> setpagedevice"
*MagentaBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceMagenta 5 >> >> setpagedevice"
*?MagentaBalance: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorBalanceMagenta get = flush
grestore"
*End
*CloseUI: *MagentaBalance
*OpenUI *YellowBalance/Yellow Balance: PickOne
*OrderDependency: 73 AnySetup *YellowBalance
*DefaultYellowBalance: PrinterS
*YellowBalance PrinterS/Printer Setting: ""
*YellowBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceYellow -5 >> >> setpagedevice"
*YellowBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceYellow -4 >> >> setpagedevice"
*YellowBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceYellow -3 >> >> setpagedevice"
*YellowBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceYellow -2 >> >> setpagedevice"
*YellowBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceYellow -1 >> >> setpagedevice"
*YellowBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceYellow 0 >> >> setpagedevice"
*YellowBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceYellow 1 >> >> setpagedevice"
*YellowBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceYellow 2 >> >> setpagedevice"
*YellowBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceYellow 3 >> >> setpagedevice"
*YellowBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceYellow 4 >> >> setpagedevice"
*YellowBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceYellow 5 >> >> setpagedevice"
*?YellowBalance: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorBalanceYellow get = flush
grestore"
*End
*CloseUI: *YellowBalance
*OpenUI *BlackBalance/Black Balance: PickOne
*OrderDependency: 74 AnySetup *BlackBalance
*DefaultBlackBalance: PrinterS
*BlackBalance PrinterS/Printer Setting: ""
*BlackBalance -5/ -5: "<< /DeviceRenderingInfo << /ColorBalanceBlack -5 >> >> setpagedevice"
*BlackBalance -4/ -4: "<< /DeviceRenderingInfo << /ColorBalanceBlack -4 >> >> setpagedevice"
*BlackBalance -3/ -3: "<< /DeviceRenderingInfo << /ColorBalanceBlack -3 >> >> setpagedevice"
*BlackBalance -2/ -2: "<< /DeviceRenderingInfo << /ColorBalanceBlack -2 >> >> setpagedevice"
*BlackBalance -1/ -1: "<< /DeviceRenderingInfo << /ColorBalanceBlack -1 >> >> setpagedevice"
*BlackBalance 0/ 0: "<< /DeviceRenderingInfo << /ColorBalanceBlack 0 >> >> setpagedevice"
*BlackBalance +1/ +1: "<< /DeviceRenderingInfo << /ColorBalanceBlack 1 >> >> setpagedevice"
*BlackBalance +2/ +2: "<< /DeviceRenderingInfo << /ColorBalanceBlack 2 >> >> setpagedevice"
*BlackBalance +3/ +3: "<< /DeviceRenderingInfo << /ColorBalanceBlack 3 >> >> setpagedevice"
*BlackBalance +4/ +4: "<< /DeviceRenderingInfo << /ColorBalanceBlack 4 >> >> setpagedevice"
*BlackBalance +5/ +5: "<< /DeviceRenderingInfo << /ColorBalanceBlack 5 >> >> setpagedevice"
*?BlackBalance: "
gsave
currentpagedevice /DeviceRenderingInfo get /ColorBalanceBlack get = flush
grestore"
*End
*CloseUI: *BlackBalance
*CloseGroup: ColorBalance
*OpenGroup: ManualColor/Manual Color
*OpenUI *ManualRGBImage/Manual RGB Image: PickOne
*OrderDependency: 75 AnySetup *ManualRGBImage
*DefaultManualRGBImage: PrinterS
*ManualRGBImage PrinterS/Printer Setting: ""
*ManualRGBImage Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBImage /Vivid >> >> setpagedevice"
*ManualRGBImage sRGBDisplay/sRGB Display: "<< /DeviceRenderingInfo << /ManualColorRGBImage /sRGBDisplay >> >> setpagedevice"
*ManualRGBImage sRGBVivid/sRGB Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBImage /sRGBGraphics >> >> setpagedevice"
*ManualRGBImage DisplayRealBlack/Display<2d>True Black: "<< /DeviceRenderingInfo << /ManualColorRGBImage /DisplayRealBlack >> >> setpagedevice"
*ManualRGBImage Off: "<< /DeviceRenderingInfo << /ManualColorRGBImage /Off >> >> setpagedevice"
*?ManualRGBImage: "
gsave
5 dict
dup /Vivid (Vivid) put
dup /sRGBDisplay (sRGBDisplay) put
dup /sRGBGraphics (sRGBVivid) put
dup /DisplayRealBlack (DisplayRealBlack) put
dup /Off (Off) put
currentpagedevice /DeviceRenderingInfo get /ManualColorRGBImage get
{get} stopped {(PrinterS)} if
= flush
grestore"
*End
*CloseUI: *ManualRGBImage
*OpenUI *ManualRGBText/Manual RGB Text: PickOne
*OrderDependency: 76 AnySetup *ManualRGBText
*DefaultManualRGBText: PrinterS
*ManualRGBText PrinterS/Printer Setting: ""
*ManualRGBText Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBText /Vivid >> >> setpagedevice"
*ManualRGBText sRGBDisplay/sRGB Display: "<< /DeviceRenderingInfo << /ManualColorRGBText /sRGBDisplay >> >> setpagedevice"
*ManualRGBText sRGBVivid/sRGB Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBText /sRGBGraphics >> >> setpagedevice"
*ManualRGBText DisplayRealBlack/Display<2d>True Black: "<< /DeviceRenderingInfo << /ManualColorRGBText /DisplayRealBlack >> >> setpagedevice"
*ManualRGBText Off: "<< /DeviceRenderingInfo << /ManualColorRGBText /Off >> >> setpagedevice"
*?ManualRGBText: "
gsave
5 dict
dup /Vivid (Vivid) put
dup /sRGBDisplay (sRGBDisplay) put
dup /sRGBGraphics (sRGBVivid) put
dup /DisplayRealBlack (DisplayRealBlack) put
dup /Off (Off) put
currentpagedevice /DeviceRenderingInfo get /ManualColorRGBText get
{get} stopped {(PrinterS)} if
= flush
grestore"
*End
*CloseUI: *ManualRGBText
*OpenUI *ManualRGBGraphics/Manual RGB Graphics: PickOne
*OrderDependency: 77 AnySetup *ManualRGBGraphics
*DefaultManualRGBGraphics: PrinterS
*ManualRGBGraphics PrinterS/Printer Setting: ""
*ManualRGBGraphics Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /Vivid >> >> setpagedevice"
*ManualRGBGraphics sRGBDisplay/sRGB Display: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /sRGBDisplay >> >> setpagedevice"
*ManualRGBGraphics sRGBVivid/sRGB Vivid: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /sRGBGraphics >> >> setpagedevice"
*ManualRGBGraphics DisplayRealBlack/Display<2d>True Black: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /DisplayRealBlack >> >> setpagedevice"
*ManualRGBGraphics Off: "<< /DeviceRenderingInfo << /ManualColorRGBGraphics /Off >> >> setpagedevice"
*?ManualRGBGraphics: "
gsave
5 dict
dup /Vivid (Vivid) put
dup /sRGBDisplay (sRGBDisplay) put
dup /sRGBGraphics (sRGBVivid) put
dup /DisplayRealBlack (DisplayRealBlack) put
dup /Off (Off) put
currentpagedevice /DeviceRenderingInfo get /ManualColorRGBGraphics get
{get} stopped {(PrinterS)} if
= flush
grestore"
*End
*CloseUI: *ManualRGBGraphics
*OpenUI *ManualCMYK/Manual CMYK: PickOne
*OrderDependency: 78 AnySetup *ManualCMYK
*DefaultManualCMYK: PrinterS
*ManualCMYK PrinterS/Printer Setting: ""
*ManualCMYK USCMYK/US CMYK: "<< /DeviceRenderingInfo << /ManualColorCMYKImage /SWOP >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /SWOP >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /SWOP >> >> setpagedevice"
*End
*ManualCMYK EuroCMYK/Euro CMYK: "<< /DeviceRenderingInfo << /ManualColorCMYKImage /Euro >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /Euro >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /Euro >> >> setpagedevice"
*End
*ManualCMYK VividCMYK/Vivid CMYK: "<< /DeviceRenderingInfo << /ManualColorCMYKImage /VividCMYK >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /VividCMYK >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /VividCMYK >> >> setpagedevice"
*End
*ManualCMYK Off: "<< /DeviceRenderingInfo << /ManualColorCMYKImage /Off >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKText /Off >> >> setpagedevice
<< /DeviceRenderingInfo << /ManualColorCMYKGraphics /Off >> >> setpagedevice"
*End
*?ManualCMYK: "
gsave
4 dict
dup /SWOP (USCMYK) put
dup /Euro (EuroCMYK) put
dup /Off (off) put
dup /VividCMYK (VividCMYK) put
currentpagedevice /DeviceRenderingInfo get /ManualColorCMYKImage get
{get} stopped {(PrinterS)} if
= flush
grestore"
*End
*CloseUI: *ManualCMYK
*CloseGroup: ManualColor
*OpenGroup: Paper/Paper
*OpenUI *MediaType/Paper Type: PickOne
*OrderDependency: 40 AnySetup *MediaType
*DefaultMediaType: PrinterS
*MediaType PrinterS/Printer Setting: ""
*MediaType Plain/Plain Paper: "<< /MediaType (Plain) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Transparency: "<< /MediaType (Transparency) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Labels/Label (Paper): "<< /MediaType (Labels) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Vinyl/Label (Vinyl): "<< /MediaType (Vinyl Labels) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Bond: "<< /MediaType (Bond) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Envelope: "<< /MediaType (Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Letterhead: "<< /MediaType (Letterhead) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Preprint/Preprinted: "<< /MediaType (Preprinted) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Colored/Colored Paper: "<< /MediaType (Colored Paper) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Glossy: "<< /MediaType (Glossy Paper) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Light/Light paper: "<< /MediaType (Light) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Heavy/Heavy paper: "<< /MediaType (Heavy) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Card/Card stock/Extra heavy paper: "<< /MediaType (Card Stock) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Rough/Rough/Cotton: "<< /MediaType (Rough) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Recycled: "<< /MediaType (Recycled) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType HeavyGlossy/Heavy Glossy: "<< /MediaType (Heavy Glossy) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType RoughEnvelope/Rough Envelope: "<< /MediaType (Rough Envelope) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Custom1/Custom Type 1: "<< /MediaType (Custom Type 1) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Custom2/Custom Type 2: "<< /MediaType (Custom Type 2) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Custom3/Custom Type 3: "<< /MediaType (Custom Type 3) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Custom4/Custom Type 4: "<< /MediaType (Custom Type 4) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Custom5/Custom Type 5: "<< /MediaType (Custom Type 5) /Policies << /MediaType 2 >> >> setpagedevice"
*MediaType Custom6/Custom Type 6: "<< /MediaType (Custom Type 6) /Policies << /MediaType 2 >> >> setpagedevice"
*CloseUI: *MediaType
*OpenUI *OutputBin/Output Bin: PickOne
*OrderDependency: 56 AnySetup *OutputBin
*DefaultOutputBin: PrinterS
*OutputBin PrinterS/Printer Setting: ""
*OutputBin StandardBin/Standard Bin: "
<< /OutputAttributes << 0 << /OutputType (TOP OUTPUT BIN) >> >> >> setpagedevice
<< /OutputType (TOP OUTPUT BIN) >> setpagedevice"
*End
*OutputBin Bin1/Bin 1: "
<< /OutputAttributes << 1 << /OutputType (OPTIONAL OUTBIN 1) >> >> >> setpagedevice
<< /OutputType (OPTIONAL OUTBIN 1) >> setpagedevice"
*End
*OutputBin Bin2/Bin 2: "
<< /OutputAttributes << 2 << /OutputType (OPTIONAL OUTBIN 2) >> >> >> setpagedevice
<< /OutputType (OPTIONAL OUTBIN 2) >> setpagedevice"
*End
*OutputBin Bin3/Bin 3: "
<< /OutputAttributes << 3 << /OutputType (OPTIONAL OUTBIN 3) >> >> >> setpagedevice
<< /OutputType (OPTIONAL OUTBIN 3) >> setpagedevice"
*End
*OutputBin Bin4/Bin 4: "
<< /OutputAttributes << 4 << /OutputType (OPTIONAL OUTBIN 4) >> >> >> setpagedevice
<< /OutputType (OPTIONAL OUTBIN 4) >> setpagedevice"
*End
*OutputBin Bin5/Bin 5: "
<< /OutputAttributes << 5 << /OutputType (OPTIONAL OUTBIN 5) >> >> >> setpagedevice
<< /OutputType (OPTIONAL OUTBIN 5) >> setpagedevice"
*End
*CloseUI: *OutputBin
*OpenUI *LexBlankPage/Print Blank Pages: PickOne
*OrderDependency: 175 AnySetup *LexBlankPage
*DefaultLexBlankPage: PrinterS
*LexBlankPage PrinterS/Printer Setting: ""
*LexBlankPage False/Off: ""
*LexBlankPage True/On: ""
*CloseUI: *LexBlankPage
*CloseGroup: Paper
*OpenGroup: Finishing/Finishing
*OpenUI *Duplex/Duplex: PickOne
*OrderDependency: 0 AnySetup *Duplex
*DefaultDuplex: None
*Duplex None: "1 dict dup /Duplex false put setpagedevice"
*Duplex DuplexNoTumble/Duplex - Long Edge: "
statusdict /duplexer get exec
{ 2 dict dup /Duplex true put dup /Tumble false put setpagedevice}
{ 1 dict dup /Duplex false put setpagedevice}
ifelse"
*End
*Duplex DuplexTumble/Duplex - Short Edge: "
statusdict /duplexer get exec
{ 2 dict dup /Duplex true put dup /Tumble true put setpagedevice}
{ 1 dict dup /Duplex false put setpagedevice}
ifelse"
*End
*?Duplex: "
gsave
currentpagedevice /Duplex get
{
currentpagedevice /Tumble get
{(DuplexTumble)}{(DuplexNoTumble)} ifelse
}{(None)} ifelse
= flush
grestore"
*End
*CloseUI: *Duplex
*OpenUI *Collate/Collation: Boolean
*OrderDependency: 50 AnySetup *Collate
*DefaultCollate: True
*Collate False/Off: "<< /Collate false >> setpagedevice"
*Collate True/On: "<< /Collate true >> setpagedevice"
*?Collate: "
gsave
currentpagedevice /Collate get
{(True)}{(False)} ifelse
= flush
grestore"
*End
*CloseUI: *Collate
*OpenUI *SepPages/Separator Pages: PickOne
*OrderDependency: 51 AnySetup *SepPages
*DefaultSepPages: PrinterS
*SepPages PrinterS/Printer Setting: ""
*SepPages NoneF/None: "<< /SlipSheet 0 >> setpagedevice"
*SepPages Jobs/Between Jobs: "<< /SlipSheet 2 >> setpagedevice"
*SepPages Copies/Between Copies: "<< /SlipSheet 3 >> setpagedevice"
*SepPages Pages/Between Pages: "<< /SlipSheet 4 >> setpagedevice"
*?SepPages: "
gsave
currentpagedevice /SlipSheet get
dup dup
4 eq {(Pages)}{
3 eq {(Copies)}{
2 eq {(Jobs)}
{(NoneF)}ifelse
}ifelse
}ifelse
= flush
grestore"
*End
*CloseUI: *SepPages
*OpenUI *Offset/Offset Pages: PickOne
*OrderDependency: 60 AnySetup *Offset
*DefaultOffset: PrinterS
*Offset PrinterS/Printer Setting: ""
*Offset None: "<< /Jog 0 >> setpagedevice"
*Offset Jobs/Between Jobs: "<< /Jog 2 >> setpagedevice"
*Offset Copies/Between Copies: "<< /Jog 3 >> setpagedevice"
*?Offset: "
gsave
currentpagedevice /Jog get
0 eq {(None)}{2 eq {(Jobs)}{(Copies)} ifelse} ifelse
= flush
grestore"
*End
*CloseUI: *Offset
*OpenUI *StapleJob/Staple Job: PickOne
*OrderDependency: 170 AnySetup *StapleJob
*DefaultStapleJob: PrinterS
*StapleJob PrinterS/Printer Setting: ""
*StapleJob FalseM/Off: "<< /Staple 0 >> setpagedevice"
*StapleJob TrueM/On: "<< /Staple 3 >> setpagedevice"
*?StapleJob: "
gsave
currentpagedevice /Staple get
0 eq {(FalseM)}{(TrueM)} ifelse
= flush
grestore"
*End
*CloseUI: *StapleJob
*OpenUI *HolePunch/Hole Punch: PickOne
*OrderDependency: 54 AnySetup *HolePunch
*DefaultHolePunch: PrinterS
*HolePunch PrinterS/Printer Setting: ""
*HolePunch FalseM/Off: "<< /Punch 0 >> setpagedevice"
*HolePunch 2Hole/2 Hole: "<< /Punch 2 >> setpagedevice"
*HolePunch 3Hole/3 Hole: "<< /Punch 3 >> setpagedevice"
*HolePunch 4Hole/4 Hole: "<< /Punch 4 >> setpagedevice"
*?HolePunch: "
gsave
currentpagedevice /Punch get
dup dup dup dup
3 eq {(3Hole)}{
4 eq {(4Hole)}{
2 eq {(2Hole)}{
{(FalseM)}
ifelse}
ifelse}
ifelse
= flush
grestore"
*End
*CloseUI: *HolePunch
*OpenUI *SepSource/Separator Source: PickOne
*OrderDependency: 52 AnySetup *SepSource
*DefaultSepSource: PrinterS
*SepSource PrinterS/Printer Setting: ""
*SepSource Tray1/Tray 1: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 0 >> >> setpagedevice"
*SepSource Tray2/Tray 2: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 1 >> >> setpagedevice"
*SepSource Tray3/Tray 3: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 3 >> >> setpagedevice"
*SepSource Tray4/Tray 4: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 5 >> >> setpagedevice"
*SepSource MultipurposeFeeder/Multipurpose Feeder: "<< /SlipSheetDetails << /Type 96 /SlipSheetSource 4 >> >> setpagedevice"
*?SepSource: "
gsave
currentpagedevice /SlipSheetDetails get /SlipSheetSource get
dup dup dup dup dup
{5 eq {(Tray4)}
{4 eq {(MultipurposeFeeder)}
{3 eq {(Tray3)}
{1 eq {(Tray2)}
{0 eq {(Tray1)}{(Off)}
ifelse}
ifelse}
ifelse}
ifelse}
ifelse
= flush
grestore"
*End
*CloseUI: *SepSource
*CloseGroup: Finishing
*de.Translation Manufacturer/Lexmark: ""
*de.Translation ModelName/Lexmark X790 Series: ""
*de.Translation ShortNickName/Lexmark X790 Series: ""
*de.Translation NickName/Lexmark X790 Series: ""
*de.Translation PageSize/Medienformat: ""
*de.PageSize Letter/Letter: ""
*de.PageSize Legal/Legal: ""
*de.PageSize Oficio/Oficio (Mexiko): ""
*de.PageSize B5/JIS B5: ""
*de.PageSize A4/A4: ""
*de.PageSize Executive/Executive: ""
*de.PageSize A6/A6: ""
*de.PageSize A5/A5: ""
*de.PageSize Folio/Folio: ""
*de.PageSize Statement/Statement: ""
*de.PageSize Monarch/7 3/4 Briefumschlag: ""
*de.PageSize C4/C9 Briefumschlag: ""
*de.PageSize Comm10/C10 Briefumschlag: ""
*de.PageSize DL/DL Briefumschlag: ""
*de.PageSize C5/C5 Briefumschlag: ""
*de.PageSize ISOB5/B5 Briefumschlag: ""
*de.PageSize OthEnv/Anderer Briefumschlag: ""
*de.Translation InputSlot/Medienzuführung: ""
*de.InputSlot Tray1/Fach 1: ""
*de.InputSlot Tray2/Fach 2: ""
*de.InputSlot Tray3/Fach 3: ""
*de.InputSlot Tray4/Fach 4: ""
*de.InputSlot MultipurposeFeeder/Universal: ""
*de.InputSlot ManualPaper/Papier manuell: ""
*de.InputSlot ManualEnv/Briefumschlag manuell: ""
*de.Translation InstallableOptions/Installationsoptionen: ""
*de.Translation OptOutputBins/Papierablagen: ""
*de.OptOutputBins StandardBin/Standardablage: ""
*de.OptOutputBins OBin1/1 Papierablage: ""
*de.OptOutputBins OBin5/5 Papierablagen: ""
*de.Translation OptDuplex/Duplex: ""
*de.OptDuplex InstalledM/Eingebaut: ""
*de.OptDuplex NotInstalledM/Nicht Eingebaut: ""
*de.Translation OutputFinisher/Finisher: ""
*de.OutputFinisher NotInstalledM/Nicht Eingebaut: ""
*de.OutputFinisher StandardFinisher/Standard-Finisher: ""
*de.Translation Trays/Fächer: ""
*de.Trays Tray1/Fach 1: ""
*de.Trays Tray12/Fach 1+2: ""
*de.Trays Tray123/Fach 1+2+3: ""
*de.Trays Tray1234/Fach 1+2+3+4: ""
*de.Translation Quality/Qualität: ""
*de.Translation Resolution/Auflösung: ""
*de.Resolution 2400x1200dpi/4800 Farbqualität: ""
*de.Resolution 1200dpi/1200 dpi: ""
*de.Translation TonerDarkness/Tonerdeckung: ""
*de.TonerDarkness PrinterS/Druckereinstellung: ""
*de.TonerDarkness 1/1: ""
*de.TonerDarkness 2/2: ""
*de.TonerDarkness 3/3: ""
*de.TonerDarkness 4/4: ""
*de.TonerDarkness 5/5: ""
*de.Translation LexBrightness/Helligkeit: ""
*de.LexBrightness PrinterS/Druckereinstellung: ""
*de.LexBrightness -6/ -6: ""
*de.LexBrightness -5/ -5: ""
*de.LexBrightness -4/ -4: ""
*de.LexBrightness -3/ -3: ""
*de.LexBrightness -2/ -2: ""
*de.LexBrightness -1/ -1: ""
*de.LexBrightness 0/ 0: ""
*de.LexBrightness +1/ +1: ""
*de.LexBrightness +2/ +2: ""
*de.LexBrightness +3/ +3: ""
*de.LexBrightness +4/ +4: ""
*de.LexBrightness +5/ +5: ""
*de.LexBrightness +6/ +6: ""
*de.Translation LexContrast/Kontrast: ""
*de.LexContrast PrinterS/Druckereinstellung: ""
*de.LexContrast 0/0: ""
*de.LexContrast 1/1: ""
*de.LexContrast 2/2: ""
*de.LexContrast 3/3: ""
*de.LexContrast 4/4: ""
*de.LexContrast 5/5: ""
*de.Translation LexSaturation/Farbsättigung: ""
*de.LexSaturation PrinterS/Druckereinstellung: ""
*de.LexSaturation 0/0: ""
*de.LexSaturation 1/1: ""
*de.LexSaturation 2/2: ""
*de.LexSaturation 3/3: ""
*de.LexSaturation 4/4: ""
*de.LexSaturation 5/5: ""
*de.Translation LexLineDetail/Feine Linien verbessern: ""
*de.LexLineDetail PrinterS/Druckereinstellung: ""
*de.LexLineDetail FalseF/Aus: ""
*de.LexLineDetail TrueF/Ein: ""
*de.Translation LexMirror/Spiegeln: ""
*de.LexMirror False/Aus: ""
*de.LexMirror True/Ein: ""
*de.Translation Color/Farbanpassung: ""
*de.Translation MediaColor/Farbanpassung: ""
*de.MediaColor PrinterS/Druckereinstellung: ""
*de.MediaColor Auto/Automatisch: ""
*de.MediaColor FalseM/Aus: ""
*de.MediaColor Manual/Manuell: ""
*de.Translation ColorSaver/ColorSaver™: ""
*de.ColorSaver PrinterS/Druckereinstellung: ""
*de.ColorSaver FalseM/Aus: ""
*de.ColorSaver TrueM/Ein: ""
*de.Translation BLW/Schwarz/Weiß: ""
*de.BLW PrinterS/Druckereinstellung: ""
*de.BLW FalseM/Aus: ""
*de.BLW TrueM/Ein: ""
*de.Translation ColorBalance/Farbausgleich: ""
*de.Translation CyanBalance/Farbausgleich cyan: ""
*de.CyanBalance PrinterS/Druckereinstellung: ""
*de.CyanBalance -5/ -5: ""
*de.CyanBalance -4/ -4: ""
*de.CyanBalance -3/ -3: ""
*de.CyanBalance -2/ -2: ""
*de.CyanBalance -1/ -1: ""
*de.CyanBalance 0/ 0: ""
*de.CyanBalance +1/ +1: ""
*de.CyanBalance +2/ +2: ""
*de.CyanBalance +3/ +3: ""
*de.CyanBalance +4/ +4: ""
*de.CyanBalance +5/ +5: ""
*de.Translation MagentaBalance/Farbausgleich magenta: ""
*de.MagentaBalance PrinterS/Druckereinstellung: ""
*de.MagentaBalance -5/ -5: ""
*de.MagentaBalance -4/ -4: ""
*de.MagentaBalance -3/ -3: ""
*de.MagentaBalance -2/ -2: ""
*de.MagentaBalance -1/ -1: ""
*de.MagentaBalance 0/ 0: ""
*de.MagentaBalance +1/ +1: ""
*de.MagentaBalance +2/ +2: ""
*de.MagentaBalance +3/ +3: ""
*de.MagentaBalance +4/ +4: ""
*de.MagentaBalance +5/ +5: ""
*de.Translation YellowBalance/Farbausgleich gelb: ""
*de.YellowBalance PrinterS/Druckereinstellung: ""
*de.YellowBalance -5/ -5: ""
*de.YellowBalance -4/ -4: ""
*de.YellowBalance -3/ -3: ""
*de.YellowBalance -2/ -2: ""
*de.YellowBalance -1/ -1: ""
*de.YellowBalance 0/ 0: ""
*de.YellowBalance +1/ +1: ""
*de.YellowBalance +2/ +2: ""
*de.YellowBalance +3/ +3: ""
*de.YellowBalance +4/ +4: ""
*de.YellowBalance +5/ +5: ""
*de.Translation BlackBalance/Farbausgleich schwarz: ""
*de.BlackBalance PrinterS/Druckereinstellung: ""
*de.BlackBalance -5/ -5: ""
*de.BlackBalance -4/ -4: ""
*de.BlackBalance -3/ -3: ""
*de.BlackBalance -2/ -2: ""
*de.BlackBalance -1/ -1: ""
*de.BlackBalance 0/ 0: ""
*de.BlackBalance +1/ +1: ""
*de.BlackBalance +2/ +2: ""
*de.BlackBalance +3/ +3: ""
*de.BlackBalance +4/ +4: ""
*de.BlackBalance +5/ +5: ""
*de.Translation ManualColor/Manuelle Farbe: ""
*de.Translation ManualRGBImage/RGB Bild manuell: ""
*de.ManualRGBImage PrinterS/Druckereinstellung: ""
*de.ManualRGBImage Vivid/Leuchtend: ""
*de.ManualRGBImage sRGBDisplay/sRGB Bildschirm: ""
*de.ManualRGBImage sRGBVivid/sRGB Leuchtend: ""
*de.ManualRGBImage DisplayRealBlack/Anzeige - Echtes Schwarz: ""
*de.ManualRGBImage Off/Aus: ""
*de.Translation ManualRGBText/RGB Text manuell: ""
*de.ManualRGBText PrinterS/Druckereinstellung: ""
*de.ManualRGBText Vivid/Leuchtend: ""
*de.ManualRGBText sRGBDisplay/sRGB Bildschirm: ""
*de.ManualRGBText sRGBVivid/sRGB Leuchtend: ""
*de.ManualRGBText DisplayRealBlack/Anzeige - Echtes Schwarz: ""
*de.ManualRGBText Off/Aus: ""
*de.Translation ManualRGBGraphics/RGB Grafiken manuell: ""
*de.ManualRGBGraphics PrinterS/Druckereinstellung: ""
*de.ManualRGBGraphics Vivid/Leuchtend: ""
*de.ManualRGBGraphics sRGBDisplay/sRGB Bildschirm: ""
*de.ManualRGBGraphics sRGBVivid/sRGB Leuchtend: ""
*de.ManualRGBGraphics DisplayRealBlack/Anzeige - Echtes Schwarz: ""
*de.ManualRGBGraphics Off/Aus: ""
*de.Translation ManualCMYK/CMYK manuell: ""
*de.ManualCMYK PrinterS/Druckereinstellung: ""
*de.ManualCMYK USCMYK/US-CMYK: ""
*de.ManualCMYK EuroCMYK/Euro-CMYK: ""
*de.ManualCMYK VividCMYK/Leuchtend CMYK: ""
*de.ManualCMYK Off/Aus: ""
*de.Translation Paper/Papier: ""
*de.Translation MediaType/Papiersorte: ""
*de.MediaType PrinterS/Druckereinstellung: ""
*de.MediaType Plain/Normalpapier: ""
*de.MediaType Transparency/Folien: ""
*de.MediaType Labels/Label (Paper): ""
*de.MediaType Vinyl/Label (Vinyl): ""
*de.MediaType Bond/Feinpostpapier: ""
*de.MediaType Envelope/Briefumschlag: ""
*de.MediaType Letterhead/Briefbogen: ""
*de.MediaType Preprint/Vorgedruckt: ""
*de.MediaType Colored/Farbpapier: ""
*de.MediaType Glossy/Glanz: ""
*de.MediaType Light/Leichtes papier: ""
*de.MediaType Heavy/Schweres papier: ""
*de.MediaType Card/Karten / Extrem schweres Papier: ""
*de.MediaType Rough/Rau/Baumwolle: ""
*de.MediaType Recycled/Recycling-Papier: ""
*de.MediaType HeavyGlossy/Hochglanz: ""
*de.MediaType RoughEnvelope/Rauer Umschlag: ""
*de.MediaType Custom1/Benutzerdef. 1: ""
*de.MediaType Custom2/Benutzerdef. 2: ""
*de.MediaType Custom3/Benutzerdef. 3: ""
*de.MediaType Custom4/Benutzerdef. 4: ""
*de.MediaType Custom5/Benutzerdef. 5: ""
*de.MediaType Custom6/Benutzerdef. 6: ""
*de.Translation OutputBin/Papierablage: ""
*de.OutputBin PrinterS/Druckereinstellung: ""
*de.OutputBin StandardBin/Standardablage: ""
*de.OutputBin Bin1/Papierablage 1: ""
*de.OutputBin Bin2/Papierablage 2: ""
*de.OutputBin Bin3/Papierablage 3: ""
*de.OutputBin Bin4/Papierablage 4: ""
*de.OutputBin Bin5/Papierablage 5: ""
*de.Translation LexBlankPage/Leere Seiten drucken: ""
*de.LexBlankPage PrinterS/Druckereinstellung: ""
*de.LexBlankPage False/Aus: ""
*de.LexBlankPage True/Ein: ""
*de.Translation Finishing/Papierausgabe: ""
*de.Translation Duplex/Duplex: ""
*de.Duplex None/Aus: ""
*de.Duplex DuplexNoTumble/Lange Kante Binden: ""
*de.Duplex DuplexTumble/Kurze Kante Binden: ""
*de.Translation Collate/Sortieren: ""
*de.Collate False/Aus: ""
*de.Collate True/Ein: ""
*de.Translation SepPages/Trennseiten: ""
*de.SepPages PrinterS/Druckereinstellung: ""
*de.SepPages NoneF/Aus: ""
*de.SepPages Jobs/Zwischen Aufträgen: ""
*de.SepPages Copies/Zwischen Kopien: ""
*de.SepPages Pages/Zwischen Seiten: ""
*de.Translation Offset/Versetzt stapeln: ""
*de.Offset PrinterS/Druckereinstellung: ""
*de.Offset None/Aus: ""
*de.Offset Jobs/Zwischen Aufträgen: ""
*de.Offset Copies/Zwischen Kopien: ""
*de.Translation StapleJob/Heften: ""
*de.StapleJob PrinterS/Druckereinstellung: ""
*de.StapleJob FalseM/Aus: ""
*de.StapleJob TrueM/Ein: ""
*de.Translation HolePunch/Lochen: ""
*de.HolePunch PrinterS/Druckereinstellung: ""
*de.HolePunch FalseM/Aus: ""
*de.HolePunch 2Hole/2-Loch: ""
*de.HolePunch 3Hole/3 x gelocht: ""
*de.HolePunch 4Hole/4 x gelocht: ""
*de.Translation SepSource/Trennseitenzufuhr: ""
*de.SepSource PrinterS/Druckereinstellung: ""
*de.SepSource Tray1/Fach 1: ""
*de.SepSource Tray2/Fach 2: ""
*de.SepSource Tray3/Fach 3: ""
*de.SepSource Tray4/Fach 4: ""
*de.SepSource MultipurposeFeeder/Universal: ""
*es.Translation Manufacturer/Lexmark: ""
*es.Translation ModelName/Lexmark X790 Series: ""
*es.Translation ShortNickName/Lexmark X790 Series: ""
*es.Translation NickName/Lexmark X790 Series: ""
*es.Translation PageSize/Tamaño del material: ""
*es.PageSize Letter/Carta: ""
*es.PageSize Legal/Oficio: ""
*es.PageSize Oficio/Oficio (México): ""
*es.PageSize B5/JIS B5: ""
*es.PageSize A4/A4: ""
*es.PageSize Executive/Ejecutivo: ""
*es.PageSize A6/A6: ""
*es.PageSize A5/A5: ""
*es.PageSize Folio/Folio: ""
*es.PageSize Statement/Media carta: ""
*es.PageSize Monarch/Sobres 7 3/4: ""
*es.PageSize C4/Sobres 9: ""
*es.PageSize Comm10/Sobres 10: ""
*es.PageSize DL/Sobres DL: ""
*es.PageSize C5/Sobres C5: ""
*es.PageSize ISOB5/Sobres B5: ""
*es.PageSize OthEnv/Otro Sobre: ""
*es.Translation InputSlot/Origen del material: ""
*es.InputSlot Tray1/Bandeja 1: ""
*es.InputSlot Tray2/Bandeja 2: ""
*es.InputSlot Tray3/Bandeja 3: ""
*es.InputSlot Tray4/Bandeja 4: ""
*es.InputSlot MultipurposeFeeder/Alimentador Multiuso: ""
*es.InputSlot ManualPaper/Papel manual: ""
*es.InputSlot ManualEnv/Sobre manual: ""
*es.Translation InstallableOptions/Opciones instalables: ""
*es.Translation OptOutputBins/Bandejas de Salida: ""
*es.OptOutputBins StandardBin/Bandeja de salida Estándar: ""
*es.OptOutputBins OBin1/1 Bandeja de Salida opcional: ""
*es.OptOutputBins OBin5/5 Bandejas de Salida opcionales: ""
*es.Translation OptDuplex/Encuadernado Doble: ""
*es.OptDuplex InstalledM/Instalada: ""
*es.OptDuplex NotInstalledM/No Instalado: ""
*es.Translation OutputFinisher/Clasificador: ""
*es.OutputFinisher NotInstalledM/No Instalado: ""
*es.OutputFinisher StandardFinisher/Clasificador estándar: ""
*es.Translation Trays/Bandejas: ""
*es.Trays Tray1/Bandeja 1: ""
*es.Trays Tray12/Bandejas 1+2: ""
*es.Trays Tray123/Bandejas 1+2+3: ""
*es.Trays Tray1234/Bandejas 1+2+3+4: ""
*es.Translation Quality/Calidad: ""
*es.Translation Resolution/Resolución: ""
*es.Resolution 2400x1200dpi/Calidad de color 4800: ""
*es.Resolution 1200dpi/1200 ppp: ""
*es.Translation TonerDarkness/Intensidad del tóner: ""
*es.TonerDarkness PrinterS/Valor de la impresora: ""
*es.TonerDarkness 1/1: ""
*es.TonerDarkness 2/2: ""
*es.TonerDarkness 3/3: ""
*es.TonerDarkness 4/4: ""
*es.TonerDarkness 5/5: ""
*es.Translation LexBrightness/Brillo: ""
*es.LexBrightness PrinterS/Valor de la impresora: ""
*es.LexBrightness -6/ -6: ""
*es.LexBrightness -5/ -5: ""
*es.LexBrightness -4/ -4: ""
*es.LexBrightness -3/ -3: ""
*es.LexBrightness -2/ -2: ""
*es.LexBrightness -1/ -1: ""
*es.LexBrightness 0/ 0: ""
*es.LexBrightness +1/ +1: ""
*es.LexBrightness +2/ +2: ""
*es.LexBrightness +3/ +3: ""
*es.LexBrightness +4/ +4: ""
*es.LexBrightness +5/ +5: ""
*es.LexBrightness +6/ +6: ""
*es.Translation LexContrast/Contraste: ""
*es.LexContrast PrinterS/Valor de la impresora: ""
*es.LexContrast 0/0: ""
*es.LexContrast 1/1: ""
*es.LexContrast 2/2: ""
*es.LexContrast 3/3: ""
*es.LexContrast 4/4: ""
*es.LexContrast 5/5: ""
*es.Translation LexSaturation/Saturación: ""
*es.LexSaturation PrinterS/Valor de la impresora: ""
*es.LexSaturation 0/0: ""
*es.LexSaturation 1/1: ""
*es.LexSaturation 2/2: ""
*es.LexSaturation 3/3: ""
*es.LexSaturation 4/4: ""
*es.LexSaturation 5/5: ""
*es.Translation LexLineDetail/Mejorar líneas finas: ""
*es.LexLineDetail PrinterS/Valor de la impresora: ""
*es.LexLineDetail FalseF/Desactivado: ""
*es.LexLineDetail TrueF/Activado: ""
*es.Translation LexMirror/Espejo: ""
*es.LexMirror False/Desactivado: ""
*es.LexMirror True/Activado: ""
*es.Translation Color/Color: ""
*es.Translation MediaColor/Corrección de color: ""
*es.MediaColor PrinterS/Valor de la impresora: ""
*es.MediaColor Auto/Automático: ""
*es.MediaColor FalseM/Desactivado: ""
*es.MediaColor Manual/Manual: ""
*es.Translation ColorSaver/ColorSaver™: ""
*es.ColorSaver PrinterS/Valor de la impresora: ""
*es.ColorSaver FalseM/Desactivado: ""
*es.ColorSaver TrueM/Activado: ""
*es.Translation BLW/Blanco y negro: ""
*es.BLW PrinterS/Valor de la impresora: ""
*es.BLW FalseM/Desactivado: ""
*es.BLW TrueM/Activado: ""
*es.Translation ColorBalance/Mezcla de color: ""
*es.Translation CyanBalance/Mezcla de cian: ""
*es.CyanBalance PrinterS/Valor de la impresora: ""
*es.CyanBalance -5/ -5: ""
*es.CyanBalance -4/ -4: ""
*es.CyanBalance -3/ -3: ""
*es.CyanBalance -2/ -2: ""
*es.CyanBalance -1/ -1: ""
*es.CyanBalance 0/ 0: ""
*es.CyanBalance +1/ +1: ""
*es.CyanBalance +2/ +2: ""
*es.CyanBalance +3/ +3: ""
*es.CyanBalance +4/ +4: ""
*es.CyanBalance +5/ +5: ""
*es.Translation MagentaBalance/Mezcla de magenta: ""
*es.MagentaBalance PrinterS/Valor de la impresora: ""
*es.MagentaBalance -5/ -5: ""
*es.MagentaBalance -4/ -4: ""
*es.MagentaBalance -3/ -3: ""
*es.MagentaBalance -2/ -2: ""
*es.MagentaBalance -1/ -1: ""
*es.MagentaBalance 0/ 0: ""
*es.MagentaBalance +1/ +1: ""
*es.MagentaBalance +2/ +2: ""
*es.MagentaBalance +3/ +3: ""
*es.MagentaBalance +4/ +4: ""
*es.MagentaBalance +5/ +5: ""
*es.Translation YellowBalance/Mezcla de amarillo: ""
*es.YellowBalance PrinterS/Valor de la impresora: ""
*es.YellowBalance -5/ -5: ""
*es.YellowBalance -4/ -4: ""
*es.YellowBalance -3/ -3: ""
*es.YellowBalance -2/ -2: ""
*es.YellowBalance -1/ -1: ""
*es.YellowBalance 0/ 0: ""
*es.YellowBalance +1/ +1: ""
*es.YellowBalance +2/ +2: ""
*es.YellowBalance +3/ +3: ""
*es.YellowBalance +4/ +4: ""
*es.YellowBalance +5/ +5: ""
*es.Translation BlackBalance/Mezcla de negro: ""
*es.BlackBalance PrinterS/Valor de la impresora: ""
*es.BlackBalance -5/ -5: ""
*es.BlackBalance -4/ -4: ""
*es.BlackBalance -3/ -3: ""
*es.BlackBalance -2/ -2: ""
*es.BlackBalance -1/ -1: ""
*es.BlackBalance 0/ 0: ""
*es.BlackBalance +1/ +1: ""
*es.BlackBalance +2/ +2: ""
*es.BlackBalance +3/ +3: ""
*es.BlackBalance +4/ +4: ""
*es.BlackBalance +5/ +5: ""
*es.Translation ManualColor/Color manual: ""
*es.Translation ManualRGBImage/Imagen RGB manual: ""
*es.ManualRGBImage PrinterS/Valor de la impresora: ""
*es.ManualRGBImage Vivid/Intenso: ""
*es.ManualRGBImage sRGBDisplay/Pantalla sRGB: ""
*es.ManualRGBImage sRGBVivid/Intenso sRGB: ""
*es.ManualRGBImage DisplayRealBlack/Pantalla - Negro real: ""
*es.ManualRGBImage Off/Desactivado: ""
*es.Translation ManualRGBText/Texto RGB manual: ""
*es.ManualRGBText PrinterS/Valor de la impresora: ""
*es.ManualRGBText Vivid/Intenso: ""
*es.ManualRGBText sRGBDisplay/Pantalla sRGB: ""
*es.ManualRGBText sRGBVivid/Intenso sRGB: ""
*es.ManualRGBText DisplayRealBlack/Pantalla - Negro real: ""
*es.ManualRGBText Off/Desactivado: ""
*es.Translation ManualRGBGraphics/Gráficos RGB manual: ""
*es.ManualRGBGraphics PrinterS/Valor de la impresora: ""
*es.ManualRGBGraphics Vivid/Intenso: ""
*es.ManualRGBGraphics sRGBDisplay/Pantalla sRGB: ""
*es.ManualRGBGraphics sRGBVivid/Intenso sRGB: ""
*es.ManualRGBGraphics DisplayRealBlack/Pantalla - Negro real: ""
*es.ManualRGBGraphics Off/Desactivado: ""
*es.Translation ManualCMYK/CMYK manual: ""
*es.ManualCMYK PrinterS/Valor de la impresora: ""
*es.ManualCMYK USCMYK/CMYK EE.UU.: ""
*es.ManualCMYK EuroCMYK/CMYK Europa: ""
*es.ManualCMYK VividCMYK/CMYK intenso: ""
*es.ManualCMYK Off/Desactivado: ""
*es.Translation Paper/Papel: ""
*es.Translation MediaType/Tipo de papel: ""
*es.MediaType PrinterS/Valor de la impresora: ""
*es.MediaType Plain/Papel normal: ""
*es.MediaType Transparency/Transparencia: ""
*es.MediaType Labels/Label (Paper): ""
*es.MediaType Vinyl/Label (Vinyl): ""
*es.MediaType Bond/Alta calidad: ""
*es.MediaType Envelope/Sobre: ""
*es.MediaType Letterhead/Cabecera: ""
*es.MediaType Preprint/Preimpreso: ""
*es.MediaType Colored/Papel color: ""
*es.MediaType Glossy/Glossy: ""
*es.MediaType Light/Papel ligero: ""
*es.MediaType Heavy/Papel pesado: ""
*es.MediaType Card/Cartulina/Papel extra pesado: ""
*es.MediaType Rough/Rugoso/algodón: ""
*es.MediaType Recycled/Reciclado: ""
*es.MediaType HeavyGlossy/Glossy pesado: ""
*es.MediaType RoughEnvelope/Sobre áspero: ""
*es.MediaType Custom1/Tipo personalizado 1: ""
*es.MediaType Custom2/Tipo personalizado 2: ""
*es.MediaType Custom3/Tipo personalizado 3: ""
*es.MediaType Custom4/Tipo personalizado 4: ""
*es.MediaType Custom5/Tipo personalizado 5: ""
*es.MediaType Custom6/Tipo personalizado 6: ""
*es.Translation OutputBin/Bandeja de Salida: ""
*es.OutputBin PrinterS/Valor de la impresora: ""
*es.OutputBin StandardBin/Bandeja de salida Estándar: ""
*es.OutputBin Bin1/Bandeja de Salida 1: ""
*es.OutputBin Bin2/Bandeja de Salida 2: ""
*es.OutputBin Bin3/Bandeja de Salida 3: ""
*es.OutputBin Bin4/Bandeja de Salida 4: ""
*es.OutputBin Bin5/Bandeja de Salida 5: ""
*es.Translation LexBlankPage/Imprimir páginas en blanco: ""
*es.LexBlankPage PrinterS/Valor de la impresora: ""
*es.LexBlankPage False/Desactivado: ""
*es.LexBlankPage True/Activado: ""
*es.Translation Finishing/Acabado: ""
*es.Translation Duplex/Encuadernado Doble: ""
*es.Duplex None/Desactivado: ""
*es.Duplex DuplexNoTumble/Borde Largo: ""
*es.Duplex DuplexTumble/Borde Corto: ""
*es.Translation Collate/Clasificación: ""
*es.Collate False/Desactivado: ""
*es.Collate True/Activado: ""
*es.Translation SepPages/Hojas de separación: ""
*es.SepPages PrinterS/Valor de la impresora: ""
*es.SepPages NoneF/Desactivado: ""
*es.SepPages Jobs/Entre trabajos: ""
*es.SepPages Copies/Entre copias: ""
*es.SepPages Pages/Entre páginas: ""
*es.Translation Offset/Páginas de desviación: ""
*es.Offset PrinterS/Valor de la impresora: ""
*es.Offset None/Desactivado: ""
*es.Offset Jobs/Entre trabajos: ""
*es.Offset Copies/Entre copias: ""
*es.Translation StapleJob/Grapar trabajo: ""
*es.StapleJob PrinterS/Valor de la impresora: ""
*es.StapleJob FalseM/Desactivado: ""
*es.StapleJob TrueM/Activado: ""
*es.Translation HolePunch/Perforador: ""
*es.HolePunch PrinterS/Valor de la impresora: ""
*es.HolePunch FalseM/Desactivado: ""
*es.HolePunch 2Hole/2 orificios: ""
*es.HolePunch 3Hole/3 orificios: ""
*es.HolePunch 4Hole/4 orificios: ""
*es.Translation SepSource/Fuente de separadores: ""
*es.SepSource PrinterS/Valor de la impresora: ""
*es.SepSource Tray1/Bandeja 1: ""
*es.SepSource Tray2/Bandeja 2: ""
*es.SepSource Tray3/Bandeja 3: ""
*es.SepSource Tray4/Bandeja 4: ""
*es.SepSource MultipurposeFeeder/Alimentador Multiuso: ""
*fr.Translation Manufacturer/Lexmark: ""
*fr.Translation ModelName/Lexmark X790 Series: ""
*fr.Translation ShortNickName/Lexmark X790 Series: ""
*fr.Translation NickName/Lexmark X790 Series: ""
*fr.Translation PageSize/Format de support: ""
*fr.PageSize Letter/Lettre US: ""
*fr.PageSize Legal/Légal US: ""
*fr.PageSize Oficio/Oficio (Mexico): ""
*fr.PageSize B5/JIS B5: ""
*fr.PageSize A4/A4: ""
*fr.PageSize Executive/Exécutive US: ""
*fr.PageSize A6/A6: ""
*fr.PageSize A5/A5: ""
*fr.PageSize Folio/Folio: ""
*fr.PageSize Statement/Statement US: ""
*fr.PageSize Monarch/Enveloppe 7 3/4: ""
*fr.PageSize C4/Enveloppe C9: ""
*fr.PageSize Comm10/Enveloppe C10: ""
*fr.PageSize DL/Enveloppe DL: ""
*fr.PageSize C5/Enveloppe C5: ""
*fr.PageSize ISOB5/Enveloppe B5: ""
*fr.PageSize OthEnv/Autre Enveloppe: ""
*fr.Translation InputSlot/Source d'alimentation du support: ""
*fr.InputSlot Tray1/Tiroir 1: ""
*fr.InputSlot Tray2/Tiroir 2: ""
*fr.InputSlot Tray3/Tiroir 3: ""
*fr.InputSlot Tray4/Tiroir 4: ""
*fr.InputSlot MultipurposeFeeder/Bac Multifonction: ""
*fr.InputSlot ManualPaper/Manuel papier: ""
*fr.InputSlot ManualEnv/Enveloppe Manuel: ""
*fr.Translation InstallableOptions/Options installables: ""
*fr.Translation OptOutputBins/Réceptacles: ""
*fr.OptOutputBins StandardBin/Réceptacle Standard: ""
*fr.OptOutputBins OBin1/1 Réceptacle: ""
*fr.OptOutputBins OBin5/5 Réceptacles: ""
*fr.Translation OptDuplex/Reliure Recto Verso: ""
*fr.OptDuplex InstalledM/Installée: ""
*fr.OptDuplex NotInstalledM/Non Installée: ""
*fr.Translation OutputFinisher/Unité de finition: ""
*fr.OutputFinisher NotInstalledM/Non Installée: ""
*fr.OutputFinisher StandardFinisher/Unité de finition standard: ""
*fr.Translation Trays/Tiroirs: ""
*fr.Trays Tray1/Tiroir 1: ""
*fr.Trays Tray12/Tiroir 1+2: ""
*fr.Trays Tray123/Tiroir 1+2+3: ""
*fr.Trays Tray1234/Tiroir 1+2+3+4: ""
*fr.Translation Quality/Qualité: ""
*fr.Translation Resolution/Résolution: ""
*fr.Resolution 2400x1200dpi/Qualité couleur 4800: ""
*fr.Resolution 1200dpi/1200 ppp: ""
*fr.Translation TonerDarkness/Intensité Toner: ""
*fr.TonerDarkness PrinterS/Paramètres de l'imprimante: ""
*fr.TonerDarkness 1/1: ""
*fr.TonerDarkness 2/2: ""
*fr.TonerDarkness 3/3: ""
*fr.TonerDarkness 4/4: ""
*fr.TonerDarkness 5/5: ""
*fr.Translation LexBrightness/Luminosité: ""
*fr.LexBrightness PrinterS/Paramètres de l'imprimante: ""
*fr.LexBrightness -6/ -6: ""
*fr.LexBrightness -5/ -5: ""
*fr.LexBrightness -4/ -4: ""
*fr.LexBrightness -3/ -3: ""
*fr.LexBrightness -2/ -2: ""
*fr.LexBrightness -1/ -1: ""
*fr.LexBrightness 0/ 0: ""
*fr.LexBrightness +1/ +1: ""
*fr.LexBrightness +2/ +2: ""
*fr.LexBrightness +3/ +3: ""
*fr.LexBrightness +4/ +4: ""
*fr.LexBrightness +5/ +5: ""
*fr.LexBrightness +6/ +6: ""
*fr.Translation LexContrast/Contraste: ""
*fr.LexContrast PrinterS/Paramètres de l'imprimante: ""
*fr.LexContrast 0/0: ""
*fr.LexContrast 1/1: ""
*fr.LexContrast 2/2: ""
*fr.LexContrast 3/3: ""
*fr.LexContrast 4/4: ""
*fr.LexContrast 5/5: ""
*fr.Translation LexSaturation/Saturation: ""
*fr.LexSaturation PrinterS/Paramètres de l'imprimante: ""
*fr.LexSaturation 0/0: ""
*fr.LexSaturation 1/1: ""
*fr.LexSaturation 2/2: ""
*fr.LexSaturation 3/3: ""
*fr.LexSaturation 4/4: ""
*fr.LexSaturation 5/5: ""
*fr.Translation LexLineDetail/Améliorer traits fins: ""
*fr.LexLineDetail PrinterS/Paramètres de l'imprimante: ""
*fr.LexLineDetail FalseF/Hors Fonction: ""
*fr.LexLineDetail TrueF/En Fonction: ""
*fr.Translation LexMirror/Miroir: ""
*fr.LexMirror False/Hors Fonction: ""
*fr.LexMirror True/En Fonction: ""
*fr.Translation Color/Couleur: ""
*fr.Translation MediaColor/Correction des Couleurs: ""
*fr.MediaColor PrinterS/Paramètres de l'imprimante: ""
*fr.MediaColor Auto/Automatique: ""
*fr.MediaColor FalseM/Hors Fonction: ""
*fr.MediaColor Manual/Manuel: ""
*fr.Translation ColorSaver/ColorSaver™: ""
*fr.ColorSaver PrinterS/Paramètres de l'imprimante: ""
*fr.ColorSaver FalseM/Hors Fonction: ""
*fr.ColorSaver TrueM/En Fonction: ""
*fr.Translation BLW/Noir & Blanc: ""
*fr.BLW PrinterS/Paramètres de l'imprimante: ""
*fr.BLW FalseM/Hors Fonction: ""
*fr.BLW TrueM/En Fonction: ""
*fr.Translation ColorBalance/Equilibre des couleurs: ""
*fr.Translation CyanBalance/Equilibre cyan: ""
*fr.CyanBalance PrinterS/Paramètres de l'imprimante: ""
*fr.CyanBalance -5/ -5: ""
*fr.CyanBalance -4/ -4: ""
*fr.CyanBalance -3/ -3: ""
*fr.CyanBalance -2/ -2: ""
*fr.CyanBalance -1/ -1: ""
*fr.CyanBalance 0/ 0: ""
*fr.CyanBalance +1/ +1: ""
*fr.CyanBalance +2/ +2: ""
*fr.CyanBalance +3/ +3: ""
*fr.CyanBalance +4/ +4: ""
*fr.CyanBalance +5/ +5: ""
*fr.Translation MagentaBalance/Equilibre magenta: ""
*fr.MagentaBalance PrinterS/Paramètres de l'imprimante: ""
*fr.MagentaBalance -5/ -5: ""
*fr.MagentaBalance -4/ -4: ""
*fr.MagentaBalance -3/ -3: ""
*fr.MagentaBalance -2/ -2: ""
*fr.MagentaBalance -1/ -1: ""
*fr.MagentaBalance 0/ 0: ""
*fr.MagentaBalance +1/ +1: ""
*fr.MagentaBalance +2/ +2: ""
*fr.MagentaBalance +3/ +3: ""
*fr.MagentaBalance +4/ +4: ""
*fr.MagentaBalance +5/ +5: ""
*fr.Translation YellowBalance/Equilibre jaune: ""
*fr.YellowBalance PrinterS/Paramètres de l'imprimante: ""
*fr.YellowBalance -5/ -5: ""
*fr.YellowBalance -4/ -4: ""
*fr.YellowBalance -3/ -3: ""
*fr.YellowBalance -2/ -2: ""
*fr.YellowBalance -1/ -1: ""
*fr.YellowBalance 0/ 0: ""
*fr.YellowBalance +1/ +1: ""
*fr.YellowBalance +2/ +2: ""
*fr.YellowBalance +3/ +3: ""
*fr.YellowBalance +4/ +4: ""
*fr.YellowBalance +5/ +5: ""
*fr.Translation BlackBalance/Equilibre noir: ""
*fr.BlackBalance PrinterS/Paramètres de l'imprimante: ""
*fr.BlackBalance -5/ -5: ""
*fr.BlackBalance -4/ -4: ""
*fr.BlackBalance -3/ -3: ""
*fr.BlackBalance -2/ -2: ""
*fr.BlackBalance -1/ -1: ""
*fr.BlackBalance 0/ 0: ""
*fr.BlackBalance +1/ +1: ""
*fr.BlackBalance +2/ +2: ""
*fr.BlackBalance +3/ +3: ""
*fr.BlackBalance +4/ +4: ""
*fr.BlackBalance +5/ +5: ""
*fr.Translation ManualColor/Couleur manuelle: ""
*fr.Translation ManualRGBImage/Image RVB manuel: ""
*fr.ManualRGBImage PrinterS/Paramètres de l'imprimante: ""
*fr.ManualRGBImage Vivid/Vives: ""
*fr.ManualRGBImage sRGBDisplay/sRVB Ecran: ""
*fr.ManualRGBImage sRGBVivid/sRVB Vives: ""
*fr.ManualRGBImage DisplayRealBlack/Affichage - vrai noir: ""
*fr.ManualRGBImage Off/Hors Fonction: ""
*fr.Translation ManualRGBText/Texte RVB manuel: ""
*fr.ManualRGBText PrinterS/Paramètres de l'imprimante: ""
*fr.ManualRGBText Vivid/Vives: ""
*fr.ManualRGBText sRGBDisplay/sRVB Ecran: ""
*fr.ManualRGBText sRGBVivid/sRVB Vives: ""
*fr.ManualRGBText DisplayRealBlack/Affichage - vrai noir: ""
*fr.ManualRGBText Off/Hors Fonction: ""
*fr.Translation ManualRGBGraphics/Graphiques RVB manuel: ""
*fr.ManualRGBGraphics PrinterS/Paramètres de l'imprimante: ""
*fr.ManualRGBGraphics Vivid/Vives: ""
*fr.ManualRGBGraphics sRGBDisplay/sRVB Ecran: ""
*fr.ManualRGBGraphics sRGBVivid/sRVB Vives: ""
*fr.ManualRGBGraphics DisplayRealBlack/Affichage - vrai noir: ""
*fr.ManualRGBGraphics Off/Hors Fonction: ""
*fr.Translation ManualCMYK/CMYK manuel: ""
*fr.ManualCMYK PrinterS/Paramètres de l'imprimante: ""
*fr.ManualCMYK USCMYK/CMJN US: ""
*fr.ManualCMYK EuroCMYK/CMJN euro: ""
*fr.ManualCMYK VividCMYK/CMJN vive: ""
*fr.ManualCMYK Off/Hors Fonction: ""
*fr.Translation Paper/Papier: ""
*fr.Translation MediaType/Type Papier: ""
*fr.MediaType PrinterS/Paramètres de l'imprimante: ""
*fr.MediaType Plain/Papier Normal: ""
*fr.MediaType Transparency/Transparent: ""
*fr.MediaType Labels/Label (Paper): ""
*fr.MediaType Vinyl/Label (Vinyl): ""
*fr.MediaType Bond/Qualité: ""
*fr.MediaType Envelope/Enveloppe: ""
*fr.MediaType Letterhead/En-tête: ""
*fr.MediaType Preprint/Préimprimé: ""
*fr.MediaType Colored/Papier couleur: ""
*fr.MediaType Glossy/Glacé: ""
*fr.MediaType Light/Papier léger: ""
*fr.MediaType Heavy/Papier lourd: ""
*fr.MediaType Card/Bristol/Papier extra lourd: ""
*fr.MediaType Rough/Grenée/Coton: ""
*fr.MediaType Recycled/Recyclé: ""
*fr.MediaType HeavyGlossy/Glacé lourd: ""
*fr.MediaType RoughEnvelope/Enveloppe grenée: ""
*fr.MediaType Custom1/Personnalisé 1: ""
*fr.MediaType Custom2/Personnalisé 2: ""
*fr.MediaType Custom3/Personnalisé 3: ""
*fr.MediaType Custom4/Personnalisé 4: ""
*fr.MediaType Custom5/Personnalisé 5: ""
*fr.MediaType Custom6/Personnalisé 6: ""
*fr.Translation OutputBin/Réceptacle: ""
*fr.OutputBin PrinterS/Paramètres de l'imprimante: ""
*fr.OutputBin StandardBin/Réceptacle Standard: ""
*fr.OutputBin Bin1/Réceptacle 1: ""
*fr.OutputBin Bin2/Réceptacle 2: ""
*fr.OutputBin Bin3/Réceptacle 3: ""
*fr.OutputBin Bin4/Réceptacle 4: ""
*fr.OutputBin Bin5/Réceptacle 5: ""
*fr.Translation LexBlankPage/Imprimer pages vierges: ""
*fr.LexBlankPage PrinterS/Paramètres de l'imprimante: ""
*fr.LexBlankPage False/Hors Fonction: ""
*fr.LexBlankPage True/En Fonction: ""
*fr.Translation Finishing/Finition: ""
*fr.Translation Duplex/Reliure Recto Verso: ""
*fr.Duplex None/Hors Fonction: ""
*fr.Duplex DuplexNoTumble/Reliure Bords Longs: ""
*fr.Duplex DuplexTumble/Reliure Bords Courts: ""
*fr.Translation Collate/Assemblage: ""
*fr.Collate False/Hors Fonction: ""
*fr.Collate True/En Fonction: ""
*fr.Translation SepPages/Séparateurs: ""
*fr.SepPages PrinterS/Paramètres de l'imprimante: ""
*fr.SepPages NoneF/Hors Fonction: ""
*fr.SepPages Jobs/Entre les Documents: ""
*fr.SepPages Copies/Entre les Copies: ""
*fr.SepPages Pages/Entre les Pages: ""
*fr.Translation Offset/Pages Décalées: ""
*fr.Offset PrinterS/Paramètres de l'imprimante: ""
*fr.Offset None/Hors Fonction: ""
*fr.Offset Jobs/Entre les Documents: ""
*fr.Offset Copies/Entre les Copies: ""
*fr.Translation StapleJob/Travail Agrafé: ""
*fr.StapleJob PrinterS/Paramètres de l'imprimante: ""
*fr.StapleJob FalseM/Hors Fonction: ""
*fr.StapleJob TrueM/En Fonction: ""
*fr.Translation HolePunch/Perforation: ""
*fr.HolePunch PrinterS/Paramètres de l'imprimante: ""
*fr.HolePunch FalseM/Hors Fonction: ""
*fr.HolePunch 2Hole/2 perforations: ""
*fr.HolePunch 3Hole/3 perforations: ""
*fr.HolePunch 4Hole/4 perforations: ""
*fr.Translation SepSource/Alimentation Séparateur: ""
*fr.SepSource PrinterS/Paramètres de l'imprimante: ""
*fr.SepSource Tray1/Tiroir 1: ""
*fr.SepSource Tray2/Tiroir 2: ""
*fr.SepSource Tray3/Tiroir 3: ""
*fr.SepSource Tray4/Tiroir 4: ""
*fr.SepSource MultipurposeFeeder/Bac Multifonction: ""
*it.Translation Manufacturer/Lexmark: ""
*it.Translation ModelName/Lexmark X790 Series: ""
*it.Translation ShortNickName/Lexmark X790 Series: ""
*it.Translation NickName/Lexmark X790 Series: ""
*it.Translation PageSize/Dimensioni supporto: ""
*it.PageSize Letter/Letter: ""
*it.PageSize Legal/Legal: ""
*it.PageSize Oficio/Oficio (Messico): ""
*it.PageSize B5/JIS B5: ""
*it.PageSize A4/A4: ""
*it.PageSize Executive/Executive: ""
*it.PageSize A6/A6: ""
*it.PageSize A5/A5: ""
*it.PageSize Folio/Folio: ""
*it.PageSize Statement/Statement: ""
*it.PageSize Monarch/Busta 7 3/4: ""
*it.PageSize C4/Busta 9: ""
*it.PageSize Comm10/Busta 10: ""
*it.PageSize DL/Busta DL: ""
*it.PageSize C5/Busta C5: ""
*it.PageSize ISOB5/Busta B5: ""
*it.PageSize OthEnv/Altre buste: ""
*it.Translation InputSlot/Origine supporto: ""
*it.InputSlot Tray1/Vassoio 1: ""
*it.InputSlot Tray2/Vassoio 2: ""
*it.InputSlot Tray3/Vassoio 3: ""
*it.InputSlot Tray4/Vassoio 4: ""
*it.InputSlot MultipurposeFeeder/Alimentatore multiuso: ""
*it.InputSlot ManualPaper/Carta manuale: ""
*it.InputSlot ManualEnv/Busta Manuale: ""
*it.Translation InstallableOptions/Opzioni installabili: ""
*it.Translation OptOutputBins/Racc. di uscita: ""
*it.OptOutputBins StandardBin/Raccoglitore standard: ""
*it.OptOutputBins OBin1/Racc. di uscita 1: ""
*it.OptOutputBins OBin5/Racc. di uscita 5: ""
*it.Translation OptDuplex/Fronte/Retro: ""
*it.OptDuplex InstalledM/Installato: ""
*it.OptDuplex NotInstalledM/Non Installato: ""
*it.Translation OutputFinisher/Fascicolatore: ""
*it.OutputFinisher NotInstalledM/Non Installato: ""
*it.OutputFinisher StandardFinisher/Fascicolatore standard: ""
*it.Translation Trays/Vassoi: ""
*it.Trays Tray1/Vassoio 1: ""
*it.Trays Tray12/Vassoio 1+2: ""
*it.Trays Tray123/Vassoio 1+2+3: ""
*it.Trays Tray1234/Vassoio 1+2+3+4: ""
*it.Translation Quality/Qualità: ""
*it.Translation Resolution/Risoluzione: ""
*it.Resolution 2400x1200dpi/Qualità colore 4800: ""
*it.Resolution 1200dpi/1200 dpi: ""
*it.Translation TonerDarkness/Intensità del toner: ""
*it.TonerDarkness PrinterS/Impostazione stampante: ""
*it.TonerDarkness 1/1: ""
*it.TonerDarkness 2/2: ""
*it.TonerDarkness 3/3: ""
*it.TonerDarkness 4/4: ""
*it.TonerDarkness 5/5: ""
*it.Translation LexBrightness/Luminosità: ""
*it.LexBrightness PrinterS/Impostazione stampante: ""
*it.LexBrightness -6/ -6: ""
*it.LexBrightness -5/ -5: ""
*it.LexBrightness -4/ -4: ""
*it.LexBrightness -3/ -3: ""
*it.LexBrightness -2/ -2: ""
*it.LexBrightness -1/ -1: ""
*it.LexBrightness 0/ 0: ""
*it.LexBrightness +1/ +1: ""
*it.LexBrightness +2/ +2: ""
*it.LexBrightness +3/ +3: ""
*it.LexBrightness +4/ +4: ""
*it.LexBrightness +5/ +5: ""
*it.LexBrightness +6/ +6: ""
*it.Translation LexContrast/Contrasto: ""
*it.LexContrast PrinterS/Impostazione stampante: ""
*it.LexContrast 0/0: ""
*it.LexContrast 1/1: ""
*it.LexContrast 2/2: ""
*it.LexContrast 3/3: ""
*it.LexContrast 4/4: ""
*it.LexContrast 5/5: ""
*it.Translation LexSaturation/Saturazione: ""
*it.LexSaturation PrinterS/Impostazione stampante: ""
*it.LexSaturation 0/0: ""
*it.LexSaturation 1/1: ""
*it.LexSaturation 2/2: ""
*it.LexSaturation 3/3: ""
*it.LexSaturation 4/4: ""
*it.LexSaturation 5/5: ""
*it.Translation LexLineDetail/Migliora linee sottili: ""
*it.LexLineDetail PrinterS/Impostazione stampante: ""
*it.LexLineDetail FalseF/Disabilitato: ""
*it.LexLineDetail TrueF/Abilitato: ""
*it.Translation LexMirror/Speculare: ""
*it.LexMirror False/Disabilitato: ""
*it.LexMirror True/Abilitato: ""
*it.Translation Color/Colore: ""
*it.Translation MediaColor/Correzione Colore: ""
*it.MediaColor PrinterS/Impostazione stampante: ""
*it.MediaColor Auto/Automatico: ""
*it.MediaColor FalseM/Disabilitato: ""
*it.MediaColor Manual/Manuale: ""
*it.Translation ColorSaver/ColorSaver™: ""
*it.ColorSaver PrinterS/Impostazione stampante: ""
*it.ColorSaver FalseM/Disabilitato: ""
*it.ColorSaver TrueM/Abilitato: ""
*it.Translation BLW/Bianco e nero: ""
*it.BLW PrinterS/Impostazione stampante: ""
*it.BLW FalseM/Disabilitato: ""
*it.BLW TrueM/Abilitato: ""
*it.Translation ColorBalance/Bilanciamento colore: ""
*it.Translation CyanBalance/Bilanciamento Ciano: ""
*it.CyanBalance PrinterS/Impostazione stampante: ""
*it.CyanBalance -5/ -5: ""
*it.CyanBalance -4/ -4: ""
*it.CyanBalance -3/ -3: ""
*it.CyanBalance -2/ -2: ""
*it.CyanBalance -1/ -1: ""
*it.CyanBalance 0/ 0: ""
*it.CyanBalance +1/ +1: ""
*it.CyanBalance +2/ +2: ""
*it.CyanBalance +3/ +3: ""
*it.CyanBalance +4/ +4: ""
*it.CyanBalance +5/ +5: ""
*it.Translation MagentaBalance/Bilanciamento Magenta: ""
*it.MagentaBalance PrinterS/Impostazione stampante: ""
*it.MagentaBalance -5/ -5: ""
*it.MagentaBalance -4/ -4: ""
*it.MagentaBalance -3/ -3: ""
*it.MagentaBalance -2/ -2: ""
*it.MagentaBalance -1/ -1: ""
*it.MagentaBalance 0/ 0: ""
*it.MagentaBalance +1/ +1: ""
*it.MagentaBalance +2/ +2: ""
*it.MagentaBalance +3/ +3: ""
*it.MagentaBalance +4/ +4: ""
*it.MagentaBalance +5/ +5: ""
*it.Translation YellowBalance/Bilanciamento Giallo: ""
*it.YellowBalance PrinterS/Impostazione stampante: ""
*it.YellowBalance -5/ -5: ""
*it.YellowBalance -4/ -4: ""
*it.YellowBalance -3/ -3: ""
*it.YellowBalance -2/ -2: ""
*it.YellowBalance -1/ -1: ""
*it.YellowBalance 0/ 0: ""
*it.YellowBalance +1/ +1: ""
*it.YellowBalance +2/ +2: ""
*it.YellowBalance +3/ +3: ""
*it.YellowBalance +4/ +4: ""
*it.YellowBalance +5/ +5: ""
*it.Translation BlackBalance/Bilanciamento Nero: ""
*it.BlackBalance PrinterS/Impostazione stampante: ""
*it.BlackBalance -5/ -5: ""
*it.BlackBalance -4/ -4: ""
*it.BlackBalance -3/ -3: ""
*it.BlackBalance -2/ -2: ""
*it.BlackBalance -1/ -1: ""
*it.BlackBalance 0/ 0: ""
*it.BlackBalance +1/ +1: ""
*it.BlackBalance +2/ +2: ""
*it.BlackBalance +3/ +3: ""
*it.BlackBalance +4/ +4: ""
*it.BlackBalance +5/ +5: ""
*it.Translation ManualColor/Colore manuale: ""
*it.Translation ManualRGBImage/Immagine RGB manuale: ""
*it.ManualRGBImage PrinterS/Impostazione stampante: ""
*it.ManualRGBImage Vivid/Vivace: ""
*it.ManualRGBImage sRGBDisplay/Schermo sRGB: ""
*it.ManualRGBImage sRGBVivid/Vivace sRGB: ""
*it.ManualRGBImage DisplayRealBlack/Schermo - Nero effettivo: ""
*it.ManualRGBImage Off/Disabilitato: ""
*it.Translation ManualRGBText/Testo RGB manuale: ""
*it.ManualRGBText PrinterS/Impostazione stampante: ""
*it.ManualRGBText Vivid/Vivace: ""
*it.ManualRGBText sRGBDisplay/Schermo sRGB: ""
*it.ManualRGBText sRGBVivid/Vivace sRGB: ""
*it.ManualRGBText DisplayRealBlack/Schermo - Nero effettivo: ""
*it.ManualRGBText Off/Disabilitato: ""
*it.Translation ManualRGBGraphics/Grafica RGB manuale: ""
*it.ManualRGBGraphics PrinterS/Impostazione stampante: ""
*it.ManualRGBGraphics Vivid/Vivace: ""
*it.ManualRGBGraphics sRGBDisplay/Schermo sRGB: ""
*it.ManualRGBGraphics sRGBVivid/Vivace sRGB: ""
*it.ManualRGBGraphics DisplayRealBlack/Schermo - Nero effettivo: ""
*it.ManualRGBGraphics Off/Disabilitato: ""
*it.Translation ManualCMYK/CMYK manuale: ""
*it.ManualCMYK PrinterS/Impostazione stampante: ""
*it.ManualCMYK USCMYK/CMYK US: ""
*it.ManualCMYK EuroCMYK/CMYK Euro: ""
*it.ManualCMYK VividCMYK/CMYK vivace: ""
*it.ManualCMYK Off/Disabilitato: ""
*it.Translation Paper/Carta: ""
*it.Translation MediaType/Tipo di carta: ""
*it.MediaType PrinterS/Impostazione stampante: ""
*it.MediaType Plain/Carta normale: ""
*it.MediaType Transparency/Lucidi: ""
*it.MediaType Labels/Label (Paper): ""
*it.MediaType Vinyl/Label (Vinyl): ""
*it.MediaType Bond/Carta di qualità: ""
*it.MediaType Envelope/Busta: ""
*it.MediaType Letterhead/Carta intestata: ""
*it.MediaType Preprint/Prestampati: ""
*it.MediaType Colored/Carta colorata: ""
*it.MediaType Glossy/Lucida: ""
*it.MediaType Light/Carta leggera: ""
*it.MediaType Heavy/Carta pesante: ""
*it.MediaType Card/Cartoncino/Carta extra pesante: ""
*it.MediaType Rough/Ruvida/cotone: ""
*it.MediaType Recycled/Carta riciclata: ""
*it.MediaType HeavyGlossy/Carta lucida pesante: ""
*it.MediaType RoughEnvelope/Busta ruvida: ""
*it.MediaType Custom1/Carta person. tipo 1: ""
*it.MediaType Custom2/Carta person. tipo 2: ""
*it.MediaType Custom3/Carta person. tipo 3: ""
*it.MediaType Custom4/Carta person. tipo 4: ""
*it.MediaType Custom5/Carta person. tipo 5: ""
*it.MediaType Custom6/Carta person. tipo 6: ""
*it.Translation OutputBin/Racc. di uscita: ""
*it.OutputBin PrinterS/Impostazione stampante: ""
*it.OutputBin StandardBin/Raccoglitore standard: ""
*it.OutputBin Bin1/Racc. di uscita 1: ""
*it.OutputBin Bin2/Racc. di uscita 2: ""
*it.OutputBin Bin3/Racc. di uscita 3: ""
*it.OutputBin Bin4/Racc. di uscita 4: ""
*it.OutputBin Bin5/Racc. di uscita 5: ""
*it.Translation LexBlankPage/Stampa pagine vuote: ""
*it.LexBlankPage PrinterS/Impostazione stampante: ""
*it.LexBlankPage False/Disabilitato: ""
*it.LexBlankPage True/Abilitato: ""
*it.Translation Finishing/Fascicolazione: ""
*it.Translation Duplex/Fronte/Retro: ""
*it.Duplex None/Disabilitato: ""
*it.Duplex DuplexNoTumble/Lato lungo: ""
*it.Duplex DuplexTumble/Lato corto: ""
*it.Translation Collate/Fascicolazione: ""
*it.Collate False/Disabilitato: ""
*it.Collate True/Abilitato: ""
*it.Translation SepPages/Fogli separatori: ""
*it.SepPages PrinterS/Impostazione stampante: ""
*it.SepPages NoneF/Disabilitato: ""
*it.SepPages Jobs/Tra processi: ""
*it.SepPages Copies/Tra copie: ""
*it.SepPages Pages/Tra pagine: ""
*it.Translation Offset/Pagine separatrici: ""
*it.Offset PrinterS/Impostazione stampante: ""
*it.Offset None/Disabilitato: ""
*it.Offset Jobs/Tra processi: ""
*it.Offset Copies/Tra copie: ""
*it.Translation StapleJob/Processo cucitura: ""
*it.StapleJob PrinterS/Impostazione stampante: ""
*it.StapleJob FalseM/Disabilitato: ""
*it.StapleJob TrueM/Abilitato: ""
*it.Translation HolePunch/Perforazione: ""
*it.HolePunch PrinterS/Impostazione stampante: ""
*it.HolePunch FalseM/Disabilitato: ""
*it.HolePunch 2Hole/Perforazione 2 fori: ""
*it.HolePunch 3Hole/Perforazione 3 fori: ""
*it.HolePunch 4Hole/Perforazione 4 fori: ""
*it.Translation SepSource/Origine separatore: ""
*it.SepSource PrinterS/Impostazione stampante: ""
*it.SepSource Tray1/Vassoio 1: ""
*it.SepSource Tray2/Vassoio 2: ""
*it.SepSource Tray3/Vassoio 3: ""
*it.SepSource Tray4/Vassoio 4: ""
*it.SepSource MultipurposeFeeder/Alimentatore multiuso: ""
*pt.Translation Manufacturer/Lexmark: ""
*pt.Translation ModelName/Lexmark X790 Series: ""
*pt.Translation ShortNickName/Lexmark X790 Series: ""
*pt.Translation NickName/Lexmark X790 Series: ""
*pt.Translation PageSize/Tamanho da mídia: ""
*pt.PageSize Letter/Carta: ""
*pt.PageSize Legal/Oficio: ""
*pt.PageSize Oficio/Oficio (México): ""
*pt.PageSize B5/JIS B5: ""
*pt.PageSize A4/A4: ""
*pt.PageSize Executive/Executivo: ""
*pt.PageSize A6/A6: ""
*pt.PageSize A5/A5: ""
*pt.PageSize Folio/Oficio 2: ""
*pt.PageSize Statement/Declaração: ""
*pt.PageSize Monarch/Envelope 7 3/4: ""
*pt.PageSize C4/Envelope C9: ""
*pt.PageSize Comm10/Envelope C10: ""
*pt.PageSize DL/Envelope DL: ""
*pt.PageSize C5/Envelope C5: ""
*pt.PageSize ISOB5/Envelope B5: ""
*pt.PageSize OthEnv/Outros Envelopes: ""
*pt.Translation InputSlot/Origem da mídia: ""
*pt.InputSlot Tray1/Bandeja 1: ""
*pt.InputSlot Tray2/Bandeja 2: ""
*pt.InputSlot Tray3/Bandeja 3: ""
*pt.InputSlot Tray4/Bandeja 4: ""
*pt.InputSlot MultipurposeFeeder/Alimentador Multipropósito: ""
*pt.InputSlot ManualPaper/Papel Manual: ""
*pt.InputSlot ManualEnv/Envelope Manual: ""
*pt.Translation InstallableOptions/Opções instaláveis: ""
*pt.Translation OptOutputBins/Bandejas de Saída: ""
*pt.OptOutputBins StandardBin/Bandeja de Saída padrão: ""
*pt.OptOutputBins OBin1/1 Bandeja de Saída opcional: ""
*pt.OptOutputBins OBin5/5 Bandejas de Saída opcional: ""
*pt.Translation OptDuplex/Modo Duplex: ""
*pt.OptDuplex InstalledM/Instalada: ""
*pt.OptDuplex NotInstalledM/Não instalado: ""
*pt.Translation OutputFinisher/Acabamento de saída: ""
*pt.OutputFinisher NotInstalledM/Não instalado: ""
*pt.OutputFinisher StandardFinisher/Encadernador padrão: ""
*pt.Translation Trays/Bandejas: ""
*pt.Trays Tray1/Bandeja 1: ""
*pt.Trays Tray12/Bandejas 1+2: ""
*pt.Trays Tray123/Bandejas 1+2+3: ""
*pt.Trays Tray1234/Bandejas 1+2+3+4: ""
*pt.Translation Quality/Qualidade: ""
*pt.Translation Resolution/Resolução: ""
*pt.Resolution 2400x1200dpi/Qualidade de cores 4800: ""
*pt.Resolution 1200dpi/1200 dpi: ""
*pt.Translation TonerDarkness/Tonalidade de toner: ""
*pt.TonerDarkness PrinterS/Padrao da Impressora: ""
*pt.TonerDarkness 1/1: ""
*pt.TonerDarkness 2/2: ""
*pt.TonerDarkness 3/3: ""
*pt.TonerDarkness 4/4: ""
*pt.TonerDarkness 5/5: ""
*pt.Translation LexBrightness/Brilho: ""
*pt.LexBrightness PrinterS/Padrao da Impressora: ""
*pt.LexBrightness -6/ -6: ""
*pt.LexBrightness -5/ -5: ""
*pt.LexBrightness -4/ -4: ""
*pt.LexBrightness -3/ -3: ""
*pt.LexBrightness -2/ -2: ""
*pt.LexBrightness -1/ -1: ""
*pt.LexBrightness 0/ 0: ""
*pt.LexBrightness +1/ +1: ""
*pt.LexBrightness +2/ +2: ""
*pt.LexBrightness +3/ +3: ""
*pt.LexBrightness +4/ +4: ""
*pt.LexBrightness +5/ +5: ""
*pt.LexBrightness +6/ +6: ""
*pt.Translation LexContrast/Contraste: ""
*pt.LexContrast PrinterS/Padrao da Impressora: ""
*pt.LexContrast 0/0: ""
*pt.LexContrast 1/1: ""
*pt.LexContrast 2/2: ""
*pt.LexContrast 3/3: ""
*pt.LexContrast 4/4: ""
*pt.LexContrast 5/5: ""
*pt.Translation LexSaturation/Saturação: ""
*pt.LexSaturation PrinterS/Padrao da Impressora: ""
*pt.LexSaturation 0/0: ""
*pt.LexSaturation 1/1: ""
*pt.LexSaturation 2/2: ""
*pt.LexSaturation 3/3: ""
*pt.LexSaturation 4/4: ""
*pt.LexSaturation 5/5: ""
*pt.Translation LexLineDetail/Melhorar linhas finas: ""
*pt.LexLineDetail PrinterS/Padrao da Impressora: ""
*pt.LexLineDetail FalseF/Desligado: ""
*pt.LexLineDetail TrueF/Ativar: ""
*pt.Translation LexMirror/Espelhado: ""
*pt.LexMirror False/Desligado: ""
*pt.LexMirror True/Ativar: ""
*pt.Translation Color/Colorido: ""
*pt.Translation MediaColor/Correção de Cor: ""
*pt.MediaColor PrinterS/Padrao da Impressora: ""
*pt.MediaColor Auto/Automático: ""
*pt.MediaColor FalseM/Desligado: ""
*pt.MediaColor Manual/Manual: ""
*pt.Translation ColorSaver/ColorSaver™: ""
*pt.ColorSaver PrinterS/Padrao da Impressora: ""
*pt.ColorSaver FalseM/Desligado: ""
*pt.ColorSaver TrueM/Ativar: ""
*pt.Translation BLW/Preto & Branco: ""
*pt.BLW PrinterS/Padrao da Impressora: ""
*pt.BLW FalseM/Desligado: ""
*pt.BLW TrueM/Ativar: ""
*pt.Translation ColorBalance/Equilíbrio de cores: ""
*pt.Translation CyanBalance/EquilÌbrio de ciano: ""
*pt.CyanBalance PrinterS/Padrao da Impressora: ""
*pt.CyanBalance -5/ -5: ""
*pt.CyanBalance -4/ -4: ""
*pt.CyanBalance -3/ -3: ""
*pt.CyanBalance -2/ -2: ""
*pt.CyanBalance -1/ -1: ""
*pt.CyanBalance 0/ 0: ""
*pt.CyanBalance +1/ +1: ""
*pt.CyanBalance +2/ +2: ""
*pt.CyanBalance +3/ +3: ""
*pt.CyanBalance +4/ +4: ""
*pt.CyanBalance +5/ +5: ""
*pt.Translation MagentaBalance/EquilÌbrio de magenta: ""
*pt.MagentaBalance PrinterS/Padrao da Impressora: ""
*pt.MagentaBalance -5/ -5: ""
*pt.MagentaBalance -4/ -4: ""
*pt.MagentaBalance -3/ -3: ""
*pt.MagentaBalance -2/ -2: ""
*pt.MagentaBalance -1/ -1: ""
*pt.MagentaBalance 0/ 0: ""
*pt.MagentaBalance +1/ +1: ""
*pt.MagentaBalance +2/ +2: ""
*pt.MagentaBalance +3/ +3: ""
*pt.MagentaBalance +4/ +4: ""
*pt.MagentaBalance +5/ +5: ""
*pt.Translation YellowBalance/EquilÌbrio de amarelo: ""
*pt.YellowBalance PrinterS/Padrao da Impressora: ""
*pt.YellowBalance -5/ -5: ""
*pt.YellowBalance -4/ -4: ""
*pt.YellowBalance -3/ -3: ""
*pt.YellowBalance -2/ -2: ""
*pt.YellowBalance -1/ -1: ""
*pt.YellowBalance 0/ 0: ""
*pt.YellowBalance +1/ +1: ""
*pt.YellowBalance +2/ +2: ""
*pt.YellowBalance +3/ +3: ""
*pt.YellowBalance +4/ +4: ""
*pt.YellowBalance +5/ +5: ""
*pt.Translation BlackBalance/EquilÌbrio de preto: ""
*pt.BlackBalance PrinterS/Padrao da Impressora: ""
*pt.BlackBalance -5/ -5: ""
*pt.BlackBalance -4/ -4: ""
*pt.BlackBalance -3/ -3: ""
*pt.BlackBalance -2/ -2: ""
*pt.BlackBalance -1/ -1: ""
*pt.BlackBalance 0/ 0: ""
*pt.BlackBalance +1/ +1: ""
*pt.BlackBalance +2/ +2: ""
*pt.BlackBalance +3/ +3: ""
*pt.BlackBalance +4/ +4: ""
*pt.BlackBalance +5/ +5: ""
*pt.Translation ManualColor/Cor manual: ""
*pt.Translation ManualRGBImage/Manual Imagem RGB: ""
*pt.ManualRGBImage PrinterS/Padrao da Impressora: ""
*pt.ManualRGBImage Vivid/Cores vivas: ""
*pt.ManualRGBImage sRGBDisplay/Exibir sRGB: ""
*pt.ManualRGBImage sRGBVivid/Nítido sRGB: ""
*pt.ManualRGBImage DisplayRealBlack/Exibir - preto real: ""
*pt.ManualRGBImage Off/Desligado: ""
*pt.Translation ManualRGBText/Manual Texto RGB: ""
*pt.ManualRGBText PrinterS/Padrao da Impressora: ""
*pt.ManualRGBText Vivid/Cores vivas: ""
*pt.ManualRGBText sRGBDisplay/Exibir sRGB: ""
*pt.ManualRGBText sRGBVivid/Nítido sRGB: ""
*pt.ManualRGBText DisplayRealBlack/Exibir - preto real: ""
*pt.ManualRGBText Off/Desligado: ""
*pt.Translation ManualRGBGraphics/Manual Graficos RGB: ""
*pt.ManualRGBGraphics PrinterS/Padrao da Impressora: ""
*pt.ManualRGBGraphics Vivid/Cores vivas: ""
*pt.ManualRGBGraphics sRGBDisplay/Exibir sRGB: ""
*pt.ManualRGBGraphics sRGBVivid/Nítido sRGB: ""
*pt.ManualRGBGraphics DisplayRealBlack/Exibir - preto real: ""
*pt.ManualRGBGraphics Off/Desligado: ""
*pt.Translation ManualCMYK/CMYK manual: ""
*pt.ManualCMYK PrinterS/Padrao da Impressora: ""
*pt.ManualCMYK USCMYK/US CMYK: ""
*pt.ManualCMYK EuroCMYK/EURO CMYK: ""
*pt.ManualCMYK VividCMYK/CMYK Vivas: ""
*pt.ManualCMYK Off/Desligado: ""
*pt.Translation Paper/Papel: ""
*pt.Translation MediaType/Tipo de Papel: ""
*pt.MediaType PrinterS/Padrao da Impressora: ""
*pt.MediaType Plain/Papel normal: ""
*pt.MediaType Transparency/Transparência: ""
*pt.MediaType Labels/Etiqueta (Papel): ""
*pt.MediaType Vinyl/Etiqueta (Vinil): ""
*pt.MediaType Bond/Encorpado: ""
*pt.MediaType Envelope/Envelopes: ""
*pt.MediaType Letterhead/Timbrado: ""
*pt.MediaType Preprint/Pré-impresso: ""
*pt.MediaType Colored/Papel colorido: ""
*pt.MediaType Glossy/Brilhoso: ""
*pt.MediaType Light/Papel leve: ""
*pt.MediaType Heavy/Papel pesado: ""
*pt.MediaType Card/Cartão/Papel muito pesado: ""
*pt.MediaType Rough/Áspero/algodão: ""
*pt.MediaType Recycled/Reciclado: ""
*pt.MediaType HeavyGlossy/Pesado brilhante: ""
*pt.MediaType RoughEnvelope/Envelope Àspero: ""
*pt.MediaType Custom1/Person tipo 1: ""
*pt.MediaType Custom2/Person tipo 2: ""
*pt.MediaType Custom3/Person tipo 3: ""
*pt.MediaType Custom4/Person tipo 4: ""
*pt.MediaType Custom5/Person tipo 5: ""
*pt.MediaType Custom6/Person tipo 6: ""
*pt.Translation OutputBin/Bandejas de Saída: ""
*pt.OutputBin PrinterS/Padrao da Impressora: ""
*pt.OutputBin StandardBin/Bandeja de Saída padrão: ""
*pt.OutputBin Bin1/Bandeja de Saída 1: ""
*pt.OutputBin Bin2/Bandeja de Saída 2: ""
*pt.OutputBin Bin3/Bandeja de Saída 3: ""
*pt.OutputBin Bin4/Bandeja de Saída 4: ""
*pt.OutputBin Bin5/Bandeja de Saída 5: ""
*pt.Translation LexBlankPage/Imprimir páginas em branco: ""
*pt.LexBlankPage PrinterS/Padrao da Impressora: ""
*pt.LexBlankPage False/Desligado: ""
*pt.LexBlankPage True/Ativar: ""
*pt.Translation Finishing/Acabamento: ""
*pt.Translation Duplex/Modo Duplex: ""
*pt.Duplex None/Nenhum: ""
*pt.Duplex DuplexNoTumble/Margem Longa: ""
*pt.Duplex DuplexTumble/Duplex - Borda Curta: ""
*pt.Translation Collate/Agrupar: ""
*pt.Collate False/Desligado: ""
*pt.Collate True/Ativar: ""
*pt.Translation SepPages/Páginas Separadoras: ""
*pt.SepPages PrinterS/Padrao da Impressora: ""
*pt.SepPages NoneF/Nenhum: ""
*pt.SepPages Jobs/Entre Trabalhos: ""
*pt.SepPages Copies/Entre Cópias: ""
*pt.SepPages Pages/Entre Páginas: ""
*pt.Translation Offset/Separação de Trabalhos: ""
*pt.Offset PrinterS/Padrao da Impressora: ""
*pt.Offset None/Nenhum: ""
*pt.Offset Jobs/Entre Trabalhos: ""
*pt.Offset Copies/Entre Cópias: ""
*pt.Translation StapleJob/Grampeamento: ""
*pt.StapleJob PrinterS/Padrao da Impressora: ""
*pt.StapleJob FalseM/Desligado: ""
*pt.StapleJob TrueM/Ativar: ""
*pt.Translation HolePunch/Perfuração: ""
*pt.HolePunch PrinterS/Padrao da Impressora: ""
*pt.HolePunch FalseM/Desligado: ""
*pt.HolePunch 2Hole/2 furos: ""
*pt.HolePunch 3Hole/3 furos: ""
*pt.HolePunch 4Hole/4 furos: ""
*pt.Translation SepSource/Origem do Separador: ""
*pt.SepSource PrinterS/Padrao da Impressora: ""
*pt.SepSource Tray1/Bandeja 1: ""
*pt.SepSource Tray2/Bandeja 2: ""
*pt.SepSource Tray3/Bandeja 3: ""
*pt.SepSource Tray4/Bandeja 4: ""
*pt.SepSource MultipurposeFeeder/Alimentador Multipropósito: ""
*ja.Translation Manufacturer/Lexmark: ""
*ja.Translation ModelName/Lexmark X790 Series: ""
*ja.Translation ShortNickName/Lexmark X790 Series: ""
*ja.Translation NickName/Lexmark X790 Series: ""
*ja.Translation PageSize/用紙のサイズ: ""
*ja.PageSize Letter/レター: ""
*ja.PageSize Legal/リーガル: ""
*ja.PageSize Oficio/Oficio(メキシコ): ""
*ja.PageSize B5/JIS B5: ""
*ja.PageSize A4/A4: ""
*ja.PageSize Executive/エグゼクティブ: ""
*ja.PageSize A6/A6: ""
*ja.PageSize A5/A5: ""
*ja.PageSize Folio/フォリオ: ""
*ja.PageSize Statement/ステートメント: ""
*ja.PageSize Monarch/封筒(7 3/4): ""
*ja.PageSize C4/封筒(C9号): ""
*ja.PageSize Comm10/封筒(C10号): ""
*ja.PageSize DL/封筒(DL): ""
*ja.PageSize C5/封筒(C5号): ""
*ja.PageSize ISOB5/封筒(B5号): ""
*ja.PageSize OthEnv/その他: ""
*ja.Translation InputSlot/給紙源: ""
*ja.InputSlot Tray1/カセット 1: ""
*ja.InputSlot Tray2/カセット 2: ""
*ja.InputSlot Tray3/カセット 3: ""
*ja.InputSlot Tray4/カセット 4: ""
*ja.InputSlot MultipurposeFeeder/多目的フィーダ: ""
*ja.InputSlot ManualPaper/手差し用紙: ""
*ja.InputSlot ManualEnv/手差し封筒: ""
*ja.Translation InstallableOptions/インストール可能オプション: ""
*ja.Translation OptOutputBins/排紙トレイ: ""
*ja.OptOutputBins StandardBin/標準排紙トレイ: ""
*ja.OptOutputBins OBin1/オプションの排紙トレイ 1 個: ""
*ja.OptOutputBins OBin5/オプションの排紙トレイ 5 個: ""
*ja.Translation OptDuplex/両面印刷: ""
*ja.OptDuplex InstalledM/インストール済み: ""
*ja.OptDuplex NotInstalledM/インストールされていません: ""
*ja.Translation OutputFinisher/出力フィニッシャ: ""
*ja.OutputFinisher NotInstalledM/インストールされていません: ""
*ja.OutputFinisher StandardFinisher/標準フィニッシャ: ""
*ja.Translation Trays/給紙カセット: ""
*ja.Trays Tray1/カセット 1: ""
*ja.Trays Tray12/カセット 1+2: ""
*ja.Trays Tray123/カセット 1+2+3: ""
*ja.Trays Tray1234/カセット 1+2+3+4: ""
*ja.Translation Quality/品質: ""
*ja.Translation Resolution/解像度: ""
*ja.Resolution 2400x1200dpi/4800 色彩品質: ""
*ja.Resolution 1200dpi/1200 DPI: ""
*ja.Translation TonerDarkness/トナーの濃さ: ""
*ja.TonerDarkness PrinterS/プリンタ設定: ""
*ja.TonerDarkness 1/1: ""
*ja.TonerDarkness 2/2: ""
*ja.TonerDarkness 3/3: ""
*ja.TonerDarkness 4/4: ""
*ja.TonerDarkness 5/5: ""
*ja.Translation LexBrightness/明度: ""
*ja.LexBrightness PrinterS/プリンタ設定: ""
*ja.LexBrightness -6/ -6: ""
*ja.LexBrightness -5/ -5: ""
*ja.LexBrightness -4/ -4: ""
*ja.LexBrightness -3/ -3: ""
*ja.LexBrightness -2/ -2: ""
*ja.LexBrightness -1/ -1: ""
*ja.LexBrightness 0/ 0: ""
*ja.LexBrightness +1/ +1: ""
*ja.LexBrightness +2/ +2: ""
*ja.LexBrightness +3/ +3: ""
*ja.LexBrightness +4/ +4: ""
*ja.LexBrightness +5/ +5: ""
*ja.LexBrightness +6/ +6: ""
*ja.Translation LexContrast/コントラスト: ""
*ja.LexContrast PrinterS/プリンタ設定: ""
*ja.LexContrast 0/0: ""
*ja.LexContrast 1/1: ""
*ja.LexContrast 2/2: ""
*ja.LexContrast 3/3: ""
*ja.LexContrast 4/4: ""
*ja.LexContrast 5/5: ""
*ja.Translation LexSaturation/彩度: ""
*ja.LexSaturation PrinterS/プリンタ設定: ""
*ja.LexSaturation 0/0: ""
*ja.LexSaturation 1/1: ""
*ja.LexSaturation 2/2: ""
*ja.LexSaturation 3/3: ""
*ja.LexSaturation 4/4: ""
*ja.LexSaturation 5/5: ""
*ja.Translation LexLineDetail/細かい線を強調: ""
*ja.LexLineDetail PrinterS/プリンタ設定: ""
*ja.LexLineDetail FalseF/オフ: ""
*ja.LexLineDetail TrueF/オン: ""
*ja.Translation LexMirror/左右反転: ""
*ja.LexMirror False/オフ: ""
*ja.LexMirror True/オン: ""
*ja.Translation Color/カラー用紙: ""
*ja.Translation MediaColor/色補正 : ""
*ja.MediaColor PrinterS/プリンタ設定: ""
*ja.MediaColor Auto/自動: ""
*ja.MediaColor FalseM/オフ: ""
*ja.MediaColor Manual/手差し: ""
*ja.Translation ColorSaver/ColorSaver™: ""
*ja.ColorSaver PrinterS/プリンタ設定: ""
*ja.ColorSaver FalseM/オフ: ""
*ja.ColorSaver TrueM/オン: ""
*ja.Translation BLW/白黒(モノクロ): ""
*ja.BLW PrinterS/プリンタ設定: ""
*ja.BLW FalseM/オフ: ""
*ja.BLW TrueM/オン: ""
*ja.Translation ColorBalance/カラー バランス: ""
*ja.Translation CyanBalance/シアン バランス: ""
*ja.CyanBalance PrinterS/プリンタ設定: ""
*ja.CyanBalance -5/ -5: ""
*ja.CyanBalance -4/ -4: ""
*ja.CyanBalance -3/ -3: ""
*ja.CyanBalance -2/ -2: ""
*ja.CyanBalance -1/ -1: ""
*ja.CyanBalance 0/ 0: ""
*ja.CyanBalance +1/ +1: ""
*ja.CyanBalance +2/ +2: ""
*ja.CyanBalance +3/ +3: ""
*ja.CyanBalance +4/ +4: ""
*ja.CyanBalance +5/ +5: ""
*ja.Translation MagentaBalance/マゼンタ バランス: ""
*ja.MagentaBalance PrinterS/プリンタ設定: ""
*ja.MagentaBalance -5/ -5: ""
*ja.MagentaBalance -4/ -4: ""
*ja.MagentaBalance -3/ -3: ""
*ja.MagentaBalance -2/ -2: ""
*ja.MagentaBalance -1/ -1: ""
*ja.MagentaBalance 0/ 0: ""
*ja.MagentaBalance +1/ +1: ""
*ja.MagentaBalance +2/ +2: ""
*ja.MagentaBalance +3/ +3: ""
*ja.MagentaBalance +4/ +4: ""
*ja.MagentaBalance +5/ +5: ""
*ja.Translation YellowBalance/イエロー バランス: ""
*ja.YellowBalance PrinterS/プリンタ設定: ""
*ja.YellowBalance -5/ -5: ""
*ja.YellowBalance -4/ -4: ""
*ja.YellowBalance -3/ -3: ""
*ja.YellowBalance -2/ -2: ""
*ja.YellowBalance -1/ -1: ""
*ja.YellowBalance 0/ 0: ""
*ja.YellowBalance +1/ +1: ""
*ja.YellowBalance +2/ +2: ""
*ja.YellowBalance +3/ +3: ""
*ja.YellowBalance +4/ +4: ""
*ja.YellowBalance +5/ +5: ""
*ja.Translation BlackBalance/ブラック バランス: ""
*ja.BlackBalance PrinterS/プリンタ設定: ""
*ja.BlackBalance -5/ -5: ""
*ja.BlackBalance -4/ -4: ""
*ja.BlackBalance -3/ -3: ""
*ja.BlackBalance -2/ -2: ""
*ja.BlackBalance -1/ -1: ""
*ja.BlackBalance 0/ 0: ""
*ja.BlackBalance +1/ +1: ""
*ja.BlackBalance +2/ +2: ""
*ja.BlackBalance +3/ +3: ""
*ja.BlackBalance +4/ +4: ""
*ja.BlackBalance +5/ +5: ""
*ja.Translation ManualColor/手動カラー: ""
*ja.Translation ManualRGBImage/手動 RGB 画像: ""
*ja.ManualRGBImage PrinterS/プリンタ設定: ""
*ja.ManualRGBImage Vivid/鮮明: ""
*ja.ManualRGBImage sRGBDisplay/sRGB 表示: ""
*ja.ManualRGBImage sRGBVivid/sRGB 鮮明: ""
*ja.ManualRGBImage DisplayRealBlack/ディスプレイ - 純ブラック: ""
*ja.ManualRGBImage Off/オフ: ""
*ja.Translation ManualRGBText/手動 RGB テキスト: ""
*ja.ManualRGBText PrinterS/プリンタ設定: ""
*ja.ManualRGBText Vivid/鮮明: ""
*ja.ManualRGBText sRGBDisplay/sRGB 表示: ""
*ja.ManualRGBText sRGBVivid/sRGB 鮮明: ""
*ja.ManualRGBText DisplayRealBlack/ディスプレイ - 純ブラック: ""
*ja.ManualRGBText Off/オフ: ""
*ja.Translation ManualRGBGraphics/手動 RGB グラフィックス: ""
*ja.ManualRGBGraphics PrinterS/プリンタ設定: ""
*ja.ManualRGBGraphics Vivid/鮮明: ""
*ja.ManualRGBGraphics sRGBDisplay/sRGB 表示: ""
*ja.ManualRGBGraphics sRGBVivid/sRGB 鮮明: ""
*ja.ManualRGBGraphics DisplayRealBlack/ディスプレイ - 純ブラック: ""
*ja.ManualRGBGraphics Off/オフ: ""
*ja.Translation ManualCMYK/手動 CMYK: ""
*ja.ManualCMYK PrinterS/プリンタ設定: ""
*ja.ManualCMYK USCMYK/US CMYK: ""
*ja.ManualCMYK EuroCMYK/Euro CMYK: ""
*ja.ManualCMYK VividCMYK/鮮明 CMYK: ""
*ja.ManualCMYK Off/オフ: ""
*ja.Translation Paper/用紙: ""
*ja.Translation MediaType/用紙の種類: ""
*ja.MediaType PrinterS/プリンタ設定: ""
*ja.MediaType Plain/普通紙: ""
*ja.MediaType Transparency/OHPフィルム: ""
*ja.MediaType Labels/Label (Paper): ""
*ja.MediaType Vinyl/Label (Vinyl): ""
*ja.MediaType Bond/ボンド紙: ""
*ja.MediaType Envelope/封筒: ""
*ja.MediaType Letterhead/レターヘッド: ""
*ja.MediaType Preprint/プレプリント: ""
*ja.MediaType Colored/カラー紙: ""
*ja.MediaType Glossy/光沢: ""
*ja.MediaType Light/軽量紙: ""
*ja.MediaType Heavy/重量紙: ""
*ja.MediaType Card/厚紙 / 重量厚紙: ""
*ja.MediaType Rough/ラフ/コットン: ""
*ja.MediaType Recycled/再生紙: ""
*ja.MediaType HeavyGlossy/重く光沢がある: ""
*ja.MediaType RoughEnvelope/表面の粗い封筒: ""
*ja.MediaType Custom1/ユーザー定義種 1: ""
*ja.MediaType Custom2/ユーザー定義種 2: ""
*ja.MediaType Custom3/ユーザー定義種 3: ""
*ja.MediaType Custom4/ユーザー定義種 4: ""
*ja.MediaType Custom5/ユーザー定義種 5: ""
*ja.MediaType Custom6/ユーザー定義種 6: ""
*ja.Translation OutputBin/排紙トレイ: ""
*ja.OutputBin PrinterS/プリンタ設定: ""
*ja.OutputBin StandardBin/標準排紙トレイ: ""
*ja.OutputBin Bin1/排紙トレイ 1: ""
*ja.OutputBin Bin2/排紙トレイ 2: ""
*ja.OutputBin Bin3/排紙トレイ 3: ""
*ja.OutputBin Bin4/排紙トレイ 4: ""
*ja.OutputBin Bin5/排紙トレイ 5: ""
*ja.Translation LexBlankPage/空白ページを印刷: ""
*ja.LexBlankPage PrinterS/プリンタ設定: ""
*ja.LexBlankPage False/オフ: ""
*ja.LexBlankPage True/オン: ""
*ja.Translation Finishing/仕上げ: ""
*ja.Translation Duplex/両面印刷: ""
*ja.Duplex None/なし: ""
*ja.Duplex DuplexNoTumble/両面印刷 - 長辺: ""
*ja.Duplex DuplexTumble/両面印刷 - 短辺: ""
*ja.Translation Collate/ソーターで印刷: ""
*ja.Collate False/オフ: ""
*ja.Collate True/オン: ""
*ja.Translation SepPages/区切りページ: ""
*ja.SepPages PrinterS/プリンタ設定: ""
*ja.SepPages NoneF/なし: ""
*ja.SepPages Jobs/ジョブの間: ""
*ja.SepPages Copies/部の間: ""
*ja.SepPages Pages/ページの間: ""
*ja.Translation Offset/オフセット・ページ: ""
*ja.Offset PrinterS/プリンタ設定: ""
*ja.Offset None/なし: ""
*ja.Offset Jobs/ジョブの間: ""
*ja.Offset Copies/部の間: ""
*ja.Translation StapleJob/ホチキス付きジョブ: ""
*ja.StapleJob PrinterS/プリンタ設定: ""
*ja.StapleJob FalseM/オフ: ""
*ja.StapleJob TrueM/オン: ""
*ja.Translation HolePunch/ホール・パンチ: ""
*ja.HolePunch PrinterS/プリンタ設定: ""
*ja.HolePunch FalseM/オフ: ""
*ja.HolePunch 2Hole/2 穴: ""
*ja.HolePunch 3Hole/3 穴: ""
*ja.HolePunch 4Hole/4 穴: ""
*ja.Translation SepSource/区切りページ源: ""
*ja.SepSource PrinterS/プリンタ設定: ""
*ja.SepSource Tray1/カセット 1: ""
*ja.SepSource Tray2/カセット 2: ""
*ja.SepSource Tray3/カセット 3: ""
*ja.SepSource Tray4/カセット 4: ""
*ja.SepSource MultipurposeFeeder/多目的フィーダ: ""
*ko.Translation Manufacturer/Lexmark: ""
*ko.Translation ModelName/Lexmark X790 Series: ""
*ko.Translation ShortNickName/Lexmark X790 Series: ""
*ko.Translation NickName/Lexmark X790 Series: ""
*ko.Translation PageSize/용지 크기: ""
*ko.PageSize Letter/레터: ""
*ko.PageSize Legal/리갈: ""
*ko.PageSize Oficio/Oficio (멕시코): ""
*ko.PageSize B5/JIS B5: ""
*ko.PageSize A4/A4: ""
*ko.PageSize Executive/Executive: ""
*ko.PageSize A6/A6: ""
*ko.PageSize A5/A5: ""
*ko.PageSize Folio/폴리오: ""
*ko.PageSize Statement/공지: ""
*ko.PageSize Monarch/7 3/4 봉투: ""
*ko.PageSize C4/C9 봉투: ""
*ko.PageSize Comm10/C10 봉투: ""
*ko.PageSize DL/DL 봉투: ""
*ko.PageSize C5/C5 봉투: ""
*ko.PageSize ISOB5/B5 봉투: ""
*ko.PageSize OthEnv/기타 봉투: ""
*ko.Translation InputSlot/용지 급지대: ""
*ko.InputSlot Tray1/트레이 1: ""
*ko.InputSlot Tray2/트레이 2: ""
*ko.InputSlot Tray3/트레이 3: ""
*ko.InputSlot Tray4/트레이 4: ""
*ko.InputSlot MultipurposeFeeder/다용도 급지기: ""
*ko.InputSlot ManualPaper/수동 용지: ""
*ko.InputSlot ManualEnv/수동 봉투: ""
*ko.Translation InstallableOptions/설치 가능한 옵션: ""
*ko.Translation OptOutputBins/출력 빈: ""
*ko.OptOutputBins StandardBin/표준 빈: ""
*ko.OptOutputBins OBin1/1 추가 빈: ""
*ko.OptOutputBins OBin5/5 추가 빈: ""
*ko.Translation OptDuplex/양면: ""
*ko.OptDuplex InstalledM/설치됨: ""
*ko.OptDuplex NotInstalledM/설치 안됨: ""
*ko.Translation OutputFinisher/출력 마무리 장치 : ""
*ko.OutputFinisher NotInstalledM/설치 안됨: ""
*ko.OutputFinisher StandardFinisher/기본 마무리 장치: ""
*ko.Translation Trays/트레이: ""
*ko.Trays Tray1/트레이 1: ""
*ko.Trays Tray12/트레이 1+2: ""
*ko.Trays Tray123/트레이 1+2+3: ""
*ko.Trays Tray1234/트레이 1+2+3+4: ""
*ko.Translation Quality/품질: ""
*ko.Translation Resolution/해상도: ""
*ko.Resolution 2400x1200dpi/4800 색상 품질: ""
*ko.Resolution 1200dpi/1200 dpi: ""
*ko.Translation TonerDarkness/토너 어둡기: ""
*ko.TonerDarkness PrinterS/프린터 설정 : ""
*ko.TonerDarkness 1/1: ""
*ko.TonerDarkness 2/2: ""
*ko.TonerDarkness 3/3: ""
*ko.TonerDarkness 4/4: ""
*ko.TonerDarkness 5/5: ""
*ko.Translation LexBrightness/밝기: ""
*ko.LexBrightness PrinterS/프린터 설정 : ""
*ko.LexBrightness -6/ -6: ""
*ko.LexBrightness -5/ -5: ""
*ko.LexBrightness -4/ -4: ""
*ko.LexBrightness -3/ -3: ""
*ko.LexBrightness -2/ -2: ""
*ko.LexBrightness -1/ -1: ""
*ko.LexBrightness 0/ 0: ""
*ko.LexBrightness +1/ +1: ""
*ko.LexBrightness +2/ +2: ""
*ko.LexBrightness +3/ +3: ""
*ko.LexBrightness +4/ +4: ""
*ko.LexBrightness +5/ +5: ""
*ko.LexBrightness +6/ +6: ""
*ko.Translation LexContrast/대비: ""
*ko.LexContrast PrinterS/프린터 설정 : ""
*ko.LexContrast 0/0: ""
*ko.LexContrast 1/1: ""
*ko.LexContrast 2/2: ""
*ko.LexContrast 3/3: ""
*ko.LexContrast 4/4: ""
*ko.LexContrast 5/5: ""
*ko.Translation LexSaturation/채도: ""
*ko.LexSaturation PrinterS/프린터 설정 : ""
*ko.LexSaturation 0/0: ""
*ko.LexSaturation 1/1: ""
*ko.LexSaturation 2/2: ""
*ko.LexSaturation 3/3: ""
*ko.LexSaturation 4/4: ""
*ko.LexSaturation 5/5: ""
*ko.Translation LexLineDetail/미세 라인 강화: ""
*ko.LexLineDetail PrinterS/프린터 설정 : ""
*ko.LexLineDetail FalseF/꺼짐: ""
*ko.LexLineDetail TrueF/켜짐: ""
*ko.Translation LexMirror/미러: ""
*ko.LexMirror False/꺼짐: ""
*ko.LexMirror True/켜짐: ""
*ko.Translation Color/칼라: ""
*ko.Translation MediaColor/색상 교정: ""
*ko.MediaColor PrinterS/프린터 설정 : ""
*ko.MediaColor Auto/자동: ""
*ko.MediaColor FalseM/꺼짐: ""
*ko.MediaColor Manual/수동: ""
*ko.Translation ColorSaver/ColorSaver™: ""
*ko.ColorSaver PrinterS/프린터 설정 : ""
*ko.ColorSaver FalseM/꺼짐: ""
*ko.ColorSaver TrueM/켜짐: ""
*ko.Translation BLW/흑백: ""
*ko.BLW PrinterS/프린터 설정 : ""
*ko.BLW FalseM/꺼짐: ""
*ko.BLW TrueM/켜짐: ""
*ko.Translation ColorBalance/색상 균형: ""
*ko.Translation CyanBalance/청색 발란스: ""
*ko.CyanBalance PrinterS/프린터 설정 : ""
*ko.CyanBalance -5/ -5: ""
*ko.CyanBalance -4/ -4: ""
*ko.CyanBalance -3/ -3: ""
*ko.CyanBalance -2/ -2: ""
*ko.CyanBalance -1/ -1: ""
*ko.CyanBalance 0/ 0: ""
*ko.CyanBalance +1/ +1: ""
*ko.CyanBalance +2/ +2: ""
*ko.CyanBalance +3/ +3: ""
*ko.CyanBalance +4/ +4: ""
*ko.CyanBalance +5/ +5: ""
*ko.Translation MagentaBalance/적색 발란스: ""
*ko.MagentaBalance PrinterS/프린터 설정 : ""
*ko.MagentaBalance -5/ -5: ""
*ko.MagentaBalance -4/ -4: ""
*ko.MagentaBalance -3/ -3: ""
*ko.MagentaBalance -2/ -2: ""
*ko.MagentaBalance -1/ -1: ""
*ko.MagentaBalance 0/ 0: ""
*ko.MagentaBalance +1/ +1: ""
*ko.MagentaBalance +2/ +2: ""
*ko.MagentaBalance +3/ +3: ""
*ko.MagentaBalance +4/ +4: ""
*ko.MagentaBalance +5/ +5: ""
*ko.Translation YellowBalance/황색 발란스: ""
*ko.YellowBalance PrinterS/프린터 설정 : ""
*ko.YellowBalance -5/ -5: ""
*ko.YellowBalance -4/ -4: ""
*ko.YellowBalance -3/ -3: ""
*ko.YellowBalance -2/ -2: ""
*ko.YellowBalance -1/ -1: ""
*ko.YellowBalance 0/ 0: ""
*ko.YellowBalance +1/ +1: ""
*ko.YellowBalance +2/ +2: ""
*ko.YellowBalance +3/ +3: ""
*ko.YellowBalance +4/ +4: ""
*ko.YellowBalance +5/ +5: ""
*ko.Translation BlackBalance/흑색 발란스: ""
*ko.BlackBalance PrinterS/프린터 설정 : ""
*ko.BlackBalance -5/ -5: ""
*ko.BlackBalance -4/ -4: ""
*ko.BlackBalance -3/ -3: ""
*ko.BlackBalance -2/ -2: ""
*ko.BlackBalance -1/ -1: ""
*ko.BlackBalance 0/ 0: ""
*ko.BlackBalance +1/ +1: ""
*ko.BlackBalance +2/ +2: ""
*ko.BlackBalance +3/ +3: ""
*ko.BlackBalance +4/ +4: ""
*ko.BlackBalance +5/ +5: ""
*ko.Translation ManualColor/수동 색상: ""
*ko.Translation ManualRGBImage/수동 RGB 이미지: ""
*ko.ManualRGBImage PrinterS/프린터 설정 : ""
*ko.ManualRGBImage Vivid/Vivid: ""
*ko.ManualRGBImage sRGBDisplay/sRGB 화면: ""
*ko.ManualRGBImage sRGBVivid/sRGB Vivid: ""
*ko.ManualRGBImage DisplayRealBlack/디스플레이 - 순수한 검은색: ""
*ko.ManualRGBImage Off/꺼짐: ""
*ko.Translation ManualRGBText/수동 RGB 문자: ""
*ko.ManualRGBText PrinterS/프린터 설정 : ""
*ko.ManualRGBText Vivid/Vivid: ""
*ko.ManualRGBText sRGBDisplay/sRGB 화면: ""
*ko.ManualRGBText sRGBVivid/sRGB Vivid: ""
*ko.ManualRGBText DisplayRealBlack/디스플레이 - 순수한 검은색: ""
*ko.ManualRGBText Off/꺼짐: ""
*ko.Translation ManualRGBGraphics/수동 RGB 그래픽: ""
*ko.ManualRGBGraphics PrinterS/프린터 설정 : ""
*ko.ManualRGBGraphics Vivid/Vivid: ""
*ko.ManualRGBGraphics sRGBDisplay/sRGB 화면: ""
*ko.ManualRGBGraphics sRGBVivid/sRGB Vivid: ""
*ko.ManualRGBGraphics DisplayRealBlack/디스플레이 - 순수한 검은색: ""
*ko.ManualRGBGraphics Off/꺼짐: ""
*ko.Translation ManualCMYK/수동 CMYK: ""
*ko.ManualCMYK PrinterS/프린터 설정 : ""
*ko.ManualCMYK USCMYK/US CMYK: ""
*ko.ManualCMYK EuroCMYK/Euro CMYK: ""
*ko.ManualCMYK VividCMYK/Vivid CMYK: ""
*ko.ManualCMYK Off/꺼짐: ""
*ko.Translation Paper/용지: ""
*ko.Translation MediaType/용지 유형: ""
*ko.MediaType PrinterS/프린터 설정 : ""
*ko.MediaType Plain/일반 용지: ""
*ko.MediaType Transparency/투명 용지: ""
*ko.MediaType Labels/라벨(용지): ""
*ko.MediaType Vinyl/라벨(비닐): ""
*ko.MediaType Bond/본드: ""
*ko.MediaType Envelope/봉투: ""
*ko.MediaType Letterhead/레터헤드: ""
*ko.MediaType Preprint/양면지: ""
*ko.MediaType Colored/컬러 용지: ""
*ko.MediaType Glossy/광택지: ""
*ko.MediaType Light/가벼운 용지: ""
*ko.MediaType Heavy/무거운 용지: ""
*ko.MediaType Card/카드 스톡/초중량 용지: ""
*ko.MediaType Rough/거친 용지/면지: ""
*ko.MediaType Recycled/재활용: ""
*ko.MediaType HeavyGlossy/중량 광택지: ""
*ko.MediaType RoughEnvelope/거친 봉투: ""
*ko.MediaType Custom1/사용자 양식 1: ""
*ko.MediaType Custom2/사용자 양식 2: ""
*ko.MediaType Custom3/사용자 양식 3: ""
*ko.MediaType Custom4/사용자 양식 4: ""
*ko.MediaType Custom5/사용자 양식 5: ""
*ko.MediaType Custom6/사용자 양식 6: ""
*ko.Translation OutputBin/출력 빈: ""
*ko.OutputBin PrinterS/프린터 설정 : ""
*ko.OutputBin StandardBin/표준 빈: ""
*ko.OutputBin Bin1/빈 1: ""
*ko.OutputBin Bin2/빈 2: ""
*ko.OutputBin Bin3/빈 3: ""
*ko.OutputBin Bin4/빈 4: ""
*ko.OutputBin Bin5/빈 5: ""
*ko.Translation LexBlankPage/빈 페이지 인쇄: ""
*ko.LexBlankPage PrinterS/프린터 설정 : ""
*ko.LexBlankPage False/꺼짐: ""
*ko.LexBlankPage True/켜짐: ""
*ko.Translation Finishing/마무리: ""
*ko.Translation Duplex/양면: ""
*ko.Duplex None/없음: ""
*ko.Duplex DuplexNoTumble/양면-긴 가장자리: ""
*ko.Duplex DuplexTumble/양면-짧은 가장자리: ""
*ko.Translation Collate/콜레이트: ""
*ko.Collate False/꺼짐: ""
*ko.Collate True/켜짐: ""
*ko.Translation SepPages/페이지 분리기: ""
*ko.SepPages PrinterS/프린터 설정 : ""
*ko.SepPages NoneF/없음: ""
*ko.SepPages Jobs/작업 사이: ""
*ko.SepPages Copies/인쇄 사이: ""
*ko.SepPages Pages/페이지 사이: ""
*ko.Translation Offset/오프셋 페이지: ""
*ko.Offset PrinterS/프린터 설정 : ""
*ko.Offset None/없음: ""
*ko.Offset Jobs/작업 사이: ""
*ko.Offset Copies/인쇄 사이: ""
*ko.Translation StapleJob/스테이플 작업: ""
*ko.StapleJob PrinterS/프린터 설정 : ""
*ko.StapleJob FalseM/꺼짐: ""
*ko.StapleJob TrueM/켜짐: ""
*ko.Translation HolePunch/홀 펀치: ""
*ko.HolePunch PrinterS/프린터 설정 : ""
*ko.HolePunch FalseM/꺼짐: ""
*ko.HolePunch 2Hole/2홀: ""
*ko.HolePunch 3Hole/3홀: ""
*ko.HolePunch 4Hole/4홀: ""
*ko.Translation SepSource/자원 분리기: ""
*ko.SepSource PrinterS/프린터 설정 : ""
*ko.SepSource Tray1/트레이 1: ""
*ko.SepSource Tray2/트레이 2: ""
*ko.SepSource Tray3/트레이 3: ""
*ko.SepSource Tray4/트레이 4: ""
*ko.SepSource MultipurposeFeeder/다용도 급지기: ""
*zh_CN.Translation Manufacturer/Lexmark: ""
*zh_CN.Translation ModelName/Lexmark X790 Series: ""
*zh_CN.Translation ShortNickName/Lexmark X790 Series: ""
*zh_CN.Translation NickName/Lexmark X790 Series: ""
*zh_CN.Translation PageSize/介质尺寸: ""
*zh_CN.PageSize Letter/信纸: ""
*zh_CN.PageSize Legal/标准法律用纸: ""
*zh_CN.PageSize Oficio/Oficio(墨西哥): ""
*zh_CN.PageSize B5/JIS B5: ""
*zh_CN.PageSize A4/A4: ""
*zh_CN.PageSize Executive/实用纸张: ""
*zh_CN.PageSize A6/A6: ""
*zh_CN.PageSize A5/A5: ""
*zh_CN.PageSize Folio/对开纸: ""
*zh_CN.PageSize Statement/报表: ""
*zh_CN.PageSize Monarch/7 3/4 信封: ""
*zh_CN.PageSize C4/C9 信封: ""
*zh_CN.PageSize Comm10/C10 信封: ""
*zh_CN.PageSize DL/DL 信封: ""
*zh_CN.PageSize C5/C5 信封: ""
*zh_CN.PageSize ISOB5/B5 信封: ""
*zh_CN.PageSize OthEnv/其他信封: ""
*zh_CN.Translation InputSlot/介质来源: ""
*zh_CN.InputSlot Tray1/进纸匣 1: ""
*zh_CN.InputSlot Tray2/进纸匣 2: ""
*zh_CN.InputSlot Tray3/进纸匣 3: ""
*zh_CN.InputSlot Tray4/进纸匣 4: ""
*zh_CN.InputSlot MultipurposeFeeder/多功能进纸器: ""
*zh_CN.InputSlot ManualPaper/手动纸张: ""
*zh_CN.InputSlot ManualEnv/手动信封: ""
*zh_CN.Translation InstallableOptions/可安装的选项: ""
*zh_CN.Translation OptOutputBins/接纸架: ""
*zh_CN.OptOutputBins StandardBin/标准接纸架: ""
*zh_CN.OptOutputBins OBin1/1 个接纸架选件: ""
*zh_CN.OptOutputBins OBin5/5 个接纸架选件: ""
*zh_CN.Translation OptDuplex/双面打印: ""
*zh_CN.OptDuplex InstalledM/已安装: ""
*zh_CN.OptDuplex NotInstalledM/未安装: ""
*zh_CN.Translation OutputFinisher/输出分页器: ""
*zh_CN.OutputFinisher NotInstalledM/未安装: ""
*zh_CN.OutputFinisher StandardFinisher/标准装订完成器: ""
*zh_CN.Translation Trays/进纸匣: ""
*zh_CN.Trays Tray1/进纸匣 1: ""
*zh_CN.Trays Tray12/进纸匣 1+2: ""
*zh_CN.Trays Tray123/进纸匣 1+2+3: ""
*zh_CN.Trays Tray1234/进纸匣 1+2+3+4: ""
*zh_CN.Translation Quality/质量: ""
*zh_CN.Translation Resolution/分辨率: ""
*zh_CN.Resolution 2400x1200dpi/4800 彩色质量: ""
*zh_CN.Resolution 1200dpi/1200 dpi: ""
*zh_CN.Translation TonerDarkness/鼓粉浓度: ""
*zh_CN.TonerDarkness PrinterS/打印机设置: ""
*zh_CN.TonerDarkness 1/1: ""
*zh_CN.TonerDarkness 2/2: ""
*zh_CN.TonerDarkness 3/3: ""
*zh_CN.TonerDarkness 4/4: ""
*zh_CN.TonerDarkness 5/5: ""
*zh_CN.Translation LexBrightness/明亮度: ""
*zh_CN.LexBrightness PrinterS/打印机设置: ""
*zh_CN.LexBrightness -6/ -6: ""
*zh_CN.LexBrightness -5/ -5: ""
*zh_CN.LexBrightness -4/ -4: ""
*zh_CN.LexBrightness -3/ -3: ""
*zh_CN.LexBrightness -2/ -2: ""
*zh_CN.LexBrightness -1/ -1: ""
*zh_CN.LexBrightness 0/ 0: ""
*zh_CN.LexBrightness +1/ +1: ""
*zh_CN.LexBrightness +2/ +2: ""
*zh_CN.LexBrightness +3/ +3: ""
*zh_CN.LexBrightness +4/ +4: ""
*zh_CN.LexBrightness +5/ +5: ""
*zh_CN.LexBrightness +6/ +6: ""
*zh_CN.Translation LexContrast/对比度: ""
*zh_CN.LexContrast PrinterS/打印机设置: ""
*zh_CN.LexContrast 0/0: ""
*zh_CN.LexContrast 1/1: ""
*zh_CN.LexContrast 2/2: ""
*zh_CN.LexContrast 3/3: ""
*zh_CN.LexContrast 4/4: ""
*zh_CN.LexContrast 5/5: ""
*zh_CN.Translation LexSaturation/饱和度: ""
*zh_CN.LexSaturation PrinterS/打印机设置: ""
*zh_CN.LexSaturation 0/0: ""
*zh_CN.LexSaturation 1/1: ""
*zh_CN.LexSaturation 2/2: ""
*zh_CN.LexSaturation 3/3: ""
*zh_CN.LexSaturation 4/4: ""
*zh_CN.LexSaturation 5/5: ""
*zh_CN.Translation LexLineDetail/增强细线: ""
*zh_CN.LexLineDetail PrinterS/打印机设置: ""
*zh_CN.LexLineDetail FalseF/关: ""
*zh_CN.LexLineDetail TrueF/开: ""
*zh_CN.Translation LexMirror/镜像: ""
*zh_CN.LexMirror False/关: ""
*zh_CN.LexMirror True/开: ""
*zh_CN.Translation Color/颜色: ""
*zh_CN.Translation MediaColor/颜色修正: ""
*zh_CN.MediaColor PrinterS/打印机设置: ""
*zh_CN.MediaColor Auto/自动: ""
*zh_CN.MediaColor FalseM/关: ""
*zh_CN.MediaColor Manual/手动: ""
*zh_CN.Translation ColorSaver/ColorSaver™: ""
*zh_CN.ColorSaver PrinterS/打印机设置: ""
*zh_CN.ColorSaver FalseM/关: ""
*zh_CN.ColorSaver TrueM/开: ""
*zh_CN.Translation BLW/黑色和白色: ""
*zh_CN.BLW PrinterS/打印机设置: ""
*zh_CN.BLW FalseM/关: ""
*zh_CN.BLW TrueM/开: ""
*zh_CN.Translation ColorBalance/颜色平衡: ""
*zh_CN.Translation CyanBalance/青色平衡: ""
*zh_CN.CyanBalance PrinterS/打印机设置: ""
*zh_CN.CyanBalance -5/ -5: ""
*zh_CN.CyanBalance -4/ -4: ""
*zh_CN.CyanBalance -3/ -3: ""
*zh_CN.CyanBalance -2/ -2: ""
*zh_CN.CyanBalance -1/ -1: ""
*zh_CN.CyanBalance 0/ 0: ""
*zh_CN.CyanBalance +1/ +1: ""
*zh_CN.CyanBalance +2/ +2: ""
*zh_CN.CyanBalance +3/ +3: ""
*zh_CN.CyanBalance +4/ +4: ""
*zh_CN.CyanBalance +5/ +5: ""
*zh_CN.Translation MagentaBalance/品红色平衡: ""
*zh_CN.MagentaBalance PrinterS/打印机设置: ""
*zh_CN.MagentaBalance -5/ -5: ""
*zh_CN.MagentaBalance -4/ -4: ""
*zh_CN.MagentaBalance -3/ -3: ""
*zh_CN.MagentaBalance -2/ -2: ""
*zh_CN.MagentaBalance -1/ -1: ""
*zh_CN.MagentaBalance 0/ 0: ""
*zh_CN.MagentaBalance +1/ +1: ""
*zh_CN.MagentaBalance +2/ +2: ""
*zh_CN.MagentaBalance +3/ +3: ""
*zh_CN.MagentaBalance +4/ +4: ""
*zh_CN.MagentaBalance +5/ +5: ""
*zh_CN.Translation YellowBalance/黄色平衡: ""
*zh_CN.YellowBalance PrinterS/打印机设置: ""
*zh_CN.YellowBalance -5/ -5: ""
*zh_CN.YellowBalance -4/ -4: ""
*zh_CN.YellowBalance -3/ -3: ""
*zh_CN.YellowBalance -2/ -2: ""
*zh_CN.YellowBalance -1/ -1: ""
*zh_CN.YellowBalance 0/ 0: ""
*zh_CN.YellowBalance +1/ +1: ""
*zh_CN.YellowBalance +2/ +2: ""
*zh_CN.YellowBalance +3/ +3: ""
*zh_CN.YellowBalance +4/ +4: ""
*zh_CN.YellowBalance +5/ +5: ""
*zh_CN.Translation BlackBalance/黑色平衡: ""
*zh_CN.BlackBalance PrinterS/打印机设置: ""
*zh_CN.BlackBalance -5/ -5: ""
*zh_CN.BlackBalance -4/ -4: ""
*zh_CN.BlackBalance -3/ -3: ""
*zh_CN.BlackBalance -2/ -2: ""
*zh_CN.BlackBalance -1/ -1: ""
*zh_CN.BlackBalance 0/ 0: ""
*zh_CN.BlackBalance +1/ +1: ""
*zh_CN.BlackBalance +2/ +2: ""
*zh_CN.BlackBalance +3/ +3: ""
*zh_CN.BlackBalance +4/ +4: ""
*zh_CN.BlackBalance +5/ +5: ""
*zh_CN.Translation ManualColor/手动颜色: ""
*zh_CN.Translation ManualRGBImage/手动 RGB 图象 : ""
*zh_CN.ManualRGBImage PrinterS/打印机设置: ""
*zh_CN.ManualRGBImage Vivid/生动: ""
*zh_CN.ManualRGBImage sRGBDisplay/sRGB 显示: ""
*zh_CN.ManualRGBImage sRGBVivid/sRGB 逼真: ""
*zh_CN.ManualRGBImage DisplayRealBlack/显示-纯黑色: ""
*zh_CN.ManualRGBImage Off/关: ""
*zh_CN.Translation ManualRGBText/手动 RGB 文本: ""
*zh_CN.ManualRGBText PrinterS/打印机设置: ""
*zh_CN.ManualRGBText Vivid/生动: ""
*zh_CN.ManualRGBText sRGBDisplay/sRGB 显示: ""
*zh_CN.ManualRGBText sRGBVivid/sRGB 逼真: ""
*zh_CN.ManualRGBText DisplayRealBlack/显示-纯黑色: ""
*zh_CN.ManualRGBText Off/关: ""
*zh_CN.Translation ManualRGBGraphics/手动 RGB 图形: ""
*zh_CN.ManualRGBGraphics PrinterS/打印机设置: ""
*zh_CN.ManualRGBGraphics Vivid/生动: ""
*zh_CN.ManualRGBGraphics sRGBDisplay/sRGB 显示: ""
*zh_CN.ManualRGBGraphics sRGBVivid/sRGB 逼真: ""
*zh_CN.ManualRGBGraphics DisplayRealBlack/显示-纯黑色: ""
*zh_CN.ManualRGBGraphics Off/关: ""
*zh_CN.Translation ManualCMYK/手动 CMYK: ""
*zh_CN.ManualCMYK PrinterS/打印机设置: ""
*zh_CN.ManualCMYK USCMYK/US CMYK: ""
*zh_CN.ManualCMYK EuroCMYK/Euro CMYK: ""
*zh_CN.ManualCMYK VividCMYK/逼真 CMYK: ""
*zh_CN.ManualCMYK Off/关: ""
*zh_CN.Translation Paper/纸张: ""
*zh_CN.Translation MediaType/纸张类型: ""
*zh_CN.MediaType PrinterS/打印机设置: ""
*zh_CN.MediaType Plain/普通纸张: ""
*zh_CN.MediaType Transparency/透明胶片: ""
*zh_CN.MediaType Labels/标签(纸张): ""
*zh_CN.MediaType Vinyl/标签(乙烯基): ""
*zh_CN.MediaType Bond/铜版纸: ""
*zh_CN.MediaType Envelope/信封: ""
*zh_CN.MediaType Letterhead/信签: ""
*zh_CN.MediaType Preprint/预印纸: ""
*zh_CN.MediaType Colored/彩色纸: ""
*zh_CN.MediaType Glossy/光面纸: ""
*zh_CN.MediaType Light/轻质纸张: ""
*zh_CN.MediaType Heavy/重质纸张: ""
*zh_CN.MediaType Card/卡片纸/特重纸: ""
*zh_CN.MediaType Rough/粗糙/棉纸: ""
*zh_CN.MediaType Recycled/再生纸: ""
*zh_CN.MediaType HeavyGlossy/重质光面纸: ""
*zh_CN.MediaType RoughEnvelope/粗糙信封: ""
*zh_CN.MediaType Custom1/定制类型 1: ""
*zh_CN.MediaType Custom2/定制类型 2: ""
*zh_CN.MediaType Custom3/定制类型 3: ""
*zh_CN.MediaType Custom4/定制类型 4: ""
*zh_CN.MediaType Custom5/定制类型 5: ""
*zh_CN.MediaType Custom6/定制类型 6: ""
*zh_CN.Translation OutputBin/接纸架: ""
*zh_CN.OutputBin PrinterS/打印机设置: ""
*zh_CN.OutputBin StandardBin/标准接纸架: ""
*zh_CN.OutputBin Bin1/接纸架 1: ""
*zh_CN.OutputBin Bin2/接纸架 2: ""
*zh_CN.OutputBin Bin3/接纸架 3: ""
*zh_CN.OutputBin Bin4/接纸架 4: ""
*zh_CN.OutputBin Bin5/接纸架 5: ""
*zh_CN.Translation LexBlankPage/打印空白页: ""
*zh_CN.LexBlankPage PrinterS/打印机设置: ""
*zh_CN.LexBlankPage False/关: ""
*zh_CN.LexBlankPage True/开: ""
*zh_CN.Translation Finishing/输出: ""
*zh_CN.Translation Duplex/双面打印: ""
*zh_CN.Duplex None/无: ""
*zh_CN.Duplex DuplexNoTumble/双面打印 - 长边: ""
*zh_CN.Duplex DuplexTumble/双面打印 - 短边: ""
*zh_CN.Translation Collate/逐份打印: ""
*zh_CN.Collate False/关: ""
*zh_CN.Collate True/开: ""
*zh_CN.Translation SepPages/分隔页: ""
*zh_CN.SepPages PrinterS/打印机设置: ""
*zh_CN.SepPages NoneF/无: ""
*zh_CN.SepPages Jobs/任务之间: ""
*zh_CN.SepPages Copies/副本之间: ""
*zh_CN.SepPages Pages/页之间: ""
*zh_CN.Translation Offset/偏移页: ""
*zh_CN.Offset PrinterS/打印机设置: ""
*zh_CN.Offset None/无: ""
*zh_CN.Offset Jobs/任务之间: ""
*zh_CN.Offset Copies/副本之间: ""
*zh_CN.Translation StapleJob/装订作业: ""
*zh_CN.StapleJob PrinterS/打印机设置: ""
*zh_CN.StapleJob FalseM/关: ""
*zh_CN.StapleJob TrueM/开: ""
*zh_CN.Translation HolePunch/打孔: ""
*zh_CN.HolePunch PrinterS/打印机设置: ""
*zh_CN.HolePunch FalseM/关: ""
*zh_CN.HolePunch 2Hole/2 个孔: ""
*zh_CN.HolePunch 3Hole/3 孔: ""
*zh_CN.HolePunch 4Hole/4 孔: ""
*zh_CN.Translation SepSource/分隔纸源: ""
*zh_CN.SepSource PrinterS/打印机设置: ""
*zh_CN.SepSource Tray1/进纸匣 1: ""
*zh_CN.SepSource Tray2/进纸匣 2: ""
*zh_CN.SepSource Tray3/进纸匣 3: ""
*zh_CN.SepSource Tray4/进纸匣 4: ""
*zh_CN.SepSource MultipurposeFeeder/多功能进纸器: ""
*zh_TW.Translation Manufacturer/Lexmark: ""
*zh_TW.Translation ModelName/Lexmark X790 Series: ""
*zh_TW.Translation ShortNickName/Lexmark X790 Series: ""
*zh_TW.Translation NickName/Lexmark X790 Series: ""
*zh_TW.Translation PageSize/材質尺寸: ""
*zh_TW.PageSize Letter/Letter: ""
*zh_TW.PageSize Legal/Legal: ""
*zh_TW.PageSize Oficio/Oficio(墨西哥): ""
*zh_TW.PageSize B5/JIS B5: ""
*zh_TW.PageSize A4/A4: ""
*zh_TW.PageSize Executive/Executive: ""
*zh_TW.PageSize A6/A6: ""
*zh_TW.PageSize A5/A5: ""
*zh_TW.PageSize Folio/Folio 紙張: ""
*zh_TW.PageSize Statement/Statement 紙張: ""
*zh_TW.PageSize Monarch/7 3/4 信封: ""
*zh_TW.PageSize C4/9 號信封: ""
*zh_TW.PageSize Comm10/C10 號信封: ""
*zh_TW.PageSize DL/DL 信封: ""
*zh_TW.PageSize C5/C5 信封: ""
*zh_TW.PageSize ISOB5/B5 信封: ""
*zh_TW.PageSize OthEnv/其它信封: ""
*zh_TW.Translation InputSlot/材質來源: ""
*zh_TW.InputSlot Tray1/裝紙匣 1: ""
*zh_TW.InputSlot Tray2/裝紙匣 2: ""
*zh_TW.InputSlot Tray3/裝紙匣 3: ""
*zh_TW.InputSlot Tray4/裝紙匣 4: ""
*zh_TW.InputSlot MultipurposeFeeder/多用途送紙器: ""
*zh_TW.InputSlot ManualPaper/手動送紙: ""
*zh_TW.InputSlot ManualEnv/手動信封: ""
*zh_TW.Translation InstallableOptions/可安裝的選項: ""
*zh_TW.Translation OptOutputBins/出紙架: ""
*zh_TW.OptOutputBins StandardBin/標準送紙匣: ""
*zh_TW.OptOutputBins OBin1/1 個選購性送紙匣: ""
*zh_TW.OptOutputBins OBin5/5 個選購性送紙匣: ""
*zh_TW.Translation OptDuplex/雙面列印: ""
*zh_TW.OptDuplex InstalledM/已安裝: ""
*zh_TW.OptDuplex NotInstalledM/未安裝: ""
*zh_TW.Translation OutputFinisher/輸出分頁裝訂器: ""
*zh_TW.OutputFinisher NotInstalledM/未安裝: ""
*zh_TW.OutputFinisher StandardFinisher/標準分頁裝訂器: ""
*zh_TW.Translation Trays/裝紙匣: ""
*zh_TW.Trays Tray1/裝紙匣 1: ""
*zh_TW.Trays Tray12/裝紙匣 1+2: ""
*zh_TW.Trays Tray123/裝紙匣 1+2+3: ""
*zh_TW.Trays Tray1234/裝紙匣 1+2+3+4: ""
*zh_TW.Translation Quality/品質: ""
*zh_TW.Translation Resolution/解析度: ""
*zh_TW.Resolution 2400x1200dpi/4800 色彩品質: ""
*zh_TW.Resolution 1200dpi/1200 dpi: ""
*zh_TW.Translation TonerDarkness/碳粉明暗度: ""
*zh_TW.TonerDarkness PrinterS/印表機設置: ""
*zh_TW.TonerDarkness 1/1: ""
*zh_TW.TonerDarkness 2/2: ""
*zh_TW.TonerDarkness 3/3: ""
*zh_TW.TonerDarkness 4/4: ""
*zh_TW.TonerDarkness 5/5: ""
*zh_TW.Translation LexBrightness/亮度: ""
*zh_TW.LexBrightness PrinterS/印表機設置: ""
*zh_TW.LexBrightness -6/ -6: ""
*zh_TW.LexBrightness -5/ -5: ""
*zh_TW.LexBrightness -4/ -4: ""
*zh_TW.LexBrightness -3/ -3: ""
*zh_TW.LexBrightness -2/ -2: ""
*zh_TW.LexBrightness -1/ -1: ""
*zh_TW.LexBrightness 0/ 0: ""
*zh_TW.LexBrightness +1/ +1: ""
*zh_TW.LexBrightness +2/ +2: ""
*zh_TW.LexBrightness +3/ +3: ""
*zh_TW.LexBrightness +4/ +4: ""
*zh_TW.LexBrightness +5/ +5: ""
*zh_TW.LexBrightness +6/ +6: ""
*zh_TW.Translation LexContrast/對比: ""
*zh_TW.LexContrast PrinterS/印表機設置: ""
*zh_TW.LexContrast 0/0: ""
*zh_TW.LexContrast 1/1: ""
*zh_TW.LexContrast 2/2: ""
*zh_TW.LexContrast 3/3: ""
*zh_TW.LexContrast 4/4: ""
*zh_TW.LexContrast 5/5: ""
*zh_TW.Translation LexSaturation/飽和度: ""
*zh_TW.LexSaturation PrinterS/印表機設置: ""
*zh_TW.LexSaturation 0/0: ""
*zh_TW.LexSaturation 1/1: ""
*zh_TW.LexSaturation 2/2: ""
*zh_TW.LexSaturation 3/3: ""
*zh_TW.LexSaturation 4/4: ""
*zh_TW.LexSaturation 5/5: ""
*zh_TW.Translation LexLineDetail/美化細線: ""
*zh_TW.LexLineDetail PrinterS/印表機設置: ""
*zh_TW.LexLineDetail FalseF/關: ""
*zh_TW.LexLineDetail TrueF/開: ""
*zh_TW.Translation LexMirror/鏡映: ""
*zh_TW.LexMirror False/關: ""
*zh_TW.LexMirror True/開: ""
*zh_TW.Translation Color/色彩: ""
*zh_TW.Translation MediaColor/色彩修正: ""
*zh_TW.MediaColor PrinterS/印表機設置: ""
*zh_TW.MediaColor Auto/自動: ""
*zh_TW.MediaColor FalseM/關: ""
*zh_TW.MediaColor Manual/手動: ""
*zh_TW.Translation ColorSaver/ColorSaver™: ""
*zh_TW.ColorSaver PrinterS/印表機設置: ""
*zh_TW.ColorSaver FalseM/關: ""
*zh_TW.ColorSaver TrueM/開: ""
*zh_TW.Translation BLW/黑白: ""
*zh_TW.BLW PrinterS/印表機設置: ""
*zh_TW.BLW FalseM/關: ""
*zh_TW.BLW TrueM/開: ""
*zh_TW.Translation ColorBalance/色彩平衡: ""
*zh_TW.Translation CyanBalance/靛青色平衡: ""
*zh_TW.CyanBalance PrinterS/印表機設置: ""
*zh_TW.CyanBalance -5/ -5: ""
*zh_TW.CyanBalance -4/ -4: ""
*zh_TW.CyanBalance -3/ -3: ""
*zh_TW.CyanBalance -2/ -2: ""
*zh_TW.CyanBalance -1/ -1: ""
*zh_TW.CyanBalance 0/ 0: ""
*zh_TW.CyanBalance +1/ +1: ""
*zh_TW.CyanBalance +2/ +2: ""
*zh_TW.CyanBalance +3/ +3: ""
*zh_TW.CyanBalance +4/ +4: ""
*zh_TW.CyanBalance +5/ +5: ""
*zh_TW.Translation MagentaBalance/洋紅色平衡: ""
*zh_TW.MagentaBalance PrinterS/印表機設置: ""
*zh_TW.MagentaBalance -5/ -5: ""
*zh_TW.MagentaBalance -4/ -4: ""
*zh_TW.MagentaBalance -3/ -3: ""
*zh_TW.MagentaBalance -2/ -2: ""
*zh_TW.MagentaBalance -1/ -1: ""
*zh_TW.MagentaBalance 0/ 0: ""
*zh_TW.MagentaBalance +1/ +1: ""
*zh_TW.MagentaBalance +2/ +2: ""
*zh_TW.MagentaBalance +3/ +3: ""
*zh_TW.MagentaBalance +4/ +4: ""
*zh_TW.MagentaBalance +5/ +5: ""
*zh_TW.Translation YellowBalance/黃色平衡: ""
*zh_TW.YellowBalance PrinterS/印表機設置: ""
*zh_TW.YellowBalance -5/ -5: ""
*zh_TW.YellowBalance -4/ -4: ""
*zh_TW.YellowBalance -3/ -3: ""
*zh_TW.YellowBalance -2/ -2: ""
*zh_TW.YellowBalance -1/ -1: ""
*zh_TW.YellowBalance 0/ 0: ""
*zh_TW.YellowBalance +1/ +1: ""
*zh_TW.YellowBalance +2/ +2: ""
*zh_TW.YellowBalance +3/ +3: ""
*zh_TW.YellowBalance +4/ +4: ""
*zh_TW.YellowBalance +5/ +5: ""
*zh_TW.Translation BlackBalance/黑色平衡: ""
*zh_TW.BlackBalance PrinterS/印表機設置: ""
*zh_TW.BlackBalance -5/ -5: ""
*zh_TW.BlackBalance -4/ -4: ""
*zh_TW.BlackBalance -3/ -3: ""
*zh_TW.BlackBalance -2/ -2: ""
*zh_TW.BlackBalance -1/ -1: ""
*zh_TW.BlackBalance 0/ 0: ""
*zh_TW.BlackBalance +1/ +1: ""
*zh_TW.BlackBalance +2/ +2: ""
*zh_TW.BlackBalance +3/ +3: ""
*zh_TW.BlackBalance +4/ +4: ""
*zh_TW.BlackBalance +5/ +5: ""
*zh_TW.Translation ManualColor/手動色彩: ""
*zh_TW.Translation ManualRGBImage/手動 RGB 影像: ""
*zh_TW.ManualRGBImage PrinterS/印表機設置: ""
*zh_TW.ManualRGBImage Vivid/鮮明色彩: ""
*zh_TW.ManualRGBImage sRGBDisplay/sRGB 顯示: ""
*zh_TW.ManualRGBImage sRGBVivid/sRGB 鮮明色彩: ""
*zh_TW.ManualRGBImage DisplayRealBlack/顯示-純黑色: ""
*zh_TW.ManualRGBImage Off/關: ""
*zh_TW.Translation ManualRGBText/手動 RGB 文字: ""
*zh_TW.ManualRGBText PrinterS/印表機設置: ""
*zh_TW.ManualRGBText Vivid/鮮明色彩: ""
*zh_TW.ManualRGBText sRGBDisplay/sRGB 顯示: ""
*zh_TW.ManualRGBText sRGBVivid/sRGB 鮮明色彩: ""
*zh_TW.ManualRGBText DisplayRealBlack/顯示-純黑色: ""
*zh_TW.ManualRGBText Off/關: ""
*zh_TW.Translation ManualRGBGraphics/手動 RGB 圖形: ""
*zh_TW.ManualRGBGraphics PrinterS/印表機設置: ""
*zh_TW.ManualRGBGraphics Vivid/鮮明色彩: ""
*zh_TW.ManualRGBGraphics sRGBDisplay/sRGB 顯示: ""
*zh_TW.ManualRGBGraphics sRGBVivid/sRGB 鮮明色彩: ""
*zh_TW.ManualRGBGraphics DisplayRealBlack/顯示-純黑色: ""
*zh_TW.ManualRGBGraphics Off/關: ""
*zh_TW.Translation ManualCMYK/手動 CMYK: ""
*zh_TW.ManualCMYK PrinterS/印表機設置: ""
*zh_TW.ManualCMYK USCMYK/US CMYK: ""
*zh_TW.ManualCMYK EuroCMYK/Euro CMYK: ""
*zh_TW.ManualCMYK VividCMYK/鮮明色彩 CMYK: ""
*zh_TW.ManualCMYK Off/關: ""
*zh_TW.Translation Paper/紙張: ""
*zh_TW.Translation MediaType/紙張種類: ""
*zh_TW.MediaType PrinterS/印表機設置: ""
*zh_TW.MediaType Plain/普通紙: ""
*zh_TW.MediaType Transparency/專用透明投影膠片: ""
*zh_TW.MediaType Labels/標籤(紙張): ""
*zh_TW.MediaType Vinyl/標籤(乙烯樹脂): ""
*zh_TW.MediaType Bond/無覆膜的雪銅紙: ""
*zh_TW.MediaType Envelope/信封: ""
*zh_TW.MediaType Letterhead/銜頭紙: ""
*zh_TW.MediaType Preprint/預印: ""
*zh_TW.MediaType Colored/彩色紙: ""
*zh_TW.MediaType Glossy/光面紙: ""
*zh_TW.MediaType Light/輕薄紙張: ""
*zh_TW.MediaType Heavy/厚重紙張: ""
*zh_TW.MediaType Card/卡片/特別厚重紙張: ""
*zh_TW.MediaType Rough/粗糙/棉紙: ""
*zh_TW.MediaType Recycled/再生紙: ""
*zh_TW.MediaType HeavyGlossy/重光面紙: ""
*zh_TW.MediaType RoughEnvelope/粗糙信封: ""
*zh_TW.MediaType Custom1/自訂種類 1: ""
*zh_TW.MediaType Custom2/自訂種類 2: ""
*zh_TW.MediaType Custom3/自訂種類 3: ""
*zh_TW.MediaType Custom4/自訂種類 4: ""
*zh_TW.MediaType Custom5/自訂種類 5: ""
*zh_TW.MediaType Custom6/自訂種類 6: ""
*zh_TW.Translation OutputBin/出紙架: ""
*zh_TW.OutputBin PrinterS/印表機設置: ""
*zh_TW.OutputBin StandardBin/標準送紙匣: ""
*zh_TW.OutputBin Bin1/1 號送紙匣: ""
*zh_TW.OutputBin Bin2/2 號送紙匣: ""
*zh_TW.OutputBin Bin3/3 號送紙匣: ""
*zh_TW.OutputBin Bin4/4 號送紙匣: ""
*zh_TW.OutputBin Bin5/5 號送紙匣: ""
*zh_TW.Translation LexBlankPage/列印空白頁: ""
*zh_TW.LexBlankPage PrinterS/印表機設置: ""
*zh_TW.LexBlankPage False/關: ""
*zh_TW.LexBlankPage True/開: ""
*zh_TW.Translation Finishing/輸出處理: ""
*zh_TW.Translation Duplex/雙面列印: ""
*zh_TW.Duplex None/無: ""
*zh_TW.Duplex DuplexNoTumble/雙面列印 - 長邊: ""
*zh_TW.Duplex DuplexTumble/雙面列印 - 短邊: ""
*zh_TW.Translation Collate/逐份列印: ""
*zh_TW.Collate False/關: ""
*zh_TW.Collate True/開: ""
*zh_TW.Translation SepPages/分隔頁: ""
*zh_TW.SepPages PrinterS/印表機設置: ""
*zh_TW.SepPages NoneF/無: ""
*zh_TW.SepPages Jobs/介於工作之間: ""
*zh_TW.SepPages Copies/在列印副本之間: ""
*zh_TW.SepPages Pages/介於頁面之間: ""
*zh_TW.Translation Offset/頁面偏位: ""
*zh_TW.Offset PrinterS/印表機設置: ""
*zh_TW.Offset None/無: ""
*zh_TW.Offset Jobs/介於工作之間: ""
*zh_TW.Offset Copies/在列印副本之間: ""
*zh_TW.Translation StapleJob/裝訂工作: ""
*zh_TW.StapleJob PrinterS/印表機設置: ""
*zh_TW.StapleJob FalseM/關: ""
*zh_TW.StapleJob TrueM/開: ""
*zh_TW.Translation HolePunch/打孔: ""
*zh_TW.HolePunch PrinterS/印表機設置: ""
*zh_TW.HolePunch FalseM/關: ""
*zh_TW.HolePunch 2Hole/2 孔: ""
*zh_TW.HolePunch 3Hole/3 孔: ""
*zh_TW.HolePunch 4Hole/4 孔: ""
*zh_TW.Translation SepSource/分隔頁來源: ""
*zh_TW.SepSource PrinterS/印表機設置: ""
*zh_TW.SepSource Tray1/裝紙匣 1: ""
*zh_TW.SepSource Tray2/裝紙匣 2: ""
*zh_TW.SepSource Tray3/裝紙匣 3: ""
*zh_TW.SepSource Tray4/裝紙匣 4: ""
*zh_TW.SepSource MultipurposeFeeder/多用途送紙器: ""
*DefaultFont: Courier
*% End of LXX790S.PPD, 150340 bytes.
*en.PageSize Oficio/Oficio (México): ""
|