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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><title>Tux Paint Options Documentation</title>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#FF0000"
alink="#FF00FF">
<center>
<h1>Tux Paint<br>
version
0.9.23
</h1>
<h2>Options Documentation</h2>
<p>Copyright (c) 2002-2018 by various contributors; see AUTHORS.txt<br/>
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a></p>
<p>August 28, 2018</p>
</center>
<hr size=2 noshade>
<h1>Tux Paint Config.</h1>
<blockquote>
<p>As of Tux Paint version 0.9.14, a graphical tool is available
that allows you to change Tux Paint's behavior. However, if you'd
rather not install and use this tool, or want a better understanding of
the available options, please continue reading.</p>
</blockquote>
<hr size=2 noshade>
<h1>Configuration File</h1>
<blockquote>
<p>You can create a simple configuration file for Tux Paint, which it
will read each time you start it up.</p>
<p>The file is simply a plain text file containing the options
you want enabled:</p>
<h2>Linux and Unix Users</h2>
<blockquote>
<p>The file you should create is called
"<code><b>.tuxpaintrc</b></code>"
and it should be placed in your home directory.
(a.k.a. "<code>~/.tuxpaintrc</code>" or
"<code>$HOME/.tuxpaintrc</code>")</p>
<h3>System-Wide Configuration File</h3>
<blockquote>
<p>Before this file is read, a system-wide configuration file is
read. (By default, this configuration has no settings enabled.)
It is located at:</p>
<blockquote>
<code>/etc/tuxpaint/tuxpaint.conf</code>
</blockquote>
<p>You can disable reading of this file altogether, leaving the
settings as defaults (which can then be overridden by your
"<code>.tuxpaintrc</code>" file and/or command-line arguments)
by using the command-line option:</p>
<blockquote>
<code>--nosysconfig</code>
</blockquote>
</blockquote>
</blockquote>
<h2>Mac OS X Users</h2>
<blockquote>
<p>The file you should create is called
"<code><b>tuxpaint.cfg</b></code>"
and it should be placed in your home folder, under the sub-folder:
<code>Library/Application Support/TuxPaint</code>
</p>
<h3>System-Wide Configuration File</h3>
<blockquote>
<p>Before this file is read, a system-wide configuration file is
read. (By default, this configuration has no settings enabled.)
It is located at:</p>
<blockquote>
<code>/Library/Application Support/TuxPaint/tuxpaint.cfg</code>
</blockquote>
</blockquote>
<h2>Windows Users</h2>
<blockquote>
<p>The file you should create is called
"<code><b>tuxpaint.cfg</b></code>" and it
should be placed in Tux Paint's folder.</p>
<p>You can use NotePad or WordPad to create this file.
Be sure to save it as Plain Text, and make sure the filename
doesn't have ".txt" at the end...</p>
</blockquote>
</blockquote>
<hr size=2 noshade>
<h1>Available Options</h1>
<blockquote>
<p>The following settings can be set in the configuration file.
(Command-line settings will override these.
See the "<a href="#command_line"><i>Command-Line Options</i></a>"
section, below.)</p>
<dl>
<dt><code><b>fullscreen=yes</b></code></dt>
<dd>
Run the program in full screen mode, rather than in a window.
</dd>
<dt><code><b>fullscreen=native</b></code></dt>
<dd>
Run the program in full screen mode. Additionally, assume the
screen's current resolution (set by the operating system).
</dd>
<dt><code><b>windowsize=<i>SIZE</i></b></code></dt>
<dd>
<p>Run the program at a different size (in windowed mode) or
at a different screen resolution (in fullscreen mode), rather than the
default (usually 800x600).</p>
<p>The <i>SIZE</i> value should be presented in pixels, in 'width-by-height'
format, with an "x" (lowercase X) between the values. The size can
be anything that's at least 640 wide, and at least 480 tall.</p>
<p>Some examples:
<ul>
<li>640x480
<li>1024x768
<li>768x1024
<li>1600x1200
</ul>
</p>
</dd>
<dt><code><b>orient=portrait</b></code></dt>
<dd>
<p>Swaps the width/height options given to Tux Paint, useful for
rotating the window on portait displays, such as a tablet PC that's
in tablet orientation.
</dd>
<dt><code><b>native=yes</b></code></dt>
<dd>
<p>When running <i>Tux Paint</i> in fullscreen mode, this
assumes the screen's current resolution (overriding any
"<code>windowsize</code>" option), as set by the operating system.
</dd>
<dt><code><b>allowscreensaver=yes</b></code></dt>
<dd>
<p>By default, <i>Tux Paint</i> prevents your system's screensaver
from starting up. You can override this by using the "<code>allowscreensaver</code>"
option. Note: This requires version 1.2.12 or higher of the SDL library.
(You can also do this by setting the "<code>SDL_VIDEO_ALLOW_SCREENSAVER</code>"
environment variable on your system to "<code>1</code>".)
</dd>
<dt><code><b>nosound=yes</b></code></dt>
<dd>
Disable sound effects. (Note: Pressing <b>[Alt]</b> + <b>[S]</b>
cannot be used to reenable sounds if they were disabled using this option.)
</dd>
<dt><code><b>noquit=yes</b></code></dt>
<dd>
<p>Disable the on-screen "Quit" button and prevent the <b>[Escape]</b> key
from quitting <i>Tux Paint</i>.</p>
<p>Using the <b>[Alt]</b> + <b>[F4]</b> keyboard combination
or clicking the window's close button (assuming you're not in
fullscreen mode) still works to quit <i>Tux Paint</i>.</p>
<p>You can also use the following keyboard combination to quit:
<b>[Shift]</b> + <b>[Control]</b> + <b>[Escape]</b>.</p>
</dd>
<dt><code><b>noprint=yes</b></code></dt>
<dd>
Disable the printing feature.
</dd>
<dt><code><b>printdelay=<i>SECONDS</i></b></code></dt>
<dd>
Restrict printing so that printing can occur only once every
<i>SECONDS</i> seconds.
</dd>
<dt><code><b>printcommand=<i>COMMAND</i></b></code></dt>
<dd>
<p><i>(Linux and Unix only)</i></p>
<p>Use the command <i>COMMAND</i> to print a PostScript format file
when the 'Print' button is clicked.
If this option is not specifically not set, the default command is:</p>
<blockquote>
<code>lpr</code>
</blockquote>
<p><b>Note:</b> Versions of <i>Tux Paint</i> prior to 0.9.15
sent PNG format data to the print command (which defaulted to
"<code>pngtopnm | pnmtops | lpr</code>").</p>
<p>If you set an alternative <code><b>printcommand</b></code> in the
configuration file prior to version 0.9.15, you will need to change it.</p>
</dd>
<dt><code><b>altprintcommand=<i>COMMAND</i></b></code></dt>
<dd>
<p><i>(Linux and Unix only)</i></p>
<p>Use the command <i>COMMAND</i> to print a PostScript format file
when the 'Print' button is clicked while the <b>[Alt]</b> modifier
key is being held. (This is typically used for providing a print
dialog, similar to when pressing <b>[Alt]</b>+'Print' in Windows and
Mac OS X.)</p>
<p>If this option is not specifically not set, the default command is
KDE's graphical print dialog:</p>
<blockquote>
<code>kprinter</code>
</blockquote>
</dd>
<dt><code><b>printcfg=yes</b></code></dt>
<dd>
<p><i>(Windows and Mac OS X only)</i></p>
<p>Tux Paint will use a printer configuration file when printing.
Push the <b>[Alt]</b> key while clicking the 'Print' button in
Tux Paint to cause a Windows print dialog window to appear.</p>
<p>(Note: This only works when not running Tux Paint in
fullscreen mode.) Any configuration changes made in this dialog
will be saved to the file "<code>userdata/print.cfg</code>", and
used again, as long as the "printcfg" option is set.</p>
</dd>
<dt><code><b>altprint=always</b></code></dt>
<dd>
<p>This causes Tux Paint to always show the printer dialog
(or, on Linux/Unix, run the "altprintcommand") when the 'Print' button
is clicked. In other words, it's like clicking 'Print' while holding
<b>[Alt]</b>, except you don't need to hold <b>[Alt]</b> every time.</p>
</dd>
<dt><code><b>altprint=never</b></code></dt>
<dd>
<p>This prevents Tux Paint from <i>ever</i> showing the printer dialog
(or, on Linux/Unix, run the "altprintcommand") when the 'Print' button
is clicked. In other words, it makes the <b>[Alt]</b> key have no
effect when clicking the 'Print' button.</p>
</dd>
<dt><code><b>altprint=mod</b></code></dt>
<dd>
<p>This is the normal, default behavior. Tux Paint shows a
printer dialog (or, on Linux/Unix, runs the "altprintcommand"),
when the <b>[Alt]</b> key is pressed while the 'Print' button is clicked.
Clicking 'Print' without holding <b>[Alt]</b> prints without showing
a dialog.</p>
</dd>
<dt><code><b>papersize=<i>PAPERSIZE</i></b></code></dt>
<dd>
<p><i>(Platforms that use Tux Paint's internal PostScript
generator — not Windows, Mac OS X or BeOS.)</i></p>
<p>Tell Tux Paint what size PostScript to generate.
If none is specified, Tux Paint first checks
your <code>$PAPER</code> environment variable, then
the file <code>/etc/papersize</code>, then uses the the
'libpaper' library's default paper size.</p>
<p>Valid paper sizes include:
letter, legal, tabloid, executive, note, statement,
a0, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10,
b0, b1, b2 b3, b4,
10x14, 11x17,
halfletter, halfexecutive, halfnote,
folio, quarto, ledger,
archA, archB, archC, archD, archE,
flsa, flse,
csheet, dsheet, esheet.
</p>
</dd>
<dt><code><b>nolockfile=yes</b></code></dt>
<dd>
<p>By default, Tux Paint uses what's known as a 'lockfile'
to prevent it from being launched more than once in 30 seconds.
(This is to avoid accidentally running multiple copies; for example,
by double-clicking a single-click launcher, or simply
impatiently clicking the icon multiple times.)</p>
<p>To make Tux Paint ignore the lockfile, allowing it to
run again, even if it was just launched less than 30 seconds
ago, enable this setting in the configuration file, or
run Tux Paint with the '<code>--nolockfile</code>' option
on the command-line.</p>
<p>By default, the lockfile is stored in
"<code>~/.tuxpaint/</code>" under Linux and Unix,
and "<code>userdata\</code>" under Windows.</p>
</dd>
<dt><code><b>simpleshapes=yes</b></code></dt>
<dd>
Disable the rotation step of the 'Shape' tool.
Click, drag and release is all that will be needed to draw a shape.
</dd>
<dt><code><b>uppercase=yes</b></code></dt>
<dd>
All text will be rendered only in uppercase (e.g., "Brush" will
be "BRUSH"). Useful for children who can read, but who have only
learned uppercase letters so far.
</dd>
<dt><code><b>grab=yes</b></code></dt>
<dd>
<p>Tux Paint will attempt to 'grab' the mouse and keyboard, so
that the mouse is confined to Tux Paint's window, and nearly all
keyboard input is passed directly to it.</p>
<p>This is useful to disable operating system actions that could get
the user out of Tux Paint <b>[Alt]-[Tab]</b> window cycling,
<b>[Ctrl]-[Escape]</b>, etc. This is especially useful in
fullscreen mode.</p>
</dd>
<dt><code><b>noshortcuts=yes</b></code></dt>
<dd>
<p>This disable keyboard shortcuts (e.g., <b>[Ctrl]-[S]</b> for save,
<b>[Ctrl]-[N]</b> for a new image, etc.)</p>
<p>This is useful to prevent unwanted commands from being activated
by children who aren't experienced with keyboards.</p>
</dd>
<dt><code><b>nowheelmouse=yes</b></code></dt>
<dd>
This disables support for the wheel on mice that have it.
(Normally, the wheel will scroll the selector menu on the right.)
</dd>
<dt><code><b>nobuttondistinction=yes</b></code></dt>
<dd>
<p>Prior to Tux Paint 0.9.15, the middle and right buttons on
a mouse could also be used for clicking. In version 0.9.15, it was changed
so that <i>only</i> the left mouse button worked, so as to not train
children to use the wrong button.</p>
<p>However, for children who have trouble with the mouse, this distinction
between the two or three buttons on a mouse can be disabled (returning
Tux Paint to its old behavior) by using this option.</p>
</dd>
<dt><code><b>nofancycursors=yes</b></code></dt>
<dd>
<p>This disables the fancy mouse pointer shapes in Tux Paint,
and uses your environment's normal mouse pointer.</p>
<p>In some enviornments, the fancy cursors cause problems.
Use this option to avoid them.</p>
</dd>
<dt><code><b>hidecursor=yes</b></code></dt>
<dd>
<p>This completely hides the mouse pointer shapes in Tux Paint.</p>
<p>This is useful for touchscreen devices, such as tablet PCs.</p>
</dd>
<dt><code><b>nooutlines=yes</b></code></dt>
<dd>
<p>In this mode, much simpler outlines and 'rubber-band' lines are
displayed when using the <b>Lines</b>, <b>Shapes</b>,
<b>Stamps</b> and <b>Eraser</b> tools.</p>
<p>This can help when Tux Paint is run on very slow computers,
or displayed on a remote X-Window display.</p>
</dd>
<dt><code><b>sysfonts=yes</b></code></dt>
<dd>
<p>This option causes Tux Paint to attempt to load fonts
(for use in the <b>Text</b> tool) from your operating system.
Normally, Tux Paint will only load the ones that came bundled
with Tux Paint.</p>
</dd>
<dt><code><b>alllocalefonts=yes</b></code></dt>
<dd>
<p>Prior to version 0.9.21, Tux Paint loaded all fonts in its
own fonts directory, including locale-specific ones (e.g., the one
for Tibetan, which had no latin characters). As of 0.9.21, the only
font loaded from the locale-specific subdirectory, if any, is one
matching the locale Tux Paint is running on.</p>
<p>To load all locale-specific fonts (the old behavior), set
this option.</p>
</dd>
<dt><code><b>nostamps=yes</b></code></dt>
<dd>
<p>This option tells Tux Paint to not load any rubber stamp
images, which in turn ends up disabling the <b>Stamps</b> tool.</p>
<p>This can speed up Tux Paint when it first loads up,
and reduce memory usage while it's running. Of course, no stamps
will be available at all.</p>
</dd>
<dt><code><b>nostampcontrols=yes</b></code></dt>
<dd>
Some images in the <b>Stamps</b> tool can be mirrored, flipped,
and/or have their size changed. This option disables the controls,
and only provides the basic stamps.
</dd>
<dt><code><b>nomagiccontrols=yes</b></code></dt>
<dd>
Some <b>Magic</b> tools have the option of acting like a paintbrush,
or affecting the entire canvas at once.
This option disables the controls, and only provides the default
functionality (usually paint-mode).
</dd>
<dt><code><b>nolabel=yes</b></code></dt>
<dd>
Disables the <b>Label</b> tool: the tool that allows text entry
which can be edited later.
</dd>
<dt><code><b>mirrorstamps=yes</b></code></dt>
<dd>
<p>For stamps that can be mirrored, this option sets them to their
mirrored shape by default.</p>
<p>This can be useful for people who prefer things right-to-left,
rather than left-to-right.</p>
</dd>
<dt><code><b>mouse-accessibility=yes</b></code></dt>
<dd>
In this mode, instead of clicking, dragging and releasing
(e.g., to draw), you click, move, and click again to end the motion.
</dd>
<dt><code><b>onscreen-keyboard=yes</b></code></dt>
<dd>
Presents a clickable on-screen keyboard when using the <b>Text</b> and
<b>Label</b> tools.
</dd>
<dt><code><b>onscreen-keyboard-layout=<i>LAYOUTNAME</i></b></code></dt>
<dd>
Selects the initial layout for the on-screen keyboard when using the <b>Text</b> and
<b>Label</b> tools.<br>
Note: Using this option implies automatically <b>onscreen-keyboard=yes</b>, so setting both is redundant.
</dd>
<dt><code><b>onscreen-keyboard-disable-change=yes</b></code></dt>
<dd>
Disables the possibility for changing the layout of the on-screen keyboard when using the <b>Text</b> and
<b>Label</b> tools, useful for simplifying things for the small children.<br>
Note: Using this option implies automatically <b>onscreen-keyboard=yes</b>, so setting both is redundant.
</dd>
<dt><code><b>joystick-dev=<i>N</i></b></code></dt>
<dd>
Specify which joystick device should be used by Tux Paint.
Default value is 0 (the first joystick).
</dd>
<dt><code><b>joystick-slowness=<i>SPEED</i></b></code></dt>
<dd>
Sets a delay at each axis motion, allowing to slow the joystick.
Allowed values are from 0 to 500. Default value is 15.
</dd>
<dt><code><b>joystick-threshold=<i>THRESHOLD</i></b></code></dt>
<dd>
Sets the minimum level of axis motion to start moving the pointer.
Allowed values are from 0 to 32766. Default value is 3200.
</dd>
<dt><code><b>joystick-maxsteps=<i>STEPS</i></b></code></dt>
<dd>
Sets the maximum pixels the pointer will move at once.
Allowed values are from 1 to 7. Default value is 7.
</dd>
<dt><code><b>joystick-hat-timeout=<i>MILLISECONDS</i></b></code></dt>
<dd>
Sets the delay after wich the pointer will start moving automatically if the hat is keeped pushed.
Allowed values are from 0 to 3000. Default value is 1000.
</dd>
<dt><code><b>joystick-hat-slowness=<i>SPEED</i></b></code></dt>
<dd>
Sets a delay at each automatic motion, allowing to slow the speed of the hat.
Allowed values are from 0 to 500. Default value is 15.
</dd>
<dt><code><b>joystick-btn-escape=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be used to generate a escape event.
Useful to dismiss dialogs and quit.
</dd>
<dt><code><b>joystick-btn-brush=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt to select the brush tool.
</dd>
<dt><code><b>joystick-btn-stamp=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt to select the stamp tool.
</dd>
<dt><code><b>joystick-btn-lines=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt to select the lines tool.
</dd>
<dt><code><b>joystick-btn-shapes=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt to select the shapes tool.
</dd>
<dt><code><b>joystick-btn-text=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt to select the text tool.
</dd>
<dt><code><b>joystick-btn-label=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt to select the label tool.
</dd>
<dt><code><b>joystick-btn-magic=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt to select the magic tool.
</dd>
<dt><code><b>joystick-btn-undo=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt to the undo tool.
</dd>
<dt><code><b>joystick-btn-redo=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt to the redo tool.
</dd>
<dt><code><b>joystick-btn-eraser=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt for selecting the eraser tool.
</dd>
<dt><code><b>joystick-btn-new=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt to launch the dialog for opening a new draw.
</dd>
<dt><code><b>joystick-btn-open=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt to launch the dialog for opening an existing draw.
</dd>
<dt><code><b>joystick-btn-save=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt for saving the draw.
</dd>
<dt><code><b>joystick-btn-pgsetup=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt to launch the page setup dialog for printing.
</dd>
<dt><code><b>joystick-btn-print=<i>BUTTON NUMBER</i></b></code></dt>
<dd>
Selects the joystick button number, as seen by SDL, that will be a shortcurt to print.
</dd>
<dt><code><b>joystick-buttons-ignore=<i>BUTTON1,BUTTON2,...</i></b></code></dt>
<dd>
A set of joystick button numbers, as seen by SDL, that should be ignored.
Otherwise, unless they are used by one of the "<code>joystick-btn-</code>" options
above, buttons will be seen as a mouse left-click.
</dd>
<dt><code><b>stampsize=<i>SIZE</i></b></code></dt>
<dd>
<p>Use this option to force Tux Paint to set the starting size of
all stamps. The <code>SIZE</code> value should be between 0 (smallest)
and 10 (largest). The size is relative to the available sizes of the
stamp, which depends on the stamp itself, and Tux Paint's current
canvas size.</p>
<p>Specifc "<code>default</code>" to let Tux Paint decide
(it's standard behavior).</p>
</dd>
<dt><code><b>keyboard=yes</b></code></dt>
<dd>
<p>This allows the keyboard arrow keys to be used
to control the mouse pointer. (e.g., for mouseless environments, or
handicapped/accessibility purposes)</p>
<p>Features:
<ul>
<li>Fine movement within canvas, or coarse movement if [Shift] is held.
<li>Coarse movement within tool button areas.
<li>Key controls:
<ul>
<li>[Left]/[Right]/[Up]/[Down], numpad [1] thru [9]: Move mouse
<li>[Space]/[5]: Click mouse (except when using "Text" or "Label" tools)
<li>[Insert]/[F5]: Click mouse (always)
<li>[F4] jump mouse between "Tools", "Colors" and canvas areas
<li>If mouse is within "Tools" section on the left, or
"Colors" secton at the bottom:
<ul>
<li>[F7], [F8]: Move down/up between buttons, respectively
(Tools section, only)
<li>[F11], [F12]: Move to previous/next button, respectively
</ul>
</ul>
<li>To click-and-drag, hold one of the 'click' keys (e.g., [Insert]),
and use the movement keys (e.g., [Left]).
<ul>
<li>Note: The "mouse accessibility" feature works with the keyboard
mouse controls. With both options enabled, painting tools
can be used to draw by pressing a 'click' key to start clicking,
movement keys to move around (which will draw), and another
'click' key to end the click (stop drawing).
</ul>
<li>A regular mouse and/or joystick may still be used
(so you can, e.g., move with the mouse, and click with the keyboard,
or vice-versa)
</ul>
</dd>
<dt><code><b>savedir=<i>DIRECTORY</i></b></code></dt>
<dd>
<p>Use this option to change where Tux Paint's "<code>saved</code>"
directory/folder is located, which is where Tux Paint saves and opens
pictures.</p>
<p>If you do not override it, the <b><i>default</i></b> location is:
<ul>
<li>Linux & Unix — Under a hidden directory named
"<code>.tuxpaint</code>" in your home directory (aka "<code>~</code>"
or "<code>$HOME</code>")<br>
Example: "<code>/home/<i>username</i>/.tuxpaint/saved/</code>"<br>
<br>
<li>Windows — Inside a folder named "<code>TuxPaint</code>"
in your "<code>Application Data</code>" folder.<br>
Example: "<code>C:\Documents and Settings\<i>Username</i>\Application Data\TuxPaint\saved\</code>"<br>
<br>
<li>Mac OS X — Inside a folder named "<code>TuxPaint</code>" in your
"<code>Application Support</code>" folder.<br>
Example: "<code>/Users/<i>Username</i>/Library/Application Support/TuxPaint/saved/</code>"<br>
</ul>
</p>
<p><b>Note:</b> When specifying a Windows drive (e.g.,
"<code>H:\</code>"), you must also specify a subdirectory.</p>
<p><b>Note:</b> Prior to version 0.9.18, Tux Paint would also use
the setting or default for "<code>savedir</code>" as the place to
search for personal data files (brushes, stamps, starters and fonts).
As of version 0.9.18, they may be specified separately
(see the "<code>datadir</code>" option, below).</p>
<p><b>Example:</b> <code>savedir=Z:\tuxpaint\</code></p>
</dd>
<dt><code><b>datadir=<i>DIRECTORY</i></b></code></dt>
<dd>
<p>Use this option to change where Tux Paint looks for personal
data files (brushes, stamps, starters and fonts specific to the
current user).</p>
<p>Tux Paint will search for subdirectories/subfolders named
"<code>brushes</code>", "<code>stamps</code>", "<code>starters</code>"
and "<code>fonts</code>" under the data directory.</p>
<p>If you do not override it, the <b><i>default</i></b> location is:
<ul>
<li>Linux & Unix — Under a hidden directory named
"<code>.tuxpaint</code>" in your home directory (aka "<code>~</code>"
or "<code>$HOME</code>")<br>
Example: "<code>/home/<i>username</i>/.tuxpaint/brushes/</code>"<br>
<br>
<li>Windows — Inside a folder named "<code>TuxPaint</code>"
in your "<code>Application Data</code>" folder.<br>
Example: "<code>C:\Documents and Settings\<i>Username</i>\Application Data\TuxPaint\brushes\</code>"<br>
<br>
<li>Mac OS X — Inside a folder named "<code>TuxPaint</code>" in your
"<code>Application Support</code>" folder.<br>
Example: "<code>/Users/<i>Username</i>/Library/Application Support/TuxPaint/brushes/</code>"<br>
</ul>
</p>
<p><b>Note:</b> Prior to version 0.9.18, Tux Paint would use the
same setting or default as for "<code>savedir</code>" to search for
data files. As of version 0.9.18, they may be specified separately.</p>
<p><b>Note:</b> When specifying a Windows drive (e.g.,
"<code>H:\</code>"), you must also specify a subdirectory.</p>
<p><b>Example:</b> <code>datadir=/home/johnny/tuxpaint-data/</code></p>
</dd>
<dt><code><b>saveover=yes</b></code></dt>
<dd>
This disables the "<i>Save over the old version...?</i>" prompt when
saving an existing file. With this option, the older version
will always be replaced by the new version, automatically.
</dd>
<dt><code><b>saveover=new</b></code></dt>
<dd>
This also disables the "<i>Save over the old version...?</i>" prompt
when saving an existing file. This option, however, will always
save a new file, rather than overwrite the older version.
</dd>
<dt><code><b>saveover=ask</b></code></dt>
<dd>
<p><i>(This option is redundant, since this is the default.)</i></p>
When saving an existing drawing, you will be first asked whether
to save over the older version or not.
</dd>
<dt><code><b>nosave=yes</b></code></dt>
<dd>
This disables Tux Paint's ability to save files
(and therefore disables the on-screen "Save" button).
It can be used in situations where the program is only being used for
fun, or in a test environment.
</dd>
<dt><code><b>autosave=yes</b></code></dt>
<dd>
This prevents Tux Paint from asking whether you want to save
the current picture when quitting, and assumes you do.
</dd>
<dt><code><b>startblank=yes</b></code></dt>
<dd>
This causes Tux Paint to display a blank canvas when it first
starts up, rather than loading the last image that was being edited.
</dd>
<dt><code><b>colorfile=<i>FILENAME</i></b></code></dt>
<dd>
<p>You may override Tux Paint's default color palette by creating
a plain ASCII text file that describes the colors you want, and
pointing to that file using the <code>colorfile</code> option.</p>
<p>The file should list one color per line. Colors are defined in
terms of their Red, Green and Blue values, each from 0 (off) to 255
(brightest). (For more information, try Wikipedia's
"<a href="http://en.wikipedia.org/wiki/Rgb">RGB color model</a>"
article.)</p>
<p>Colors may be listed using three decimal numbers (e.g.,
"<code>255 68 136</code>") or a 6- or 3-digit-long hexadecimal
'triplet' (e.g., "<code>#ff4488</code>" or "<code>#F48</code>").</p>
<p>After the color definition (on the same line) you may enter text to
describe the color. Tux will display this text when the color is
clicked. (For example,
"<code>#FFF White as snow.</code>")</p>
<p>As an example, you can see the default colors currently
used in Tux Paint in:
"<a href="../default_colors.txt"><code>default_colors.txt</code></a>".</p>
<p>NOTES: You must separate decimal values with spaces, and begin
hexadecimal values with a pound/number-sign character
("<code>#</code>"). In 3-digit hexadecimal, each digit is used for
both the high and low halves of the byte, so
"<code>#FFF</code>" is the same as "<code>#FFFFFF</code>", not
"<code>#F0F0F0</code>".</p>
</dd>
<dt><code><b>lang=<i>LANGUAGE</i></b></code></dt>
<dd>
<p>Run Tux Paint in one of the supported languages.
Possible choice for <i>LANGUAGE</i> currently include:</p>
<blockquote>
<table border=1 cellspacing=0 cellpadding=2
summary="Possible values for 'lang' language setting">
<tr>
<td><code>english</code></td>
<td><code>american-english</code></td>
<td> </td>
</tr>
<tr>
<td><code>acholi</code></td>
<td><code>acoli</code></td>
<td> </td>
</tr>
<tr>
<td><code>afrikaans</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>akan</code></td>
<td><code>twi-fante</code></td>
<td> </td>
</tr>
<tr>
<td><code>albanian</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>amharic</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>arabic</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>aragones</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>armenian</code></td>
<td><code>hayeren</code></td>
<td> </td>
</tr>
<tr>
<td><code>assamese</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>asturian</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>australian-english</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>azerbaijani</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>bambara</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>basque</code></td>
<td><code>euskara</code></td>
<td> </td>
</tr>
<tr>
<td><code>belarusian</code></td>
<td><code>bielaruskaja</code></td>
<td> </td>
</tr>
<tr>
<td><code>bengali</code></td>
<td><code> </code></td>
<td> </td>
</tr>
<tr>
<td><code>bodo</code></td>
<td><code> </code></td>
<td> </td>
</tr>
<tr>
<td><code>bokmal</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>bosnian</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>brazilian-portuguese</code></td>
<td><code>portugues-brazilian</code></td>
<td><code>brazilian</code></td>
</tr>
<tr>
<td><code>breton</code></td>
<td><code>brezhoneg</code></td>
<td> </td>
</tr>
<tr>
<td><code>british-english</code></td>
<td><code>british</code></td>
<td> </td>
</tr>
<tr>
<td><code>bulgarian</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>canadian-english</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>catalan</code></td>
<td><code>catala</code></td>
<td> </td>
</tr>
<tr>
<td><code>chinese</code></td>
<td><code>simplified-chinese</code></td>
<td> </td>
</tr>
<tr>
<td><code>croatian</code></td>
<td><code>hrvatski</code></td>
<td> </td>
</tr>
<tr>
<td><code>czech</code></td>
<td><code>cesky</code></td>
<td> </td>
</tr>
<tr>
<td><code>danish</code></td>
<td><code>dansk</code></td>
<td> </td>
</tr>
<tr>
<td><code> </code></td>
<td><code>dogri</code></td>
<td> </td>
</tr>
<tr>
<td><code>dutch</code></td>
<td><code>nederlands</code></td>
<td> </td>
</tr>
<tr>
<td><code>esperanto</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>estonian</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>faroese</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>finnish</code></td>
<td><code>suomi</code></td>
<td> </td>
</tr>
<tr>
<td><code>french</code></td>
<td><code>francais</code></td>
<td> </td>
</tr>
<tr>
<td><code>fula</code></td>
<td><code>fulah</code></td>
<td><code>pulaar-fulfulde</code></td>
</tr>
<tr>
<td><code>gaelic</code></td>
<td><code>gaidhlig</code></td>
<td><code>irish-gaelic</code></td>
</tr>
<tr>
<td><code>galician</code></td>
<td><code>galego</code></td>
<td> </td>
</tr>
<tr>
<td><code>georgian</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>german</code></td>
<td><code>deutsch</code></td>
<td> </td>
</tr>
<tr>
<td><code>greek</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>gronings</code></td>
<td><code>zudelk-veenkelonioals</code></td>
<td> </td>
</tr>
<tr>
<td><code>gujarati</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>hebrew</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>hindi</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>hungarian</code></td>
<td><code>magyar</code></td>
<td> </td>
</tr>
<tr>
<td><code>icelandic</code></td>
<td><code>islenska</code></td>
<td> </td>
</tr>
<tr>
<td><code>indonesian</code></td>
<td><code>bahasa-indonesia</code></td>
<td> </td>
</tr>
<tr>
<td><code>inuktitut</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>italian</code></td>
<td><code>italiano</code></td>
<td> </td>
</tr>
<tr>
<td><code>japanese</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>kabyle</code></td>
<td> </td>
<td><code>kabylian</code></td>
</tr>
<tr>
<td><code>kannada</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>kashmiri-devanagari</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>kashmiri-perso-arabic</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>khmer</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>kiga</code></td>
<td><code>chiga</code></td>
<td> </td>
</tr>
<tr>
<td><code>kinyarwanda</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>klingon</code></td>
<td><code>tlhIngan</code></td>
<td> </td>
</tr>
<tr>
<td><code>konkani-devaganari</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>konkani-roman</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>korean</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>kurdish</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>latvian</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>lithuanian</code></td>
<td><code>lietuviu</code></td>
<td> </td>
</tr>
<tr>
<td><code>luganda</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>luxembourgish</code></td>
<td><code>letzebuergesch</code></td>
<td> </td>
</tr>
<tr>
<td><code>macedonian</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>maithili</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>malay</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>malayalam</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>manipuri-bengali</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>manipuri-meitei-mayek</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>marathi</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>mexican-spanish</code></td>
<td><code>espanol-mejicano</code></td>
<td><code>mexican</code></td>
</tr>
<tr>
<td><code>mongolian</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>ndebele</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>nepali</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>northern-sotho</code></td>
<td><code>sesotho-sa-leboa</code></td>
<td> </td>
</tr>
<tr>
<td><code>norwegian</code></td>
<td><code>nynorsk</code></td>
<td><code>norsk</code></td>
</tr>
<tr>
<td><code>occitan</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>odia</code></td>
<td><code>oriya</code></td>
<td> </td>
</tr>
<tr>
<td><code>ojibwe</code></td>
<td><code>ojibway</code></td>
<td> </td>
</tr>
<tr>
<td><code>persian</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>polish</code></td>
<td><code>polski</code></td>
<td> </td>
</tr>
<tr>
<td><code>portuguese</code></td>
<td><code>portugues</code></td>
<td> </td>
</tr>
<tr>
<td><code>punjabi</code></td>
<td><code>panjabi</code></td>
<td> </td>
</tr>
<tr>
<td><code>romanian</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>russian</code></td>
<td><code>russkiy</code></td>
<td> </td>
</tr>
<tr>
<td><code>sanskrit</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>santali-devaganari</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>santali-ol-chiki</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>scottish</code></td>
<td><code>ghaidhlig</code></td>
<td><code>scottish-gaelic</code></td>
</tr>
<tr>
<td><code>serbian</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>serbian-latin</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>shuswap</code></td>
<td><code>secwepemctin</code></td>
<td> </td>
</tr>
<tr>
<td><code>sindhi-devanagari</code></td>
<td><code> </code></td>
<td> </td>
</tr>
<tr>
<td><code>sindhi-perso-arabic</code></td>
<td><code> </code></td>
<td> </td>
</tr>
<tr>
<td><code>slovak</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>slovenian</code></td>
<td><code>slovensko</code></td>
<td> </td>
</tr>
<tr>
<td><code>songhay</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>southafrican-english</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>spanish</code></td>
<td><code>espanol</code></td>
<td> </td>
</tr>
<tr>
<td><code>sundanese</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>swahili</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>swedish</code></td>
<td><code>svenska</code></td>
<td> </td>
</tr>
<tr>
<td><code>tagalog</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>tamil</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>telugu</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>thai</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>tibetan</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>traditional-chinese</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>turkish</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>twi</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>ukrainian</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>urdu</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>venda</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>venetian</code></td>
<td><code>veneto</code></td>
<td> </td>
</tr>
<tr>
<td><code>vietnamese</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>walloon</code></td>
<td><code>walon</code></td>
<td> </td>
</tr>
<tr>
<td><code>welsh</code></td>
<td><code>cymraeg</code></td>
<td> </td>
</tr>
<tr>
<td><code>wolof</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>xhosa</code></td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>miahuatlan-zapotec</code></td>
<td> </td>
<td><code>zapotec</code></td>
</tr>
<tr>
<td><code>zulu</code></td>
<td> </td>
<td><code>zulu</code></td>
</tr>
</table>
</blockquote>
</dd>
</dl>
</blockquote>
<hr size=2 noshade>
<h1>Overriding System Config. Options using <code>.tuxpaintrc</code></h1>
<blockquote>
<p><i>(For Linux and Unix users)</i></p>
<p>If any of the above options are set in
"<code>/etc/tuxpaint/tuxpaint.config</code>", you can override them in your
own "<code>~/.tuxpaintrc</code>" file.</p>
<p>For true/false options, like "<code>noprint</code>" and
"<code>grab</code>", you can simply say they equal 'no' in
your "<code>~/.tuxpaintrc</code>" file:</p>
<blockquote><code>
noprint=no<br>
uppercase=no
</code></blockquote>
<p>Or, you can use options similar to the command-line override
options described below. For example:</p>
<blockquote><code>
print=yes<br>
mixedcase=yes
</code></blockquote>
</blockquote>
<hr size=2 noshade>
<h1><a name="command_line">Command-Line Options</a></h1>
<blockquote>
Options can also be issued on the command-line when you start
Tux Paint.
<blockquote>
<dl>
<dt><code><b>
--fullscreen<br>
--<i>WIDTH</i>x<i>HEIGHT</i><br>
--orient=portrait<br>
--native<br>
--allowscreensaver<br>
--startblank<br>
--nosound<br>
--noquit<br>
--noprint<br>
--printdelay=<i>SECONDS</i><br>
--printcfg<br>
--altprintnever<br>
--altprintalways<br>
--papersize=<i>PAPERSIZE</i><br>
--nolockfile<br>
--simpleshapes<br>
--uppercase<br>
--grab<br>
--noshortcuts<br>
--nowheelmouse<br>
--nobuttondistinction<br>
--nofancycursors<br>
--hidecursor<br>
--nooutlines<br>
--nostamps<br>
--nostampcontrols<br>
--nomagiccontrols<br>
--nolabel<br>
--mouse-accessibility<br>
--onscreen-keyboard<br>
--onscreen-keyboard-layout<br>
--onscreen-keyboard-disable-change<br>
--joystick-dev<br>
--joystick-slowness<br>
--joystick-threshold<br>
--joystick-maxsteps<br>
--joystick-hat-slowness<br>
--joystick-hat-timeout<br>
--joystick-btn-escape<br>
--joystick-btn-brush<br>
--joystick-btn-stamp<br>
--joystick-btn-lines<br>
--joystick-btn-shapes<br>
--joystick-btn-text<br>
--joystick-btn-label<br>
--joystick-btn-magic<br>
--joystick-btn-undo<br>
--joystick-btn-redo<br>
--joystick-btn-eraser<br>
--joystick-btn-new<br>
--joystick-btn-open<br>
--joystick-btn-save<br>
--joystick-btn-pgsetup<br>
--joystick-btn-print<br>
--joystick-buttons-ignore<br>
--sysfonts<br>
--alllocalefonts<br>
--mirrorstamps<br>
--stampsize=<i>SIZE</i><br>
--keyboard<br>
--savedir <i>DIRECTORY</i><br>
--datadir <i>DIRECTORY</i><br>
--saveover<br>
--saveovernew<br>
--nosave<br>
--autosave<br>
--lang <i>LANGUAGE</i><br>
--colorfile <i>FILE</i><br>
</b></code></dt>
<dd>
These enable or correspond to the configuration file options
described above.
<hr size=1 noshade width=50%>
</dd>
<dt><code><b>
--windowed<br>
--800x600<br>
--orient=landscape<br>
--disablescreensaver<br>
--startlast<br>
--sound<br>
--quit<br>
--print<br>
--printdelay=0<br>
--noprintcfg<br>
--altprintmod<br>
--lockfile<br>
--complexshapes<br>
--mixedcase<br>
--dontgrab<br>
--shortcuts<br>
--wheelmouse<br>
--buttondistinction<br>
--fancycursors<br>
--showcursor<br>
--outlines<br>
--stamps<br>
--stampcontrols<br>
--magiccontrols<br>
--label<br>
--nosysfonts<br>
--currentlocalefont<br>
--dontmirrorstamps<br>
--stampsize=default<br>
--mouse<br>
--saveoverask<br>
--save<br>
--noautosave<br>
</b></code></dt>
<dd>
These options can be used to override any settings made in
the configuration file. (If the option isn't set in the
configuration file(s), no overriding option is necessary.)
<hr size=1 noshade width=50%>
</dd>
<dt><code><b><a name="locale">--locale LOCALE</a></b></code></dt>
<dd>
<p>Run Tux Paint in one of the support languages.
See the "<i><a href="#different_language">Choosing a Different
Language</a></i>" section below for the
locale strings (e.g., "<code>de_DE</code>" for German) to
use.</p>
<p>(If your locale is already set, e.g. with the "<code>$LANG</code>"
environment variable, this option is not necessary,
since Tux Paint honors your environment's setting,
if possible.)</p>
</dd>
<dt><code><b>--nosysconfig</b></code></dt>
<dd>
<p>Under Linux and Unix, this prevents the system-wide configuration
file, "<code>/etc/tuxpaint/tuxpaint.conf</code>", from being read.</p>
<p>Only your own configuration file, "<code>~/.tuxpaintrc</code>",
if it exists, will be used.</p>
</dd>
</dl>
</blockquote>
<hr size=1 noshade>
<h2>Command-Line Informational Options</h2>
<blockquote>
<p>The following options display some informative text on the screen.
Tux Paint doesn't actually start up and run afterwards, however.</p>
<blockquote>
<dl>
<dt><code><b>--version</b></code><br>
<code><b>--verbose-version</b></code></dt>
<dd>
Display the version number and date of the copy of Tux Paint
you are running. The "--verbose-version" also lists what compile-time
options were set. (See INSTALL.txt and FAQ.txt).
</dd>
<dt><code><b>--copying</b></code></dt>
<dd>
Show brief license information about copying Tux Paint.
</dd>
<dt><code><b>--usage</b></code></dt>
<dd>
Display the list of available command-line options.
</dd>
<dt><code><b>--help</b></code></dt>
<dd>
Display brief help on using Tux Paint.
</dd>
<dt><code><b>--lang help</b></code></dt>
<dd>
Display a list of available languages in Tux Paint.
</dd>
<dt><code><b>--joystick-dev list</b></code></dt>
<dd>
Display list of attached joysticks available to Tux Paint.
</dd>
</dl>
</blockquote>
</blockquote>
</blockquote>
<hr size=2 noshade>
<h1><a name="different_language">Choosing a Different Language</a></h1>
<blockquote>
<p>Tux Paint has been translated into a number of languages.
To access the translations, you can use the "<code>--lang</code>"
option on the command-line to set the language (e.g.
"<code>--lang spanish</code>")
or use the "<code>lang=</code>" setting in the configuration file
(e.g., "<code>lang=spanish</code>").</p>
<p>Tux Paint also honors your environment's current locale.
(You can override it on the command-line using the
"<code>--locale</code>" option; see <a href="#locale">above</a>.)</p>
<p>Use the option "<code>--lang help</code>" to list the
available language options available.</p>
<h2>Available Languages</h2>
<blockquote><table border=1 cellspacing=0 cellpadding=2
summary="Locale values and the languages they represent.">
<tr>
<th>Locale Code</th>
<th>Language<br>
(native name)</th>
<th>Language<br>
(English name)</th>
<th>Input Method Cycle Key Combination</th>
</tr>
<tr>
<td><code>C</code></td>
<td> </td>
<td>English</td>
<td> </td>
</tr>
<tr>
<td><code>ach_UG</code></td>
<td>Acoli</td>
<td>Acholi</td>
<td> </td>
</tr>
<tr>
<td><code>af_ZA</code></td>
<td> </td>
<td>Afrikaans</td>
<td> </td>
</tr>
<tr>
<td><code>ak_GH</code></td>
<td> </td>
<td>Akan</td>
<td> </td>
</tr>
<tr>
<td><code>am_ET</code></td>
<td> </td>
<td>Amharic</td>
<td> </td>
</tr>
<tr>
<td><code>an_ES</code></td>
<td> </td>
<td>Aragones</td>
<td> </td>
</tr>
<tr>
<td><code>ar_SA</code></td>
<td> </td>
<td>Arabic</td>
<td> </td>
</tr>
<tr>
<td><code>as_IN</code></td>
<td> </td>
<td>Assamese</td>
<td> </td>
</tr>
<tr>
<td><code>ast_ES</code></td>
<td> </td>
<td>Asturian</td>
<td> </td>
</tr>
<tr>
<td><code>az_AZ</code></td>
<td> </td>
<td>Azerbaijani</td>
<td> </td>
</tr>
<tr>
<td><code>bm_ML</code></td>
<td> </td>
<td>Bambara</td>
<td> </td>
</tr>
<tr>
<td><code>bn_IN</code></td>
<td> </td>
<td>Bengali</td>
<td> </td>
</tr>
<tr>
<td><code>be_BY</code></td>
<td>Bielaruskaja</td>
<td>Belarusian</td>
<td> </td>
</tr>
<tr>
<td><code>bg_BG</code></td>
<td> </td>
<td>Bulgarian</td>
<td> </td>
</tr>
<tr>
<td><code>bo_CN</code> (*)</td>
<td> </td>
<td>Tibetan</td>
<td> </td>
</tr>
<tr>
<td><code>br_FR</code></td>
<td>Brezhoneg</td>
<td>Breton</td>
<td> </td>
</tr>
<tr>
<td><code>brx_IN</code></td>
<td> </td>
<td>Bodo</td>
<td> </td>
</tr>
<tr>
<td><code>bs_BA</code></td>
<td> </td>
<td>Bosnian</td>
<td> </td>
</tr>
<tr>
<td><code>ca_ES</code></td>
<td>Català</td>
<td>Catalan</td>
<td> </td>
</tr>
<tr>
<td><code>ca_ES@valencia</code></td>
<td>Valencia</td>
<td>Valencian</td>
<td> </td>
</tr>
<tr>
<td><code>cgg_UG</code></td>
<td>Chiga</td>
<td>Kiga</td>
<td> </td>
</tr>
<tr>
<td><code>cs_CZ</code></td>
<td>Cesky</td>
<td>Czech</td>
<td> </td>
</tr>
<tr>
<td><code>cy_GB</code></td>
<td>Cymraeg</td>
<td>Welsh</td>
<td> </td>
</tr>
<tr>
<td><code>da_DK</code></td>
<td>Dansk</td>
<td>Danish</td>
<td> </td>
</tr>
<tr>
<td><code>de_DE</code></td>
<td>Deutsch</td>
<td>German</td>
<td> </td>
</tr>
<tr>
<td><code>doi_IN</code></td>
<td> </td>
<td>Dogri</td>
<td> </td>
</tr>
<tr>
<td><code>et_EE</code></td>
<td> </td>
<td>Estonian</td>
<td> </td>
</tr>
<tr>
<td><code>el_GR</code> (*)</td>
<td> </td>
<td>Greek</td>
<td> </td>
</tr>
<tr>
<td><code>en_AU</code></td>
<td> </td>
<td>Australian English</td>
<td> </td>
</tr>
<tr>
<td><code>en_CA</code></td>
<td> </td>
<td>Canadian English</td>
<td> </td>
</tr>
<tr>
<td><code>en_GB</code></td>
<td> </td>
<td>British English</td>
<td> </td>
</tr>
<tr>
<td><code>en_ZA</code></td>
<td> </td>
<td>South African English</td>
<td> </td>
</tr>
<tr>
<td><code>eo</code></td>
<td> </td>
<td>Esperanto</td>
<td> </td>
</tr>
<tr>
<td><code>es_ES</code></td>
<td>Español</td>
<td>Spanish</td>
<td> </td>
</tr>
<tr>
<td><code>es_MX</code></td>
<td>Español-Mejicano</td>
<td>Mexican Spanish</td>
<td> </td>
</tr>
<tr>
<td><code>eu_ES</code></td>
<td>Euskara</td>
<td>Basque</td>
<td> </td>
</tr>
<tr>
<td><code>fa_IR</code></td>
<td> </td>
<td>Persian</td>
<td> </td>
</tr>
<tr>
<td><code>ff_SN</code></td>
<td>Fulah</td>
<td>Fula</td>
<td> </td>
</tr>
<tr>
<td><code>fi_FI</code></td>
<td>Suomi</td>
<td>Finnish</td>
<td> </td>
</tr>
<tr>
<td><code>fo_FO</code></td>
<td> </td>
<td>Faroese</td>
<td> </td>
</tr>
<tr>
<td><code>fr_FR</code></td>
<td>Français</td>
<td>French</td>
<td> </td>
</tr>
<tr>
<td><code>ga_IE</code></td>
<td>Gàidhlig</td>
<td>Irish Gaelic</td>
<td> </td>
</tr>
<tr>
<td><code>gd_GB</code></td>
<td>Ghaidhlig</td>
<td>Scottish Gaelic</td>
<td> </td>
</tr>
<tr>
<td><code>gl_ES</code></td>
<td>Galego</td>
<td>Galician</td>
<td> </td>
</tr>
<tr>
<td><code>gos_NL</code></td>
<td>Zudelk Veenkelonioals</td>
<td>Gronings</td>
<td> </td>
</tr>
<tr>
<td><code>gu_IN</code></td>
<td> </td>
<td>Gujarati</td>
<td> </td>
</tr>
<tr>
<td><code>he_IL</code> (*)</td>
<td> </td>
<td>Hebrew</td>
<td> </td>
</tr>
<tr>
<td><code>hi_IN</code> (*)</td>
<td> </td>
<td>Hindi</td>
<td> </td>
</tr>
<tr>
<td><code>hr_HR</code></td>
<td>Hrvatski</td>
<td>Croatian</td>
<td> </td>
</tr>
<tr>
<td><code>hu_HU</code></td>
<td>Magyar</td>
<td>Hungarian</td>
<td> </td>
</tr>
<tr>
<td><code>hy_AM</code></td>
<td>Hayeren</td>
<td>Armenian</td>
<td> </td>
</tr>
<tr>
<td><code>id_ID</code></td>
<td>Bahasa Indonesia</td>
<td>Indonesian</td>
<td> </td>
</tr>
<tr>
<td><code>is_IS</code></td>
<td>Íslenska</td>
<td>Icelandic</td>
<td> </td>
</tr>
<tr>
<td><code>it_IT</code></td>
<td>Italiano</td>
<td>Italian</td>
<td> </td>
</tr>
<tr>
<td><code>iu_CA</code></td>
<td> </td>
<td>Inuktitut</td>
<td> </td>
</tr>
<tr>
<td><code>ja_JP</code> (*)</td>
<td> </td>
<td>Japanese</td>
<td>right [Alt]</td>
</tr>
<tr>
<td><code>ka_GE</code></td>
<td> </td>
<td>Georgian</td>
<td> </td>
</tr>
<tr>
<td><code>kab</code></td>
<td> </td>
<td>Kabyle</td>
<td> </td>
</tr>
<tr>
<td><code>km_KH</code></td>
<td> </td>
<td>Khmer</td>
<td> </td>
</tr>
<tr>
<td><code>kn_IN</code></td>
<td> </td>
<td>Kannada</td>
<td> </td>
</tr>
<tr>
<td><code>ko_KR</code> (*)</td>
<td> </td>
<td>Korean</td>
<td>right [Alt] or left [Alt]</td>
</tr>
<tr>
<td><code>kok_IN</code></td>
<td> </td>
<td>Konkani (Devaganari)</td>
<td> </td>
</tr>
<tr>
<td><code>kok@roman</code></td>
<td> </td>
<td>Konkani (Roman)</td>
<td> </td>
</tr>
<tr>
<td><code>ks_IN@devanagari</code></td>
<td> </td>
<td>Kashmiri (Devanagari)</td>
<td> </td>
</tr>
<tr>
<td><code>ks_IN</code></td>
<td> </td>
<td>Kashmiri (Perso-Arabic)</td>
<td> </td>
</tr>
<tr>
<td><code>ku_TR</code></td>
<td> </td>
<td>Kurdish</td>
<td> </td>
</tr>
<tr>
<td><code>lb_LU</code></td>
<td>Letzebuergesch</td>
<td>Luxembourgish</td>
<td> </td>
</tr>
<tr>
<td><code>lg_UG</code></td>
<td> </td>
<td>Luganda</td>
<td> </td>
</tr>
<tr>
<td><code>lt_LT</code></td>
<td>Lietuviu</td>
<td>Lithuanian</td>
<td> </td>
</tr>
<tr>
<td><code>lv_LV</code></td>
<td> </td>
<td>Latvian</td>
<td> </td>
</tr>
<tr>
<td><code>mk_MK</code></td>
<td> </td>
<td>Macedonian</td>
<td> </td>
</tr>
<tr>
<td><code>mai_IN</code></td>
<td> </td>
<td>Maithili</td>
<td> </td>
</tr>
<tr>
<td><code>ml_IN</code></td>
<td> </td>
<td>Malayalam</td>
<td> </td>
</tr>
<tr>
<td><code>mn_MN</code></td>
<td> </td>
<td>Mongolian</td>
<td> </td>
</tr>
<tr>
<td><code>mni_IN</code></td>
<td> </td>
<td>Manipuri (Bengali)</td>
<td> </td>
</tr>
<tr>
<td><code>mni@meiteimayek</code></td>
<td> </td>
<td>Manipuri (Meitei Mayek)</td>
<td> </td>
</tr>
<tr>
<td><code>mr_IN</code></td>
<td> </td>
<td>Marathi</td>
<td> </td>
</tr>
<tr>
<td><code>ms_MY</code></td>
<td> </td>
<td>Malay</td>
<td> </td>
</tr>
<tr>
<td><code>nb_NO</code></td>
<td>Norsk (bokmål)</td>
<td>Norwegian Bokmål</td>
<td> </td>
</tr>
<tr>
<td><code>ne_NP</code></td>
<td>Nepali</td>
<td> </td>
<td> </td>
</tr>
<tr>
<td><code>nl_NL</code></td>
<td> </td>
<td>Dutch</td>
<td> </td>
</tr>
<tr>
<td><code>nn_NO</code></td>
<td>Norsk (nynorsk)</td>
<td>Norwegian Nynorsk</td>
<td> </td>
</tr>
<tr>
<td><code>nr_ZA</code></td>
<td> </td>
<td>Ndebele</td>
<td> </td>
</tr>
<tr>
<td><code>nso_ZA</code></td>
<td>Sesotho sa Leboa</td>
<td>Northern Sotho</td>
<td> </td>
</tr>
<tr>
<td><code>oc_FR</code></td>
<td> </td>
<td>Occitan</td>
<td> </td>
</tr>
<tr>
<td><code>oj_CA</code></td>
<td> </td>
<td>Ojibwe</td>
<td>Ojibway</td>
</tr>
<tr>
<td><code>pa_IN</code></td>
<td> </td>
<td>Punjabi</td>
<td> </td>
</tr>
<tr>
<td><code>or_IN</code></td>
<td> </td>
<td>Odia</td>
<td>Oriya</td>
</tr>
<tr>
<td><code>pl_PL</code></td>
<td>Polski</td>
<td>Polish</td>
<td> </td>
</tr>
<tr>
<td><code>pt_BR</code></td>
<td>Portugês Brazileiro</td>
<td>Brazilian Portuguese</td>
<td> </td>
</tr>
<tr>
<td><code>pt_PT</code></td>
<td>Portugês</td>
<td>Portuguese</td>
<td> </td>
</tr>
<tr>
<td><code>ro_RO</code></td>
<td> </td>
<td>Romanian</td>
<td> </td>
</tr>
<tr>
<td><code>ru_RU</code></td>
<td>Russkiy</td>
<td>Russian</td>
<td> </td>
</tr>
<tr>
<td><code>rw_RW</code></td>
<td> </td>
<td>Kinyarwanda</td>
<td> </td>
</tr>
<tr>
<td><code>sa_IN</code></td>
<td> </td>
<td>Sanskrit</td>
<td> </td>
</tr>
<tr>
<td><code>sat_IN</code></td>
<td> </td>
<td>Santali (Devaganari)</td>
<td> </td>
</tr>
<tr>
<td><code>sat@olchiki</code></td>
<td> </td>
<td>Santali (Ol-Chikii)</td>
<td> </td>
</tr>
<tr>
<td><code>shs_CA</code></td>
<td>Secwepemctin</td>
<td>Shuswap</td>
<td> </td>
</tr>
<tr>
<td><code>si_LK</code></td>
<td> </td>
<td>Sinhala</td>
<td> </td>
</tr>
<tr>
<td><code>sd_IN@devanagari</code></td>
<td> </td>
<td>Sindhi (Devanagari)</td>
<td> </td>
</tr>
<tr>
<td><code>sd_IN</code></td>
<td> </td>
<td>Sindhi</td>
<td> </td>
</tr>
<tr>
<td><code>sk_SK</code></td>
<td> </td>
<td>Slovak</td>
<td> </td>
</tr>
<tr>
<td><code>sl_SI</code></td>
<td> </td>
<td>Slovenian</td>
<td> </td>
</tr>
<tr>
<td><code>son</code></td>
<td> </td>
<td>Songhay</td>
<td> </td>
</tr>
<tr>
<td><code>sq_AL</code></td>
<td> </td>
<td>Albanian</td>
<td> </td>
</tr>
<tr>
<td><code>sr_YU</code></td>
<td> </td>
<td>Serbian (cyrillic)</td>
<td> </td>
</tr>
<tr>
<td><code>sr_RS@latin</code></td>
<td> </td>
<td>Serbian (latin)</td>
<td> </td>
</tr>
<tr>
<td><code>su_ID</code></td>
<td> </td>
<td>Sundanese</td>
<td> </td>
</tr>
<tr>
<td><code>sv_SE</code></td>
<td>Svenska</td>
<td>Swedish</td>
<td> </td>
</tr>
<tr>
<td><code>sw_TZ</code></td>
<td> </td>
<td>Swahili</td>
<td> </td>
</tr>
<tr>
<td><code>ta_IN</code> (*)</td>
<td> </td>
<td>Tamil</td>
<td> </td>
</tr>
<tr>
<td><code>te_IN</code> (*)</td>
<td> </td>
<td>Telugu</td>
<td> </td>
</tr>
<tr>
<td><code>th_TH</code> (*)</td>
<td> </td>
<td>Thai</td>
<td> </td>
</tr>
<tr>
<td><code>tl_PH</code> (*)</td>
<td> </td>
<td>Tagalog</td>
<td> </td>
</tr>
<tr>
<td><code>tlh</code></td>
<td>tlhIngan</td>
<td>Klingon</td>
<td> </td>
</tr>
<tr>
<td><code>tr_TR</code></td>
<td> </td>
<td>Turkish</td>
<td> </td>
</tr>
<tr>
<td><code>tw_GH</code></td>
<td> </td>
<td>Twi</td>
<td> </td>
</tr>
<tr>
<td><code>uk_UA</code></td>
<td> </td>
<td>Ukrainian</td>
<td> </td>
</tr>
<tr>
<td><code>ur_IN</code></td>
<td> </td>
<td>Urdu</td>
<td> </td>
</tr>
<tr>
<td><code>ve_ZA</code></td>
<td> </td>
<td>Venda</td>
<td> </td>
</tr>
<tr>
<td><code>vec</code></td>
<td>Venèto</td>
<td>Venetian</td>
<td> </td>
</tr>
<tr>
<td><code>vi_VN</code></td>
<td> </td>
<td>Vietnamese</td>
<td> </td>
</tr>
<tr>
<td><code>wa_BE</code></td>
<td> </td>
<td>Walloon</td>
<td> </td>
</tr>
<tr>
<td><code>wo_SN</code></td>
<td> </td>
<td>Wolof</td>
<td> </td>
</tr>
<tr>
<td><code>xh_ZA</code></td>
<td> </td>
<td>Xhosa</td>
<td> </td>
</tr>
<tr>
<td><code>zh_CN</code> (*)</td>
<td> </td>
<td>Chinese (Simplified)</td>
<td> </td>
</tr>
<tr>
<td><code>zh_TW</code> (*)</td>
<td> </td>
<td>Chinese (Traditional)</td>
<td> </td>
</tr>
<tr>
<td><code>zam</code></td>
<td> </td>
<td>Zapotec (Miahuatlan)</td>
<td> </td>
</tr>
<tr>
<td><code>zu_ZA</code></td>
<td> </td>
<td>Zulu</td>
<td> </td>
</tr>
</table>
<p><b>(*)</b> - These languages require their own fonts, since they
are not represented using a Latin character set, like the others.
See the "<a href="#special_fonts"><i>Special Fonts</i></a>"
section, below.</p>
<p><i>Note:</i> Tux Paint provides an alternative input method for
entering characters with the <b>Text</b> tool in some locales.
The key comibation(s) listed can be used to cycle through the
supported input methods while the <b>Text</b> tool is active.</p>
</blockquote>
<h2>Setting Your Environment's Locale</h2>
<blockquote>
<p>Changing your locale will affect much of your environment.</p>
<p>As stated above, along with letting you choose the language at
runtime using command-line options ("<code>--lang</code>" and
"<code>--locale</code>"),
Tux Paint honors the global locale setting in your environment.</p>
<p>If you haven't already set your environment's locale, the following
will briefly explain how:</p>
<h3>Linux/Unix Users</h3>
<blockquote>
<p>First, be sure the locale you want to use is enabled by
editing the file "<code>/etc/locale.gen</code>" on your system and
then running the program "<code>locale-gen</code>" as root.</p>
<p><i>Note: Debian users may be able to simply run the command
"<code>dpkg-reconfigure locales</code>" as root to bring up a
configuration dialog. Ubuntu users may be able to run
"<code>sudo dpkg-reconfigure localeconf</code>"
(the "localeconf" package may need to be installed first), or
may need to edit the file
"<code>/var/lib/locales/supported.d/local</code>"
first, and add locales they want, from the list found in
"<code>/usr/share/i18n/SUPPORTED</code>".</i></p>
<p>Then, before running Tux Paint, set your "<code>$LANG</code>"
environment variable to one of the locales listed above. (If you
want all programs that can be translated to be, you may wish to place
the following in your login script; e.g. <code>~/.profile</code>,
<code>~/.bashrc</code>, <code>~/.cshrc</code>, etc.)</p>
<p>For example, in a Bourne Shell (like BASH):</p>
<blockquote><code>
export LANG=es_ES ; \<br>
tuxpaint
</code></blockquote>
<p>And in a C Shell (like TCSH):</p>
<blockquote><code>
setenv LANG es_ES ; \<br>
tuxpaint
</code></blockquote>
</blockquote>
<hr size=1 noshade>
<h3>Windows Users</h3>
<blockquote>
<p>Tux Paint will recognize the current locale and use the
appropriate files by default. So this section is only for people
trying different languages.</p>
<p>The simplest thing to do is to use the '<code>--lang</code>'
switch in the shortcut (see "INSTALL.txt"). However, by using
an MSDOS Prompt window, it is also possible to issue a command
like this:</p>
<blockquote><code>
set LANG=es_ES
</code></blockquote>
<p>...which will set the language for the lifetime of that DOS
window.</p>
<p>For something more permanent, try editing your computer's
'<code>autoexec.bat</code>' file using Windows' "<b>sysedit</b>"
tool:</p>
<h6>Windows 95/98</h6>
<ol>
<li>Click on the 'Start' button, and select 'Run...'.
<li>Type "sysedit" into the 'Open:' box (with or without quotes).
<li>Click 'OK'.
<li>Locate the AUTOEXEC.BAT window in the System Configuration
Editor.
<li>Add the following at the bottom of the file:
<blockquote><code>
set LANG=es_ES
</code></blockquote>
<li>Close the System Configuration Editor, answering yes to save
the changes.
<li>Restart your machine.
</ol>
<blockquote>
To affect the <b>entire machine</b>, and <b>all applications</b>,
it is possible to use the "Regional Settings" control panel:
</blockquote>
<ol>
<li>Click on the 'Start' button, and select
'Settings | Control Panel'.
<li>Double click on the "Regional Settings" globe.
<li>Select a language/region from the drop down list.
<li>Click 'OK'.
<li>Restart your machine when prompted.
</ol>
</blockquote>
</blockquote>
<h3><a name="special_fonts">Special Fonts</a></h3>
<blockquote>
<p>Some languages require special fonts be installed. These font
files (which are in TrueType format (TTF)), are much too large to
include with the Tux Paint download, and are available
separately. (See the table above, under the
"<a href="#different_language"><i>Choosing a Different Language</i></a>"
section.)</p>
<p><b>Note:</b> As of version 0.9.18, Tux Paint uses the "SDL_Pango"
library, which utilizes the "Pango" library to render text in the user
interface, rather than using "SDL_ttf" directly. Unless your copy of
Tux Paint was built without Pango support, special fonts should
<b><i>no longer be necessary</i></b>.</p>
<p>When running Tux Paint in a language that requires its own font,
Tux Paint will try to load the font file from its system-wide
"<code><b>fonts</b></code>" directory (under a
"<code><b>locale</b></code>" subdirectory). The name of the file
corresponds to the first two letters in the 'locale' code of the
language (e.g., "ko" for Korean, "ja" for Japanese,
"zh_tw" for Traditional Chinese).</p>
<p>For example, under Linux or Unix, when Tux Paint is run in Korean
(e.g., with the option "<code>--lang korean</code>"),
Tux Paint will attempt to load the following font file:</p>
<blockquote>
<p><code>/usr/share/tuxpaint/fonts/locale/<b>ko.ttf</b></code></p>
</blockquote>
<p>You can download fonts for supported languages from Tux Paint's
website,
<a href="http://www.tuxpaint.org/">http://www.tuxpaint.org/</a>.
(Look in the 'Fonts' section under 'Download.')</p>
<p>Under Unix and Linux, you can use the <code>Makefile</code> that comes
with the font to install the font in the appropriate location.</p>
</blockquote>
</blockquote>
<hr noshade>
</body></html>
|