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 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844
|
# Courtesy of Prevod.org team (http://www.prevod.org/) -- 2003.
#
# This file is distributed under the same license as the gnumeric package.
#
# Maintainer: Slobodan Sredojević <ssl@uns.ns.ac.yu>
#
msgid ""
msgstr ""
"Project-Id-Version: gnumeric 1.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-04-22 20:48-0400\n"
"PO-Revision-Date: 2003-12-08 01:14+0100\n"
"Last-Translator: Slobodan Sredojević <ssl@uns.ns.ac.yu>\n"
"Language-Team: Serbian (sr) <serbiangnome-lista@nongnu.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../plugins/fn-christian-date/functions.c:140
msgid ""
"EASTERSUNDAY:Easter Sunday in the Gregorian calendar according to the Roman "
"rite of the Christian Church"
msgstr ""
#: ../plugins/fn-christian-date/functions.c:142
msgid ""
"year:year between 1582 and 9956, defaults to the year of the next Easter "
"Sunday"
msgstr ""
#: ../plugins/fn-christian-date/functions.c:143
#: ../plugins/fn-christian-date/functions.c:166
#: ../plugins/fn-christian-date/functions.c:186
#: ../plugins/fn-christian-date/functions.c:205
#: ../plugins/fn-christian-date/functions.c:224
msgid ""
"Two digit years are adjusted as elsewhere in Gnumeric. Dates before 1904 may "
"also be prohibited."
msgstr ""
#: ../plugins/fn-christian-date/functions.c:146
msgid ""
"The 1-argument version of EASTERSUNDAY is compatible with OpenOffice for "
"years after 1904. This function is not specified in ODF/OpenFormula."
msgstr ""
#: ../plugins/fn-christian-date/functions.c:163
msgid ""
"ASHWEDNESDAY:Ash Wednesday in the Gregorian calendar according to the Roman "
"rite of the Christian Church"
msgstr ""
#: ../plugins/fn-christian-date/functions.c:165
msgid ""
"year:year between 1582 and 9956, defaults to the year of the next Ash "
"Wednesday"
msgstr ""
#: ../plugins/fn-christian-date/functions.c:183
msgid ""
"PENTECOSTSUNDAY:Pentecost Sunday in the Gregorian calendar according to the "
"Roman rite of the Christian Church"
msgstr ""
#: ../plugins/fn-christian-date/functions.c:185
msgid ""
"year:year between 1582 and 9956, defaults to the year of the next Pentecost "
"Sunday"
msgstr ""
#: ../plugins/fn-christian-date/functions.c:202
msgid ""
"GOODFRIDAY:Good Friday in the Gregorian calendar according to the Roman rite "
"of the Christian Church"
msgstr ""
#: ../plugins/fn-christian-date/functions.c:204
msgid ""
"year:year between 1582 and 9956, defaults to the year of the next Good Friday"
msgstr ""
#: ../plugins/fn-christian-date/functions.c:221
msgid ""
"ASCENSIONTHURSDAY:Ascension Thursday in the Gregorian calendar according to "
"the Roman rite of the Christian Church"
msgstr ""
#: ../plugins/fn-christian-date/functions.c:223
msgid ""
"year:year between 1582 and 9956, defaults to the year of the next Ascension "
"Thursday"
msgstr ""
#: ../plugins/fn-complex/functions.c:79
msgid "COMPLEX:a complex number of the form @{x} + @{y}@{i}."
msgstr ""
#: ../plugins/fn-complex/functions.c:80
msgid "x:real part"
msgstr ""
#: ../plugins/fn-complex/functions.c:81
msgid "y:imaginary part"
msgstr ""
#: ../plugins/fn-complex/functions.c:82
msgid ""
"i:the suffix for the complex number, either \"i\" or \"j\"; defaults to \"i"
"\"."
msgstr ""
#: ../plugins/fn-complex/functions.c:83
msgid "If @{i} is neither \"i\" nor \"j\", COMPLEX returns #VALUE!"
msgstr ""
#: ../plugins/fn-complex/functions.c:84 ../plugins/fn-complex/functions.c:112
#: ../plugins/fn-complex/functions.c:139 ../plugins/fn-complex/functions.c:163
#: ../plugins/fn-complex/functions.c:190 ../plugins/fn-complex/functions.c:261
#: ../plugins/fn-complex/functions.c:287 ../plugins/fn-complex/functions.c:392
#: ../plugins/fn-complex/functions.c:419 ../plugins/fn-complex/functions.c:445
#: ../plugins/fn-complex/functions.c:470 ../plugins/fn-complex/functions.c:497
#: ../plugins/fn-complex/functions.c:524 ../plugins/fn-complex/functions.c:556
#: ../plugins/fn-complex/functions.c:588
#: ../plugins/fn-complex/functions.c:1071
#: ../plugins/fn-complex/functions.c:1098
#: ../plugins/fn-complex/functions.c:1128
#: ../plugins/fn-complex/functions.c:1197 ../plugins/fn-date/functions.c:84
#: ../plugins/fn-date/functions.c:197 ../plugins/fn-date/functions.c:219
#: ../plugins/fn-date/functions.c:356 ../plugins/fn-date/functions.c:391
#: ../plugins/fn-date/functions.c:408 ../plugins/fn-date/functions.c:429
#: ../plugins/fn-date/functions.c:454 ../plugins/fn-date/functions.c:473
#: ../plugins/fn-date/functions.c:496 ../plugins/fn-date/functions.c:519
#: ../plugins/fn-date/functions.c:541 ../plugins/fn-date/functions.c:565
#: ../plugins/fn-date/functions.c:589 ../plugins/fn-date/functions.c:617
#: ../plugins/fn-date/functions.c:658 ../plugins/fn-date/functions.c:696
#: ../plugins/fn-date/functions.c:738 ../plugins/fn-date/functions.c:901
#: ../plugins/fn-eng/functions.c:238 ../plugins/fn-eng/functions.c:263
#: ../plugins/fn-eng/functions.c:287 ../plugins/fn-eng/functions.c:312
#: ../plugins/fn-eng/functions.c:336 ../plugins/fn-eng/functions.c:359
#: ../plugins/fn-eng/functions.c:403 ../plugins/fn-eng/functions.c:430
#: ../plugins/fn-eng/functions.c:453 ../plugins/fn-eng/functions.c:476
#: ../plugins/fn-eng/functions.c:499 ../plugins/fn-eng/functions.c:519
#: ../plugins/fn-eng/functions.c:608 ../plugins/fn-eng/functions.c:637
#: ../plugins/fn-eng/functions.c:745 ../plugins/fn-eng/functions.c:1121
#: ../plugins/fn-eng/functions.c:1144 ../plugins/fn-info/functions.c:97
#: ../plugins/fn-info/functions.c:1285 ../plugins/fn-info/functions.c:1351
#: ../plugins/fn-info/functions.c:1440 ../plugins/fn-info/functions.c:1458
#: ../plugins/fn-info/functions.c:1480 ../plugins/fn-info/functions.c:1507
#: ../plugins/fn-info/functions.c:1534 ../plugins/fn-info/functions.c:1571
#: ../plugins/fn-info/functions.c:1587 ../plugins/fn-info/functions.c:1609
#: ../plugins/fn-info/functions.c:1626 ../plugins/fn-info/functions.c:1644
#: ../plugins/fn-info/functions.c:1661 ../plugins/fn-info/functions.c:1683
#: ../plugins/fn-info/functions.c:1703 ../plugins/fn-info/functions.c:1722
#: ../plugins/fn-info/functions.c:1759 ../plugins/fn-logical/functions.c:52
#: ../plugins/fn-logical/functions.c:103 ../plugins/fn-logical/functions.c:131
#: ../plugins/fn-logical/functions.c:269 ../plugins/fn-logical/functions.c:287
#: ../plugins/fn-math/functions.c:61 ../plugins/fn-math/functions.c:124
#: ../plugins/fn-math/functions.c:225 ../plugins/fn-math/functions.c:243
#: ../plugins/fn-math/functions.c:266 ../plugins/fn-math/functions.c:326
#: ../plugins/fn-math/functions.c:351 ../plugins/fn-math/functions.c:370
#: ../plugins/fn-math/functions.c:389 ../plugins/fn-math/functions.c:415
#: ../plugins/fn-math/functions.c:460 ../plugins/fn-math/functions.c:534
#: ../plugins/fn-math/functions.c:646 ../plugins/fn-math/functions.c:714
#: ../plugins/fn-math/functions.c:743 ../plugins/fn-math/functions.c:763
#: ../plugins/fn-math/functions.c:817 ../plugins/fn-math/functions.c:836
#: ../plugins/fn-math/functions.c:870 ../plugins/fn-math/functions.c:931
#: ../plugins/fn-math/functions.c:1010 ../plugins/fn-math/functions.c:1067
#: ../plugins/fn-math/functions.c:1100 ../plugins/fn-math/functions.c:1122
#: ../plugins/fn-math/functions.c:1150 ../plugins/fn-math/functions.c:1174
#: ../plugins/fn-math/functions.c:1200 ../plugins/fn-math/functions.c:1274
#: ../plugins/fn-math/functions.c:1317 ../plugins/fn-math/functions.c:1335
#: ../plugins/fn-math/functions.c:1432 ../plugins/fn-math/functions.c:1450
#: ../plugins/fn-math/functions.c:1497 ../plugins/fn-math/functions.c:1521
#: ../plugins/fn-math/functions.c:1567 ../plugins/fn-math/functions.c:1584
#: ../plugins/fn-math/functions.c:1619 ../plugins/fn-math/functions.c:1654
#: ../plugins/fn-math/functions.c:1689 ../plugins/fn-math/functions.c:1726
#: ../plugins/fn-math/functions.c:1805 ../plugins/fn-math/functions.c:1830
#: ../plugins/fn-math/functions.c:1856 ../plugins/fn-math/functions.c:1882
#: ../plugins/fn-math/functions.c:1906 ../plugins/fn-math/functions.c:1947
#: ../plugins/fn-math/functions.c:1992 ../plugins/fn-math/functions.c:2119
#: ../plugins/fn-math/functions.c:2367 ../plugins/fn-math/functions.c:2411
#: ../plugins/fn-math/functions.c:2454 ../plugins/fn-math/functions.c:2497
#: ../plugins/fn-math/functions.c:2553 ../plugins/fn-math/functions.c:2803
#: ../plugins/fn-math/functions.c:2870 ../plugins/fn-random/functions.c:47
#: ../plugins/fn-random/functions.c:248 ../plugins/fn-stat/functions.c:86
#: ../plugins/fn-stat/functions.c:114 ../plugins/fn-stat/functions.c:141
#: ../plugins/fn-stat/functions.c:169 ../plugins/fn-stat/functions.c:277
#: ../plugins/fn-stat/functions.c:325 ../plugins/fn-stat/functions.c:355
#: ../plugins/fn-stat/functions.c:388 ../plugins/fn-stat/functions.c:412
#: ../plugins/fn-stat/functions.c:437 ../plugins/fn-stat/functions.c:468
#: ../plugins/fn-stat/functions.c:497 ../plugins/fn-stat/functions.c:526
#: ../plugins/fn-stat/functions.c:546 ../plugins/fn-stat/functions.c:573
#: ../plugins/fn-stat/functions.c:600 ../plugins/fn-stat/functions.c:626
#: ../plugins/fn-stat/functions.c:662 ../plugins/fn-stat/functions.c:696
#: ../plugins/fn-stat/functions.c:722 ../plugins/fn-stat/functions.c:757
#: ../plugins/fn-stat/functions.c:797 ../plugins/fn-stat/functions.c:851
#: ../plugins/fn-stat/functions.c:919 ../plugins/fn-stat/functions.c:951
#: ../plugins/fn-stat/functions.c:981 ../plugins/fn-stat/functions.c:1008
#: ../plugins/fn-stat/functions.c:1038 ../plugins/fn-stat/functions.c:1126
#: ../plugins/fn-stat/functions.c:1163 ../plugins/fn-stat/functions.c:1246
#: ../plugins/fn-stat/functions.c:1283 ../plugins/fn-stat/functions.c:1449
#: ../plugins/fn-stat/functions.c:1481 ../plugins/fn-stat/functions.c:1591
#: ../plugins/fn-stat/functions.c:1618 ../plugins/fn-stat/functions.c:1648
#: ../plugins/fn-stat/functions.c:1683 ../plugins/fn-stat/functions.c:1710
#: ../plugins/fn-stat/functions.c:1742 ../plugins/fn-stat/functions.c:1774
#: ../plugins/fn-stat/functions.c:1806 ../plugins/fn-stat/functions.c:1839
#: ../plugins/fn-stat/functions.c:1889 ../plugins/fn-stat/functions.c:1914
#: ../plugins/fn-stat/functions.c:1939 ../plugins/fn-stat/functions.c:1971
#: ../plugins/fn-stat/functions.c:2000 ../plugins/fn-stat/functions.c:2019
#: ../plugins/fn-stat/functions.c:2045 ../plugins/fn-stat/functions.c:2167
#: ../plugins/fn-stat/functions.c:2210 ../plugins/fn-stat/functions.c:2284
#: ../plugins/fn-stat/functions.c:2364 ../plugins/fn-stat/functions.c:2518
#: ../plugins/fn-stat/functions.c:2577 ../plugins/fn-stat/functions.c:2602
#: ../plugins/fn-stat/functions.c:2629 ../plugins/fn-stat/functions.c:2661
#: ../plugins/fn-stat/functions.c:2688 ../plugins/fn-stat/functions.c:2718
#: ../plugins/fn-stat/functions.c:2745 ../plugins/fn-stat/functions.c:2869
#: ../plugins/fn-stat/functions.c:2913 ../plugins/fn-stat/functions.c:2954
#: ../plugins/fn-stat/functions.c:3020 ../plugins/fn-stat/functions.c:3186
#: ../plugins/fn-stat/functions.c:4354 ../plugins/fn-stat/functions.c:4424
#: ../plugins/fn-stat/functions.c:4475 ../plugins/fn-stat/functions.c:4543
#: ../plugins/fn-string/functions.c:66 ../plugins/fn-string/functions.c:137
#: ../plugins/fn-string/functions.c:199 ../plugins/fn-string/functions.c:218
#: ../plugins/fn-string/functions.c:235 ../plugins/fn-string/functions.c:255
#: ../plugins/fn-string/functions.c:319 ../plugins/fn-string/functions.c:339
#: ../plugins/fn-string/functions.c:466 ../plugins/fn-string/functions.c:535
#: ../plugins/fn-string/functions.c:555 ../plugins/fn-string/functions.c:577
#: ../plugins/fn-string/functions.c:621 ../plugins/fn-string/functions.c:652
#: ../plugins/fn-string/functions.c:690 ../plugins/fn-string/functions.c:745
#: ../plugins/fn-string/functions.c:791 ../plugins/fn-string/functions.c:892
#: ../plugins/fn-string/functions.c:916 ../plugins/fn-string/functions.c:969
#: ../plugins/fn-string/functions.c:1016 ../plugins/fn-string/functions.c:1112
#: ../plugins/fn-string/functions.c:1183 ../plugins/fn-string/functions.c:1266
msgid "This function is Excel compatible."
msgstr ""
#: ../plugins/fn-complex/functions.c:109
msgid "IMAGINARY:the imaginary part of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:110 ../plugins/fn-complex/functions.c:137
#: ../plugins/fn-complex/functions.c:161 ../plugins/fn-complex/functions.c:188
#: ../plugins/fn-complex/functions.c:213 ../plugins/fn-complex/functions.c:236
#: ../plugins/fn-complex/functions.c:259 ../plugins/fn-complex/functions.c:285
#: ../plugins/fn-complex/functions.c:311 ../plugins/fn-complex/functions.c:338
#: ../plugins/fn-complex/functions.c:364 ../plugins/fn-complex/functions.c:390
#: ../plugins/fn-complex/functions.c:416 ../plugins/fn-complex/functions.c:440
#: ../plugins/fn-complex/functions.c:468 ../plugins/fn-complex/functions.c:495
#: ../plugins/fn-complex/functions.c:586 ../plugins/fn-complex/functions.c:611
#: ../plugins/fn-complex/functions.c:635 ../plugins/fn-complex/functions.c:660
#: ../plugins/fn-complex/functions.c:685 ../plugins/fn-complex/functions.c:709
#: ../plugins/fn-complex/functions.c:734 ../plugins/fn-complex/functions.c:758
#: ../plugins/fn-complex/functions.c:785 ../plugins/fn-complex/functions.c:812
#: ../plugins/fn-complex/functions.c:839 ../plugins/fn-complex/functions.c:863
#: ../plugins/fn-complex/functions.c:888 ../plugins/fn-complex/functions.c:912
#: ../plugins/fn-complex/functions.c:939 ../plugins/fn-complex/functions.c:967
#: ../plugins/fn-complex/functions.c:995
#: ../plugins/fn-complex/functions.c:1019
#: ../plugins/fn-complex/functions.c:1044
#: ../plugins/fn-complex/functions.c:1069
msgid "z:a complex number"
msgstr ""
#: ../plugins/fn-complex/functions.c:111 ../plugins/fn-complex/functions.c:138
#: ../plugins/fn-complex/functions.c:162 ../plugins/fn-complex/functions.c:189
#: ../plugins/fn-complex/functions.c:214 ../plugins/fn-complex/functions.c:237
#: ../plugins/fn-complex/functions.c:260 ../plugins/fn-complex/functions.c:286
#: ../plugins/fn-complex/functions.c:313 ../plugins/fn-complex/functions.c:340
#: ../plugins/fn-complex/functions.c:366 ../plugins/fn-complex/functions.c:391
#: ../plugins/fn-complex/functions.c:418 ../plugins/fn-complex/functions.c:444
#: ../plugins/fn-complex/functions.c:469 ../plugins/fn-complex/functions.c:496
#: ../plugins/fn-complex/functions.c:587 ../plugins/fn-complex/functions.c:612
#: ../plugins/fn-complex/functions.c:636 ../plugins/fn-complex/functions.c:661
#: ../plugins/fn-complex/functions.c:686 ../plugins/fn-complex/functions.c:710
#: ../plugins/fn-complex/functions.c:735 ../plugins/fn-complex/functions.c:761
#: ../plugins/fn-complex/functions.c:788 ../plugins/fn-complex/functions.c:815
#: ../plugins/fn-complex/functions.c:840 ../plugins/fn-complex/functions.c:864
#: ../plugins/fn-complex/functions.c:889 ../plugins/fn-complex/functions.c:915
#: ../plugins/fn-complex/functions.c:943 ../plugins/fn-complex/functions.c:971
#: ../plugins/fn-complex/functions.c:996
#: ../plugins/fn-complex/functions.c:1020
#: ../plugins/fn-complex/functions.c:1045
#: ../plugins/fn-complex/functions.c:1070
msgid "If @{z} is not a valid complex number, #VALUE! is returned."
msgstr ""
#: ../plugins/fn-complex/functions.c:136
msgid "IMABS:the absolute value of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:160
msgid "IMREAL:the real part of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:187
msgid "IMCONJUGATE:the complex conjugate of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:212
msgid "IMINV:the reciprocal, or inverse, of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:235
msgid "IMNEG:the negative of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:258
msgid "IMCOS:the cosine of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:284
msgid "IMTAN:the tangent of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:310
msgid "IMSEC:the secant of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:312
msgid "secz = 1/cosz."
msgstr ""
#: ../plugins/fn-complex/functions.c:337
msgid "IMCSC:the cosecant of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:339
msgid "cscz = 1/sinz."
msgstr ""
#: ../plugins/fn-complex/functions.c:363
msgid "IMCOT:the cotangent of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:365
msgid "cotz = cosz/sinz."
msgstr ""
#: ../plugins/fn-complex/functions.c:389
msgid "IMEXP:the exponential of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:415
msgid "IMARGUMENT:the argument theta of the complex number @{z} "
msgstr ""
#: ../plugins/fn-complex/functions.c:417
msgid ""
"The argument theta of a complex number is its angle in radians from the real "
"axis."
msgstr ""
#: ../plugins/fn-complex/functions.c:439
msgid "IMLN:the natural logarithm of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:441
msgid ""
"The result will have an imaginary part between -π and +π.\n"
"The natural logarithm is not uniquely defined on complex numbers. You may "
"need to add or subtract an even multiple of π to the imaginary part."
msgstr ""
#: ../plugins/fn-complex/functions.c:467
msgid "IMLOG2:the base-2 logarithm of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:494
msgid "IMLOG10:the base-10 logarithm of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:520
msgid "IMPOWER: the complex number @{z1} raised to the @{z2}th power"
msgstr ""
#: ../plugins/fn-complex/functions.c:521 ../plugins/fn-complex/functions.c:553
#: ../plugins/fn-complex/functions.c:1095
#: ../plugins/fn-complex/functions.c:1125
#: ../plugins/fn-complex/functions.c:1194
msgid "z1:a complex number"
msgstr ""
#: ../plugins/fn-complex/functions.c:522 ../plugins/fn-complex/functions.c:554
#: ../plugins/fn-complex/functions.c:1096
#: ../plugins/fn-complex/functions.c:1126
#: ../plugins/fn-complex/functions.c:1195
msgid "z2:a complex number"
msgstr ""
#: ../plugins/fn-complex/functions.c:523 ../plugins/fn-complex/functions.c:555
#: ../plugins/fn-complex/functions.c:1097
msgid "If @{z1} or @{z2} is not a valid complex number, #VALUE! is returned."
msgstr ""
#: ../plugins/fn-complex/functions.c:552
msgid "IMDIV:the quotient of two complex numbers @{z1}/@{z2}"
msgstr ""
#: ../plugins/fn-complex/functions.c:585
msgid "IMSIN:the sine of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:610
msgid "IMSINH:the hyperbolic sine of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:634
msgid "IMCOSH:the hyperbolic cosine of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:659
msgid "IMTANH:the hyperbolic tangent of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:684
msgid "IMSECH:the hyperbolic secant of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:708
msgid "IMCSCH:the hyperbolic cosecant of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:733
msgid "IMCOTH:the hyperbolic cotangent of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:757
msgid "IMARCSIN:the complex arcsine of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:759
msgid ""
"IMARCSIN returns the complex arcsine of the complex number @{z}. The branch "
"cuts are on the real axis, less than -1 and greater than 1."
msgstr ""
#: ../plugins/fn-complex/functions.c:784
msgid "IMARCCOS:the complex arccosine of the complex number "
msgstr ""
#: ../plugins/fn-complex/functions.c:786
msgid ""
"IMARCCOS returns the complex arccosine of the complex number @{z}. The "
"branch cuts are on the real axis, less than -1 and greater than 1."
msgstr ""
#: ../plugins/fn-complex/functions.c:811
msgid "IMARCTAN:the complex arctangent of the complex number "
msgstr ""
#: ../plugins/fn-complex/functions.c:813
msgid ""
"IMARCTAN returns the complex arctangent of the complex number @{z}. The "
"branch cuts are on the imaginary axis, below -i and above i."
msgstr ""
#: ../plugins/fn-complex/functions.c:838
msgid "IMARCSEC:the complex arcsecant of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:862
msgid "IMARCCSC:the complex arccosecant of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:887
msgid "IMARCCOT:the complex arccotangent of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:911
msgid "IMARCSINH:the complex hyperbolic arcsine of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:913
msgid ""
"IMARCSINH returns the complex hyperbolic arcsine of the complex number @"
"{z}. The branch cuts are on the imaginary axis, below -i and above i."
msgstr ""
#: ../plugins/fn-complex/functions.c:938
msgid "IMARCCOSH:the complex hyperbolic arccosine of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:940
msgid ""
"IMARCCOSH returns the complex hyperbolic arccosine of the complex number @"
"{z}. The branch cut is on the real axis, less than 1."
msgstr ""
#: ../plugins/fn-complex/functions.c:966
msgid "IMARCTANH:the complex hyperbolic arctangent of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:968
msgid ""
"IMARCTANH returns the complex hyperbolic arctangent of the complex number @"
"{z}. The branch cuts are on the real axis, less than -1 and greater than 1."
msgstr ""
#: ../plugins/fn-complex/functions.c:994
msgid "IMARCSECH:the complex hyperbolic arcsecant of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:1018
msgid "IMARCCSCH:the complex hyperbolic arccosecant of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:1043
msgid ""
"IMARCCOTH:the complex hyperbolic arccotangent of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:1068
msgid "IMSQRT:the square root of the complex number @{z}"
msgstr ""
#: ../plugins/fn-complex/functions.c:1094
msgid "IMSUB:the difference of two complex numbers."
msgstr ""
#: ../plugins/fn-complex/functions.c:1124
msgid "IMPRODUCT:the product of the given complex numbers."
msgstr ""
#: ../plugins/fn-complex/functions.c:1127
#: ../plugins/fn-complex/functions.c:1196
msgid ""
"If any of @{z1}, @{z2},... is not a valid complex number, #VALUE! is "
"returned."
msgstr ""
#: ../plugins/fn-complex/functions.c:1193
msgid "IMSUM:the sum of the given complex numbers"
msgstr ""
#: ../plugins/fn-database/functions.c:45
msgid ""
"database:a range in which rows of related information are records and "
"columns of data are fields"
msgstr ""
#: ../plugins/fn-database/functions.c:48
msgid "field:a string or integer specifying which field is to be used"
msgstr ""
#: ../plugins/fn-database/functions.c:50
msgid "criteria:a range containing conditions"
msgstr ""
#: ../plugins/fn-database/functions.c:52
msgid ""
"@{database} is a range in which rows of related information are records and "
"columns of data are fields. The first row of a database contains labels for "
"each column."
msgstr ""
#: ../plugins/fn-database/functions.c:57
msgid ""
"@{field} is a string or integer specifying which field is to be used. If @"
"{field} is an integer n then the nth column will be used. If @{field} is a "
"string, then the column with the matching label will be used."
msgstr ""
#: ../plugins/fn-database/functions.c:62
msgid ""
"@{criteria} is a range containing conditions. The first row of a @{criteria} "
"should contain labels. Each label specifies to which field the conditions "
"given in that column apply. Each cell below the label specifies a condition "
"such as \">3\" or \"<9\". An equality condition can be given by simply "
"specifying a value, e. g. \"3\" or \"Jody\". For a record to be considered "
"it must satisfy all conditions in at least one of the rows of @{criteria}."
msgstr ""
#: ../plugins/fn-database/functions.c:73
msgid ""
"Let us assume that the range A1:C7 contain the following values:\n"
"\n"
"Name \tAge \tSalary\n"
"John \t34 \t54342\n"
"Bill \t35 \t22343\n"
"Clark \t29 \t34323\n"
"Bob \t43 \t47242\n"
"Susan \t37 \t42932\n"
"Jill \t\t45 \t45324\n"
"\n"
"In addition, the cells A9:B11 contain the following values:\n"
"Age \tSalary\n"
"<30\n"
">40 \t>46000\n"
msgstr ""
#: ../plugins/fn-database/functions.c:322
msgid ""
"DAVERAGE:average of the values in @{field} in @{database} belonging to "
"records that match @{criteria}"
msgstr ""
#: ../plugins/fn-database/functions.c:331
msgid "DAVERAGE(A1:C7, \"Salary\", A9:A11) equals 42296.3333."
msgstr ""
#: ../plugins/fn-database/functions.c:332
msgid "DAVERAGE(A1:C7, \"Age\", A9:A11) equals 39."
msgstr ""
#: ../plugins/fn-database/functions.c:333
msgid "DAVERAGE(A1:C7, \"Salary\", A9:B11) equals 40782.5."
msgstr ""
#: ../plugins/fn-database/functions.c:334
msgid "DAVERAGE(A1:C7, \"Age\", A9:B11) equals 36."
msgstr ""
#: ../plugins/fn-database/functions.c:358
msgid ""
"DCOUNT:count of numbers in @{field} in @{database} belonging to records that "
"match @{criteria}"
msgstr ""
#: ../plugins/fn-database/functions.c:367
msgid "DCOUNT(A1:C7, \"Salary\", A9:A11) equals 3."
msgstr ""
#: ../plugins/fn-database/functions.c:368
msgid "DCOUNT(A1:C7, \"Salary\", A9:B11) equals 2."
msgstr ""
#: ../plugins/fn-database/functions.c:369
msgid "DCOUNT(A1:C7, \"Name\", A9:B11) equals 0."
msgstr ""
#: ../plugins/fn-database/functions.c:393
msgid ""
"DCOUNTA:count of cells with data in @{field} in @{database} belonging to "
"records that match @{criteria}"
msgstr ""
#: ../plugins/fn-database/functions.c:402
msgid "DCOUNTA(A1:C7, \"Salary\", A9:A11) equals 3."
msgstr ""
#: ../plugins/fn-database/functions.c:403
msgid "DCOUNTA(A1:C7, \"Salary\", A9:B11) equals 2."
msgstr ""
#: ../plugins/fn-database/functions.c:404
msgid "DCOUNTA(A1:C7, \"Name\", A9:B11) equals 2."
msgstr ""
#: ../plugins/fn-database/functions.c:425
msgid ""
"DGET:a value from @{field} in @{database} belonging to records that match @"
"{criteria}"
msgstr ""
#: ../plugins/fn-database/functions.c:434
msgid "If none of the records match the conditions, DGET returns #VALUE!"
msgstr ""
#: ../plugins/fn-database/functions.c:435
msgid "If more than one record match the conditions, DGET returns #NUM!"
msgstr ""
#: ../plugins/fn-database/functions.c:436
msgid "DGET(A1:C7, \"Salary\", A9:A10) equals 34323."
msgstr ""
#: ../plugins/fn-database/functions.c:437
msgid "DGET(A1:C7, \"Name\", A9:A10) equals \"Clark\"."
msgstr ""
#: ../plugins/fn-database/functions.c:466
msgid ""
"DMAX:largest number in @{field} in @{database} belonging to a record that "
"match @{criteria}"
msgstr ""
#: ../plugins/fn-database/functions.c:475
msgid "DMAX(A1:C7, \"Salary\", A9:A11) equals 47242."
msgstr ""
#: ../plugins/fn-database/functions.c:476
msgid "DMAX(A1:C7, \"Age\", A9:A11) equals 45."
msgstr ""
#: ../plugins/fn-database/functions.c:477
msgid "DMAX(A1:C7, \"Age\", A9:B11) equals 43."
msgstr ""
#: ../plugins/fn-database/functions.c:502
msgid ""
"DMIN:smallest number in @{field} in @{database} belonging to a record that "
"match @{criteria}"
msgstr ""
#: ../plugins/fn-database/functions.c:511
msgid "DMIN(A1:C7, \"Salary\", A9:B11) equals 34323."
msgstr ""
#: ../plugins/fn-database/functions.c:512
msgid "DMIN(A1:C7, \"Age\", A9:B11) equals 29."
msgstr ""
#: ../plugins/fn-database/functions.c:535
msgid ""
"DPRODUCT:product of all values in @{field} in @{database} belonging to "
"records that match @{criteria}"
msgstr ""
#: ../plugins/fn-database/functions.c:544
msgid "DPRODUCT(A1:C7, \"Age\", A9:B11) equals 1247."
msgstr ""
#: ../plugins/fn-database/functions.c:568
msgid ""
"DSTDEV:sample standard deviation of the values in @{field} in @{database} "
"belonging to records that match @{criteria}"
msgstr ""
#: ../plugins/fn-database/functions.c:577
msgid "DSTDEV(A1:C7, \"Age\", A9:B11) equals 9.89949."
msgstr ""
#: ../plugins/fn-database/functions.c:578
msgid "DSTDEV(A1:C7, \"Salary\", A9:B11) equals 9135.112506."
msgstr ""
#: ../plugins/fn-database/functions.c:601
msgid ""
"DSTDEVP:standard deviation of the population of values in @{field} in @"
"{database} belonging to records that match @{criteria}"
msgstr ""
#: ../plugins/fn-database/functions.c:611
msgid "DSTDEVP(A1:C7, \"Age\", A9:B11) equals 7."
msgstr ""
#: ../plugins/fn-database/functions.c:612
msgid "DSTDEVP(A1:C7, \"Salary\", A9:B11) equals 6459.5."
msgstr ""
#: ../plugins/fn-database/functions.c:635
msgid ""
"DSUM:sum of the values in @{field} in @{database} belonging to records that "
"match @{criteria}"
msgstr ""
#: ../plugins/fn-database/functions.c:644
msgid "DSUM(A1:C7, \"Age\", A9:B11) equals 72."
msgstr ""
#: ../plugins/fn-database/functions.c:645
msgid "DSUM(A1:C7, \"Salary\", A9:B11) equals 81565."
msgstr ""
#: ../plugins/fn-database/functions.c:669
msgid ""
"DVAR:sample variance of the values in @{field} in @{database} belonging to "
"records that match @{criteria}"
msgstr ""
#: ../plugins/fn-database/functions.c:678
msgid "DVAR(A1:C7, \"Age\", A9:B11) equals 98."
msgstr ""
#: ../plugins/fn-database/functions.c:679
msgid "DVAR(A1:C7, \"Salary\", A9:B11) equals 83450280.5."
msgstr ""
#: ../plugins/fn-database/functions.c:702
msgid ""
"DVARP:variance of the population of values in @{field} in @{database} "
"belonging to records that match @{criteria}"
msgstr ""
#: ../plugins/fn-database/functions.c:712
msgid "DVARP(A1:C7, \"Age\", A9:B11) equals 49."
msgstr ""
#: ../plugins/fn-database/functions.c:713
msgid "DVARP(A1:C7, \"Salary\", A9:B11) equals 41725140.25."
msgstr ""
#: ../plugins/fn-database/functions.c:736
msgid "GETPIVOTDATA:summary data from a pivot table"
msgstr ""
#: ../plugins/fn-database/functions.c:737
msgid "pivot_table:cell range containing the pivot table"
msgstr ""
#: ../plugins/fn-database/functions.c:738
msgid "field_name:name of the field for which the summary data is requested"
msgstr ""
#: ../plugins/fn-database/functions.c:739
msgid "If the summary data is unavailable, GETPIVOTDATA returns #REF!"
msgstr ""
#: ../plugins/fn-date/functions.c:74
msgid "DATE:create a date serial value"
msgstr ""
#: ../plugins/fn-date/functions.c:75 ../plugins/fn-hebrew-date/functions.c:53
#: ../plugins/fn-hebrew-date/functions.c:86
msgid "year:year of date"
msgstr ""
#: ../plugins/fn-date/functions.c:76 ../plugins/fn-hebrew-date/functions.c:54
#: ../plugins/fn-hebrew-date/functions.c:87
msgid "month:month of year"
msgstr ""
#: ../plugins/fn-date/functions.c:77 ../plugins/fn-hebrew-date/functions.c:55
#: ../plugins/fn-hebrew-date/functions.c:88
msgid "day:day of month"
msgstr ""
#: ../plugins/fn-date/functions.c:78
msgid ""
"The DATE function creates date serial values. 1-Jan-1900 is serial value 1, "
"2-Jan-1900 is serial value 2, and so on. For compatibility reasons, a "
"serial value is reserved for the non-existing date 29-Feb-1900."
msgstr ""
#: ../plugins/fn-date/functions.c:79
msgid ""
"If @{month} or @{day} is less than 1 or too big, then the year and/or month "
"will be adjusted."
msgstr ""
#: ../plugins/fn-date/functions.c:80
msgid ""
"For spreadsheets created with the Mac version of Excel, serial 1 is 1-Jan-"
"1904."
msgstr ""
#: ../plugins/fn-date/functions.c:137
msgid "UNIX2DATE:create a date value from a Unix timestamp"
msgstr ""
#: ../plugins/fn-date/functions.c:138
msgid "t:Unix time stamp"
msgstr ""
#: ../plugins/fn-date/functions.c:139
msgid ""
"The UNIT2DATE function translates Unix timestamps into date serial values. "
"Unix timestamps are number of seconds since Midnight 1-Jan-1900."
msgstr ""
#: ../plugins/fn-date/functions.c:167
msgid "DATE2UNIX:translate a date serial value to a Unix timestamp"
msgstr ""
#: ../plugins/fn-date/functions.c:168
msgid "d:date serial value"
msgstr ""
#: ../plugins/fn-date/functions.c:169
msgid ""
"The DATE2UNIX function translates a date serial values into a Unix timestamp."
msgstr ""
#: ../plugins/fn-date/functions.c:193
msgid "DATEVALUE:the date part of a date and time serial value"
msgstr ""
#: ../plugins/fn-date/functions.c:194 ../plugins/fn-date/functions.c:451
msgid "serial:date and time serial value"
msgstr ""
#: ../plugins/fn-date/functions.c:195
msgid ""
"DATEVALUE returns the date serial value part of a date and time serial value."
msgstr ""
#: ../plugins/fn-date/functions.c:211
msgid "DATEDIF:difference between dates"
msgstr ""
#: ../plugins/fn-date/functions.c:212 ../plugins/fn-date/functions.c:651
#: ../plugins/fn-date/functions.c:897 ../plugins/fn-date/functions.c:1115
#: ../plugins/fn-date/functions.c:1144
msgid "start_date:starting date serial value"
msgstr ""
#: ../plugins/fn-date/functions.c:213 ../plugins/fn-date/functions.c:652
#: ../plugins/fn-date/functions.c:898 ../plugins/fn-date/functions.c:1116
#: ../plugins/fn-date/functions.c:1145
msgid "end_date:ending date serial value"
msgstr ""
#: ../plugins/fn-date/functions.c:214
msgid "interval:counting unit"
msgstr ""
#: ../plugins/fn-date/functions.c:215
msgid ""
"DATEDIF returns the distance from @{start_date} to @{end_date} according to "
"the unit specified by @{interval}."
msgstr ""
#: ../plugins/fn-date/functions.c:216
msgid ""
"If @{interval} is \"y\", \"m\", or \"d\" then the distance is measured in "
"complete years, months, or days respectively."
msgstr ""
#: ../plugins/fn-date/functions.c:217
msgid ""
"If @{interval} is \"ym\" or \"yd\" then the distance is measured in complete "
"months or days, respectively, but excluding any difference in years."
msgstr ""
#: ../plugins/fn-date/functions.c:218
msgid ""
"If @{interval} is \"md\" then the distance is measured in complete days but "
"excluding any difference in months."
msgstr ""
#: ../plugins/fn-date/functions.c:352
msgid "EDATE:adjust a date by a number of months"
msgstr ""
#: ../plugins/fn-date/functions.c:353 ../plugins/fn-date/functions.c:539
#: ../plugins/fn-date/functions.c:563 ../plugins/fn-date/functions.c:587
#: ../plugins/fn-date/functions.c:611 ../plugins/fn-date/functions.c:693
#: ../plugins/fn-date/functions.c:733 ../plugins/fn-date/functions.c:1016
#: ../plugins/fn-date/functions.c:1040 ../plugins/fn-date/functions.c:1076
msgid "date:date serial value"
msgstr ""
#: ../plugins/fn-date/functions.c:354 ../plugins/fn-date/functions.c:694
msgid "months:signed number of months"
msgstr ""
#: ../plugins/fn-date/functions.c:355
msgid ""
"EDATE returns @{date} moved forward or backward the number of months "
"specified by @{months}."
msgstr ""
#: ../plugins/fn-date/functions.c:389
msgid "TODAY:the date serial value of today"
msgstr ""
#: ../plugins/fn-date/functions.c:390
msgid ""
"The TODAY function returns the date serial value of the day it is computed. "
"Recomputing on a later date will produce a different value."
msgstr ""
#: ../plugins/fn-date/functions.c:406
msgid "NOW:the date and time serial value of the current time"
msgstr ""
#: ../plugins/fn-date/functions.c:407
msgid ""
"The NOW function returns the date and time serial value of the moment it is "
"computed. Recomputing later will produce a different value."
msgstr ""
#: ../plugins/fn-date/functions.c:423
msgid "TIME:create a time serial value"
msgstr ""
#: ../plugins/fn-date/functions.c:424
msgid "hour:hour of the day"
msgstr ""
#: ../plugins/fn-date/functions.c:425
msgid "minute:minute within the hour"
msgstr ""
#: ../plugins/fn-date/functions.c:426
msgid "second:second within the minute"
msgstr ""
#: ../plugins/fn-date/functions.c:427
msgid ""
"The TIME function computes the fractional day between midnight at the time "
"given by @{hour}, @{minute}, and @{second}."
msgstr ""
#: ../plugins/fn-date/functions.c:450
msgid "TIMEVALUE:the time part of a date and time serial value"
msgstr ""
#: ../plugins/fn-date/functions.c:452
msgid "TIMEVALUE returns the time-of-day part of a date and time serial value."
msgstr ""
#: ../plugins/fn-date/functions.c:469
msgid "HOUR:compute hour part of fractional day"
msgstr ""
#: ../plugins/fn-date/functions.c:470 ../plugins/fn-date/functions.c:493
#: ../plugins/fn-date/functions.c:516
msgid "time:time of day as fractional day."
msgstr ""
#: ../plugins/fn-date/functions.c:471
msgid ""
"The HOUR function computes the hour part of the fractional day given by @"
"{time}."
msgstr ""
#: ../plugins/fn-date/functions.c:492
msgid "MINUTE:compute minute part of fractional day"
msgstr ""
#: ../plugins/fn-date/functions.c:494
msgid ""
"The MINUTE function computes the minute part of the fractional day given by @"
"{time}."
msgstr ""
#: ../plugins/fn-date/functions.c:515
msgid "SECOND:compute seconds part of fractional day"
msgstr ""
#: ../plugins/fn-date/functions.c:517
msgid ""
"The SECOND function computes the seconds part of the fractional day given by "
"@{time}."
msgstr ""
#: ../plugins/fn-date/functions.c:538
msgid "YEAR:the year part of a date serial value"
msgstr ""
#: ../plugins/fn-date/functions.c:540
msgid "The YEAR function returns the year part of @{date}."
msgstr ""
#: ../plugins/fn-date/functions.c:562
msgid "MONTH:the month part of a date serial value"
msgstr ""
#: ../plugins/fn-date/functions.c:564
msgid "The MONTH function returns the month part of @{date}."
msgstr ""
#: ../plugins/fn-date/functions.c:586
msgid "DAY:the day-of-month part of a date serial value"
msgstr ""
#: ../plugins/fn-date/functions.c:588
msgid "The DAY function returns the day-of-month part of @{date}."
msgstr ""
#: ../plugins/fn-date/functions.c:610
msgid "WEEKDAY:day-of-week"
msgstr ""
#: ../plugins/fn-date/functions.c:612 ../plugins/fn-date/functions.c:1077
msgid "method:numbering system"
msgstr ""
#: ../plugins/fn-date/functions.c:613
msgid ""
"The WEEKDAY function returns the day-of-week of @{date}. The value of @"
"{method} determines how days are numbered."
msgstr ""
#: ../plugins/fn-date/functions.c:614
msgid "If @{method} is 1, then Sunday is 1, Monday is 2, etc."
msgstr ""
#: ../plugins/fn-date/functions.c:615
msgid "If @{method} is 2, then Monday is 1, Sunday is 2, etc."
msgstr ""
#: ../plugins/fn-date/functions.c:616
msgid "If @{method} is 3, then Monday is 0, Sunday is 1, etc."
msgstr ""
#: ../plugins/fn-date/functions.c:650
msgid "DAYS360:days between dates"
msgstr ""
#: ../plugins/fn-date/functions.c:653
msgid "method:counting method"
msgstr ""
#: ../plugins/fn-date/functions.c:654
msgid "DAYS360 returns the number of days from @{start_date} to @{end_date}."
msgstr ""
#: ../plugins/fn-date/functions.c:655
msgid ""
"If @{method} is 0, the default, the MS Excel (tm) US method will be used. "
"This is a somewhat complicated industry standard method where the last day "
"of February is considered to be the 30th day of the month, but only for @"
"{start_date}."
msgstr ""
#: ../plugins/fn-date/functions.c:656
msgid ""
"If @{method} is 1, the European method will be used. In this case, if the "
"day of the month is 31 it will be considered as 30"
msgstr ""
#: ../plugins/fn-date/functions.c:657
msgid ""
"If @{method} is 2, a saner version of the US method is used in which both "
"dates get the same February treatment."
msgstr ""
#: ../plugins/fn-date/functions.c:692
msgid "EOMONTH:end of month"
msgstr ""
#: ../plugins/fn-date/functions.c:695
msgid ""
"EOMONTH returns the date serial value of the end of the month specified by @"
"{date} adjusted forward or backward the number of months specified by @"
"{months}."
msgstr ""
#: ../plugins/fn-date/functions.c:732
msgid "WORKDAY:add working days"
msgstr ""
#: ../plugins/fn-date/functions.c:734
msgid "days:number of days to add"
msgstr ""
#: ../plugins/fn-date/functions.c:735 ../plugins/fn-date/functions.c:899
msgid "holidays:array of holidays"
msgstr ""
#: ../plugins/fn-date/functions.c:736
msgid ""
"WORKDAY adjusts @{date} by @{days} skipping over weekends and @{holidays} in "
"the process."
msgstr ""
#: ../plugins/fn-date/functions.c:737
msgid "@{days} may be negative."
msgstr ""
#: ../plugins/fn-date/functions.c:896
msgid "NETWORKDAYS:number of workdays in range"
msgstr ""
#: ../plugins/fn-date/functions.c:900
msgid ""
"NETWORKDAYS calculates the number of days from @{start_date} to @{end_date} "
"skipping weekends and @{holidays} in the process."
msgstr ""
#: ../plugins/fn-date/functions.c:1015
msgid "ISOWEEKNUM:ISO week number"
msgstr ""
#: ../plugins/fn-date/functions.c:1017
msgid ""
"ISOWEEKNUM calculates the week number according to the ISO 8601 standard. "
"Weeks start on Mondays and week 1 contains the first Thursday of the year."
msgstr ""
#: ../plugins/fn-date/functions.c:1018 ../plugins/fn-date/functions.c:1042
msgid ""
"January 1 of a year is sometimes in week 52 or 53 of the previous year. "
"Similarly, December 31 is sometimes in week 1 of the following year."
msgstr ""
#: ../plugins/fn-date/functions.c:1039
msgid "ISOYEAR:year corresponding to the ISO week number"
msgstr ""
#: ../plugins/fn-date/functions.c:1041
msgid ""
"ISOYEAR calculates the year to go with week number according to the ISE 8601 "
"standard."
msgstr ""
#: ../plugins/fn-date/functions.c:1075
msgid "WEEKNUM:ISO week number"
msgstr ""
#: ../plugins/fn-date/functions.c:1078
msgid ""
"WEEKNUM calculates the week number according to @{method} which defaults to "
"1."
msgstr ""
#: ../plugins/fn-date/functions.c:1079
msgid ""
"If @{method} is 1, then weeks start on Sundays and January 1 is in week 1."
msgstr ""
#: ../plugins/fn-date/functions.c:1080
msgid ""
"If @{method} is 2, then weeks start on Mondays and January 1 is in week 1."
msgstr ""
#: ../plugins/fn-date/functions.c:1081
msgid "If @{method} is 150, then the ISO 8601 numbering is used."
msgstr ""
#: ../plugins/fn-date/functions.c:1114
msgid "YEARFRAC:fractional number of years between dates"
msgstr ""
#: ../plugins/fn-date/functions.c:1117 ../plugins/fn-financial/functions.c:369
#: ../plugins/fn-financial/functions.c:428
#: ../plugins/fn-financial/functions.c:466
#: ../plugins/fn-financial/functions.c:504
#: ../plugins/fn-financial/functions.c:545
#: ../plugins/fn-financial/functions.c:582
#: ../plugins/fn-financial/functions.c:626
#: ../plugins/fn-financial/functions.c:1869
#: ../plugins/fn-financial/functions.c:2226
#: ../plugins/fn-financial/functions.c:2276
#: ../plugins/fn-financial/functions.c:2383
#: ../plugins/fn-financial/functions.c:2429
#: ../plugins/fn-financial/functions.c:2471
#: ../plugins/fn-financial/functions.c:2621
#: ../plugins/fn-financial/functions.c:2716
#: ../plugins/fn-financial/functions.c:2794
#: ../plugins/fn-financial/functions.c:2871
#: ../plugins/fn-financial/functions.c:2919
#: ../plugins/fn-financial/functions.c:2962
#: ../plugins/fn-financial/functions.c:2986
#: ../plugins/fn-financial/functions.c:3010
#: ../plugins/fn-financial/functions.c:3034
#: ../plugins/fn-financial/functions.c:3060
#: ../plugins/fn-financial/functions.c:3086
#: ../plugins/fn-financial/functions.c:3200
msgid "basis:calendar basis"
msgstr ""
#: ../plugins/fn-date/functions.c:1118
msgid ""
"YEARFRAC calculates the number of days from @{start_date} to @{end_date} "
"according to the calendar specified by @{basis}, which defaults to 0, and "
"expresses the result as a fractional number of years."
msgstr ""
#: ../plugins/fn-date/functions.c:1143
msgid "DAYS:difference between dates in days"
msgstr ""
#: ../plugins/fn-date/functions.c:1146
msgid ""
"DAYS returns the positive or negative number of days from @{start_date} to @"
"{end_date}."
msgstr ""
#: ../plugins/fn-date/functions.c:1147 ../plugins/fn-eng/functions.c:213
#: ../plugins/fn-eng/functions.c:380 ../plugins/fn-financial/functions.c:1286
#: ../plugins/fn-math/functions.c:1011 ../plugins/fn-math/functions.c:1038
#: ../plugins/fn-math/functions.c:1355 ../plugins/fn-math/functions.c:1375
#: ../plugins/fn-math/functions.c:2040 ../plugins/fn-math/functions.c:2772
#: ../plugins/fn-stat/functions.c:2519 ../plugins/fn-stat/functions.c:4969
#: ../plugins/fn-string/functions.c:256 ../plugins/fn-string/functions.c:340
#: ../plugins/fn-string/functions.c:467 ../plugins/fn-string/functions.c:1053
#: ../plugins/fn-string/functions.c:1395 ../plugins/fn-string/functions.c:1525
msgid "This function is OpenFormula compatible."
msgstr ""
#. Some common decriptors
#: ../plugins/fn-derivatives/options.c:46
msgid "call_put_flag:'c' for a call and 'p' for a put"
msgstr ""
#: ../plugins/fn-derivatives/options.c:47
msgid "spot:spot price"
msgstr ""
#: ../plugins/fn-derivatives/options.c:48
msgid "strike:strike price"
msgstr ""
#: ../plugins/fn-derivatives/options.c:49
msgid "time:time to maturity in years"
msgstr ""
#: ../plugins/fn-derivatives/options.c:50
msgid "time:time to maturity in days"
msgstr ""
#: ../plugins/fn-derivatives/options.c:51
msgid "time_payout:time to dividend payout"
msgstr ""
#: ../plugins/fn-derivatives/options.c:52
msgid "time_exp:time to expiration"
msgstr ""
#: ../plugins/fn-derivatives/options.c:53
msgid "rate:risk-free interest rate to the exercise date in percent"
msgstr ""
#: ../plugins/fn-derivatives/options.c:54
msgid "rate:annualized interest rate"
msgstr ""
#: ../plugins/fn-derivatives/options.c:55
msgid "rate:annualized risk-free interest rate"
msgstr ""
#: ../plugins/fn-derivatives/options.c:56
msgid ""
"volatility:annualized volatility of the asset in percent for the period "
"through to the exercise date"
msgstr ""
#: ../plugins/fn-derivatives/options.c:57
msgid "volatility:annualized volatility of the asset"
msgstr ""
#: ../plugins/fn-derivatives/options.c:58
msgid "d:amount of the dividend to be paid expressed in currency"
msgstr ""
#: ../plugins/fn-derivatives/options.c:59
msgid ""
"cost_of_carry:net cost of holding the underlying asset (for common stocks, "
"the risk free rate less the dividend yield), defaults to 0"
msgstr ""
#: ../plugins/fn-derivatives/options.c:60
msgid "cost_of_carry:net cost of holding the underlying asset"
msgstr ""
#: ../plugins/fn-derivatives/options.c:62
msgid ""
"The returned value will be expressed in the same units as @{strike} and @"
"{spot}."
msgstr ""
#: ../plugins/fn-derivatives/options.c:192
msgid "CUM_BIV_NORM_DIST:cumulative bivariate normal distribution"
msgstr ""
#: ../plugins/fn-derivatives/options.c:193
msgid "a:limit for first random variable"
msgstr ""
#: ../plugins/fn-derivatives/options.c:194
msgid "b:limit for second random variable"
msgstr ""
#: ../plugins/fn-derivatives/options.c:195
msgid "rho:correlation of the two random variables"
msgstr ""
#: ../plugins/fn-derivatives/options.c:196
msgid ""
"CUM_BIV_NORM_DIST calculates the probability that two standard normal "
"distributed random variables with correlation @{rho} are respectively each "
"less than @{a} and @{b}."
msgstr ""
#: ../plugins/fn-derivatives/options.c:245
msgid "OPT_BS:price of a European option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:253
msgid ""
"OPT_BS uses the Black-Scholes model to calculate the price of a European "
"option struck at @{strike} on an asset with spot price @{spot}."
msgstr ""
#: ../plugins/fn-derivatives/options.c:302
msgid "OPT_BS_DELTA:delta of a European option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:310
msgid ""
"OPT_BS_DELTA uses the Black-Scholes model to calculate the 'delta' of a "
"European option struck at @{strike} on an asset with spot price @{spot}."
msgstr ""
#: ../plugins/fn-derivatives/options.c:344
msgid "OPT_BS_GAMMA:gamma of a European option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:351
msgid ""
"OPT_BS_DELTA uses the Black-Scholes model to calculate the 'gamma' of a "
"European option struck at @{strike} on an asset with spot price @{spot}. The "
"gamma of an option is the second derivative of its price with respect to the "
"price of the underlying asset."
msgstr ""
#: ../plugins/fn-derivatives/options.c:356
msgid ""
"Gamma is expressed as the rate of change of delta per unit change in @{spot}."
msgstr ""
#: ../plugins/fn-derivatives/options.c:358
msgid "Gamma is the same for calls and puts."
msgstr ""
#: ../plugins/fn-derivatives/options.c:401
msgid "OPT_BS_THETA:theta of a European option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:409
msgid ""
"OPT_BS_DELTA uses the Black-Scholes model to calculate the 'theta' of a "
"European option struck at @{strike} on an asset with spot price @{spot}. The "
"theta of an option is the rate of change of its price with respect to time "
"to expiry."
msgstr ""
#: ../plugins/fn-derivatives/options.c:414
msgid ""
"Theta is expressed as the negative of the rate of change of the option "
"value, per 365.25 days."
msgstr ""
#: ../plugins/fn-derivatives/options.c:445
msgid "OPT_BS_VEGA:vega of a European option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:452
msgid ""
"OPT_BS_DELTA uses the Black-Scholes model to calculate the 'vega' of a "
"European option struck at @{strike} on an asset with spot price @{spot}. The "
"vega of an option is the rate of change of its price with respect to "
"volatility."
msgstr ""
#: ../plugins/fn-derivatives/options.c:457
msgid "Vega is the same for calls and puts."
msgstr ""
#: ../plugins/fn-derivatives/options.c:459
#, no-c-format
msgid ""
"Vega is expressed as the rate of change of option value, per 100% volatility."
msgstr ""
#: ../plugins/fn-derivatives/options.c:510
msgid "OPT_BS_RHO:rho of a European option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:518
msgid ""
"OPT_BS_DELTA uses the Black-Scholes model to calculate the 'rho' of a "
"European option struck at @{strike} on an asset with spot price @{spot}. The "
"rho of an option is the rate of change of its price with respect to the risk "
"free interest rate."
msgstr ""
#: ../plugins/fn-derivatives/options.c:524
#, no-c-format
msgid ""
"Rho is expressed as the rate of change of the option value, per 100% change "
"in @{rate}."
msgstr ""
#: ../plugins/fn-derivatives/options.c:566
msgid "OPT_BS_CARRYCOST:elasticity of a European option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:574
msgid ""
"OPT_BS_CARRYCOST uses the Black-Scholes model to calculate the 'elasticity' "
"of a European option struck at @{strike} on an asset with spot price @"
"{spot}. The elasticity of an option is the rate of change of its price with "
"respect to its @{cost_of_carry}."
msgstr ""
#: ../plugins/fn-derivatives/options.c:580
#, no-c-format
msgid ""
"Elasticity is expressed as the rate of change of the option value, per 100% "
"volatility."
msgstr ""
#: ../plugins/fn-derivatives/options.c:624
msgid "OPT_GARMAN_KOHLHAGEN:theoretical price of a European currency option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:628
msgid "time:number of days to exercise"
msgstr ""
#: ../plugins/fn-derivatives/options.c:629
msgid ""
"domestic_rate:domestic risk-free interest rate to the exercise date in "
"percent"
msgstr ""
#: ../plugins/fn-derivatives/options.c:630
msgid ""
"foreign_rate:foreign risk-free interest rate to the exercise date in percent"
msgstr ""
#: ../plugins/fn-derivatives/options.c:632
msgid ""
"OPT_GARMAN_KOHLHAGEN values the theoretical price of a European currency "
"option struck at @{strike} on an asset with spot price @{spot}."
msgstr ""
#: ../plugins/fn-derivatives/options.c:678
msgid ""
"OPT_FRENCH:theoretical price of a European option adjusted for trading day "
"volatility"
msgstr ""
#: ../plugins/fn-derivatives/options.c:682
msgid ""
"time:ratio of the number of calendar days to exercise and the number of "
"calendar days in the year"
msgstr ""
#: ../plugins/fn-derivatives/options.c:683
msgid ""
"ttime:ratio of the number of trading days to exercise and the number of "
"trading days in the year"
msgstr ""
#: ../plugins/fn-derivatives/options.c:687
msgid ""
"OPT_FRENCH values the theoretical price of a European option adjusted for "
"trading day volatility, struck at @{strike} on an asset with spot price @"
"{spot}."
msgstr ""
#: ../plugins/fn-derivatives/options.c:731
msgid ""
"OPT_JUMP_DIFF:theoretical price of an option according to the Jump Diffusion "
"process"
msgstr ""
#: ../plugins/fn-derivatives/options.c:736
msgid "rate:the annualized rate of interest"
msgstr ""
#: ../plugins/fn-derivatives/options.c:738
msgid "lambda:expected number of 'jumps' per year"
msgstr ""
#: ../plugins/fn-derivatives/options.c:739
msgid "gamma:proportion of volatility explained by the 'jumps'"
msgstr ""
#: ../plugins/fn-derivatives/options.c:740
msgid ""
"OPT_JUMP_DIFF models the theoretical price of an option according to the "
"Jump Diffusion process (Merton)."
msgstr ""
#: ../plugins/fn-derivatives/options.c:818
msgid ""
"OPT_MILTERSEN_SCHWARTZ:theoretical price of options on commodities futures "
"according to Miltersen & Schwartz"
msgstr ""
#: ../plugins/fn-derivatives/options.c:820
msgid "p_t:zero coupon bond with expiry at option maturity"
msgstr ""
#: ../plugins/fn-derivatives/options.c:821
msgid "f_t:futures price"
msgstr ""
#: ../plugins/fn-derivatives/options.c:823
msgid "t1:time to maturity of the option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:824
msgid "t2:time to maturity of the underlying commodity futures contract"
msgstr ""
#: ../plugins/fn-derivatives/options.c:825
msgid "v_s:volatility of the spot commodity price"
msgstr ""
#: ../plugins/fn-derivatives/options.c:826
msgid "v_e:volatility of the future convenience yield"
msgstr ""
#: ../plugins/fn-derivatives/options.c:827
msgid "v_f:volatility of the forward rate of interest"
msgstr ""
#: ../plugins/fn-derivatives/options.c:828
msgid ""
"rho_se:correlation between the spot commodity price and the convenience yield"
msgstr ""
#: ../plugins/fn-derivatives/options.c:829
msgid ""
"rho_sf:correlation between the spot commodity price and the forward interest "
"rate"
msgstr ""
#: ../plugins/fn-derivatives/options.c:830
msgid ""
"rho_ef:correlation between the forward interest rate and the convenience "
"yield"
msgstr ""
#: ../plugins/fn-derivatives/options.c:831
msgid "kappa_e:speed of mean reversion of the convenience yield"
msgstr ""
#: ../plugins/fn-derivatives/options.c:832
msgid "kappa_f:speed of mean reversion of the forward interest rate"
msgstr ""
#: ../plugins/fn-derivatives/options.c:915
msgid ""
"OPT_RGW:theoretical price of an American option according to the Roll-Geske-"
"Whaley approximation"
msgstr ""
#: ../plugins/fn-derivatives/options.c:958
msgid ""
"OPT_BAW_AMER:theoretical price of an option according to the Barone Adesie & "
"Whaley approximation"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1130
msgid ""
"OPT_BJER_STENS:theoretical price of American options according to the "
"Bjerksund & Stensland approximation technique"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1204
msgid "OPT_EXEC:theoretical price of executive stock options"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1212
msgid "lambda:jump rate for executives"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1213
msgid ""
"The model assumes executives forfeit their options if they leave the company."
msgstr ""
#: ../plugins/fn-derivatives/options.c:1242
msgid "OPT_FORWARD_START:theoretical price of forward start options"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1245
msgid ""
"alpha:fraction setting the strike price at the future date @{time_start}"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1246
msgid "time_start:time until the option starts in days"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1294
msgid "OPT_TIME_SWITCH:theoretical price of time switch options"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1298
msgid "a:amount received for each time period"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1300
msgid "m:number of time units the option has already met the condition"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1301
msgid "dt:agreed upon discrete time period expressed as a fraction of a year"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1306
msgid ""
"OPT_TIME_SWITCH models the theoretical price of time switch options. (Pechtl "
"1995). The holder receives @{a} * @{dt} for each period that the asset price "
"was greater than @{strike} (for a call) or below it (for a put)."
msgstr ""
#: ../plugins/fn-derivatives/options.c:1336
msgid "OPT_SIMPLE_CHOOSER:theoretical price of a simple chooser option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1340
msgid "time1:time in years until the holder chooses a put or a call option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1341
msgid "time2:time in years until the chosen option expires"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1385
msgid "OPT_COMPLEX_CHOOSER:theoretical price of a complex chooser option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1387
msgid "strike_call:strike price, if exercised as a call option."
msgstr ""
#: ../plugins/fn-derivatives/options.c:1388
msgid "strike_put:strike price, if exercised as a put option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1389
msgid "time:time in years until the holder chooses a put or a call option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1390
msgid "time_call:time in years to maturity of the call option if chosen"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1391
msgid "time_put:time in years to maturity of the put option if chosen"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1486
msgid "OPT_ON_OPTIONS:theoretical price of options on options"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1487
msgid ""
"type_flag:'cc' for calls on calls, 'cp' for calls on puts, and so on for "
"'pc', and 'pp'."
msgstr ""
#: ../plugins/fn-derivatives/options.c:1489
msgid "strike1:strike price at which the option being valued is struck"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1490
msgid "strike2:strike price at which the underlying option is struck"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1491
msgid "time1:time in years to maturity of the option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1492
msgid "time2:time in years to the maturity of the underlying option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1494
msgid ""
"cost_of_carry:net cost of holding the underlying asset of the underlying "
"option (for common stocks, the risk free rate less the dividend yield)"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1495
msgid ""
"volatility:annualized volatility in price of the underlying asset of the "
"underlying option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1496
msgid "@{time2} ≥ @{time1}"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1562
msgid "OPT_EXTENDIBLE_WRITER:theoretical price of extendible writer options"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1565
msgid "strike1:strike price at which the option is struck"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1566
msgid ""
"strike2:strike price at which the option is re-struck if out of the money at "
"@{time1}"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1567
msgid "time1:initial maturity of the option in years"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1568
msgid "time2:extended maturity in years if chosen"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1572
msgid ""
"OPT_EXTENDIBLE_WRITER models the theoretical price of extendible writer "
"options. These are options that have their maturity extended to @{time2} if "
"the option is out of the money at @{time1}."
msgstr ""
#: ../plugins/fn-derivatives/options.c:1614
msgid ""
"OPT_2_ASSET_CORRELATION:theoretical price of options on 2 assets with "
"correlation @{rho}"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1616
msgid "spot1:spot price of the underlying asset of the first option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1617
msgid "spot2:spot price of the underlying asset of the second option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1618
msgid "strike1:strike prices of the first option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1619
msgid "strike1:strike prices of the second option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1621
msgid ""
"cost_of_carry1:net cost of holding the underlying asset of the first option "
"(for common stocks, the risk free rate less the dividend yield)"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1623
msgid ""
"cost_of_carry2:net cost of holding the underlying asset of the second option "
"(for common stocks, the risk free rate less the dividend yield)"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1626
msgid ""
"volatility1:annualized volatility in price of the underlying asset of the "
"first option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1627
msgid ""
"volatility2:annualized volatility in price of the underlying asset of the "
"second option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1628
msgid "rho:correlation between the two underlying assets"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1629
msgid ""
"OPT_2_ASSET_CORRELATION models the theoretical price of options on 2 assets "
"with correlation @{rho}. The payoff for a call is max(@{spot2} - @"
"{strike2},0) if @{spot1} > @{strike1} or 0 otherwise. The payoff for a put "
"is max (@{strike2} - @{spot2}, 0) if @{spot1} < @{strike1} or 0 otherwise."
msgstr ""
#: ../plugins/fn-derivatives/options.c:1664
msgid ""
"OPT_EURO_EXCHANGE:theoretical price of a European option to exchange assets"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1665
#: ../plugins/fn-derivatives/options.c:1709
msgid "spot1:spot price of asset 1"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1666
#: ../plugins/fn-derivatives/options.c:1710
msgid "spot2:spot price of asset 1"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1667
#: ../plugins/fn-derivatives/options.c:1711
msgid "qty1:quantity of asset 1"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1668
#: ../plugins/fn-derivatives/options.c:1712
msgid "qty2:quantity of asset 2"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1671
#: ../plugins/fn-derivatives/options.c:1715
msgid ""
"cost_of_carry1:net cost of holding asset 1 (for common stocks, the risk free "
"rate less the dividend yield)"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1673
#: ../plugins/fn-derivatives/options.c:1717
msgid ""
"cost_of_carry2:net cost of holding asset 2 (for common stocks, the risk free "
"rate less the dividend yield)"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1675
#: ../plugins/fn-derivatives/options.c:1719
msgid "volatility1:annualized volatility in price of asset 1"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1676
#: ../plugins/fn-derivatives/options.c:1720
msgid "volatility2:annualized volatility in price of asset 2"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1677
#: ../plugins/fn-derivatives/options.c:1721
msgid "rho:correlation between the prices of the two assets"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1678
msgid ""
"OPT_EURO_EXCHANGE models the theoretical price of a European option to "
"exchange one asset with quantity @{qty2} and spot price @{spot2} for another "
"with quantity @{qty1} and spot price @{spot1}."
msgstr ""
#: ../plugins/fn-derivatives/options.c:1708
msgid ""
"OPT_AMER_EXCHANGE:theoretical price of an American option to exchange assets"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1722
msgid ""
"OPT_AMER_EXCHANGE models the theoretical price of an American option to "
"exchange one asset with quantity @{qty2} and spot price @{spot2} for another "
"with quantity @{qty1} and spot price @{spot1}."
msgstr ""
#: ../plugins/fn-derivatives/options.c:1752
msgid ""
"OPT_SPREAD_APPROX:theoretical price of a European option on the spread "
"between two futures contracts"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1754
msgid "fut_price1:price of the first futures contract"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1755
msgid "fut_price2:price of the second futures contract"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1759
msgid ""
"volatility1:annualized volatility in price of the first underlying futures "
"contract"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1760
msgid ""
"volatility2:annualized volatility in price of the second underlying futures "
"contract"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1761
msgid "rho:correlation between the two futures contracts"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1807
msgid ""
"OPT_FLOAT_STRK_LKBK:theoretical price of floating-strike lookback option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1810
#: ../plugins/fn-derivatives/options.c:1874
msgid "spot_min:minimum spot price of the underlying asset so far observed"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1811
#: ../plugins/fn-derivatives/options.c:1875
msgid "spot_max:maximum spot price of the underlying asset so far observed"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1816
msgid ""
"OPT_FLOAT_STRK_LKBK determines the theoretical price of a floating-strike "
"lookback option where the holder of the option may exercise on expiry at the "
"most favourable price observed during the options life of the underlying "
"asset."
msgstr ""
#: ../plugins/fn-derivatives/options.c:1871
msgid "OPT_FIXED_STRK_LKBK:theoretical price of a fixed-strike lookback option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1881
msgid ""
"OPT_FIXED_STRK_LKBK determines the theoretical price of a fixed-strike "
"lookback option where the holder of the option may exercise on expiry at the "
"most favourable price observed during the options life of the underlying "
"asset."
msgstr ""
#: ../plugins/fn-derivatives/options.c:1955
msgid ""
"OPT_BINOMIAL:theoretical price of either an American or European style "
"option using a binomial tree"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1956
msgid ""
"amer_euro_flag:'a' for an American style option or 'e' for a European style "
"option"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1958
msgid "num_time_steps:number of time steps used in the valuation"
msgstr ""
#: ../plugins/fn-derivatives/options.c:1965
msgid ""
"A larger @{num_time_steps} yields greater accuracy but OPT_BINOMIAL is "
"slower to calculate."
msgstr ""
#: ../plugins/fn-eng/functions.c:207
msgid "BASE:string of digits representing the number @{n} in base @{b}"
msgstr ""
#: ../plugins/fn-eng/functions.c:208 ../plugins/fn-math/functions.c:1271
#: ../plugins/fn-numtheory/numtheory.c:578
#: ../plugins/fn-numtheory/numtheory.c:608
msgid "n:integer"
msgstr ""
#: ../plugins/fn-eng/functions.c:209
msgid "b:base (2 ≤ @{b} ≤ 36)"
msgstr ""
#: ../plugins/fn-eng/functions.c:210
msgid "length:minimum length of the resulting string"
msgstr ""
#: ../plugins/fn-eng/functions.c:211
msgid ""
"BASE converts @{n} to its string representation in base @{b}. Leading zeroes "
"will be added to reach the minimum length given by @{length}."
msgstr ""
#: ../plugins/fn-eng/functions.c:236
msgid "BIN2DEC:decimal representation of the binary number @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:237 ../plugins/fn-eng/functions.c:259
#: ../plugins/fn-eng/functions.c:283
msgid ""
"x:a binary number, either as a string or as a number involving only the "
"digits 0 and 1"
msgstr ""
#: ../plugins/fn-eng/functions.c:258
msgid "BIN2OCT: octal representation of the binary number @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:260 ../plugins/fn-eng/functions.c:284
#: ../plugins/fn-eng/functions.c:309 ../plugins/fn-eng/functions.c:333
#: ../plugins/fn-eng/functions.c:356 ../plugins/fn-eng/functions.c:427
#: ../plugins/fn-eng/functions.c:450 ../plugins/fn-eng/functions.c:473
#: ../plugins/fn-eng/functions.c:496
msgid "places:number of digits"
msgstr ""
#: ../plugins/fn-eng/functions.c:261
msgid ""
"If @{places} is given, BIN2OCT pads the result with zeros to achieve exactly "
"@{places} digits. If this is not possible, BIN2OCT returns #NUM!"
msgstr ""
#: ../plugins/fn-eng/functions.c:282
msgid "BIN2HEX: hexadecimal representation of the binary number @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:285
msgid ""
"If @{places} is given, BIN2HEX pads the result with zeros to achieve exactly "
"@{places} digits. If this is not possible, BIN2HEX returns #NUM!"
msgstr ""
#: ../plugins/fn-eng/functions.c:307
msgid "DEC2BIN: binary representation of the decimal number @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:308 ../plugins/fn-eng/functions.c:332
#: ../plugins/fn-eng/functions.c:355 ../plugins/fn-math/functions.c:1270
msgid "x:integer"
msgstr ""
#: ../plugins/fn-eng/functions.c:310
msgid ""
"If @{places} is given, DEC2BIN pads the result with zeros to achieve exactly "
"@{places} digits. If this is not possible, DEC2BIN returns #NUM!"
msgstr ""
#: ../plugins/fn-eng/functions.c:331
msgid "DEC2OCT: octal representation of the decimal number @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:334
msgid ""
"If @{places} is given, DEC2OCT pads the result with zeros to achieve exactly "
"@{places} digits. If this is not possible, DEC2OCT returns #NUM!"
msgstr ""
#: ../plugins/fn-eng/functions.c:354
msgid "DEC2HEX: hexadecimal representation of the decimal number @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:357
msgid ""
"If @{places} is given, DEC2HEX pads the result with zeros to achieve exactly "
"@{places} digits. If this is not possible, DEC2HEX returns #NUM!"
msgstr ""
#: ../plugins/fn-eng/functions.c:377
msgid "DECIMAL:decimal representation of @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:378
msgid "x:number in base @{base}"
msgstr ""
#: ../plugins/fn-eng/functions.c:379
msgid "base:base of @{x}, (2 ≤ @{b} ≤ 36)"
msgstr ""
#: ../plugins/fn-eng/functions.c:401
msgid "OCT2DEC:decimal representation of the octal number @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:402 ../plugins/fn-eng/functions.c:426
#: ../plugins/fn-eng/functions.c:449
msgid "x:a octal number, either as a string or as a number"
msgstr ""
#: ../plugins/fn-eng/functions.c:425
msgid "OCT2BIN:binary representation of the octal number @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:428
msgid ""
"If @{places} is given, OCT2BIN pads the result with zeros to achieve exactly "
"@{places} digits. If this is not possible, OCT2BIN returns #NUM!"
msgstr ""
#: ../plugins/fn-eng/functions.c:448
msgid "OCT2HEX:hexadecimal representation of the octal number @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:451
msgid ""
"If @{places} is given, OCT2HEX pads the result with zeros to achieve exactly "
"@{places} digits. If this is not possible, OCT2HEX returns #NUM!"
msgstr ""
#: ../plugins/fn-eng/functions.c:471
msgid "HEX2BIN:binary representation of the hexadecimal number @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:472 ../plugins/fn-eng/functions.c:495
#: ../plugins/fn-eng/functions.c:518
msgid ""
"x:a hexadecimal number, either as a string or as a number if no A to F are "
"needed"
msgstr ""
#: ../plugins/fn-eng/functions.c:474
msgid ""
"If @{places} is given, HEX2BIN pads the result with zeros to achieve exactly "
"@{places} digits. If this is not possible, HEX2BIN returns #NUM!"
msgstr ""
#: ../plugins/fn-eng/functions.c:494
msgid "HEX2OCT:octal representation of the hexadecimal number @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:497
msgid ""
"If @{places} is given, HEX2OCT pads the result with zeros to achieve exactly "
"@{places} digits. If this is not possible, HEX2OCT returns #NUM!"
msgstr ""
#: ../plugins/fn-eng/functions.c:517
msgid "HEX2DEC:decimal representation of the hexadecimal number @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:540
msgid ""
"BESSELI:Modified Bessel function of the first kind of order @{α} at @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:541 ../plugins/fn-eng/functions.c:579
#: ../plugins/fn-eng/functions.c:603 ../plugins/fn-eng/functions.c:632
msgid "X:number"
msgstr ""
#: ../plugins/fn-eng/functions.c:542 ../plugins/fn-eng/functions.c:580
msgid "α:order (any number)"
msgstr ""
#: ../plugins/fn-eng/functions.c:543 ../plugins/fn-eng/functions.c:581
msgid ""
"If @{x} or @{α} are not numeric, #VALUE! is returned. If @{α} < 0, #NUM! is "
"returned."
msgstr ""
#: ../plugins/fn-eng/functions.c:544 ../plugins/fn-eng/functions.c:582
msgid "This function is Excel compatible if only integer orders @{α} are used."
msgstr ""
#: ../plugins/fn-eng/functions.c:547 ../plugins/fn-eng/functions.c:585
#: ../plugins/fn-eng/functions.c:611
msgid "wiki:en:Bessel_function"
msgstr ""
#: ../plugins/fn-eng/functions.c:578
msgid ""
"BESSELK:Modified Bessel function of the second kind of order @{α} at @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:602
msgid "BESSELJ:Bessel function of the first kind of order @{α} at @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:604 ../plugins/fn-eng/functions.c:633
msgid "α:order (any non-negative integer)"
msgstr ""
#: ../plugins/fn-eng/functions.c:605 ../plugins/fn-eng/functions.c:634
msgid ""
"If @{x} or @{α} are not numeric, #VALUE! is returned. If @{α} < 0, #NUM! is "
"returned. If @{α} is not an integer, it is truncated."
msgstr ""
#: ../plugins/fn-eng/functions.c:631
msgid "BESSELY:Bessel function of the second kind of order @{α} at @{x}"
msgstr ""
#: ../plugins/fn-eng/functions.c:658
msgid "CONVERT:a converted measurement"
msgstr ""
#: ../plugins/fn-eng/functions.c:659 ../plugins/fn-eng/functions.c:1097
#: ../plugins/fn-math/functions.c:223 ../plugins/fn-math/functions.c:242
#: ../plugins/fn-math/functions.c:265 ../plugins/fn-math/functions.c:306
#: ../plugins/fn-math/functions.c:324 ../plugins/fn-math/functions.c:349
#: ../plugins/fn-math/functions.c:438 ../plugins/fn-math/functions.c:709
#: ../plugins/fn-math/functions.c:780 ../plugins/fn-math/functions.c:798
#: ../plugins/fn-math/functions.c:834 ../plugins/fn-math/functions.c:852
#: ../plugins/fn-math/functions.c:869 ../plugins/fn-math/functions.c:900
#: ../plugins/fn-math/functions.c:930 ../plugins/fn-math/functions.c:954
#: ../plugins/fn-math/functions.c:979 ../plugins/fn-math/functions.c:1099
#: ../plugins/fn-math/functions.c:1195 ../plugins/fn-math/functions.c:1616
#: ../plugins/fn-math/functions.c:1653 ../plugins/fn-math/functions.c:1688
#: ../plugins/fn-math/functions.c:1828 ../plugins/fn-math/functions.c:1877
#: ../plugins/fn-math/functions.c:1901 ../plugins/fn-math/functions.c:1942
#: ../plugins/fn-math/functions.c:1989
msgid "x:number"
msgstr ""
#: ../plugins/fn-eng/functions.c:660
msgid "from:unit (string)"
msgstr ""
#: ../plugins/fn-eng/functions.c:661
msgid "to:unit (string)"
msgstr ""
#: ../plugins/fn-eng/functions.c:662
msgid ""
"CONVERT returns a conversion from one measurement system to another. @{x} is "
"a value in @{from} units that is to be converted into @{to} units."
msgstr ""
#: ../plugins/fn-eng/functions.c:664
msgid "If @{from} and @{to} are different types, CONVERT returns #N/A!"
msgstr ""
#: ../plugins/fn-eng/functions.c:665
msgid ""
"@{from} and @{to} can be any of the following:\n"
"\n"
"Weight and mass:\n"
"\t'g' \t\t\tGram\n"
"\t'sg' \t\t\tSlug\n"
"\t'lbm'\t\tPound\n"
"\t'u' \t\t\tU (atomic mass)\n"
"\t'ozm'\t\tOunce\n"
"\n"
"Distance:\n"
"\t'm' \t\tMeter\n"
"\t'mi' \t\tStatute mile\n"
"\t'Nmi' \t\tNautical mile\n"
"\t'in' \t\t\tInch\n"
"\t'ft' \t\t\tFoot\n"
"\t'yd' \t\tYard\n"
"\t'ang' \t\tAngstrom\n"
"\t'Pica'\t\tPica\n"
"\n"
"Time:\n"
"\t'yr' \t\t\tYear\n"
"\t'day' \t\tDay\n"
"\t'hr' \t\t\tHour\n"
"\t'mn' \t\tMinute\n"
"\t'sec' \t\tSecond\n"
"\n"
"Pressure:\n"
"\t'Pa' \t\tPascal\n"
"\t'atm' \t\tAtmosphere\n"
"\t'mmHg'\t\tmm of Mercury\n"
"\n"
"Force:\n"
"\t'N' \t\t\tNewton\n"
"\t'dyn' \t\tDyne\n"
"\t'lbf' \t\t\tPound force\n"
"\n"
"Energy:\n"
"\t'J' \t\t\tJoule\n"
"\t'e' \t\tErg\n"
"\t'c' \t\tThermodynamic calorie\n"
"\t'cal' \t\tIT calorie\n"
"\t'eV' \t\tElectron volt\n"
"\t'HPh' \t\tHorsepower-hour\n"
"\t'Wh' \t\tWatt-hour\n"
"\t'flb' \t\tFoot-pound\n"
"\t'BTU' \t\tBTU\n"
"\n"
"Power:\n"
"\t'HP' \t\tHorsepower\n"
"\t'W' \t\tWatt\n"
"\n"
"Magnetism:\n"
"\t'T' \t\tTesla\n"
"\t'ga' \t\tGauss\n"
"\n"
"Temperature:\n"
"\t'C' \t\tDegree Celsius\n"
"\t'F' \t\tDegree Fahrenheit\n"
"\t'K' \t\tDegree Kelvin\n"
"\n"
"Liquid measure:\n"
"\t'tsp' \t\tTeaspoon\n"
"\t'tbs' \t\tTablespoon\n"
"\t'oz' \t\tFluid ounce\n"
"\t'cup' \t\tCup\n"
"\t'pt' \t\tPint\n"
"\t'qt' \t\tQuart\n"
"\t'gal' \t\tGallon\n"
"\t'l' \t\t\tLiter\n"
"\n"
"For metric units any of the following prefixes can be used:\n"
"\t'Y' \tyotta \t\t1E+24\n"
"\t'Z' \tzetta \t\t1E+21\n"
"\t'E' \texa \t\t1E+18\n"
"\t'P' \tpeta \t\t1E+15\n"
"\t'T' \ttera \t\t1E+12\n"
"\t'G' \tgiga \t\t1E+09\n"
"\t'M' \tmega \t\t1E+06\n"
"\t'k' \tkilo \t\t1E+03\n"
"\t'h' \thecto \t\t1E+02\n"
"\t'e' \tdeca (deka)\t1E+01\n"
"\t'd' \tdeci \t\t1E-01\n"
"\t'c' \tcenti \t\t1E-02\n"
"\t'm' \tmilli \t\t1E-03\n"
"\t'u' \tmicro \t\t1E-06\n"
"\t'n' \tnano \t\t1E-09\n"
"\t'p' \tpico \t\t1E-12\n"
"\t'f' \tfemto \t\t1E-15\n"
"\t'a' \tatto \t\t1E-18\n"
"\t'z' \tzepto \t\t1E-21\n"
"\t'y' \tyocto \t\t1E-24"
msgstr ""
#: ../plugins/fn-eng/functions.c:1064
msgid "ERF:Gauss error function"
msgstr ""
#: ../plugins/fn-eng/functions.c:1065
msgid "lower:lower limit of the integral, defaults to 0"
msgstr ""
#: ../plugins/fn-eng/functions.c:1066
msgid "upper:upper limit of the integral"
msgstr ""
#: ../plugins/fn-eng/functions.c:1067
msgid ""
"ERF returns 2/sqrt(π)* integral from @{lower} to @{upper} of exp(-t*t) dt"
msgstr ""
#: ../plugins/fn-eng/functions.c:1068
msgid ""
"This function is Excel compatible if two arguments are supplied and neither "
"is negative."
msgstr ""
#: ../plugins/fn-eng/functions.c:1072 ../plugins/fn-eng/functions.c:1101
msgid "wiki:en:Error_function"
msgstr ""
#: ../plugins/fn-eng/functions.c:1096
msgid "ERFC:Complementary Gauss error function"
msgstr ""
#: ../plugins/fn-eng/functions.c:1098
msgid "ERFC returns 2/sqrt(π)* integral from @{x} to ∞ of exp(-t*t) dt"
msgstr ""
#: ../plugins/fn-eng/functions.c:1116
msgid "DELTA:Kronecker delta function"
msgstr ""
#: ../plugins/fn-eng/functions.c:1117 ../plugins/fn-eng/functions.c:1140
msgid "x0:number"
msgstr ""
#: ../plugins/fn-eng/functions.c:1118 ../plugins/fn-eng/functions.c:1141
msgid "x1:number, defaults to 0"
msgstr ""
#: ../plugins/fn-eng/functions.c:1119
msgid "DELTA returns 1 if @{x1} = @{x0} and 0 otherwise."
msgstr ""
#: ../plugins/fn-eng/functions.c:1120 ../plugins/fn-eng/functions.c:1143
msgid "If either argument is non-numeric, #VALUE! is returned."
msgstr ""
#: ../plugins/fn-eng/functions.c:1139
msgid "GESTEP:Step function with step at @{x1} evaluated at @{x0}"
msgstr ""
#: ../plugins/fn-eng/functions.c:1142
msgid "GESTEP returns 1 if @{x1} ≤ @{x0} and 0 otherwise."
msgstr ""
#: ../plugins/fn-eng/functions.c:1162
msgid "INVSUMINV:the reciprocal of the sum of reciprocals of the arguments"
msgstr ""
#: ../plugins/fn-eng/functions.c:1163
msgid "x0:non-negative number"
msgstr ""
#: ../plugins/fn-eng/functions.c:1164
msgid "x1:non-negative number"
msgstr ""
#: ../plugins/fn-eng/functions.c:1165
msgid ""
"If any of the arguments is negative, #VALUE! is returned.\n"
"If any argument is zero, the result is zero."
msgstr ""
#: ../plugins/fn-eng/functions.c:1167
msgid ""
"INVSUMINV sum calculates the reciprocal (the inverse) of the sum of "
"reciprocals (inverses) of all its arguments."
msgstr ""
#: ../plugins/fn-erlang/functions.c:105
msgid "PROBBLOCK:probability of blocking"
msgstr ""
#: ../plugins/fn-erlang/functions.c:106 ../plugins/fn-erlang/functions.c:191
msgid "traffic:number of calls"
msgstr ""
#: ../plugins/fn-erlang/functions.c:107 ../plugins/fn-erlang/functions.c:132
#: ../plugins/fn-erlang/functions.c:229
msgid "circuits:number of circuits"
msgstr ""
#: ../plugins/fn-erlang/functions.c:108
msgid ""
"PROBBLOCK returns probability of blocking when @{traffic} calls load into @"
"{circuits} circuits."
msgstr ""
#: ../plugins/fn-erlang/functions.c:110 ../plugins/fn-erlang/functions.c:134
msgid "@{traffic} cannot exceed @{circuits}."
msgstr ""
#: ../plugins/fn-erlang/functions.c:130
msgid "OFFTRAF:predicted number of offered calls"
msgstr ""
#: ../plugins/fn-erlang/functions.c:131
msgid "traffic:number of carried calls"
msgstr ""
#: ../plugins/fn-erlang/functions.c:133
msgid ""
"OFFTRAF returns the predicted number of offered calls given @{traffic} "
"carried calls (taken from measurements) on @{circuits} circuits."
msgstr ""
#: ../plugins/fn-erlang/functions.c:190
msgid "DIMCIRC:number of circuits required"
msgstr ""
#: ../plugins/fn-erlang/functions.c:192 ../plugins/fn-erlang/functions.c:230
msgid "gos:grade of service"
msgstr ""
#: ../plugins/fn-erlang/functions.c:193
msgid ""
"DIMCIRC returns the number of circuits required given @{traffic} calls with "
"grade of service @{gos}."
msgstr ""
#: ../plugins/fn-erlang/functions.c:228
msgid "OFFCAP:traffic capacity"
msgstr ""
#: ../plugins/fn-erlang/functions.c:231
msgid ""
"OFFCAP returns the traffic capacity given @{circuits} circuits with grade of "
"service @{gos}."
msgstr ""
#. *************************************************************************
#: ../plugins/fn-financial/functions.c:53
msgid "@{frequency} may be 1 (annual), 2 (semi-annual), or 4 (quarterly)."
msgstr ""
#: ../plugins/fn-financial/functions.c:56
msgid ""
"If @{type} is 0, the default, payment is at the end of each period. If @"
"{type} is 1, payment is at the beginning of each period."
msgstr ""
#: ../plugins/fn-financial/functions.c:362
msgid "ACCRINT:accrued interest"
msgstr ""
#: ../plugins/fn-financial/functions.c:363
#: ../plugins/fn-financial/functions.c:424
#: ../plugins/fn-financial/functions.c:579
#: ../plugins/fn-financial/functions.c:2426
#: ../plugins/fn-financial/functions.c:2465
#: ../plugins/fn-financial/functions.c:2615
msgid "issue:date of issue"
msgstr ""
#: ../plugins/fn-financial/functions.c:364
msgid "first_interest:date of first interest payment"
msgstr ""
#: ../plugins/fn-financial/functions.c:365
#: ../plugins/fn-financial/functions.c:462
#: ../plugins/fn-financial/functions.c:500
#: ../plugins/fn-financial/functions.c:541
#: ../plugins/fn-financial/functions.c:577
#: ../plugins/fn-financial/functions.c:622
#: ../plugins/fn-financial/functions.c:1060
#: ../plugins/fn-financial/functions.c:1098
#: ../plugins/fn-financial/functions.c:1132
#: ../plugins/fn-financial/functions.c:1864
#: ../plugins/fn-financial/functions.c:2220
#: ../plugins/fn-financial/functions.c:2270
#: ../plugins/fn-financial/functions.c:2379
#: ../plugins/fn-financial/functions.c:2424
#: ../plugins/fn-financial/functions.c:2463
#: ../plugins/fn-financial/functions.c:2613
#: ../plugins/fn-financial/functions.c:2709
#: ../plugins/fn-financial/functions.c:2787
#: ../plugins/fn-financial/functions.c:2959
#: ../plugins/fn-financial/functions.c:2983
#: ../plugins/fn-financial/functions.c:3007
#: ../plugins/fn-financial/functions.c:3031
#: ../plugins/fn-financial/functions.c:3057
#: ../plugins/fn-financial/functions.c:3083
#: ../plugins/fn-financial/functions.c:3195
msgid "settlement:settlement date"
msgstr ""
#: ../plugins/fn-financial/functions.c:366
#: ../plugins/fn-financial/functions.c:426
#: ../plugins/fn-financial/functions.c:503
#: ../plugins/fn-financial/functions.c:660
#: ../plugins/fn-financial/functions.c:2222
#: ../plugins/fn-financial/functions.c:2272
#: ../plugins/fn-financial/functions.c:2427
#: ../plugins/fn-financial/functions.c:2467
#: ../plugins/fn-financial/functions.c:2617
#: ../plugins/fn-financial/functions.c:2712
#: ../plugins/fn-financial/functions.c:2790
msgid "rate:nominal annual interest rate"
msgstr ""
#: ../plugins/fn-financial/functions.c:367
#: ../plugins/fn-financial/functions.c:427
msgid "par:par value"
msgstr ""
#: ../plugins/fn-financial/functions.c:368
#: ../plugins/fn-financial/functions.c:1868
#: ../plugins/fn-financial/functions.c:2225
#: ../plugins/fn-financial/functions.c:2275
#: ../plugins/fn-financial/functions.c:2470
#: ../plugins/fn-financial/functions.c:2620
#: ../plugins/fn-financial/functions.c:2715
#: ../plugins/fn-financial/functions.c:2793
#: ../plugins/fn-financial/functions.c:2961
#: ../plugins/fn-financial/functions.c:2985
#: ../plugins/fn-financial/functions.c:3009
#: ../plugins/fn-financial/functions.c:3033
#: ../plugins/fn-financial/functions.c:3059
#: ../plugins/fn-financial/functions.c:3085
#: ../plugins/fn-financial/functions.c:3199
msgid "frequency:number of interest payments per year"
msgstr ""
#: ../plugins/fn-financial/functions.c:370
msgid ""
"ACCRINT calculates the accrued interest for a security that pays periodic "
"interest."
msgstr ""
#: ../plugins/fn-financial/functions.c:423
msgid "ACCRINTM:accrued interest"
msgstr ""
#: ../plugins/fn-financial/functions.c:425
#: ../plugins/fn-financial/functions.c:463
#: ../plugins/fn-financial/functions.c:501
#: ../plugins/fn-financial/functions.c:542
#: ../plugins/fn-financial/functions.c:578
#: ../plugins/fn-financial/functions.c:623
#: ../plugins/fn-financial/functions.c:1061
#: ../plugins/fn-financial/functions.c:1099
#: ../plugins/fn-financial/functions.c:1133
#: ../plugins/fn-financial/functions.c:1865
#: ../plugins/fn-financial/functions.c:2221
#: ../plugins/fn-financial/functions.c:2271
#: ../plugins/fn-financial/functions.c:2380
#: ../plugins/fn-financial/functions.c:2425
#: ../plugins/fn-financial/functions.c:2464
#: ../plugins/fn-financial/functions.c:2614
#: ../plugins/fn-financial/functions.c:2710
#: ../plugins/fn-financial/functions.c:2788
#: ../plugins/fn-financial/functions.c:2960
#: ../plugins/fn-financial/functions.c:2984
#: ../plugins/fn-financial/functions.c:3008
#: ../plugins/fn-financial/functions.c:3032
#: ../plugins/fn-financial/functions.c:3058
#: ../plugins/fn-financial/functions.c:3084
#: ../plugins/fn-financial/functions.c:3196
msgid "maturity:maturity date"
msgstr ""
#: ../plugins/fn-financial/functions.c:429
msgid "ACCRINT calculates the accrued interest from @{issue} to @{maturity}."
msgstr ""
#: ../plugins/fn-financial/functions.c:430
msgid "@{par} defaults to $1000."
msgstr ""
#: ../plugins/fn-financial/functions.c:461
msgid "INTRATE:interest rate"
msgstr ""
#: ../plugins/fn-financial/functions.c:464
#: ../plugins/fn-financial/functions.c:502
msgid "investment:amount paid on settlement"
msgstr ""
#: ../plugins/fn-financial/functions.c:465
#: ../plugins/fn-financial/functions.c:544
#: ../plugins/fn-financial/functions.c:625
#: ../plugins/fn-financial/functions.c:2224
#: ../plugins/fn-financial/functions.c:2274
#: ../plugins/fn-financial/functions.c:2382
#: ../plugins/fn-financial/functions.c:2469
#: ../plugins/fn-financial/functions.c:2619
#: ../plugins/fn-financial/functions.c:2714
#: ../plugins/fn-financial/functions.c:2792
msgid "redemption:amount received at maturity"
msgstr ""
#: ../plugins/fn-financial/functions.c:467
msgid "INTRATE calculates the interest of a fully vested security."
msgstr ""
#: ../plugins/fn-financial/functions.c:499
msgid "RECEIVED:amount to be received at maturity"
msgstr ""
#: ../plugins/fn-financial/functions.c:505
msgid "RECEIVED calculates the amount to be received when a security matures."
msgstr ""
#: ../plugins/fn-financial/functions.c:540
msgid "PRICEDISC:discounted price"
msgstr ""
#: ../plugins/fn-financial/functions.c:543
#: ../plugins/fn-financial/functions.c:580
#: ../plugins/fn-financial/functions.c:1062
#: ../plugins/fn-financial/functions.c:1100
msgid "discount:annual rate at which to discount"
msgstr ""
#: ../plugins/fn-financial/functions.c:546
msgid ""
"PRICEDISC calculates the price per $100 face value of a bond that does not "
"pay interest at maturity."
msgstr ""
#: ../plugins/fn-financial/functions.c:576
msgid "PRICEMAT:price at maturity"
msgstr ""
#: ../plugins/fn-financial/functions.c:581
#: ../plugins/fn-financial/functions.c:1867
#: ../plugins/fn-financial/functions.c:2223
#: ../plugins/fn-financial/functions.c:2468
#: ../plugins/fn-financial/functions.c:2713
#: ../plugins/fn-financial/functions.c:3198
msgid "yield:annual yield of security"
msgstr ""
#: ../plugins/fn-financial/functions.c:583
msgid ""
"PRICEMAT calculates the price per $100 face value of a bond that pays "
"interest at maturity."
msgstr ""
#: ../plugins/fn-financial/functions.c:621
msgid "DISC:discount rate"
msgstr ""
#: ../plugins/fn-financial/functions.c:624
msgid "par:price per $100 face value"
msgstr ""
#: ../plugins/fn-financial/functions.c:627
msgid "DISC calculates the discount rate for a security."
msgstr ""
#: ../plugins/fn-financial/functions.c:628
msgid "@{redemption} is the redemption value per $100 face value."
msgstr ""
#: ../plugins/fn-financial/functions.c:659
msgid "EFFECT:effective interest rate"
msgstr ""
#: ../plugins/fn-financial/functions.c:661
#: ../plugins/fn-financial/functions.c:686
msgid "nper:number of periods used for compounding"
msgstr ""
#: ../plugins/fn-financial/functions.c:662
msgid ""
"EFFECT calculates the effective interest rate using the formula (1+@{rate}/@"
"{nper})^@{nper}-1."
msgstr ""
#: ../plugins/fn-financial/functions.c:684
msgid "NOMINAL:nominal interest rate"
msgstr ""
#: ../plugins/fn-financial/functions.c:685
#: ../plugins/fn-financial/functions.c:710
#: ../plugins/fn-financial/functions.c:1516
#: ../plugins/fn-financial/functions.c:1702
#: ../plugins/fn-financial/functions.c:1732
#: ../plugins/fn-financial/functions.c:1772
#: ../plugins/fn-financial/functions.c:1816
#: ../plugins/fn-financial/functions.c:1908
#: ../plugins/fn-financial/functions.c:3107
#: ../plugins/fn-financial/functions.c:3151
msgid "rate:effective annual interest rate"
msgstr ""
#: ../plugins/fn-financial/functions.c:687
msgid "NOMINAL calculates the nominal interest rate from the effective rate."
msgstr ""
#: ../plugins/fn-financial/functions.c:709
msgid "ISPMT:interest payment for period"
msgstr ""
#: ../plugins/fn-financial/functions.c:711
#: ../plugins/fn-financial/functions.c:1733
#: ../plugins/fn-financial/functions.c:1773
msgid "per:period number"
msgstr ""
#: ../plugins/fn-financial/functions.c:712
#: ../plugins/fn-financial/functions.c:1166
#: ../plugins/fn-financial/functions.c:1433
#: ../plugins/fn-financial/functions.c:1667
#: ../plugins/fn-financial/functions.c:1703
#: ../plugins/fn-financial/functions.c:1734
#: ../plugins/fn-financial/functions.c:1774
#: ../plugins/fn-financial/functions.c:3108
#: ../plugins/fn-financial/functions.c:3152
msgid "nper:number of periods"
msgstr ""
#: ../plugins/fn-financial/functions.c:713
#: ../plugins/fn-financial/functions.c:1168
#: ../plugins/fn-financial/functions.c:1281
#: ../plugins/fn-financial/functions.c:1669
#: ../plugins/fn-financial/functions.c:1704
#: ../plugins/fn-financial/functions.c:1735
#: ../plugins/fn-financial/functions.c:1775
#: ../plugins/fn-financial/functions.c:1818
#: ../plugins/fn-financial/functions.c:1909
#: ../plugins/fn-financial/functions.c:3109
#: ../plugins/fn-financial/functions.c:3153
msgid "pv:present value"
msgstr ""
#: ../plugins/fn-financial/functions.c:714
msgid "ISPMT calculates the interest payment for period number @{per}."
msgstr ""
#: ../plugins/fn-financial/functions.c:745
msgid "DB:depreciation of an asset"
msgstr ""
#: ../plugins/fn-financial/functions.c:746
#: ../plugins/fn-financial/functions.c:796
#: ../plugins/fn-financial/functions.c:845
#: ../plugins/fn-financial/functions.c:875
#: ../plugins/fn-financial/functions.c:2865
#: ../plugins/fn-financial/functions.c:2913
#: ../plugins/fn-financial/functions.c:3240
msgid "cost:initial cost of asset"
msgstr ""
#: ../plugins/fn-financial/functions.c:747
#: ../plugins/fn-financial/functions.c:797
#: ../plugins/fn-financial/functions.c:846
#: ../plugins/fn-financial/functions.c:876
#: ../plugins/fn-financial/functions.c:2868
#: ../plugins/fn-financial/functions.c:2916
#: ../plugins/fn-financial/functions.c:3241
msgid "salvage:value after depreciation"
msgstr ""
#: ../plugins/fn-financial/functions.c:748
#: ../plugins/fn-financial/functions.c:798
#: ../plugins/fn-financial/functions.c:847
#: ../plugins/fn-financial/functions.c:877
#: ../plugins/fn-financial/functions.c:3242
msgid "life:number of periods"
msgstr ""
#: ../plugins/fn-financial/functions.c:749
#: ../plugins/fn-financial/functions.c:799
#: ../plugins/fn-financial/functions.c:878
#: ../plugins/fn-financial/functions.c:2869
#: ../plugins/fn-financial/functions.c:2917
msgid "period:subject period"
msgstr ""
#: ../plugins/fn-financial/functions.c:750
msgid "month:number of months in first year of depreciation"
msgstr ""
#: ../plugins/fn-financial/functions.c:751
msgid ""
"DB calculates the depreciation of an asset for a given period using the "
"fixed-declining balance method."
msgstr ""
#: ../plugins/fn-financial/functions.c:795
msgid "DDB:depreciation of an asset"
msgstr ""
#: ../plugins/fn-financial/functions.c:800
#: ../plugins/fn-financial/functions.c:3245
msgid "factor:factor at which the balance declines"
msgstr ""
#: ../plugins/fn-financial/functions.c:801
msgid ""
"DDB calculates the depreciation of an asset for a given period using the "
"double-declining balance method."
msgstr ""
#: ../plugins/fn-financial/functions.c:844
msgid "SLN:depreciation of an asset"
msgstr ""
#: ../plugins/fn-financial/functions.c:848
msgid ""
"SLN calculates the depreciation of an asset using the straight-line method."
msgstr ""
#: ../plugins/fn-financial/functions.c:874
msgid "SYD:sum-of-years depreciation"
msgstr ""
#: ../plugins/fn-financial/functions.c:879
msgid ""
"SYD calculates the depreciation of an asset using the sum-of-years method."
msgstr ""
#: ../plugins/fn-financial/functions.c:907
msgid "DOLLARDE:convert to decimal dollar amount"
msgstr ""
#: ../plugins/fn-financial/functions.c:908
msgid "fractional_dollar:amount to convert"
msgstr ""
#: ../plugins/fn-financial/functions.c:909
#: ../plugins/fn-financial/functions.c:957
msgid "fraction:denominator"
msgstr ""
#: ../plugins/fn-financial/functions.c:910
msgid ""
"DOLLARDE converts a fractional dollar amount into a decimal amount. This is "
"the inverse of the DOLLARFR function."
msgstr ""
#: ../plugins/fn-financial/functions.c:955
msgid "DOLLARFR:convert to dollar fraction"
msgstr ""
#: ../plugins/fn-financial/functions.c:956
msgid "decimal_dollar:amount to convert"
msgstr ""
#: ../plugins/fn-financial/functions.c:958
msgid ""
"DOLLARFR converts a fractional dollar amount into a fraction which is "
"represented as the digits after the decimal point. For example, 2/8 would "
"be represented as .2 while 3/16 would be represented as .03."
msgstr ""
#: ../plugins/fn-financial/functions.c:1001
msgid "MIRR:modified internal rate of return"
msgstr ""
#: ../plugins/fn-financial/functions.c:1002
#: ../plugins/fn-financial/functions.c:1315
#: ../plugins/fn-financial/functions.c:1517
#: ../plugins/fn-financial/functions.c:1572
msgid "values:cash flow"
msgstr ""
#: ../plugins/fn-financial/functions.c:1003
msgid "finance_rate:interest rate for financing cost"
msgstr ""
#: ../plugins/fn-financial/functions.c:1004
msgid "reinvest_rate:interest rate for reinvestments"
msgstr ""
#: ../plugins/fn-financial/functions.c:1005
msgid ""
"MIRR calculates the modified internal rate of return of a periodic cash flow."
msgstr ""
#: ../plugins/fn-financial/functions.c:1059
msgid "TBILLEQ:bond-equivalent yield for a treasury bill"
msgstr ""
#: ../plugins/fn-financial/functions.c:1063
msgid "TBILLEQ calculates the bond-equivalent yield for a treasury bill."
msgstr ""
#: ../plugins/fn-financial/functions.c:1097
msgid "TBILLPRICE:price of a treasury bill"
msgstr ""
#: ../plugins/fn-financial/functions.c:1101
msgid ""
"TBILLPRICE calculates the price per $100 face value for a treasury bill."
msgstr ""
#: ../plugins/fn-financial/functions.c:1131
msgid "TBILLYIELD:yield of a treasury bill"
msgstr ""
#: ../plugins/fn-financial/functions.c:1134
msgid "price:price"
msgstr ""
#: ../plugins/fn-financial/functions.c:1135
msgid "TBILLYIELD calculates the yield of a treasury bill."
msgstr ""
#: ../plugins/fn-financial/functions.c:1165
msgid "RATE:rate of investment"
msgstr ""
#: ../plugins/fn-financial/functions.c:1167
#: ../plugins/fn-financial/functions.c:1434
#: ../plugins/fn-financial/functions.c:1668
#: ../plugins/fn-financial/functions.c:1817
msgid "pmt:payment at each period"
msgstr ""
#: ../plugins/fn-financial/functions.c:1169
#: ../plugins/fn-financial/functions.c:1282
#: ../plugins/fn-financial/functions.c:1435
#: ../plugins/fn-financial/functions.c:1705
#: ../plugins/fn-financial/functions.c:1736
#: ../plugins/fn-financial/functions.c:1776
#: ../plugins/fn-financial/functions.c:1819
#: ../plugins/fn-financial/functions.c:1910
msgid "fv:future value"
msgstr ""
#: ../plugins/fn-financial/functions.c:1170
#: ../plugins/fn-financial/functions.c:1436
#: ../plugins/fn-financial/functions.c:1670
#: ../plugins/fn-financial/functions.c:1706
#: ../plugins/fn-financial/functions.c:1737
#: ../plugins/fn-financial/functions.c:1777
#: ../plugins/fn-financial/functions.c:1820
#: ../plugins/fn-financial/functions.c:3112
#: ../plugins/fn-financial/functions.c:3156
msgid "type:payment type"
msgstr ""
#: ../plugins/fn-financial/functions.c:1171
#: ../plugins/fn-financial/functions.c:1316
#: ../plugins/fn-financial/functions.c:1574
msgid "guess:an estimate of what the result should be"
msgstr ""
#: ../plugins/fn-financial/functions.c:1172
msgid "RATE calculates the rate of return."
msgstr ""
#: ../plugins/fn-financial/functions.c:1174
#: ../plugins/fn-financial/functions.c:1319
#: ../plugins/fn-financial/functions.c:1576
msgid ""
"The optional @{guess} is needed because there can be more than one valid "
"result. It defaults to 10%."
msgstr ""
#: ../plugins/fn-financial/functions.c:1279
msgid "RRI:equivalent interest rate for an investment increasing in value"
msgstr ""
#: ../plugins/fn-financial/functions.c:1280
msgid "p:number of periods"
msgstr ""
#: ../plugins/fn-financial/functions.c:1283
msgid ""
"RRI determines an equivalent interest rate for an investment that increases "
"in value. The interest is compounded after each complete period."
msgstr ""
#: ../plugins/fn-financial/functions.c:1285
msgid ""
"Note that @{p} need not be an integer but for fractional value the "
"calculated rate is only approximate."
msgstr ""
#: ../plugins/fn-financial/functions.c:1314
msgid "IRR:internal rate of return"
msgstr ""
#: ../plugins/fn-financial/functions.c:1317
msgid ""
"IRR calculates the internal rate of return of a cash flow with periodic "
"payments. @{values} lists the payments (negative values) and receipts "
"(positive values) for each period."
msgstr ""
#: ../plugins/fn-financial/functions.c:1431
msgid "PV:present value"
msgstr ""
#: ../plugins/fn-financial/functions.c:1432
#: ../plugins/fn-financial/functions.c:1472
#: ../plugins/fn-financial/functions.c:1666
msgid "rate:effective interest rate per period"
msgstr ""
#: ../plugins/fn-financial/functions.c:1437
msgid ""
"PV calculates the present value of @{fv} which is @{nper} periods into the "
"future, assuming a periodic payment of @{pmt} and an interest rate of @"
"{rate} per period."
msgstr ""
#: ../plugins/fn-financial/functions.c:1471
msgid "NPV:net present value"
msgstr ""
#: ../plugins/fn-financial/functions.c:1473
msgid "value1:cash flow for period 1"
msgstr ""
#: ../plugins/fn-financial/functions.c:1474
msgid "value2:cash flow for period 2"
msgstr ""
#: ../plugins/fn-financial/functions.c:1475
msgid "NPV calculates the net present value of a cash flow."
msgstr ""
#: ../plugins/fn-financial/functions.c:1515
msgid "XNPV:net present value"
msgstr ""
#: ../plugins/fn-financial/functions.c:1518
#: ../plugins/fn-financial/functions.c:1573
msgid "dates:dates of cash flow"
msgstr ""
#: ../plugins/fn-financial/functions.c:1519
msgid "XNPV calculates the net present value of a cash flow at irregular times"
msgstr ""
#: ../plugins/fn-financial/functions.c:1571
msgid "XIRR:internal rate of return"
msgstr ""
#: ../plugins/fn-financial/functions.c:1575
msgid ""
"XIRR calculates the annualized internal rate of return of a cash flow at "
"arbitrary points in time. @{values} lists the payments (negative values) "
"and receipts (positive values) with one value for each entry in @{dates}."
msgstr ""
#: ../plugins/fn-financial/functions.c:1665
msgid "FV:future value"
msgstr ""
#: ../plugins/fn-financial/functions.c:1671
msgid ""
"FV calculates the future value of @{pv} moved @{nper} periods into the "
"future, assuming a periodic payment of @{pmt} and an interest rate of @"
"{rate} per period."
msgstr ""
#: ../plugins/fn-financial/functions.c:1701
msgid "PMT:payment for annuity"
msgstr ""
#: ../plugins/fn-financial/functions.c:1707
msgid "PMT calculates the payment amount for an annuity."
msgstr ""
#: ../plugins/fn-financial/functions.c:1731
msgid "IPMT:interest payment for period"
msgstr ""
#: ../plugins/fn-financial/functions.c:1738
msgid ""
"IPMT calculates the interest part of an annuity's payment for period number @"
"{per}."
msgstr ""
#: ../plugins/fn-financial/functions.c:1771
msgid "PPMT:interest payment for period"
msgstr ""
#: ../plugins/fn-financial/functions.c:1778
msgid ""
"PPMT calculates the principal part of an annuity's payment for period number "
"@{per}."
msgstr ""
#: ../plugins/fn-financial/functions.c:1815
msgid "NPER:number of periods"
msgstr ""
#: ../plugins/fn-financial/functions.c:1821
msgid ""
"NPER calculates the number of periods of an investment based on periodic "
"constant payments and a constant interest rate."
msgstr ""
#: ../plugins/fn-financial/functions.c:1863
msgid "DURATION:the duration of a security"
msgstr ""
#: ../plugins/fn-financial/functions.c:1866
#: ../plugins/fn-financial/functions.c:3197
msgid "coupon:annual coupon rate"
msgstr ""
#: ../plugins/fn-financial/functions.c:1870
msgid "DURATION calculates the duration of a security."
msgstr ""
#: ../plugins/fn-financial/functions.c:1907
msgid "G_DURATION:the duration of a investment"
msgstr ""
#: ../plugins/fn-financial/functions.c:1911
msgid ""
"G_DURATION calculates the number of periods needed for an investment to "
"attain a desired value."
msgstr ""
#: ../plugins/fn-financial/functions.c:1912
msgid "G_DURATION is the OpenFormula function PDURATION."
msgstr ""
#: ../plugins/fn-financial/functions.c:1940
msgid "FVSCHEDULE:future value"
msgstr ""
#: ../plugins/fn-financial/functions.c:1941
msgid "principal:initial value"
msgstr ""
#: ../plugins/fn-financial/functions.c:1942
msgid "schedule:range of interest rates"
msgstr ""
#: ../plugins/fn-financial/functions.c:1943
msgid ""
"FVSCHEDULE calculates the future value of @{principal} after applying a "
"range of interest rates with compounding."
msgstr ""
#: ../plugins/fn-financial/functions.c:1976
msgid "EURO:equivalent of 1 EUR"
msgstr ""
#: ../plugins/fn-financial/functions.c:1977
msgid "currency:three-letter currency code"
msgstr ""
#: ../plugins/fn-financial/functions.c:1978
msgid ""
"EURO calculates the national currency amount corresponding to 1 EUR for any "
"of the national currencies that were replaced by the Euro on its "
"introduction."
msgstr ""
#: ../plugins/fn-financial/functions.c:1979
msgid ""
"@{currency} must be one of ATS (Austria), BEF (Belgium), CYP (Cyprus), DEM "
"(Germany), ESP (Spain), EUR (Euro), FIM (Finland), FRF (France), GRD "
"(Greece), IEP (Ireland), ITL (Italy), LUF (Luxembourg), MTL (Malta), NLG "
"(The Netherlands), PTE (Portugal), SIT (Slovenia), or SKK (Slovakia)."
msgstr ""
#: ../plugins/fn-financial/functions.c:1997
#: ../plugins/fn-financial/functions.c:2176
msgid "This function is not likely to be useful anymore."
msgstr ""
#: ../plugins/fn-financial/functions.c:2168
msgid "EUROCONVERT:pre-Euro amount from one currency to another"
msgstr ""
#: ../plugins/fn-financial/functions.c:2169
msgid "n:amount"
msgstr ""
#: ../plugins/fn-financial/functions.c:2170
msgid "source:three-letter source currency code"
msgstr ""
#: ../plugins/fn-financial/functions.c:2171
msgid "target:three-letter target currency code"
msgstr ""
#: ../plugins/fn-financial/functions.c:2172
msgid ""
"full_precision:if true, the result is not rounded; if false the result is "
"rounded to 0 or 2 decimals depending on the target currency; defaults to "
"false."
msgstr ""
#: ../plugins/fn-financial/functions.c:2173
msgid ""
"triangulation_precision:number of digits (at least 3) to be rounded to after "
"the source currency has been converted to euro; omitting this argument "
"results in no rounding."
msgstr ""
#: ../plugins/fn-financial/functions.c:2174
msgid ""
"EUROCONVERT converts @{n} units of currency @{source} to currency @"
"{target}. The rates used are the official ones used on the introduction of "
"the Euro."
msgstr ""
#: ../plugins/fn-financial/functions.c:2175
msgid ""
"@{source} and @{target} must be one of the currencies listed for the EURO "
"function."
msgstr ""
#: ../plugins/fn-financial/functions.c:2219
msgid "PRICE:price of a security"
msgstr ""
#: ../plugins/fn-financial/functions.c:2227
msgid ""
"PRICE calculates the price per $100 face value of a security that pays "
"periodic interest."
msgstr ""
#: ../plugins/fn-financial/functions.c:2269
msgid "YIELD:yield of a security"
msgstr ""
#: ../plugins/fn-financial/functions.c:2273
#: ../plugins/fn-financial/functions.c:2381
#: ../plugins/fn-financial/functions.c:2428
#: ../plugins/fn-financial/functions.c:2618
#: ../plugins/fn-financial/functions.c:2791
msgid "price:price of security"
msgstr ""
#: ../plugins/fn-financial/functions.c:2277
msgid "YIELD calculates the yield of a security that pays periodic interest."
msgstr ""
#: ../plugins/fn-financial/functions.c:2378
msgid "YIELDDISC:yield of a discounted security"
msgstr ""
#: ../plugins/fn-financial/functions.c:2384
msgid "YIELDDISC calculates the yield of a discounted security."
msgstr ""
#: ../plugins/fn-financial/functions.c:2423
msgid "YIELDMAT:yield of a security"
msgstr ""
#: ../plugins/fn-financial/functions.c:2430
msgid ""
"YIELDMAT calculates the yield of a security for which the interest is paid "
"at maturity date."
msgstr ""
#: ../plugins/fn-financial/functions.c:2462
msgid "ODDFPRICE:price of a security that has an odd first period"
msgstr ""
#: ../plugins/fn-financial/functions.c:2466
#: ../plugins/fn-financial/functions.c:2616
msgid "first_interest:first interest date"
msgstr ""
#: ../plugins/fn-financial/functions.c:2472
msgid ""
"ODDFPRICE calculates the price per $100 face value of a security that pays "
"periodic interest, but has an odd first period."
msgstr ""
#: ../plugins/fn-financial/functions.c:2612
msgid "ODDFYIELD:yield of a security that has an odd first period"
msgstr ""
#: ../plugins/fn-financial/functions.c:2622
msgid ""
"ODDFYIELD calculates the yield of a security that pays periodic interest, "
"but has an odd first period."
msgstr ""
#: ../plugins/fn-financial/functions.c:2708
msgid "ODDLPRICE:price of a security that has an odd last period"
msgstr ""
#: ../plugins/fn-financial/functions.c:2711
#: ../plugins/fn-financial/functions.c:2789
msgid "last_interest:last interest date"
msgstr ""
#: ../plugins/fn-financial/functions.c:2717
msgid ""
"ODDLPRICE calculates the price per $100 face value of a security that pays "
"periodic interest, but has an odd last period."
msgstr ""
#: ../plugins/fn-financial/functions.c:2786
msgid "ODDLYIELD:yield of a security that has an odd last period"
msgstr ""
#: ../plugins/fn-financial/functions.c:2795
msgid ""
"ODDLYIELD calculates the yield of a security that pays periodic interest, "
"but has an odd last period."
msgstr ""
#: ../plugins/fn-financial/functions.c:2864
msgid "AMORDEGRC:depreciation of an asset using French accounting conventions"
msgstr ""
#: ../plugins/fn-financial/functions.c:2866
#: ../plugins/fn-financial/functions.c:2914
msgid "purchase_date:date of purchase"
msgstr ""
#: ../plugins/fn-financial/functions.c:2867
#: ../plugins/fn-financial/functions.c:2915
msgid "first_period:end of first period"
msgstr ""
#: ../plugins/fn-financial/functions.c:2870
#: ../plugins/fn-financial/functions.c:2918
msgid "rate:depreciation rate"
msgstr ""
#: ../plugins/fn-financial/functions.c:2873
msgid ""
"AMORDEGRC calculates the depreciation of an asset using French accounting "
"conventions. Assets purchased in the middle of a period take prorated "
"depreciation into account. This is similar to AMORLINC, except that a "
"depreciation coefficient is applied in the calculation depending on the life "
"of the assets."
msgstr ""
#: ../plugins/fn-financial/functions.c:2876
msgid "Named for AMORtissement DEGRessif Comptabilite."
msgstr ""
#: ../plugins/fn-financial/functions.c:2912
msgid "AMORLINC:depreciation of an asset using French accounting conventions"
msgstr ""
#: ../plugins/fn-financial/functions.c:2921
msgid ""
"AMORLINC calculates the depreciation of an asset using French accounting "
"conventions. Assets purchased in the middle of a period take prorated "
"depreciation into account. "
msgstr ""
#: ../plugins/fn-financial/functions.c:2923
msgid "Named for AMORtissement LINeaire Comptabilite."
msgstr ""
#: ../plugins/fn-financial/functions.c:2958
msgid "COUPDAYBS:number of days from coupon period to settlement"
msgstr ""
#: ../plugins/fn-financial/functions.c:2963
#: ../plugins/fn-financial/functions.c:2987
#: ../plugins/fn-financial/functions.c:3011
#: ../plugins/fn-financial/functions.c:3035
#: ../plugins/fn-financial/functions.c:3061
#: ../plugins/fn-financial/functions.c:3087
msgid "eom:end-of-month flag"
msgstr ""
#: ../plugins/fn-financial/functions.c:2964
msgid ""
"COUPDAYBS calculates the number of days from the beginning of the coupon "
"period to the settlement date."
msgstr ""
#: ../plugins/fn-financial/functions.c:2982
msgid "COUPDAYS:number of days in the coupon period of the settlement date"
msgstr ""
#: ../plugins/fn-financial/functions.c:2988
msgid ""
"COUPDAYS calculates the number of days in the coupon period of the "
"settlement date."
msgstr ""
#: ../plugins/fn-financial/functions.c:3006
msgid ""
"COUPDAYSNC:number of days from the settlement date to the next coupon period"
msgstr ""
#: ../plugins/fn-financial/functions.c:3012
msgid ""
"COUPDAYSNC calculates number of days from the settlement date to the next "
"coupon period."
msgstr ""
#: ../plugins/fn-financial/functions.c:3030
msgid "COUPNCD:the next coupon date after settlement"
msgstr ""
#: ../plugins/fn-financial/functions.c:3036
msgid "COUPNCD calculates the coupon date following settlement."
msgstr ""
#: ../plugins/fn-financial/functions.c:3056
msgid "COUPPCD:the last coupon date before settlement"
msgstr ""
#: ../plugins/fn-financial/functions.c:3062
msgid "COUPPCD calculates the coupon date preceding settlement."
msgstr ""
#: ../plugins/fn-financial/functions.c:3082
msgid "COUPNUM:number of coupons"
msgstr ""
#: ../plugins/fn-financial/functions.c:3088
msgid ""
"COUPNUM calculates the number of coupons to be paid between the settlement "
"and maturity dates, rounded up."
msgstr ""
#: ../plugins/fn-financial/functions.c:3106
msgid "CUMIPMT:cumulative interest payment"
msgstr ""
#: ../plugins/fn-financial/functions.c:3110
#: ../plugins/fn-financial/functions.c:3154
#: ../plugins/fn-financial/functions.c:3243
msgid "start_period:first period to accumulate for"
msgstr ""
#: ../plugins/fn-financial/functions.c:3111
#: ../plugins/fn-financial/functions.c:3155
#: ../plugins/fn-financial/functions.c:3244
msgid "end_period:last period to accumulate for"
msgstr ""
#: ../plugins/fn-financial/functions.c:3113
msgid ""
"CUMIPMT calculates the cumulative interest paid on a loan from @"
"{start_period} to @{end_period}."
msgstr ""
#: ../plugins/fn-financial/functions.c:3150
msgid "CUMPRINC:cumulative principal"
msgstr ""
#: ../plugins/fn-financial/functions.c:3157
msgid ""
"CUMPRINC calculates the cumulative principal paid on a loan from @"
"{start_period} to @{end_period}."
msgstr ""
#: ../plugins/fn-financial/functions.c:3194
msgid "MDURATION:the Macauley duration of a security"
msgstr ""
#: ../plugins/fn-financial/functions.c:3201
msgid "MDURATION calculates the Macauley duration of a security."
msgstr ""
#: ../plugins/fn-financial/functions.c:3239
msgid "VDB:depreciation of an asset"
msgstr ""
#: ../plugins/fn-financial/functions.c:3246
msgid "no_switch:do not switch to straight-line depreciation"
msgstr ""
#: ../plugins/fn-financial/functions.c:3247
msgid ""
"VDB calculates the depreciation of an asset for a given period range using "
"the double-declining balance method."
msgstr ""
#: ../plugins/fn-financial/functions.c:3248
msgid ""
"If @{no_switch} is FALSE, the calculation switches to straight-line "
"depreciation when depreciation is greater than the declining balance "
"calculation."
msgstr ""
#: ../plugins/fn-hebrew-date/functions.c:52
msgid "HDATE:Hebrew date"
msgstr ""
#: ../plugins/fn-hebrew-date/functions.c:85
msgid "HDATE_HEB:Hebrew date in Hebrew"
msgstr ""
#: ../plugins/fn-hebrew-date/functions.c:120
msgid "HDATE_MONTH:Hebrew month of Gregorian date"
msgstr ""
#: ../plugins/fn-hebrew-date/functions.c:121
#: ../plugins/fn-hebrew-date/functions.c:148
#: ../plugins/fn-hebrew-date/functions.c:175
#: ../plugins/fn-hebrew-date/functions.c:202
msgid "year:Gregorian year of date"
msgstr ""
#: ../plugins/fn-hebrew-date/functions.c:122
#: ../plugins/fn-hebrew-date/functions.c:149
#: ../plugins/fn-hebrew-date/functions.c:176
#: ../plugins/fn-hebrew-date/functions.c:203
msgid "month:Gregorian month of year"
msgstr ""
#: ../plugins/fn-hebrew-date/functions.c:123
#: ../plugins/fn-hebrew-date/functions.c:150
#: ../plugins/fn-hebrew-date/functions.c:177
#: ../plugins/fn-hebrew-date/functions.c:204
msgid "day:Gregorian day of month"
msgstr ""
#: ../plugins/fn-hebrew-date/functions.c:147
msgid "HDATE_DAY:Hebrew day of Gregorian date"
msgstr ""
#: ../plugins/fn-hebrew-date/functions.c:174
msgid "HDATE_YEAR:Hebrew year of Gregorian date"
msgstr ""
#: ../plugins/fn-hebrew-date/functions.c:201
msgid "HDATE_JULIAN:Julian day number for given Gregorian date"
msgstr ""
#: ../plugins/fn-info/functions.c:68
msgid "CELL:information of @{type} about @{cell}"
msgstr ""
#: ../plugins/fn-info/functions.c:69
msgid "type:string specifying the type of information requested"
msgstr ""
#: ../plugins/fn-info/functions.c:70
msgid "cell:cell reference"
msgstr ""
#: ../plugins/fn-info/functions.c:71
msgid ""
"@{type} specifies the type of information you want to obtain:\n"
" address \t\tReturns the given cell reference as text.\n"
" col \t\tReturns the number of the column in @{cell}.\n"
" color \t\tReturns 0.\n"
" contents \t\tReturns the contents of the cell in @{cell}.\n"
" column \t\tReturns the number of the column in @{cell}.\n"
" columnwidth \tReturns the column width.\n"
" coord \t\tReturns the absolute address of @{cell}.\n"
" datatype \tsame as type\n"
" filename \t\tReturns the name of the file of @{cell}.\n"
" format \t\tReturns the code of the format of the cell.\n"
" formulatype \tsame as type\n"
" locked \t\tReturns 1 if @{cell} is locked.\n"
" parentheses \tReturns 1 if @{cell} contains a negative value\n"
" \t\tand its format displays it with parentheses.\n"
" prefix \t\tReturns a character indicating the horizontal\n"
" \t\talignment of @{cell}.\n"
" prefixcharacter \tsame as prefix\n"
" protect \t\tReturns 1 if @{cell} is locked.\n"
" row \t\tReturns the number of the row in @{cell}.\n"
" sheetname \tReturns the name of the sheet of @{cell}.\n"
" type \t\tReturns \"l\" if @{cell} contains a string, \n"
" \t\t\"v\" if it contains some other value, and \n"
" \t\t\"b\" if @{cell} is blank.\n"
" value \t\tReturns the contents of the cell in @{cell}.\n"
" width \t\tReturns the column width."
msgstr ""
#: ../plugins/fn-info/functions.c:1173
msgid "EXPRESSION:expression in @{cell} as a string"
msgstr ""
#: ../plugins/fn-info/functions.c:1174
msgid "cell:a cell reference"
msgstr ""
#: ../plugins/fn-info/functions.c:1175
msgid "If @{cell} contains no expression, EXPRESSION returns empty."
msgstr ""
#: ../plugins/fn-info/functions.c:1210
msgid "GET.FORMULA:The formula in @{cell} as a string."
msgstr ""
#: ../plugins/fn-info/functions.c:1211 ../plugins/fn-info/functions.c:1253
#: ../plugins/fn-info/functions.c:1816
msgid "cell:the referenced cell"
msgstr ""
#: ../plugins/fn-info/functions.c:1212
msgid "GET.FORMULA is the OpenFormula function FORMULA."
msgstr ""
#: ../plugins/fn-info/functions.c:1213
msgid ""
"If A1 is empty and A2 contains =B1+B2, then\n"
"GET.FORMULA(A2) yields '=B1+B2' and\n"
"GET.FORMULA(A1) yields ''."
msgstr ""
#: ../plugins/fn-info/functions.c:1252
msgid "ISFORMULA:TRUE if @{cell} contains a formula."
msgstr ""
#: ../plugins/fn-info/functions.c:1254
msgid "ISFORMULA is OpenFormula compatible."
msgstr ""
#: ../plugins/fn-info/functions.c:1283
msgid "COUNTBLANK:the number of blank cells in @{range}"
msgstr ""
#: ../plugins/fn-info/functions.c:1284
msgid "range:a cell range"
msgstr ""
#: ../plugins/fn-info/functions.c:1286
msgid "COUNTBLANK(A1:A20) returns the number of blank cell in A1:A20."
msgstr ""
#: ../plugins/fn-info/functions.c:1338
msgid ""
"INFO:information about the current operating environment according to @{type}"
msgstr ""
#: ../plugins/fn-info/functions.c:1340
msgid "type:string giving the type of information requested"
msgstr ""
#: ../plugins/fn-info/functions.c:1341
msgid ""
"INFO returns information about the current operating environment according "
"to @{type}:\n"
" memavail \t\tReturns the amount of memory available, bytes.\n"
" memused \tReturns the amount of memory used (bytes).\n"
" numfile \t\tReturns the number of active worksheets.\n"
" osversion \t\tReturns the operating system version.\n"
" recalc \t\tReturns the recalculation mode (automatic).\n"
" release \t\tReturns the version of Gnumeric as text.\n"
" system \t\tReturns the name of the environment.\n"
" totmem \t\tReturns the amount of total memory available."
msgstr ""
#: ../plugins/fn-info/functions.c:1438
msgid "ISERROR:TRUE if @{value} is any error value"
msgstr ""
#: ../plugins/fn-info/functions.c:1439 ../plugins/fn-info/functions.c:1457
#: ../plugins/fn-info/functions.c:1479 ../plugins/fn-info/functions.c:1569
#: ../plugins/fn-info/functions.c:1607 ../plugins/fn-info/functions.c:1625
#: ../plugins/fn-info/functions.c:1642 ../plugins/fn-info/functions.c:1681
#: ../plugins/fn-info/functions.c:1702 ../plugins/fn-info/functions.c:1752
msgid "value:a value"
msgstr ""
#: ../plugins/fn-info/functions.c:1456
msgid "ISNA:TRUE if @{value} is the #N/A error value."
msgstr ""
#: ../plugins/fn-info/functions.c:1478
msgid "ISERR:TRUE if @{value} is any error value except #N/A"
msgstr ""
#: ../plugins/fn-info/functions.c:1497
msgid "ERROR.TYPE:the type of @error"
msgstr ""
#: ../plugins/fn-info/functions.c:1498
msgid "error:an error"
msgstr ""
#: ../plugins/fn-info/functions.c:1499
msgid ""
"ERROR.TYPE returns an error number corresponding to the given error value. "
"The error numbers for error values are:\n"
"\n"
"\t#DIV/0! \t\t2\n"
"\t#VALUE! \t3\n"
"\t#REF! \t\t4\n"
"\t#NAME? \t5\n"
"\t#NUM! \t6\n"
"\t#N/A \t\t7"
msgstr ""
#: ../plugins/fn-info/functions.c:1533
msgid "NA:the error value #N/A"
msgstr ""
#: ../plugins/fn-info/functions.c:1551
msgid "ERROR:the error with name @{text}"
msgstr ""
#: ../plugins/fn-info/functions.c:1552
msgid "name:string"
msgstr ""
#: ../plugins/fn-info/functions.c:1568
msgid "ISBLANK:TRUE if @{value} is blank."
msgstr ""
#: ../plugins/fn-info/functions.c:1570
msgid ""
"This function checks if a value is blank. Empty cells are blank, but empty "
"strings are not."
msgstr ""
#: ../plugins/fn-info/functions.c:1585
msgid "ISEVEN:TRUE if @{n} is even."
msgstr ""
#: ../plugins/fn-info/functions.c:1586 ../plugins/fn-info/functions.c:1660
msgid "n:number"
msgstr ""
#: ../plugins/fn-info/functions.c:1606
msgid "ISLOGICAL:TRUE if @{value} is a logical value."
msgstr ""
#: ../plugins/fn-info/functions.c:1608
msgid "This function checks if a value is either TRUE or FALSE."
msgstr ""
#: ../plugins/fn-info/functions.c:1624
msgid "ISNONTEXT:TRUE if @{value} is not text."
msgstr ""
#: ../plugins/fn-info/functions.c:1641
msgid "ISNUMBER:TRUE if @{value} is a number."
msgstr ""
#: ../plugins/fn-info/functions.c:1643
msgid ""
"This function checks if a value is a number. Neither TRUE nor FALSE are "
"numbers for this purpose."
msgstr ""
#: ../plugins/fn-info/functions.c:1659
msgid "ISODD:TRUE if @{n} is odd."
msgstr ""
#: ../plugins/fn-info/functions.c:1680
msgid "ISREF:TRUE if @{value} is a reference."
msgstr ""
#: ../plugins/fn-info/functions.c:1682
msgid "This function checks if a value is a cell reference."
msgstr ""
#: ../plugins/fn-info/functions.c:1701
msgid "ISTEXT:TRUE if @{value} is text."
msgstr ""
#: ../plugins/fn-info/functions.c:1719
msgid "N:@{text} converted to a number"
msgstr ""
#: ../plugins/fn-info/functions.c:1720 ../plugins/fn-string/functions.c:318
#: ../plugins/fn-string/functions.c:534 ../plugins/fn-string/functions.c:575
#: ../plugins/fn-string/functions.c:619 ../plugins/fn-string/functions.c:744
#: ../plugins/fn-string/functions.c:968 ../plugins/fn-string/functions.c:1015
#: ../plugins/fn-string/functions.c:1048 ../plugins/fn-string/functions.c:1390
msgid "text:string"
msgstr ""
#: ../plugins/fn-info/functions.c:1721
msgid "If @{text} contains non-numerical text, 0 is returned."
msgstr ""
#: ../plugins/fn-info/functions.c:1724
msgid "=N(\"eleven\")"
msgstr ""
#: ../plugins/fn-info/functions.c:1751
msgid "TYPE:a number indicating the data type of @{value}"
msgstr ""
#: ../plugins/fn-info/functions.c:1753
msgid ""
"TYPE returns a number indicating the data type of @{ value}:\n"
"1 \t= number\n"
"2 \t= text\n"
"4 \t= boolean\n"
"16 \t= error\n"
"64 \t= array"
msgstr ""
#: ../plugins/fn-info/functions.c:1792
msgid "GETENV:the value of execution environment variable @{name}"
msgstr ""
#: ../plugins/fn-info/functions.c:1793
msgid "name:the name of the environment variable"
msgstr ""
#: ../plugins/fn-info/functions.c:1794
msgid "If a variable called @{name} does not exist, #N/A! will be returned."
msgstr ""
#: ../plugins/fn-info/functions.c:1795
msgid "Variable names are case sensitive."
msgstr ""
#: ../plugins/fn-info/functions.c:1815
msgid "GET.LINK:The target of the hyperlink attached to @{cell} as a string."
msgstr ""
#: ../plugins/fn-info/functions.c:1817
msgid ""
"The value return is not updated automatically when the link attached to @"
"{cell} changes but requires a recalculation."
msgstr ""
#: ../plugins/fn-logical/functions.c:44
msgid "AND:logical conjunction"
msgstr ""
#: ../plugins/fn-logical/functions.c:45 ../plugins/fn-logical/functions.c:124
#: ../plugins/fn-logical/functions.c:178
msgid "b0:logical value"
msgstr ""
#: ../plugins/fn-logical/functions.c:46 ../plugins/fn-logical/functions.c:125
#: ../plugins/fn-logical/functions.c:179
msgid "b1:logical value"
msgstr ""
#: ../plugins/fn-logical/functions.c:47
msgid "AND calculates the logical conjunction of its arguments @{b0},@{b1},..."
msgstr ""
#: ../plugins/fn-logical/functions.c:48 ../plugins/fn-logical/functions.c:127
#: ../plugins/fn-logical/functions.c:181
msgid ""
"If an argument is numerical, zero is considered FALSE and anything else TRUE."
msgstr ""
#: ../plugins/fn-logical/functions.c:49 ../plugins/fn-logical/functions.c:102
#: ../plugins/fn-logical/functions.c:128 ../plugins/fn-logical/functions.c:182
msgid "Strings and empty values are ignored."
msgstr ""
#: ../plugins/fn-logical/functions.c:50 ../plugins/fn-logical/functions.c:129
#: ../plugins/fn-logical/functions.c:183
msgid "If no logical values are provided, then the error #VALUE! is returned."
msgstr ""
#: ../plugins/fn-logical/functions.c:51 ../plugins/fn-logical/functions.c:130
#: ../plugins/fn-logical/functions.c:184
msgid ""
"This function is strict: if any argument is an error, the result will be the "
"first such error."
msgstr ""
#: ../plugins/fn-logical/functions.c:57
msgid "wiki:en:Logical_conjunction"
msgstr ""
#: ../plugins/fn-logical/functions.c:98
msgid "NOT:logical negation"
msgstr ""
#: ../plugins/fn-logical/functions.c:99
msgid "b:logical value"
msgstr ""
#: ../plugins/fn-logical/functions.c:100
msgid "NOT calculates the logical negation of its argument."
msgstr ""
#: ../plugins/fn-logical/functions.c:101
msgid ""
"If the argument is numerical, zero is considered FALSE and anything else "
"TRUE."
msgstr ""
#: ../plugins/fn-logical/functions.c:107
msgid "wiki:en:Negation"
msgstr ""
#: ../plugins/fn-logical/functions.c:123
msgid "OR:logical disjunction"
msgstr ""
#: ../plugins/fn-logical/functions.c:126
msgid "OR calculates the logical disjunction of its arguments @{b0},@{b1},..."
msgstr ""
#: ../plugins/fn-logical/functions.c:136
msgid "wiki:en:Logical_disjunction"
msgstr ""
#: ../plugins/fn-logical/functions.c:177
msgid "XOR:logical exclusive disjunction"
msgstr ""
#: ../plugins/fn-logical/functions.c:180
msgid ""
"XOR calculates the logical exclusive disjunction of its arguments @{b0},@"
"{b1},..."
msgstr ""
#: ../plugins/fn-logical/functions.c:189
msgid "wiki:en:Exclusive_disjunction"
msgstr ""
#: ../plugins/fn-logical/functions.c:230
msgid "IFERROR:Test for error."
msgstr ""
#: ../plugins/fn-logical/functions.c:231
msgid "x:value to test for error."
msgstr ""
#: ../plugins/fn-logical/functions.c:232 ../plugins/fn-logical/functions.c:250
msgid "y:alternate value."
msgstr ""
#: ../plugins/fn-logical/functions.c:233
msgid ""
"This function returns the first value, unless that is an error, in which "
"case it returns the second."
msgstr ""
#: ../plugins/fn-logical/functions.c:248
msgid "IFNA:Test for #NA! error."
msgstr ""
#: ../plugins/fn-logical/functions.c:249
msgid "x:value to test for #NA! error."
msgstr ""
#: ../plugins/fn-logical/functions.c:251
msgid ""
"This function returns the first value, unless that is #NA!, in which case it "
"returns the second."
msgstr ""
#: ../plugins/fn-logical/functions.c:267
msgid "TRUE:the value TRUE."
msgstr ""
#: ../plugins/fn-logical/functions.c:268
msgid "TRUE returns the value TRUE."
msgstr ""
#: ../plugins/fn-logical/functions.c:272 ../plugins/fn-logical/functions.c:290
msgid "wiki:en:Logical_value"
msgstr ""
#: ../plugins/fn-logical/functions.c:285
msgid "FALSE:the value FALSE."
msgstr ""
#: ../plugins/fn-logical/functions.c:286
msgid "FALSE returns the value FALSE."
msgstr ""
#: ../plugins/fn-lookup/functions.c:713
msgid "ADDRESS:cell address as text"
msgstr ""
#: ../plugins/fn-lookup/functions.c:714
msgid "row_num:row number"
msgstr ""
#: ../plugins/fn-lookup/functions.c:715
msgid "col_num:column number"
msgstr ""
#: ../plugins/fn-lookup/functions.c:716
msgid ""
"abs_num:1 for an absolute, 2 for a row absolute and column relative, 3 for a "
"row relative and column absolute, and 4 for a relative reference; defaults "
"to 1"
msgstr ""
#: ../plugins/fn-lookup/functions.c:719
msgid ""
"a1:if TRUE, an A1-style reference is provided, otherwise an R1C1-style "
"reference; defaults to TRUE"
msgstr ""
#: ../plugins/fn-lookup/functions.c:721
msgid "text:name of the worksheet, defaults to no sheet"
msgstr ""
#: ../plugins/fn-lookup/functions.c:722
msgid "If @{row_num} or @{col_num} is less than one, ADDRESS returns #VALUE!"
msgstr ""
#: ../plugins/fn-lookup/functions.c:724
msgid "If @{abs_num} is greater than 4 ADDRESS returns #VALUE!"
msgstr ""
#: ../plugins/fn-lookup/functions.c:798
msgid "AREAS:number of areas in @{reference}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:799
msgid "reference:range"
msgstr ""
#: ../plugins/fn-lookup/functions.c:866
msgid "CHOOSE:the (@{index}+1)th argument"
msgstr ""
#: ../plugins/fn-lookup/functions.c:867
msgid "index:positive number"
msgstr ""
#: ../plugins/fn-lookup/functions.c:868
msgid "value1:first value"
msgstr ""
#: ../plugins/fn-lookup/functions.c:869
msgid "value2:second value"
msgstr ""
#: ../plugins/fn-lookup/functions.c:870
msgid "CHOOSE returns its (@{index}+1)th argument."
msgstr ""
#: ../plugins/fn-lookup/functions.c:871
msgid ""
"@{index} is truncated to an integer. If @{index} < 1 or the truncated @"
"{index} > number of values, CHOOSE returns #VALUE!"
msgstr ""
#: ../plugins/fn-lookup/functions.c:913
msgid "VLOOKUP:search the first column of @{range} for @{value}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:914 ../plugins/fn-lookup/functions.c:975
msgid "value:search value"
msgstr ""
#: ../plugins/fn-lookup/functions.c:915 ../plugins/fn-lookup/functions.c:976
msgid "range:range to search"
msgstr ""
#: ../plugins/fn-lookup/functions.c:916
msgid "column:1-based column offset indicating the return values"
msgstr ""
#: ../plugins/fn-lookup/functions.c:917 ../plugins/fn-lookup/functions.c:978
msgid ""
"approximate:if false, an exact match of @{value} must be found; defaults to "
"TRUE"
msgstr ""
#: ../plugins/fn-lookup/functions.c:919 ../plugins/fn-lookup/functions.c:980
msgid "as_index:if true, the 0-based row offset is returned; defaults to FALSE"
msgstr ""
#: ../plugins/fn-lookup/functions.c:921
msgid ""
"VLOOKUP function finds the row in @{range} that has a first cell similar to @"
"{value}. If @{approximate} is not true it finds the row with an exact "
"equality. If @{approximate} is true, it finds the last row with first value "
"less than or equal to @{value}. If @{as_index} is true the 0-based row "
"offset is returned."
msgstr ""
#: ../plugins/fn-lookup/functions.c:928 ../plugins/fn-lookup/functions.c:989
msgid ""
"If @{approximate} is true, then the values must be sorted in order of "
"ascending value."
msgstr ""
#: ../plugins/fn-lookup/functions.c:930
msgid "VLOOKUP returns #REF! if @{row} falls outside @{range}."
msgstr ""
#: ../plugins/fn-lookup/functions.c:974
msgid "HLOOKUP:search the first row of @{range} for @{value}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:977
msgid "row:1-based column offset indicating the return values "
msgstr ""
#: ../plugins/fn-lookup/functions.c:982
msgid ""
"HLOOKUP function finds the row in @{range} that has a first cell similar to @"
"{value}. If @{approximate} is not true it finds the row with an exact "
"equality. If @{approximate} is true, it finds the last row with first value "
"less than or equal to @{value}. If @{as_index} is true the 0-based row "
"offset is returned."
msgstr ""
#: ../plugins/fn-lookup/functions.c:991
msgid "HLOOKUP returns #REF! if @{row} falls outside @{range}."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1035
msgid ""
"LOOKUP:contents of @{vector2} at the corresponding location to @{value} in @"
"{vector1}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1037
msgid "value:value to look up"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1038
msgid "vector1:range to search:"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1039
msgid "vector2:range of return values"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1040
msgid ""
"If @{vector1} has more rows than columns, LOOKUP searches the first row of @"
"{vector1}, otherwise the first column. If @{vector2} is omitted the return "
"value is taken from the last row or column of @{vector1}."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1044
msgid ""
"If LOOKUP can't find @{value} it uses the largest value less than @{value}."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1046
msgid "The data must be sorted."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1047
msgid "If @{value} is smaller than the first value it returns #N/A."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1048
msgid ""
"If the corresponding location does not exist in @{vector2}, it returns #N/A."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1135
msgid "MATCH:the index of @{seek} in @{vector}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1136
msgid "seek:value to find"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1137
msgid "vector:n by 1 or 1 by n range to be searched"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1138
msgid ""
"type:+1 (the default) to find the largest value ≤ @{seek}, 0 to find the "
"first value = @{seek}, or-1 to find the smallest value ≥ @{seek}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1141
msgid "MATCH searches @{vector} for @{seek} and returns the 1-based index."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1142
msgid ""
" For @{type} = -1 the data must be sorted in descending order; for @{type} = "
"+1 the data must be sorted in ascending order."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1144
msgid "If @{seek} could not be found, #N/A is returned."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1145
msgid "If @{vector} is neither n by 1 nor 1 by n, #N/A is returned."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1196
msgid "INDIRECT:contents of the cell pointed to by the @{ref_text} string"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1197
msgid "ref_text:"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1198
msgid ""
"format:if true, @{ref_text} is given in A1-style, otherwise it is given in "
"R1C1 style; defaults to true"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1200
msgid ""
"If @{ref_text} is not a valid reference in the style determined by @"
"{format}, INDIRECT returns #REF!"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1234
msgid "INDEX:reference to a cell in the given @{array}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1235
msgid "array:"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1236
msgid "row:desired row, defaults to 1"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1237
msgid "col:desired column, defaults to 1"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1238
msgid "area:from which area to select a cell, defaults to 1"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1239
msgid ""
"INDEX gives a reference to a cell in the given @{array}. The cell is "
"selected by @{row} and @{col}, which count the rows and columns in the array."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1244
msgid ""
"If the reference falls outside the range of @{array}, INDEX returns #REF!"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1246
msgid ""
"Let us assume that the cells A1, A2, ..., A5 contain numbers 11.4, 17.3, "
"21.3, 25.9, and 40.1. Then INDEX(A1:A5,4,1,1) equals 25.9"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1335
msgid "COLUMN:vector of column numbers"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1336 ../plugins/fn-lookup/functions.c:1488
msgid "x:reference, defaults to the position of the current expression"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1337
msgid ""
"COLUMN function returns a Nx1 array containing the sequence of integers from "
"the first column to the last column of @{reference}."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1340 ../plugins/fn-lookup/functions.c:1492
msgid ""
"If @{reference} is neither an array nor a reference nor a range, returns "
"#VALUE!"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1344
msgid "column() in G13 equals 7."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1384
msgid "COLUMNNUMBER:column number for the given column called @{name}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1385
msgid "name:column name such as \"IV\""
msgstr ""
#: ../plugins/fn-lookup/functions.c:1386
msgid "If @{name} is invalid, COLUMNNUMBER returns #VALUE!"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1411
msgid "COLUMNS:number of columns in @{reference}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1412
msgid "reference:array or area"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1413
msgid ""
"If @{reference} is neither an array nor a reference nor a range, COLUMNS "
"returns #VALUE!"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1429
msgid "OFFSET:an offset cell range"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1430
msgid "range:reference or range"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1431
msgid "row:number of rows to offset @{range}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1432
msgid "col:number of columns to offset @{range}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1433
msgid "height:height of the offset range, defaults to height of @{range}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1434
msgid "width:width of the offset range, defaults to width of @{range}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1435
msgid ""
"OFFSET returns the cell range starting at offset (@{row},@{col}) from @"
"{range} of height @{height} and width @{width}."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1438
msgid "If @{range} is neither a reference nor a range, OFFSET returns #VALUE!"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1487
msgid "ROW:vector of row numbers"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1489
msgid ""
"ROW function returns a 1xN array containing the sequence of integers from "
"the first row to the last row of @{reference}."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1535
msgid "ROWS:number of rows in @{reference}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1536
msgid "reference:array, reference, or range"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1537
msgid ""
"If @{reference} is neither an array nor a reference nor a range, ROWS "
"returns #VALUE!"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1553
msgid "SHEETS:number of sheets in @{reference}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1554
msgid "reference:array, reference, or range, defaults to the maximum range"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1555
msgid ""
"If @{reference} is neither an array nor a reference nor a range, SHEETS "
"returns #VALUE!"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1592
msgid "SHEET:sheet number of @{reference}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1593
msgid ""
"reference:reference or literal sheet name, defaults to the current sheet"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1594
msgid ""
"If @{reference} is neither a reference nor a literal sheet name, SHEETS "
"returns #VALUE!"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1644
msgid "HYPERLINK:second or first arguments"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1645
msgid "link_location:string"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1646
msgid "label:string, optional"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1647
msgid ""
"HYPERLINK function currently returns its 2nd argument, or if that is omitted "
"the 1st argument."
msgstr ""
#: ../plugins/fn-lookup/functions.c:1666
msgid "TRANSPOSE:the transpose of @{matrix}"
msgstr ""
#: ../plugins/fn-lookup/functions.c:1667
msgid "matrix:range"
msgstr ""
#: ../plugins/fn-math/functions.c:48
msgid ""
"Numbers, text and logical values are included in the calculation too. If the "
"cell contains text or the argument evaluates to FALSE, it is counted as "
"value zero (0). If the argument evaluates to TRUE, it is counted as one (1)."
msgstr ""
#: ../plugins/fn-math/functions.c:56
msgid "GCD:the greatest common divisor"
msgstr ""
#: ../plugins/fn-math/functions.c:57 ../plugins/fn-math/functions.c:120
msgid "n0:positive integer"
msgstr ""
#: ../plugins/fn-math/functions.c:58 ../plugins/fn-math/functions.c:121
msgid "n1:positive integer"
msgstr ""
#: ../plugins/fn-math/functions.c:59
msgid ""
"GCD calculates the greatest common divisor of the given numbers @{n0},@"
"{n1},..., the greatest integer that is a divisor of each argument."
msgstr ""
#: ../plugins/fn-math/functions.c:60 ../plugins/fn-math/functions.c:123
msgid "If any of the arguments is not an integer, it is truncated."
msgstr ""
#: ../plugins/fn-math/functions.c:119
msgid "LCM:the least common multiple"
msgstr ""
#: ../plugins/fn-math/functions.c:122
msgid ""
"LCM calculates the least common multiple of the given numbers @{n0},@"
"{n1},..., the smallest integer that is a multiple of each argument."
msgstr ""
#: ../plugins/fn-math/functions.c:175
msgid "GD:Gudermannian function"
msgstr ""
#: ../plugins/fn-math/functions.c:176 ../plugins/fn-math/functions.c:288
#: ../plugins/fn-stat/functions.c:1706
msgid "x:value"
msgstr ""
#: ../plugins/fn-math/functions.c:179
msgid "wolfram:Gudermannian.html"
msgstr ""
#: ../plugins/fn-math/functions.c:180
msgid "wiki:en:Gudermannian_function"
msgstr ""
#: ../plugins/fn-math/functions.c:199
msgid "HYPOT:the square root of the sum of the squares of the arguments."
msgstr ""
#: ../plugins/fn-math/functions.c:200
msgid "n0:number"
msgstr ""
#: ../plugins/fn-math/functions.c:201
msgid "n1:number"
msgstr ""
#: ../plugins/fn-math/functions.c:222
msgid "ABS:absolute value"
msgstr ""
#: ../plugins/fn-math/functions.c:224
msgid ""
"ABS gives the absolute value of @{x}, i.e. the non-negative number of the "
"same magnitude as @{x}."
msgstr ""
#: ../plugins/fn-math/functions.c:241
msgid "ACOS:the arc cosine of @{x}"
msgstr ""
#: ../plugins/fn-math/functions.c:264
msgid "ACOSH:the hyperbolic arc cosine of @{x}"
msgstr ""
#: ../plugins/fn-math/functions.c:287
msgid "ACOT:inverse cotangent of a value"
msgstr ""
#: ../plugins/fn-math/functions.c:291
msgid "wolfram:InverseCotangent.html"
msgstr ""
#: ../plugins/fn-math/functions.c:292 ../plugins/fn-math/functions.c:745
#: ../plugins/fn-math/functions.c:784 ../plugins/fn-math/functions.c:1339
#: ../plugins/fn-math/functions.c:1359 ../plugins/fn-math/functions.c:1399
msgid "wiki:en:Trigonometric_functions"
msgstr ""
#: ../plugins/fn-math/functions.c:305
msgid "ACOTH:inverse hyperbolic cotangent of a value"
msgstr ""
#: ../plugins/fn-math/functions.c:309
msgid "wolfram:InverseHyperbolicCotangent.html"
msgstr ""
#: ../plugins/fn-math/functions.c:310
msgid "wiki:en:Inverse_hyperbolic_function"
msgstr ""
#: ../plugins/fn-math/functions.c:323
msgid "ASIN:the arc sine of @{x}"
msgstr ""
#: ../plugins/fn-math/functions.c:325
msgid ""
"ASIN calculates the arc sine of @{x}; that is the value whose sine is @{x}."
msgstr ""
#: ../plugins/fn-math/functions.c:327
msgid "If @{x} falls outside the range -1 to 1, ASIN returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:348
msgid "ASINH:the inverse hyperbolic sine of @{x}"
msgstr ""
#: ../plugins/fn-math/functions.c:350
msgid ""
"ASINH calculates the inverse hyperbolic sine of @{x}; that is the value "
"whose hyperbolic sine is @{x}."
msgstr ""
#: ../plugins/fn-math/functions.c:367
msgid "ATAN:the arc tangent of @{x}"
msgstr ""
#: ../plugins/fn-math/functions.c:368 ../plugins/fn-math/functions.c:387
#: ../plugins/fn-math/functions.c:742 ../plugins/fn-math/functions.c:762
#: ../plugins/fn-math/functions.c:816 ../plugins/fn-math/functions.c:1334
#: ../plugins/fn-math/functions.c:1353 ../plugins/fn-math/functions.c:1373
#: ../plugins/fn-math/functions.c:1393 ../plugins/fn-math/functions.c:1413
#: ../plugins/fn-math/functions.c:1431 ../plugins/fn-math/functions.c:1566
#: ../plugins/fn-math/functions.c:1583
msgid "x:angle in radians"
msgstr ""
#: ../plugins/fn-math/functions.c:369
msgid ""
"ATAN calculates the arc tangent of @{x}; that is the value whose tangent is @"
"{x}."
msgstr ""
#: ../plugins/fn-math/functions.c:386
msgid "ATANH:the inverse hyperbolic tangent of @{x}"
msgstr ""
#: ../plugins/fn-math/functions.c:388
msgid ""
"ATANH calculates the inverse hyperbolic tangent of @{x}; that is the value "
"whose hyperbolic tangent is @{x}."
msgstr ""
#: ../plugins/fn-math/functions.c:390
msgid "If the absolute value of @{x} is greater than 1.0, ATANH returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:411
msgid "ATAN2:arc tangent of the ratio of @{b1} and @{b2}"
msgstr ""
#: ../plugins/fn-math/functions.c:412
msgid "b1:angle in radians"
msgstr ""
#: ../plugins/fn-math/functions.c:413
msgid "b2:angle in radians"
msgstr ""
#: ../plugins/fn-math/functions.c:414
msgid ""
"ATAN2 calculates the arc tangent of the ratio @{b1}/@{b2} with the sign "
"according to the quadrant containing (@{b1},@{b2})."
msgstr ""
#: ../plugins/fn-math/functions.c:437
msgid "CEIL:smallest integer larger than or equal to @{x}"
msgstr ""
#: ../plugins/fn-math/functions.c:439
msgid "CEIL(@{x}) is the smallest integer that is at least as large as @{x}."
msgstr ""
#: ../plugins/fn-math/functions.c:440
msgid "This function is the OpenFormula function CEILING(@{x})."
msgstr ""
#: ../plugins/fn-math/functions.c:457
msgid "COUNTIF:count of the cells meeting the given @{criteria}"
msgstr ""
#: ../plugins/fn-math/functions.c:458 ../plugins/fn-math/functions.c:531
#: ../plugins/fn-math/functions.c:643
msgid "range:cell area"
msgstr ""
#: ../plugins/fn-math/functions.c:459
msgid "criteria: condition for a cell to be counted"
msgstr ""
#: ../plugins/fn-math/functions.c:530
msgid ""
"SUMIF:sum of the cells in @{actual_range} for which the corresponding cells "
"in the range meet the given @{criteria}"
msgstr ""
#: ../plugins/fn-math/functions.c:532
msgid "criteria: condition for a cell to be summed"
msgstr ""
#: ../plugins/fn-math/functions.c:533 ../plugins/fn-math/functions.c:645
msgid "actual_range: cell area, defaults to @{range}"
msgstr ""
#: ../plugins/fn-math/functions.c:642
msgid ""
"AVERAGEIF:average of the cells in @{actual range} for which the "
"corresponding cells in the range meet the given @{criteria}"
msgstr ""
#: ../plugins/fn-math/functions.c:644
msgid "criteria: condition for a cell to be included"
msgstr ""
#: ../plugins/fn-math/functions.c:708
msgid ""
"CEILING:nearest multiple of @{significance} whose absolute value is at least "
"ABS(@{x})"
msgstr ""
#: ../plugins/fn-math/functions.c:710 ../plugins/fn-math/functions.c:1064
msgid ""
"significance:base multiple (defaults to 1 for @{x} > 0 and -1 for @{x} <0)"
msgstr ""
#: ../plugins/fn-math/functions.c:711
msgid ""
"CEILING(@{x},@{significance}) is the nearest multiple of @{significance} "
"whose absolute value is at least ABS(@{x})."
msgstr ""
#: ../plugins/fn-math/functions.c:712
msgid ""
"If @{x} or @{significance} is non-numeric, CEILING returns a #VALUE! error."
msgstr ""
#: ../plugins/fn-math/functions.c:713
msgid ""
"If @{x} and @{significance} have different signs, CEILING returns a #NUM! "
"error."
msgstr ""
#: ../plugins/fn-math/functions.c:715
msgid ""
"CEILING(@{x}) is exported to ODF as CEILING(@{x},SIGN(@{x}),1). CEILING(@{x},"
"@{significance}) is the OpenFormula function CEILING(@{x},@{significance},1)."
msgstr ""
#: ../plugins/fn-math/functions.c:741
msgid "COS:Cosine function"
msgstr ""
#: ../plugins/fn-math/functions.c:744
msgid "wolfram:Cosine.html"
msgstr ""
#: ../plugins/fn-math/functions.c:761
msgid "COSH:Hyperbolic cosine function"
msgstr ""
#: ../plugins/fn-math/functions.c:779
msgid "COT:cotangent of a value"
msgstr ""
#: ../plugins/fn-math/functions.c:783
msgid "wolfram:Cotangent.html"
msgstr ""
#: ../plugins/fn-math/functions.c:797
msgid "COTH:hyperbolic cotangent of a value"
msgstr ""
#: ../plugins/fn-math/functions.c:801
msgid "wolfram:HyperbolicCotangent.html"
msgstr ""
#: ../plugins/fn-math/functions.c:802 ../plugins/fn-math/functions.c:1379
#: ../plugins/fn-math/functions.c:1419
msgid "wiki:en:Hyperbolic_function"
msgstr ""
#: ../plugins/fn-math/functions.c:815
msgid "DEGREES:Equivalent degrees to @{x} radians."
msgstr ""
#: ../plugins/fn-math/functions.c:833
msgid "EXP:e raised to the power of @{x}"
msgstr ""
#: ../plugins/fn-math/functions.c:835
msgid "e is the base of the natural logarithm."
msgstr ""
#: ../plugins/fn-math/functions.c:851
msgid "EXPM1:EXP(@{x})-1"
msgstr ""
#: ../plugins/fn-math/functions.c:853
msgid ""
"This function has a higher resulting precision than evaluating EXP(@{x})-1."
msgstr ""
#: ../plugins/fn-math/functions.c:868
msgid "FACT:the factorial of @{x}, i.e. @{x}!"
msgstr ""
#: ../plugins/fn-math/functions.c:871
msgid "The domain of this function has been extended using the GAMMA function."
msgstr ""
#: ../plugins/fn-math/functions.c:899
msgid "GAMMA:the Gamma function"
msgstr ""
#: ../plugins/fn-math/functions.c:929
msgid "GAMMALN:natural logarithm of the Gamma function."
msgstr ""
#: ../plugins/fn-math/functions.c:953
msgid "BETA:Euler beta function"
msgstr ""
#: ../plugins/fn-math/functions.c:955 ../plugins/fn-math/functions.c:980
#: ../plugins/fn-math/functions.c:1196
msgid "y:number"
msgstr ""
#: ../plugins/fn-math/functions.c:956
msgid ""
"BETA function returns the value of the Euler beta function extended to all "
"real numbers except 0 and negative integers."
msgstr ""
#: ../plugins/fn-math/functions.c:957
msgid ""
"If @{x}, @{y}, or (@{x} + @{y}) are non-positive integers, BETA returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:961 ../plugins/fn-math/functions.c:986
msgid "wiki:en:Beta_function"
msgstr ""
#: ../plugins/fn-math/functions.c:978
msgid ""
"BETALN:Natural logarithm of the absolute value of the Euler beta function"
msgstr ""
#: ../plugins/fn-math/functions.c:981
msgid ""
"BETALN function returns the natural logarithm of the absolute value of the "
"Euler beta function extended to all real numbers except 0 and negative "
"integers."
msgstr ""
#: ../plugins/fn-math/functions.c:982
msgid ""
"If @{x}, @{y}, or (@{x} + @{y}) are non-positive integers, BETALN returns "
"#NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:1003
msgid "COMBIN:Binomial coefficient"
msgstr ""
#: ../plugins/fn-math/functions.c:1004 ../plugins/fn-math/functions.c:1036
#: ../plugins/fn-math/functions.c:2113
msgid "n:non-negative integer"
msgstr ""
#: ../plugins/fn-math/functions.c:1005 ../plugins/fn-math/functions.c:1037
msgid "k:non-negative integer"
msgstr ""
#: ../plugins/fn-math/functions.c:1006
msgid ""
"COMBIN returns the binomial coefficient \"@{n} choose @{k}\", the number of @"
"{k}-combinations of an @{n}-element set without repetition."
msgstr ""
#: ../plugins/fn-math/functions.c:1009
msgid "If @{n} is less than @{k} COMBIN returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:1014
msgid "wiki:en:Binomial_coefficient"
msgstr ""
#: ../plugins/fn-math/functions.c:1034
msgid ""
"COMBINA:the number of @{k}-combinations of an @{n}-element set with "
"repetition"
msgstr ""
#: ../plugins/fn-math/functions.c:1042
msgid "wiki:en:Multiset"
msgstr ""
#: ../plugins/fn-math/functions.c:1062
msgid ""
"FLOOR:nearest multiple of @{significance} whose absolute value is at most ABS"
"(@{x})."
msgstr ""
#: ../plugins/fn-math/functions.c:1063
msgid "x:number."
msgstr ""
#: ../plugins/fn-math/functions.c:1066
msgid ""
"FLOOR(@{x},@{significance}) is the nearest multiple of @{significance} whose "
"absolute value is at most ABS(@{x})"
msgstr ""
#: ../plugins/fn-math/functions.c:1068
msgid ""
"FLOOR(@{x}) is exported to ODF as FLOOR(@{x},SIGN(@{x}),1). FLOOR(@{x},@"
"{significance}) is the OpenFormula function FLOOR(@{x},@{significance},1)."
msgstr ""
#: ../plugins/fn-math/functions.c:1098
msgid "INT: largest integer not larger than @{x}"
msgstr ""
#: ../plugins/fn-math/functions.c:1117
msgid "LOG:Logarithm"
msgstr ""
#: ../plugins/fn-math/functions.c:1118 ../plugins/fn-math/functions.c:1148
#: ../plugins/fn-math/functions.c:1171 ../plugins/fn-math/functions.c:1226
#: ../plugins/fn-math/functions.c:1248
msgid "x:positive number"
msgstr ""
#: ../plugins/fn-math/functions.c:1119
msgid "base:base of the logarithm, defaults to 10"
msgstr ""
#: ../plugins/fn-math/functions.c:1120
msgid "@{base} must be positive and not equal to 1."
msgstr ""
#: ../plugins/fn-math/functions.c:1121
msgid "If @{x} ≤ 0, LOG returns #NUM! error."
msgstr ""
#: ../plugins/fn-math/functions.c:1147
msgid "LN:the natural logarithm of @{x}."
msgstr ""
#: ../plugins/fn-math/functions.c:1149
msgid "If @{x} ≤ 0, LN returns #NUM! error."
msgstr ""
#: ../plugins/fn-math/functions.c:1170
msgid "LN1P:LN(1+@{x})"
msgstr ""
#: ../plugins/fn-math/functions.c:1172
msgid ""
"LN1P calculates LN(1+@{x}) but yielding a higher precision than evaluating LN"
"(1+@{x})."
msgstr ""
#: ../plugins/fn-math/functions.c:1173
msgid "If @{x} ≤ -1, LN returns #NUM! error."
msgstr ""
#: ../plugins/fn-math/functions.c:1194
msgid "POWER:the value of @{x} raised to the power @{y}."
msgstr ""
#: ../plugins/fn-math/functions.c:1197
msgid "If both @{x} and @{y} equal 0, POWER returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:1198
msgid "If @{x} = 0 and @{y} < 0, POWER returns #DIV/0!"
msgstr ""
#: ../plugins/fn-math/functions.c:1199
msgid "If @{x} < 0 and @{y} is not an integer, POWER returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:1225
msgid "LOG2:the base-2 logarithm of @{x}."
msgstr ""
#: ../plugins/fn-math/functions.c:1227
msgid "If @{x} ≤ 0, LOG2 returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:1247
msgid "LOG10:the base-10 logarithm of @{x}."
msgstr ""
#: ../plugins/fn-math/functions.c:1249
msgid "If @{x} ≤ 0, LOG10 returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:1269
msgid "MOD: the remainder of @{x} under division by @{n}"
msgstr ""
#: ../plugins/fn-math/functions.c:1272
msgid "MOD function returns the remainder when @{x} is divided by @{n}."
msgstr ""
#: ../plugins/fn-math/functions.c:1273
msgid "If @{n} is 0, MOD returns #DIV/0!"
msgstr ""
#: ../plugins/fn-math/functions.c:1315
msgid "RADIANS:the number of radians equivalent to @{x} degrees."
msgstr ""
#: ../plugins/fn-math/functions.c:1316
msgid "x:angle in degrees"
msgstr ""
#: ../plugins/fn-math/functions.c:1333
msgid "SIN:Sine function"
msgstr ""
#: ../plugins/fn-math/functions.c:1338
msgid "wolfram:Sine.html"
msgstr ""
#: ../plugins/fn-math/functions.c:1352
msgid "CSC:Cosecant"
msgstr ""
#: ../plugins/fn-math/functions.c:1354 ../plugins/fn-math/functions.c:1374
#: ../plugins/fn-math/functions.c:1394 ../plugins/fn-math/functions.c:1414
msgid "This function is not Excel compatible."
msgstr ""
#: ../plugins/fn-math/functions.c:1358
msgid "wolfram:Cosecant.html"
msgstr ""
#: ../plugins/fn-math/functions.c:1372
msgid "CSCH:Hyperbolic cosecant"
msgstr ""
#: ../plugins/fn-math/functions.c:1378
msgid "wolfram:HyperbolicCosecant.html"
msgstr ""
#: ../plugins/fn-math/functions.c:1392
msgid "SEC:Secant"
msgstr ""
#: ../plugins/fn-math/functions.c:1395
msgid "SEC(@{x}) is exported to OpenFormula as 1/COS(@{x})."
msgstr ""
#: ../plugins/fn-math/functions.c:1398
msgid "wolfram:Secant.html"
msgstr ""
#: ../plugins/fn-math/functions.c:1412
msgid "SECH:Hyperbolic secant"
msgstr ""
#: ../plugins/fn-math/functions.c:1415
msgid "SECH(@{x}) is exported to OpenFormula as 1/COSH(@{x})."
msgstr ""
#: ../plugins/fn-math/functions.c:1418
msgid "wolfram:HyperbolicSecant.html"
msgstr ""
#: ../plugins/fn-math/functions.c:1430
msgid "SINH:the hyperbolic sine of @{x}"
msgstr ""
#: ../plugins/fn-math/functions.c:1448
msgid "SQRT:square root of @{x}"
msgstr ""
#: ../plugins/fn-math/functions.c:1449 ../plugins/fn-math/functions.c:1855
msgid "x:non-negative number"
msgstr ""
#: ../plugins/fn-math/functions.c:1451
msgid "If @{x} is negative, SQRT returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:1470
msgid "SUMA:sum of all values and cells referenced"
msgstr ""
#: ../plugins/fn-math/functions.c:1471 ../plugins/fn-math/functions.c:1495
msgid "area0:first cell area"
msgstr ""
#: ../plugins/fn-math/functions.c:1472 ../plugins/fn-math/functions.c:1496
msgid "area1:second cell area"
msgstr ""
#: ../plugins/fn-math/functions.c:1494
msgid "SUMSQ:sum of th squares of all values and cells referenced"
msgstr ""
#: ../plugins/fn-math/functions.c:1517
msgid ""
"MULTINOMIAL:Multinomial coefficient (@{x1}+⋯+@{xn}) choose (@{x1},...,@{xn})"
msgstr ""
#: ../plugins/fn-math/functions.c:1518
msgid "x1:first number"
msgstr ""
#: ../plugins/fn-math/functions.c:1519
msgid "x2:second number"
msgstr ""
#: ../plugins/fn-math/functions.c:1520
msgid "xn:nth number"
msgstr ""
#: ../plugins/fn-math/functions.c:1524
msgid "wiki:en:Multinomial_theorem"
msgstr ""
#: ../plugins/fn-math/functions.c:1542
msgid "G_PRODUCT:product of all the values and cells referenced"
msgstr ""
#: ../plugins/fn-math/functions.c:1543
msgid "x1:number"
msgstr ""
#: ../plugins/fn-math/functions.c:1544
msgid "x2:number"
msgstr ""
#: ../plugins/fn-math/functions.c:1545
msgid "Empty cells are ignored and the empty product is 1."
msgstr ""
#: ../plugins/fn-math/functions.c:1565
msgid "TAN:tangent"
msgstr ""
#: ../plugins/fn-math/functions.c:1582
msgid "TANH:hyperbolic tangent"
msgstr ""
#: ../plugins/fn-math/functions.c:1599
msgid "PI:the constant π"
msgstr ""
#: ../plugins/fn-math/functions.c:1600
msgid ""
"This function is Excel compatible, but it returns π with a better precision."
msgstr ""
#: ../plugins/fn-math/functions.c:1615
msgid "TRUNC:@{x} truncated to @{d} digits"
msgstr ""
#: ../plugins/fn-math/functions.c:1617
msgid "x:non-negative integer, defaults to 0"
msgstr ""
#: ../plugins/fn-math/functions.c:1618
msgid ""
"If @{d} is omitted or negative then it defaults to zero. If it is not an "
"integer then it is truncated to an integer."
msgstr ""
#: ../plugins/fn-math/functions.c:1652
msgid "EVEN: @{x} rounded away from 0 to the next even integer"
msgstr ""
#: ../plugins/fn-math/functions.c:1687
msgid "ODD: @{x} rounded away from 0 to the next odd integer"
msgstr ""
#: ../plugins/fn-math/functions.c:1722
msgid "FACTDOUBLE:double factorial"
msgstr ""
#: ../plugins/fn-math/functions.c:1723
msgid "x:non-negative integer"
msgstr ""
#: ../plugins/fn-math/functions.c:1724
msgid "FACTDOUBLE function returns the double factorial @{x}!!"
msgstr ""
#: ../plugins/fn-math/functions.c:1725
msgid ""
"If @{x} is not an integer, it is truncated. If @{x} is negative, FACTDOUBLE "
"returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:1759
msgid "FIB:Fibonacci numbers"
msgstr ""
#: ../plugins/fn-math/functions.c:1760 ../plugins/fn-numtheory/numtheory.c:219
#: ../plugins/fn-numtheory/numtheory.c:253
#: ../plugins/fn-numtheory/numtheory.c:294
#: ../plugins/fn-numtheory/numtheory.c:326
#: ../plugins/fn-numtheory/numtheory.c:386
#: ../plugins/fn-numtheory/numtheory.c:442
#: ../plugins/fn-numtheory/numtheory.c:473
msgid "n:positive integer"
msgstr ""
#: ../plugins/fn-math/functions.c:1761
msgid "FIB(@{n}) is the @{n}th Fibonacci number."
msgstr ""
#: ../plugins/fn-math/functions.c:1762
msgid ""
"If @{n} is not an integer, it is truncated. If it is negative or zero FIB "
"returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:1800
msgid "QUOTIENT:integer portion of a division"
msgstr ""
#: ../plugins/fn-math/functions.c:1801
msgid "numerator:integer"
msgstr ""
#: ../plugins/fn-math/functions.c:1802
msgid "denominator:non-zero integer"
msgstr ""
#: ../plugins/fn-math/functions.c:1803
msgid ""
"QUOTIENT yields the integer portion of the division @{numerator}/@"
"{denominator}.\n"
"QUOTIENT (@{numerator},@{denominator})⨉@{denominator}+MOD(@{numerator},@"
"{denominator})=@{numerator}"
msgstr ""
#: ../plugins/fn-math/functions.c:1827
msgid "SIGN:sign of @{x}"
msgstr ""
#: ../plugins/fn-math/functions.c:1829
msgid ""
"SIGN returns 1 if the @{x} is positive and it returns -1 if @{x} is negative."
msgstr ""
#: ../plugins/fn-math/functions.c:1854
msgid "SQRTPI:the square root of @{x} times π"
msgstr ""
#: ../plugins/fn-math/functions.c:1876
msgid "ROUNDDOWN:@{x} rounded towards 0."
msgstr ""
#: ../plugins/fn-math/functions.c:1878 ../plugins/fn-math/functions.c:1902
#: ../plugins/fn-math/functions.c:1943
msgid "d:integer, defaults to 0"
msgstr ""
#: ../plugins/fn-math/functions.c:1879
msgid ""
"If @{d} is greater than zero, @{x} is rounded toward 0 to the given number "
"of digits.\n"
"If @{d} is zero, @{x} is rounded toward 0 to the next integer.\n"
"If @{d} is less than zero, @{x} is rounded toward 0 to the left of the "
"decimal point"
msgstr ""
#: ../plugins/fn-math/functions.c:1900
msgid "ROUND:rounded @{x}"
msgstr ""
#: ../plugins/fn-math/functions.c:1903
msgid ""
"If @{d} is greater than zero, @{x} is rounded to the given number of "
"digits.\n"
"If @{d} is zero, @{x} is rounded to the next integer.\n"
"If @{d} is less than zero, @{x} is rounded to the left of the decimal point"
msgstr ""
#: ../plugins/fn-math/functions.c:1941
msgid "ROUNDUP:@{x} rounded away from 0."
msgstr ""
#: ../plugins/fn-math/functions.c:1944
msgid ""
"If @{d} is greater than zero, @{x} is rounded away from 0 to the given "
"number of digits.\n"
"If @{d} is zero, @{x} is rounded away from 0 to the next integer.\n"
"If @{d} is less than zero, @{x} is rounded away from 0 to the left of the "
"decimal point"
msgstr ""
#: ../plugins/fn-math/functions.c:1988
msgid "MROUND:@{x} rounded to a multiple of @{m}"
msgstr ""
#: ../plugins/fn-math/functions.c:1990
msgid "m:number"
msgstr ""
#: ../plugins/fn-math/functions.c:1991
msgid "If @{x} and @{m} have different sign, MROUND returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:2034
msgid "ARABIC:The Roman numeral @{roman} as number"
msgstr ""
#: ../plugins/fn-math/functions.c:2035
msgid "roman:Roman numeral"
msgstr ""
#: ../plugins/fn-math/functions.c:2036
msgid ""
"Any Roman symbol to the left of a larger symbol (directly or indirectly) "
"reduces the final value by the symbol amount, otherwise, it increases the "
"final amount by the symbol's amount."
msgstr ""
#: ../plugins/fn-math/functions.c:2112
msgid "ROMAN:@{n} as a roman numeral text"
msgstr ""
#: ../plugins/fn-math/functions.c:2114
msgid "type:0,1,2,3,or 4, defaults to 0"
msgstr ""
#: ../plugins/fn-math/functions.c:2115
msgid ""
"ROMAN returns the arabic number @{n} as a roman numeral text.\n"
"If @{type} is 0 or it is omitted, ROMAN returns classic roman numbers.\n"
"Type 1 is more concise than classic type, type 2 is more concise than type "
"1, and type 3 is more concise than type 2. Type 4 is a simplified type."
msgstr ""
#: ../plugins/fn-math/functions.c:2362
msgid "SUMX2MY2: sum of the difference of squares"
msgstr ""
#: ../plugins/fn-math/functions.c:2363 ../plugins/fn-math/functions.c:2405
#: ../plugins/fn-math/functions.c:2448
msgid "array0:first cell area"
msgstr ""
#: ../plugins/fn-math/functions.c:2364 ../plugins/fn-math/functions.c:2406
#: ../plugins/fn-math/functions.c:2449
msgid "array1:second cell area"
msgstr ""
#: ../plugins/fn-math/functions.c:2365
msgid ""
"SUMX2MY2 function returns the sum of the difference of squares of "
"corresponding values in two arrays. The equation of SUMX2MY2 is SUM(x^2-y^2)."
msgstr ""
#: ../plugins/fn-math/functions.c:2404
msgid "SUMX2PY2: sum of the sum of squares"
msgstr ""
#: ../plugins/fn-math/functions.c:2407
msgid ""
"SUMX2PY2 function returns the sum of the sum of squares of corresponding "
"values in two arrays. The equation of SUMX2PY2 is SUM(x^2+y^2)."
msgstr ""
#: ../plugins/fn-math/functions.c:2409
msgid ""
"If @{array0} and @{array1} have different number of data points, SUMX2PY2 "
"returns #N/A.\n"
"Strings and empty cells are simply ignored."
msgstr ""
#: ../plugins/fn-math/functions.c:2447
msgid "SUMXMY2: sum of the squares of differences"
msgstr ""
#: ../plugins/fn-math/functions.c:2450
msgid ""
"SUMXMY2 function returns the sum of the squares of the differences of "
"corresponding values in two arrays. The equation of SUMXMY2 is SUM((x-y)^2)."
msgstr ""
#: ../plugins/fn-math/functions.c:2452
msgid ""
"If @{array0} and @{array1} have different number of data points, SUMXMY2 "
"returns #N/A.\n"
"Strings and empty cells are simply ignored."
msgstr ""
#: ../plugins/fn-math/functions.c:2492
msgid "SERIESSUM:sum of a power series at @{x}"
msgstr ""
#: ../plugins/fn-math/functions.c:2493
msgid "x:number where to evaluate the power series"
msgstr ""
#: ../plugins/fn-math/functions.c:2494
msgid "n:non-negative integer, exponent of the lowest term of the series"
msgstr ""
#: ../plugins/fn-math/functions.c:2495
msgid "m:increment to each exponent"
msgstr ""
#: ../plugins/fn-math/functions.c:2496
msgid "coeff:coefficients of the power series"
msgstr ""
#: ../plugins/fn-math/functions.c:2549
msgid "MINVERSE:the inverse matrix of @{matrix}"
msgstr ""
#: ../plugins/fn-math/functions.c:2550 ../plugins/fn-math/functions.c:2868
msgid "matrix:a square matrix"
msgstr ""
#: ../plugins/fn-math/functions.c:2551
msgid "If @{matrix} is not invertible, MINVERSE returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:2552
msgid ""
"If @{matrix} does not contain an equal number of columns and rows, MINVERSE "
"returns #VALUE!"
msgstr ""
#: ../plugins/fn-math/functions.c:2683
msgid ""
"CHOLESKY:the Cholesky decomposition of the symmetric positive-definite @"
"{matrix}"
msgstr ""
#: ../plugins/fn-math/functions.c:2684
msgid "matrix:a symmetric positive definite matrix"
msgstr ""
#: ../plugins/fn-math/functions.c:2685
msgid ""
"If the Cholesky-Banachiewicz algorithm applied to @{matrix} fails, Cholesky "
"returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:2686
msgid ""
"If @{matrix} does not contain an equal number of columns and rows, CHOLESKY "
"returns #VALUE!"
msgstr ""
#: ../plugins/fn-math/functions.c:2770
msgid "MUNIT:the @{n} by @{n} identity matrix"
msgstr ""
#: ../plugins/fn-math/functions.c:2771
msgid "n:size of the matrix"
msgstr ""
#: ../plugins/fn-math/functions.c:2800
msgid "MMULT:the matrix product of @{mat1} and @{mat2}"
msgstr ""
#: ../plugins/fn-math/functions.c:2801
msgid "mat1:a matrix"
msgstr ""
#: ../plugins/fn-math/functions.c:2802
msgid "mat2:a matrix"
msgstr ""
#: ../plugins/fn-math/functions.c:2867
msgid "MDETERM:the determinant of the matrix @{matrix}"
msgstr ""
#: ../plugins/fn-math/functions.c:2903
msgid "SUMPRODUCT:Multiplies components and adds the results."
msgstr ""
#: ../plugins/fn-math/functions.c:2905
msgid ""
"Multiplies corresponding data entries in the given arrays or ranges, and "
"then returns the sum of those products."
msgstr ""
#: ../plugins/fn-math/functions.c:2908
msgid "If an entry is not numeric, the value zero is used instead."
msgstr ""
#: ../plugins/fn-math/functions.c:2909
msgid ""
"If arrays or range arguments do not have the same dimensions, return #VALUE! "
"error."
msgstr ""
#: ../plugins/fn-math/functions.c:2911
msgid ""
"SUMPRODUCTs arguments are arrays or ranges. Attempting to use A1:A5>0 will "
"not work, implicit intersection will kick in. Instead use --(A1:A5>0)"
msgstr ""
#: ../plugins/fn-math/functions.c:3025
msgid "EIGEN:eigenvalues and eigenvectors of the symmetric @{matrix}"
msgstr ""
#: ../plugins/fn-math/functions.c:3026
msgid "matrix:a symmetric matrix"
msgstr ""
#: ../plugins/fn-math/functions.c:3027
msgid "If @{matrix} is not symmetric, EIGEN returns #NUM!"
msgstr ""
#: ../plugins/fn-math/functions.c:3028
msgid ""
"If @{matrix} does not contain an equal number of columns and rows, EIGEN "
"returns #VALUE!"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:218
msgid "NT_PHI:Euler's totient function"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:220
msgid ""
"Euler's totient function gives the number of integers less than or equal to @"
"{n} that are relatively prime (coprime) to @{n}."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:223
msgid "wiki:en:Euler's_totient_function"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:252
msgid "NT_MU:Möbius mu function"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:255
msgid ""
"NT_MU function (Möbius mu function) returns 0 if @{n} is divisible by the "
"square of a prime. Otherwise, if @{n} has an odd number of different prime "
"factors, NT_MU returns -1, and if @{n} has an even number of different prime "
"factors, it returns 1. If @{n} = 1, NT_MU returns 1."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:262
msgid "wiki:en:Möbius_function"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:263
msgid "wolfram:MoebiusFunction.html"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:293
msgid "NT_D:number of divisors"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:295
msgid "NT_D calculates the number of divisors of @{n}."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:325
msgid "NT_SIGMA:sigma function"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:327
msgid "NT_SIGMA calculates the sum of the divisors of @{n}."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:330
msgid "wiki:en:Divisor_function"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:359
msgid "ITHPRIME:@{i}th prime"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:360
msgid "i:positive integer"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:361
msgid "ITHPRIME finds the @{i}th prime."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:385
msgid "ISPRIME:whether @{n} is prime"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:387
msgid "ISPRIME returns TRUE if @{n} is prime and FALSE otherwise."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:390
msgid "wolfram:PrimeNumber.html"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:441
msgid "PFACTOR:smallest prime factor"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:443
msgid "PFACTOR finds the smallest prime factor of its argument."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:444
msgid ""
"The argument @{n} must be at least 2. Otherwise a #VALUE! error is returned."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:472
msgid "NT_PI:number of primes upto @{n}"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:474
msgid "NT_PI returns the number of primes less than or equal to @{n}."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:477
msgid "wolfram:PrimeCountingFunction.html"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:503
msgid "BITOR:bitwise or"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:504
#: ../plugins/fn-numtheory/numtheory.c:528
#: ../plugins/fn-numtheory/numtheory.c:552
#: ../plugins/fn-numtheory/numtheory.c:577
#: ../plugins/fn-numtheory/numtheory.c:607
msgid "a:non-negative integer"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:505
#: ../plugins/fn-numtheory/numtheory.c:529
#: ../plugins/fn-numtheory/numtheory.c:553
msgid "b:non-negative integer"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:506
msgid ""
"BITOR returns the bitwise or of the binary representations of its arguments."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:527
msgid "BITXOR:bitwise exclusive or"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:530
msgid ""
"BITXOR returns the bitwise exclusive or of the binary representations of its "
"arguments."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:551
msgid "BITAND:bitwise and"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:554
msgid ""
"BITAND returns the bitwise and of the binary representations of its "
"arguments."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:576
msgid "BITLSHIFT:bit-shift to the left"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:579
msgid ""
"BITLSHIFT returns the binary representations of @{a} shifted @{n} positions "
"to the left."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:580
msgid ""
"If @{n} is negative, BITLSHIFT shifts the bits to the right by ABS(@{n}) "
"positions."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:606
msgid "BITRSHIFT:bit-shift to the right"
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:609
msgid ""
"BITRSHIFT returns the binary representations of @{a} shifted @{n} positions "
"to the right."
msgstr ""
#: ../plugins/fn-numtheory/numtheory.c:610
msgid ""
"If @{n} is negative, BITRSHIFT shifts the bits to the left by ABS(@{n}) "
"positions."
msgstr ""
#: ../plugins/fn-r/functions.c:19
msgid "R.DNORM:probability density function of the normal distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:20 ../plugins/fn-r/functions.c:45
#: ../plugins/fn-r/functions.c:99 ../plugins/fn-r/functions.c:124
#: ../plugins/fn-r/functions.c:151 ../plugins/fn-r/functions.c:178
#: ../plugins/fn-r/functions.c:203 ../plugins/fn-r/functions.c:257
#: ../plugins/fn-r/functions.c:282 ../plugins/fn-r/functions.c:336
#: ../plugins/fn-r/functions.c:359 ../plugins/fn-r/functions.c:409
#: ../plugins/fn-r/functions.c:434 ../plugins/fn-r/functions.c:461
#: ../plugins/fn-r/functions.c:488 ../plugins/fn-r/functions.c:512
#: ../plugins/fn-r/functions.c:564 ../plugins/fn-r/functions.c:589
#: ../plugins/fn-r/functions.c:643 ../plugins/fn-r/functions.c:666
#: ../plugins/fn-r/functions.c:716 ../plugins/fn-r/functions.c:739
#: ../plugins/fn-r/functions.c:789 ../plugins/fn-r/functions.c:814
#: ../plugins/fn-r/functions.c:841 ../plugins/fn-r/functions.c:868
#: ../plugins/fn-r/functions.c:893 ../plugins/fn-r/functions.c:947
#: ../plugins/fn-r/functions.c:974 ../plugins/fn-r/functions.c:1032
#: ../plugins/fn-r/functions.c:1055 ../plugins/fn-r/functions.c:1105
#: ../plugins/fn-r/functions.c:1130 ../plugins/fn-r/functions.c:1184
#: ../plugins/fn-r/functions.c:1211 ../plugins/fn-r/functions.c:1240
msgid "x:observation"
msgstr ""
#: ../plugins/fn-r/functions.c:21 ../plugins/fn-r/functions.c:46
#: ../plugins/fn-r/functions.c:73
msgid "mu:mean of the distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:22 ../plugins/fn-r/functions.c:47
#: ../plugins/fn-r/functions.c:74
msgid "sigma:standard deviation of the distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:23 ../plugins/fn-r/functions.c:102
#: ../plugins/fn-r/functions.c:181 ../plugins/fn-r/functions.c:260
#: ../plugins/fn-r/functions.c:338 ../plugins/fn-r/functions.c:412
#: ../plugins/fn-r/functions.c:490 ../plugins/fn-r/functions.c:567
#: ../plugins/fn-r/functions.c:645 ../plugins/fn-r/functions.c:718
#: ../plugins/fn-r/functions.c:792 ../plugins/fn-r/functions.c:871
#: ../plugins/fn-r/functions.c:951 ../plugins/fn-r/functions.c:1034
#: ../plugins/fn-r/functions.c:1108 ../plugins/fn-r/functions.c:1188
#: ../plugins/fn-r/functions.c:1243
msgid "give_log:if true, log of the result will be returned instead"
msgstr ""
#: ../plugins/fn-r/functions.c:24
msgid ""
"This function returns the probability density function of the normal "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:44
msgid "R.PNORM:cumulative distribution function of the normal distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:48 ../plugins/fn-r/functions.c:75
#: ../plugins/fn-r/functions.c:127 ../plugins/fn-r/functions.c:154
#: ../plugins/fn-r/functions.c:206 ../plugins/fn-r/functions.c:233
#: ../plugins/fn-r/functions.c:285 ../plugins/fn-r/functions.c:312
#: ../plugins/fn-r/functions.c:361 ../plugins/fn-r/functions.c:386
#: ../plugins/fn-r/functions.c:437 ../plugins/fn-r/functions.c:464
#: ../plugins/fn-r/functions.c:514 ../plugins/fn-r/functions.c:540
#: ../plugins/fn-r/functions.c:592 ../plugins/fn-r/functions.c:619
#: ../plugins/fn-r/functions.c:668 ../plugins/fn-r/functions.c:693
#: ../plugins/fn-r/functions.c:741 ../plugins/fn-r/functions.c:766
#: ../plugins/fn-r/functions.c:817 ../plugins/fn-r/functions.c:844
#: ../plugins/fn-r/functions.c:896 ../plugins/fn-r/functions.c:923
#: ../plugins/fn-r/functions.c:978 ../plugins/fn-r/functions.c:1007
#: ../plugins/fn-r/functions.c:1057 ../plugins/fn-r/functions.c:1082
#: ../plugins/fn-r/functions.c:1133 ../plugins/fn-r/functions.c:1160
#: ../plugins/fn-r/functions.c:1215
msgid ""
"lower_tail:if true (the default), the lower tail of the distribution is "
"considered"
msgstr ""
#: ../plugins/fn-r/functions.c:49 ../plugins/fn-r/functions.c:76
#: ../plugins/fn-r/functions.c:128 ../plugins/fn-r/functions.c:155
#: ../plugins/fn-r/functions.c:207 ../plugins/fn-r/functions.c:234
#: ../plugins/fn-r/functions.c:286 ../plugins/fn-r/functions.c:313
#: ../plugins/fn-r/functions.c:362 ../plugins/fn-r/functions.c:387
#: ../plugins/fn-r/functions.c:438 ../plugins/fn-r/functions.c:465
#: ../plugins/fn-r/functions.c:515 ../plugins/fn-r/functions.c:541
#: ../plugins/fn-r/functions.c:593 ../plugins/fn-r/functions.c:620
#: ../plugins/fn-r/functions.c:669 ../plugins/fn-r/functions.c:694
#: ../plugins/fn-r/functions.c:742 ../plugins/fn-r/functions.c:767
#: ../plugins/fn-r/functions.c:818 ../plugins/fn-r/functions.c:845
#: ../plugins/fn-r/functions.c:897 ../plugins/fn-r/functions.c:924
#: ../plugins/fn-r/functions.c:979 ../plugins/fn-r/functions.c:1008
#: ../plugins/fn-r/functions.c:1058 ../plugins/fn-r/functions.c:1083
#: ../plugins/fn-r/functions.c:1134 ../plugins/fn-r/functions.c:1161
#: ../plugins/fn-r/functions.c:1216
msgid "log_p:if true, log of the probability is used"
msgstr ""
#: ../plugins/fn-r/functions.c:50
msgid ""
"This function returns the cumulative distribution function of the normal "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:71
msgid "R.QNORM:probability quantile function of the normal distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:72 ../plugins/fn-r/functions.c:230
#: ../plugins/fn-r/functions.c:309 ../plugins/fn-r/functions.c:384
#: ../plugins/fn-r/functions.c:538 ../plugins/fn-r/functions.c:616
#: ../plugins/fn-r/functions.c:691 ../plugins/fn-r/functions.c:764
#: ../plugins/fn-r/functions.c:920 ../plugins/fn-r/functions.c:1003
#: ../plugins/fn-r/functions.c:1080 ../plugins/fn-r/functions.c:1157
#: ../plugins/fn-random/functions.c:629 ../plugins/fn-stat/functions.c:493
#: ../plugins/fn-stat/functions.c:946 ../plugins/fn-stat/functions.c:1004
#: ../plugins/fn-stat/functions.c:1155 ../plugins/fn-stat/functions.c:1242
#: ../plugins/fn-stat/functions.c:1443 ../plugins/fn-stat/functions.c:1802
msgid "p:probability"
msgstr ""
#: ../plugins/fn-r/functions.c:77
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the normal distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:98
msgid "R.DLNORM:probability density function of the log-normal distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:100 ../plugins/fn-r/functions.c:125
#: ../plugins/fn-r/functions.c:152
msgid "logmean:mean of the underlying normal distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:101 ../plugins/fn-r/functions.c:126
#: ../plugins/fn-r/functions.c:153
msgid "logsd:standard deviation of the underlying normal distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:103
msgid ""
"This function returns the probability density function of the log-normal "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:123
msgid ""
"R.PLNORM:cumulative distribution function of the log-normal distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:129
msgid ""
"This function returns the cumulative distribution function of the log-normal "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:150
msgid "R.QLNORM:probability quantile function of the log-normal distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:156
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the log-normal distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:177
msgid "R.DGAMMA:probability density function of the gamma distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:179 ../plugins/fn-r/functions.c:204
#: ../plugins/fn-r/functions.c:231 ../plugins/fn-r/functions.c:565
#: ../plugins/fn-r/functions.c:590 ../plugins/fn-r/functions.c:617
#: ../plugins/fn-r/functions.c:1185 ../plugins/fn-r/functions.c:1212
#: ../plugins/fn-r/functions.c:1242
msgid "shape:the shape parameter of the distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:180 ../plugins/fn-r/functions.c:205
#: ../plugins/fn-r/functions.c:232 ../plugins/fn-r/functions.c:566
#: ../plugins/fn-r/functions.c:591 ../plugins/fn-r/functions.c:618
#: ../plugins/fn-r/functions.c:717 ../plugins/fn-r/functions.c:740
#: ../plugins/fn-r/functions.c:765 ../plugins/fn-r/functions.c:1107
#: ../plugins/fn-r/functions.c:1132 ../plugins/fn-r/functions.c:1159
#: ../plugins/fn-r/functions.c:1187 ../plugins/fn-r/functions.c:1214
msgid "scale:the scale parameter of the distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:182
msgid ""
"This function returns the probability density function of the gamma "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:202
msgid "R.PGAMMA:cumulative distribution function of the gamma distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:208
msgid ""
"This function returns the cumulative distribution function of the gamma "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:229
msgid "R.QGAMMA:probability quantile function of the gamma distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:235
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the gamma distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:256
msgid "R.DBETA:probability density function of the beta distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:258 ../plugins/fn-r/functions.c:283
#: ../plugins/fn-r/functions.c:310
msgid "a:the first shape parameter of the distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:259 ../plugins/fn-r/functions.c:284
#: ../plugins/fn-r/functions.c:311
msgid "b:the second scale parameter of the distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:261
msgid ""
"This function returns the probability density function of the beta "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:281
msgid "R.PBETA:cumulative distribution function of the beta distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:287
msgid ""
"This function returns the cumulative distribution function of the beta "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:308
msgid "R.QBETA:probability quantile function of the beta distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:314
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the beta distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:335
msgid "R.DT:probability density function of the Student t distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:337 ../plugins/fn-r/functions.c:360
#: ../plugins/fn-r/functions.c:385 ../plugins/fn-r/functions.c:1241
msgid "n:the number of degrees of freedom of the distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:339
msgid ""
"This function returns the probability density function of the Student t "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:358
msgid "R.PT:cumulative distribution function of the Student t distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:363
msgid ""
"This function returns the cumulative distribution function of the Student t "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:383
msgid "R.QT:probability quantile function of the Student t distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:388
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the Student t distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:408
msgid "R.DF:probability density function of the F distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:410 ../plugins/fn-r/functions.c:435
#: ../plugins/fn-r/functions.c:462
msgid "n1:the first number of degrees of freedom of the distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:411 ../plugins/fn-r/functions.c:436
#: ../plugins/fn-r/functions.c:463
msgid "n2:the second number of degrees of freedom of the distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:413
msgid ""
"This function returns the probability density function of the F distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:433
msgid "R.PF:cumulative distribution function of the F distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:439
msgid ""
"This function returns the cumulative distribution function of the F "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:460
msgid "R.QF:probability quantile function of the F distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:466
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the F distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:487
msgid "R.DCHISQ:probability density function of the chi-square distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:489 ../plugins/fn-r/functions.c:513
#: ../plugins/fn-r/functions.c:539
msgid "df:the number of degrees of freedom of the distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:491
msgid ""
"This function returns the probability density function of the chi-square "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:492
msgid ""
"A two argument invocation R.DCHISQ(@{x},@{df}) is exported to OpenFormula as "
"CHISQDIST(@{x},@{df},FALSE())."
msgstr ""
#: ../plugins/fn-r/functions.c:511
msgid ""
"R.PCHISQ:cumulative distribution function of the chi-square distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:516
msgid ""
"This function returns the cumulative distribution function of the chi-square "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:517
msgid ""
"A two argument invocation R.PCHISQ(@{x},@{df}) is exported to OpenFormula as "
"CHISQDIST(@{x},@{df})."
msgstr ""
#: ../plugins/fn-r/functions.c:537
msgid "R.QCHISQ:probability quantile function of the chi-square distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:542
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the chi-square distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:543
msgid ""
"A two argument invocation R.QCHISQ(@{p},@{df}) is exported to OpenFormula as "
"CHISQINV(@{p},@{df})."
msgstr ""
#: ../plugins/fn-r/functions.c:563
msgid "R.DWEIBULL:probability density function of the Weibull distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:568
msgid ""
"This function returns the probability density function of the Weibull "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:588
msgid "R.PWEIBULL:cumulative distribution function of the Weibull distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:594
msgid ""
"This function returns the cumulative distribution function of the Weibull "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:615
msgid "R.QWEIBULL:probability quantile function of the Weibull distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:621
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the Weibull distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:642
msgid "R.DPOIS:probability density function of the Poisson distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:644 ../plugins/fn-r/functions.c:667
#: ../plugins/fn-r/functions.c:692
msgid "lambda:the mean of the distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:646
msgid ""
"This function returns the probability density function of the Poisson "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:665
msgid "R.PPOIS:cumulative distribution function of the Poisson distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:670
msgid ""
"This function returns the cumulative distribution function of the Poisson "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:690
msgid "R.QPOIS:probability quantile function of the Poisson distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:695
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the Poisson distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:715
msgid "R.DEXP:probability density function of the exponential distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:719
msgid ""
"This function returns the probability density function of the exponential "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:738
msgid "R.PEXP:cumulative distribution function of the exponential distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:743
msgid ""
"This function returns the cumulative distribution function of the "
"exponential distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:763
msgid "R.QEXP:probability quantile function of the exponential distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:768
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the exponential distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:788
msgid "R.DBINOM:probability density function of the binomial distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:790 ../plugins/fn-r/functions.c:815
#: ../plugins/fn-r/functions.c:842 ../plugins/fn-r/functions.c:869
#: ../plugins/fn-r/functions.c:894 ../plugins/fn-r/functions.c:921
msgid "n:the number of trials"
msgstr ""
#: ../plugins/fn-r/functions.c:791 ../plugins/fn-r/functions.c:816
#: ../plugins/fn-r/functions.c:843 ../plugins/fn-r/functions.c:870
#: ../plugins/fn-r/functions.c:895 ../plugins/fn-r/functions.c:922
#: ../plugins/fn-r/functions.c:1033 ../plugins/fn-r/functions.c:1056
#: ../plugins/fn-r/functions.c:1081
msgid "psuc:the probability of success in each trial"
msgstr ""
#: ../plugins/fn-r/functions.c:793
msgid ""
"This function returns the probability density function of the binomial "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:813
msgid "R.PBINOM:cumulative distribution function of the binomial distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:819
msgid ""
"This function returns the cumulative distribution function of the binomial "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:840
msgid "R.QBINOM:probability quantile function of the binomial distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:846
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the binomial distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:867
msgid ""
"R.DNBINOM:probability density function of the negative binomial distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:872
msgid ""
"This function returns the probability density function of the negative "
"binomial distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:892
msgid ""
"R.PNBINOM:cumulative distribution function of the negative binomial "
"distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:898
msgid ""
"This function returns the cumulative distribution function of the negative "
"binomial distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:919
msgid ""
"R.QNBINOM:probability quantile function of the negative binomial distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:925
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the negative binomial "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:946
msgid ""
"R.DHYPER:probability density function of the hypergeometric distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:948 ../plugins/fn-r/functions.c:975
#: ../plugins/fn-r/functions.c:1004
msgid "r:the number of red balls"
msgstr ""
#: ../plugins/fn-r/functions.c:949 ../plugins/fn-r/functions.c:976
#: ../plugins/fn-r/functions.c:1005
msgid "b:the number of black balls"
msgstr ""
#: ../plugins/fn-r/functions.c:950 ../plugins/fn-r/functions.c:977
#: ../plugins/fn-r/functions.c:1006
msgid "n:the number of balls drawn"
msgstr ""
#: ../plugins/fn-r/functions.c:952
msgid ""
"This function returns the probability density function of the hypergeometric "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:973
msgid ""
"R.PHYPER:cumulative distribution function of the hypergeometric distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:980
msgid ""
"This function returns the cumulative distribution function of the "
"hypergeometric distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:1002
msgid ""
"R.QHYPER:probability quantile function of the hypergeometric distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:1009
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the hypergeometric distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:1031
msgid "R.DGEOM:probability density function of the geometric distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:1035
msgid ""
"This function returns the probability density function of the geometric "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:1054
msgid "R.PGEOM:cumulative distribution function of the geometric distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:1059
msgid ""
"This function returns the cumulative distribution function of the geometric "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:1079
msgid "R.QGEOM:probability quantile function of the geometric distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:1084
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the geometric distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:1104
msgid "R.DCAUCHY:probability density function of the Cauchy distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:1106 ../plugins/fn-r/functions.c:1131
#: ../plugins/fn-r/functions.c:1158
msgid "location:the center of the distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:1109
msgid ""
"This function returns the probability density function of the Cauchy "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:1129
msgid "R.PCAUCHY:cumulative distribution function of the Cauchy distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:1135
msgid ""
"This function returns the cumulative distribution function of the Cauchy "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:1156
msgid "R.QCAUCHY:probability quantile function of the Cauchy distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:1162
msgid ""
"This function returns the probability quantile function, i.e., the inverse "
"of the cumulative distribution function, of the Cauchy distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:1183
msgid "R.DSNORM:probability density function of the skew-normal distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:1186 ../plugins/fn-r/functions.c:1213
msgid "location:the location parameter of the distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:1189
msgid ""
"This function returns the probability density function of the skew-normal "
"distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:1210
msgid ""
"R.PSNORM:cumulative distribution function of the skew-normal distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:1217
msgid ""
"This function returns the cumulative distribution function of the skew-"
"normal distribution."
msgstr ""
#: ../plugins/fn-r/functions.c:1239
msgid "R.DST:probability density function of the skew-t distribution"
msgstr ""
#: ../plugins/fn-r/functions.c:1244
msgid ""
"This function returns the probability density function of the skew-t "
"distribution."
msgstr ""
#: ../plugins/fn-random/functions.c:46
msgid "RAND:a random number between zero and one."
msgstr ""
#: ../plugins/fn-random/functions.c:63
msgid ""
"RANDUNIFORM:random variate from the uniform distribution from @{a} to @{b}"
msgstr ""
#: ../plugins/fn-random/functions.c:64
msgid "a:lower limit of the uniform distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:65
msgid "b:upper limit of the uniform distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:66
msgid "If @{a} > @{b} RANDUNIFORM returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:88
msgid "RANDDISCRETE:random variate from a finite discrete distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:89
msgid "val_range:possible values of the random variable"
msgstr ""
#: ../plugins/fn-random/functions.c:90
msgid ""
"prob_range:probabilities of the corresponding values in @{val_range}, "
"defaults to equal probabilities"
msgstr ""
#: ../plugins/fn-random/functions.c:92
msgid ""
"RANDDISCRETE returns one of the values in the @{val_range}. The "
"probabilities for each value are given in the @{prob_range}."
msgstr ""
#: ../plugins/fn-random/functions.c:94
msgid ""
"If the sum of all values in @{prob_range} is not one, RANDDISCRETE returns "
"#NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:95
msgid ""
"If @{val_range} and @{prob_range} are not the same size, RANDDISCRETE "
"returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:96
msgid ""
"If @{val_range} or @{prob_range} is not a range, RANDDISCRETE returns #VALUE!"
msgstr ""
#: ../plugins/fn-random/functions.c:174
msgid "RANDEXP:random variate from an exponential distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:175
msgid "b:parameter of the exponential distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:193
msgid "RANDPOISSON:random variate from a Poisson distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:194
msgid "λ:parameter of the Poisson distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:195
msgid "If @{λ} < 0 RANDPOISSON returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:217
msgid "RANDBINOM:random variate from a binomial distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:218 ../plugins/fn-random/functions.c:275
#: ../plugins/fn-random/functions.c:581
msgid "p:probability of success in a single trial"
msgstr ""
#: ../plugins/fn-random/functions.c:219
msgid "n:number of trials"
msgstr ""
#: ../plugins/fn-random/functions.c:220
msgid "If @{p} < 0 or @{p} > 1 RANDBINOM returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:221
msgid "If @{n} < 0 RANDBINOM returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:243
msgid ""
"RANDBETWEEN:a random integer number between and including @{bottom} and @"
"{top}"
msgstr ""
#: ../plugins/fn-random/functions.c:245
msgid "bottom:lower limit"
msgstr ""
#: ../plugins/fn-random/functions.c:246
msgid "top:upper limit"
msgstr ""
#: ../plugins/fn-random/functions.c:247
msgid "If @{bottom} > @{top}, RANDBETWEEN returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:274
msgid "RANDNEGBINOM:random variate from a negative binomial distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:276
msgid "n:number of failures"
msgstr ""
#: ../plugins/fn-random/functions.c:277
msgid "If @{p} < 0 or @{p} > 1 RANDNEGBINOM returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:278
msgid "If @{n} < 1 RANDNEGBINOM returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:299
msgid "RANDBERNOULLI:random variate from a Bernoulli distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:300 ../plugins/fn-stat/functions.c:878
msgid "p:probability of success"
msgstr ""
#: ../plugins/fn-random/functions.c:301
msgid "If @{p} < 0 or @{p} > 1 RANDBERNOULLI returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:323
msgid "RANDNORM:random variate from a normal distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:324
msgid "μ:mean of the distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:325 ../plugins/fn-random/functions.c:373
msgid "σ:standard deviation of the distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:326
msgid "If @{σ} < 0, RANDNORM returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:348
msgid "RANDCAUCHY:random variate from a Cauchy or Lorentz distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:349
msgid "a:scale parameter of the distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:350
msgid "If @{a} < 0 RANDCAUCHY returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:371
msgid "RANDLOGNORM:random variate from a lognormal distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:372
msgid "ζ:parameter of the lognormal distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:374
msgid "If @{σ} < 0, RANDLOGNORM returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:393
msgid "RANDWEIBULL:random variate from a Weibull distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:394
msgid "a:parameter of the Weibull distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:395
msgid "b:parameter of the Weibull distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:414
msgid "RANDLAPLACE:random variate from a Laplace distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:415
msgid "a:parameter of the Laplace distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:433
msgid "RANDRAYLEIGH:random variate from a Rayleigh distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:434 ../plugins/fn-random/functions.c:454
msgid "σ:scale parameter of the Rayleigh distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:452
msgid ""
"RANDRAYLEIGHTAIL:random variate from the tail of a Rayleigh distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:453 ../plugins/fn-random/functions.c:792
msgid "a:lower limit of the tail"
msgstr ""
#: ../plugins/fn-random/functions.c:473
msgid "RANDGAMMA:random variate from a Gamma distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:474
msgid "a:parameter of the Gamma distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:475
msgid "b:parameter of the Gamma distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:476
msgid "If @{a} ≤ 0, RANDGAMMA returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:498
msgid "RANDPARETO:random variate from a Pareto distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:499
msgid "a:parameter of the Pareto distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:500
msgid "b:parameter of the Pareto distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:519
msgid "RANDFDIST:random variate from an F distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:520
msgid "df1:numerator degrees of freedom"
msgstr ""
#: ../plugins/fn-random/functions.c:521
msgid "df2:denominator degrees of freedom"
msgstr ""
#: ../plugins/fn-random/functions.c:540
msgid "RANDBETA:random variate from a Beta distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:541
msgid "a:parameter of the Beta distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:542
msgid "b:parameter of the Beta distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:561
msgid "RANDLOGISTIC:random variate from a logistic distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:562
msgid "a:parameter of the logistic distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:580
msgid "RANDGEOM:random variate from a geometric distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:582
msgid "If @{p} < 0 or @{p} > 1 RANDGEOM returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:603
msgid "RANDHYPERG:random variate from a hypergeometric distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:604
msgid "n1:number of objects of type 1"
msgstr ""
#: ../plugins/fn-random/functions.c:605
msgid "n2:number of objects of type 2"
msgstr ""
#: ../plugins/fn-random/functions.c:606
msgid "t:total number of objects selected"
msgstr ""
#: ../plugins/fn-random/functions.c:628
msgid "RANDLOG:random variate from a logarithmic distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:630
msgid "If @{p} < 0 or @{p} > 1 RANDLOG returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:651
msgid "RANDCHISQ:random variate from a Chi-square distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:652 ../plugins/fn-random/functions.c:671
#: ../plugins/fn-random/functions.c:922
msgid "df:degrees of freedom"
msgstr ""
#: ../plugins/fn-random/functions.c:670
msgid "RANDTDIST:random variate from a Student t distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:689
msgid "RANDGUMBEL:random variate from a Gumbel distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:690
msgid "a:parameter of the Gumbel distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:691
msgid "b:parameter of the Gumbel distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:692
msgid "type:type of the Gumbel distribution, defaults to 1"
msgstr ""
#: ../plugins/fn-random/functions.c:693
msgid "If @{type} is neither 1 nor 2, RANDGUMBEL returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:718
msgid "RANDLEVY:random variate from a Lévy distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:719
msgid "c:parameter of the Lévy distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:720
msgid "α:parameter of the Lévy distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:721
msgid "β:parameter of the Lévy distribution, defaults to 0"
msgstr ""
#: ../plugins/fn-random/functions.c:722
msgid ""
"For @{α} = 1, @{β}=0, the Lévy distribution reduces to the Cauchy (or "
"Lorentzian) distribution."
msgstr ""
#: ../plugins/fn-random/functions.c:724
msgid ""
"For @{α} = 2, @{β}=0, the Lévy distribution reduces to the normal "
"distribution."
msgstr ""
#: ../plugins/fn-random/functions.c:726
msgid "If @{α} ≤ 0 or @{α} > 2, RANDLEVY returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:727
msgid "If @{β} < -1 or @{β} > 1, RANDLEVY returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:750
msgid "RANDEXPPOW:random variate from an exponential power distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:751
msgid "a:scale parameter of the exponential power distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:752
msgid "b:exponent of the exponential power distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:753
msgid ""
"For @{b} = 1 the exponential power distribution reduces to the Laplace "
"distribution."
msgstr ""
#: ../plugins/fn-random/functions.c:755
msgid ""
"For @{b} = 2 the exponential power distribution reduces to the normal "
"distribution with σ = a/sqrt(2)"
msgstr ""
#: ../plugins/fn-random/functions.c:775
msgid "RANDLANDAU:random variate from the Landau distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:791
msgid ""
"RANDNORMTAIL:a random variates from the upper tail of a normal distribution "
"with mean 0"
msgstr ""
#: ../plugins/fn-random/functions.c:793
msgid "σ:standard deviation of the normal distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:794
msgid ""
"The method is based on Marsaglia's famous rectangle-wedge-tail algorithm "
"(Ann Math Stat 32, 894-899 (1961)), with this aspect explained in Knuth, v2, "
"3rd ed, p139, 586 (exercise 11)."
msgstr ""
#: ../plugins/fn-random/functions.c:815
msgid ""
"SIMTABLE:one of the values in the given argument list depending on the round "
"number of the simulation tool."
msgstr ""
#: ../plugins/fn-random/functions.c:817
msgid "d1:first value"
msgstr ""
#: ../plugins/fn-random/functions.c:818
msgid "d2:second value"
msgstr ""
#: ../plugins/fn-random/functions.c:819
msgid ""
"SIMTABLE returns one of the values in the given argument list depending on "
"the round number of the simulation tool. When the simulation tool is not "
"activated, SIMTABLE returns @{d1}.\n"
"With the simulation tool and the SIMTABLE function you can test given "
"decision variables. Each SIMTABLE function contains the possible values of a "
"simulation variable. In most valid simulation models you should have the "
"same number of values @{dN} for all decision variables. If the simulation "
"is run more rounds than there are values defined, SIMTABLE returns #N/A! "
"error (e.g. if A1 contains `=SIMTABLE(1)' and A2 `=SIMTABLE(1,2)', A1 yields "
"#N/A! error on the second round).\n"
"The successive use of the simulation tool also requires that you give to the "
"tool at least one input variable having RAND() or any other "
"RAND<distribution name>() function in it. On each round, the simulation tool "
"iterates for the given number of rounds over all the input variables to "
"reevaluate them. On each iteration, the values of the output variables are "
"stored, and when the round is completed, descriptive statistical information "
"is created according to the values."
msgstr ""
#: ../plugins/fn-random/functions.c:882
msgid "RANDSNORM:random variate from a skew normal distribution"
msgstr ""
#: ../plugins/fn-random/functions.c:883 ../plugins/fn-random/functions.c:923
msgid "a: amount of skew, defaults to 0"
msgstr ""
#: ../plugins/fn-random/functions.c:884
msgid "μ:mean of the underlying normal distribution, defaults to 0"
msgstr ""
#: ../plugins/fn-random/functions.c:885
msgid ""
"σ:standard deviation of the underlying normal distribution, defaults to 1"
msgstr ""
#: ../plugins/fn-random/functions.c:886
msgid "If @{σ} < 0, RANDSNORM returns #NUM!"
msgstr ""
#: ../plugins/fn-random/functions.c:921
msgid "RANDSTDIST:random variate from a skew t distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:48
msgid ""
"Numbers, text and logical values are included in the calculation too. If the "
"cell contains text or the argument evaluates to FALSE, it is counted as "
"value zero (0). If the argument evaluates to TRUE, it is counted as one (1). "
"Note that empty cells are not counted."
msgstr ""
#: ../plugins/fn-stat/functions.c:53
msgid "VARP:variance of an entire population"
msgstr ""
#: ../plugins/fn-stat/functions.c:54 ../plugins/fn-stat/functions.c:80
#: ../plugins/fn-stat/functions.c:110 ../plugins/fn-stat/functions.c:138
#: ../plugins/fn-stat/functions.c:2653 ../plugins/fn-stat/functions.c:2684
#: ../plugins/fn-stat/functions.c:2712 ../plugins/fn-stat/functions.c:2741
msgid "area1:first cell area"
msgstr ""
#: ../plugins/fn-stat/functions.c:55 ../plugins/fn-stat/functions.c:81
#: ../plugins/fn-stat/functions.c:111 ../plugins/fn-stat/functions.c:139
#: ../plugins/fn-stat/functions.c:2654 ../plugins/fn-stat/functions.c:2685
#: ../plugins/fn-stat/functions.c:2713 ../plugins/fn-stat/functions.c:2742
msgid "area2:second cell area"
msgstr ""
#: ../plugins/fn-stat/functions.c:56
msgid "VARP is also known as the N-variance."
msgstr ""
#: ../plugins/fn-stat/functions.c:57
msgid ""
"Let us assume that the cells A1, A2, ..., A5 contain number 11.4, 17.3, "
"21.3, 25.9, and 40.1."
msgstr ""
#: ../plugins/fn-stat/functions.c:58
msgid "Then VARP(A1:A5) equals 94.112"
msgstr ""
#: ../plugins/fn-stat/functions.c:60 ../plugins/fn-stat/functions.c:90
msgid "wiki:en:Variance"
msgstr ""
#: ../plugins/fn-stat/functions.c:61 ../plugins/fn-stat/functions.c:91
msgid "wolfram:Variance.html"
msgstr ""
#: ../plugins/fn-stat/functions.c:79
msgid "VAR:sample variance of the given sample"
msgstr ""
#: ../plugins/fn-stat/functions.c:82
msgid "VAR is also known as the N-1-variance."
msgstr ""
#: ../plugins/fn-stat/functions.c:83 ../plugins/fn-stat/functions.c:2658
msgid ""
"Since the N-1-variance includes Bessel's correction, whereas the N-variance "
"calculated by VARPA or VARP does not, under reasonable conditions the N-1-"
"variance is an unbiased estimator of the variance of the population from "
"which the sample is drawn."
msgstr ""
#: ../plugins/fn-stat/functions.c:87 ../plugins/fn-stat/functions.c:115
#: ../plugins/fn-stat/functions.c:142 ../plugins/fn-stat/functions.c:278
#: ../plugins/fn-stat/functions.c:574 ../plugins/fn-stat/functions.c:601
#: ../plugins/fn-stat/functions.c:627 ../plugins/fn-stat/functions.c:697
#: ../plugins/fn-stat/functions.c:723 ../plugins/fn-stat/functions.c:758
#: ../plugins/fn-stat/functions.c:798 ../plugins/fn-stat/functions.c:823
#: ../plugins/fn-stat/functions.c:1840 ../plugins/fn-stat/functions.c:1866
#: ../plugins/fn-stat/functions.c:1890 ../plugins/fn-stat/functions.c:1915
#: ../plugins/fn-stat/functions.c:2046 ../plugins/fn-stat/functions.c:2168
#: ../plugins/fn-stat/functions.c:2211 ../plugins/fn-stat/functions.c:2520
#: ../plugins/fn-stat/functions.c:2870 ../plugins/fn-stat/functions.c:2914
msgid ""
"Let us assume that the cells A1, A2, ..., A5 contain numbers 11.4, 17.3, "
"21.3, 25.9, and 40.1."
msgstr ""
#: ../plugins/fn-stat/functions.c:88
msgid "Then VAR(A1:A5) equals 117.64."
msgstr ""
#: ../plugins/fn-stat/functions.c:109
msgid "STDEV:sample standard deviation of the given sample"
msgstr ""
#: ../plugins/fn-stat/functions.c:112
msgid "STDEV is also known as the N-1-standard deviation."
msgstr ""
#: ../plugins/fn-stat/functions.c:113
msgid ""
"To obtain the population standard deviation of a whole population use STDEVP."
msgstr ""
#: ../plugins/fn-stat/functions.c:116
msgid "Then STDEV(A1:A5) equals 10.84619749."
msgstr ""
#: ../plugins/fn-stat/functions.c:118 ../plugins/fn-stat/functions.c:145
msgid "wiki:en:Standard_deviation"
msgstr ""
#: ../plugins/fn-stat/functions.c:119 ../plugins/fn-stat/functions.c:146
msgid "wolfram:StandardDeviation.html"
msgstr ""
#: ../plugins/fn-stat/functions.c:137
msgid "STDEVP:population standard deviation of the given population"
msgstr ""
#: ../plugins/fn-stat/functions.c:140 ../plugins/fn-stat/functions.c:2743
msgid "This is also known as the N-standard deviation"
msgstr ""
#: ../plugins/fn-stat/functions.c:143
msgid "Then STDEVP(A1:A5) equals 9.701133954."
msgstr ""
#: ../plugins/fn-stat/functions.c:164
msgid "RANK:rank of a number in a list of numbers"
msgstr ""
#: ../plugins/fn-stat/functions.c:165 ../plugins/fn-stat/functions.c:216
msgid "x:number whose rank you want to find"
msgstr ""
#: ../plugins/fn-stat/functions.c:166 ../plugins/fn-stat/functions.c:217
msgid "ref:list of numbers"
msgstr ""
#: ../plugins/fn-stat/functions.c:167 ../plugins/fn-stat/functions.c:218
msgid ""
"order:If this is 0, numbers are ranked in descending order, otherwise "
"numbers are ranked in ascending order. Defaults to 0."
msgstr ""
#: ../plugins/fn-stat/functions.c:168
msgid "In case of a tie, RANK returns the largest possible rank."
msgstr ""
#: ../plugins/fn-stat/functions.c:170 ../plugins/fn-stat/functions.c:221
msgid ""
"Let us assume that the cells A1, A2, ..., A5 contain numbers 11.4, 17.3, "
"21.3, 25.9, and 25.9."
msgstr ""
#: ../plugins/fn-stat/functions.c:171
msgid "Then RANK(17.3,A1:A5) equals 4."
msgstr ""
#: ../plugins/fn-stat/functions.c:172
msgid "Then RANK(25.9,A1:A5) equals 1."
msgstr ""
#: ../plugins/fn-stat/functions.c:215
msgid "RANK.AVG:rank of a number in a list of numbers"
msgstr ""
#: ../plugins/fn-stat/functions.c:219
msgid "In case of a tie, RANK returns the average rank."
msgstr ""
#: ../plugins/fn-stat/functions.c:220
msgid "This function is Excel 2010 compatible."
msgstr ""
#: ../plugins/fn-stat/functions.c:222
msgid "Then RANK.AVG(17.3,A1:A5) equals 4."
msgstr ""
#: ../plugins/fn-stat/functions.c:223
msgid "Then RANK.AVG(25.9,A1:A5) equals 1.5."
msgstr ""
#: ../plugins/fn-stat/functions.c:272
msgid "TRIMMEAN:mean of the interior of a data set"
msgstr ""
#: ../plugins/fn-stat/functions.c:273
msgid "ref:list of numbers whose mean you want to calculate"
msgstr ""
#: ../plugins/fn-stat/functions.c:274
msgid "fraction:fraction of the data set excluded from the mean"
msgstr ""
#: ../plugins/fn-stat/functions.c:275
msgid ""
"If @{fraction}=0.2 and the data set contains 40 numbers, 8 numbers are "
"trimmed from the data set (40 x 0.2): the 4 largest and the 4 smallest. To "
"avoid a bias, the number of points to be excluded is always rounded down to "
"the nearest even number."
msgstr ""
#: ../plugins/fn-stat/functions.c:279
msgid ""
"Then TRIMMEAN(A1:A5,0.2) equals 23.2 and TRIMMEAN(A1:A5,0.4) equals 21.5."
msgstr ""
#: ../plugins/fn-stat/functions.c:321
msgid "COVAR:covariance of two data sets"
msgstr ""
#: ../plugins/fn-stat/functions.c:322 ../plugins/fn-stat/functions.c:352
msgid "array1:first data set"
msgstr ""
#: ../plugins/fn-stat/functions.c:323
msgid "array2:set data set"
msgstr ""
#: ../plugins/fn-stat/functions.c:324 ../plugins/fn-stat/functions.c:354
#: ../plugins/fn-stat/functions.c:544 ../plugins/fn-stat/functions.c:792
#: ../plugins/fn-stat/functions.c:821 ../plugins/fn-stat/functions.c:1832
#: ../plugins/fn-stat/functions.c:1863 ../plugins/fn-stat/functions.c:1913
#: ../plugins/fn-stat/functions.c:1999 ../plugins/fn-stat/functions.c:2018
#: ../plugins/fn-stat/functions.c:2042
msgid "Strings and empty cells are simply ignored."
msgstr ""
#: ../plugins/fn-stat/functions.c:326 ../plugins/fn-stat/functions.c:356
#: ../plugins/fn-stat/functions.c:2365 ../plugins/fn-stat/functions.c:2955
#: ../plugins/fn-stat/functions.c:3021 ../plugins/fn-stat/functions.c:3881
#: ../plugins/fn-stat/functions.c:4355 ../plugins/fn-stat/functions.c:4425
#: ../plugins/fn-stat/functions.c:4480
msgid ""
"Let us assume that the cells A1, A2, ..., A5 contain numbers 11.4, 17.3, "
"21.3, 25.9, and 40.1, and the cells B1, B2, ... B5 23.2, 25.8, 29.9, 33.5, "
"and 42.7."
msgstr ""
#: ../plugins/fn-stat/functions.c:329
msgid "Then COVAR(A1:A5,B1:B5) equals 65.858."
msgstr ""
#: ../plugins/fn-stat/functions.c:331
msgid "wiki:en:Covariance"
msgstr ""
#: ../plugins/fn-stat/functions.c:332 ../plugins/fn-stat/functions.c:362
msgid "wolfram:Covariance.html"
msgstr ""
#: ../plugins/fn-stat/functions.c:351
msgid "CORREL:Pearson correlation coefficient of two data sets"
msgstr ""
#: ../plugins/fn-stat/functions.c:353
msgid "array2:second data set"
msgstr ""
#: ../plugins/fn-stat/functions.c:359
msgid "Then CORREL(A1:A5,B1:B5) equals 0.996124788."
msgstr ""
#: ../plugins/fn-stat/functions.c:361
msgid "wiki:en:CorrelationCoefficient.html"
msgstr ""
#: ../plugins/fn-stat/functions.c:381
msgid ""
"NEGBINOMDIST:probability mass function of the negative binomial distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:382
msgid "f:number of failures"
msgstr ""
#: ../plugins/fn-stat/functions.c:383
msgid "t:threshold number of successes"
msgstr ""
#: ../plugins/fn-stat/functions.c:384
msgid "p:probability of a success"
msgstr ""
#: ../plugins/fn-stat/functions.c:385
msgid "If @{f} or @{t} is a non-integer it is truncated."
msgstr ""
#: ../plugins/fn-stat/functions.c:386
msgid "If (@{f} + @{t} -1) <= 0 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:387
msgid "If @{p} < 0 or @{p} > 1 this functions returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:410
msgid ""
"NORMSDIST:cumulative density function of the standard normal distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:411 ../plugins/fn-stat/functions.c:463
#: ../plugins/fn-stat/functions.c:524 ../plugins/fn-stat/functions.c:844
#: ../plugins/fn-stat/functions.c:913 ../plugins/fn-stat/functions.c:976
#: ../plugins/fn-stat/functions.c:1118 ../plugins/fn-stat/functions.c:1190
#: ../plugins/fn-stat/functions.c:1277 ../plugins/fn-stat/functions.c:1307
#: ../plugins/fn-stat/functions.c:1554 ../plugins/fn-stat/functions.c:1733
#: ../plugins/fn-stat/functions.c:1769 ../plugins/fn-stat/functions.c:1936
#: ../plugins/fn-stat/functions.c:4769 ../plugins/fn-stat/functions.c:4800
#: ../plugins/fn-stat/functions.c:4834 ../plugins/fn-stat/functions.c:4869
#: ../plugins/fn-stat/functions.c:4908 ../plugins/fn-stat/functions.c:4941
msgid "x:"
msgstr ""
#: ../plugins/fn-stat/functions.c:413
msgid "NORMSDIST is the OpenFormula function LEGACY.NORMSDIST."
msgstr ""
#: ../plugins/fn-stat/functions.c:416 ../plugins/fn-stat/functions.c:441
msgid "wiki:en:Normal_distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:417 ../plugins/fn-stat/functions.c:442
msgid "wolfram:NormalDistribution.html"
msgstr ""
#: ../plugins/fn-stat/functions.c:434
msgid ""
"NORMSINV:inverse of the cumulative density function of the standard normal "
"distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:435
msgid "p:given probability"
msgstr ""
#: ../plugins/fn-stat/functions.c:436
msgid "If @{p} < 0 or @{p} > 1 this function returns #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:438
msgid "NORMSINV is the OpenFormula function LEGACY.NORMSINV."
msgstr ""
#: ../plugins/fn-stat/functions.c:462
msgid ""
"LOGNORMDIST:cumulative distribution function of the lognormal distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:464 ../plugins/fn-stat/functions.c:494
msgid "mean:mean"
msgstr ""
#: ../plugins/fn-stat/functions.c:465 ../plugins/fn-stat/functions.c:495
msgid "stddev:standard deviation"
msgstr ""
#: ../plugins/fn-stat/functions.c:466
msgid "If @{stddev} = 0 LOGNORMDIST returns a #DIV/0! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:467
msgid ""
"If @{x} <= 0, @{mean} < 0 or @{stddev} <= 0 this function returns a #NUM! "
"error."
msgstr ""
#: ../plugins/fn-stat/functions.c:471 ../plugins/fn-stat/functions.c:500
msgid "wiki:en:Log-normal_distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:472 ../plugins/fn-stat/functions.c:501
msgid "wolfram:LogNormalDistribution.html"
msgstr ""
#: ../plugins/fn-stat/functions.c:492
msgid ""
"LOGINV:inverse of the cumulative distribution function of the lognormal "
"distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:496
msgid ""
"If @{p} < 0 or @{p} > 1 or @{stddev} <= 0 this function returns #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:523
msgid "FISHERINV:inverse of the Fisher transformation"
msgstr ""
#: ../plugins/fn-stat/functions.c:525
msgid "If @{x} is a non-number this function returns a #VALUE! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:541
msgid "MODE:first most common number in the dataset"
msgstr ""
#: ../plugins/fn-stat/functions.c:542 ../plugins/fn-stat/functions.c:570
#: ../plugins/fn-stat/functions.c:597 ../plugins/fn-stat/functions.c:624
#: ../plugins/fn-stat/functions.c:660 ../plugins/fn-stat/functions.c:694
#: ../plugins/fn-stat/functions.c:720 ../plugins/fn-stat/functions.c:755
#: ../plugins/fn-stat/functions.c:790 ../plugins/fn-stat/functions.c:819
#: ../plugins/fn-stat/functions.c:1830 ../plugins/fn-stat/functions.c:1861
#: ../plugins/fn-stat/functions.c:1887 ../plugins/fn-stat/functions.c:1911
#: ../plugins/fn-stat/functions.c:2040 ../plugins/fn-stat/functions.c:2574
#: ../plugins/fn-stat/functions.c:2599 ../plugins/fn-stat/functions.c:2626
msgid "number1:first value"
msgstr ""
#: ../plugins/fn-stat/functions.c:543 ../plugins/fn-stat/functions.c:571
#: ../plugins/fn-stat/functions.c:598 ../plugins/fn-stat/functions.c:625
#: ../plugins/fn-stat/functions.c:661 ../plugins/fn-stat/functions.c:695
#: ../plugins/fn-stat/functions.c:721 ../plugins/fn-stat/functions.c:756
#: ../plugins/fn-stat/functions.c:791 ../plugins/fn-stat/functions.c:820
#: ../plugins/fn-stat/functions.c:1831 ../plugins/fn-stat/functions.c:1862
#: ../plugins/fn-stat/functions.c:1888 ../plugins/fn-stat/functions.c:1912
#: ../plugins/fn-stat/functions.c:2041 ../plugins/fn-stat/functions.c:2575
#: ../plugins/fn-stat/functions.c:2600 ../plugins/fn-stat/functions.c:2627
msgid "number2:second value"
msgstr ""
#: ../plugins/fn-stat/functions.c:545
msgid ""
"If the data set does not contain any duplicates this function returns a #N/A "
"error."
msgstr ""
#: ../plugins/fn-stat/functions.c:547
msgid ""
"Let us assume that the cells A1, A2, ..., A5 contain numbers 11.4, 17.3, "
"11.4, 25.9, and 40.1."
msgstr ""
#: ../plugins/fn-stat/functions.c:548
msgid "Then MODE(A1:A5) equals 11.4."
msgstr ""
#: ../plugins/fn-stat/functions.c:550
msgid "wiki:en:Mode_(statistics)"
msgstr ""
#: ../plugins/fn-stat/functions.c:551
msgid "wolfram:Mode.html"
msgstr ""
#: ../plugins/fn-stat/functions.c:569
msgid "HARMEAN:harmonic mean"
msgstr ""
#: ../plugins/fn-stat/functions.c:572
msgid ""
"The harmonic mean of N data points is N divided by the sum of the "
"reciprocals of the data points)."
msgstr ""
#: ../plugins/fn-stat/functions.c:575
msgid "Then HARMEAN(A1:A5) equals 19.529814427."
msgstr ""
#: ../plugins/fn-stat/functions.c:577
msgid "wiki:en:Harmonic_mean"
msgstr ""
#: ../plugins/fn-stat/functions.c:578
msgid "wolfram:HarmonicMean.html"
msgstr ""
#: ../plugins/fn-stat/functions.c:596
msgid "GEOMEAN:geometric mean"
msgstr ""
#: ../plugins/fn-stat/functions.c:599
msgid ""
"The geometric mean is equal to the Nth root of the product of the N values."
msgstr ""
#: ../plugins/fn-stat/functions.c:602
msgid "Then GEOMEAN(A1:A5) equals 21.279182482."
msgstr ""
#: ../plugins/fn-stat/functions.c:604
msgid "wiki:en:Geometric_mean"
msgstr ""
#: ../plugins/fn-stat/functions.c:605
msgid "wolfram:GeometricMean.html"
msgstr ""
#: ../plugins/fn-stat/functions.c:623
msgid "COUNT:total number of integer or floating point arguments passed"
msgstr ""
#: ../plugins/fn-stat/functions.c:628
msgid "Then COUNT(A1:A5) equals 5."
msgstr ""
#: ../plugins/fn-stat/functions.c:659
msgid "COUNTA:number of arguments passed not including empty cells"
msgstr ""
#: ../plugins/fn-stat/functions.c:663
msgid ""
"Let us assume that the cells A1, A2, ..., A5 contain numbers and strings "
"11.4, \"missing\", \"missing\", 25.9, and 40.1."
msgstr ""
#: ../plugins/fn-stat/functions.c:664
msgid "Then COUNTA(A1:A5) equals 5."
msgstr ""
#: ../plugins/fn-stat/functions.c:693
msgid "AVERAGE:average of all the numeric values and cells"
msgstr ""
#: ../plugins/fn-stat/functions.c:698
msgid "Then AVERAGE(A1:A5) equals 23.2."
msgstr ""
#: ../plugins/fn-stat/functions.c:700
msgid "wiki:en:Arithmetic_mean"
msgstr ""
#: ../plugins/fn-stat/functions.c:701
msgid "wolfram:ArithmeticMean.html"
msgstr ""
#: ../plugins/fn-stat/functions.c:719
msgid ""
"MIN:smallest value, with negative numbers considered smaller than positive "
"numbers"
msgstr ""
#: ../plugins/fn-stat/functions.c:724
msgid "Then MIN(A1:A5) equals 11.4."
msgstr ""
#: ../plugins/fn-stat/functions.c:754
msgid ""
"MAX:largest value, with negative numbers considered smaller than positive "
"numbers."
msgstr ""
#: ../plugins/fn-stat/functions.c:759
msgid "Then MAX(A1:A5) equals 40.1."
msgstr ""
#: ../plugins/fn-stat/functions.c:789
msgid "SKEW:unbiased estimate for skewness of a distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:793
msgid ""
"This is only meaningful if the underlying distribution really has a third "
"moment. The skewness of a symmetric (e.g., normal) distribution is zero."
msgstr ""
#: ../plugins/fn-stat/functions.c:796
msgid ""
"If less than three numbers are given, this function returns a #DIV/0! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:799
msgid "Then SKEW(A1:A5) equals 0.976798268."
msgstr ""
#: ../plugins/fn-stat/functions.c:818
msgid "SKEWP:population skewness of a data set"
msgstr ""
#: ../plugins/fn-stat/functions.c:822
msgid "If less than two numbers are given, SKEWP returns a #DIV/0! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:824
msgid "Then SKEWP(A1:A5) equals 0.655256198."
msgstr ""
#: ../plugins/fn-stat/functions.c:843
msgid "EXPONDIST:(cumulative)density function of the exponential distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:845
msgid "y:scale parameter"
msgstr ""
#: ../plugins/fn-stat/functions.c:846 ../plugins/fn-stat/functions.c:916
#: ../plugins/fn-stat/functions.c:1556 ../plugins/fn-stat/functions.c:1736
#: ../plugins/fn-stat/functions.c:1772
msgid ""
"cumulative:whether to evaluate the density function or the cumulative "
"distribution function"
msgstr ""
#: ../plugins/fn-stat/functions.c:847
msgid ""
"If @{cumulative} is false it will return:\t@{y} * exp (-@{y}*@{x}),otherwise "
"it will return\t1 - exp (-@{y}*@{x})."
msgstr ""
#: ../plugins/fn-stat/functions.c:850
msgid "If @{x} < 0 or @{y} <= 0 this will return an error."
msgstr ""
#: ../plugins/fn-stat/functions.c:876
msgid "BERNOULLI:probability mass function of a Bernoulli distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:877
msgid "k:"
msgstr ""
#: ../plugins/fn-stat/functions.c:879
msgid "If @{k} != 0 and @{k} != 1 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:880 ../plugins/fn-stat/functions.c:949
#: ../plugins/fn-stat/functions.c:1160 ../plugins/fn-stat/functions.c:1447
#: ../plugins/fn-stat/functions.c:1480 ../plugins/fn-stat/functions.c:1514
#: ../plugins/fn-stat/functions.c:1589 ../plugins/fn-stat/functions.c:4742
msgid "If @{p} < 0 or @{p} > 1 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:912
msgid "GAMMADIST:(cumulative) density function of the gamma distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:914 ../plugins/fn-stat/functions.c:947
#: ../plugins/fn-stat/functions.c:1119 ../plugins/fn-stat/functions.c:1156
#: ../plugins/fn-stat/functions.c:1734
msgid "alpha:scale parameter"
msgstr ""
#: ../plugins/fn-stat/functions.c:915 ../plugins/fn-stat/functions.c:948
#: ../plugins/fn-stat/functions.c:1120 ../plugins/fn-stat/functions.c:1157
#: ../plugins/fn-stat/functions.c:1735
msgid "beta:scale parameter"
msgstr ""
#: ../plugins/fn-stat/functions.c:917 ../plugins/fn-stat/functions.c:1281
#: ../plugins/fn-stat/functions.c:1740 ../plugins/fn-stat/functions.c:1969
msgid "If @{x} < 0 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:918 ../plugins/fn-stat/functions.c:1124
#: ../plugins/fn-stat/functions.c:1161
msgid "If @{alpha} <= 0 or @{beta} <= 0, this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:945
msgid "GAMMAINV:inverse of the cumulative gamma distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:950 ../plugins/fn-stat/functions.c:1741
msgid "If @{alpha} <= 0 or @{beta} <= 0 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:975
msgid "CHIDIST:survival function of the chi-squared distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:977 ../plugins/fn-stat/functions.c:1005
#: ../plugins/fn-stat/functions.c:1191 ../plugins/fn-stat/functions.c:1243
msgid "dof:number of degrees of freedom"
msgstr ""
#: ../plugins/fn-stat/functions.c:978 ../plugins/fn-stat/functions.c:1006
#: ../plugins/fn-stat/functions.c:1193 ../plugins/fn-stat/functions.c:1244
#: ../plugins/fn-stat/functions.c:1280 ../plugins/fn-stat/functions.c:1446
msgid "The survival function is 1 minus the cumulative distribution function."
msgstr ""
#: ../plugins/fn-stat/functions.c:979
msgid "If @{dof} is non-integer it is truncated."
msgstr ""
#: ../plugins/fn-stat/functions.c:980 ../plugins/fn-stat/functions.c:1194
msgid "If @{dof} < 1 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:982
msgid ""
"CHIDIST(@{x},@{dof}) is the OpenFormula function LEGACY.CHIDIST(@{x},@{dof})."
msgstr ""
#: ../plugins/fn-stat/functions.c:1003
msgid "CHIINV:inverse of the survival function of the chi-squared distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1007 ../plugins/fn-stat/functions.c:1245
msgid ""
"If @{p} < 0 or @{p} > 1 or @{dof} < 1 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1009
msgid ""
"CHIINV(@{p},@{dof}) is the OpenFormula function LEGACY.CHIDIST(@{p},@{dof})."
msgstr ""
#: ../plugins/fn-stat/functions.c:1030
msgid "CHITEST:p value of the Goodness of Fit Test"
msgstr ""
#: ../plugins/fn-stat/functions.c:1031
msgid "actual_range:observed data"
msgstr ""
#: ../plugins/fn-stat/functions.c:1032
msgid "theoretical_range:expected values"
msgstr ""
#: ../plugins/fn-stat/functions.c:1033
msgid ""
"If the actual range is not an n by 1 or 1 by n range, but an n by m range, "
"then CHITEST uses (n-1) times (m-1) as degrees of freedom. This is useful if "
"the expected values were calculated from the observed value in a test of "
"independence or test of homogeneity."
msgstr ""
#: ../plugins/fn-stat/functions.c:1039
msgid "CHITEST is the OpenFormula function LEGACY.CHITEST."
msgstr ""
#: ../plugins/fn-stat/functions.c:1117
msgid "BETADIST:cumulative distribution function of the beta distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1121 ../plugins/fn-stat/functions.c:1158
msgid "a:optional lower bound, defaults to 0"
msgstr ""
#: ../plugins/fn-stat/functions.c:1122 ../plugins/fn-stat/functions.c:1159
msgid "b:optional upper bound, defaults to 1"
msgstr ""
#: ../plugins/fn-stat/functions.c:1123
msgid "If @{x} < @{a} or @{x} > @{b} this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1125 ../plugins/fn-stat/functions.c:1162
msgid "If @{a} >= @{b} this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1154
msgid ""
"BETAINV:inverse of the cumulative distribution function of the beta "
"distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1189
msgid "TDIST:survival function of the Student t-distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1192
msgid "tails:1 or 2."
msgstr ""
#: ../plugins/fn-stat/functions.c:1195
msgid "If @{tails} is neither 1 or 2 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1196
msgid ""
"The parameterization of this function is different from what is used for, e."
"g., NORMSDIST. This is a common source of mistakes, but necessary for "
"compatibility."
msgstr ""
#: ../plugins/fn-stat/functions.c:1199
msgid "This function is Excel compatible for non-negative @{x}."
msgstr ""
#: ../plugins/fn-stat/functions.c:1241
msgid "TINV:inverse of the survival function of the Student t-distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1247
msgid ""
"The parameterization of this function is different from what is used for, e."
"g., NORMSINV. This is a common source of mistakes, but necessary for "
"compatibility."
msgstr ""
#: ../plugins/fn-stat/functions.c:1276
msgid "FDIST:survival function of the F distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1278 ../plugins/fn-stat/functions.c:1444
msgid "dof_of_num:numerator degrees of freedom"
msgstr ""
#: ../plugins/fn-stat/functions.c:1279 ../plugins/fn-stat/functions.c:1445
msgid "dof_of_denom:denominator degrees of freedom"
msgstr ""
#: ../plugins/fn-stat/functions.c:1282
msgid ""
"If @{dof_of_num} < 1 or @{dof_of_denom} < 1, this function returns a #NUM! "
"error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1284
msgid "FDIST is the OpenFormula function LEGACY.FDIST."
msgstr ""
#: ../plugins/fn-stat/functions.c:1306
msgid ""
"LANDAU:approximate probability density function of the Landau distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1442
msgid "FINV:inverse of the survival function of the F distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1448
msgid ""
"If @{dof_of_num} < 1 or @{dof_of_denom} < 1 this function returns a #NUM! "
"error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1450
msgid "FINV is the OpenFormula function LEGACY.FINV."
msgstr ""
#: ../plugins/fn-stat/functions.c:1472
msgid ""
"BINOMDIST:(cumulative) probability mass function of the binomial distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1473
msgid "n:number of successes"
msgstr ""
#: ../plugins/fn-stat/functions.c:1474 ../plugins/fn-stat/functions.c:1508
#: ../plugins/fn-stat/functions.c:1584
msgid "trials:number of trials"
msgstr ""
#: ../plugins/fn-stat/functions.c:1475 ../plugins/fn-stat/functions.c:1509
#: ../plugins/fn-stat/functions.c:1585
msgid "p:probability of success in each trial"
msgstr ""
#: ../plugins/fn-stat/functions.c:1476 ../plugins/fn-stat/functions.c:1644
#: ../plugins/fn-stat/functions.c:1967 ../plugins/fn-stat/functions.c:4740
msgid ""
"cumulative:whether to evaluate the mass function or the cumulative "
"distribution function"
msgstr ""
#: ../plugins/fn-stat/functions.c:1477
msgid "If @{n} or @{trials} are non-integer they are truncated."
msgstr ""
#: ../plugins/fn-stat/functions.c:1478
msgid "If @{n} < 0 or @{trials} < 0 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1479
msgid "If @{n} > @{trials} this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1507
msgid ""
"BINOM.DIST.RANGE:probability of the binomial distribution over an interval"
msgstr ""
#: ../plugins/fn-stat/functions.c:1510
msgid "start:start of the interval"
msgstr ""
#: ../plugins/fn-stat/functions.c:1511
msgid "end:start of the interval, defaults to @{start}"
msgstr ""
#: ../plugins/fn-stat/functions.c:1512
msgid "If @{start}, @{end} or @{trials} are non-integer they are truncated."
msgstr ""
#: ../plugins/fn-stat/functions.c:1513 ../plugins/fn-stat/functions.c:1588
msgid "If @{trials} < 0 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1515
msgid "If @{start} > @{end} this function returns 0."
msgstr ""
#: ../plugins/fn-stat/functions.c:1516
msgid "This function is the OpenFormula function B"
msgstr ""
#: ../plugins/fn-stat/functions.c:1552
msgid ""
"CAUCHY:(cumulative) probability density function of the Cauchy, Lorentz or "
"Breit-Wigner distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1555 ../plugins/fn-stat/functions.c:4770
#: ../plugins/fn-stat/functions.c:4909
msgid "a:scale parameter"
msgstr ""
#: ../plugins/fn-stat/functions.c:1557
msgid "If @{a} < 0 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1558 ../plugins/fn-stat/functions.c:4743
msgid ""
"If @{cumulative} is neither TRUE nor FALSE this function returns a #VALUE! "
"error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1583
msgid "CRITBINOM:right-tailed critical value of the binomial distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1586
msgid "alpha:significance level (area of the tail)"
msgstr ""
#: ../plugins/fn-stat/functions.c:1587
msgid "If @{trials} is a non-integer it is truncated."
msgstr ""
#: ../plugins/fn-stat/functions.c:1590
msgid "If @{alpha} < 0 or @{alpha} > 1 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1613
msgid "PERMUT:number of @{k}-permutations of a @{n}-set"
msgstr ""
#: ../plugins/fn-stat/functions.c:1614
msgid "n:size of the base set"
msgstr ""
#: ../plugins/fn-stat/functions.c:1615
msgid "k:number of elements in each permutation"
msgstr ""
#: ../plugins/fn-stat/functions.c:1616
msgid "If @{n} = 0 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1617
msgid "If @{n} < @{k} this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1639
msgid ""
"HYPGEOMDIST:(cumulative) probability mass function of the hypergeometric "
"distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1640
msgid "x:number of successes"
msgstr ""
#: ../plugins/fn-stat/functions.c:1641
msgid "n:sample size"
msgstr ""
#: ../plugins/fn-stat/functions.c:1642
msgid "M:number of possible successes in the population"
msgstr ""
#: ../plugins/fn-stat/functions.c:1643
msgid "N:population size"
msgstr ""
#: ../plugins/fn-stat/functions.c:1645
msgid "If @{x},@{n},@{M} or @{N} is a non-integer it is truncated."
msgstr ""
#: ../plugins/fn-stat/functions.c:1646
msgid "If @{x},@{n},@{M} or @{N} < 0 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1647
msgid "If @{x} > @{M} or @{n} > @{N} this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1675
msgid ""
"CONFIDENCE:margin of error of a confidence interval for the population mean"
msgstr ""
#: ../plugins/fn-stat/functions.c:1676
msgid "alpha:significance level"
msgstr ""
#: ../plugins/fn-stat/functions.c:1677
msgid "stddev:population standard deviation"
msgstr ""
#: ../plugins/fn-stat/functions.c:1678
msgid "size:sample size"
msgstr ""
#: ../plugins/fn-stat/functions.c:1679
msgid ""
"This function requires the usually unknown population standard deviation."
msgstr ""
#: ../plugins/fn-stat/functions.c:1680
msgid "If @{size} is non-integer it is truncated."
msgstr ""
#: ../plugins/fn-stat/functions.c:1681
msgid "If @{size} < 0 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1682
msgid "If @{size} is 0 this function returns a #DIV/0! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1705
msgid "STANDARDIZE:z-score of a value"
msgstr ""
#: ../plugins/fn-stat/functions.c:1707
msgid "mean:mean of the original distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1708
msgid "stddev:standard deviation of the original distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1709 ../plugins/fn-stat/functions.c:1773
msgid "If @{stddev} is 0 this function returns a #DIV/0! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1732
msgid ""
"WEIBULL:(cumulative) probability density function of the Weibull distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1737
msgid ""
"If the @{cumulative} boolean is true it will return: 1 - exp (-(@{x}/@{beta})"
"^@{alpha}),otherwise it will return (@{alpha}/@{beta}^@{alpha}) * @{x}^(@"
"{alpha}-1) * exp(-(@{x}/@{beta}^@{alpha}))."
msgstr ""
#: ../plugins/fn-stat/functions.c:1768
msgid ""
"NORMDIST:(cumulative) probability density function of a normal distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1770 ../plugins/fn-stat/functions.c:1803
#: ../plugins/fn-stat/functions.c:1966
msgid "mean:mean of the distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1771 ../plugins/fn-stat/functions.c:1804
msgid "stddev:standard deviation of the distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1801
msgid ""
"NORMINV:inverse of the cumulative distribution function of a normal "
"distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1805
msgid ""
"If @{p} < 0 or @{p} > 1 or @{stddev} <= 0 this function returns a #NUM! "
"error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1829
msgid "KURT:unbiased estimate of the kurtosis of a data set."
msgstr ""
#: ../plugins/fn-stat/functions.c:1833
msgid ""
"This is only meaningful if the underlying distribution really has a fourth "
"moment. The kurtosis is offset by three such that a normal distribution "
"will have zero kurtosis."
msgstr ""
#: ../plugins/fn-stat/functions.c:1837
msgid ""
"If fewer than four numbers are given or all of them are equal this function "
"returns a #DIV/0! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1841
msgid "Then KURT(A1:A5) equals 1.234546305."
msgstr ""
#: ../plugins/fn-stat/functions.c:1860
msgid "KURTP:population kurtosis of a data set"
msgstr ""
#: ../plugins/fn-stat/functions.c:1864
msgid ""
"If fewer than two numbers are given or all of them are equal this function "
"returns a #DIV/0! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1867
msgid "Then KURTP(A1:A5) equals -0.691363424."
msgstr ""
#: ../plugins/fn-stat/functions.c:1886
msgid "AVEDEV:average of the absolute deviations of a data set"
msgstr ""
#: ../plugins/fn-stat/functions.c:1891
msgid "Then AVEDEV(A1:A5) equals 7.84."
msgstr ""
#: ../plugins/fn-stat/functions.c:1910
msgid "DEVSQ:sum of squares of deviations of a data set"
msgstr ""
#: ../plugins/fn-stat/functions.c:1916
msgid "Then DEVSQ(A1:A5) equals 470.56."
msgstr ""
#: ../plugins/fn-stat/functions.c:1935
msgid "FISHER:Fisher transformation"
msgstr ""
#: ../plugins/fn-stat/functions.c:1937
msgid "If @{x} is not a number, this function returns a #VALUE! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1938
msgid "If @{x} <= -1 or @{x} >= 1, this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1964
msgid ""
"POISSON:(cumulative) probability mass function of the Poisson distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:1965
msgid "x:number of events"
msgstr ""
#: ../plugins/fn-stat/functions.c:1968
msgid "If @{x} is a non-integer it is truncated."
msgstr ""
#: ../plugins/fn-stat/functions.c:1970
msgid "If @{mean} <= 0 POISSON returns the #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:1996
msgid "PEARSON:Pearson correlation coefficient of the paired set of data"
msgstr ""
#: ../plugins/fn-stat/functions.c:1997 ../plugins/fn-stat/functions.c:2016
msgid "array1:first component values"
msgstr ""
#: ../plugins/fn-stat/functions.c:1998 ../plugins/fn-stat/functions.c:2017
msgid "array2:second component values"
msgstr ""
#: ../plugins/fn-stat/functions.c:2015
msgid ""
"RSQ:square of the Pearson correlation coefficient of the paired set of data"
msgstr ""
#: ../plugins/fn-stat/functions.c:2039
msgid "MEDIAN:median of a data set"
msgstr ""
#: ../plugins/fn-stat/functions.c:2043
msgid ""
"If even numbers are given MEDIAN returns the average of the two numbers in "
"the center."
msgstr ""
#: ../plugins/fn-stat/functions.c:2047
msgid "Then MEDIAN(A1:A5) equals 21.3."
msgstr ""
#: ../plugins/fn-stat/functions.c:2049
msgid "wiki:en:Median"
msgstr ""
#: ../plugins/fn-stat/functions.c:2050
msgid "wolfram:StatisticalMedian.html"
msgstr ""
#: ../plugins/fn-stat/functions.c:2069
msgid ""
"SSMEDIAN:median for grouped data as commonly determined in the social "
"sciences"
msgstr ""
#: ../plugins/fn-stat/functions.c:2070
msgid "array:data set"
msgstr ""
#: ../plugins/fn-stat/functions.c:2071
msgid "interval:length of each grouping interval, defaults to 1"
msgstr ""
#: ../plugins/fn-stat/functions.c:2072
msgid ""
"The data points given in @{array} are assumed to be the result of grouping "
"data into intervals of length @{interval}"
msgstr ""
#: ../plugins/fn-stat/functions.c:2074 ../plugins/fn-stat/functions.c:2867
#: ../plugins/fn-stat/functions.c:2910
msgid "If @{array} is empty, this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:2075
msgid ""
"If @{interval} <= 0, this function returns a #NUM! error.SSMEDIAN does not "
"check whether the data points are at least @{interval} apart."
msgstr ""
#: ../plugins/fn-stat/functions.c:2078
msgid "Let us assume that the cells A1, A2, A3 contain numbers 7, 8, 8."
msgstr ""
#: ../plugins/fn-stat/functions.c:2079
msgid "Then SSMEDIAN(A1:A3, 1) equals 7.75."
msgstr ""
#: ../plugins/fn-stat/functions.c:2161
msgid "LARGE:@{k}-th largest value in a data set"
msgstr ""
#: ../plugins/fn-stat/functions.c:2162 ../plugins/fn-stat/functions.c:2205
msgid "data:data set"
msgstr ""
#: ../plugins/fn-stat/functions.c:2163 ../plugins/fn-stat/functions.c:2206
msgid "k:which value to find"
msgstr ""
#: ../plugins/fn-stat/functions.c:2164 ../plugins/fn-stat/functions.c:2207
msgid "If data set is empty this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:2165 ../plugins/fn-stat/functions.c:2208
msgid ""
"If @{k} <= 0 or @{k} is greater than the number of data items given this "
"function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:2170
msgid "Then LARGE(A1:A5,2) equals 25.9.LARGE(A1:A5,4) equals 17.3."
msgstr ""
#: ../plugins/fn-stat/functions.c:2204
msgid "SMALL: @{k}-th smallest value in a data set."
msgstr ""
#: ../plugins/fn-stat/functions.c:2213
msgid "Then SMALL(A1:A5,2) equals 17.3.SMALL(A1:A5,4) equals 25.9."
msgstr ""
#: ../plugins/fn-stat/functions.c:2273
msgid ""
"PROB:probability of an interval for a discrete (and finite) probability "
"distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:2274
msgid "x_range:possible values"
msgstr ""
#: ../plugins/fn-stat/functions.c:2275
msgid "prob_range:probabilities of the corresponding values"
msgstr ""
#: ../plugins/fn-stat/functions.c:2276
msgid "lower_limit:lower interval limit"
msgstr ""
#: ../plugins/fn-stat/functions.c:2277
msgid "upper_limit:upper interval limit, defaults to @{lower_limit}"
msgstr ""
#: ../plugins/fn-stat/functions.c:2278
msgid ""
"If the sum of the probabilities in @{prob_range} is not equal to 1 this "
"function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:2280
msgid ""
"If any value in @{prob_range} is <=0 or > 1, this function returns a #NUM! "
"error."
msgstr ""
#: ../plugins/fn-stat/functions.c:2282
msgid ""
"If @{x_range} and @{prob_range} contain a different number of data entries, "
"this function returns a #N/A error."
msgstr ""
#: ../plugins/fn-stat/functions.c:2359
msgid "STEYX:standard error of the predicted y-value in the regression"
msgstr ""
#: ../plugins/fn-stat/functions.c:2360 ../plugins/fn-stat/functions.c:3515
#: ../plugins/fn-stat/functions.c:3780 ../plugins/fn-stat/functions.c:3875
#: ../plugins/fn-stat/functions.c:3987 ../plugins/fn-stat/functions.c:4227
#: ../plugins/fn-stat/functions.c:4346 ../plugins/fn-stat/functions.c:4418
#: ../plugins/fn-stat/functions.c:4473
msgid "known_y's:known y-values"
msgstr ""
#: ../plugins/fn-stat/functions.c:2361 ../plugins/fn-stat/functions.c:3781
#: ../plugins/fn-stat/functions.c:4347 ../plugins/fn-stat/functions.c:4419
#: ../plugins/fn-stat/functions.c:4474
msgid "known_x's:known x-values"
msgstr ""
#: ../plugins/fn-stat/functions.c:2362
msgid ""
"If @{known_y}'s and @{known_x}'s are empty or have a different number of "
"arguments then this function returns a #N/A error."
msgstr ""
#: ../plugins/fn-stat/functions.c:2368
msgid "Then STEYX(A1:A5,B1:B5) equals 1.101509979."
msgstr ""
#: ../plugins/fn-stat/functions.c:2508
msgid ""
"ZTEST:the probability of observing a sample mean as large as or larger than "
"the mean of the given sample"
msgstr ""
#: ../plugins/fn-stat/functions.c:2510
msgid "ref:data set (sample)"
msgstr ""
#: ../plugins/fn-stat/functions.c:2511
msgid "x:population mean"
msgstr ""
#: ../plugins/fn-stat/functions.c:2512
msgid ""
"stddev:population standard deviation, defaults to the sample standard "
"deviation"
msgstr ""
#: ../plugins/fn-stat/functions.c:2513
msgid ""
"ZTEST calulates the probability of observing a sample mean as large as or "
"larger than the mean of the given sample for samples drawn from a normal "
"distribution with mean @{x} and standard deviation @{stddev}."
msgstr ""
#: ../plugins/fn-stat/functions.c:2516
msgid ""
"If @{ref} contains less than two data items ZTEST returns #DIV/0! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:2522
msgid "Then ZTEST(A1:A5,20) equals 0.254717826."
msgstr ""
#: ../plugins/fn-stat/functions.c:2573
msgid "AVERAGEA:average of all the values and cells"
msgstr ""
#: ../plugins/fn-stat/functions.c:2578 ../plugins/fn-stat/functions.c:2603
#: ../plugins/fn-stat/functions.c:2630 ../plugins/fn-stat/functions.c:2662
#: ../plugins/fn-stat/functions.c:2689 ../plugins/fn-stat/functions.c:2719
#: ../plugins/fn-stat/functions.c:2746
msgid ""
"Let us assume that the cells A1, A2, ..., A5 contain numbers and strings "
"11.4, 17.3, \"missing\", 25.9, and 40.1."
msgstr ""
#: ../plugins/fn-stat/functions.c:2579
msgid "Then AVERAGEA(A1:A5) equals 18.94."
msgstr ""
#: ../plugins/fn-stat/functions.c:2598
msgid ""
"MAXA:largest value, with negative numbers considered smaller than positive "
"numbers."
msgstr ""
#: ../plugins/fn-stat/functions.c:2605
msgid "Then MAXA(A1:A5) equals 40.1."
msgstr ""
#: ../plugins/fn-stat/functions.c:2625
msgid ""
"MINA:smallest value, with negative numbers considered smaller than positive "
"numbers"
msgstr ""
#: ../plugins/fn-stat/functions.c:2632
msgid "Then MINA(A1:A5) equals 0."
msgstr ""
#: ../plugins/fn-stat/functions.c:2652
msgid "VARA:sample variance of the given sample"
msgstr ""
#: ../plugins/fn-stat/functions.c:2655
msgid "VARA is also known as the N-1-variance."
msgstr ""
#: ../plugins/fn-stat/functions.c:2656
msgid "To get the true variance of a complete population use VARPA."
msgstr ""
#: ../plugins/fn-stat/functions.c:2664
msgid "Then VARA(A1:A5) equals 228.613."
msgstr ""
#: ../plugins/fn-stat/functions.c:2683
msgid "VARPA:variance of an entire population"
msgstr ""
#: ../plugins/fn-stat/functions.c:2686
msgid "VARPA is also known as the N-variance."
msgstr ""
#: ../plugins/fn-stat/functions.c:2691
msgid "Then VARPA(A1:A5) equals 182.8904."
msgstr ""
#: ../plugins/fn-stat/functions.c:2710
msgid "STDEVA:sample standard deviation of the given sample."
msgstr ""
#: ../plugins/fn-stat/functions.c:2714
msgid "STDEVA is also known as the N-1-standard deviation."
msgstr ""
#: ../plugins/fn-stat/functions.c:2715
msgid ""
"To obtain the population standard deviation of a whole population use "
"STDEVPA."
msgstr ""
#: ../plugins/fn-stat/functions.c:2721
msgid "Then STDEVA(A1:A5) equals 15.119953704."
msgstr ""
#: ../plugins/fn-stat/functions.c:2740
msgid "STDEVPA:population standard deviation of an entire population."
msgstr ""
#: ../plugins/fn-stat/functions.c:2748
msgid "Then STDEVPA(A1:A5) equals 13.523697719."
msgstr ""
#: ../plugins/fn-stat/functions.c:2767
msgid "PERCENTRANK:rank of a data point in a data set."
msgstr ""
#: ../plugins/fn-stat/functions.c:2768
msgid "array:range of numeric values"
msgstr ""
#: ../plugins/fn-stat/functions.c:2769
msgid "x:data point to be ranked"
msgstr ""
#: ../plugins/fn-stat/functions.c:2770
msgid "significance:number of significant digits, defaults to 3"
msgstr ""
#: ../plugins/fn-stat/functions.c:2771
msgid ""
"If @{array} contains no data points, this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:2773
msgid ""
"If @{significance} is less than one, this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:2775
msgid ""
"If @{x} exceeds the largest value or is less than the smallest value in @"
"{array}, this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:2777
msgid ""
"If @{x} does not match any of the values in @{array} or @{x} matches more "
"than once, this function interpolates the returned value."
msgstr ""
#: ../plugins/fn-stat/functions.c:2864
msgid ""
"PERCENTILE:determines the 100*@{k}-th percentile of the given data points"
msgstr ""
#: ../plugins/fn-stat/functions.c:2865 ../plugins/fn-stat/functions.c:2907
msgid "array:data points"
msgstr ""
#: ../plugins/fn-stat/functions.c:2866
msgid "k:which percentile to calculate"
msgstr ""
#: ../plugins/fn-stat/functions.c:2868
msgid "If @{k} < 0 or @{k} > 1, this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:2871
msgid "Then PERCENTILE(A1:A5,0.42) equals 20.02."
msgstr ""
#: ../plugins/fn-stat/functions.c:2906
msgid "QUARTILE:the @{k}-th quartile of the data points"
msgstr ""
#: ../plugins/fn-stat/functions.c:2908
msgid ""
"quart:A number from 0 to 4, indicating which quartile to calculate. A value "
"of 0 causes the smallest value of @{array} to be returned."
msgstr ""
#: ../plugins/fn-stat/functions.c:2911
msgid "If @{quart} < 0 or @{quart} > 4, this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:2912
msgid "If @{quart} is not an integer, it is truncated."
msgstr ""
#: ../plugins/fn-stat/functions.c:2915
msgid "Then QUARTILE(A1:A5,1) equals 17.3."
msgstr ""
#: ../plugins/fn-stat/functions.c:2950
msgid ""
"FTEST:p-value for the two-tailed hypothesis test comparing the variances of "
"two populations"
msgstr ""
#: ../plugins/fn-stat/functions.c:2952 ../plugins/fn-stat/functions.c:3009
msgid "array1:sample from the first population"
msgstr ""
#: ../plugins/fn-stat/functions.c:2953 ../plugins/fn-stat/functions.c:3010
msgid "array2:sample from the second population"
msgstr ""
#: ../plugins/fn-stat/functions.c:2958
msgid "Then FTEST(A1:A5,B1:B5) equals 0.510815017."
msgstr ""
#: ../plugins/fn-stat/functions.c:3007
msgid ""
"TTEST:p-value for a hypothesis test comparing the means of two populations "
"using the Student t-distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:3011
msgid "tails:number of tails to consider"
msgstr ""
#: ../plugins/fn-stat/functions.c:3012
msgid ""
"type:Type of test to perform. 1 indicates a test for paired variables, 2 a "
"test of unpaired variables with equal variances, and 3 a test of unpaired "
"variables with unequal variances"
msgstr ""
#: ../plugins/fn-stat/functions.c:3015
msgid ""
"If the data sets contain a different number of data points and the test is "
"paired (@{type} one), TTEST returns the #N/A error."
msgstr ""
#: ../plugins/fn-stat/functions.c:3017
msgid "@{tails} and @{type} are truncated to integers."
msgstr ""
#: ../plugins/fn-stat/functions.c:3018
msgid "If @{tails} is not one or two, this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:3019
msgid ""
"If @{type} is any other than one, two, or three, this function returns a "
"#NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:3024
msgid ""
"Then TTEST(A1:A5,B1:B5,1,1) equals 0.003127619.TTEST(A1:A5,B1:B5,2,1) equals "
"0.006255239.TTEST(A1:A5,B1:B5,1,2) equals 0.111804322.TTEST(A1:A5,B1:B5,1,3) "
"equals 0.113821797."
msgstr ""
#: ../plugins/fn-stat/functions.c:3179
msgid "FREQUENCY:the frequency table"
msgstr ""
#: ../plugins/fn-stat/functions.c:3180
msgid "data_array:data values"
msgstr ""
#: ../plugins/fn-stat/functions.c:3181
msgid "bins_array:array of cutoff values"
msgstr ""
#: ../plugins/fn-stat/functions.c:3182
msgid "The results are given as an array."
msgstr ""
#: ../plugins/fn-stat/functions.c:3183
msgid ""
"If the @{bin_array} is empty, this function returns the number of data "
"points in @{data_array}."
msgstr ""
#: ../plugins/fn-stat/functions.c:3247
msgid ""
"LINEST:determines multiple linear regression coefficients and statistics."
msgstr ""
#: ../plugins/fn-stat/functions.c:3248
msgid "known_y's:vector of values of dependent variable."
msgstr ""
#: ../plugins/fn-stat/functions.c:3249
msgid ""
"known_x's:array of values of independent variables, defaults to a single "
"vector 1,...,n."
msgstr ""
#: ../plugins/fn-stat/functions.c:3250
msgid "affine:if true, the model contains a constant term, defaults to true."
msgstr ""
#: ../plugins/fn-stat/functions.c:3251
msgid ""
"stats:if true, some additional statistics are provided, defaults to false"
msgstr ""
#: ../plugins/fn-stat/functions.c:3252
msgid ""
"This function returns an array with the first row giving the regression "
"coefficients for the independent variables x_m, x_(m-1),...,x_2, x_1 "
"followed by the y-intercept if @{affine} is true."
msgstr ""
#: ../plugins/fn-stat/functions.c:3255
msgid ""
"If @{stats} is true, the second row contains the corresponding standard "
"errors of the regression coefficients.In this case, the third row contains "
"the R^2 value and the standard error for the predicted value. The fourth row "
"contains the observed F value and its degrees of freedom. Finally, the fifth "
"row contains the regression sum of squares and the residual sum of squares."
msgstr ""
#: ../plugins/fn-stat/functions.c:3262
msgid ""
"If @{affine} is false, R^2 is the uncentered version of the coefficient of "
"determination; that is the proportion of the sum of squares explained by the "
"model."
msgstr ""
#: ../plugins/fn-stat/functions.c:3265
msgid ""
"If the length of @{known_y's} does not match the corresponding length of @"
"{known_x's}, this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:3514
msgid "LOGREG:the logarithmic regression"
msgstr ""
#: ../plugins/fn-stat/functions.c:3516 ../plugins/fn-stat/functions.c:3876
#: ../plugins/fn-stat/functions.c:3988 ../plugins/fn-stat/functions.c:4228
msgid ""
"known_x's:known x-values; if @{known_x}'s is omitted, an array {1, 2, "
"3, ...} is used."
msgstr ""
#: ../plugins/fn-stat/functions.c:3517
msgid ""
"const:If this is FALSE, the curve will be forced to go through [1; 0], i.e., "
"b will be zero. The default is TRUE."
msgstr ""
#: ../plugins/fn-stat/functions.c:3519 ../plugins/fn-stat/functions.c:3990
msgid ""
"stat:If @{stat} is TRUE, extra statistical information will be returned; "
"defaults to FALSE."
msgstr ""
#: ../plugins/fn-stat/functions.c:3520
msgid ""
"LOGREG function transforms your x's to z=ln(x) and applies the ``least "
"squares'' method to fit the linear equation y = m * z + b to your y's and "
"z's --- equivalent to fitting the equation y = m * ln(x) + b to y's and x's. "
"LOGREG returns an array having two columns and one row. m is given in the "
"first column and b in the second. "
msgstr ""
#: ../plugins/fn-stat/functions.c:3528
msgid ""
"Any extra statistical information is written below m and b in the result "
"array. This extra statistical information consists of four rows of data: "
"In the first row the standard error values for the coefficients m, b are "
"given. The second row contains the square of R and the standard error for "
"the y estimate. The third row contains the F-observed value and the degrees "
"of freedom. The last row contains the regression sum of squares and the "
"residual sum of squares.The default of @{stat} is FALSE."
msgstr ""
#: ../plugins/fn-stat/functions.c:3537 ../plugins/fn-stat/functions.c:4004
#: ../plugins/fn-stat/functions.c:4236
msgid ""
"If @{known_y}'s and @{known_x}'s have unequal number of data points, this "
"function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:3779
msgid "LOGFIT:logarithmic least square fit (using a trial and error method)"
msgstr ""
#: ../plugins/fn-stat/functions.c:3783
msgid ""
"LOGFIT function applies the ``least squares'' method to fit the logarithmic "
"equation y = a + b * ln(sign * (x - c)) , sign = +1 or -1 to your data. "
"The graph of the equation is a logarithmic curve moved horizontally by c and "
"possibly mirrored across the y-axis (if sign = -1)."
msgstr ""
#: ../plugins/fn-stat/functions.c:3789
msgid ""
"LOGFIT returns an array having five columns and one row. `Sign' is given in "
"the first column, `a', `b', and `c' are given in columns 2 to 4. Column 5 "
"holds the sum of squared residuals."
msgstr ""
#: ../plugins/fn-stat/functions.c:3793
msgid ""
"An error is returned when there are less than 3 different x's or y's, or "
"when the shape of the point cloud is too different from a ``logarithmic'' "
"one."
msgstr ""
#: ../plugins/fn-stat/functions.c:3796
msgid ""
"You can use the above formula = a + b * ln(sign * (x - c)) or rearrange it "
"to = (exp((y - a) / b)) / sign + c to compute unknown y's or x's, "
"respectively. "
msgstr ""
#: ../plugins/fn-stat/functions.c:3801
msgid ""
"This is non-linear fitting by trial-and-error. The accuracy of `c' is: width "
"of x-range -> rounded to the next smaller (10^integer), times 0.000001. "
"There might be cases in which the returned fit is not the best possible."
msgstr ""
#: ../plugins/fn-stat/functions.c:3874
msgid ""
"TREND:estimates future values of a given data set using a least squares "
"approximation"
msgstr ""
#: ../plugins/fn-stat/functions.c:3877
msgid ""
"new_x's: x-values for which you want to estimate the y-values; defaults to @"
"{known_x}'s"
msgstr ""
#: ../plugins/fn-stat/functions.c:3878 ../plugins/fn-stat/functions.c:4230
msgid ""
"const:if this is false the line will be forced to go through the origin; "
"defaults to TRUE"
msgstr ""
#: ../plugins/fn-stat/functions.c:3879
msgid ""
"If @{known_y's} and @{known_x's} have unequal number of data points, this "
"function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:3884
msgid "Then TREND(A1:A5,B1:B5) equals {12.1, 15.7, 21.6, 26.7, 39.7}."
msgstr ""
#: ../plugins/fn-stat/functions.c:3986
msgid "LOGEST:exponential least square fit"
msgstr ""
#: ../plugins/fn-stat/functions.c:3989
msgid ""
"const:if this is false the line will be forced to go through (0,1); defaults "
"to TRUE"
msgstr ""
#: ../plugins/fn-stat/functions.c:3991
msgid ""
"LOGEST function applies the ``least squares'' method to fit an exponential "
"curve of the form\ty = b * m{1}^x{1} * m{2}^x{2}... to your data."
msgstr ""
#: ../plugins/fn-stat/functions.c:3994
msgid "LOGEST returns an array { m{n},m{n-1}, ...,m{1},b }."
msgstr ""
#: ../plugins/fn-stat/functions.c:3995
msgid ""
"Extra statistical information is written below the regression line "
"coefficients in the result array. Extra statistical information consists of "
"four rows of data. In the first row the standard error values for the "
"coefficients m1, (m2, ...), b are represented. The second row contains the "
"square of R and the standard error for the y estimate. The third row "
"contains the F-observed value and the degrees of freedom. The last row "
"contains the regression sum of squares and the residual sum of squares."
msgstr ""
#: ../plugins/fn-stat/functions.c:4226
msgid "GROWTH: predicts the exponential growth"
msgstr ""
#: ../plugins/fn-stat/functions.c:4229
msgid ""
"new_x's:x-values for which you want to estimate the y-values; defaults to @"
"{known_x}'s"
msgstr ""
#: ../plugins/fn-stat/functions.c:4231
msgid ""
"GROWTH function applies the ``least squares'' method to fit an exponential "
"curve to your data and predicts the exponential growth by using this curve."
msgstr ""
#: ../plugins/fn-stat/functions.c:4234
msgid ""
"GROWTH returns an array having one column and a row for each data point in @"
"{new_x}."
msgstr ""
#: ../plugins/fn-stat/functions.c:4343
msgid ""
"FORECAST:estimates a future value according to existing values using simple "
"linear regression"
msgstr ""
#: ../plugins/fn-stat/functions.c:4345
msgid "x:x-value whose matching y-value should be forecast"
msgstr ""
#: ../plugins/fn-stat/functions.c:4348
msgid ""
"This function estimates a future value according to existing values using "
"simple linear regression."
msgstr ""
#: ../plugins/fn-stat/functions.c:4350 ../plugins/fn-stat/functions.c:4420
#: ../plugins/fn-stat/functions.c:4476
msgid ""
"If @{known_x} or @{known_y} contains no data entries or different number of "
"data entries, this function returns a #N/A error."
msgstr ""
#: ../plugins/fn-stat/functions.c:4352
msgid ""
"If the variance of the @{known_x} is zero, this function returns a #DIV/0 "
"error."
msgstr ""
#: ../plugins/fn-stat/functions.c:4358
msgid "Then FORECAST(7,A1:A5,B1:B5) equals -10.859397661."
msgstr ""
#: ../plugins/fn-stat/functions.c:4417
msgid "INTERCEPT:the intercept of a linear regression line"
msgstr ""
#: ../plugins/fn-stat/functions.c:4422 ../plugins/fn-stat/functions.c:4478
msgid ""
"If the variance of the @{known_x} is zero, this function returns #DIV/0 "
"error."
msgstr ""
#: ../plugins/fn-stat/functions.c:4428
msgid "Then INTERCEPT(A1:A5,B1:B5) equals -20.785117212."
msgstr ""
#: ../plugins/fn-stat/functions.c:4472
msgid "SLOPE:the slope of a linear regression line"
msgstr ""
#: ../plugins/fn-stat/functions.c:4483
msgid "Then SLOPE(A1:A5,B1:B5) equals 1.417959936."
msgstr ""
#: ../plugins/fn-stat/functions.c:4527
msgid "SUBTOTAL:the subtotal of the given list of arguments"
msgstr ""
#: ../plugins/fn-stat/functions.c:4528
msgid ""
"function_nbr:determines which function to use according to the following "
"table:\n"
"\t1 AVERAGE\n"
"\t2 COUNT\n"
"\t3 COUNTA\n"
"\t4 MAX\n"
"\t5 MIN\n"
"\t6 PRODUCT\n"
"\t7 STDEV\n"
"\t8 STDEVP\n"
"\t9 SUM\n"
"\t10 VAR\n"
"\t11 VARP"
msgstr ""
#: ../plugins/fn-stat/functions.c:4541
msgid "ref1:first value"
msgstr ""
#: ../plugins/fn-stat/functions.c:4542
msgid "ref2:second value"
msgstr ""
#: ../plugins/fn-stat/functions.c:4544
msgid ""
"Let us assume that the cells A1, A2, ..., A5 contain numbers 23, 27, 28, 33, "
"and 39."
msgstr ""
#: ../plugins/fn-stat/functions.c:4545
msgid ""
"Then SUBTOTAL(1,A1:A5) equals 30.SUBTOTAL(6,A1:A5) equals 22378356.SUBTOTAL"
"(7,A1:A5) equals 6.164414003.SUBTOTAL(9,A1:A5) equals 150.SUBTOTAL(11,A1:A5) "
"equals 30.4."
msgstr ""
#: ../plugins/fn-stat/functions.c:4624
msgid "CRONBACH:Cronbach's alpha"
msgstr ""
#: ../plugins/fn-stat/functions.c:4625
msgid "ref1:first data set"
msgstr ""
#: ../plugins/fn-stat/functions.c:4626
msgid "ref2:second data set"
msgstr ""
#: ../plugins/fn-stat/functions.c:4737
msgid ""
"GEOMDIST:(cumulative) probability mass function of the hypergeometric "
"distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:4738
msgid "k:number of trials"
msgstr ""
#: ../plugins/fn-stat/functions.c:4739
msgid "p:probability of success in any trial"
msgstr ""
#: ../plugins/fn-stat/functions.c:4741
msgid "If @{k} < 0 this function returns a #NUM! error."
msgstr ""
#: ../plugins/fn-stat/functions.c:4768
msgid "LOGISTIC:probability density function of the logistic distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:4799
msgid "PARETO:probability density function of the pareto distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:4801
msgid "a:exponent"
msgstr ""
#: ../plugins/fn-stat/functions.c:4802 ../plugins/fn-stat/functions.c:4910
msgid "b:scale parameter"
msgstr ""
#: ../plugins/fn-stat/functions.c:4833
msgid "RAYLEIGH:probability density function of the Rayleigh distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:4835 ../plugins/fn-stat/functions.c:4871
msgid "sigma:scale parameter"
msgstr ""
#: ../plugins/fn-stat/functions.c:4868
msgid ""
"RAYLEIGHTAIL:probability density function of the Rayleigh tail distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:4870
msgid "a:lower limit"
msgstr ""
#: ../plugins/fn-stat/functions.c:4906
msgid ""
"EXPPOWDIST: the probability density function of the Exponential Power "
"distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:4912
msgid ""
"This distribution has been recommended for lifetime analysis when a U-shaped "
"hazard function is desired. This corresponds to rapid failure once the "
"product starts to wear out after a period of steady or even improving "
"reliability."
msgstr ""
#: ../plugins/fn-stat/functions.c:4940
msgid "LAPLACE:probability density function of the Laplace distribution"
msgstr ""
#: ../plugins/fn-stat/functions.c:4942
msgid "a:mean"
msgstr ""
#: ../plugins/fn-stat/functions.c:4963
msgid ""
"PERMUTATIONA:the number of permutations of @{y} objects chosen from @{x} "
"objects with repetition allowed."
msgstr ""
#: ../plugins/fn-stat/functions.c:4964
msgid "x:total number of objects"
msgstr ""
#: ../plugins/fn-stat/functions.c:4965
msgid "y:number of selected objects"
msgstr ""
#: ../plugins/fn-stat/functions.c:4966
msgid "If both @{x} and @{y} equal 0, PERMUTATIONA returns 1."
msgstr ""
#: ../plugins/fn-stat/functions.c:4967
msgid "If @{x} < 0 or @{y} < 0, PERMUTATIONA returns #NUM!"
msgstr ""
#: ../plugins/fn-stat/functions.c:4968
msgid "If @{x} or @{y} are not integers, they are truncated"
msgstr ""
#: ../plugins/fn-stat/functions.c:4996
msgid "LKSTEST:Lilliefors (Kolmogorov-Smirnov) Test of Normality"
msgstr ""
#: ../plugins/fn-stat/functions.c:4997 ../plugins/fn-stat/functions.c:5114
#: ../plugins/fn-stat/functions.c:5198 ../plugins/fn-stat/functions.c:5283
msgid "x:array of sample values"
msgstr ""
#: ../plugins/fn-stat/functions.c:4998
msgid ""
"This function returns an array with the first row giving the p-value of the "
"Lilliefors (Kolmogorov-Smirnov) Test, the second row the test statistic of "
"the test, and the third the number of observations in the sample."
msgstr ""
#: ../plugins/fn-stat/functions.c:5000
msgid "If there are less than 5 sample values, LKSTEST returns #VALUE!"
msgstr ""
#: ../plugins/fn-stat/functions.c:5002
msgid "wiki:en:Lilliefors_test"
msgstr ""
#: ../plugins/fn-stat/functions.c:5113
msgid "SFTEST:Shapiro-Francia Test of Normality"
msgstr ""
#: ../plugins/fn-stat/functions.c:5115
msgid ""
"This function returns an array with the first row giving the p-value of the "
"Shapiro-Francia Test, the second row the test statistic of the test, and the "
"third the number of observations in the sample."
msgstr ""
#: ../plugins/fn-stat/functions.c:5117
msgid ""
"If there are less than 5 or more than 5000 sample values, SFTEST returns "
"#VALUE!"
msgstr ""
#: ../plugins/fn-stat/functions.c:5197
msgid "CVMTEST: Cramér-von Mises Test of Normality"
msgstr ""
#: ../plugins/fn-stat/functions.c:5199
msgid ""
"This function returns an array with the first row giving the p-value of the "
"Cramér-von Mises Test, the second row the test statistic of the test, and "
"the third the number of observations in the sample."
msgstr ""
#: ../plugins/fn-stat/functions.c:5201
msgid "If there are less than 8 sample values, CVMTEST returns #VALUE!"
msgstr ""
#: ../plugins/fn-stat/functions.c:5203
msgid "wiki:en:Cramér–von-Mises_criterion"
msgstr ""
#: ../plugins/fn-stat/functions.c:5282
msgid "ADTEST:Anderson-Darling Test of Normality"
msgstr ""
#: ../plugins/fn-stat/functions.c:5284
msgid ""
"This function returns an array with the first row giving the p-value of the "
"Anderson-Darling Test, the second row the test statistic of the test, and "
"the third the number of observations in the sample."
msgstr ""
#: ../plugins/fn-stat/functions.c:5286
msgid "If there are less than 8 sample values, ADTEST returns #VALUE!"
msgstr ""
#: ../plugins/fn-stat/functions.c:5288
msgid "wiki:en:Anderson–Darling_test"
msgstr ""
#: ../plugins/fn-string/functions.c:56
msgid "CHAR:the CP1252 (Windows-1252) character for the code point @{x}."
msgstr ""
#: ../plugins/fn-string/functions.c:57
msgid "x:code point"
msgstr ""
#: ../plugins/fn-string/functions.c:58
msgid "CHAR(@{x}) returns the CP1252 (Windows-1252) character with code @{x}."
msgstr ""
#: ../plugins/fn-string/functions.c:59
msgid "@{x} must be in the range 1 to 255."
msgstr ""
#: ../plugins/fn-string/functions.c:60 ../plugins/fn-string/functions.c:133
msgid ""
"CP1252 (Windows-1252) is also known as the \"ANSI code page\", but it is not "
"an ANSI standard."
msgstr ""
#: ../plugins/fn-string/functions.c:62 ../plugins/fn-string/functions.c:134
msgid ""
"CP1252 (Windows-1252) is based on an early draft of ISO-8859-1, and contains "
"all of its printable characters (but partially at different positions.)"
msgstr ""
#: ../plugins/fn-string/functions.c:64 ../plugins/fn-string/functions.c:135
msgid ""
"In CP1252 (Windows-1252), 129, 141, 143, 144, and 157 do not have matching "
"characters."
msgstr ""
#: ../plugins/fn-string/functions.c:65 ../plugins/fn-string/functions.c:136
msgid ""
"For @{x} from 1 to 255 except 129, 141, 143, 144, and 157 we have CODE(CHAR(@"
"{x}))=@{x}."
msgstr ""
#: ../plugins/fn-string/functions.c:103
msgid ""
"UNICHAR:the Unicode character represented by the Unicode code point @{x}."
msgstr ""
#: ../plugins/fn-string/functions.c:104
msgid "x:Unicode code point"
msgstr ""
#: ../plugins/fn-string/functions.c:130
msgid "CODE:the CP1252 (Windows-1252) code point for the character @{c}"
msgstr ""
#: ../plugins/fn-string/functions.c:131 ../plugins/fn-string/functions.c:176
msgid "c:character"
msgstr ""
#: ../plugins/fn-string/functions.c:132
msgid "@{c} must be a valid CP1252 (Windows-1252) character."
msgstr ""
#: ../plugins/fn-string/functions.c:175
msgid "UNICODE:the Unicode code point for the character @{c}"
msgstr ""
#: ../plugins/fn-string/functions.c:196
msgid "EXACT:TRUE if @{string1} is exactly equal to @{string2}"
msgstr ""
#: ../plugins/fn-string/functions.c:197
msgid "string1:first string"
msgstr ""
#: ../plugins/fn-string/functions.c:198
msgid "string2:second string"
msgstr ""
#: ../plugins/fn-string/functions.c:216
msgid "LEN:the number of characters of the string @{s}"
msgstr ""
#: ../plugins/fn-string/functions.c:217 ../plugins/fn-string/functions.c:234
#: ../plugins/fn-string/functions.c:252 ../plugins/fn-string/functions.c:284
#: ../plugins/fn-string/functions.c:336 ../plugins/fn-string/functions.c:376
#: ../plugins/fn-string/functions.c:463 ../plugins/fn-string/functions.c:499
msgid "s:the string"
msgstr ""
#: ../plugins/fn-string/functions.c:233
msgid "LENB:the number of bytes in the string @{s}"
msgstr ""
#: ../plugins/fn-string/functions.c:251
msgid "LEFT:the first @{num_chars} characters of the string @{s}"
msgstr ""
#: ../plugins/fn-string/functions.c:253 ../plugins/fn-string/functions.c:464
msgid "num_chars:the number of characters to return (defaults to 1)"
msgstr ""
#: ../plugins/fn-string/functions.c:254
msgid ""
"If the string @{s} is in a right-to-left script, the returned first "
"characters are from the right of the string."
msgstr ""
#: ../plugins/fn-string/functions.c:283
msgid ""
"LEFTB:the first characters of the string @{s} comprising at most @"
"{num_bytes} bytes"
msgstr ""
#: ../plugins/fn-string/functions.c:285 ../plugins/fn-string/functions.c:378
#: ../plugins/fn-string/functions.c:500
msgid "num_bytes:the maximum number of bytes to return (defaults to 1)"
msgstr ""
#: ../plugins/fn-string/functions.c:286 ../plugins/fn-string/functions.c:379
#: ../plugins/fn-string/functions.c:501 ../plugins/fn-string/functions.c:844
#: ../plugins/fn-string/functions.c:1335
msgid ""
"The semantics of this function is subject to change as various applications "
"implement it."
msgstr ""
#: ../plugins/fn-string/functions.c:287
msgid ""
"If the string is in a right-to-left script, the returned first characters "
"are from the right of the string."
msgstr ""
#: ../plugins/fn-string/functions.c:288 ../plugins/fn-string/functions.c:380
#: ../plugins/fn-string/functions.c:424 ../plugins/fn-string/functions.c:503
#: ../plugins/fn-string/functions.c:845 ../plugins/fn-string/functions.c:1336
msgid ""
"While this function is syntactically Excel compatible, the differences in "
"the underlying text encoding will usually yield different results."
msgstr ""
#: ../plugins/fn-string/functions.c:289 ../plugins/fn-string/functions.c:382
#: ../plugins/fn-string/functions.c:426 ../plugins/fn-string/functions.c:504
#: ../plugins/fn-string/functions.c:847 ../plugins/fn-string/functions.c:1338
msgid ""
"While this function is OpenFormula compatible, most of its behavior is, at "
"this time, implementation specific."
msgstr ""
#: ../plugins/fn-string/functions.c:317
msgid "LOWER:a lower-case version of the string @{text}."
msgstr ""
#: ../plugins/fn-string/functions.c:335
msgid ""
"MID:the substring of the string @{s} starting at position @{position} "
"consisting of @{length} characters"
msgstr ""
#: ../plugins/fn-string/functions.c:337
msgid "position:the starting position"
msgstr ""
#: ../plugins/fn-string/functions.c:338
msgid "length:the number of characters to return"
msgstr ""
#: ../plugins/fn-string/functions.c:375
msgid ""
"MIDB:the characters following the first @{start_pos} bytes comprising at "
"most @{num_bytes} bytes"
msgstr ""
#: ../plugins/fn-string/functions.c:377
msgid "start_pos:the number of the byte with which to start (defaults to 1)"
msgstr ""
#: ../plugins/fn-string/functions.c:419
msgid ""
"FINDB:first byte position of @{string1} in @{string2} following byte "
"position @{start}"
msgstr ""
#: ../plugins/fn-string/functions.c:420 ../plugins/fn-string/functions.c:648
msgid "string1:search string"
msgstr ""
#: ../plugins/fn-string/functions.c:421 ../plugins/fn-string/functions.c:649
msgid "string2:search field"
msgstr ""
#: ../plugins/fn-string/functions.c:422 ../plugins/fn-string/functions.c:1325
msgid "start:starting byte position, defaults to 1"
msgstr ""
#: ../plugins/fn-string/functions.c:423 ../plugins/fn-string/functions.c:651
msgid "This search is case-sensitive."
msgstr ""
#: ../plugins/fn-string/functions.c:462
msgid "RIGHT:the last @{num_chars} characters of the string @{s}"
msgstr ""
#: ../plugins/fn-string/functions.c:465 ../plugins/fn-string/functions.c:502
msgid ""
"If the string @{s} is in a right-to-left script, the returned last "
"characters are from the left of the string."
msgstr ""
#: ../plugins/fn-string/functions.c:498
msgid ""
"RIGHTB:the last characters of the string @{s} comprising at most @"
"{num_bytes} bytes"
msgstr ""
#: ../plugins/fn-string/functions.c:533
msgid "UPPER:an upper-case version of the string @text."
msgstr ""
#: ../plugins/fn-string/functions.c:552
msgid "CONCATENATE:the concatenation of the strings @{s1}, @{s2},..."
msgstr ""
#: ../plugins/fn-string/functions.c:553
msgid "s1:first string"
msgstr ""
#: ../plugins/fn-string/functions.c:554
msgid "s2:second string"
msgstr ""
#: ../plugins/fn-string/functions.c:574
msgid "REPT:@{num} repetitions of string @{text}"
msgstr ""
#: ../plugins/fn-string/functions.c:576
msgid "num:non-negative integer"
msgstr ""
#: ../plugins/fn-string/functions.c:618
msgid "CLEAN:@{text} with any non-printable characters removed"
msgstr ""
#: ../plugins/fn-string/functions.c:620
msgid ""
"CLEAN removes non-printable characters from its argument leaving only "
"regular characters and white-space."
msgstr ""
#: ../plugins/fn-string/functions.c:647
msgid ""
"FIND:first position of @{string1} in @{string2} following position @{start}"
msgstr ""
#: ../plugins/fn-string/functions.c:650 ../plugins/fn-string/functions.c:1256
msgid "start:starting position, defaults to 1"
msgstr ""
#: ../plugins/fn-string/functions.c:685
msgid "FIXED:formatted string representation of @{num}"
msgstr ""
#: ../plugins/fn-string/functions.c:686 ../plugins/fn-string/functions.c:1181
msgid "num:number"
msgstr ""
#: ../plugins/fn-string/functions.c:687
msgid "decimals:number of decimals"
msgstr ""
#: ../plugins/fn-string/functions.c:688
msgid ""
"no_commas:TRUE if no thousand separators should be used, defaults to FALSE"
msgstr ""
#: ../plugins/fn-string/functions.c:743
msgid "PROPER:@{text} with initial of each word capitalised."
msgstr ""
#: ../plugins/fn-string/functions.c:785
msgid ""
"REPLACE:String @{old} with @{num} characters starting at @{start} replaced "
"by @{new}"
msgstr ""
#: ../plugins/fn-string/functions.c:787 ../plugins/fn-string/functions.c:838
msgid "old:original text"
msgstr ""
#: ../plugins/fn-string/functions.c:788
msgid "start:starting position"
msgstr ""
#: ../plugins/fn-string/functions.c:789
msgid "num:number of characters to be replaced"
msgstr ""
#: ../plugins/fn-string/functions.c:790 ../plugins/fn-string/functions.c:841
#: ../plugins/fn-string/functions.c:1109
msgid "new:replacement string"
msgstr ""
#: ../plugins/fn-string/functions.c:836
msgid ""
"REPLACEB:string @{old} with up to @{num} bytes starting at @{start} replaced "
"by @{new}"
msgstr ""
#: ../plugins/fn-string/functions.c:839
msgid "start:starting byte position"
msgstr ""
#: ../plugins/fn-string/functions.c:840
msgid "num:number of bytes to be replaced"
msgstr ""
#: ../plugins/fn-string/functions.c:842
msgid ""
"REPLACEB replaces the string of valid unicode characters starting at the "
"byte @{start} and ending at @{start}+@{num}-1 with the string @{new}."
msgstr ""
#: ../plugins/fn-string/functions.c:890
msgid "T:@{value} if and only if @{value} is text, otherwise empty"
msgstr ""
#: ../plugins/fn-string/functions.c:891
msgid "value:original value"
msgstr ""
#: ../plugins/fn-string/functions.c:913
msgid "TEXT:@{value} as a string formatted as @{format}"
msgstr ""
#: ../plugins/fn-string/functions.c:914
msgid "value:value to be formatted"
msgstr ""
#: ../plugins/fn-string/functions.c:915
msgid "format:desired format"
msgstr ""
#: ../plugins/fn-string/functions.c:967
msgid "TRIM:@{text} with only single spaces between words."
msgstr ""
#: ../plugins/fn-string/functions.c:1014
msgid "VALUE:numeric value of @{text}"
msgstr ""
#: ../plugins/fn-string/functions.c:1047
msgid "NUMBERVALUE:numeric value of @{text}"
msgstr ""
#: ../plugins/fn-string/functions.c:1049
msgid "separator:decimal separator"
msgstr ""
#: ../plugins/fn-string/functions.c:1050
msgid ""
"If @{text} does not look like a decimal number, NUMBERVALUE returns the "
"value VALUE would return (ignoring the given @{separator})."
msgstr ""
#: ../plugins/fn-string/functions.c:1106
msgid "SUBSTITUTE:@{text} with all occurrences of @{old} replaced by @{new}"
msgstr ""
#: ../plugins/fn-string/functions.c:1107 ../plugins/fn-string/functions.c:1517
msgid "text:original text"
msgstr ""
#: ../plugins/fn-string/functions.c:1108
msgid "old:string to be replaced"
msgstr ""
#: ../plugins/fn-string/functions.c:1110
msgid ""
"num:if @{num} is specified and a number only the @{num}th occurrence of @"
"{old} is replaced"
msgstr ""
#: ../plugins/fn-string/functions.c:1180
msgid "DOLLAR:@{num} formatted as currency."
msgstr ""
#: ../plugins/fn-string/functions.c:1182
msgid "decimals:decimals"
msgstr ""
#: ../plugins/fn-string/functions.c:1252
msgid ""
"SEARCH:the location of the @{search} string within @{text} after position @"
"{start}"
msgstr ""
#: ../plugins/fn-string/functions.c:1254 ../plugins/fn-string/functions.c:1323
msgid "search:search string"
msgstr ""
#: ../plugins/fn-string/functions.c:1255 ../plugins/fn-string/functions.c:1324
msgid "text:search field"
msgstr ""
#: ../plugins/fn-string/functions.c:1257 ../plugins/fn-string/functions.c:1326
msgid ""
"@{search} may contain wildcard characters (*) and question marks (?). A "
"question mark matches any single character, and a wildcard matches any "
"string including the empty string. To search for * or ?, precede the symbol "
"with ~."
msgstr ""
#: ../plugins/fn-string/functions.c:1262 ../plugins/fn-string/functions.c:1331
msgid "This search is not case sensitive."
msgstr ""
#: ../plugins/fn-string/functions.c:1263 ../plugins/fn-string/functions.c:1332
msgid "If @{search} is not found, SEARCH returns #VALUE!"
msgstr ""
#: ../plugins/fn-string/functions.c:1264
msgid ""
"If @{start} is less than one or it is greater than the length of @{text}, "
"SEARCH returns #VALUE!"
msgstr ""
#: ../plugins/fn-string/functions.c:1321
msgid ""
"SEARCHB:the location of the @{search} string within @{text} after byte "
"position @{start}"
msgstr ""
#: ../plugins/fn-string/functions.c:1333
msgid ""
"If @{start} is less than one or it is greater than the byte length of @"
"{text}, SEARCH returns #VALUE!"
msgstr ""
#: ../plugins/fn-string/functions.c:1389
msgid ""
"ASC:text with full-width katakana and ASCII characters converted to half-"
"width."
msgstr ""
#: ../plugins/fn-string/functions.c:1391
msgid ""
"ASC converts full-width katakana and ASCII characters to half-width "
"equivalent characters, copying all others. "
msgstr ""
#: ../plugins/fn-string/functions.c:1392 ../plugins/fn-string/functions.c:1520
msgid ""
"The distinction between half-width and full-width characters is described in "
"http://www.unicode.org/reports/tr11/."
msgstr ""
#: ../plugins/fn-string/functions.c:1393 ../plugins/fn-string/functions.c:1522
msgid "For most strings, this function has the same effect as in Excel."
msgstr ""
#: ../plugins/fn-string/functions.c:1394
msgid ""
"While in obsolete encodings ASC used to translate between 2-byte and 1-byte "
"characters, this is not the case in UTF-8."
msgstr ""
#: ../plugins/fn-string/functions.c:1516
msgid ""
"JIS:text with half-width katakana and ASCII characters converted to full-"
"width."
msgstr ""
#: ../plugins/fn-string/functions.c:1518
msgid ""
"JIS converts half-width katakana and ASCII characters to full-width "
"equivalent characters, copying all others. "
msgstr ""
#: ../plugins/fn-string/functions.c:1523
msgid ""
"While in obsolete encodings JIS used to translate between 1-byte and 2-byte "
"characters, this is not the case in UTF-8."
msgstr ""
#: ../plugins/fn-tsa/functions.c:94
msgid ""
"Possible interpolation methods are:\n"
"0: linear;\n"
"1: linear with averaging;\n"
"2: staircase;\n"
"3: staircase with averaging;\n"
"4: natural cubic spline;\n"
"5: natural cubic spline with averaging."
msgstr ""
#: ../plugins/fn-tsa/functions.c:371
msgid ""
"INTERPOLATION:interpolated values corresponding to the given abscissa "
"targets."
msgstr ""
#: ../plugins/fn-tsa/functions.c:372
msgid "abscissas:The abscissas of the data to interpolate."
msgstr ""
#: ../plugins/fn-tsa/functions.c:373 ../plugins/fn-tsa/functions.c:641
msgid "ordinates:The ordinates of the data to interpolate."
msgstr ""
#: ../plugins/fn-tsa/functions.c:374
msgid "targets:The abscissas of the interpolated data."
msgstr ""
#: ../plugins/fn-tsa/functions.c:375 ../plugins/fn-tsa/functions.c:644
msgid ""
"interpolation:The method of interpolation to be used, defaults to no "
"interpolation"
msgstr ""
#: ../plugins/fn-tsa/functions.c:376 ../plugins/fn-tsa/functions.c:646
msgid ""
"If an interpolation method is used, the number of returned values is one "
"less than the number of targets and the targets values must be given in "
"increasing order."
msgstr ""
#: ../plugins/fn-tsa/functions.c:377 ../plugins/fn-tsa/functions.c:647
msgid "The output consists always of one column of numbers."
msgstr ""
#: ../plugins/fn-tsa/functions.c:379 ../plugins/fn-tsa/functions.c:654
msgid "Strings and empty cells in @{abscissas} and @{ordinates} are ignored."
msgstr ""
#: ../plugins/fn-tsa/functions.c:380 ../plugins/fn-tsa/functions.c:655
msgid ""
"If several target data are provided they must be in the same column in "
"consecutive cells."
msgstr ""
#: ../plugins/fn-tsa/functions.c:640
msgid "PERIODOGRAM: Periodogram of the given data."
msgstr ""
#: ../plugins/fn-tsa/functions.c:642
msgid "filter:Window function to be used, defaults to no window function."
msgstr ""
#: ../plugins/fn-tsa/functions.c:643
msgid ""
"abscissas:The abscissas of the data to interpolate, defaults to regularly "
"spaced abscissa."
msgstr ""
#: ../plugins/fn-tsa/functions.c:645
msgid "number: Number of interpolated data points to be used."
msgstr ""
#: ../plugins/fn-tsa/functions.c:649
msgid ""
"Possible window functions are:\n"
"0: no filter (rectangular window)\n"
"1: Bartlett (triangular window)\n"
"2: Hahn (cosine window)\n"
"3: Welch (parabolic window)"
msgstr ""
#: ../plugins/fn-tsa/functions.c:912
msgid "FOURIER:Fourier or inverse Fourier transform."
msgstr ""
#: ../plugins/fn-tsa/functions.c:913
msgid "Sequence: the data sequence to be transformed"
msgstr ""
#: ../plugins/fn-tsa/functions.c:914
msgid ""
"Inverse:if false, the inverse Fourier transform is calculated. Defaults to "
"false"
msgstr ""
#: ../plugins/fn-tsa/functions.c:915
msgid ""
"This array function returns the Fourier or inverse Fourier transform of the "
"given data sequence."
msgstr ""
#: ../plugins/fn-tsa/functions.c:916
msgid "The output consists always of one column of complex numbers."
msgstr ""
#: ../plugins/fn-tsa/functions.c:917
msgid ""
"If @{Sequence} is neither an n by 1 nor 1 by n array, this function returns "
"#NUM!"
msgstr ""
#: ../plugins/gda/plugin-gda.c:305
msgid "EXECSQL:result of executing @{sql} in the libgda data source @{dsn}"
msgstr ""
#: ../plugins/gda/plugin-gda.c:307 ../plugins/gda/plugin-gda.c:384
msgid "dsn:libgda data source"
msgstr ""
#: ../plugins/gda/plugin-gda.c:308 ../plugins/gda/plugin-gda.c:385
msgid "username:user name to access @{dsn}"
msgstr ""
#: ../plugins/gda/plugin-gda.c:309 ../plugins/gda/plugin-gda.c:386
msgid "password:password to access @{dsn} as @{username}"
msgstr ""
#: ../plugins/gda/plugin-gda.c:310
msgid "sql:SQL command"
msgstr ""
#: ../plugins/gda/plugin-gda.c:311 ../plugins/gda/plugin-gda.c:388
msgid "Before using EXECSQL, you need to set up a libgda data source."
msgstr ""
#: ../plugins/gda/plugin-gda.c:383
msgid "READDBTABLE:all rows of the table @{table} in @{dsn}"
msgstr ""
#: ../plugins/gda/plugin-gda.c:387
msgid "table:SQL table to retrieve"
msgstr ""
#: ../plugins/sample_datasource/sample_datasource.c:278
msgid "ATL_LAST:sample real-time data source"
msgstr ""
#: ../plugins/sample_datasource/sample_datasource.c:279
msgid "tag:tag to watch"
msgstr ""
#: ../plugins/sample_datasource/sample_datasource.c:280
msgid ""
"ATL_LAST is a sample implementation of a real time data source. It takes a "
"string tag and monitors the named pipe ~/atl for changes to the value of "
"that tag."
msgstr ""
#: ../plugins/sample_datasource/sample_datasource.c:281
msgid "This is not intended to be generally enabled and is OFF by default."
msgstr ""
#~ msgid ""
#~ "@FUNCTION=COMPLEX\n"
#~ "@SYNTAX=COMPLEX(real,im[,suffix])\n"
#~ "@DESCRIPTION=COMPLEX returns a complex number of the form x + yi.\n"
#~ "\n"
#~ "@real is the real and @im is the imaginary part of the complex number. "
#~ "@suffix is the suffix for the imaginary part. If it is omitted, COMPLEX "
#~ "uses 'i' by default.\n"
#~ "\n"
#~ "* If @suffix is neither 'i' nor 'j', COMPLEX returns #VALUE! error.\n"
#~ "* This function is Excel compatible.\n"
#~ "\n"
#~ "@EXAMPLES=\n"
#~ "COMPLEX(1,-1) equals 1-i.\n"
#~ "\n"
#~ "@SEEALSO="
#~ msgstr ""
#~ "@FUNCTION=KOMPLEKS\n"
#~ "@SYNTAX=KOMPLEKS(real,imag[,sufiks])\n"
#~ "@DESCRIPTION=KOMPLEKS vraća kompleksni broj u obliku x+iy.\n"
#~ "\n"
#~ "@real je realni a @imag je imaginarni deo kompleksnog broja. @sufiks je "
#~ "sufiks za imaginarni deo. Ako se izostavi, KOMPLEKS podrazumevano koristi "
#~ "znak „i“.\n"
#~ "\n"
#~ "* Ukoliko @sufiks nije „i“ niti „j“, KOMPLEKS vraća #VREDNOST! greška.\n"
#~ "* Ova funkcija je saglasna sa odgovarajućom Eksel funkcijom.\n"
#~ "\n"
#~ "@EXAMPLES=\n"
#~ "KOMPLEKS(1,-1) je jednako 1-i.\n"
#~ "\n"
#~ "@SEEALSO="
#, fuzzy
#~ msgid ""
#~ "@FUNCTION=IMINV\n"
#~ "@SYNTAX=IMINV(inumber)\n"
#~ "@DESCRIPTION=IMINV returns the inverse, or reciprocal, of the complex "
#~ "number z (@inumber), where\n"
#~ "\n"
#~ "\t1/z = (x - i y)/(x^2 + y^2).\n"
#~ "\n"
#~ "* If @inumber is not a valid complex number, IMINV returns #VALUE! "
#~ "error.\n"
#~ "\n"
#~ "@EXAMPLES=\n"
#~ "IMINV(\"1-j\") equals 0.5+0.5j.\n"
#~ "\n"
#~ "@SEEALSO="
#~ msgstr ""
#~ "@FUNCTION=KOMPLEKS\n"
#~ "@SYNTAX=KOMPLEKS(real,imag[,sufiks])\n"
#~ "@DESCRIPTION=KOMPLEKS vraća kompleksni broj u obliku x+iy.\n"
#~ "\n"
#~ "@real je realni a @imag je imaginarni deo kompleksnog broja. @sufiks je "
#~ "sufiks za imaginarni deo. Ako se izostavi, KOMPLEKS podrazumevano koristi "
#~ "znak „i“.\n"
#~ "\n"
#~ "* Ukoliko @sufiks nije „i“ niti „j“, KOMPLEKS vraća #VREDNOST! greška.\n"
#~ "* Ova funkcija je saglasna sa odgovarajućom Eksel funkcijom.\n"
#~ "\n"
#~ "@EXAMPLES=\n"
#~ "KOMPLEKS(1,-1) je jednako 1-i.\n"
#~ "\n"
#~ "@SEEALSO="
#~ msgid ""
#~ "@FUNCTION=IMARGUMENT\n"
#~ "@SYNTAX=IMARGUMENT(inumber)\n"
#~ "@DESCRIPTION=IMARGUMENT returns the argument theta of a complex number, i."
#~ "e. the angle in radians from the real axis to the representation of the "
#~ "number in polar coordinates.\n"
#~ "\n"
#~ "* If @inumber is not a valid complex number, IMARGUMENT returns #VALUE! "
#~ "error.\n"
#~ "* This function is Excel compatible.\n"
#~ "\n"
#~ "@EXAMPLES=\n"
#~ "IMARGUMENT(\"2-j\") equals -0.463647609.\n"
#~ "\n"
#~ "@SEEALSO="
#~ msgstr ""
#~ "@FUNCTION=KOMPLEKS\n"
#~ "@SYNTAX=KOMPLEKS(real,imag[,sufiks])\n"
#~ "@DESCRIPTION=KOMPLEKS vraća kompleksni broj u obliku x+iy.\n"
#~ "\n"
#~ "@real je realni a @imag je imaginarni deo kompleksnog broja. @sufiks je "
#~ "sufiks za imaginarni deo. Ako se izostavi, KOMPLEKS podrazumevano koristi "
#~ "znak „i“.\n"
#~ "\n"
#~ "* Ukoliko @sufiks nije „i“ niti „j“, KOMPLEKS vraća #VREDNOST! greška.\n"
#~ "* Ova funkcija je saglasna sa odgovarajućom Eksel funkcijom.\n"
#~ "\n"
#~ "@EXAMPLES=\n"
#~ "KOMPLEKS(1,-1) je jednako 1-i.\n"
#~ "\n"
#~ "@SEEALSO="
#~ msgid ""
#~ "@FUNCTION=IMPOWER\n"
#~ "@SYNTAX=IMPOWER(inumber1,inumber2)\n"
#~ "@DESCRIPTION=IMPOWER returns a complex number raised to a power. "
#~ "@inumber1 is the complex number to be raised to a power and @inumber2 is "
#~ "the power to which you want to raise it.\n"
#~ "\n"
#~ "* If @inumber1 or @inumber2 are not valid complex numbers, IMPOWER "
#~ "returns #VALUE! error.\n"
#~ "* This function is Excel compatible.\n"
#~ "\n"
#~ "@EXAMPLES=\n"
#~ "IMPOWER(\"4-j\",2) equals 15-8j.\n"
#~ "\n"
#~ "@SEEALSO=IMSQRT"
#~ msgstr ""
#~ "@FUNCTION=KOMPLEKS\n"
#~ "@SYNTAX=KOMPLEKS(real,imag[,sufiks])\n"
#~ "@DESCRIPTION=KOMPLEKS vraća kompleksni broj u obliku x+iy.\n"
#~ "\n"
#~ "@real je realni a @imag je imaginarni deo kompleksnog broja. @sufiks je "
#~ "sufiks za imaginarni deo. Ako se izostavi, KOMPLEKS podrazumevano koristi "
#~ "znak „i“.\n"
#~ "\n"
#~ "* Ukoliko @sufiks nije „i“ niti „j“, KOMPLEKS vraća #VREDNOST! greška.\n"
#~ "* Ova funkcija je saglasna sa odgovarajućom Eksel funkcijom.\n"
#~ "\n"
#~ "@EXAMPLES=\n"
#~ "KOMPLEKS(1,-1) je jednako 1-i.\n"
#~ "\n"
#~ "@SEEALSO="
#, fuzzy
#~ msgid ""
#~ "@FUNCTION=GESTEP\n"
#~ "@SYNTAX=GESTEP(x[,y])\n"
#~ "@DESCRIPTION=GESTEP function tests if @x is >= @y, returning 1 if it is "
#~ "so, and 0 otherwise. @y is optional, and defaults to 0.\n"
#~ "\n"
#~ "* If either argument is non-numeric returns a #VALUE! error.\n"
#~ "* This function is Excel compatible.\n"
#~ "@EXAMPLES=\n"
#~ "GESTEP(5,4) equals 1.\n"
#~ "\n"
#~ "@SEEALSO=DELTA"
#~ msgstr ""
#~ "@FUNCTION=KOMPLEKS\n"
#~ "@SYNTAX=KOMPLEKS(real,imag[,sufiks])\n"
#~ "@DESCRIPTION=KOMPLEKS vraća kompleksni broj u obliku x+iy.\n"
#~ "\n"
#~ "@real je realni a @imag je imaginarni deo kompleksnog broja. @sufiks je "
#~ "sufiks za imaginarni deo. Ako se izostavi, KOMPLEKS podrazumevano koristi "
#~ "znak „i“.\n"
#~ "\n"
#~ "* Ukoliko @sufiks nije „i“ niti „j“, KOMPLEKS vraća #VREDNOST! greška.\n"
#~ "* Ova funkcija je saglasna sa odgovarajućom Eksel funkcijom.\n"
#~ "\n"
#~ "@EXAMPLES=\n"
#~ "KOMPLEKS(1,-1) je jednako 1-i.\n"
#~ "\n"
#~ "@SEEALSO="
#, fuzzy
#~ msgid ""
#~ "@FUNCTION=POWER\n"
#~ "@SYNTAX=POWER(x,y)\n"
#~ "@DESCRIPTION=POWER returns the value of @x raised to the power @y.\n"
#~ "\n"
#~ "\n"
#~ "* If both @x and @y equal 0, POWER returns #NUM! error.\n"
#~ "* If @x = 0 and @y < 0, POWER returns #DIV/0! error.\n"
#~ "* If @x < 0 and @y is non-integer, POWER returns #NUM! error.\n"
#~ "* This function is Excel compatible.\n"
#~ "\n"
#~ "@EXAMPLES=\n"
#~ "POWER(2,7) equals 128.\n"
#~ "POWER(3,3.141) equals 31.523749.\n"
#~ "\n"
#~ "@SEEALSO=EXP"
#~ msgstr ""
#~ "@FUNCTION=KOMPLEKS\n"
#~ "@SYNTAX=KOMPLEKS(real,imag[,sufiks])\n"
#~ "@DESCRIPTION=KOMPLEKS vraća kompleksni broj u obliku x+iy.\n"
#~ "\n"
#~ "@real je realni a @imag je imaginarni deo kompleksnog broja. @sufiks je "
#~ "sufiks za imaginarni deo. Ako se izostavi, KOMPLEKS podrazumevano koristi "
#~ "znak „i“.\n"
#~ "\n"
#~ "* Ukoliko @sufiks nije „i“ niti „j“, KOMPLEKS vraća #VREDNOST! greška.\n"
#~ "* Ova funkcija je saglasna sa odgovarajućom Eksel funkcijom.\n"
#~ "\n"
#~ "@EXAMPLES=\n"
#~ "KOMPLEKS(1,-1) je jednako 1-i.\n"
#~ "\n"
#~ "@SEEALSO="
|