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
|
# BRLTTY - A background process providing access to the console screen (when in
# text mode) for a blind person using a refreshable braille display.
#
# Copyright (C) 1995-2025 by The BRLTTY Developers.
#
# BRLTTY comes with ABSOLUTELY NO WARRANTY.
#
# This is free software, placed under the terms of the
# GNU Lesser General Public License, as published by the Free Software
# Foundation; either version 2.1 of the License, or (at your option) any
# later version. Please see the file LICENSE-LGPL for details.
#
# Web Page: http://brltty.app/
#
# This software is maintained by Dave Mielke <dave@mielke.cc>.
#
msgid ""
msgstr ""
"Project-Id-Version: brltty 5.6\n"
"Report-Msgid-Bugs-To: BRLTTY@brltty.app\n"
"POT-Creation-Date: 2021-01-25 09:02-0500\n"
"PO-Revision-Date: 2018-10-22 20:50+0200\n"
"Last-Translator: Sebastiano Pistore <SebastianoPistore.info@protonmail.ch>\n"
"Language-Team: Friends of BRLTTY <BRLTTY@brlttY.app>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 2.2\n"
#: Programs/brltty.c:167
#, c-format
msgid "\"%s\" started as \"%s\"\n"
msgstr ""
#: Programs/menu_prefs.c:457 Programs/menu_prefs.c:458
#: Programs/menu_prefs.c:460 Programs/menu_prefs.c:461
#: Programs/menu_prefs.c:464 Programs/menu_prefs.c:465
#: Programs/menu_prefs.c:466 Programs/menu_prefs.c:468
#: Programs/menu_prefs.c:469
msgid "1 cell"
msgstr ""
#: Programs/menu_prefs.c:789
msgid "1 second"
msgstr "1 secondo"
#: Programs/menu_prefs.c:851
msgid "10 seconds"
msgstr "10 secondi"
#: Programs/menu_prefs.c:1158
msgid "12 Hour"
msgstr "12 ore"
#: Programs/menu_prefs.c:456 Programs/menu_prefs.c:459
#: Programs/menu_prefs.c:462 Programs/menu_prefs.c:463
#: Programs/menu_prefs.c:467
msgid "2 cells"
msgstr "2 celle"
#: Programs/menu_prefs.c:790
msgid "2 seconds"
msgstr "2 secondi"
#: Programs/menu_prefs.c:852
msgid "20 seconds"
msgstr "20 secondi"
#: Programs/menu_prefs.c:1157
msgid "24 Hour"
msgstr "24 ore"
#: Programs/menu_prefs.c:787
msgid "250 milliseconds"
msgstr "250 millisecondi"
#: Programs/menu_prefs.c:853
msgid "40 seconds"
msgstr "40 secondi"
#: Programs/menu_prefs.c:850
msgid "5 seconds"
msgstr "5 secondi"
#: Programs/menu_prefs.c:788
msgid "500 milliseconds"
msgstr "500 millisecondi"
#: Programs/menu_prefs.c:615
msgid "6-Dot Computer Braille"
msgstr ""
#: Programs/menu_prefs.c:613
msgid "8-Dot Computer Braille"
msgstr ""
#: Programs/brltty-ttb.c:179
msgid "8-bit character set to use."
msgstr ""
#: Programs/scr_menu.c:104
msgid "<off>"
msgstr ""
#: Programs/config.c:1382
msgid "API Parameter"
msgstr ""
#: Programs/cmds.auto.h:1252
msgid "AT (set 2) keyboard scan code"
msgstr ""
#: Programs/midi.c:67
msgid "Accordion"
msgstr ""
#. Bass
#: Programs/midi.c:80
msgid "Acoustic Bass"
msgstr ""
#. Piano
#: Programs/midi.c:44
msgid "Acoustic Grand Piano"
msgstr ""
#. Guitar
#: Programs/midi.c:71
msgid "Acoustic Guitar (nylon)"
msgstr ""
#: Programs/midi.c:72
msgid "Acoustic Guitar (steel)"
msgstr ""
#: Programs/menu_prefs.c:1184
msgid "After Time"
msgstr ""
#: Programs/midi.c:171
msgid "Agogo"
msgstr ""
#: Programs/menu_prefs.c:1374
msgid "Alert"
msgstr "Avviso"
#: Programs/menu_prefs.c:993
msgid "Alert Dots"
msgstr ""
#: Programs/menu_prefs.c:998
msgid "Alert Messages"
msgstr ""
#: Programs/menu_prefs.c:938
msgid "Alert Tunes"
msgstr ""
#: Programs/menu_prefs.c:753 Programs/menu_prefs.c:1032
msgid "All"
msgstr ""
#: Programs/menu_prefs.c:468
msgid "Alphabetic Braille Window Coordinates"
msgstr ""
#: Programs/menu_prefs.c:469
msgid "Alphabetic Screen Cursor Coordinates"
msgstr ""
#: Programs/midi.c:117
msgid "Alto Sax"
msgstr ""
#: Programs/midi.c:185
msgid "Applause"
msgstr ""
#: Programs/cmd_miscellaneous.c:60
msgid "April"
msgstr "Aprile"
#: Programs/log.c:118
msgid "Async Events"
msgstr ""
#: Programs/menu_prefs.c:710
msgid "Attributes Invisible Time"
msgstr ""
#: Programs/config.c:2827 Programs/menu_prefs.c:1280
msgid "Attributes Table"
msgstr ""
#: Programs/menu_prefs.c:704
msgid "Attributes Visible Time"
msgstr ""
#: Programs/cmd_miscellaneous.c:64
msgid "August"
msgstr "Agosto"
#: Programs/alert.c:168
msgid "Autorelease"
msgstr ""
#: Programs/menu_prefs.c:856
msgid "Autorelease Time"
msgstr ""
#: Programs/menu_prefs.c:873
msgid "Autorepeat Enabled"
msgstr ""
#: Programs/menu_prefs.c:879
msgid "Autorepeat Interval"
msgstr ""
#: Programs/menu_prefs.c:886
msgid "Autorepeat Panning"
msgstr ""
#: Programs/menu_prefs.c:1075
msgid "Autospeak"
msgstr ""
#: Programs/config.c:1827
msgid "BRLTTY stopped"
msgstr ""
#: Programs/midi.c:166
msgid "Bag Pipe"
msgstr ""
#: Programs/midi.c:162
msgid "Banjo"
msgstr ""
#: Programs/midi.c:119
msgid "Baritone Sax"
msgstr ""
#: Programs/midi.c:28
msgid "Bass"
msgstr "Basso"
#: Programs/midi.c:122
msgid "Bassoon"
msgstr ""
#: Programs/menu_prefs.c:945
msgid "Beeper"
msgstr ""
#: Programs/menu_prefs.c:1183
msgid "Before Time"
msgstr ""
#: Programs/midi.c:182
msgid "Bird Tweet"
msgstr ""
#: Programs/menu_prefs.c:698
msgid "Blinking Attributes"
msgstr ""
#: Programs/menu_prefs.c:716
msgid "Blinking Capitals"
msgstr ""
#: Programs/menu_prefs.c:675
msgid "Blinking Screen Cursor"
msgstr ""
#: Programs/menu_prefs.c:1133
msgid "Blinking Speech Cursor"
msgstr ""
#: Programs/menu_prefs.c:576 Programs/menu_prefs.c:1243
msgid "Block"
msgstr ""
#: Programs/midi.c:129
msgid "Blown Bottle"
msgstr ""
#: Programs/log.c:142
msgid "Bluetooth I/O"
msgstr ""
#: Programs/config.c:1603
msgid "Braille Device"
msgstr "Dispositivo braille"
#: Programs/config.c:1599
msgid "Braille Driver"
msgstr ""
#: Programs/log.c:148
msgid "Braille Driver Events"
msgstr ""
#: Programs/menu_prefs.c:653
msgid "Braille Firmness"
msgstr ""
#: Programs/log.c:82
msgid "Braille Key Events"
msgstr ""
#: Programs/config.c:1602
msgid "Braille Parameter"
msgstr ""
#: Programs/menu_prefs.c:609
msgid "Braille Presentation"
msgstr ""
#: Programs/menu_prefs.c:1270
msgid "Braille Tables"
msgstr ""
#: Programs/menu_prefs.c:821
msgid "Braille Typing"
msgstr ""
#: Programs/menu_prefs.c:457
msgid "Braille Window Column"
msgstr ""
#: Programs/menu_prefs.c:456
msgid "Braille Window Coordinates"
msgstr ""
#: Programs/menu_prefs.c:774
msgid "Braille Window Overlap"
msgstr ""
#: Programs/menu_prefs.c:458
msgid "Braille Window Row"
msgstr ""
#: Programs/config.c:475
#, c-format
msgid "Braille driver code (%s, %s, or one of {%s})."
msgstr ""
#: Programs/midi.c:31
msgid "Brass"
msgstr ""
#: Programs/midi.c:112
msgid "Brass Section"
msgstr ""
#: Programs/midi.c:180
msgid "Breath Noise"
msgstr ""
#: Programs/midi.c:45
msgid "Bright Acoustic Piano"
msgstr ""
#: Programs/xbrlapi.c:93
msgid "BrlAPI authorization/authentication schemes"
msgstr ""
#: Programs/xbrlapi.c:86
msgid "BrlAPI host and/or port to connect to"
msgstr ""
#: Programs/menu_prefs.c:1307
msgid "Build Information"
msgstr ""
#: Programs/menu_prefs.c:638
msgid "Capitalization Mode"
msgstr ""
#: Programs/menu_prefs.c:727
msgid "Capitals Invisible Time"
msgstr ""
#: Programs/menu_prefs.c:721
msgid "Capitals Visible Time"
msgstr ""
#: Programs/menu_prefs.c:1397
msgid "Category Log Level"
msgstr ""
#. Chromatic Percussion
#: Programs/midi.c:53
msgid "Celesta"
msgstr "Celesta"
#: Programs/midi.c:91
msgid "Cello"
msgstr "Violoncello"
#: Programs/midi.c:102
msgid "Choir Aahs"
msgstr ""
#: Programs/midi.c:25
msgid "Chromatic Percussion"
msgstr ""
#: Programs/midi.c:65
msgid "Church Organ"
msgstr "Organo a canne"
#: Programs/midi.c:123
msgid "Clarinet"
msgstr ""
#: Programs/midi.c:51
msgid "Clavi"
msgstr ""
#: Programs/menu.c:820
msgid "Close"
msgstr "Chiudi"
#: Programs/menu_prefs.c:1167
msgid "Colon"
msgstr ""
#: Programs/menu_prefs.c:1331
msgid "Configuration Directory"
msgstr ""
#: Programs/config.c:2770 Programs/menu_prefs.c:1336
msgid "Configuration File"
msgstr ""
#: Programs/alert.c:163
msgid "Console Bell"
msgstr ""
#: Programs/menu_prefs.c:924
msgid "Console Bell Alert"
msgstr ""
#: Programs/midi.c:92
msgid "Contrabass"
msgstr "Contrabasso"
#: Programs/menu_prefs.c:614
msgid "Contracted Braille"
msgstr ""
#: Programs/config.c:2834 Programs/menu_prefs.c:1288
msgid "Contraction Table"
msgstr ""
#: Programs/brltty-ctb.c:62
msgid "Contraction table."
msgstr ""
#: Programs/brltty-ctb.c:76
msgid "Contraction verification table."
msgstr ""
#: Programs/menu_prefs.c:1375
msgid "Critical"
msgstr ""
#: Programs/log.c:100
msgid "Cursor Routing"
msgstr ""
#: Programs/log.c:94
msgid "Cursor Tracking"
msgstr ""
#: Programs/menu_prefs.c:793
msgid "Cursor Tracking Delay"
msgstr ""
#: Programs/menu_prefs.c:1205
msgid "Dash"
msgstr "Trattino"
#: Programs/menu_prefs.c:1198
msgid "Date Format"
msgstr "Formato data"
#: Programs/menu_prefs.c:1187
msgid "Date Position"
msgstr ""
#: Programs/menu_prefs.c:1210
msgid "Date Separator"
msgstr ""
#: Programs/menu_prefs.c:1195
msgid "Day Month Year"
msgstr "Giorno mese anno"
#: Programs/menu_prefs.c:1380
msgid "Debug"
msgstr "Debug"
#: Programs/cmd_miscellaneous.c:68
msgid "December"
msgstr "Dicembre"
#: Programs/config.c:496
msgid "Device for accessing braille display."
msgstr ""
#: Programs/config.c:455
msgid "Disable the application programming interface."
msgstr ""
#: Programs/midi.c:77
msgid "Distortion Guitar"
msgstr "Chitarra con distorsore"
#: Programs/config.c:598
msgid "Do not autospeak when braille is not being used."
msgstr ""
#: Programs/xbrlapi.c:112
msgid "Do not write any text to the braille device"
msgstr ""
#: Programs/brltty-trtxt.c:79
msgid "Don't fall back to the Unicode base character."
msgstr ""
#: Programs/config.c:366
msgid "Don't switch to an unprivileged user or relinquish any privileges (group memberships, capabilities, etc)."
msgstr ""
#: Programs/alert.c:52
msgid "Done"
msgstr ""
#: Programs/menu_prefs.c:1168 Programs/menu_prefs.c:1207
msgid "Dot"
msgstr "Punto"
#: Programs/menu_prefs.c:831
msgid "Dots via Unicode Braille"
msgstr ""
#. Organ
#: Programs/midi.c:62
msgid "Drawbar Organ"
msgstr ""
#: Programs/config.c:2791 Programs/menu_prefs.c:1356
msgid "Drivers Directory"
msgstr ""
#: Programs/midi.c:60
msgid "Dulcimer"
msgstr "Saltèrio"
#: Programs/menu_prefs.c:768
msgid "Eager Sliding Braille Window"
msgstr ""
#: Programs/brltty-ttb.c:158
msgid "Edit table."
msgstr "Modificare tabella."
#: Programs/midi.c:81
msgid "Electric Bass (finger)"
msgstr ""
#: Programs/midi.c:82
msgid "Electric Bass (pick)"
msgstr ""
#: Programs/midi.c:46
msgid "Electric Grand Piano"
msgstr ""
#: Programs/midi.c:74
msgid "Electric Guitar (clean)"
msgstr ""
#: Programs/midi.c:73
msgid "Electric Guitar (jazz)"
msgstr ""
#: Programs/midi.c:75
msgid "Electric Guitar (muted)"
msgstr ""
#: Programs/midi.c:48
msgid "Electric Piano 1"
msgstr ""
#: Programs/midi.c:49
msgid "Electric Piano 2"
msgstr ""
#: Programs/menu_prefs.c:1373
msgid "Emergency"
msgstr "Emergenza"
#: Programs/menu_prefs.c:455
msgid "End"
msgstr "Fine"
#: Programs/menu_prefs.c:754
msgid "End of Line"
msgstr ""
#: Programs/midi.c:121
msgid "English Horn"
msgstr "Corno inglese"
#: Programs/menu_prefs.c:1067
msgid "Enqueue"
msgstr ""
#: Programs/midi.c:30
msgid "Ensemble"
msgstr ""
#: Programs/menu_prefs.c:1376
msgid "Error"
msgstr "Errore"
#: Programs/midi.c:37
msgid "Ethnic Instruments"
msgstr ""
#: Programs/menu_prefs.c:921
msgid "Event Alerts"
msgstr ""
#: Programs/menu_prefs.c:626
msgid "Expand Current Word"
msgstr ""
#: Programs/config.c:410
msgid "Explicit preference settings."
msgstr ""
#: Programs/menu_prefs.c:948
msgid "FM"
msgstr "FM"
#: Programs/menu_prefs.c:986
msgid "FM Volume"
msgstr "Volume FM"
#. Synth FM
#: Programs/midi.c:152
msgid "FX 1 (rain)"
msgstr ""
#: Programs/midi.c:153
msgid "FX 2 (soundtrack)"
msgstr ""
#: Programs/midi.c:154
msgid "FX 3 (crystal)"
msgstr ""
#: Programs/midi.c:155
msgid "FX 4 (atmosphere)"
msgstr ""
#: Programs/midi.c:156
msgid "FX 5 (brightness)"
msgstr ""
#: Programs/midi.c:157
msgid "FX 6 (goblins)"
msgstr ""
#: Programs/midi.c:158
msgid "FX 7 (echoes)"
msgstr ""
#: Programs/midi.c:159
msgid "FX 8 (sci-fi)"
msgstr ""
#: Programs/cmd_miscellaneous.c:58
msgid "February"
msgstr "Febbraio"
#: Programs/midi.c:167
msgid "Fiddle"
msgstr ""
#: Programs/midi.c:126
msgid "Flute"
msgstr "Flauto"
#: Programs/brltty-ctb.c:96
msgid "Force immediate output."
msgstr ""
#: Programs/brltty-cldr.c:42
msgid "Format of each output line."
msgstr ""
#: Programs/brltty-ttb.c:165
msgid "Format of input file."
msgstr ""
#: Programs/brltty-ttb.c:172
msgid "Format of output file."
msgstr ""
#: Programs/midi.c:111
msgid "French Horn"
msgstr "Corno francese"
#: Programs/midi.c:83
msgid "Fretless Bass"
msgstr ""
#: Programs/alert.c:97
msgid "Frozen"
msgstr ""
#: Programs/menu_prefs.c:470
msgid "Generic"
msgstr "Generico"
#: Programs/log.c:64
msgid "Generic Input"
msgstr ""
#: Programs/midi.c:54
msgid "Glockenspiel"
msgstr "Glockenspiel"
#: Programs/midi.c:27
msgid "Guitar"
msgstr "Chitarra"
#. Sound Effects
#: Programs/midi.c:179
msgid "Guitar Fret Noise"
msgstr ""
#: Programs/midi.c:78
msgid "Guitar Harmonics"
msgstr ""
#: Programs/midi.c:186
msgid "Gunshot"
msgstr ""
#: Programs/midi.c:68
msgid "Harmonica"
msgstr ""
#: Programs/midi.c:50
msgid "Harpsichord"
msgstr "Clavicembalo"
#: Programs/midi.c:184
msgid "Helicopter"
msgstr "Elicottero"
#: Programs/scr_help.c:215
msgid "Help Screen"
msgstr "Schermata di aiuto"
#: Programs/menu_prefs.c:649 Programs/menu_prefs.c:902
msgid "High"
msgstr ""
#: Programs/menu_prefs.c:810
msgid "Highlight Braille Window Location"
msgstr ""
#: Programs/midi.c:47
msgid "Honkytonk Piano"
msgstr ""
#: Programs/menu_prefs.c:1066
msgid "Immediate"
msgstr ""
#: Programs/xbrlapi.c:665
msgid "Incompatible XKB library\n"
msgstr ""
#: Programs/xbrlapi.c:667
msgid "Incompatible XKB server support\n"
msgstr ""
#: Programs/menu_prefs.c:1379
msgid "Information"
msgstr "Informazione"
#: Programs/menu_prefs.c:845
msgid "Input Options"
msgstr "Opzioni di input"
#: Programs/log.c:70
msgid "Input Packets"
msgstr "Pacchetti di input"
#: Programs/config.c:341
#, c-format
msgid "Install the %s service, and then exit."
msgstr ""
#: Programs/menu_prefs.c:1383
msgid "Internal Parameters"
msgstr ""
#: Programs/cmd_miscellaneous.c:57
msgid "January"
msgstr "Gennaio"
#: Drivers/Screen/Android/screen.c:197
msgid "Java class not found"
msgstr ""
#: Drivers/Screen/Android/screen.c:181
msgid "Java exception occurred"
msgstr ""
#: Drivers/Screen/Android/screen.c:194
msgid "Java method not found"
msgstr ""
#: Programs/cmd_miscellaneous.c:63
msgid "July"
msgstr "Luglio"
#: Programs/cmd_miscellaneous.c:62
msgid "June"
msgstr "Giugno"
#: Programs/midi.c:165
msgid "Kalimba"
msgstr "Kalimba"
#: Programs/config.c:1525
msgid "Key Bindings"
msgstr ""
#: Programs/config.c:1069
msgid "Key Help"
msgstr ""
#: Programs/config.c:1530 Programs/ktb_list.c:737
msgid "Key Table"
msgstr ""
#: Programs/menu_prefs.c:824
msgid "Keyboard Enabled"
msgstr ""
#: Programs/log.c:88
msgid "Keyboard Key Events"
msgstr ""
#: Programs/menu_prefs.c:931
msgid "Keyboard LED Alerts"
msgstr ""
#: Programs/config.c:2841 Programs/menu_prefs.c:913
msgid "Keyboard Table"
msgstr ""
#: Programs/midi.c:164
msgid "Koto"
msgstr "Koto"
#: Programs/config.c:2973
msgid "Language"
msgstr "Lingua"
#. Synth Lead
#: Programs/midi.c:134
msgid "Lead 1 (square)"
msgstr ""
#: Programs/midi.c:135
msgid "Lead 2 (sawtooth)"
msgstr ""
#: Programs/midi.c:136
msgid "Lead 3 (calliope)"
msgstr ""
#: Programs/midi.c:137
msgid "Lead 4 (chiff)"
msgstr ""
#: Programs/midi.c:138
msgid "Lead 5 (charang)"
msgstr ""
#: Programs/midi.c:139
msgid "Lead 6 (voice)"
msgstr ""
#: Programs/midi.c:140
msgid "Lead 7 (fifths)"
msgstr ""
#: Programs/midi.c:141
msgid "Lead 8 (bass + lead)"
msgstr ""
#: Programs/learn.c:101
msgid "Learn Mode"
msgstr "Modalità apprendimento"
#: Programs/menu_prefs.c:1222
msgid "Left"
msgstr "Sinistra"
#: Programs/brltty-ktb.c:51
msgid "List key names."
msgstr ""
#: Programs/brltty-ktb.c:57
msgid "List key table in help screen format."
msgstr ""
#: Programs/brltty-ktb.c:63
msgid "List key table in reStructuredText format."
msgstr ""
#: Programs/menu_prefs.c:616
msgid "Literary Braille"
msgstr ""
#: Programs/menu_prefs.c:1366
msgid "Locale Directory"
msgstr ""
#: Programs/menu_prefs.c:1402
msgid "Log Categories"
msgstr ""
#: Programs/config.c:836
msgid "Log Level"
msgstr ""
#: Programs/menu_prefs.c:1463
msgid "Log Messages"
msgstr "Messaggi di log"
#: Programs/config.c:688
msgid "Log the versions of the core, API, and built-in drivers, and then exit."
msgstr ""
#: Programs/config.c:653
msgid "Log to standard error rather than to the system log."
msgstr ""
#: Programs/config.c:667
#, c-format
msgid "Logging level (%s or one of {%s}) and/or log categories to enable (any combination of {%s}, each optionally prefixed by %s to disable)"
msgstr ""
#: Programs/menu_prefs.c:867
msgid "Long Press Time"
msgstr ""
#: Programs/menu_prefs.c:647 Programs/menu_prefs.c:900
msgid "Low"
msgstr ""
#: Programs/menu_prefs.c:577
msgid "Lower Left Dot"
msgstr ""
#: Programs/menu_prefs.c:578
msgid "Lower Right Dot"
msgstr ""
#: Programs/menu_prefs.c:947
msgid "MIDI"
msgstr "MIDI"
#: Programs/config.c:637
msgid "MIDI (Musical Instrument Digital Interface) device specifier."
msgstr ""
#: Programs/menu_prefs.c:977
msgid "MIDI Instrument"
msgstr "Strumento MIDI"
#: Programs/menu_prefs.c:967
msgid "MIDI Volume"
msgstr "Volume MIDI"
#: Programs/menu_prefs.c:1326
msgid "Mailing List"
msgstr ""
#: Programs/cmd_miscellaneous.c:59
msgid "March"
msgstr "Marzo"
#: Programs/midi.c:57
msgid "Marimba"
msgstr "Marimba"
#: Programs/menu_prefs.c:650 Programs/menu_prefs.c:903
msgid "Maximum"
msgstr ""
#: Programs/brltty-ctb.c:90
msgid "Maximum length of an output line."
msgstr ""
#: Programs/cmd_miscellaneous.c:61
msgid "May"
msgstr "Maggio"
#: Programs/menu_prefs.c:648 Programs/menu_prefs.c:901
msgid "Medium"
msgstr ""
#: Programs/midi.c:175
msgid "Melodic Tom"
msgstr ""
#: Programs/menu_prefs.c:590
msgid "Menu Options"
msgstr ""
#: Programs/config.c:646
msgid "Message hold timeout (in 10ms units)."
msgstr ""
#: Programs/config.c:839
msgid "Messages Directory"
msgstr ""
#: Programs/config.c:838
msgid "Messages Domain"
msgstr ""
#: Programs/config.c:837
msgid "Messages Locale"
msgstr ""
#: Programs/menu_prefs.c:646 Programs/menu_prefs.c:899
msgid "Minimum"
msgstr "Minimo"
#: Programs/menu_prefs.c:1194
msgid "Month Day Year"
msgstr "Mese giorno, anno"
#: Programs/midi.c:55
msgid "Music Box"
msgstr ""
#: Programs/menu_prefs.c:947
msgid "Musical Instrument Digital Interface"
msgstr ""
#: Programs/midi.c:110
msgid "Muted Trumpet"
msgstr ""
#: Programs/config.c:537
msgid "Name of or path to attributes table."
msgstr ""
#: Programs/config.c:546
msgid "Name of or path to contraction table."
msgstr ""
#: Programs/config.c:402
msgid "Name of or path to default preferences file."
msgstr ""
#: Programs/config.c:555
msgid "Name of or path to keyboard table."
msgstr ""
#: Programs/config.c:591
msgid "Name of or path to speech input object."
msgstr ""
#: Programs/config.c:528
#, c-format
msgid "Name of or path to text table (or %s)."
msgstr ""
#: Programs/menu_prefs.c:734
msgid "Navigation Options"
msgstr ""
#: Programs/menu.c:449
msgid "No"
msgstr "No"
#: Programs/menu_prefs.c:633
msgid "No Capitalization"
msgstr ""
#: Programs/menu_prefs.c:786 Programs/menu_prefs.c:1030
#: Programs/menu_prefs.c:1043 Programs/menu_prefs.c:1056
#: Programs/menu_prefs.c:1182 Programs/menu_prefs.c:1221
#: Programs/menu_prefs.c:1241
msgid "None"
msgstr "Nessuno"
#: Programs/menu_prefs.c:1378
msgid "Notice"
msgstr "Avviso"
#: Programs/cmd_miscellaneous.c:67
msgid "November"
msgstr "Novembre"
#: Programs/midi.c:120
msgid "Oboe"
msgstr "Oboe"
#: Programs/midi.c:132
msgid "Ocarina"
msgstr "Ocarina"
#: Programs/cmd_miscellaneous.c:66
msgid "October"
msgstr "Ottobre"
#: Programs/menu_prefs.c:849
msgid "Off"
msgstr "Off"
#: Programs/config.c:1616
msgid "Old Preferences File"
msgstr ""
#: Programs/menu_prefs.c:862
msgid "On First Release"
msgstr ""
#: Programs/midi.c:105
msgid "Orchestra Hit"
msgstr ""
#: Programs/midi.c:95
msgid "Orchestral Harp"
msgstr ""
#: Programs/midi.c:26
msgid "Organ"
msgstr "Organo"
#: Programs/log.c:76
msgid "Output Packets"
msgstr ""
#: Programs/midi.c:76
msgid "Overdriven Guitar"
msgstr ""
#: Drivers/Braille/Iris/braille.c:1545
msgid "PC mode"
msgstr ""
#: Programs/menu_prefs.c:946
msgid "PCM"
msgstr "PCM"
#: Programs/config.c:627
msgid "PCM (soundcard digital audio) device specifier."
msgstr ""
#: Programs/menu_prefs.c:959
msgid "PCM Volume"
msgstr ""
#: Programs/cmds.auto.h:1266
msgid "PS/2 (set 3) keyboard scan code"
msgstr ""
#: Programs/menu_prefs.c:1316
msgid "Package Revision"
msgstr ""
#: Programs/menu_prefs.c:1311
msgid "Package Version"
msgstr ""
#. Synth Pad
#: Programs/midi.c:143
msgid "Pad 1 (new age)"
msgstr ""
#: Programs/midi.c:144
msgid "Pad 2 (warm)"
msgstr ""
#: Programs/midi.c:145
msgid "Pad 3 (polysynth)"
msgstr ""
#: Programs/midi.c:146
msgid "Pad 4 (choir)"
msgstr ""
#: Programs/midi.c:147
msgid "Pad 5 (bowed)"
msgstr ""
#: Programs/midi.c:148
msgid "Pad 6 (metallic)"
msgstr ""
#: Programs/midi.c:149
msgid "Pad 7 (halo)"
msgstr ""
#: Programs/midi.c:150
msgid "Pad 8 (sweep)"
msgstr ""
#: Programs/midi.c:128
msgid "Pan Flute"
msgstr "Flauto di Pan"
#: Programs/config.c:464
msgid "Parameters for the application programming interface."
msgstr ""
#: Programs/config.c:486
msgid "Parameters for the braille driver."
msgstr ""
#: Programs/config.c:359
msgid "Parameters for the privilege establishment stage."
msgstr ""
#: Programs/config.c:618
msgid "Parameters for the screen driver."
msgstr ""
#: Programs/config.c:583
msgid "Parameters for the speech driver."
msgstr ""
#: Programs/config.c:393
msgid "Path to default settings file."
msgstr ""
#: Programs/config.c:447
msgid "Path to directory containing drivers."
msgstr ""
#: Programs/brltest.c:68 Programs/brltty-atb.c:36 Programs/brltty-ctb.c:54
#: Programs/brltty-ktb.c:73 Programs/config.c:518
msgid "Path to directory containing tables."
msgstr ""
#: Programs/brltty-ttb.c:152
msgid "Path to directory containing text tables."
msgstr ""
#: Programs/brltty-ktb.c:83
msgid "Path to directory for loading drivers."
msgstr ""
#: Programs/brltty-trtxt.c:51
msgid "Path to directory for text tables."
msgstr ""
#: Programs/brltest.c:78 Programs/config.c:437
msgid "Path to directory which can be written to."
msgstr ""
#: Programs/config.c:427
msgid "Path to directory which contains files that can be updated."
msgstr ""
#: Programs/config.c:327
msgid "Path to directory which contains message translations."
msgstr ""
#: Programs/brltty-trtxt.c:59
msgid "Path to input text table."
msgstr ""
#: Programs/config.c:676
msgid "Path to log file."
msgstr ""
#: Programs/brltty-trtxt.c:67
msgid "Path to output text table."
msgstr ""
#: Programs/config.c:383
msgid "Path to process identifier file."
msgstr ""
#: Programs/config.c:417
msgid "Patterns that match command prompts."
msgstr ""
#: Programs/midi.c:38
msgid "Percussive Instruments"
msgstr ""
#: Programs/midi.c:63
msgid "Percussive Organ"
msgstr ""
#: Programs/midi.c:24
msgid "Piano"
msgstr "Pianoforte"
#. Pipe
#: Programs/midi.c:125
msgid "Piccolo"
msgstr ""
#: Programs/midi.c:33
msgid "Pipe"
msgstr ""
#: Programs/midi.c:94
msgid "Pizzicato Strings"
msgstr ""
#: Drivers/Braille/Baum/braille.c:1119
msgid "Powerdown"
msgstr ""
#: Programs/config.c:2771 Programs/menu_prefs.c:1346
msgid "Preferences File"
msgstr "File delle preferenze"
#: Programs/scr_menu.c:271
msgid "Preferences Menu"
msgstr ""
#: Headers/options.h:75
msgid "Print a usage summary (all options), and then exit."
msgstr ""
#: Headers/options.h:70
msgid "Print a usage summary (commonly used options only), and then exit."
msgstr ""
#: Programs/config.c:790
msgid "Privilege Parameter"
msgstr ""
#: Programs/menu_prefs.c:1297
msgid "Profiles"
msgstr "Profili"
#: Programs/config.c:563
msgid "Properties of eligible keyboards."
msgstr ""
#: Programs/menu_prefs.c:839
msgid "Quick Space"
msgstr ""
#: Programs/menu_prefs.c:1047
msgid "Raise Pitch"
msgstr ""
#: Programs/config.c:318
msgid "Recognize environment variables."
msgstr ""
#: Programs/midi.c:127
msgid "Recorder"
msgstr "Registratore"
#: Programs/midi.c:32
msgid "Reed"
msgstr ""
#: Programs/midi.c:66
msgid "Reed Organ"
msgstr ""
#: Programs/brltty-ctb.c:82
msgid "Reformat input."
msgstr ""
#: Programs/config.c:508
msgid "Release braille device when screen or window is unreadable."
msgstr ""
#: Programs/xbrlapi.c:106
msgid "Remain a foreground process"
msgstr ""
#: Programs/config.c:334
msgid "Remain a foreground process."
msgstr ""
#: Programs/brltty-trtxt.c:73
msgid "Remove dots seven and eight."
msgstr ""
#: Programs/config.c:349
#, c-format
msgid "Remove the %s service, and then exit."
msgstr ""
#: Programs/brltty-ktb.c:45
msgid "Report problems with the key table."
msgstr ""
#: Programs/brltty-ttb.c:186
msgid "Report the characters within the current screen font that aren't defined within the text table."
msgstr ""
#: Programs/menu_prefs.c:755
msgid "Rest of Line"
msgstr ""
#: Programs/menu_prefs.c:1445
msgid "Restart Braille Driver"
msgstr ""
#: Programs/menu_prefs.c:1457
msgid "Restart Screen Driver"
msgstr ""
#: Programs/menu_prefs.c:1451
msgid "Restart Speech Driver"
msgstr ""
#: Programs/midi.c:177
msgid "Reverse Cymbal"
msgstr ""
#: Programs/menu_prefs.c:1223
msgid "Right"
msgstr ""
#: Programs/midi.c:64
msgid "Rock Organ"
msgstr ""
#: Programs/menu_prefs.c:585
msgid "Save on Exit"
msgstr "Salva all'uscita"
#. "cap" here, used during speech output, is short for "capital".
#. It is spoken just before an uppercase letter, e.g. "cap A".
#: Programs/menu_prefs.c:1046
msgid "Say Cap"
msgstr ""
#: Programs/menu_prefs.c:1070
msgid "Say Line Mode"
msgstr ""
#: Programs/menu_prefs.c:1057
msgid "Say Space"
msgstr ""
#: Programs/menu_prefs.c:460
msgid "Screen Cursor Column"
msgstr ""
#: Programs/menu_prefs.c:459
msgid "Screen Cursor Coordinates"
msgstr ""
#: Programs/menu_prefs.c:687
msgid "Screen Cursor Invisible Time"
msgstr ""
#: Programs/menu_prefs.c:461
msgid "Screen Cursor Row"
msgstr ""
#: Programs/menu_prefs.c:669
msgid "Screen Cursor Style"
msgstr ""
#: Programs/menu_prefs.c:681
msgid "Screen Cursor Visible Time"
msgstr ""
#: Programs/menu_prefs.c:462
msgid "Screen Cursor and Braille Window Column"
msgstr ""
#: Programs/menu_prefs.c:463
msgid "Screen Cursor and Braille Window Row"
msgstr ""
#: Programs/config.c:2268
msgid "Screen Driver"
msgstr ""
#: Programs/log.c:160
msgid "Screen Driver Events"
msgstr ""
#: Programs/menu_prefs.c:464
msgid "Screen Number"
msgstr ""
#: Programs/config.c:2274
msgid "Screen Parameter"
msgstr ""
#: Programs/config.c:608
#, c-format
msgid "Screen driver code (%s, %s, or one of {%s})."
msgstr ""
#: Programs/menu_prefs.c:780
msgid "Scroll-aware Cursor Navigation"
msgstr ""
#: Programs/midi.c:181
msgid "Seashore"
msgstr "Onde del mare"
#: Programs/cmd_miscellaneous.c:65
msgid "September"
msgstr "Settembre"
#: Programs/log.c:130
msgid "Serial I/O"
msgstr "I/O seriale"
#: Programs/log.c:124
msgid "Server Events"
msgstr ""
#: Programs/midi.c:130
msgid "Shakuhachi"
msgstr "Shakuhachi"
#: Programs/midi.c:163
msgid "Shamisen"
msgstr "Shamisen"
#: Programs/midi.c:168
msgid "Shanai"
msgstr "Shanai"
#: Programs/menu_prefs.c:598
msgid "Show Advanced Submenus"
msgstr ""
#: Programs/menu_prefs.c:603
msgid "Show All Items"
msgstr ""
#: Programs/menu_prefs.c:693
msgid "Show Attributes"
msgstr ""
#: Programs/menu_prefs.c:664
msgid "Show Screen Cursor"
msgstr ""
#: Programs/menu_prefs.c:1176
msgid "Show Seconds"
msgstr ""
#: Programs/menu_prefs.c:1122
msgid "Show Speech Cursor"
msgstr ""
#: Programs/menu_prefs.c:593
msgid "Show Submenu Sizes"
msgstr ""
#. Ethnic Instruments
#: Programs/midi.c:161
msgid "Sitar"
msgstr "Sitar"
#: Programs/menu_prefs.c:747
msgid "Skip Blank Braille Windows"
msgstr ""
#: Programs/menu_prefs.c:741
msgid "Skip Identical Lines"
msgstr ""
#: Programs/menu_prefs.c:758
msgid "Skip Which Blank Braille Windows"
msgstr ""
#: Programs/midi.c:84
msgid "Slap Bass 1"
msgstr ""
#: Programs/midi.c:85
msgid "Slap Bass 2"
msgstr ""
#: Programs/menu_prefs.c:1206
msgid "Slash"
msgstr "Barra"
#: Programs/menu_prefs.c:763
msgid "Sliding Braille Window"
msgstr ""
#: Programs/menu_prefs.c:1031
msgid "Some"
msgstr ""
#. Reed
#: Programs/midi.c:116
msgid "Soprano Sax"
msgstr ""
#: Programs/midi.c:39
msgid "Sound Effects"
msgstr "Effetti sonori"
#: Programs/menu_prefs.c:1242
msgid "Space"
msgstr "Spazio"
#: Programs/menu_prefs.c:1110
msgid "Speak Completed Words"
msgstr ""
#: Programs/menu_prefs.c:1098
msgid "Speak Deleted Characters"
msgstr ""
#: Programs/menu_prefs.c:1092
msgid "Speak Inserted Characters"
msgstr ""
#: Programs/menu_prefs.c:1116
msgid "Speak Line Indent"
msgstr ""
#: Programs/menu_prefs.c:1104
msgid "Speak Replaced Characters"
msgstr ""
#: Programs/menu_prefs.c:1086
msgid "Speak Selected Character"
msgstr ""
#: Programs/menu_prefs.c:1080
msgid "Speak Selected Line"
msgstr ""
#: Programs/menu_prefs.c:1145
msgid "Speech Cursor Invisible Time"
msgstr ""
#: Programs/menu_prefs.c:1127
msgid "Speech Cursor Style"
msgstr ""
#: Programs/menu_prefs.c:1139
msgid "Speech Cursor Visible Time"
msgstr ""
#: Programs/config.c:2043
msgid "Speech Driver"
msgstr ""
#: Programs/log.c:154
msgid "Speech Driver Events"
msgstr ""
#: Programs/log.c:112
msgid "Speech Events"
msgstr ""
#. Create the file system object for speech input.
#: Programs/config.c:2882
msgid "Speech Input"
msgstr ""
#: Programs/menu_prefs.c:1005
msgid "Speech Options"
msgstr ""
#: Programs/config.c:2046
msgid "Speech Parameter"
msgstr ""
#: Programs/menu_prefs.c:1022
msgid "Speech Pitch"
msgstr ""
#: Programs/menu_prefs.c:1035
msgid "Speech Punctuation"
msgstr ""
#: Programs/menu_prefs.c:1015
msgid "Speech Rate"
msgstr ""
#: Programs/menu_prefs.c:1050
msgid "Speech Uppercase Indicator"
msgstr ""
#: Programs/menu_prefs.c:1008
msgid "Speech Volume"
msgstr ""
#: Programs/menu_prefs.c:1060
msgid "Speech Whitespace Indicator"
msgstr ""
#: Programs/config.c:573
#, c-format
msgid "Speech driver code (%s, %s, or one of {%s})."
msgstr ""
#: Programs/menu_prefs.c:1392
msgid "Standard Error Log Level"
msgstr ""
#: Programs/menu_prefs.c:815
msgid "Start Selection with Routing Key"
msgstr ""
#: Programs/menu_prefs.c:465
msgid "State Dots"
msgstr ""
#: Programs/menu_prefs.c:466
msgid "State Letter"
msgstr ""
#: Programs/menu_prefs.c:1217
msgid "Status Cells"
msgstr ""
#: Programs/menu_prefs.c:1233
msgid "Status Count"
msgstr ""
#: Programs/menu_prefs.c:474
msgid "Status Field"
msgstr ""
#: Programs/menu_prefs.c:1226
msgid "Status Position"
msgstr ""
#: Programs/menu_prefs.c:1248
msgid "Status Separator"
msgstr ""
#: Programs/menu_prefs.c:1244
msgid "Status Side"
msgstr ""
#: Programs/midi.c:172
msgid "Steel Drums"
msgstr ""
#: Programs/config.c:373
#, c-format
msgid "Stop an existing instance of %s, and then exit."
msgstr ""
#. Ensemble
#: Programs/midi.c:98
msgid "String Ensemble 1"
msgstr ""
#: Programs/midi.c:99
msgid "String Ensemble 2"
msgstr ""
#: Programs/midi.c:29
msgid "Strings"
msgstr "Stringe"
#: Programs/menu_prefs.c:635
msgid "Superimpose Dot 7"
msgstr ""
#: Programs/config.c:659
msgid "Suppress start-up messages."
msgstr ""
#: Programs/midi.c:86
msgid "Synth Bass 1"
msgstr ""
#: Programs/midi.c:87
msgid "Synth Bass 2"
msgstr ""
#: Programs/midi.c:176
msgid "Synth Drum"
msgstr ""
#: Programs/midi.c:36
msgid "Synth FM"
msgstr ""
#: Programs/midi.c:34
msgid "Synth Lead"
msgstr ""
#: Programs/midi.c:35
msgid "Synth Pad"
msgstr ""
#: Programs/midi.c:104
msgid "Synth Voice"
msgstr ""
#: Programs/midi.c:113
msgid "SynthBrass 1"
msgstr ""
#: Programs/midi.c:114
msgid "SynthBrass 2"
msgstr ""
#: Programs/midi.c:100
msgid "SynthStrings 1"
msgstr ""
#: Programs/midi.c:101
msgid "SynthStrings 2"
msgstr ""
#: Programs/menu_prefs.c:1387
msgid "System Log Level"
msgstr ""
#: Programs/config.c:2792 Programs/menu_prefs.c:1361
msgid "Tables Directory"
msgstr ""
#: Programs/midi.c:174
msgid "Taiko Drum"
msgstr ""
#: Programs/midi.c:69
msgid "Tango Accordion"
msgstr ""
#: Programs/midi.c:183
msgid "Telephone Ring"
msgstr ""
#: Programs/midi.c:118
msgid "Tenor Sax"
msgstr ""
#: Programs/menu_prefs.c:661
msgid "Text Indicators"
msgstr ""
#: Programs/menu_prefs.c:1245
msgid "Text Side"
msgstr ""
#: Programs/menu_prefs.c:619
msgid "Text Style"
msgstr "Stile testo"
#: Programs/config.c:2813 Programs/menu_prefs.c:1273
msgid "Text Table"
msgstr ""
#: Programs/brltty-ctb.c:69
msgid "Text table."
msgstr ""
#: Programs/config.c:304
msgid "The text to be shown when the braille driver starts and to be spoken when the speech driver starts."
msgstr ""
#: Programs/config.c:311
msgid "The text to be shown when the braille driver stops."
msgstr ""
#: Programs/menu_prefs.c:467
msgid "Time"
msgstr "Orario"
#: Programs/menu_prefs.c:1161
msgid "Time Format"
msgstr "Formato dell'oro"
#: Programs/menu_prefs.c:1153
msgid "Time Presentation"
msgstr ""
#: Programs/menu_prefs.c:1171
msgid "Time Separator"
msgstr ""
#: Programs/midi.c:96
msgid "Timpani"
msgstr "Timpani"
#. Percussive Instruments
#: Programs/midi.c:170
msgid "Tinkle Bell"
msgstr ""
#: Programs/menu_prefs.c:1441
msgid "Tools"
msgstr "Strumenti"
#: Programs/menu_prefs.c:892
msgid "Touch Navigation"
msgstr ""
#: Programs/menu_prefs.c:906
msgid "Touch Sensitivity"
msgstr "Sensibilità al tocco"
#: Programs/menu_prefs.c:804
msgid "Track Screen Pointer"
msgstr ""
#: Programs/menu_prefs.c:798
msgid "Track Screen Scroll"
msgstr ""
#: Programs/menu_prefs.c:830
msgid "Translated via Text Table"
msgstr ""
#: Programs/midi.c:93
msgid "Tremolo Strings"
msgstr ""
#: Programs/midi.c:108
msgid "Trombone"
msgstr ""
#. Brass
#: Programs/midi.c:107
msgid "Trumpet"
msgstr "Tromba"
#: Programs/midi.c:109
msgid "Tuba"
msgstr ""
#: Programs/midi.c:59
msgid "Tubular Bells"
msgstr ""
#: Programs/menu_prefs.c:951
msgid "Tune Device"
msgstr "Accordare dispositivo"
#: Programs/menu_prefs.c:834
msgid "Typing Mode"
msgstr ""
#: Programs/log.c:136
msgid "USB I/O"
msgstr ""
#: Programs/menu_prefs.c:575
msgid "Underline"
msgstr "Sottolineato"
#: Programs/alert.c:102
msgid "Unfrozen"
msgstr ""
#: Programs/config.c:2789 Programs/menu_prefs.c:1341
msgid "Updatable Directory"
msgstr ""
#: Programs/log.c:106
msgid "Update Events"
msgstr ""
#: Programs/options.c:151
msgid "Usage"
msgstr ""
#: Programs/menu_prefs.c:634
msgid "Use Capital Sign"
msgstr ""
#: Programs/midi.c:56
msgid "Vibraphone"
msgstr ""
#: Programs/midi.c:90
msgid "Viola"
msgstr ""
#. Strings
#: Programs/midi.c:89
msgid "Violin"
msgstr "Violino"
#: Programs/midi.c:103
msgid "Voice Oohs"
msgstr ""
#: Programs/menu_prefs.c:1377
msgid "Warning"
msgstr "Avviso"
#: Programs/menu_prefs.c:1321
msgid "Web Site"
msgstr "Sito web"
#: Programs/midi.c:131
msgid "Whistle"
msgstr ""
#: Programs/midi.c:173
msgid "Woodblock"
msgstr ""
#: Programs/menu_prefs.c:737
msgid "Word Wrap"
msgstr "A capo automatico"
#: Programs/config.c:2763
msgid "Working Directory"
msgstr "Directory di lavoro"
#: Programs/config.c:2790 Programs/menu_prefs.c:1351
msgid "Writable Directory"
msgstr "Directory con accesso in scrittura"
#: Programs/xbrlapi.c:118
msgid "Write debugging output to stdout"
msgstr ""
#: Programs/config.c:682
msgid "Write the start-up logs, and then exit."
msgstr ""
#: Programs/xbrlapi.c:100
msgid "X display to connect to"
msgstr ""
#: Programs/pgmprivs_linux.c:1951
msgid "XDG runtime directory access problem"
msgstr ""
#: Programs/pgmprivs_linux.c:1933
msgid "XDG runtime directory created"
msgstr ""
#: Programs/pgmprivs_linux.c:1928
msgid "XDG runtime directory exists"
msgstr ""
#: Programs/xbrlapi.c:786
msgid "XFree(wm_name) for change"
msgstr ""
#: Programs/cmds.auto.h:1259
msgid "XT (set 1) keyboard scan code"
msgstr ""
#: Programs/midi.c:58
msgid "Xylophone"
msgstr "Xilofono"
#: Programs/menu_prefs.c:1193
msgid "Year Month Day"
msgstr "Anno mese giorno"
#: Programs/menu.c:450
msgid "Yes"
msgstr "Sì"
#: Programs/xbrlapi.c:84
msgid "[host][:port]"
msgstr ""
#: Programs/menu_prefs.c:576
msgid "all dots"
msgstr ""
#: Programs/cmd_miscellaneous.c:121
msgid "and"
msgstr "e"
#: Programs/cmds.auto.h:1142
msgid "append characters to clipboard"
msgstr ""
#: Programs/cmds.auto.h:1033
msgid "append to clipboard from character"
msgstr ""
#: Programs/cmd.c:290
msgid "at cursor"
msgstr ""
#: Programs/cmds.auto.h:1301
msgid "backspace key"
msgstr ""
#: Drivers/Braille/Baum/braille.c:1110 Drivers/Braille/TSI/braille.c:869
msgid "battery low"
msgstr ""
#: Programs/cmds.auto.h:1222
msgid "bind to specific virtual terminal"
msgstr ""
#: Programs/cmds.auto.h:835
msgid "bind to the next virtual terminal"
msgstr ""
#: Programs/cmds.auto.h:829
msgid "bind to the previous virtual terminal"
msgstr ""
#.
#: Programs/cmd_utils.c:144
msgid "black"
msgstr "nero"
#: Programs/core.c:1120
msgid "blank line"
msgstr ""
#: Programs/cmd_utils.c:168
msgid "blink"
msgstr ""
#. B
#: Programs/cmd_utils.c:145
msgid "blue"
msgstr "blu"
#: Programs/config.c:2853
#, c-format
msgid "braille device not specified"
msgstr "dispositivo braille non specificato"
#: Programs/cmds.auto.h:544
msgid "braille display temporarily unavailable"
msgstr ""
#: Programs/config.c:1553
msgid "braille driver initialization failed"
msgstr ""
#: Programs/config.c:1632
msgid "braille driver not loadable"
msgstr ""
#: Programs/config.c:1892
msgid "braille driver restarting"
msgstr ""
#: Programs/cmd_miscellaneous.c:178
msgid "braille driver stopped"
msgstr ""
#: Drivers/Screen/Android/screen.c:189
msgid "braille released"
msgstr ""
#: Programs/cmds.auto.h:1019
msgid "bring screen cursor to character"
msgstr ""
#: Programs/cmds.auto.h:520
msgid "bring screen cursor to current line"
msgstr ""
#: Programs/cmds.auto.h:1193
msgid "bring screen cursor to line"
msgstr ""
#: Programs/cmds.auto.h:730
msgid "bring screen cursor to speech cursor"
msgstr ""
#. RG
#: Programs/cmd_utils.c:150
msgid "brown"
msgstr "marrone"
#: Drivers/Screen/Linux/screen.c:1432
msgid "can't get console state"
msgstr ""
#: Drivers/Screen/Linux/screen.c:1510
msgid "can't open console"
msgstr ""
#: Drivers/Screen/Linux/screen.c:1556
msgid "can't read screen content"
msgstr ""
#: Drivers/Screen/Linux/screen.c:1601
msgid "can't read screen header"
msgstr ""
#: Programs/atb_translate.c:70
msgid "cannot compile attributes table"
msgstr ""
#: Programs/ctb_translate.c:365
msgid "cannot compile contraction table"
msgstr ""
#: Programs/config.c:1536
msgid "cannot compile key table"
msgstr ""
#: Programs/config.c:1113
msgid "cannot compile keyboard table"
msgstr ""
#: Programs/ttb_translate.c:256
msgid "cannot compile text table"
msgstr ""
#. This is the first attempt to connect to BRLTTY, and it failed.
#. * Return the error immediately to the user, to provide feedback to users
#. * running xbrlapi by hand, but not fill logs, eat battery, spam
#. * 127.0.0.1 with reconnection attempts.
#.
#: Programs/xbrlapi.c:204
#, c-format
msgid "cannot connect to braille devices daemon brltty at %s\n"
msgstr ""
#: Programs/xbrlapi.c:654
#, c-format
msgid "cannot connect to display %s\n"
msgstr ""
#: Programs/file.c:360
msgid "cannot create directory"
msgstr ""
#: Programs/program.c:148
#, c-format
msgid "cannot determine program directory"
msgstr ""
#: Programs/config.c:2766 Programs/menu.c:544
msgid "cannot determine working directory"
msgstr ""
#: Programs/system_windows.c:61
msgid "cannot find procedure"
msgstr ""
#: Programs/program.c:156
msgid "cannot fix install path"
msgstr ""
#: Programs/xbrlapi.c:259
msgid "cannot get tty\n"
msgstr ""
#: Programs/xbrlapi.c:265
#, c-format
msgid "cannot get tty %d\n"
msgstr ""
#: Programs/file.c:497
msgid "cannot get working directory"
msgstr ""
#: Programs/xbrlapi.c:702
#, c-format
msgid "cannot grab windows on screen %d\n"
msgstr ""
#: Programs/xbrlapi.c:272
msgid "cannot ignore keys\n"
msgstr ""
#: Programs/atb_translate.c:90
msgid "cannot load attributes table"
msgstr ""
#: Programs/system_windows.c:54
msgid "cannot load library"
msgstr ""
#: Programs/ttb_translate.c:276
msgid "cannot load text table"
msgstr ""
#: Programs/file.c:349
msgid "cannot make world writable"
msgstr ""
#: Programs/config.c:1071
msgid "cannot open key help"
msgstr ""
#: Programs/program.c:260
msgid "cannot open process identifier file"
msgstr ""
#: Programs/menu.c:542
msgid "cannot open working directory"
msgstr ""
#: Programs/prefs.c:350
msgid "cannot read preferences file"
msgstr ""
#: Programs/xbrlapi.c:337
#, c-format
msgid "cannot set focus to %#010x\n"
msgstr ""
#: Programs/file.c:511 Programs/menu.c:531
msgid "cannot set working directory"
msgstr ""
#: Programs/prefs.c:525
msgid "cannot write to preferences file"
msgstr ""
#. "cap" here, used during speech output, is short for "capital".
#. It is spoken just before an uppercase letter, e.g. "cap A".
#: Programs/core.c:1065
msgid "cap"
msgstr ""
#: Programs/menu_prefs.c:775 Programs/menu_prefs.c:1234
msgid "cells"
msgstr ""
#: Programs/cmd_preferences.c:87
msgid "changes discarded"
msgstr ""
#: Programs/cmds.auto.h:775
msgid "clear all sticky input modifiers"
msgstr ""
#: Programs/cmds.auto.h:889
msgid "clear the text selection"
msgstr ""
#: Programs/cmd_speech.c:475
msgid "column"
msgstr "colonna"
#. configuration menu
#: Drivers/Braille/BrailleLite/braille.c:607
msgid "config"
msgstr ""
#: Programs/options.c:807
msgid "configuration directive specified more than once"
msgstr ""
#: Drivers/Screen/Linux/screen.c:1508
msgid "console not in use"
msgstr ""
#: Programs/menu_prefs.c:945
msgid "console tone generator"
msgstr ""
#: Programs/cmds.auto.h:1135
msgid "copy characters to clipboard"
msgstr ""
#: Programs/cmds.auto.h:901
msgid "copy selected text to host clipboard"
msgstr ""
#: Programs/config.c:644 Programs/menu_prefs.c:503
msgid "csecs"
msgstr ""
#: Programs/cmds.auto.h:1280
msgid "current reading location"
msgstr ""
#: Programs/cmds.auto.h:1336
msgid "cursor-down key"
msgstr ""
#: Programs/cmds.auto.h:1315
msgid "cursor-left key"
msgstr ""
#: Programs/cmds.auto.h:1322
msgid "cursor-right key"
msgstr ""
#: Programs/cmds.auto.h:1329
msgid "cursor-up key"
msgstr ""
#: Programs/cmds.auto.h:907
msgid "cut selected text to host clipboard"
msgstr ""
#. GB
#: Programs/cmd_utils.c:147
msgid "cyan"
msgstr ""
#: Programs/cmds.auto.h:781
msgid "cycle the AltGr (Right Alt) sticky input modifier (next, on, off)"
msgstr ""
#: Programs/cmds.auto.h:562
msgid "cycle the Control sticky input modifier (next, on, off)"
msgstr ""
#: Programs/cmds.auto.h:787
msgid "cycle the GUI (Windows) sticky input modifier (next, on, off)"
msgstr ""
#: Programs/cmds.auto.h:568
msgid "cycle the Meta (Left Alt) sticky input modifier (next, on, off)"
msgstr ""
#: Programs/cmds.auto.h:550
msgid "cycle the Shift sticky input modifier (next, on, off)"
msgstr ""
#: Programs/cmds.auto.h:556
msgid "cycle the Upper sticky input modifier (next, on, off)"
msgstr ""
#. L
#: Programs/cmd_utils.c:152
msgid "dark gray"
msgstr "grigio scuro"
#: Programs/cmds.auto.h:483
msgid "decrease speaking rate"
msgstr ""
#: Programs/cmds.auto.h:495
msgid "decrease speaking volume"
msgstr ""
#: Programs/cmds.auto.h:1378
msgid "delete key"
msgstr ""
#: Programs/cmds.auto.h:1079
msgid "describe character"
msgstr ""
#: Programs/cmds.auto.h:717
msgid "describe current character"
msgstr ""
#: Programs/config.c:625 Programs/config.c:635
msgid "device"
msgstr ""
#: Programs/brltest.c:64 Programs/brltest.c:74 Programs/brltty-atb.c:32
#: Programs/brltty-ctb.c:50 Programs/brltty-ktb.c:69 Programs/brltty-ktb.c:79
#: Programs/brltty-trtxt.c:47 Programs/config.c:323 Programs/config.c:423
#: Programs/config.c:433 Programs/config.c:443 Programs/config.c:514
msgid "directory"
msgstr "directory"
#: Programs/xbrlapi.c:98
msgid "display"
msgstr ""
#: Programs/cmds.auto.h:4
msgid "do nothing"
msgstr "non fare nulla"
#: Programs/learn.c:108
msgid "done"
msgstr ""
#: Programs/menu_prefs.c:577
msgid "dot 7"
msgstr ""
#: Programs/menu_prefs.c:578
msgid "dot 8"
msgstr ""
#: Programs/menu_prefs.c:575
msgid "dots 7 and 8"
msgstr ""
#: Drivers/Braille/Baum/braille.c:1107
msgid "driver request"
msgstr ""
#: Programs/config.c:472 Programs/config.c:570 Programs/config.c:605
msgid "driver,..."
msgstr ""
#: Programs/cmds.auto.h:1364
msgid "end key"
msgstr ""
#: Programs/cmds.auto.h:1287
msgid "enter key"
msgstr ""
#: Programs/cmds.auto.h:384
msgid "enter/leave command learn mode"
msgstr ""
#: Programs/cmds.auto.h:372
msgid "enter/leave help display"
msgstr ""
#: Programs/cmds.auto.h:390
msgid "enter/leave preferences menu"
msgstr ""
#: Programs/cmds.auto.h:378
msgid "enter/leave status display"
msgstr ""
#: Programs/cmds.auto.h:1308
msgid "escape key"
msgstr ""
#: Drivers/Braille/Iris/braille.c:1494
msgid "eurobraille"
msgstr "eurobraille"
#: Programs/cmd_miscellaneous.c:118
msgid "exactly"
msgstr ""
#: Programs/config.c:819
msgid "excess argument"
msgstr ""
#. parent
#: Programs/brltty.c:177
#, c-format
msgid "executing \"%s\" (from \"%s\")\n"
msgstr ""
#: Programs/pgmprivs_linux.c:2045
msgid "executing as the invoking user"
msgstr ""
#. execv() shouldn't return
#: Programs/brltty.c:184
#, c-format
msgid "execution of \"%s\" failed: %s\n"
msgstr ""
#: Programs/xbrlapi.c:709
msgid "failed to get first focus\n"
msgstr ""
#: Programs/brltty-trtxt.c:56 Programs/brltty-trtxt.c:64 Programs/config.c:380
#: Programs/config.c:389 Programs/config.c:399 Programs/config.c:525
#: Programs/config.c:535 Programs/config.c:544 Programs/config.c:553
#: Programs/config.c:589 Programs/config.c:674
msgid "file"
msgstr "file"
#: Programs/options.c:993
#, c-format
msgid "file '%s' processing error."
msgstr ""
#. failed
#: Programs/brltty.c:172
#, c-format
msgid "fork of \"%s\" failed: %s\n"
msgstr ""
#: Programs/cmds.auto.h:1386
msgid "function key"
msgstr ""
#: Programs/cmds.auto.h:240
msgid "go back after cursor tracking"
msgstr ""
#: Programs/cmds.auto.h:939
msgid "go back to the previous screen"
msgstr ""
#: Programs/cmds.auto.h:186
msgid "go backward one braille window"
msgstr ""
#: Programs/cmds.auto.h:202
msgid "go backward skipping blank braille windows"
msgstr ""
#: Programs/cmds.auto.h:843
msgid "go backward to nearest non-blank braille window"
msgstr ""
#: Programs/cmds.auto.h:20
msgid "go down one line"
msgstr ""
#: Programs/cmds.auto.h:36
msgid "go down several lines"
msgstr ""
#: Programs/cmds.auto.h:118
msgid "go down to first line of next paragraph"
msgstr ""
#: Programs/cmds.auto.h:418
msgid "go down to last item"
msgstr ""
#: Programs/cmds.auto.h:1128
msgid "go down to nearest line with different character"
msgstr ""
#: Programs/cmds.auto.h:52
msgid "go down to nearest line with different content"
msgstr ""
#: Programs/cmds.auto.h:68
msgid "go down to nearest line with different highlighting"
msgstr ""
#: Programs/cmds.auto.h:1072
msgid "go down to nearest line with less indent than character"
msgstr ""
#: Programs/cmds.auto.h:134
msgid "go down to next command prompt"
msgstr ""
#: Programs/cmds.auto.h:434
msgid "go down to next item"
msgstr ""
#: Programs/cmds.auto.h:194
msgid "go forward one braille window"
msgstr ""
#: Programs/cmds.auto.h:210
msgid "go forward skipping blank braille windows"
msgstr ""
#: Programs/cmds.auto.h:851
msgid "go forward to nearest non-blank braille window"
msgstr ""
#: Programs/cmds.auto.h:170
msgid "go left half a braille window"
msgstr ""
#: Programs/cmds.auto.h:154
msgid "go left one character"
msgstr ""
#: Programs/cmds.auto.h:178
msgid "go right half a braille window"
msgstr ""
#: Programs/cmds.auto.h:162
msgid "go right one character"
msgstr ""
#: Programs/cmds.auto.h:690
msgid "go to and speak first non-blank character on line"
msgstr ""
#: Programs/cmds.auto.h:704
msgid "go to and speak first non-blank line on screen"
msgstr ""
#: Programs/cmds.auto.h:697
msgid "go to and speak last non-blank character on line"
msgstr ""
#: Programs/cmds.auto.h:711
msgid "go to and speak last non-blank line on screen"
msgstr ""
#: Programs/cmds.auto.h:643
msgid "go to and speak next character"
msgstr ""
#: Programs/cmds.auto.h:683
msgid "go to and speak next line"
msgstr ""
#: Programs/cmds.auto.h:663
msgid "go to and speak next word"
msgstr ""
#: Programs/cmds.auto.h:636
msgid "go to and speak previous character"
msgstr ""
#: Programs/cmds.auto.h:676
msgid "go to and speak previous line"
msgstr ""
#: Programs/cmds.auto.h:656
msgid "go to and speak previous word"
msgstr ""
#: Programs/cmds.auto.h:102
msgid "go to beginning of bottom line"
msgstr ""
#: Programs/cmds.auto.h:218
msgid "go to beginning of line"
msgstr ""
#: Programs/cmds.auto.h:93
msgid "go to beginning of top line"
msgstr ""
#: Programs/cmds.auto.h:84
msgid "go to bottom line"
msgstr ""
#: Programs/cmds.auto.h:459
msgid "go to current speaking position"
msgstr ""
#: Programs/cmds.auto.h:226
msgid "go to end of line"
msgstr ""
#: Programs/cmds.auto.h:581
msgid "go to previous menu level"
msgstr ""
#: Programs/cmds.auto.h:1101
msgid "go to remembered braille window position"
msgstr ""
#: Programs/cmds.auto.h:233
msgid "go to screen cursor"
msgstr ""
#: Programs/cmds.auto.h:247
msgid "go to screen cursor or go back after cursor tracking"
msgstr ""
#: Programs/cmds.auto.h:1110
msgid "go to selected line"
msgstr ""
#: Programs/cmds.auto.h:932
msgid "go to the home screen"
msgstr ""
#: Programs/cmds.auto.h:76
msgid "go to top line"
msgstr ""
#: Programs/cmds.auto.h:12
msgid "go up one line"
msgstr ""
#: Programs/cmds.auto.h:28
msgid "go up several lines"
msgstr ""
#: Programs/cmds.auto.h:410
msgid "go up to first item"
msgstr ""
#: Programs/cmds.auto.h:110
msgid "go up to first line of paragraph"
msgstr ""
#: Programs/cmds.auto.h:1119
msgid "go up to nearest line with different character"
msgstr ""
#: Programs/cmds.auto.h:44
msgid "go up to nearest line with different content"
msgstr ""
#: Programs/cmds.auto.h:60
msgid "go up to nearest line with different highlighting"
msgstr ""
#: Programs/cmds.auto.h:1063
msgid "go up to nearest line with less indent than character"
msgstr ""
#: Programs/cmds.auto.h:126
msgid "go up to previous command prompt"
msgstr ""
#: Programs/cmds.auto.h:426
msgid "go up to previous item"
msgstr ""
#. G
#: Programs/cmd_utils.c:146
msgid "green"
msgstr "verde"
#: Programs/pgmprivs_linux.c:2167
msgid "group permissions added"
msgstr ""
#: Programs/cmd_miscellaneous.c:228
msgid "help not available"
msgstr ""
#: Programs/scr_help.c:229
msgid "help screen not readable"
msgstr ""
#: Programs/cmds.auto.h:1357
msgid "home key"
msgstr ""
#: Programs/config.c:493
msgid "identifier,..."
msgstr ""
#: Drivers/Braille/Baum/braille.c:1109
msgid "idle timeout"
msgstr ""
#: Programs/cmds.auto.h:489
msgid "increase speaking rate"
msgstr ""
#: Programs/cmds.auto.h:501
msgid "increase speaking volume"
msgstr ""
#: Programs/core.c:1123
msgid "indent"
msgstr ""
#: Programs/cmds.auto.h:1149
msgid "insert clipboard history entry after screen cursor"
msgstr ""
#: Programs/cmds.auto.h:526
msgid "insert clipboard text after screen cursor"
msgstr ""
#: Programs/cmds.auto.h:913
msgid "insert host clipboard text after screen cursor"
msgstr ""
#: Programs/cmds.auto.h:1371
msgid "insert key"
msgstr ""
#: Programs/program.c:164
msgid "install path not absolute"
msgstr ""
#: Programs/options.c:104
msgid "invalid counter setting"
msgstr ""
#: Programs/datafile.c:318
msgid "invalid escape sequence"
msgstr ""
#: Programs/options.c:113
msgid "invalid flag setting"
msgstr ""
#: Programs/config.c:2678
msgid "invalid message hold timeout"
msgstr ""
#. the operand for an option is invalid
#: Programs/options.c:589
msgid "invalid operand"
msgstr ""
#: Programs/brlapi_server.c:4413
msgid "invalid thread stack size"
msgstr ""
#: Drivers/Braille/BrailleLite/braille.c:590
#: Drivers/Braille/BrailleLite/braille.c:668
msgid "keyboard emu off"
msgstr ""
#: Drivers/Braille/BrailleLite/braille.c:589
msgid "keyboard emu on"
msgstr ""
#. L B
#: Programs/cmd_utils.c:153
msgid "light blue"
msgstr ""
#. L GB
#: Programs/cmd_utils.c:155
msgid "light cyan"
msgstr ""
#. L G
#: Programs/cmd_utils.c:154
msgid "light green"
msgstr ""
#. RGB
#: Programs/cmd_utils.c:151
msgid "light gray"
msgstr ""
#. LR B
#: Programs/cmd_utils.c:157
msgid "light magenta"
msgstr ""
#. LR
#: Programs/cmd_utils.c:156
msgid "light red"
msgstr ""
#: Programs/cmd_speech.c:474
msgid "line"
msgstr ""
#: Programs/cmds.auto.h:1047
msgid "linear copy to character"
msgstr ""
#: Programs/config.c:665
msgid "lvl|cat,..."
msgstr ""
#. R B
#: Programs/cmd_utils.c:149
msgid "magenta"
msgstr "magenta"
#. the operand for a string option hasn't been specified
#: Programs/options.c:583
msgid "missing operand"
msgstr ""
#: Programs/parse.c:472
msgid "missing parameter name"
msgstr ""
#: Programs/parse.c:458
msgid "missing parameter qualifier"
msgstr ""
#: Programs/parse.c:434
msgid "missing parameter value"
msgstr ""
#: Programs/cmds.auto.h:993
msgid "move to the first item in the screen area"
msgstr ""
#: Programs/cmds.auto.h:1011
msgid "move to the last item in the screen area"
msgstr ""
#: Programs/cmds.auto.h:1005
msgid "move to the next item in the screen area"
msgstr ""
#: Programs/cmds.auto.h:999
msgid "move to the previous item in the screen area"
msgstr ""
#: Programs/config.c:356 Programs/config.c:408 Programs/config.c:461
#: Programs/config.c:483 Programs/config.c:561 Programs/config.c:580
#: Programs/config.c:615
msgid "name=value,..."
msgstr ""
#: Drivers/Braille/Iris/braille.c:1510
msgid "native"
msgstr ""
#: Programs/config.c:1080
msgid "no key bindings"
msgstr ""
#: Programs/scr_driver.c:39
msgid "no screen"
msgstr ""
#: Programs/config.c:717
msgid "none"
msgstr ""
#: Programs/config.c:1353
msgid "not saved"
msgstr ""
#: Programs/pgmprivs_linux.c:2018
msgid "not switching to an unprivileged user"
msgstr ""
#: Programs/cmds.auto.h:969
msgid "open the application alerts window"
msgstr ""
#: Programs/cmds.auto.h:957
msgid "open the application list window"
msgstr ""
#: Programs/cmds.auto.h:963
msgid "open the application-specific menu"
msgstr ""
#: Programs/cmds.auto.h:925
msgid "open the braille actions window"
msgstr ""
#: Programs/cmds.auto.h:951
msgid "open the device options window"
msgstr ""
#: Programs/cmds.auto.h:945
msgid "open the device settings window"
msgstr ""
#: Programs/options.c:155
msgid "option"
msgstr ""
#: Programs/pgmprivs_linux.c:2152
msgid "ownership claimed"
msgstr ""
#: Programs/cmds.auto.h:1350
msgid "page-down key"
msgstr ""
#: Programs/cmds.auto.h:1343
msgid "page-up key"
msgstr ""
#: Programs/menu_prefs.c:509
msgid "percentage"
msgstr "percentuale"
#: Programs/config.c:2651
msgid "pid file not specified"
msgstr ""
#: Programs/program.c:306
msgid "pid file open error"
msgstr ""
#: Programs/spk.c:200
msgid "pitch"
msgstr ""
#: Programs/cmds.auto.h:1086
msgid "place left end of braille window at character"
msgstr ""
#: Drivers/Braille/Baum/braille.c:1108
msgid "power switch"
msgstr ""
#: Programs/spk.c:186
msgid "rate"
msgstr ""
#: Programs/cmds.auto.h:1040
msgid "rectangular copy to character"
msgstr ""
#. R
#: Programs/cmd_utils.c:148
msgid "red"
msgstr "rosso"
#: Programs/cmds.auto.h:877
msgid "refresh braille display"
msgstr ""
#: Programs/cmds.auto.h:1201
msgid "refresh braille line"
msgstr ""
#: Programs/config.c:415
msgid "regexp,..."
msgstr ""
#: Programs/config.c:1896
#, c-format
msgid "reinitializing braille driver"
msgstr ""
#: Programs/config.c:2409
#, c-format
msgid "reinitializing screen driver"
msgstr ""
#: Programs/config.c:2209
#, c-format
msgid "reinitializing speech driver"
msgstr ""
#: Programs/cmds.auto.h:1093
msgid "remember current braille window position"
msgstr ""
#: Programs/cmds.auto.h:1229
msgid "render an alert"
msgstr ""
#: Drivers/Braille/BrailleLite/braille.c:601
#: Drivers/Braille/BrailleLite/braille.c:780
#: Drivers/Braille/BrailleLite/braille.c:782
#: Drivers/Braille/BrailleLite/braille.c:791
msgid "repeat count"
msgstr ""
#: Programs/cmds.auto.h:532
msgid "restart braille driver"
msgstr ""
#: Programs/cmds.auto.h:538
msgid "restart speech driver"
msgstr ""
#: Programs/cmds.auto.h:755
msgid "restore clipboard from disk"
msgstr ""
#: Programs/cmds.auto.h:402
msgid "restore preferences from disk"
msgstr ""
#: Programs/cmds.auto.h:975
msgid "return to the active screen area"
msgstr ""
#: Programs/cmds.auto.h:749
msgid "save clipboard to disk"
msgstr ""
#: Programs/cmds.auto.h:396
msgid "save preferences to disk"
msgstr ""
#: Programs/xbrlapi.c:91
msgid "scheme+..."
msgstr ""
#: Programs/config.c:2285
msgid "screen driver not loadable"
msgstr ""
#: Programs/config.c:2406
msgid "screen driver restarting"
msgstr ""
#: Programs/cmd_miscellaneous.c:186
msgid "screen driver stopped"
msgstr ""
#: Drivers/Screen/Android/screen.c:184
msgid "screen locked"
msgstr ""
#: Drivers/Screen/Linux/screen.c:1531
msgid "screen not in text mode"
msgstr ""
#: Programs/cmds.auto.h:140
msgid "search backward for clipboard text"
msgstr ""
#: Programs/cmds.auto.h:146
msgid "search forward for clipboard text"
msgstr ""
#: Programs/cmd_miscellaneous.c:122
msgid "second"
msgid_plural "seconds"
msgstr[0] "secondo"
msgstr[1] "secondi"
#: Programs/cmds.auto.h:895
msgid "select all of the text"
msgstr ""
#: Programs/cmds.auto.h:446
msgid "select next choice"
msgstr ""
#: Programs/cmds.auto.h:440
msgid "select previous choice"
msgstr ""
#: Programs/cmds.auto.h:352
msgid "set alert tunes on/off"
msgstr ""
#: Programs/cmds.auto.h:338
msgid "set attribute blinking on/off"
msgstr ""
#: Programs/cmds.auto.h:331
msgid "set attribute underlining on/off"
msgstr ""
#: Programs/cmds.auto.h:1163
msgid "set attributes table"
msgstr ""
#: Programs/cmds.auto.h:359
msgid "set autorepeat on/off"
msgstr ""
#: Programs/cmds.auto.h:623
msgid "set autospeak completed words on/off"
msgstr ""
#: Programs/cmds.auto.h:609
msgid "set autospeak deleted characters on/off"
msgstr ""
#: Programs/cmds.auto.h:871
msgid "set autospeak indent of current line on/off"
msgstr ""
#: Programs/cmds.auto.h:602
msgid "set autospeak inserted characters on/off"
msgstr ""
#: Programs/cmds.auto.h:366
msgid "set autospeak on/off"
msgstr ""
#: Programs/cmds.auto.h:616
msgid "set autospeak replaced characters on/off"
msgstr ""
#: Programs/cmds.auto.h:595
msgid "set autospeak selected character on/off"
msgstr ""
#: Programs/cmds.auto.h:588
msgid "set autospeak selected line on/off"
msgstr ""
#: Programs/cmds.auto.h:769
msgid "set braille keyboard enabled/disabled"
msgstr ""
#: Programs/cmds.auto.h:762
msgid "set braille typing mode dots/text"
msgstr ""
#: Programs/cmds.auto.h:345
msgid "set capital letter blinking on/off"
msgstr ""
#: Programs/cmds.auto.h:1170
msgid "set contraction table"
msgstr ""
#: Programs/cmds.auto.h:261
msgid "set display mode attributes/text"
msgstr ""
#: Programs/cmds.auto.h:303
msgid "set hidden screen cursor on/off"
msgstr ""
#: Programs/cmds.auto.h:1177
msgid "set keyboard table"
msgstr ""
#: Programs/cmds.auto.h:1184
msgid "set language profile"
msgstr ""
#: Programs/cmds.auto.h:324
msgid "set screen cursor blinking on/off"
msgstr ""
#: Programs/cmds.auto.h:317
msgid "set screen cursor style block/underline"
msgstr ""
#: Programs/cmds.auto.h:296
msgid "set screen cursor visibility on/off"
msgstr ""
#: Programs/cmds.auto.h:254
msgid "set screen image frozen/unfrozen"
msgstr ""
#: Programs/cmds.auto.h:289
msgid "set skipping of blank braille windows on/off"
msgstr ""
#: Programs/cmds.auto.h:282
msgid "set skipping of lines with identical content on/off"
msgstr ""
#: Programs/cmds.auto.h:275
msgid "set sliding braille window on/off"
msgstr ""
#: Programs/cmds.auto.h:743
msgid "set speech cursor visibility on/off"
msgstr ""
#: Programs/cmds.auto.h:1215
msgid "set text selection"
msgstr ""
#: Programs/cmds.auto.h:268
msgid "set text style 6-dot/8-dot"
msgstr ""
#: Programs/cmds.auto.h:1156
msgid "set text table"
msgstr ""
#: Programs/cmds.auto.h:858
msgid "set touch navigation on/off"
msgstr ""
#: Programs/cmds.auto.h:310
msgid "set track screen cursor on/off"
msgstr ""
#: Programs/cmds.auto.h:574
msgid "show current date and time"
msgstr ""
#: Programs/cmds.auto.h:919
msgid "show the window title"
msgstr ""
#: Programs/cmds.auto.h:883
msgid "show various device status indicators"
msgstr ""
#: Programs/menu_prefs.c:946
msgid "soundcard digital audio"
msgstr ""
#: Programs/menu_prefs.c:948
msgid "soundcard synthesizer"
msgstr ""
#: Programs/cmd.c:277 Programs/core.c:1046
msgid "space"
msgstr "spazio"
#: Programs/cmds.auto.h:629
msgid "speak current character"
msgstr ""
#: Programs/cmds.auto.h:465 Programs/cmds.auto.h:669
msgid "speak current line"
msgstr ""
#: Programs/cmds.auto.h:649
msgid "speak current word"
msgstr ""
#: Programs/cmds.auto.h:477
msgid "speak from current line through bottom of screen"
msgstr ""
#: Programs/cmds.auto.h:471
msgid "speak from top of screen through current line"
msgstr ""
#: Programs/cmds.auto.h:864
msgid "speak indent of current line"
msgstr ""
#: Programs/cmds.auto.h:736
msgid "speak speech cursor location"
msgstr ""
#: Programs/config.c:2057
msgid "speech driver not loadable"
msgstr ""
#: Programs/config.c:2206
msgid "speech driver restarting"
msgstr ""
#: Programs/cmd_speech.c:104
msgid "speech driver stopped"
msgstr ""
#: Programs/cmds.auto.h:723
msgid "spell current word"
msgstr ""
#: Programs/cmds.auto.h:1026
msgid "start new clipboard at character"
msgstr ""
#: Programs/cmds.auto.h:1208
msgid "start text selection"
msgstr ""
#: Programs/cmds.auto.h:799
msgid "start the braille driver"
msgstr ""
#: Programs/cmds.auto.h:823
msgid "start the screen driver"
msgstr ""
#: Programs/cmds.auto.h:811
msgid "start the speech driver"
msgstr ""
#: Programs/cmds.auto.h:452
msgid "stop speaking"
msgstr ""
#: Programs/cmds.auto.h:793
msgid "stop the braille driver"
msgstr ""
#: Programs/cmds.auto.h:817
msgid "stop the screen driver"
msgstr ""
#: Programs/cmds.auto.h:805
msgid "stop the speech driver"
msgstr ""
#: Programs/xbrlapi.c:656
msgid "strange old error handler\n"
msgstr ""
#: Programs/brltty-cldr.c:39
msgid "string"
msgstr ""
#: Programs/cmds.auto.h:1273
msgid "switch to command context"
msgstr ""
#: Programs/cmds.auto.h:1054
msgid "switch to specific virtual terminal"
msgstr ""
#: Programs/cmds.auto.h:987
msgid "switch to the next screen area"
msgstr ""
#: Programs/cmds.auto.h:513
msgid "switch to the next virtual terminal"
msgstr ""
#: Programs/cmds.auto.h:981
msgid "switch to the previous screen area"
msgstr ""
#: Programs/cmds.auto.h:507
msgid "switch to the previous virtual terminal"
msgstr ""
#: Programs/pgmprivs_linux.c:1994
msgid "switched to unprivileged user"
msgstr ""
#: Programs/cmds.auto.h:1294
msgid "tab key"
msgstr ""
#: Programs/config.c:302 Programs/config.c:309
msgid "text"
msgstr "testo"
#: Programs/cmds.auto.h:1245
msgid "type braille dots"
msgstr "tipo punti braille"
#: Programs/cmds.auto.h:1237
msgid "type unicode character"
msgstr "tipo caratteri unicode"
#: Programs/xbrlapi.c:974
msgid "unexpected block type"
msgstr ""
#: Programs/xbrlapi.c:864
msgid "unexpected cmd"
msgstr ""
#: Programs/cmd_queue.c:157
msgid "unhandled command"
msgstr ""
#: Programs/cmd.c:198
msgid "unknown command"
msgstr ""
#: Programs/options.c:823
msgid "unknown configuration directive"
msgstr ""
#: Programs/config.c:737
msgid "unknown log level or category"
msgstr ""
#. an unknown option has been specified
#: Programs/options.c:570
msgid "unknown option"
msgstr "opzione sconosciuta"
#: Programs/parse.c:501
msgid "unsupported parameter"
msgstr ""
#: Programs/spk.c:172
msgid "volume"
msgstr "volume"
#. LRGB
#: Programs/cmd_utils.c:159
msgid "white"
msgstr "bianco"
#: Programs/pgmprivs_linux.c:1856
msgid "working directory changed"
msgstr ""
#: Programs/xbrlapi.c:911
#, c-format
msgid "xbrlapi: Couldn't find a keycode to remap for simulating unbound keysym %08X\n"
msgstr ""
#: Programs/xbrlapi.c:898
#, c-format
msgid "xbrlapi: Couldn't find modifiers to apply to %d for getting keysym %08X\n"
msgstr ""
#: Programs/xbrlapi.c:874
#, c-format
msgid "xbrlapi: Couldn't translate keysym %08X to keycode.\n"
msgstr ""
#: Programs/xbrlapi.c:415
#, c-format
msgid "xbrlapi: X Error %d, %s on display %s\n"
msgstr ""
#: Programs/xbrlapi.c:457
#, c-format
msgid "xbrlapi: bad format for VT number\n"
msgstr ""
#: Programs/xbrlapi.c:460
#, c-format
msgid "xbrlapi: bad type for VT number\n"
msgstr ""
#: Programs/xbrlapi.c:439
#, c-format
msgid "xbrlapi: cannot get root window XFree86_VT property\n"
msgstr ""
#: Programs/xbrlapi.c:316
#, c-format
msgid "xbrlapi: cannot write window name %s\n"
msgstr ""
#: Programs/xbrlapi.c:764
#, c-format
msgid "xbrlapi: didn't grab parent of %#010lx\n"
msgstr ""
#: Programs/xbrlapi.c:782
#, c-format
msgid "xbrlapi: didn't grab window %#010lx\n"
msgstr ""
#: Programs/xbrlapi.c:582
#, c-format
msgid "xbrlapi: didn't grab window %#010lx but got focus\n"
msgstr ""
#: Programs/xbrlapi.c:448
#, c-format
msgid "xbrlapi: more than one item for VT number\n"
msgstr ""
#: Programs/xbrlapi.c:433
#, c-format
msgid "xbrlapi: no XFree86_VT atom\n"
msgstr ""
#: Programs/xbrlapi.c:444
#, c-format
msgid "xbrlapi: no items for VT number\n"
msgstr ""
#: Programs/xbrlapi.c:416
#, c-format
msgid "xbrlapi: resource %#010lx, req %u:%u\n"
msgstr ""
#. "shouldn't happen" events
#: Programs/xbrlapi.c:811
#, c-format
msgid "xbrlapi: unhandled event type: %d\n"
msgstr ""
#: Programs/xbrlapi.c:790
#, c-format
msgid "xbrlapi: window %#010lx changed to NULL name\n"
msgstr ""
#. LRG
#: Programs/cmd_utils.c:158
msgid "yellow"
msgstr "giallo"
#~ msgid "Bug Reports"
#~ msgstr "Segnalazioni bug"
#~ msgid "Normal"
#~ msgstr "Normale"
|