1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360
|
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2001-07-03 21:46-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8-bit\n"
#: lib/misc/getopt.c:514
#, c-format
msgid "%s: option `%s' is ambiguous\n"
msgstr ""
#: lib/misc/getopt.c:538
#, c-format
msgid "%s: option `--%s' doesn't allow an argument\n"
msgstr ""
#: lib/misc/getopt.c:543
#, c-format
msgid "%s: option `%c%s' doesn't allow an argument\n"
msgstr ""
#: lib/misc/getopt.c:557
#, c-format
msgid "%s: option `%s' requires an argument\n"
msgstr ""
#. --option
#: lib/misc/getopt.c:585
#, c-format
msgid "%s: unrecognized option `--%s'\n"
msgstr ""
#. +option or -option
#: lib/misc/getopt.c:589
#, c-format
msgid "%s: unrecognized option `%c%s'\n"
msgstr ""
#. 1003.2 specifies the format of this message.
#: lib/misc/getopt.c:614
#, c-format
msgid "%s: illegal option -- %c\n"
msgstr ""
#: lib/misc/getopt.c:616
#, c-format
msgid "%s: invalid option -- %c\n"
msgstr ""
#. 1003.2 specifies the format of this message.
#: lib/misc/getopt.c:650
#, c-format
msgid "%s: option requires an argument -- %c\n"
msgstr ""
#: src/aggregate.c:191
msgid "OUTFILE specified multiple times."
msgstr ""
#: src/aggregate.c:217
msgid "while expecting COLUMNWISE"
msgstr ""
#: src/aggregate.c:232
msgid "BREAK specified multiple times."
msgstr ""
#: src/aggregate.c:261
msgid "BREAK subcommand not specified."
msgstr ""
#: src/aggregate.c:504
msgid "expecting aggregation function"
msgstr ""
#: src/aggregate.c:520
#, c-format
msgid "Unknown aggregation function %s."
msgstr ""
#: src/aggregate.c:535
msgid "expecting `('"
msgstr ""
#: src/aggregate.c:570
#, c-format
msgid "Missing argument %d to %s."
msgstr ""
#: src/aggregate.c:578
#, c-format
msgid "Arguments to %s must be of same type as source variables."
msgstr ""
#: src/aggregate.c:588 src/expr-prs.c:664
msgid "expecting `)'"
msgstr ""
#: src/aggregate.c:600 src/autorecode.c:114
#, c-format
msgid ""
"Number of source variables (%d) does not match number of target variables (%"
"d)."
msgstr ""
#: src/aggregate.c:671
#, c-format
msgid ""
"Variable name %s is not unique within the aggregate file dictionary, which "
"contains the aggregate variables and the break variables."
msgstr ""
#: src/expr-evl.c:1180
msgid ""
"A number being treated as a Boolean in an expression was found to have a "
"value other than 0 (false), 1 (true), or the system-missing value. The "
"result was forced to 0."
msgstr ""
#: src/expr-evl.c:1224
#, c-format
msgid ""
"SYSMIS is not a valid index value for vector %s. The result will be set to "
"SYSMIS."
msgstr ""
#: src/expr-evl.c:1228
#, c-format
msgid ""
"%g is not a valid index value for vector %s. The result will be set to "
"SYSMIS."
msgstr ""
#: src/expr-evl.c:1246
#, c-format
msgid ""
"SYSMIS is not a valid index value for vector %s. The result will be set to "
"the empty string."
msgstr ""
#: src/expr-evl.c:1251
#, c-format
msgid ""
"%g is not a valid index value for vector %s. The result will be set to the "
"empty string."
msgstr ""
#: src/expr-evl.c:1362
#, c-format
msgid "evaluate_expression(): not implemented: %s\n"
msgstr ""
#: src/expr-evl.c:1365
#, c-format
msgid "evaluate_expression(): not implemented: %d\n"
msgstr ""
#: src/expr-prs.c:140
msgid ""
"A string expression was supplied in a place where a Boolean expression was "
"expected."
msgstr ""
#: src/expr-prs.c:151
msgid ""
"A numeric expression was expected in a place where one was not supplied."
msgstr ""
#: src/expr-prs.c:159
msgid "A string expression was expected in a place where one was not supplied."
msgstr ""
#: src/expr-prs.c:173
msgid "The OR operator cannot take string operands."
msgstr ""
#: src/expr-prs.c:221
msgid "The AND operator cannot take string operands."
msgstr ""
#: src/expr-prs.c:270
msgid "The NOT operator cannot take a string operand."
msgstr ""
#: src/expr-prs.c:297
msgid ""
"Strings cannot be compared with numeric or Boolean values with the "
"relational operators = >= > <= < <>."
msgstr ""
#: src/expr-prs.c:354
msgid "The `+' and `-' operators may only be used with numeric operands."
msgstr ""
#: src/expr-prs.c:406
msgid "The `*' and `/' operators may only be used with numeric operands."
msgstr ""
#: src/expr-prs.c:457
msgid "The unary minus (-) operator can only take a numeric operand."
msgstr ""
#: src/expr-prs.c:487
msgid "Both operands to the ** operator must be numeric."
msgstr ""
#: src/expr-prs.c:581
msgid "Use of $LENGTH is obsolete, returning default of 66."
msgstr ""
#: src/expr-prs.c:586
msgid "Use of $WIDTH is obsolete, returning default of 131."
msgstr ""
#: src/expr-prs.c:591
#, c-format
msgid "Unknown system variable %s."
msgstr ""
#: src/expr-prs.c:630
msgid "expecting variable name"
msgstr ""
#: src/expr-prs.c:672
msgid "in expression"
msgstr ""
#: src/expr-prs.c:849
msgid "Argument 2 to LAG must be a small positive integer constant."
msgstr ""
#: src/expr-prs.c:922 src/expr-prs.c:961
#, c-format
msgid ""
"Type mismatch in argument %d of %s, which was expected to be of %s type. It "
"was actually of %s type. "
msgstr ""
#: src/expr-prs.c:948
#, c-format
msgid "%s cannot take Boolean operands."
msgstr ""
#: src/expr-prs.c:980
msgid "in function call"
msgstr ""
#: src/expr-prs.c:994
msgid "RANGE requires an odd number of arguments, but at least three."
msgstr ""
#: src/expr-prs.c:1004
#, c-format
msgid "%s requires at least two arguments."
msgstr ""
#: src/expr-prs.c:1019
#, c-format
msgid "%s.%d requires at least %d arguments."
msgstr ""
#: src/expr-prs.c:1061
#, c-format
msgid ""
"Argument %d to CONCAT is type %s. All arguments to CONCAT must be strings."
msgstr ""
#: src/expr-prs.c:1120
#, c-format
msgid ""
"Argument %d to %s was expected to be of %s type. It was actually of type %s."
msgstr ""
#: src/apply-dict.c:72 src/apply-dict.c:73 src/expr-prs.c:1123
#: src/expr-prs.c:1464 src/expr-prs.c:1483 src/formats.c:105
#: src/pfm-read.c:654 src/print.c:719 src/sfm-read.c:1009 src/sfm-read.c:1137
#: src/sfm-read.c:1138
msgid "numeric"
msgstr ""
#: src/apply-dict.c:72 src/apply-dict.c:73 src/expr-prs.c:1123
#: src/expr-prs.c:1467 src/expr-prs.c:1485 src/formats.c:105
#: src/pfm-read.c:654 src/print.c:719 src/sfm-read.c:1009 src/sfm-read.c:1137
#: src/sfm-read.c:1138
msgid "string"
msgstr ""
#: src/expr-prs.c:1139
#, c-format
msgid "%s is not a numeric format."
msgstr ""
#: src/expr-prs.c:1165
#, c-format
msgid "Too few arguments to function %s."
msgstr ""
#: src/expr-prs.c:1197
#, c-format
msgid ""
"Type mismatch in argument %d of %s, which was expected to be numeric. It "
"was actually type %s."
msgstr ""
#: src/expr-prs.c:1206
#, c-format
msgid "Missing comma following argument %d of %s."
msgstr ""
#: src/expr-prs.c:1244
msgid "The index value after a vector name must be numeric."
msgstr ""
#: src/expr-prs.c:1251
msgid "`)' expected after a vector index value."
msgstr ""
#: src/expr-prs.c:1283
#, c-format
msgid "There is no function named %s."
msgstr ""
#: src/expr-prs.c:1288
#, c-format
msgid "Function %s may not be given a minimum number of arguments."
msgstr ""
#: src/expr-prs.c:1297
#, c-format
msgid "expecting `)' after %s function"
msgstr ""
#. FE
#: src/error.c:281 src/error.c:288 src/error.c:291 src/expr-prs.c:1458
msgid "error"
msgstr ""
#: src/expr-prs.c:1461
msgid "Boolean"
msgstr ""
#: src/expr-prs.c:1689
msgid "!!TERMINAL!!"
msgstr ""
#: src/expr-prs.c:1715
msgid "!!SENTINEL!!"
msgstr ""
#: src/expr-prs.c:1718
#, c-format
msgid "!!ERROR%d!!"
msgstr ""
#: src/expr-prs.c:1736
msgid "postfix:"
msgstr ""
#: src/expr-opt.c:662
msgid ""
"While optimizing a constant expression, there was a bad value for the third "
"argument to INDEX."
msgstr ""
#: src/expr-opt.c:687
msgid ""
"While optimizing a constant expression, there was a bad value for the third "
"argument to RINDEX."
msgstr ""
#: src/expr-opt.c:746
#, c-format
msgid "Third argument to %cPAD() must be at least one character in length."
msgstr ""
#: src/expr-opt.c:779
#, c-format
msgid "Second argument to %cTRIM() must be at least one character in length."
msgstr ""
#: src/expr-opt.c:880
msgid ""
"When optimizing a constant expression, an integer that was being used as an "
"Boolean value was found to have a constant value other than 0, 1, or SYSMIS."
msgstr ""
#: src/hash.c:315
msgid "hash table:"
msgstr ""
#: src/filename.c:240
#, c-format
msgid "Searching for `%s'..."
msgstr ""
#: src/filename.c:248 src/filename.c:280
msgid "Search unsuccessful!"
msgstr ""
#: src/filename.c:273
#, c-format
msgid "Found `%s'."
msgstr ""
#: src/filename.c:694
#, c-format
msgid "Not opening pipe file `%s' because SAFER option set."
msgstr ""
#: src/apply-dict.c:69
#, c-format
msgid "Variable %s is %s in target file, but %s in source file."
msgstr ""
#: src/apply-dict.c:85
#, c-format
msgid "Cannot add value labels from source file to long string variable %s."
msgstr ""
#: src/apply-dict.c:121
#, c-format
msgid ""
"Cannot apply missing values from source file to long string variable %s."
msgstr ""
#: src/apply-dict.c:153
msgid "No matching variables found between the source and target files."
msgstr ""
#: src/heap.c:167
#, c-format
msgid "bad ordering of keys %d and %d\n"
msgstr ""
#: src/heap.c:177
msgid "Heap contents:\n"
msgstr ""
#: src/data-in.c:71
msgid "data-file error: "
msgstr ""
#: src/data-in.c:73
#, c-format
msgid "(column %d"
msgstr ""
#: src/data-in.c:75
#, c-format
msgid "(columns %d-%d"
msgstr ""
#: src/data-in.c:76
#, c-format
msgid ", field type %s) "
msgstr ""
#: src/data-in.c:225
msgid "Field contents followed by garbage."
msgstr ""
#. Return an overflow error.
#: src/data-in.c:258
msgid "Overflow in floating-point constant."
msgstr ""
#. Return an underflow error.
#: src/data-in.c:264
msgid "Underflow in floating-point constant."
msgstr ""
#. There was no number.
#: src/data-in.c:270
msgid "Field does not form a valid floating-point constant."
msgstr ""
#: src/data-in.c:295
msgid "All characters in field must be digits."
msgstr ""
#: src/data-in.c:320
msgid "Unrecognized character in field."
msgstr ""
#: src/data-in.c:338 src/data-in.c:592
msgid "Field must have even length."
msgstr ""
#: src/data-in.c:348 src/data-in.c:602
msgid "Field must contain only hex digits."
msgstr ""
#: src/data-in.c:385
msgid ""
"Quality of zoned decimal (Z) input format code is suspect. Check your "
"results three times, report bugs to author."
msgstr ""
#: src/data-in.c:397
msgid "Zoned decimal field contains fewer than 2 characters."
msgstr ""
#: src/data-in.c:405
msgid "Bad sign byte in zoned decimal number."
msgstr ""
#: src/data-in.c:422
msgid "Format error in zoned decimal number."
msgstr ""
#: src/data-in.c:436
msgid "Error in syntax of zoned decimal number."
msgstr ""
#: src/data-in.c:647
msgid "Unexpected end of field."
msgstr ""
#: src/data-in.c:673
msgid "Digit expected in field."
msgstr ""
#: src/data-in.c:698
#, c-format
msgid "Day (%ld) must be between 1 and 31."
msgstr ""
#: src/data-in.c:723
msgid "Delimiter expected between fields in date."
msgstr ""
#: src/data-in.c:820
#, c-format
msgid "Month (%ld) must be between 1 and 12."
msgstr ""
#: src/data-in.c:861
#, c-format
msgid "Month (%s) must be between I and XII."
msgstr ""
#: src/data-in.c:888
#, c-format
msgid "Month name (%s...) is too long."
msgstr ""
#: src/data-in.c:899
#, c-format
msgid "Bad month name (%s)."
msgstr ""
#: src/data-in.c:915
#, c-format
msgid "Year (%ld) must be between 1582 and 19999."
msgstr ""
#: src/data-in.c:926
#, c-format
msgid "Trailing garbage \"%s\" following date."
msgstr ""
#: src/data-in.c:941
#, c-format
msgid "Julian day (%d) must be between 1 and 366."
msgstr ""
#: src/data-in.c:953
#, c-format
msgid "Year (%d) must be between 1582 and 19999."
msgstr ""
#: src/data-in.c:969
#, c-format
msgid "Quarter (%ld) must be between 1 and 4."
msgstr ""
#: src/data-in.c:979
msgid "`Q' expected between quarter and year."
msgstr ""
#: src/data-in.c:995
#, c-format
msgid "Week (%ld) must be between 1 and 53."
msgstr ""
#: src/data-in.c:1006
msgid "`WK' expected between week and year."
msgstr ""
#: src/data-in.c:1029
msgid "Delimiter expected between fields in time."
msgstr ""
#: src/data-in.c:1041
#, c-format
msgid "Hour (%ld) must be positive."
msgstr ""
#: src/data-in.c:1053
#, c-format
msgid "Minute (%ld) must be between 0 and 59."
msgstr ""
#: src/data-in.c:1100
#, c-format
msgid "Hour (%ld) must be between 0 and 23."
msgstr ""
#: src/data-in.c:1114 src/data-in.c:1149
msgid "Day of the week expected in date value."
msgstr ""
#: src/data-in.c:1200
msgid "Date is not in valid range between 15 Oct 1582 and 31 Dec 19999."
msgstr ""
#: src/data-in.c:1528
#, c-format
msgid "Field too long (%d characters). Truncated after character %d."
msgstr ""
#: src/data-list.c:154
msgid ""
"DATA LIST may not use a different file from that specified on its "
"surrounding FILE TYPE."
msgstr ""
#: src/data-list.c:173
msgid "The END subcommand may only be specified once."
msgstr ""
#: src/data-list.c:209
msgid "Only one of FIXED, FREE, or LIST may be specified."
msgstr ""
#: src/data-list.c:339 src/print.c:320
#, c-format
msgid ""
"The record number specified, %ld, is before the previous record, %d. Data "
"fields must be listed in order of increasing record number."
msgstr ""
#: src/data-list.c:371 src/data-list.c:1635
msgid ""
"SPSS-like or FORTRAN-like format specification expected after variable names."
msgstr ""
#: src/data-list.c:382 src/print.c:352
msgid ""
"Variables are specified on records that should not exist according to "
"RECORDS subcommand."
msgstr ""
#: src/autorecode.c:125 src/command.c:722 src/compute.c:361
#: src/data-list.c:390 src/data-list.c:840 src/data-list.c:1646
#: src/do-if.c:267 src/file-handle.q:90 src/get.c:436 src/lexer.c:384
#: src/loop.c:250 src/matrix-data.c:527 src/print.c:359 src/print.c:1100
#: src/recode.c:411 src/sel-if.c:56 src/sel-if.c:136 src/vector.c:208
msgid "expecting end of command"
msgstr ""
#: src/data-list.c:414 src/data-list.c:427 src/print.c:529 src/print.c:542
msgid "Column positions for fields must be positive."
msgstr ""
#: src/data-list.c:432
msgid "The ending column for a field must be greater than the starting column."
msgstr ""
#: src/data-list.c:456 src/print.c:570
msgid "A format specifier on this line has extra characters on the end."
msgstr ""
#: src/data-list.c:471 src/print.c:586
msgid "The value for number of decimal places must be at least 1."
msgstr ""
#: src/data-list.c:485 src/print.c:599
#, c-format
msgid "Input format %s doesn't accept decimal places."
msgstr ""
#: src/data-list.c:506 src/print.c:619
#, c-format
msgid "The %d columns %d-%d can't be evenly divided into %d fields."
msgstr ""
#: src/data-list.c:539 src/data-list.c:626 src/data-list.c:823
#, c-format
msgid "%s is a duplicate variable name."
msgstr ""
#: src/data-list.c:544
#, c-format
msgid "There is already a variable %s of a different type."
msgstr ""
#: src/data-list.c:551
#, c-format
msgid "There is already a string variable %s of a different width."
msgstr ""
#: src/data-list.c:615 src/print.c:708
msgid ""
"The number of format specifications exceeds the number of variable names "
"given."
msgstr ""
#: src/data-list.c:699 src/print.c:792
msgid ""
"There aren't enough format specifications to match the number of variable "
"names given."
msgstr ""
#: src/data-list.c:733 src/data-list.c:867 src/descript.q:799 src/print.c:824
#: src/sysfile-info.c:130 src/sysfile-info.c:369 src/vfm.c:1133
msgid "Variable"
msgstr ""
#: src/data-list.c:734 src/print.c:825
msgid "Record"
msgstr ""
#: src/data-list.c:735 src/print.c:826
msgid "Columns"
msgstr ""
#: src/data-list.c:736 src/data-list.c:868 src/print.c:827
msgid "Format"
msgstr ""
#: src/data-list.c:758
#, c-format
msgid "Reading %d record%s from file %s."
msgstr ""
#: src/data-list.c:759
#, c-format
msgid "Reading %d record%s from the command file."
msgstr ""
#: src/data-list.c:764 src/data-list.c:765
msgid "Occurrence data specifications."
msgstr ""
#: src/data-list.c:891
#, c-format
msgid "Reading free-form data from file %s."
msgstr ""
#: src/data-list.c:892
msgid "Reading free-form data from the command file."
msgstr ""
#: src/data-list.c:943 src/matrix-data.c:957
msgid "Scope of string exceeds line."
msgstr ""
#: src/data-list.c:1004
msgid "Attempt to read past end of file."
msgstr ""
#: src/data-list.c:1033
msgid "abort in write_case()\n"
msgstr ""
#. Note that this can't occur on the first record.
#: src/data-list.c:1064
#, c-format
msgid "Partial case of %d of %d records discarded."
msgstr ""
#: src/data-list.c:1113
#, c-format
msgid "Partial case discarded. The first variable missing was %s."
msgstr ""
#: src/data-list.c:1154
#, c-format
msgid ""
"Missing value(s) for all variables from %s onward. These will be filled "
"with the system-missing value or blanks, as appropriate."
msgstr ""
#: src/data-list.c:1312
msgid ""
"REPEATING DATA must use the same file as its corresponding DATA LIST or FILE "
"TYPE."
msgstr ""
#: src/data-list.c:1322
msgid "STARTS subcommand given multiple times."
msgstr ""
#: src/data-list.c:1346
#, c-format
msgid "STARTS beginning column (%d) exceeds STARTS ending column (%d)."
msgstr ""
#: src/data-list.c:1357
msgid "OCCURS subcommand given multiple times."
msgstr ""
#: src/data-list.c:1370
msgid "LENGTH subcommand given multiple times."
msgstr ""
#: src/data-list.c:1383
msgid "CONTINUED subcommand given multiple times."
msgstr ""
#: src/data-list.c:1402
#, c-format
msgid "CONTINUED beginning column (%d) exceeds CONTINUED ending column (%d)."
msgstr ""
#: src/data-list.c:1416
msgid "ID subcommand given multiple times."
msgstr ""
#: src/data-list.c:1425
#, c-format
msgid "ID beginning column (%ld) must be positive."
msgstr ""
#: src/data-list.c:1440
#, c-format
msgid "ID ending column (%ld) must be positive."
msgstr ""
#: src/data-list.c:1446
#, c-format
msgid "ID ending column (%ld) cannot be less than ID beginning column (%d)."
msgstr ""
#: src/data-list.c:1485
msgid "Missing required specification STARTS."
msgstr ""
#: src/data-list.c:1487
msgid "Missing required specification OCCURS."
msgstr ""
#: src/data-list.c:1494
msgid "ID specified without CONTINUED."
msgstr ""
#: src/data-list.c:1582
msgid "String variable not allowed here."
msgstr ""
#: src/data-list.c:1592
#, c-format
msgid "%s (%d) must be at least 1."
msgstr ""
#: src/data-list.c:1598
#, c-format
msgid "Variable or integer expected for %s."
msgstr ""
#: src/data-list.c:1737
#, c-format
msgid "Mismatched case ID (%s). Expected value was %s."
msgstr ""
#: src/data-list.c:1769
#, c-format
msgid ""
"Variable %s startging in column %d extends beyond physical record length of %"
"d."
msgstr ""
#: src/data-list.c:1837
#, c-format
msgid "Invalid value %d for OCCURS."
msgstr ""
#: src/data-list.c:1843
#, c-format
msgid "Beginning column for STARTS (%d) must be at least 1."
msgstr ""
#: src/data-list.c:1851
#, c-format
msgid "Ending column for STARTS (%d) is less than beginning column (%d)."
msgstr ""
#: src/data-list.c:1859
#, c-format
msgid "Invalid value %d for LENGTH."
msgstr ""
#: src/data-list.c:1866
#, c-format
msgid "Beginning column for CONTINUED (%d) must be at least 1."
msgstr ""
#: src/data-list.c:1874
#, c-format
msgid "Ending column for CONTINUED (%d) is less than beginning column (%d)."
msgstr ""
#: src/data-list.c:1897
#, c-format
msgid ""
"Number of repetitions specified on OCCURS (%d) exceed number of repetitions "
"available in space on STARTS (%d), and CONTINUED not specified."
msgstr ""
#: src/data-list.c:1914
#, c-format
msgid "Unexpected end of file with %d repetitions remaining out of %d."
msgstr ""
#: src/dfm.c:92
#, c-format
msgid "%s: Closing data-file handle %s."
msgstr ""
#: src/dfm.c:117
msgid "<<Bug in dfm.c>>"
msgstr ""
#: src/dfm.c:139
#, c-format
msgid "%s: Opening data-file handle %s for reading."
msgstr ""
#: src/dfm.c:156 src/dfm.c:173
msgid "BEGIN DATA expected."
msgstr ""
#: src/dfm.c:193
#, c-format
msgid "An error occurred while opening \"%s\" for reading as a data file: %s."
msgstr ""
#: src/dfm.c:222
#, c-format
msgid "%s: Opening data-file handle %s for writing."
msgstr ""
#: src/dfm.c:228
msgid "Cannot open the inline file for writing."
msgstr ""
#: src/dfm.c:243
#, c-format
msgid "An error occurred while opening \"%s\" for writing as a data file: %s."
msgstr ""
#: src/dfm.c:388
msgid ""
"Unexpected end-of-file while reading data in BEGIN DATA. This probably "
"indicates a missing or misformatted END DATA command. END DATA must appear "
"by itself on a single line with exactly one space between words."
msgstr ""
#: src/dfm.c:421 src/dfm.c:442
#, c-format
msgid "Error reading file %s: %s."
msgstr ""
#: src/dfm.c:445
#, c-format
msgid "%s: Partial record at end of file."
msgstr ""
#: src/dfm.c:501
#, c-format
msgid "Cannot read from file %s already opened for %s."
msgstr ""
#: src/dfm.c:515
#, c-format
msgid "Attempt to read beyond end-of-file on file %s."
msgstr ""
#: src/dfm.c:609
#, c-format
msgid "Cannot write to file %s already opened for %s."
msgstr ""
#: src/dfm.c:633
#, c-format
msgid "Error writing file %s: %s."
msgstr ""
#: src/dfm.c:676
msgid ""
"This command is not valid here since the current input program does not "
"access the inline file."
msgstr ""
#. Initialize inline_file.
#: src/dfm.c:683
msgid "inline file: Opening for reading."
msgstr ""
#: src/dfm.c:697
msgid "Skipping remaining inline data."
msgstr ""
#: src/dfm.c:709
msgid "reading as a data file"
msgstr ""
#: src/dfm.c:716
msgid "writing as a data file"
msgstr ""
#: src/file-handle.q:74
#, c-format
msgid ""
"File handle %s had already been defined to refer to file %s. It is not "
"possible to redefine a file handle within a session."
msgstr ""
#: src/file-handle.q:96
msgid "The FILE HANDLE required subcommand NAME is not present."
msgstr ""
#: src/file-handle.q:109
msgid ""
"Fixed length records were specified on /RECFORM, but record length was not "
"specified on /LRECL. 80-character records will be assumed."
msgstr ""
#: src/file-handle.q:116
#, c-format
msgid ""
"Record length (%ld) must be at least one byte. 80-character records will be "
"assumed."
msgstr ""
#: src/file-handle.q:127
msgid ""
"/RECFORM SPANNED is not implemented, as the author doesn't know what it is "
"supposed to do. Send the author a note."
msgstr ""
#: src/file-handle.q:140
msgid ""
"/MODE IMAGE is not implemented, as the author doesn't know what it is "
"supposed to do. Send the author a note."
msgstr ""
#: src/file-handle.q:147
msgid "/MODE MULTIPUNCH is not implemented. If you care, complain."
msgstr ""
#: src/file-handle.q:151
msgid "/MODE 360 is not implemented. If you care, complain."
msgstr ""
#: src/file-handle.q:233
#, c-format
msgid "File handle `%s' has not been previously declared on FILE HANDLE."
msgstr ""
#: src/file-handle.q:309
msgid "<Inline File>"
msgstr ""
#: src/file-handle.q:328
msgid "expecting a file name or handle"
msgstr ""
#: src/file-type.c:126
msgid "MIXED, GROUPED, or NESTED expected."
msgstr ""
#: src/file-type.c:149
msgid "The CASE subcommand is not valid on FILE TYPE MIXED."
msgstr ""
#: src/file-type.c:167
msgid "WARN or NOWARN expected after WILD."
msgstr ""
#: src/file-type.c:175
msgid "The DUPLICATE subcommand is not valid on FILE TYPE MIXED."
msgstr ""
#: src/file-type.c:189
msgid "DUPLICATE=CASE is only valid on FILE TYPE NESTED."
msgstr ""
#: src/file-type.c:198
#, c-format
msgid "WARN%s expected after DUPLICATE."
msgstr ""
#: src/file-type.c:199
msgid ", NOWARN, or CASE"
msgstr ""
#: src/file-type.c:200
msgid " or NOWARN"
msgstr ""
#: src/file-type.c:208
msgid "The MISSING subcommand is not valid on FILE TYPE MIXED."
msgstr ""
#: src/file-type.c:220
msgid "WARN or NOWARN after MISSING."
msgstr ""
#: src/file-type.c:228
msgid "ORDERED is only valid on FILE TYPE GROUPED."
msgstr ""
#: src/file-type.c:239
msgid "YES or NO expected after ORDERED."
msgstr ""
#: src/file-type.c:245 src/file-type.c:555 src/get.c:420
msgid "while expecting a valid subcommand"
msgstr ""
#: src/file-type.c:252
msgid "The required RECORD subcommand was not present."
msgstr ""
#: src/file-type.c:260
msgid "The required CASE subcommand was not present."
msgstr ""
#: src/file-type.c:266
msgid "CASE and RECORD must specify different variable names."
msgstr ""
#: src/file-type.c:317
msgid "Column value must be positive."
msgstr ""
#: src/file-type.c:332
msgid "Ending column precedes beginning column."
msgstr ""
#: src/file-type.c:351
msgid "Bad format specifier name."
msgstr ""
#: src/file-type.c:417 src/file-type.c:576
msgid ""
"This command may only appear within a FILE TYPE/END FILE TYPE structure."
msgstr ""
#: src/file-type.c:424
msgid "OTHER may appear only on the last RECORD TYPE command."
msgstr ""
#: src/file-type.c:434
msgid "No input commands (DATA LIST, REPEATING DATA) for above RECORD TYPE."
msgstr ""
#: src/file-type.c:488
msgid ""
"The CASE subcommand is not allowed on the RECORD TYPE command for FILE TYPE "
"MIXED."
msgstr ""
#: src/file-type.c:498
msgid ""
"No variable name may be specified for the CASE subcommand on RECORD TYPE."
msgstr ""
#: src/file-type.c:506
msgid ""
"The CASE column specification on RECORD TYPE must give a format specifier "
"that is the same type as that of the CASE column specification given on FILE "
"TYPE."
msgstr ""
#: src/file-type.c:522
msgid "WARN or NOWARN expected on DUPLICATE subcommand."
msgstr ""
#: src/file-type.c:536
msgid "WARN or NOWARN expected on MISSING subcommand."
msgstr ""
#: src/file-type.c:549
msgid "YES or NO expected on SPREAD subcommand."
msgstr ""
#: src/file-type.c:589
msgid "No input commands (DATA LIST, REPEATING DATA) on above RECORD TYPE."
msgstr ""
#: src/file-type.c:596
msgid "No commands between FILE TYPE and END FILE TYPE."
msgstr ""
#: src/file-type.c:661
#, c-format
msgid "Unknown record type \"%.*s\"."
msgstr ""
#: src/file-type.c:685
#, c-format
msgid "Unknown record type %g."
msgstr ""
#: src/format.c:75
msgid "X and T format specifiers not allowed here."
msgstr ""
#: src/format.c:81
#, c-format
msgid "%s is not a valid data format."
msgstr ""
#: src/format.c:112
#, c-format
msgid "Format %s may not be used as an input format."
msgstr ""
#: src/format.c:117
#, c-format
msgid ""
"Input format %s specifies a bad width %d. Format %s requires a width "
"between %d and %d."
msgstr ""
#: src/format.c:124
#, c-format
msgid ""
"Input format %s specifies an odd width %d, but format %s requires an even "
"width between %d and %d."
msgstr ""
#: src/format.c:131
#, c-format
msgid ""
"Input format %s specifies a bad number of implied decimal places %d. Input "
"format %s allows up to 16 implied decimal places."
msgstr ""
#: src/format.c:151
#, c-format
msgid ""
"Output format %s specifies a bad width %d. Format %s requires a width "
"between %d and %d."
msgstr ""
#: src/format.c:161
#, c-format
msgid ""
"Output format %s requires minimum width %d to allow %d decimal places. Try %"
"s%d.%d instead of %s."
msgstr ""
#: src/format.c:169
#, c-format
msgid ""
"Output format %s specifies an odd width %d, but output format %s requires an "
"even width between %d and %d."
msgstr ""
#: src/format.c:176
#, c-format
msgid ""
"Output format %s specifies a bad number of implied decimal places %d. "
"Output format %s allows a number of implied decimal places between 1 and 16."
msgstr ""
#: src/format.c:193
#, c-format
msgid "Can't display a string variable of width %d with format specifier %s."
msgstr ""
#: src/format.c:303
msgid "Format specifier expected."
msgstr ""
#: src/format.c:314
#, c-format
msgid "Data format %s does not specify a width."
msgstr ""
#: src/format.c:331
#, c-format
msgid "Data format %s is not valid."
msgstr ""
#: src/formats.c:95
msgid "`(' expected after variable list"
msgstr ""
#: src/formats.c:104
#, c-format
msgid "Format %s may not be assigned to a %s variable."
msgstr ""
#: src/formats.c:125 src/numeric.c:68 src/numeric.c:142
msgid "`)' expected after output format."
msgstr ""
#: src/formats.c:155
msgid "Formats:\n"
msgstr ""
#: src/formats.c:156
msgid " Name Print Write\n"
msgstr ""
#: src/get.c:125
msgid "GET translation table from file to memory:\n"
msgstr ""
#: src/get.c:130 src/get.c:1487
#, c-format
msgid " %8s from %3d,%3d to %3d,%3d\n"
msgstr ""
#: src/get.c:426
msgid "All variables deleted from system file dictionary."
msgstr ""
#: src/get.c:472
#, c-format
msgid ""
"Cannot rename %s as %s because there already exists a variable named %s. To "
"rename variables with overlapping names, use a single RENAME subcommand such "
"as \"/RENAME (A=B)(B=C)(C=A)\", or equivalently, \"/RENAME (A B C=B C A)\"."
msgstr ""
#: src/get.c:497
msgid "`=' expected after variable list."
msgstr ""
#: src/get.c:504
#, c-format
msgid ""
"Number of variables on left side of `=' (%d) do not match number of "
"variables on right side (%d), in parenthesized group %d of RENAME subcommand."
msgstr ""
#: src/get.c:522
#, c-format
msgid "Duplicate variables name %s."
msgstr ""
#: src/get.c:545
msgid ""
"\n"
"Variables in dictionary:\n"
msgstr ""
#: src/get.c:659
msgid "The BY subcommand may be given once at most."
msgstr ""
#: src/get.c:726
msgid "The active file may not be specified more than once."
msgstr ""
#: src/get.c:735
msgid "Cannot specify the active file since no active file has been defined."
msgstr ""
#: src/get.c:767
msgid ""
"IN, FIRST, and LAST subcommands may not occur before the first FILE or TABLE."
msgstr ""
#: src/get.c:799
#, c-format
msgid "Multiple %s subcommands for a single FILE or TABLE."
msgstr ""
#: src/get.c:809
#, c-format
msgid "Duplicate variable name %s while creating %s variable."
msgstr ""
#: src/get.c:823
msgid ""
"RENAME, KEEP, and DROP subcommands may not occur before the first FILE or "
"TABLE."
msgstr ""
#: src/get.c:847
msgid "The BY subcommand is required when a TABLE subcommand is given."
msgstr ""
#: src/get.c:868
#, c-format
msgid "File %s lacks BY variable %s."
msgstr ""
#: src/get.c:1386
#, c-format
msgid ""
"Variable %s in file %s (%s) has different type or width from the same "
"variable in earlier file (%s)."
msgstr ""
#: src/get.c:1438
msgid "expecting COMM or TAPE"
msgstr ""
#: src/get.c:1482
msgid "IMPORT translation table from file to memory:\n"
msgstr ""
#: src/inpt-pgm.c:81
msgid "No matching INPUT PROGRAM command."
msgstr ""
#: src/inpt-pgm.c:86
msgid ""
"No data-input or transformation commands specified between INPUT PROGRAM and "
"END INPUT PROGRAM."
msgstr ""
#: src/inpt-pgm.c:302 src/inpt-pgm.c:445
msgid ""
"This command may only be executed between INPUT PROGRAM and END INPUT "
"PROGRAM."
msgstr ""
#: src/inpt-pgm.c:361
msgid "COLUMN subcommand multiply specified."
msgstr ""
#: src/inpt-pgm.c:375
msgid "expecting file handle name"
msgstr ""
#: src/inpt-pgm.c:418
msgid ""
"REREAD: Column numbers must be positive finite numbers. Column set to 1."
msgstr ""
#: src/matrix-data.c:204
msgid "VARIABLES subcommand multiply specified."
msgstr ""
#: src/matrix-data.c:219
msgid "VARNAME_ cannot be explicitly specified on VARIABLES."
msgstr ""
#: src/matrix-data.c:285
msgid "in FORMAT subcommand"
msgstr ""
#: src/matrix-data.c:296
msgid "SPLIT subcommand multiply specified."
msgstr ""
#: src/matrix-data.c:303
msgid "in SPLIT subcommand"
msgstr ""
#: src/matrix-data.c:312
msgid "Split variable may not be named ROWTYPE_ or VARNAME_."
msgstr ""
#: src/matrix-data.c:348
#, c-format
msgid "Split variable %s is already another type."
msgstr ""
#: src/matrix-data.c:363
msgid "FACTORS subcommand multiply specified."
msgstr ""
#: src/matrix-data.c:378
#, c-format
msgid "Factor variable %s is already another type."
msgstr ""
#: src/matrix-data.c:393
msgid "CELLS subcommand multiply specified."
msgstr ""
#: src/matrix-data.c:399 src/matrix-data.c:418
msgid "expecting positive integer"
msgstr ""
#: src/matrix-data.c:412
msgid "N subcommand multiply specified."
msgstr ""
#: src/matrix-data.c:433
msgid "CONTENTS subcommand multiply specified."
msgstr ""
#: src/matrix-data.c:453
msgid "Nested parentheses not allowed."
msgstr ""
#: src/matrix-data.c:463
msgid "Mismatched right parenthesis (`(')."
msgstr ""
#: src/matrix-data.c:468
msgid "Empty parentheses not allowed."
msgstr ""
#: src/matrix-data.c:481 src/matrix-data.c:489
msgid "in CONTENTS subcommand"
msgstr ""
#: src/matrix-data.c:496
#, c-format
msgid "Content multiply specified for %s."
msgstr ""
#: src/matrix-data.c:513
msgid "Missing right parenthesis."
msgstr ""
#: src/matrix-data.c:533
msgid "Missing VARIABLES subcommand."
msgstr ""
#: src/matrix-data.c:539
msgid ""
"CONTENTS subcommand not specified: assuming file contains only CORR matrix."
msgstr ""
#: src/matrix-data.c:549
msgid ""
"Missing CELLS subcommand. CELLS is required when ROWTYPE_ is not given in "
"the data and factors are present."
msgstr ""
#: src/matrix-data.c:557
msgid "Split file values must be present in the data when ROWTYPE_ is present."
msgstr ""
#: src/matrix-data.c:613
msgid "No continuous variables specified."
msgstr ""
#: src/matrix-data.c:1024
#, c-format
msgid "End of line expected %s while reading %s."
msgstr ""
#: src/matrix-data.c:1210
#, c-format
msgid "expecting value for %s %s"
msgstr ""
#: src/matrix-data.c:1360
#, c-format
msgid "Syntax error expecting SPLIT FILE value %s."
msgstr ""
#: src/matrix-data.c:1369
#, c-format
msgid "Expecting value %g for %s."
msgstr ""
#: src/matrix-data.c:1408 src/matrix-data.c:1821
#, c-format
msgid "Syntax error expecting factor value %s."
msgstr ""
#: src/matrix-data.c:1417
#, c-format
msgid "Syntax error expecting value %g for %s %s."
msgstr ""
#: src/matrix-data.c:1624
#, c-format
msgid "Syntax error %s expecting SPLIT FILE value."
msgstr ""
#: src/matrix-data.c:1735
#, c-format
msgid ""
"Expected %d lines of data for %s content; actually saw %d lines. No data "
"will be output for this content."
msgstr ""
#: src/matrix-data.c:1766
#, c-format
msgid "Multiply specified ROWTYPE_ %s."
msgstr ""
#: src/matrix-data.c:1771
#, c-format
msgid "Syntax error %s expecting ROWTYPE_ string."
msgstr ""
#: src/matrix-data.c:1790
#, c-format
msgid "Syntax error %s."
msgstr ""
#: src/matrix-data.c:1936
#, c-format
msgid "Duplicate specification for %s."
msgstr ""
#: src/matrix-data.c:1948
#, c-format
msgid "Too many rows of matrix data for %s."
msgstr ""
#: src/matrix-data.c:1993
#, c-format
msgid "Syntax error expecting value for %s %s."
msgstr ""
#: src/pfm-read.c:107
#, c-format
msgid "portable file %s corrupt at offset %ld: "
msgstr ""
#: src/pfm-read.c:126 src/pfm-write.c:499
#, c-format
msgid "%s: Closing portable file: %s."
msgstr ""
#: src/lexer.c:948 src/pfm-read.c:150 src/repeat.c:227
msgid "Unexpected end of file."
msgstr ""
#: src/pfm-read.c:158
msgid "Bad line end."
msgstr ""
#: src/pfm-read.c:239
#, c-format
msgid "Cannot read file %s as portable file: already opened for %s."
msgstr ""
#: src/pfm-read.c:245
#, c-format
msgid "%s: Opening portable-file handle %s for reading."
msgstr ""
#: src/pfm-read.c:253
#, c-format
msgid ""
"An error occurred while opening \"%s\" for reading as a portable file: %s."
msgstr ""
#. F
#: src/pfm-read.c:287
msgid "Data record expected."
msgstr ""
#: src/pfm-read.c:289
msgid "Read portable-file dictionary successfully."
msgstr ""
#. Come here on unsuccessful completion.
#: src/pfm-read.c:298
msgid "Error reading portable-file dictionary."
msgstr ""
#. /
#: src/pfm-read.c:396
msgid "Missing numeric terminator."
msgstr ""
#: src/pfm-read.c:433
msgid "Bad integer format."
msgstr ""
#: src/pfm-read.c:463
#, c-format
msgid "Bad string length %d."
msgstr ""
#: src/pfm-read.c:562
#, c-format
msgid "Bad date string length %d."
msgstr ""
#. 0
#. 9
#: src/pfm-read.c:566
msgid "Bad character in date."
msgstr ""
#: src/pfm-read.c:586
#, c-format
msgid "Bad time string length %d."
msgstr ""
#. 0
#. 9
#: src/pfm-read.c:590
msgid "Bad character in time."
msgstr ""
#: src/pfm-read.c:640
#, c-format
msgid "%s: Bad format specifier byte %d."
msgstr ""
#: src/pfm-read.c:649 src/sfm-read.c:993 src/sfm-read.c:1003
#, c-format
msgid "%s: Bad format specifier byte (%d)."
msgstr ""
#: src/pfm-read.c:651
#, c-format
msgid "%s variable %s has %s format specifier %s."
msgstr ""
#: src/pfm-read.c:652 src/print.c:631 src/sfm-read.c:1007
msgid "String"
msgstr ""
#: src/pfm-read.c:652 src/print.c:631 src/sfm-read.c:1007
msgid "Numeric"
msgstr ""
#. 4
#: src/pfm-read.c:690
msgid "Expected variable count record."
msgstr ""
#: src/pfm-read.c:694
#, c-format
msgid "Invalid number of variables %d."
msgstr ""
#: src/pfm-read.c:704
#, c-format
msgid "Unexpected flag value %d."
msgstr ""
#. 7
#: src/pfm-read.c:728
msgid "Expected variable record."
msgstr ""
#: src/pfm-read.c:734
#, c-format
msgid "Invalid variable width %d."
msgstr ""
#: src/pfm-read.c:752
#, c-format
msgid "position %d: Variable name has %u characters."
msgstr ""
#. A
#. Z
#. @
#: src/pfm-read.c:756
#, c-format
msgid "position %d: Variable name begins with invalid character."
msgstr ""
#: src/pfm-read.c:760
#, c-format
msgid "position %d: Variable name begins with lowercase letter %c."
msgstr ""
#: src/pfm-read.c:773
#, c-format
msgid "position %d: Variable name character %d is lowercase letter %c."
msgstr ""
#: src/pfm-read.c:783
#, c-format
msgid "position %d: character `\\%03o' is not valid in a variable name."
msgstr ""
#: src/pfm-read.c:794
#, c-format
msgid "Duplicate variable name %s."
msgstr ""
#: src/pfm-read.c:838
#, c-format
msgid "Bad missing values for %s."
msgstr ""
#: src/pfm-read.c:860
#, c-format
msgid "Weighting variable %s not present in dictionary."
msgstr ""
#: src/pfm-read.c:928
#, c-format
msgid "Unknown variable %s while parsing value labels."
msgstr ""
#: src/pfm-read.c:931
#, c-format
msgid ""
"Cannot assign value labels to %s and %s, which have different variable types "
"or widths."
msgstr ""
#: src/pfm-read.c:978
#, c-format
msgid "Duplicate label for value %g for variable %s."
msgstr ""
#: src/pfm-read.c:981
#, c-format
msgid "Duplicate label for value `%.*s' for variable %s."
msgstr ""
#: src/pfm-read.c:1053
msgid "End of file midway through case."
msgstr ""
#: src/pfm-read.c:1063
msgid "reading as a portable file"
msgstr ""
#: src/pfm-write.c:72
#, c-format
msgid "Cannot write file %s as portable file: already opened for %s."
msgstr ""
#: src/pfm-write.c:78
#, c-format
msgid "%s: Opening portable-file handle %s for writing."
msgstr ""
#: src/pfm-write.c:88
#, c-format
msgid ""
"An error occurred while opening \"%s\" for writing as a portable file: %s."
msgstr ""
#: src/pfm-write.c:124
msgid "Wrote portable-file header successfully."
msgstr ""
#: src/pfm-write.c:129
msgid "Error writing portable-file header."
msgstr ""
#: src/pfm-write.c:169
#, c-format
msgid "%s: Writing portable file: %s."
msgstr ""
#: src/pfm-write.c:508
msgid "writing as a portable file"
msgstr ""
#: src/sfm-read.c:188
msgid "corrupt system file: "
msgstr ""
#: src/sfm-read.c:204 src/sfm-write.c:744
#, c-format
msgid "%s: Closing system file: %s."
msgstr ""
#: src/sfm-read.c:277
#, c-format
msgid "Cannot read file %s as system file: already opened for %s."
msgstr ""
#: src/sfm-read.c:282
#, c-format
msgid "%s: Opening system-file handle %s for reading."
msgstr ""
#: src/sfm-read.c:290
#, c-format
msgid ""
"An error occurred while opening \"%s\" for reading as a system file: %s."
msgstr ""
#: src/sfm-read.c:324
#, c-format
msgid ""
"%s: Weighting variable may not be a continuation of a long string variable."
msgstr ""
#: src/sfm-read.c:327
#, c-format
msgid "%s: Weighting variable may not be a string variable."
msgstr ""
#: src/sfm-read.c:352
#, c-format
msgid ""
"%s: Orphaned variable index record (type 4). Type 4 records must always "
"immediately follow type 3 records."
msgstr ""
#: src/sfm-read.c:407
#, c-format
msgid "%s: Unrecognized record type 7, subtype %d encountered in system file."
msgstr ""
#: src/sfm-read.c:431
#, c-format
msgid "%s: Unrecognized record type %d."
msgstr ""
#. Come here on successful completion.
#: src/sfm-read.c:437
msgid "Read system-file dictionary successfully."
msgstr ""
#. Come here on unsuccessful completion.
#: src/sfm-read.c:447
msgid "Error reading system-file header."
msgstr ""
#: src/sfm-read.c:471
#, c-format
msgid ""
"%s: Bad size (%d) or count (%d) field on record type 7, subtype 3.\tExpected "
"size %d, count 8."
msgstr ""
#: src/sfm-read.c:485
#, c-format
msgid ""
"%s: Floating-point representation in system file is not IEEE-754. PSPP "
"cannot convert between floating-point formats."
msgstr ""
#: src/sfm-read.c:506
#, c-format
msgid ""
"%s: File-indicated endianness (%s) does not match endianness intuited from "
"file header (%s)."
msgstr ""
#: src/sfm-read.c:508 src/sfm-read.c:509
msgid "big-endian"
msgstr ""
#: src/sfm-read.c:508 src/sfm-read.c:509
msgid "little-endian"
msgstr ""
#: src/sfm-read.c:510
msgid "unknown"
msgstr ""
#: src/sfm-read.c:514
#, c-format
msgid "%s: File-indicated character representation code (%s) is not ASCII."
msgstr ""
#: src/sfm-read.c:516
msgid "DEC Kanji"
msgstr ""
#: src/data-out.c:145 src/sfm-read.c:516 src/sysfile-info.c:114
msgid "Unknown"
msgstr ""
#: src/sfm-read.c:535
#, c-format
msgid ""
"%s: Bad size (%d) or count (%d) field on record type 7, subtype 4.\tExpected "
"size %d, count 8."
msgstr ""
#: src/sfm-read.c:550
#, c-format
msgid ""
"%s: File-indicated value is different from internal value for at least one "
"of the three system values. SYSMIS: indicated %g, expected %g; HIGHEST: %g, "
"%g; LOWEST: %g, %g."
msgstr ""
#: src/sfm-read.c:594
#, c-format
msgid ""
"%s: Bad magic. Proper system files begin with the four characters `$FL2'. "
"This file will not be read."
msgstr ""
#: src/sfm-read.c:637
#, c-format
msgid ""
"%s: File layout code has unexpected value %d. Value should be 2, in big-"
"endian or little-endian format."
msgstr ""
#: src/sfm-read.c:653
#, c-format
msgid "%s: Number of elements per case (%d) is not between 1 and %d."
msgstr ""
#: src/sfm-read.c:660
#, c-format
msgid ""
"%s: Index of weighting variable (%d) is not between 0 and number of elements "
"per case (%d)."
msgstr ""
#: src/sfm-read.c:666
#, c-format
msgid "%s: Number of cases in file (%ld) is not between -1 and %d."
msgstr ""
#: src/sfm-read.c:671
#, c-format
msgid "%s: Compression bias (%g) is not the usual value of 100."
msgstr ""
#: src/sfm-read.c:767
#, c-format
msgid "%s: position %d: Bad record type (%d); the expected value was 2."
msgstr ""
#: src/sfm-read.c:776
#, c-format
msgid ""
"%s: position %d: String variable does not have proper number of continuation "
"records."
msgstr ""
#: src/sfm-read.c:784
#, c-format
msgid "%s: position %d: Superfluous long string continuation record."
msgstr ""
#: src/sfm-read.c:789
#, c-format
msgid "%s: position %d: Bad variable type code %d."
msgstr ""
#: src/sfm-read.c:792
#, c-format
msgid "%s: position %d: Variable label indicator field is not 0 or 1."
msgstr ""
#: src/sfm-read.c:796
#, c-format
msgid ""
"%s: position %d: Missing value indicator field is not -3, -2, 0, 1, 2, or 3."
msgstr ""
#: src/sfm-read.c:809
#, c-format
msgid "%s: position %d: Variable name begins with invalid character."
msgstr ""
#: src/sfm-read.c:812
#, c-format
msgid "%s: position %d: Variable name begins with lowercase letter %c."
msgstr ""
#: src/sfm-read.c:815
#, c-format
msgid ""
"%s: position %d: Variable name begins with octothorpe (`#'). Scratch "
"variables should not appear in system files."
msgstr ""
#: src/sfm-read.c:829
#, c-format
msgid "%s: position %d: Variable name character %d is lowercase letter %c."
msgstr ""
#: src/sfm-read.c:837
#, c-format
msgid ""
"%s: position %d: character `\\%03o' (%c) is not valid in a variable name."
msgstr ""
#: src/sfm-read.c:877
#, c-format
msgid "%s: Variable %s indicates variable label of invalid length %d."
msgstr ""
#: src/sfm-read.c:893
#, c-format
msgid "%s: Long string variable %s may not have missing values."
msgstr ""
#: src/sfm-read.c:917
#, c-format
msgid ""
"%s: String variable %s may not have missing values specified as a range."
msgstr ""
#: src/sfm-read.c:954
#, c-format
msgid "%s: Long string continuation records omitted at end of dictionary."
msgstr ""
#: src/sfm-read.c:957
#, c-format
msgid ""
"%s: System file header indicates %d variable positions but %d were read from "
"file."
msgstr ""
#: src/sfm-read.c:966
#, c-format
msgid "%s: Duplicate variable name `%s' within system file."
msgstr ""
#: src/sfm-read.c:1006
#, c-format
msgid "%s: %s variable %s has %s format specifier %s."
msgstr ""
#: src/sfm-read.c:1085
#, c-format
msgid ""
"%s: Variable index record (type 4) does not immediately follow value label "
"record (type 3) as it ought."
msgstr ""
#: src/sfm-read.c:1095
#, c-format
msgid ""
"%s: Number of variables associated with a value label (%d) is not between 1 "
"and the number of variables (%d)."
msgstr ""
#: src/sfm-read.c:1113
#, c-format
msgid ""
"%s: Variable index associated with value label (%d) is not between 1 and the "
"number of values (%d)."
msgstr ""
#: src/sfm-read.c:1120
#, c-format
msgid ""
"%s: Variable index associated with value label (%d) refers to a continuation "
"of a string variable, not to an actual variable."
msgstr ""
#: src/sfm-read.c:1124
#, c-format
msgid "%s: Value labels are not allowed on long string variables (%s)."
msgstr ""
#: src/sfm-read.c:1134
#, c-format
msgid ""
"%s: Variables associated with value label are not all of identical type. "
"Variable %s has %s type, but variable %s has %s type."
msgstr ""
#: src/sfm-read.c:1177
#, c-format
msgid "%s: File contains duplicate label for value %g for variable %s."
msgstr ""
#: src/sfm-read.c:1180
#, c-format
msgid "%s: File contains duplicate label for value `%.*s' for variable %s."
msgstr ""
#: src/sfm-read.c:1220 src/sfm-read.c:1498
#, c-format
msgid "%s: Reading system file: %s."
msgstr ""
#: src/sfm-read.c:1222 src/sfm-read.c:1403 src/sfm-read.c:1444
#, c-format
msgid "%s: Unexpected end of file."
msgstr ""
#: src/sfm-read.c:1239
#, c-format
msgid "%s: System file contains multiple type 6 (document) records."
msgstr ""
#: src/sfm-read.c:1245
#, c-format
msgid "%s: Number of document lines (%ld) must be greater than 0."
msgstr ""
#: src/sfm-read.c:1266
msgid "dictionary:\n"
msgstr ""
#. debug_printf (("(indices:%d,%d)", v->index, v->foo));
#: src/sfm-read.c:1275
msgid "num"
msgstr ""
#: src/sfm-read.c:1276
msgid "str"
msgstr ""
#. debug_printf (("(get.fv:%d,%d)", v->get.fv, v->get.nv));
#: src/sfm-read.c:1280
msgid "left"
msgstr ""
#: src/sfm-read.c:1280
msgid "right"
msgstr ""
#: src/sfm-read.c:1286
msgid "none"
msgstr ""
#: src/sfm-read.c:1290
msgid "one"
msgstr ""
#: src/sfm-read.c:1294
msgid "two"
msgstr ""
#: src/sfm-read.c:1298
msgid "three"
msgstr ""
#: src/descript.q:166 src/sfm-read.c:1302
msgid "range"
msgstr ""
#: src/sfm-read.c:1306
msgid "low"
msgstr ""
#: src/sfm-read.c:1310
msgid "high"
msgstr ""
#: src/sfm-read.c:1314
msgid "range+1"
msgstr ""
#: src/sfm-read.c:1318
msgid "low+1"
msgstr ""
#: src/sfm-read.c:1322
msgid "high+1"
msgstr ""
#: src/sfm-read.c:1356
#, c-format
msgid "%s: Error reading file: %s."
msgstr ""
#: src/sfm-read.c:1394
#, c-format
msgid "%s: Compressed data is corrupted. Data ends partway through a case."
msgstr ""
#: src/sfm-read.c:1500
#, c-format
msgid "%s: Partial record at end of system file."
msgstr ""
#: src/sfm-read.c:1538
msgid "reading as a system file"
msgstr ""
#: src/sfm-write.c:114
#, c-format
msgid "Cannot write file %s as system file: already opened for %s."
msgstr ""
#: src/sfm-write.c:119
#, c-format
msgid "%s: Opening system-file handle %s for writing."
msgstr ""
#: src/sfm-write.c:129
#, c-format
msgid ""
"An error occurred while opening \"%s\" for writing as a system file: %s."
msgstr ""
#: src/sfm-write.c:182
msgid "Wrote system-file header successfully."
msgstr ""
#: src/sfm-write.c:187
msgid "Error writing system-file header."
msgstr ""
#: src/sfm-write.c:608
#, c-format
msgid "%s: Writing system file: %s."
msgstr ""
#: src/sfm-write.c:754
msgid "writing as a system file"
msgstr ""
#: src/sysfile-info.c:96
msgid "File:"
msgstr ""
#: src/sysfile-info.c:98
msgid "Label:"
msgstr ""
#: src/sysfile-info.c:100
msgid "No label."
msgstr ""
#: src/sysfile-info.c:101
msgid "Created:"
msgstr ""
#: src/sysfile-info.c:104
msgid "Endian:"
msgstr ""
#: src/sysfile-info.c:106
msgid "Big."
msgstr ""
#: src/sysfile-info.c:107
msgid "Little."
msgstr ""
#: src/sysfile-info.c:108
msgid "<internal error>"
msgstr ""
#: src/sysfile-info.c:109
msgid "Variables:"
msgstr ""
#: src/sysfile-info.c:112
msgid "Cases:"
msgstr ""
#: src/sysfile-info.c:115
msgid "Type:"
msgstr ""
#: src/sysfile-info.c:116
msgid "System File."
msgstr ""
#: src/sysfile-info.c:117
msgid "Weight:"
msgstr ""
#: src/sysfile-info.c:119
msgid "Not weighted."
msgstr ""
#: src/sysfile-info.c:120
msgid "Mode:"
msgstr ""
#: src/sysfile-info.c:122
#, c-format
msgid "Compression %s."
msgstr ""
#: src/sysfile-info.c:122
msgid "on"
msgstr ""
#: src/sysfile-info.c:122
msgid "off"
msgstr ""
#: src/sysfile-info.c:131 src/sysfile-info.c:376
msgid "Description"
msgstr ""
#: src/sysfile-info.c:132 src/sysfile-info.c:373
msgid "Position"
msgstr ""
#: src/sysfile-info.c:192
msgid "The active file does not have a file label."
msgstr ""
#: src/sysfile-info.c:195
msgid "File label:"
msgstr ""
#: src/sysfile-info.c:257
msgid "No variables to display."
msgstr ""
#: src/sysfile-info.c:282
msgid "Macros not supported."
msgstr ""
#: src/sysfile-info.c:290
msgid "The active file dictionary does not contain any documents."
msgstr ""
#: src/sysfile-info.c:298
msgid "Documents in the active file:"
msgstr ""
#: src/sysfile-info.c:378 src/sysfile-info.c:538 src/vfm.c:1135
msgid "Label"
msgstr ""
#: src/sysfile-info.c:450
#, c-format
msgid "Format: %s"
msgstr ""
#: src/sysfile-info.c:457
#, c-format
msgid "Print Format: %s"
msgstr ""
#: src/sysfile-info.c:460
#, c-format
msgid "Write Format: %s"
msgstr ""
#: src/sysfile-info.c:468
msgid "Missing Values: "
msgstr ""
#: src/crosstabs.q:1233 src/crosstabs.q:1260 src/crosstabs.q:1280
#: src/crosstabs.q:1302 src/frequencies.q:895 src/frequencies.q:1012
#: src/sysfile-info.c:537 src/vfm.c:1134
msgid "Value"
msgstr ""
#: src/sysfile-info.c:598
msgid "No vectors defined."
msgstr ""
#: src/sysfile-info.c:613
msgid "Vector"
msgstr ""
#: src/command.c:169
#, c-format
msgid "%s not allowed inside FILE TYPE/END FILE TYPE."
msgstr ""
#: src/command.c:173
#, c-format
msgid "%s not allowed inside FILE TYPE GROUPED/END FILE TYPE."
msgstr ""
#: src/command.c:176
msgid "RECORD TYPE must be the first command inside a FILE TYPE structure."
msgstr ""
#: src/command.c:221
msgid "This line does not begin with a valid command name."
msgstr ""
#: src/command.c:231
#, c-format
msgid "%s is not yet implemented."
msgstr ""
#: src/command.c:249
#, c-format
msgid ""
"%s is not allowed (1) before a command to specify the input program, such as "
"DATA LIST, (2) between FILE TYPE and END FILE TYPE, (3) between INPUT "
"PROGRAM and END INPUT PROGRAM."
msgstr ""
#: src/command.c:253
#, c-format
msgid "%s is not allowed within an input program."
msgstr ""
#: src/command.c:254 src/command.c:255
#, c-format
msgid "%s is only allowed within an input program."
msgstr ""
#: src/command.c:264
#, c-format
msgid "%s command beginning\n"
msgstr ""
#: src/command.c:300
#, c-format
msgid ""
"%s command completed\n"
"\n"
msgstr ""
#: src/command.c:315
msgid "The identifier(s) specified do not form a valid command name:"
msgstr ""
#: src/command.c:318
msgid "The identifier(s) specified do not form a complete command name:"
msgstr ""
#: src/command.c:442
msgid ""
"This command is not accepted in a syntax file. Instead, use FINISH to "
"terminate a syntax file."
msgstr ""
#: src/command.c:460
msgid ""
"This command is not executed in interactive mode. Instead, PSPP drops down "
"to the command prompt. Use EXIT if you really want to quit."
msgstr ""
#: src/command.c:551
msgid "The sentinel may not be the empty string."
msgstr ""
#: src/command.c:609 src/command.c:740
msgid "This command not allowed when the SAFER option is set."
msgstr ""
#: src/command.c:622
#, c-format
msgid "Error removing `%s': %s."
msgstr ""
#: src/command.c:672
#, c-format
msgid "Couldn't fork: %s."
msgstr ""
#: src/command.c:713
#, c-format
msgid "Error executing command: %s."
msgstr ""
#: src/command.c:763
msgid "No operating system support for this command."
msgstr ""
#: src/command.c:792
msgid "This command is not valid in a syntax file."
msgstr ""
#: src/getline.c:160
#, c-format
msgid "Can't find `%s' in include file search path."
msgstr ""
#: src/getline.c:315
#, c-format
msgid "%s: Opening as syntax file."
msgstr ""
#: src/getline.c:320
#, c-format
msgid "Opening `%s': %s."
msgstr ""
#: src/getline.c:329 src/html.c:334 src/postscript.c:1480
#, c-format
msgid "Reading `%s': %s."
msgstr ""
#: src/getline.c:387
#, c-format
msgid "Closing `%s': %s."
msgstr ""
#: src/lexer.c:216
#, c-format
msgid "%s does not form a valid number."
msgstr ""
#: src/lexer.c:334
#, c-format
msgid "Bad character in input: `%c'."
msgstr ""
#: src/lexer.c:336
#, c-format
msgid "Bad character in input: `\\%o'."
msgstr ""
#: src/lexer.c:357
msgid "Syntax error at end of file."
msgstr ""
#: src/lexer.c:367
#, c-format
msgid "Syntax error %s at `%s'."
msgstr ""
#: src/lexer.c:370
#, c-format
msgid "Syntax error at `%s'."
msgstr ""
#: src/lexer.c:473
#, c-format
msgid "expecting `%s'"
msgstr ""
#: src/lexer.c:490
#, c-format
msgid "expecting %s"
msgstr ""
#: src/lexer.c:504
msgid "expecting string"
msgstr ""
#: src/lexer.c:518
msgid "expecting integer"
msgstr ""
#: src/lexer.c:532
msgid "expecting number"
msgstr ""
#: src/lexer.c:546
msgid "expecting identifier"
msgstr ""
#: src/lexer.c:682
msgid "The rest of this command has been discarded."
msgstr ""
#: src/lexer.c:822 src/print.c:1193
msgid "<ERROR>"
msgstr ""
#: src/lexer.c:974
msgid "binary"
msgstr ""
#: src/lexer.c:974
msgid "octal"
msgstr ""
#: src/lexer.c:974
msgid "hex"
msgstr ""
#: src/lexer.c:988
#, c-format
msgid "String of %s digits has %d characters, which is not a multiple of %d."
msgstr ""
#: src/lexer.c:1017
#, c-format
msgid "`%c' is not a valid %s digit."
msgstr ""
#: src/lexer.c:1048
msgid "Unterminated string constant."
msgstr ""
#: src/lexer.c:1120
#, c-format
msgid "String exceeds 255 characters in length (%d characters)."
msgstr ""
#: src/lexer.c:1135
msgid ""
"Sorry, literal strings may not contain null characters. Replacing with "
"spaces."
msgstr ""
#: src/cmdline.c:111
msgid "-f not yet implemented\n"
msgstr ""
#: src/cmdline.c:129
msgid "-n not yet implemented\n"
msgstr ""
#: src/cmdline.c:140
msgid "-p not yet implemented\n"
msgstr ""
#: src/cmdline.c:153
msgid ""
"\n"
"Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.\n"
"This is free software; see the source for copying conditions. There is NO\n"
"WARRANTY; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
"\n"
"Written by Ben Pfaff <blp@gnu.org>."
msgstr ""
#: src/cmdline.c:213
#, c-format
msgid ""
"PSPP, a program for statistical analysis of sample data.\n"
"\n"
"Usage: %s [OPTION]... FILE...\n"
"\n"
"If a long option shows an argument as mandatory, then it is mandatory\n"
"for the equivalent short option also. Similarly for optional arguments.\n"
"\n"
"Configuration:\n"
" -B, --config-dir=DIR set configuration directory to DIR\n"
" -o, --device=DEVICE select output driver DEVICE and disable "
"defaults\n"
" -d, --define=VAR[=VALUE] set environment variable VAR to VALUE, or empty\n"
" -u, --undef=VAR undefine environment variable VAR\n"
"\n"
"Input and output:\n"
" -f, --out-file=FILE send output to FILE (overwritten)\n"
" -p, --pipe read script from stdin, send output to stdout\n"
" -I-, --no-include clear include path\n"
" -I, --include=DIR append DIR to include path\n"
" -c, --command=COMMAND execute COMMAND before .pspp/rc at startup\n"
"\n"
"Language modifiers:\n"
" -i, --interactive interpret scripts in interactive mode\n"
" -n, --edit just check syntax; don't actually run the code\n"
" -r, --no-statrc disable execution of .pspp/rc at startup\n"
" -s, --safer don't allow some unsafe operations\n"
"\n"
"Informative output:\n"
" -h, --help print this help, then exit\n"
" -l, --list print a list of known driver classes, then exit\n"
" -V, --version show PSPP version, then exit\n"
" -v, --verbose increments verbosity level\n"
"\n"
"Non-option arguments:\n"
" FILE1 FILE2 run FILE1, clear the dictionary, run FILE2\n"
" FILE1 + FILE2 run FILE1 then FILE2 without clearing "
"dictionary\n"
" KEY=VALUE overrides macros in output initialization file\n"
"\n"
msgstr ""
#: src/cmdline.c:246
msgid ""
"\n"
"Report bugs to <bug-gnu-pspp@gnu.org>.\n"
msgstr ""
#: src/error.c:130
msgid "Terminating NOW due to a fatal error!"
msgstr ""
#: src/error.c:207
msgid "Terminating execution of syntax file due to error."
msgstr ""
#: src/error.c:209
#, c-format
msgid "Errors (%d) exceeds limit (%d)."
msgstr ""
#: src/error.c:212
#, c-format
msgid "Warnings (%d) exceed limit (%d)."
msgstr ""
#: src/error.c:279
msgid "fatal"
msgstr ""
#. SE
#: src/error.c:282 src/error.c:289 src/error.c:292
msgid "warning"
msgstr ""
#. SW
#: src/error.c:283 src/error.c:293
msgid "note"
msgstr ""
#. SM
#: src/error.c:285 src/error.c:286
msgid "installation error"
msgstr ""
#: src/error.c:509
msgid ""
"\n"
"\t*********************\n"
"\t* INDUCING SEGFAULT *\n"
"\t*********************\n"
msgstr ""
#: src/glob.c:183
msgid ""
"Your machine does not appear to be either big- or little-endian. At the "
"moment, PSPP only supports machines of these standard endiannesses. If you "
"want to hack in others, contact the author."
msgstr ""
#: src/glob.c:267
msgid "data> "
msgstr ""
#: src/glob.c:328
msgid "Specify a terminal type with `setenv TERM <yourtype>'."
msgstr ""
#: src/glob.c:339
msgid "Could not access the termcap data base."
msgstr ""
#: src/glob.c:341
#, c-format
msgid "Terminal type `%s' is not defined."
msgstr ""
#: src/glob.c:342
msgid "Assuming screen of size 79x25."
msgstr ""
#: src/glob.c:377
msgid "Jan"
msgstr ""
#: src/glob.c:377
msgid "Feb"
msgstr ""
#: src/glob.c:377
msgid "Mar"
msgstr ""
#: src/glob.c:377
msgid "Apr"
msgstr ""
#: src/glob.c:377
msgid "May"
msgstr ""
#: src/glob.c:377
msgid "Jun"
msgstr ""
#: src/glob.c:378
msgid "Jul"
msgstr ""
#: src/glob.c:378
msgid "Aug"
msgstr ""
#: src/glob.c:378
msgid "Sep"
msgstr ""
#: src/glob.c:378
msgid "Oct"
msgstr ""
#: src/glob.c:378
msgid "Nov"
msgstr ""
#: src/glob.c:378
msgid "Dec"
msgstr ""
#: src/main.c:65
msgid "Error initializing output drivers."
msgstr ""
#: src/main.c:123
msgid "This command not executed."
msgstr ""
#: src/main.c:127
msgid ""
"Skipping the rest of this command. Part of this command may have been "
"executed."
msgstr ""
#: src/main.c:132
msgid ""
"Skipping the rest of this command. This command was fully executed up to "
"this point."
msgstr ""
#: src/main.c:137
msgid ""
"Trailing garbage was encountered following this command. The command was "
"fully executed to this point."
msgstr ""
#: src/ascii.c:216
#, c-format
msgid "ASCII driver initializing as `%s'..."
msgstr ""
#: src/ascii.c:273
#, c-format
msgid ""
"ascii driver: Area of page excluding margins and headers must be at least 59 "
"characters wide by 15 lines long. Page as configured is only %d characters "
"by %d lines."
msgstr ""
#: src/ascii.c:378 src/html.c:102 src/postscript.c:474
#, c-format
msgid "%s: Initialization complete."
msgstr ""
#: src/ascii.c:389 src/html.c:114 src/postscript.c:487
#, c-format
msgid "%s: Beginning closing..."
msgstr ""
#: src/ascii.c:399 src/html.c:119 src/postscript.c:506
#, c-format
msgid "%s: Finished closing."
msgstr ""
#: src/ascii.c:460
#, c-format
msgid ""
"Bad index value for `box' key: syntax is box[INDEX], 0 <= INDEX < %d "
"decimal, with INDEX expressed in base 4."
msgstr ""
#: src/ascii.c:466
#, c-format
msgid "Duplicate value for key `%s'."
msgstr ""
#: src/ascii.c:476
#, c-format
msgid "Unknown configuration parameter `%s' for ascii device driver."
msgstr ""
#: src/ascii.c:489
#, c-format
msgid ""
"Unknown character set `%s'. Valid character sets are `ascii' and `latin1'."
msgstr ""
#: src/ascii.c:498
#, c-format
msgid ""
"Unknown overstrike style `%s'. Valid overstrike styles are `single' and "
"`line'."
msgstr ""
#: src/ascii.c:507
#, c-format
msgid ""
"Unknown carriage return style `%s'. Valid carriage return styles are `cr' "
"and `bs'."
msgstr ""
#: src/ascii.c:519 src/postscript.c:695
#, c-format
msgid "Positive integer required as value for `%s'."
msgstr ""
#: src/ascii.c:550
#, c-format
msgid "Zero or positive integer required as value for `%s'."
msgstr ""
#: src/ascii.c:620 src/postscript.c:654
#, c-format
msgid "Boolean value expected for %s."
msgstr ""
#: src/ascii.c:649 src/ascii.c:664 src/ascii.c:681
#, c-format
msgid "ASCII output driver: %s: %s"
msgstr ""
#: src/ascii.c:750
#, c-format
msgid "ascii_line_horz: bad hline (%d,%d),%d out of (%d,%d)\n"
msgstr ""
#: src/ascii.c:784
#, c-format
msgid "ascii_line_vert: bad vline %d,(%d,%d) out of (%d,%d)\n"
msgstr ""
#: src/ascii.c:814
#, c-format
msgid "ascii_line_intersection: bad intsct (%d,%d) out of (%d,%d)\n"
msgstr ""
#: src/ascii.c:976
#, c-format
msgid "%s: horiz=%d, vert=%d\n"
msgstr ""
#: src/ascii.c:1148
#, c-format
msgid "Writing `%s': %s"
msgstr ""
#: src/ascii.c:1542 src/postscript.c:2116
#, c-format
msgid "%s - Page %d"
msgstr ""
#: src/data-out.c:253
msgid ""
"The N output format cannot be used to output a negative number or the system-"
"missing value."
msgstr ""
#: src/data-out.c:363
msgid ""
"Quality of zoned decimal (Z) output format code is suspect. Check your "
"results, report bugs to author."
msgstr ""
#: src/data-out.c:370
msgid "The system-missing value cannot be output as a zoned decimal number."
msgstr ""
#: src/data-out.c:383
#, c-format
msgid "Number %g too big to fit in field with format Z%d.%d."
msgstr ""
#: src/data-out.c:777
#, c-format
msgid "Time value %g too large in magnitude to convert to alphanumeric time."
msgstr ""
#: src/data-out.c:830
#, c-format
msgid "Weekday index %d does not lie between 1 and 7."
msgstr ""
#: src/data-out.c:851
#, c-format
msgid "Month index %d does not lie between 1 and 12."
msgstr ""
#: src/data-out.c:963
#, c-format
msgid ""
"Year %d cannot be represented in four digits for output formatting purposes."
msgstr ""
#: src/groff-font.c:107
#, c-format
msgid "%s: Opening Groff font file..."
msgstr ""
#: src/groff-font.c:162
msgid "Missing font name."
msgstr ""
#: src/groff-font.c:172
msgid "Missing encoding filename."
msgstr ""
#: src/groff-font.c:185
msgid "Bad spacewidth value."
msgstr ""
#: src/groff-font.c:197
msgid "Bad slant value."
msgstr ""
#: src/groff-font.c:222
#, c-format
msgid "Unknown ligature `%s'."
msgstr ""
#: src/groff-font.c:257
msgid "Unexpected end of line reading character set."
msgstr ""
#: src/groff-font.c:265
msgid "Can't use ditto mark for first character."
msgstr ""
#: src/groff-font.c:270
msgid "Can't ditto into an unnamed character."
msgstr ""
#: src/groff-font.c:287
#, c-format
msgid "Missing metrics for character `%s'."
msgstr ""
#: src/groff-font.c:296
#, c-format
msgid "Missing type for character `%s'."
msgstr ""
#: src/groff-font.c:305
#, c-format
msgid "Missing code for character `%s'."
msgstr ""
#: src/groff-font.c:324
msgid "Malformed kernpair."
msgstr ""
#: src/groff-font.c:331
msgid "Unexpected end of line reading kernpairs."
msgstr ""
#: src/groff-font.c:337
msgid "Bad kern value."
msgstr ""
#: src/groff-font.c:369
#, c-format
msgid "Font read successfully with internal name %s."
msgstr ""
#: src/groff-font.c:389
msgid "Error reading font."
msgstr ""
#: src/groff-font.c:400
msgid "installation error: Groff font error: "
msgstr ""
#: src/groff-font.c:425
#, c-format
msgid "Bad character \\%3o."
msgstr ""
#: src/groff-font.c:665
#, c-format
msgid "Groff font error: Cannot find \"%s\"."
msgstr ""
#: src/groff-font.c:730
#, c-format
msgid "%s: Opening Groff description file..."
msgstr ""
#: src/groff-font.c:746
msgid "Multiple `sizes' declarations."
msgstr ""
#: src/groff-font.c:763
msgid "Unexpected end of file. Missing 0 terminator to `sizes' command?"
msgstr ""
#: src/groff-font.c:775 src/groff-font.c:782 src/groff-font.c:795
msgid "Bad argument to `sizes'."
msgstr ""
#: src/groff-font.c:787
msgid "Bad range in argument to `sizes'."
msgstr ""
#: src/groff-font.c:816
msgid "Family name expected."
msgstr ""
#: src/groff-font.c:821
msgid "This command already specified."
msgstr ""
#: src/groff-font.c:841
#, c-format
msgid "%s: Device characteristic already defined."
msgstr ""
#: src/groff-font.c:847
#, c-format
msgid "%s: Invalid numeric format."
msgstr ""
#: src/groff-font.c:877
msgid "Missing `res', `unitwidth', and/or `sizes' line(s)."
msgstr ""
#: src/groff-font.c:903
msgid "Description file read successfully."
msgstr ""
#: src/groff-font.c:935
msgid "Error reading description file."
msgstr ""
#: src/groff-font.c:991
msgid "<<fallback>>"
msgstr ""
#: src/html.c:66
#, c-format
msgid "HTML driver initializing as `%s'..."
msgstr ""
#: src/html.c:154
#, c-format
msgid "Unknown configuration parameter `%s' for HTML device driver."
msgstr ""
#: src/html.c:240
msgid ""
"Cannot find HTML prologue. The use of `-vv' on the command line is "
"suggested as a debugging aid."
msgstr ""
#: src/html.c:245
#, c-format
msgid "%s: %s: Opening HTML prologue..."
msgstr ""
#: src/html.c:272 src/html.c:283 src/postscript.c:1372 src/postscript.c:1383
msgid "nobody"
msgstr ""
#: src/html.c:279 src/html.c:284 src/postscript.c:1379 src/postscript.c:1384
msgid "nowhere"
msgstr ""
#: src/html.c:343
#, c-format
msgid "%s: HTML prologue read successfully."
msgstr ""
#: src/html.c:347
#, c-format
msgid "%s: Error reading HTML prologue."
msgstr ""
#: src/html.c:375
#, c-format
msgid "HTML output driver: %s: %s"
msgstr ""
#: src/html.c:406 src/list.q:277
#, c-format
msgid "Cannot open first page on HTML device %s."
msgstr ""
#: src/output.c:85
msgid "Attempt to iterate driver list reentrantly."
msgstr ""
#: src/output.c:162
#, c-format
msgid "Unknown output driver `%s'."
msgstr ""
#: src/output.c:164
#, c-format
msgid "Output driver `%s' referenced but never defined."
msgstr ""
#: src/output.c:292
msgid "Cannot find output initialization file. Use `-vv' to view search path."
msgstr ""
#: src/output.c:297
#, c-format
msgid "%s: Opening device description file..."
msgstr ""
#: src/output.c:301 src/output.c:1161 src/postscript.c:1114
#, c-format
msgid "Opening %s: %s."
msgstr ""
#: src/output.c:313 src/output.c:1173 src/postscript.c:1131
#, c-format
msgid "Reading %s: %s."
msgstr ""
#: src/output.c:335 src/output.c:487
msgid "Syntax error."
msgstr ""
#: src/output.c:345 src/postscript.c:1142
#, c-format
msgid "Closing %s: %s."
msgstr ""
#: src/output.c:350
msgid "No output drivers are active."
msgstr ""
#: src/output.c:353
msgid "Device definition file read successfully."
msgstr ""
#: src/output.c:355
msgid "Error reading device definition file."
msgstr ""
#: src/output.c:459
msgid ""
"Driver classes:\n"
"\t"
msgstr ""
#: src/output.c:588
msgid "Syntax error in string constant."
msgstr ""
#: src/output.c:619
msgid "Syntax error in options."
msgstr ""
#: src/output.c:629
msgid "Syntax error in options (`=' expected)."
msgstr ""
#: src/output.c:636
msgid "Syntax error in options (value expected after `=')."
msgstr ""
#: src/output.c:708
msgid "Driver name expected."
msgstr ""
#: src/output.c:729
msgid "Class name expected."
msgstr ""
#: src/output.c:738
#, c-format
msgid "Unknown output driver class `%s'."
msgstr ""
#: src/output.c:745
#, c-format
msgid "Can't initialize output driver class `%s'."
msgstr ""
#: src/output.c:752
#, c-format
msgid "Can't initialize output driver `%s' of class `%s'."
msgstr ""
#: src/output.c:774
#, c-format
msgid "Unknown device type `%s'."
msgstr ""
#: src/output.c:786
#, c-format
msgid "Can't complete initialization of output driver `%s' of class `%s'."
msgstr ""
#: src/output.c:833
#, c-format
msgid "Can't deinitialize output driver class `%s'."
msgstr ""
#: src/output.c:906
#, c-format
msgid "Trying to find keyword `%s'...\n"
msgstr ""
#: src/output.c:1023
#, c-format
msgid "Unit \"%s\" is unknown in dimension \"%s\"."
msgstr ""
#: src/output.c:1038
#, c-format
msgid "Bad dimension \"%s\"."
msgstr ""
#: src/output.c:1064
#, c-format
msgid "`x' expected in paper size `%s'."
msgstr ""
#: src/output.c:1074
#, c-format
msgid "Trailing garbage `%s' on paper size `%s'."
msgstr ""
#: src/output.c:1123
msgid "Paper size name must not be empty."
msgstr ""
#: src/output.c:1153
msgid "Cannot find `papersize' configuration file."
msgstr ""
#: src/output.c:1157
#, c-format
msgid "%s: Opening paper size definition file..."
msgstr ""
#: src/output.c:1200
msgid "Syntax error in paper size definition."
msgstr ""
#: src/output.c:1229
msgid "Paper size definition file read successfully."
msgstr ""
#: src/output.c:1231
msgid "Error reading paper size definition file."
msgstr ""
#: src/output.c:1300
#, c-format
msgid "Error closing page on %s device of %s class."
msgstr ""
#: src/output.c:1304
#, c-format
msgid "Error opening page on %s device of %s class."
msgstr ""
#: src/postscript.c:339
#, c-format
msgid "PostScript driver initializing as `%s'..."
msgstr ""
#: src/postscript.c:463
#, c-format
msgid ""
"PostScript driver: The defined page is not long enough to hold margins and "
"headers, plus least 15 lines of the default fonts. In fact, there's only "
"room for %d lines of each font at the default size of %d.%03d points."
msgstr ""
#: src/postscript.c:592
#, c-format
msgid "Unknown configuration parameter `%s' for PostScript device driver."
msgstr ""
#: src/postscript.c:608
#, c-format
msgid ""
"Unknown orientation `%s'. Valid orientations are `portrait' and `landscape'."
msgstr ""
#: src/postscript.c:620
msgid ""
"Unknown value for `data'. Valid values are `clean7bit', `clean8bit', and "
"`binary'."
msgstr ""
#: src/postscript.c:629
msgid "Unknown value for `line-ends'. Valid values are `lf' and `crlf'."
msgstr ""
#: src/postscript.c:638
msgid "Unknown value for `line-style'. Valid values are `thick' and `double'."
msgstr ""
#: src/postscript.c:700
#, c-format
msgid ""
"Default font size must be at least 1 point (value of 1000 for key `%s')."
msgstr ""
#: src/postscript.c:732
#, c-format
msgid "Value for `%s' must be a dimension of positive length (i.e., `1in')."
msgstr ""
#: src/postscript.c:795
#, c-format
msgid "Nonnegative integer required as value for `%s'."
msgstr ""
#: src/postscript.c:925
#, c-format
msgid "%s: %s: Opening PostScript font encoding..."
msgstr ""
#: src/postscript.c:931
#, c-format
msgid ""
"PostScript driver: Cannot open encoding file `%s': %s. Substituting "
"ISOLatin1Encoding for missing encoding."
msgstr ""
#: src/postscript.c:970
msgid "PostScript driver: Invalid numeric format."
msgstr ""
#: src/postscript.c:975
#, c-format
msgid ""
"PostScript driver: Codes must be between 0 and 255. (%d is not allowed.)"
msgstr ""
#: src/postscript.c:1011
#, c-format
msgid "PostScript driver: Error closing encoding file `%s'."
msgstr ""
#: src/postscript.c:1014
#, c-format
msgid "%s: PostScript font encoding read successfully."
msgstr ""
#: src/postscript.c:1109
#, c-format
msgid "%s: %s: Opening PostScript encoding list file."
msgstr ""
#: src/postscript.c:1144
#, c-format
msgid "%s: PostScript encoding list file read successfully."
msgstr ""
#: src/postscript.c:1158
msgid "<<default encoding>>"
msgstr ""
#: src/postscript.c:1316
msgid ""
"Cannot find PostScript prologue. The use of `-vv' on the command line is "
"suggested as a debugging aid."
msgstr ""
#: src/postscript.c:1321
#, c-format
msgid "%s: %s: Opening PostScript prologue..."
msgstr ""
#: src/postscript.c:1493
#, c-format
msgid "%s: PostScript prologue read successfully."
msgstr ""
#: src/postscript.c:1497
#, c-format
msgid "%s: Error reading PostScript prologue."
msgstr ""
#: src/postscript.c:1667
#, c-format
msgid "PostScript output driver: %s: %s"
msgstr ""
#: src/postscript.c:2355
#, c-format
msgid "PostScript driver: Cannot find encoding `%s' for PostScript font `%s'."
msgstr ""
#: src/tab.c:276
#, c-format
msgid "bad vline: x=%d+%d=%d y=(%d+%d=%d,%d+%d=%d) in table size (%d,%d)\n"
msgstr ""
#: src/tab.c:312
#, c-format
msgid "bad hline: x=(%d+%d=%d,%d+%d=%d) y=%d+%d=%d in table size (%d,%d)\n"
msgstr ""
#: src/tab.c:352
#, c-format
msgid ""
"bad box: (%d+%d=%d,%d+%d=%d)-(%d+%d=%d,%d+%d=%d) in table size (%d,%d)\n"
msgstr ""
#: src/do-if.c:121
msgid "There is no DO IF to match with this ELSE IF."
msgstr ""
#: src/do-if.c:126
msgid "The ELSE command must follow all ELSE IF commands in a DO IF structure."
msgstr ""
#: src/do-if.c:149
msgid "End of command expected."
msgstr ""
#: src/do-if.c:167
msgid "There is no DO IF to match with this ELSE."
msgstr ""
#: src/do-if.c:173
msgid ""
"There may be at most one ELSE clause in each DO IF structure. It must be "
"the last clause."
msgstr ""
#: src/do-if.c:210
msgid "There is no DO IF to match with this END IF."
msgstr ""
#: src/do-if.c:296
#, c-format
msgid "DO IF %d: true\n"
msgstr ""
#: src/do-if.c:301
#, c-format
msgid "DO IF %d: false\n"
msgstr ""
#: src/do-if.c:306
#, c-format
msgid "DO IF %d: missing\n"
msgstr ""
#: src/crosstabs.q:273
msgid ""
"Missing mode REPORT not allowed in general mode. Assuming MISSING=TABLE."
msgstr ""
#: src/crosstabs.q:283
msgid "Write mode ALL not allowed in general mode. Assuming WRITE=CELLS."
msgstr ""
#: src/crosstabs.q:367
msgid "expecting BY"
msgstr ""
#: src/crosstabs.q:440
msgid "VARIABLES must be specified before TABLES."
msgstr ""
#: src/crosstabs.q:477
#, c-format
msgid "Maximum value (%ld) less than minimum value (%ld)."
msgstr ""
#: src/crosstabs.q:937
msgid "Summary."
msgstr ""
#: src/crosstabs.q:939
msgid "Cases"
msgstr ""
#: src/crosstabs.q:940 src/frequencies.q:893
msgid "Valid"
msgstr ""
#: src/crosstabs.q:941 src/frequencies.q:960
msgid "Missing"
msgstr ""
#: src/crosstabs.q:942 src/crosstabs.q:1143 src/crosstabs.q:1886
#: src/frequencies.q:969
msgid "Total"
msgstr ""
#: src/crosstabs.q:952
msgid "N"
msgstr ""
#: src/crosstabs.q:953 src/frequencies.q:897 src/frequencies.q:898
#: src/frequencies.q:899
msgid "Percent"
msgstr ""
#: src/crosstabs.q:1192
msgid "count"
msgstr ""
#: src/crosstabs.q:1193
#, c-format
msgid "row %"
msgstr ""
#: src/crosstabs.q:1194
#, c-format
msgid "column %"
msgstr ""
#: src/crosstabs.q:1195
#, c-format
msgid "total %"
msgstr ""
#: src/crosstabs.q:1196
msgid "expected"
msgstr ""
#: src/crosstabs.q:1197
msgid "residual"
msgstr ""
#: src/crosstabs.q:1198
msgid "std. resid."
msgstr ""
#: src/crosstabs.q:1199
msgid "adj. resid."
msgstr ""
#: src/crosstabs.q:1232 src/crosstabs.q:1259 src/crosstabs.q:1279
#: src/crosstabs.q:1300
msgid "Statistic"
msgstr ""
#: src/crosstabs.q:1234
msgid "df"
msgstr ""
#: src/crosstabs.q:1236
msgid "Asymp. Sig. (2-sided)"
msgstr ""
#: src/crosstabs.q:1238
msgid "Exact. Sig. (2-sided)"
msgstr ""
#: src/crosstabs.q:1240
msgid "Exact. Sig. (1-sided)"
msgstr ""
#: src/crosstabs.q:1258 src/crosstabs.q:1299
msgid "Category"
msgstr ""
#: src/crosstabs.q:1261 src/crosstabs.q:1303
msgid "Asymp. Std. Error"
msgstr ""
#: src/crosstabs.q:1262 src/crosstabs.q:1304
msgid "Approx. T"
msgstr ""
#: src/crosstabs.q:1263 src/crosstabs.q:1305
msgid "Approx. Sig."
msgstr ""
#: src/crosstabs.q:1278
#, c-format
msgid " 95%% Confidence Interval"
msgstr ""
#: src/crosstabs.q:1281
msgid "Lower"
msgstr ""
#: src/crosstabs.q:1282
msgid "Upper"
msgstr ""
#: src/crosstabs.q:1301
msgid "Type"
msgstr ""
#: src/crosstabs.q:2063
msgid "Pearson Chi-Square"
msgstr ""
#: src/crosstabs.q:2064
msgid "Likelihood Ratio"
msgstr ""
#: src/crosstabs.q:2065
msgid "Fisher's Exact Test"
msgstr ""
#: src/crosstabs.q:2066
msgid "Continuity Correction"
msgstr ""
#: src/crosstabs.q:2067
msgid "Linear-by-Linear Association"
msgstr ""
#: src/crosstabs.q:2104 src/crosstabs.q:2174 src/crosstabs.q:2233
msgid "N of Valid Cases"
msgstr ""
#: src/crosstabs.q:2120 src/crosstabs.q:2249
msgid "Nominal by Nominal"
msgstr ""
#: src/crosstabs.q:2121 src/crosstabs.q:2250
msgid "Ordinal by Ordinal"
msgstr ""
#: src/crosstabs.q:2122
msgid "Interval by Interval"
msgstr ""
#: src/crosstabs.q:2123
msgid "Measure of Agreement"
msgstr ""
#: src/crosstabs.q:2128
msgid "Phi"
msgstr ""
#: src/crosstabs.q:2129
msgid "Cramer's V"
msgstr ""
#: src/crosstabs.q:2130
msgid "Contingency Coefficient"
msgstr ""
#: src/crosstabs.q:2131
msgid "Kendall's tau-b"
msgstr ""
#: src/crosstabs.q:2132
msgid "Kendall's tau-c"
msgstr ""
#: src/crosstabs.q:2133
msgid "Gamma"
msgstr ""
#: src/crosstabs.q:2134
msgid "Spearman Correlation"
msgstr ""
#: src/crosstabs.q:2135
msgid "Pearson's R"
msgstr ""
#: src/crosstabs.q:2136
msgid "Kappa"
msgstr ""
#: src/crosstabs.q:2206
#, c-format
msgid "Odds Ratio for %s (%g / %g)"
msgstr ""
#: src/crosstabs.q:2209
#, c-format
msgid "Odds Ratio for %s (%.*s / %.*s)"
msgstr ""
#: src/crosstabs.q:2217
#, c-format
msgid "For cohort %s = %g"
msgstr ""
#: src/crosstabs.q:2220
#, c-format
msgid "For cohort %s = %.*s"
msgstr ""
#: src/crosstabs.q:2251
msgid "Nominal by Interval"
msgstr ""
#: src/crosstabs.q:2256
msgid "Lambda"
msgstr ""
#: src/crosstabs.q:2257
msgid "Goodman and Kruskal tau"
msgstr ""
#: src/crosstabs.q:2258
msgid "Uncertainty Coefficient"
msgstr ""
#: src/crosstabs.q:2259
msgid "Somers' d"
msgstr ""
#: src/crosstabs.q:2260
msgid "Eta"
msgstr ""
#: src/crosstabs.q:2265
msgid "Symmetric"
msgstr ""
#: src/crosstabs.q:2266 src/crosstabs.q:2267
#, c-format
msgid "%s Dependent"
msgstr ""
#: src/descript.q:151 src/frequencies.q:95
msgid "Mean"
msgstr ""
#: src/descript.q:151
msgid "mean"
msgstr ""
#: src/descript.q:152 src/frequencies.q:96
msgid "S.E. Mean"
msgstr ""
#: src/descript.q:152
msgid "S E Mean"
msgstr ""
#: src/descript.q:152
msgid "SE"
msgstr ""
#: src/descript.q:153
msgid "standard error of mean"
msgstr ""
#: src/descript.q:154 src/frequencies.q:99
msgid "Std Dev"
msgstr ""
#: src/descript.q:154
msgid "SD"
msgstr ""
#: src/descript.q:155
msgid "standard deviation"
msgstr ""
#: src/descript.q:156 src/frequencies.q:100
msgid "Variance"
msgstr ""
#: src/descript.q:157
msgid "Var"
msgstr ""
#: src/descript.q:157
msgid "variance"
msgstr ""
#: src/descript.q:158 src/frequencies.q:101
msgid "Kurtosis"
msgstr ""
#: src/descript.q:159
msgid "Kurt"
msgstr ""
#: src/descript.q:159
msgid "kurtosis"
msgstr ""
#: src/descript.q:160 src/frequencies.q:102
msgid "S.E. Kurt"
msgstr ""
#: src/descript.q:160
msgid "S E Kurt"
msgstr ""
#: src/descript.q:160
msgid "SEKurt"
msgstr ""
#: src/descript.q:161
msgid "standard error of kurtosis"
msgstr ""
#: src/descript.q:162 src/frequencies.q:103
msgid "Skewness"
msgstr ""
#: src/descript.q:162
msgid "Skew"
msgstr ""
#: src/descript.q:163
msgid "skewness"
msgstr ""
#: src/descript.q:164 src/frequencies.q:104
msgid "S.E. Skew"
msgstr ""
#: src/descript.q:164
msgid "S E Skew"
msgstr ""
#: src/descript.q:164
msgid "SESkew"
msgstr ""
#: src/descript.q:165
msgid "standard error of skewness"
msgstr ""
#: src/descript.q:166 src/frequencies.q:105
msgid "Range"
msgstr ""
#: src/descript.q:166
msgid "Rng"
msgstr ""
#: src/descript.q:167 src/frequencies.q:106
msgid "Minimum"
msgstr ""
#: src/descript.q:167
msgid "Min"
msgstr ""
#: src/descript.q:168
msgid "minimum"
msgstr ""
#: src/descript.q:169 src/frequencies.q:107
msgid "Maximum"
msgstr ""
#: src/descript.q:169
msgid "Max"
msgstr ""
#: src/descript.q:170
msgid "maximum"
msgstr ""
#: src/descript.q:171 src/frequencies.q:108
msgid "Sum"
msgstr ""
#: src/descript.q:171
msgid "sum"
msgstr ""
#: src/descript.q:212 src/list.q:161
msgid "No variables specified."
msgstr ""
#: src/descript.q:218
msgid "OPTIONS may not be used with SAVE, FORMAT, or MISSING."
msgstr ""
#: src/descript.q:280
#, c-format
msgid "It's not possible to sort on `%s' without displaying `%s'."
msgstr ""
#: src/descript.q:295
msgid ""
"At least one case in the data file had a weight value that was system-"
"missing, zero, or negative. These case(s) were ignored."
msgstr ""
#: src/descript.q:336
msgid ""
"Names for z-score variables must be given for individual variables, not for "
"groups of variables."
msgstr ""
#: src/descript.q:344
msgid "Name for z-score variable expected."
msgstr ""
#: src/descript.q:349
#, c-format
msgid ""
"Z-score variable name `%s' is a duplicate variable name with a current "
"variable."
msgstr ""
#: src/descript.q:358
#, c-format
msgid "Z-score variable name `%s' is used multiple times."
msgstr ""
#: src/descript.q:366
msgid "`)' expected after z-score variable name."
msgstr ""
#: src/descript.q:426
msgid ""
"Ran out of generic names for Z-score variables. There are only 126 generic "
"names: ZSC001-ZSC0999, STDZ01-STDZ09, ZZZZ01-ZZZZ09, ZQZQ01-ZQZQ09."
msgstr ""
#: src/descript.q:455
msgid "Mapping of variables to corresponding Z-scores."
msgstr ""
#: src/descript.q:460
msgid "Source"
msgstr ""
#: src/descript.q:461
msgid "Target"
msgstr ""
#: src/descript.q:548 src/descript.q:554
msgid "Z-score of "
msgstr ""
#: src/descript.q:803
msgid "Valid N"
msgstr ""
#: src/descript.q:804
msgid "Missing N"
msgstr ""
#: src/descript.q:831
#, c-format
msgid "Valid cases = %g; cases with missing value(s) = %g."
msgstr ""
#: src/frequencies.q:97
msgid "Median"
msgstr ""
#: src/frequencies.q:98
msgid "Mode"
msgstr ""
#: src/frequencies.q:271
msgid ""
"At most one of BARCHART, HISTOGRAM, or HBAR should be given. HBAR will be "
"assumed. Argument values will be given precedence increasing along the "
"order given."
msgstr ""
#: src/frequencies.q:352
#, c-format
msgid ""
"MAX must be greater than or equal to MIN, if both are specified. However, "
"MIN was specified as %g and MAX as %g. MIN and MAX will be ignored."
msgstr ""
#: src/frequencies.q:602
msgid ""
"Upper limit of integer mode value range must be greater than lower limit."
msgstr ""
#: src/frequencies.q:614
#, c-format
msgid "Variable %s specified multiple times on VARIABLES subcommand."
msgstr ""
#: src/frequencies.q:627
#, c-format
msgid "Integer mode specified, but %s is not a numeric variable."
msgstr ""
#: src/frequencies.q:687
msgid "`)' expected after GROUPED interval list."
msgstr ""
#: src/frequencies.q:697
#, c-format
msgid "Variables %s specified on GROUPED but not on VARIABLES."
msgstr ""
#: src/frequencies.q:700
#, c-format
msgid "Variables %s specified multiple times on GROUPED subcommand."
msgstr ""
#: src/frequencies.q:751
msgid "Percentile list expected after PERCENTILES."
msgstr ""
#: src/frequencies.q:759
msgid "Percentiles must be greater than 0 and less than 100."
msgstr ""
#: src/frequencies.q:894 src/frequencies.q:984 src/frequencies.q:985
#: src/frequencies.q:1015
msgid "Cum"
msgstr ""
#: src/frequencies.q:896 src/frequencies.q:1420
msgid "Frequency"
msgstr ""
#: src/frequencies.q:915
msgid "Value Label"
msgstr ""
#: src/frequencies.q:1013
msgid "Freq"
msgstr ""
#: src/frequencies.q:1014 src/frequencies.q:1016
msgid "Pct"
msgstr ""
#: src/frequencies.q:1132
#, c-format
msgid "No valid data for variable %s; statistics not displayed."
msgstr ""
#: src/frequencies.q:1226
#, c-format
msgid "only %g case%s for variable %s, statistics not computed"
msgstr ""
#: src/frequencies.q:1261
#, c-format
msgid ""
"The variable %s has %d modes. The lowest of these is the one given in the "
"table."
msgstr ""
#. Draw axis labels.
#. 18-point text
#: src/frequencies.q:1420
msgid "Percentage"
msgstr ""
#: src/frequencies.q:1443
msgid "low-res graphs not implemented"
msgstr ""
#: src/frequencies.q:1577
#, c-format
msgid ""
"Could not make histogram for %s for specified minimum %g and maximum %g; "
"please discard graph."
msgstr ""
#: src/frequencies.q:1716
msgid "Percentile Value Percentile Value Percentile Value"
msgstr ""
#: src/frequencies.q:1733
msgid "this form of percentiles not supported"
msgstr ""
#: src/frequencies.q:1797
#, c-format
msgid "Difference between %g and %g is too small for grouping interval %g."
msgstr ""
#: src/list.q:169
#, c-format
msgid ""
"The first case (%ld) specified precedes the last case (%ld) specified. The "
"values will be swapped."
msgstr ""
#: src/list.q:177
#, c-format
msgid ""
"The first case (%ld) to list is less than 1. The value is being reset to 1."
msgstr ""
#: src/list.q:183
#, c-format
msgid ""
"The last case (%ld) to list is less than 1. The value is being reset to 1."
msgstr ""
#: src/list.q:189
#, c-format
msgid "The step value %ld is less than 1. The value is being reset to 1."
msgstr ""
#: src/list.q:217
msgid "`/FORMAT WEIGHT' specified, but weighting is not on."
msgstr ""
#: src/list.q:455
msgid "Line"
msgstr ""
#: src/means.q:108
msgid "Missing required subcommand TABLES."
msgstr ""
#: src/means.q:155
msgid "TABLES or CROSSBREAK subcommand may not appear more than once."
msgstr ""
#: src/means.q:202
#, c-format
msgid ""
"Variable %s specified on TABLES or CROSSBREAK, but not specified on "
"VARIABLES."
msgstr ""
#: src/means.q:216
#, c-format
msgid "LOWEST and HIGHEST may not be used for independent variables (%s)."
msgstr ""
#: src/means.q:224
#, c-format
msgid ""
"Independent variables (%s) may not have noninteger endpoints in their ranges."
msgstr ""
#: src/means.q:245
#, c-format
msgid "Variable %s is multiply specified on TABLES or CROSSBREAK."
msgstr ""
#: src/means.q:271
msgid "VARIABLES must precede TABLES."
msgstr ""
#: src/means.q:328
#, c-format
msgid "Upper value (%g) is less than lower value (%g) on VARIABLES subcommand."
msgstr ""
#: src/t-test.q:470
msgid "expecting variable name in GROUPS subcommand"
msgstr ""
#: src/t-test.q:475
#, c-format
msgid "Long string variable %s is not valid here."
msgstr ""
#: src/t-test.q:491
msgid ""
"When applying GROUPS to a string variable, at least one value must be "
"specified."
msgstr ""
#: src/t-test.q:581
#, c-format
msgid ""
"PAIRED was specified but the number of variables preceding WITH (%d) did not "
"match the number following (%d)."
msgstr ""
#: src/t-test.q:597
msgid "At least two variables must be specified on PAIRS."
msgstr ""
#: src/count.c:189
msgid "Destination cannot be a string variable."
msgstr ""
#: src/count.c:299
#, c-format
msgid ""
"%g THRU %g is not a valid range. The number following THRU must be at least "
"as big as the number preceding THRU."
msgstr ""
#: src/vars-atr.c:61
msgid "Vartree:\n"
msgstr ""
#: src/vars-atr.c:313
#, c-format
msgid "clearing variable %d:%s %s\n"
msgstr ""
#: src/vars-atr.c:314
msgid "in default dictionary"
msgstr ""
#: src/vars-atr.c:315
msgid "in auxiliary dictionary"
msgstr ""
#: src/vars-prs.c:113
#, c-format
msgid "%s is not declared as a variable."
msgstr ""
#: src/vars-prs.c:131
#, c-format
msgid "%s is not a variable name."
msgstr ""
#: src/vars-prs.c:230
#, c-format
msgid "%s TO %s is not valid syntax since %s precedes %s in the dictionary."
msgstr ""
#: src/vars-prs.c:239
#, c-format
msgid ""
"When using the TO keyword to specify several variables, both variables must "
"be from the same variable dictionaries, of either ordinary, scratch, or "
"system variables. %s and %s are from different dictionaries."
msgstr ""
#: src/vars-prs.c:256
#, c-format
msgid "Scratch variables (such as %s) are not allowed here."
msgstr ""
#: src/vars-prs.c:279
#, c-format
msgid ""
"%s is not a numeric variable. It will not be included in the variable list."
msgstr ""
#: src/vars-prs.c:285
#, c-format
msgid ""
"%s is not a string variable. It will not be included in the variable list."
msgstr ""
#: src/vars-prs.c:291
#, c-format
msgid ""
"%s and %s are not the same type. All variables in this variable list must "
"be of the same type. %s will be omitted from list."
msgstr ""
#: src/vars-prs.c:299
#, c-format
msgid "Variable %s appears twice in variable list."
msgstr ""
#: src/vars-prs.c:370
msgid "incorrect use of TO convention"
msgstr ""
#: src/vars-prs.c:410
msgid "Scratch variables not allowed here."
msgstr ""
#: src/vars-prs.c:432
msgid "Prefixes don't match in use of TO convention."
msgstr ""
#: src/vars-prs.c:437
msgid "Bad bounds in use of TO convention."
msgstr ""
#: src/vfm.c:311
#, c-format
msgid ""
"Workspace overflow predicted. Max workspace is currently set to %d KB (%d "
"cases at %d bytes each). Paging active file to disk."
msgstr ""
#: src/vfm.c:374
msgid "!ERROR!"
msgstr ""
#: src/vfm.c:395
msgid "<NOVAR>"
msgstr ""
#: src/vfm.c:655
#, c-format
msgid ""
"An error occurred attempting to create a temporary file for use as the "
"active file: %s."
msgstr ""
#: src/vfm.c:673
#, c-format
msgid ""
"An error occurred while attempting to read from a temporary file created for "
"the active file: %s."
msgstr ""
#: src/vfm.c:701
#, c-format
msgid ""
"An error occurred while attempting to write to a temporary file used as the "
"active file: %s."
msgstr ""
#: src/vfm.c:715
#, c-format
msgid ""
"An error occurred while attempting to rewind a temporary file used as the "
"active file: %s."
msgstr ""
#: src/vfm.c:830
msgid "Virtual memory exhausted. Paging active file to disk."
msgstr ""
#: src/vfm.c:833
#, c-format
msgid ""
"Workspace limit of %d KB (%d cases at %d bytes each) overflowed. Paging "
"active file to disk."
msgstr ""
#: src/vfm.c:857 src/vfm.c:894
#, c-format
msgid ""
"An error occurred while attempting to write to a temporary file created as "
"the active file, while paging to disk: %s."
msgstr ""
#: src/vfm.c:1008
msgid "transform: "
msgstr ""
#: src/autorecode.c:135
#, c-format
msgid "Target variable %s duplicates existing variable %s."
msgstr ""
#: src/autorecode.c:142
#, c-format
msgid "Duplicate variable name %s among target variables."
msgstr ""
#: src/compute.c:140 src/compute.c:186 src/compute.c:292 src/compute.c:329
#, c-format
msgid ""
"When executing COMPUTE: SYSMIS is not a valid value as an index into vector %"
"s."
msgstr ""
#: src/compute.c:143 src/compute.c:189 src/compute.c:295 src/compute.c:332
#, c-format
msgid ""
"When executing COMPUTE: %g is not a valid value as an index into vector %s."
msgstr ""
#: src/compute.c:422
#, c-format
msgid "There is no vector named %s."
msgstr ""
#: src/compute.c:471
msgid "Extra characters after expression."
msgstr ""
#: src/flip.c:160
#, c-format
msgid "Could not create acceptable variant for variable %s."
msgstr ""
#: src/flip.c:176
msgid "Cannot create more than 99999 variable names."
msgstr ""
#: src/flip.c:290
#, c-format
msgid "Error reading FLIP source file: %s."
msgstr ""
#: src/flip.c:366
msgid "Could not create temporary file for FLIP."
msgstr ""
#: src/flip.c:376 src/flip.c:395
#, c-format
msgid "Error writing FLIP file: %s."
msgstr ""
#: src/flip.c:431
msgid "Error creating FLIP source file."
msgstr ""
#: src/flip.c:434
#, c-format
msgid "Error rewinding FLIP file: %s."
msgstr ""
#: src/flip.c:443
#, c-format
msgid "Error reading FLIP file: %s."
msgstr ""
#: src/flip.c:455
#, c-format
msgid "Error seeking FLIP source file: %s."
msgstr ""
#: src/flip.c:460
#, c-format
msgid "Error writing FLIP source file: %s."
msgstr ""
#: src/flip.c:468
#, c-format
msgid "Error rewind FLIP source file: %s."
msgstr ""
#: src/print.c:209
msgid "expecting a valid subcommand"
msgstr ""
#: src/print.c:389 src/print.c:406
#, c-format
msgid "%g is not a valid column location."
msgstr ""
#: src/print.c:400
#, c-format
msgid "Column location expected following `%d-'."
msgstr ""
#: src/print.c:411
#, c-format
msgid ""
"%d-%ld is not a valid column range. The second column must be greater than "
"or equal to the first."
msgstr ""
#: src/print.c:517
#, c-format
msgid ""
"%s is not of the same type as %s. To specify variables of different types "
"in the same variable list, use a FORTRAN-like format specifier."
msgstr ""
#: src/print.c:547
msgid ""
"The ending column for a field must not be less than the starting column."
msgstr ""
#: src/print.c:630
#, c-format
msgid "%s variables cannot be displayed with format %s."
msgstr ""
#: src/print.c:717
#, c-format
msgid "Display format %s may not be used with a %s variable."
msgstr ""
#: src/print.c:867
#, c-format
msgid "Writing %3d records to file %s."
msgstr ""
#: src/print.c:868
#, c-format
msgid "Writing %3d records to the listing file."
msgstr ""
#: src/print.c:1082
msgid "A file name or handle was expected in the OUTFILE subcommand."
msgstr ""
#: src/print.c:1134
#, c-format
msgid ""
"The expression on PRINT SPACE evaluated to %d. It's not possible to PRINT "
"SPACE a negative number of lines."
msgstr ""
#: src/recode.c:290
#, c-format
msgid ""
"%d variable(s) cannot be recoded into %d variable(s). Specify the same "
"number of variables as input and output variables."
msgstr ""
#: src/recode.c:304
#, c-format
msgid ""
"There is no string variable named %s. (All string variables specified on "
"INTO must already exist. Use the STRING command to create a string "
"variable.)"
msgstr ""
#: src/recode.c:313
#, c-format
msgid ""
"Type mismatch between input and output variables. Output variable %s is not "
"a string variable, but all the input variables are string variables."
msgstr ""
#: src/recode.c:332
#, c-format
msgid "Type mismatch after INTO: %s is not a numeric variable."
msgstr ""
#: src/recode.c:362
msgid ""
"INTO must be used when the input values are numeric and output values are "
"string."
msgstr ""
#: src/recode.c:370
msgid ""
"INTO must be used when the input values are string and output values are "
"numeric."
msgstr ""
#: src/recode.c:507
msgid ""
"Inconsistent output types. The output values must be all numeric or all "
"string."
msgstr ""
#: src/recode.c:558
msgid "following LO THRU"
msgstr ""
#: src/recode.c:574 src/recode.c:603
msgid "in source value"
msgstr ""
#: src/recode.c:616
msgid ""
"Keyword CONVERT may only be used with string input values and numeric output "
"values."
msgstr ""
#: src/recode.c:872
msgid "!!END!!"
msgstr ""
#: src/recode.c:893 src/recode.c:909
msgid "!!ERROR!!"
msgstr ""
#: src/sel-if.c:102
msgid "The filter variable must be numeric."
msgstr ""
#: src/sel-if.c:108
msgid "The filter variable may not be scratch."
msgstr ""
#: src/sel-if.c:142
msgid "Only last instance of this command is in effect."
msgstr ""
#: src/sort.c:131
msgid "`A' or `D' expected inside parentheses."
msgstr ""
#: src/sort.c:137
msgid "`)' expected."
msgstr ""
#: src/sort.c:462
#, c-format
msgid "%s: Cannot create temporary directory: %s."
msgstr ""
#: src/sort.c:486
#, c-format
msgid "%s: Error removing directory for temporary files: %s."
msgstr ""
#: src/sort.c:530
#, c-format
msgid ""
"Out of memory. Could not allocate room for minimum of %d cases of %d bytes "
"each. (PSPP workspace is currently restricted to a maximum of %d KB.)"
msgstr ""
#: src/sort.c:542
#, c-format
msgid "allocated %d cases == %d bytes\n"
msgstr ""
#: src/sort.c:580
#, c-format
msgid "%s: Error writing temporary file: %s."
msgstr ""
#: src/sort.c:592
#, c-format
msgid "SORT: Closing handle %d."
msgstr ""
#: src/sort.c:598 src/sort.c:822
#, c-format
msgid "%s: Error closing temporary file: %s."
msgstr ""
#: src/sort.c:620 src/sort.c:636
#, c-format
msgid "SORT: %s: Opening for writing as run %d."
msgstr ""
#: src/sort.c:642
#, c-format
msgid "%s: Error opening temporary file for reading: %s."
msgstr ""
#: src/sort.c:668 src/sort.c:684
#, c-format
msgid "%s: Error creating temporary file: %s."
msgstr ""
#: src/sort.c:826 src/sort.c:987 src/sort.c:1037 src/sort.c:1207
#: src/sort.c:1214
#, c-format
msgid "%s: Error removing temporary file: %s."
msgstr ""
#. Find the shortest runs; put them in runs[] in reverse order
#. of length, to force dummy runs of length 0 to the end of the
#. list.
#: src/sort.c:969
msgid "merging runs"
msgstr ""
#: src/sort.c:977
#, c-format
msgid " into run %d(%d)\n"
msgstr ""
#: src/sort.c:996
msgid "Out of memory expanding Huffman priority queue."
msgstr ""
#: src/sort.c:1048
#, c-format
msgid "%s: Error creating temporary file for merge: %s."
msgstr ""
#: src/sort.c:1076 src/sort.c:1134
#, c-format
msgid "%s: Error reading temporary file in merge: %s."
msgstr ""
#: src/sort.c:1079 src/sort.c:1138
#, c-format
msgid "%s: Unexpected end of temporary file in merge."
msgstr ""
#: src/sort.c:1104
#, c-format
msgid "%s: Error writing temporary file in merge: %s."
msgstr ""
#: src/sort.c:1154 src/sort.c:1187
#, c-format
msgid "%s: Error closing temporary file in merge: %s."
msgstr ""
#: src/sort.c:1159
#, c-format
msgid "%s: Error removing temporary file in merge: %s."
msgstr ""
#: src/sort.c:1258
#, c-format
msgid "%s: Cannot open sort result file: %s."
msgstr ""
#: src/sort.c:1269
#, c-format
msgid "%s: Error reading sort result file: %s."
msgstr ""
#: src/sort.c:1272
#, c-format
msgid "%s: Unexpected end of sort result file: %s."
msgstr ""
#: src/sort.c:1283
#, c-format
msgid "%s: Error closing sort result file: %s."
msgstr ""
#: src/sort.c:1287
#, c-format
msgid "%s: Error removing sort result file: %s."
msgstr ""
#: src/include.c:51
msgid "Unrecognized filename format."
msgstr ""
#: src/loop.c:203
msgid "The index variable may not be a string variable."
msgstr ""
#: src/loop.c:323
msgid "There is no LOOP command that corresponds to this END LOOP."
msgstr ""
#: src/loop.c:524
msgid ""
"This command may only appear enclosed in a LOOP/END LOOP control structure."
msgstr ""
#: src/loop.c:530
msgid "BREAK not enclosed in DO IF structure."
msgstr ""
#: src/loop.c:607
#, c-format
msgid "%s without %s."
msgstr ""
#: src/repeat.c:160
#, c-format
msgid "Identifier %s is given twice."
msgstr ""
#: src/repeat.c:203
#, c-format
msgid ""
"There must be the same number of substitutions for each dummy variable "
"specified. Since there were %d substitutions for %s, there must be %d for %"
"s as well, but %d were specified."
msgstr ""
#: src/repeat.c:312
msgid "No commands in scope."
msgstr ""
#: src/mis-val.c:332 src/repeat.c:485
msgid "String expected."
msgstr ""
#: src/repeat.c:512
msgid "No matching DO REPEAT."
msgstr ""
#: src/mis-val.c:83
msgid "`)' expected after value specification."
msgstr ""
#: src/mis-val.c:117
#, c-format
msgid "`(' expected after variable name%s."
msgstr ""
#: src/mis-val.c:129
msgid "Long string value specified."
msgstr ""
#: src/mis-val.c:134
msgid "Short strings must be of equal width."
msgstr ""
#: src/mis-val.c:191
#, c-format
msgid "Range %g THRU %g is not valid because %g is greater than %g."
msgstr ""
#: src/mis-val.c:222
msgid "Number or range expected."
msgstr ""
#: src/mis-val.c:255
msgid "At most one range can exist in the missing values for any one variable."
msgstr ""
#: src/mis-val.c:261
msgid "At most one individual value can be missing along with one range."
msgstr ""
#: src/mis-val.c:323
msgid "String is not of proper length."
msgstr ""
#: src/mis-val.c:372
msgid "Missing value:"
msgstr ""
#: src/mis-val.c:377
msgid "(long string variable)"
msgstr ""
#: src/mis-val.c:382
msgid "(no missing values)\n"
msgstr ""
#: src/mis-val.c:405
#, c-format
msgid "(!!!INTERNAL ERROR--%d!!!)\n"
msgstr ""
#: src/modify-vars.c:109
msgid "REORDER subcommand may be given at most once."
msgstr ""
#: src/modify-vars.c:131
msgid "Cannot specify ALL after specifying a set of variables."
msgstr ""
#: src/modify-vars.c:141
msgid "`(' expected on REORDER subcommand."
msgstr ""
#: src/modify-vars.c:153
msgid "`)' expected following variable names on REORDER subcommand."
msgstr ""
#: src/modify-vars.c:185
msgid "RENAME subcommand may be given at most once."
msgstr ""
#: src/modify-vars.c:198
msgid "`(' expected on RENAME subcommand."
msgstr ""
#: src/modify-vars.c:206
msgid ""
"`=' expected between lists of new and old variable names on RENAME "
"subcommand."
msgstr ""
#: src/modify-vars.c:216 src/rename-vars.c:74
#, c-format
msgid ""
"Differing number of variables in old name list (%d) and in new name list (%"
"d)."
msgstr ""
#: src/modify-vars.c:227
msgid "`)' expected after variable lists on RENAME subcommand."
msgstr ""
#: src/modify-vars.c:243
msgid ""
"KEEP subcommand may be given at most once. It may notbe given in "
"conjunction with the DROP subcommand."
msgstr ""
#: src/modify-vars.c:281
msgid ""
"DROP subcommand may be given at most once. It may notbe given in "
"conjunction with the KEEP subcommand."
msgstr ""
#: src/modify-vars.c:307
#, c-format
msgid "Unrecognized subcommand name `%s'."
msgstr ""
#: src/modify-vars.c:309
msgid "Subcommand name expected."
msgstr ""
#: src/modify-vars.c:317
msgid "`/' or `.' expected."
msgstr ""
#: src/modify-vars.c:471 src/rename-vars.c:124
#, c-format
msgid "Duplicate variable name `%s' after renaming."
msgstr ""
#: src/numeric.c:61
#, c-format
msgid "Format type %s may not be used with a numeric variable."
msgstr ""
#: src/numeric.c:81 src/numeric.c:164 src/vector.c:167
#, c-format
msgid "There is already a variable named %s."
msgstr ""
#: src/numeric.c:135
#, c-format
msgid "Format type %s may not be used with a string variable."
msgstr ""
#: src/rename-vars.c:59
msgid "`(' expected."
msgstr ""
#: src/rename-vars.c:67
msgid "`=' expected between lists of new and old variable names."
msgstr ""
#: src/rename-vars.c:85
msgid "`)' expected after variable names."
msgstr ""
#: src/sample.c:72
msgid "The sampling factor must be between 0 and 1 exclusive."
msgstr ""
#: src/sample.c:92
#, c-format
msgid "Cannot sample %d observations from a population of %d."
msgstr ""
#: src/set.q:216
msgid "BLOCK is obsolete."
msgstr ""
#: src/set.q:219
msgid "BOXSTRING is obsolete."
msgstr ""
#: src/set.q:223
msgid "Active file compression is not yet implemented (and probably won't be)."
msgstr ""
#: src/set.q:232
msgid "CPI must be greater than 0."
msgstr ""
#: src/set.q:237
msgid "HISTOGRAM is obsolete."
msgstr ""
#: src/set.q:241
msgid "LPI must be greater than 0."
msgstr ""
#: src/set.q:248
msgid ""
"CASE is not implemented and probably won't be. If you care, complain about "
"it."
msgstr ""
#: src/set.q:278
#, c-format
msgid "Value for MITERATE (%ld) must be greater than 0."
msgstr ""
#: src/set.q:286
#, c-format
msgid "Value for MNEST (%ld) must be greater than 0."
msgstr ""
#: src/set.q:294
msgid "MXERRS must be at least 1."
msgstr ""
#: src/set.q:301
msgid "MXLOOPS must be at least 1."
msgstr ""
#: src/set.q:306
msgid "MXMEMORY is obsolete."
msgstr ""
#: src/set.q:312
msgid "SCRIPTTAB is obsolete."
msgstr ""
#: src/set.q:314
msgid "TBFONTS not implemented."
msgstr ""
#: src/set.q:316
msgid "TB1 not implemented."
msgstr ""
#: src/set.q:320
msgid "WORKSPACE is obsolete."
msgstr ""
#: src/set.q:327
msgid "AUTOMENU is obsolete."
msgstr ""
#: src/set.q:329
msgid "BEEP is obsolete."
msgstr ""
#: src/set.q:348
msgid "EJECT is obsolete."
msgstr ""
#: src/set.q:352
msgid "HELPWINDOWS is obsolete."
msgstr ""
#: src/set.q:356
msgid "MENUS is obsolete."
msgstr ""
#: src/set.q:370
msgid "PTRANSLATE is obsolete."
msgstr ""
#: src/set.q:376
msgid "XSORT is obsolete."
msgstr ""
#: src/set.q:390
#, c-format
msgid ""
"CC%c: Length of custom currency string `%s' (%d) exceeds maximum length of "
"16."
msgstr ""
#: src/set.q:412
#, c-format
msgid ""
"CC%c: Custom currency string `%s' does not contain exactly three periods or "
"commas (not both)."
msgstr ""
#: src/set.q:555
msgid "LENGTH must be at least 1."
msgstr ""
#: src/set.q:592
msgid "Missing identifier in RESULTS subcommand."
msgstr ""
#: src/set.q:603
msgid "Unrecognized identifier in RESULTS subcommand."
msgstr ""
#: src/set.q:639
msgid "WIDTH must be at least 1."
msgstr ""
#: src/set.q:662
#, c-format
msgid ""
"FORMAT requires numeric output format as an argument. Specified format %s "
"is of type string."
msgstr ""
#: src/set.q:706
msgid "Text color must be in range 0-15."
msgstr ""
#: src/set.q:719
msgid "Background color must be in range 0-7."
msgstr ""
#: src/set.q:730
msgid "Border color must be in range 0-7."
msgstr ""
#: src/set.q:774
msgid "RCOLOR is obsolete."
msgstr ""
#: src/set.q:786
msgid "Lower window color must be between 0 and 6."
msgstr ""
#: src/set.q:800
msgid "Upper window color must be between 0 and 6."
msgstr ""
#: src/set.q:812
msgid "Frame color must be between 0 and 6."
msgstr ""
#: src/set.q:845
msgid "VIEWLENGTH not implemented."
msgstr ""
#: src/set.q:855
msgid "WORKDEV is obsolete."
msgstr ""
#: src/set.q:864
msgid "Drive letter expected in WORKDEV subcommand."
msgstr ""
#: src/temporary.c:65
msgid "This command is not valid inside DO IF or LOOP."
msgstr ""
#: src/temporary.c:72
msgid ""
"This command may only appear once between procedures and procedure-like "
"commands."
msgstr ""
#: src/title.c:57
#, c-format
msgid "%s before: %s\n"
msgstr ""
#: src/title.c:57
msgid "<none>"
msgstr ""
#: src/title.c:69
#, c-format
msgid "%s: `.' expected after string."
msgstr ""
#: src/title.c:84
#, c-format
msgid "%s after: %s\n"
msgstr ""
#: src/title.c:134
#, c-format
msgid "Document entered %s %02d:%02d:%02d by %s (%s):"
msgstr ""
#: src/val-labs.c:139
#, c-format
msgid ""
"It is not possible to assign value labels to long string variables such as %"
"s."
msgstr ""
#: src/val-labs.c:186
msgid "String expected for value."
msgstr ""
#: src/val-labs.c:195
msgid "Number expected for value."
msgstr ""
#: src/val-labs.c:199
#, c-format
msgid "Value label `%g' is not integer."
msgstr ""
#: src/val-labs.c:209
msgid "Truncating value label to 60 characters."
msgstr ""
#: src/val-labs.c:242
msgid "Value labels:"
msgstr ""
#: src/val-labs.c:259
msgid " (no value labels)\n"
msgstr ""
#: src/var-labs.c:55
msgid "String expected for variable label."
msgstr ""
#: src/var-labs.c:61
msgid "Truncating variable label to 120 characters."
msgstr ""
#: src/var-labs.c:89
msgid "Variable labels:\n"
msgstr ""
#: src/var-labs.c:96
msgid "(no variable label)"
msgstr ""
#: src/vector.c:80
#, c-format
msgid "Vector name %s is given twice."
msgstr ""
#: src/vector.c:86
#, c-format
msgid "There is already a vector with name %s."
msgstr ""
#. There's more than one vector name.
#: src/vector.c:105
msgid ""
"A slash must be used to separate each vector specification when using the "
"long form. Commands such as VECTOR A,B=Q1 TO Q20 are not supported."
msgstr ""
#: src/vector.c:139
msgid "Vectors must have at least one element."
msgstr ""
#: src/vector.c:153
#, c-format
msgid "%s%d is too long for a variable name."
msgstr ""
#: src/vector.c:195
msgid ""
"The syntax for this command does not match the expected syntax for either "
"the long form or the short form of VECTOR."
msgstr ""
#: src/weight.c:61
msgid "The weighting variable must be numeric."
msgstr ""
#: src/weight.c:66
msgid "The weighting variable may not be scratch."
msgstr ""
#: src/weight.c:106
msgid "bad weighting variable, canceling\n"
msgstr ""
|