summaryrefslogtreecommitdiff
path: root/sc/inc/scfuncs.hrc
blob: 77031c5a5ac80c747d4995388e25bbf08f9b6293 (plain)
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
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 *
 * This file incorporates work covered by the following license notice:
 *
 *   Licensed to the Apache Software Foundation (ASF) under one or more
 *   contributor license agreements. See the NOTICE file distributed
 *   with this work for additional information regarding copyright
 *   ownership. The ASF licenses this file to you under the Apache
 *   License, Version 2.0 (the "License"); you may not use this file
 *   except in compliance with the License. You may obtain a copy of
 *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
 */
#ifndef INCLUDED_SC_INC_SCFUNCS_HRC
#define INCLUDED_SC_INC_SCFUNCS_HRC

#define NC_(Context, String) reinterpret_cast<char const *>(Context "\004" u8##String)

/* Resource file for the function wizard / autopilot.
 *
 *  For every function there is a StringArray with a resource id (offset by
 *  RID_SC_FUNC_DESCRIPTIONS_START) with the OpCode of the function
 *
 *  In this stringarray, the description of the function is given as the first
 *  entry, followed by two entries for each parameter, first the type or name
 *  of the parameter, second a description of the parameter.
 */

// -=*# Resource for function DCOUNT #*=-
const char* SC_OPCODE_DB_COUNT_ARY[] =
{
    NC_("SC_OPCODE_DB_COUNT", "Counts the cells of a data range whose contents match the search criteria."),
    NC_("SC_OPCODE_DB_COUNT", "Database"),
    NC_("SC_OPCODE_DB_COUNT", "The range of cells containing data."),
    NC_("SC_OPCODE_DB_COUNT", "Database field"),
    NC_("SC_OPCODE_DB_COUNT", "Indicates which database field (column) is to be used for the search criteria."),
    NC_("SC_OPCODE_DB_COUNT", "Search criteria"),
    NC_("SC_OPCODE_DB_COUNT", "Defines the cell range containing the search criteria.")
};

// -=*# Resource for function DCOUNTA #*=-
const char* SC_OPCODE_DB_COUNT_2_ARY[] =
{
    NC_("SC_OPCODE_DB_COUNT_2", "Counts all non-blank cells of a data range where the content corresponds to the search criteria."),
    NC_("SC_OPCODE_DB_COUNT_2", "Database"),
    NC_("SC_OPCODE_DB_COUNT_2", "The range of cells containing data."),
    NC_("SC_OPCODE_DB_COUNT_2", "Database field"),
    NC_("SC_OPCODE_DB_COUNT_2", "Indicates which database field (column) is to be used for the search criteria."),
    NC_("SC_OPCODE_DB_COUNT_2", "Search criteria"),
    NC_("SC_OPCODE_DB_COUNT_2", "Defines the cell range containing the search criteria.")
};

// -=*# Resource for function DAVERAGE #*=-
const char* SC_OPCODE_DB_AVERAGE_ARY[] =
{
    NC_("SC_OPCODE_DB_AVERAGE", "Returns the average value of all the cells of a data range whose contents match the search criteria."),
    NC_("SC_OPCODE_DB_AVERAGE", "Database"),
    NC_("SC_OPCODE_DB_AVERAGE", "The range of cells containing data."),
    NC_("SC_OPCODE_DB_AVERAGE", "Database field"),
    NC_("SC_OPCODE_DB_AVERAGE", "Indicates which database field (column) is to be used for the search criteria."),
    NC_("SC_OPCODE_DB_AVERAGE", "Search criteria"),
    NC_("SC_OPCODE_DB_AVERAGE", "Defines the cell range containing the search criteria.")
};

// -=*# Resource for function DGET #*=-
const char* SC_OPCODE_DB_GET_ARY[] =
{
    NC_("SC_OPCODE_DB_GET", "Defines the contents of the cell of a data range which matches the search criteria."),
    NC_("SC_OPCODE_DB_GET", "Database"),
    NC_("SC_OPCODE_DB_GET", "The range of cells containing data."),
    NC_("SC_OPCODE_DB_GET", "Database field"),
    NC_("SC_OPCODE_DB_GET", "Indicates which database field (column) is to be used for the search criteria."),
    NC_("SC_OPCODE_DB_GET", "Search criteria"),
    NC_("SC_OPCODE_DB_GET", "Defines the cell range containing the search criteria.")
};

// -=*# Resource for function DMAX #*=-
const char* SC_OPCODE_DB_MAX_ARY[] =
{
    NC_("SC_OPCODE_DB_MAX", "Returns the maximum value from all of the cells of a data range which correspond to the search criteria."),
    NC_("SC_OPCODE_DB_MAX", "Database"),
    NC_("SC_OPCODE_DB_MAX", "The range of cells containing data."),
    NC_("SC_OPCODE_DB_MAX", "Database field"),
    NC_("SC_OPCODE_DB_MAX", "Indicates which database field (column) is to be used for the search criteria."),
    NC_("SC_OPCODE_DB_MAX", "Search criteria"),
    NC_("SC_OPCODE_DB_MAX", "Defines the cell range containing the search criteria.")
};

// -=*# Resource for function DMIN #*=-
const char* SC_OPCODE_DB_MIN_ARY[] =
{
    NC_("SC_OPCODE_DB_MIN", "Returns the minimum of all cells of a data range where the contents correspond to the search criteria."),
    NC_("SC_OPCODE_DB_MIN", "Database"),
    NC_("SC_OPCODE_DB_MIN", "The range of cells containing data."),
    NC_("SC_OPCODE_DB_MIN", "Database field"),
    NC_("SC_OPCODE_DB_MIN", "Indicates which database field (column) is to be used for the search criteria."),
    NC_("SC_OPCODE_DB_MIN", "Search criteria"),
    NC_("SC_OPCODE_DB_MIN", "Defines the cell range containing the search criteria.")
};

// -=*# Resource for function DPRODUCT #*=-
const char* SC_OPCODE_DB_PRODUCT_ARY[] =
{
    NC_("SC_OPCODE_DB_PRODUCT", "Multiplies all cells of a data range where the contents match the search criteria."),
    NC_("SC_OPCODE_DB_PRODUCT", "Database"),
    NC_("SC_OPCODE_DB_PRODUCT", "The range of cells containing data."),
    NC_("SC_OPCODE_DB_PRODUCT", "Database field"),
    NC_("SC_OPCODE_DB_PRODUCT", "Indicates which database field (column) is to be used for the search criteria."),
    NC_("SC_OPCODE_DB_PRODUCT", "Search criteria"),
    NC_("SC_OPCODE_DB_PRODUCT", "Defines the cell range containing the search criteria.")
};

// -=*# Resource for function DSTDEV #*=-
const char* SC_OPCODE_DB_STD_DEV_ARY[] =
{
    NC_("SC_OPCODE_DB_STD_DEV", "Calculates the standard deviation of all cells in a data range whose contents match the search criteria."),
    NC_("SC_OPCODE_DB_STD_DEV", "Database"),
    NC_("SC_OPCODE_DB_STD_DEV", "The range of cells containing data."),
    NC_("SC_OPCODE_DB_STD_DEV", "Database field"),
    NC_("SC_OPCODE_DB_STD_DEV", "Indicates which database field (column) is to be used for the search criteria."),
    NC_("SC_OPCODE_DB_STD_DEV", "Search criteria"),
    NC_("SC_OPCODE_DB_STD_DEV", "Defines the cell range containing the search criteria.")
};

// -=*# Resource for function DSTDEVP #*=-
const char* SC_OPCODE_DB_STD_DEV_P_ARY[] =
{
    NC_("SC_OPCODE_DB_STD_DEV_P", "Returns the standard deviation with regards to the population of all cells of a data range matching the search criteria."),
    NC_("SC_OPCODE_DB_STD_DEV_P", "Database"),
    NC_("SC_OPCODE_DB_STD_DEV_P", "The range of cells containing data."),
    NC_("SC_OPCODE_DB_STD_DEV_P", "Database field"),
    NC_("SC_OPCODE_DB_STD_DEV_P", "Indicates which database field (column) is to be used for the search criteria."),
    NC_("SC_OPCODE_DB_STD_DEV_P", "Search criteria"),
    NC_("SC_OPCODE_DB_STD_DEV_P", "Defines the cell range containing the search criteria.")
};

// -=*# Resource for function DSUM #*=-
const char* SC_OPCODE_DB_SUM_ARY[] =
{
    NC_("SC_OPCODE_DB_SUM", "Adds all the cells of a data range where the contents match the search criteria."),
    NC_("SC_OPCODE_DB_SUM", "Database"),
    NC_("SC_OPCODE_DB_SUM", "The range of cells containing data."),
    NC_("SC_OPCODE_DB_SUM", "Database field"),
    NC_("SC_OPCODE_DB_SUM", "Indicates which database field (column) is to be used for the search criteria."),
    NC_("SC_OPCODE_DB_SUM", "Search criteria"),
    NC_("SC_OPCODE_DB_SUM", "Defines the cell range containing the search criteria.")
};

// -=*# Resource for function DVAR #*=-
const char* SC_OPCODE_DB_VAR_ARY[] =
{
    NC_("SC_OPCODE_DB_VAR", "Determines the variance of all the cells in a data range where the contents match the search criteria."),
    NC_("SC_OPCODE_DB_VAR", "Database"),
    NC_("SC_OPCODE_DB_VAR", "The range of cells containing data."),
    NC_("SC_OPCODE_DB_VAR", "Database field"),
    NC_("SC_OPCODE_DB_VAR", "Indicates which database field (column) is to be used for the search criteria."),
    NC_("SC_OPCODE_DB_VAR", "Search criteria"),
    NC_("SC_OPCODE_DB_VAR", "Defines the cell range containing the search criteria.")
};

// -=*# Resource for function DVARP #*=-
const char* SC_OPCODE_DB_VAR_P_ARY[] =
{
    NC_("SC_OPCODE_DB_VAR_P", "Determines variance of a population based on all cells in a data range where contents match the search criteria."),
    NC_("SC_OPCODE_DB_VAR_P", "Database"),
    NC_("SC_OPCODE_DB_VAR_P", "The range of cells containing data."),
    NC_("SC_OPCODE_DB_VAR_P", "Database field"),
    NC_("SC_OPCODE_DB_VAR_P", "Indicates which database field (column) is to be used for the search criteria."),
    NC_("SC_OPCODE_DB_VAR_P", "Search criteria"),
    NC_("SC_OPCODE_DB_VAR_P", "Defines the cell range containing the search criteria.")
};

// -=*# Resource for function DATE #*=-
const char* SC_OPCODE_GET_DATE_ARY[] =
{
    NC_("SC_OPCODE_GET_DATE", "Provides an internal number for the date given."),
    NC_("SC_OPCODE_GET_DATE", "Year"),
    NC_("SC_OPCODE_GET_DATE", "An integer between 1583 and 9956 or 0 and 99 (19xx or 20xx depending on the defined option)."),
    NC_("SC_OPCODE_GET_DATE", "Month"),
    NC_("SC_OPCODE_GET_DATE", "An integer between 1 and 12 representing the month."),
    NC_("SC_OPCODE_GET_DATE", "Day"),
    NC_("SC_OPCODE_GET_DATE", "An integer between 1 and 31 representing the day of the month.")
};

// -=*# Resource for function DATE_VALUE #*=-
const char* SC_OPCODE_GET_DATE_VALUE_ARY[] =
{
    NC_("SC_OPCODE_GET_DATE_VALUE", "Returns an internal number for a text having a possible date format."),
    NC_("SC_OPCODE_GET_DATE_VALUE", "Text"),
    NC_("SC_OPCODE_GET_DATE_VALUE", "A text enclosed in quotation marks which returns a date in a %PRODUCTNAME date format.")
};

// -=*# Resource for function DAY #*=-
const char* SC_OPCODE_GET_DAY_ARY[] =
{
    NC_("SC_OPCODE_GET_DAY", "Returns the sequential date of the month as an integer (1-31) in relation to the date value."),
    NC_("SC_OPCODE_GET_DAY", "Number"),
    NC_("SC_OPCODE_GET_DAY", "The internal number for the date.")
};

// -=*# Resource for function DAYS360 #*=-
const char* SC_OPCODE_GET_DIFF_DATE_360_ARY[] =
{
    NC_("SC_OPCODE_GET_DIFF_DATE_360", "Calculates the number of days between two dates based on a 360-day year."),
    NC_("SC_OPCODE_GET_DIFF_DATE_360", "Date 1"),
    NC_("SC_OPCODE_GET_DIFF_DATE_360", "The start date for calculating the difference in days."),
    NC_("SC_OPCODE_GET_DIFF_DATE_360", "Date 2"),
    NC_("SC_OPCODE_GET_DIFF_DATE_360", "The end date for calculating the difference in days."),
    NC_("SC_OPCODE_GET_DIFF_DATE_360", "Type"),
    NC_("SC_OPCODE_GET_DIFF_DATE_360", "Method used to form differences: Type = 0 denotes US method (NASD), Type = 1 denotes the European method.")
};

// -=*# Resource for function NETWORKDAYS #*=-
const char* SC_OPCODE_NETWORKDAYS_ARY[] =
{
    NC_("SC_OPCODE_NETWORKDAYS", "Returns the number of workdays between two dates using arguments to indicate weekenddays and holidays."),
    NC_("SC_OPCODE_NETWORKDAYS", "Start date"),
    NC_("SC_OPCODE_NETWORKDAYS", "Start date for calculation."),
    NC_("SC_OPCODE_NETWORKDAYS", "End date"),
    NC_("SC_OPCODE_NETWORKDAYS", "End date for calculation."),
    NC_("SC_OPCODE_NETWORKDAYS", "List of dates"),
    NC_("SC_OPCODE_NETWORKDAYS", "Optional set of one or more dates to be considered as holiday."),
    NC_("SC_OPCODE_NETWORKDAYS", "Array"),
    NC_("SC_OPCODE_NETWORKDAYS", "Optional list of numbers to indicate working (0) and weekend (non-zero) days. When omitted, weekend is Saturday and Sunday.")
};

// -=*# Resource for function NETWORKDAYS.INTL #*=-
const char* SC_OPCODE_NETWORKDAYS_MS_ARY[] =
{
    NC_("SC_OPCODE_NETWORKDAYS_MS", "Returns the number of workdays between two dates using arguments to indicate weekend days and holidays."),
    NC_("SC_OPCODE_NETWORKDAYS_MS", "Start date"),
    NC_("SC_OPCODE_NETWORKDAYS_MS", "Start date for calculation."),
    NC_("SC_OPCODE_NETWORKDAYS_MS", "End date"),
    NC_("SC_OPCODE_NETWORKDAYS_MS", "End date for calculation."),
    NC_("SC_OPCODE_NETWORKDAYS_MS", "Number or string"),
    NC_("SC_OPCODE_NETWORKDAYS_MS", "Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday."),
    NC_("SC_OPCODE_NETWORKDAYS_MS", "Array"),
    NC_("SC_OPCODE_NETWORKDAYS_MS", "Optional set of one or more dates to be considered as holiday.")
};

// -=*# Resource for function WORKDAY.INTL #*=-
const char* SC_OPCODE_WORKDAY_MS_ARY[] =
{
    NC_("SC_OPCODE_WORKDAY_MS", "Returns the serial number of the date before or after a number of workdays using arguments to indicate weekend days and holidays."),
    NC_("SC_OPCODE_WORKDAY_MS", "Start date"),
    NC_("SC_OPCODE_WORKDAY_MS", "Start date for calculation."),
    NC_("SC_OPCODE_WORKDAY_MS", "Days"),
    NC_("SC_OPCODE_WORKDAY_MS", "The number of workdays before or after start date."),
    NC_("SC_OPCODE_WORKDAY_MS", "Number or string"),
    NC_("SC_OPCODE_WORKDAY_MS", "Optional number or string to indicate when weekends occur. When omitted, weekend is Saturday and Sunday."),
    NC_("SC_OPCODE_WORKDAY_MS", "Array"),
    NC_("SC_OPCODE_WORKDAY_MS", "Optional set of one or more dates to be considered as holiday.")
};

// -=*# Resource for function HOUR #*=-
const char* SC_OPCODE_GET_HOUR_ARY[] =
{
    NC_("SC_OPCODE_GET_HOUR", "Determines the sequential number of the hour of the day (0-23) for the time value."),
    NC_("SC_OPCODE_GET_HOUR", "Number"),
    NC_("SC_OPCODE_GET_HOUR", "Internal time value")
};

// -=*# Resource for function MINUTE #*=-
const char* SC_OPCODE_GET_MIN_ARY[] =
{
    NC_("SC_OPCODE_GET_MIN", "Determines the sequential number for the minute of the hour (0-59) for the time value."),
    NC_("SC_OPCODE_GET_MIN", "Number"),
    NC_("SC_OPCODE_GET_MIN", "Internal time value.")
};

// -=*# Resource for function MONTH #*=-
const char* SC_OPCODE_GET_MONTH_ARY[] =
{
    NC_("SC_OPCODE_GET_MONTH", "Determines the sequential number of a month of the year (1-12) for the date value."),
    NC_("SC_OPCODE_GET_MONTH", "Number"),
    NC_("SC_OPCODE_GET_MONTH", "The internal number of the date.")
};

// -=*# Resource for function NOW #*=-
const char* SC_OPCODE_GET_ACT_TIME_ARY[] =
{
    NC_("SC_OPCODE_GET_ACT_TIME", "Determines the current time of the computer.")
};

// -=*# Resource for function SECOND #*=-
const char*SC_OPCODE_GET_SEC_ARY[] =
{
    NC_("SC_OPCODE_GET_SEC", "Determines the sequential number of the second of a minute (0-59) for the time value."),
    NC_("SC_OPCODE_GET_SEC", "Number"),
    NC_("SC_OPCODE_GET_SEC", "The internal time value.")
};

// -=*# Resource for function TIME #*=-
const char* SC_OPCODE_GET_TIME_ARY[] =
{
    NC_("SC_OPCODE_GET_TIME", "Determines a time value from the details for hour, minute and second."),
    NC_("SC_OPCODE_GET_TIME", "Hour"),
    NC_("SC_OPCODE_GET_TIME", "The integer for the hour."),
    NC_("SC_OPCODE_GET_TIME", "Minute"),
    NC_("SC_OPCODE_GET_TIME", "The integer for the minute."),
    NC_("SC_OPCODE_GET_TIME", "Second"),
    NC_("SC_OPCODE_GET_TIME", "The integer for the second.")
};

// -=*# Resource for function TIMEVALUE #*=-
const char* SC_OPCODE_GET_TIME_VALUE_ARY[] =
{
    NC_("SC_OPCODE_GET_TIME_VALUE", "Returns a sequential number for a text shown in a possible time entry format."),
    NC_("SC_OPCODE_GET_TIME_VALUE", "Text"),
    NC_("SC_OPCODE_GET_TIME_VALUE", "A text enclosed in quotation marks which returns a time in a %PRODUCTNAME time format.")
};

// -=*# Resource for function TODAY #*=-
const char* SC_OPCODE_GET_ACT_DATE_ARY[] =
{
    NC_("SC_OPCODE_GET_ACT_DATE", "Determines the current date of the computer.")
};

// -=*# Resource for function WEEKDAY #*=-
const char* SC_OPCODE_GET_DAY_OF_WEEK_ARY[] =
{
    NC_("SC_OPCODE_GET_DAY_OF_WEEK", "Returns the day of the week for the date value as an integer."),
    NC_("SC_OPCODE_GET_DAY_OF_WEEK", "Number"),
    NC_("SC_OPCODE_GET_DAY_OF_WEEK", "The internal number for the date."),
    NC_("SC_OPCODE_GET_DAY_OF_WEEK", "Type"),
    NC_("SC_OPCODE_GET_DAY_OF_WEEK", "Fixes the beginning of the week and the type of calculation to be used.")
};

// -=*# Resource for function YEAR #*=-
const char* SC_OPCODE_GET_YEAR_ARY[] =
{
    NC_("SC_OPCODE_GET_YEAR", "Returns the year of a date value as an integer."),
    NC_("SC_OPCODE_GET_YEAR", "Number"),
    NC_("SC_OPCODE_GET_YEAR", "Internal number of the date.")
};

// -=*# Resource for function DAYS #*=-
const char* SC_OPCODE_GET_DIFF_DATE_ARY[] =
{
    NC_("SC_OPCODE_GET_DIFF_DATE", "Calculates the number of days between two dates."),
    NC_("SC_OPCODE_GET_DIFF_DATE", "Date 2"),
    NC_("SC_OPCODE_GET_DIFF_DATE", "The end date for calculating the difference in days."),
    NC_("SC_OPCODE_GET_DIFF_DATE", "Date 1"),
    NC_("SC_OPCODE_GET_DIFF_DATE", "The start date for calculating the difference in days.")
};

// -=*# Resource for function DATEDIF #*=-
const char* SC_OPCODE_GET_DATEDIF_ARY[] =
{
    NC_("SC_OPCODE_GET_DATEDIF", "Returns the number of whole days, months or years between 'start date' and 'end date'."),
    NC_("SC_OPCODE_GET_DATEDIF", "Start date"),
    NC_("SC_OPCODE_GET_DATEDIF", "The start date."),
    NC_("SC_OPCODE_GET_DATEDIF", "End date"),
    NC_("SC_OPCODE_GET_DATEDIF", "The end date."),
    NC_("SC_OPCODE_GET_DATEDIF", "Interval"),
    NC_("SC_OPCODE_GET_DATEDIF", "Interval to be calculated. Can be \"d\", \"m\", \"y\", \"ym\", \"md\" or \"yd\".")
};

// -=*# Resource for function WEEKNUM #*=-
const char* SC_OPCODE_WEEK_ARY[] =
{
    NC_("SC_OPCODE_WEEK", "Calculates the calendar week corresponding to the given date."),
    NC_("SC_OPCODE_WEEK", "Number"),
    NC_("SC_OPCODE_WEEK", "The internal number of the date."),
    NC_("SC_OPCODE_WEEK", "Mode"),
    NC_("SC_OPCODE_WEEK", "Indicates the first day of the week and when week 1 starts.")
};

// -=*# Resource for function ISOWEEKNUM #*=-
const char* SC_OPCODE_ISOWEEKNUM_ARY[] =
{
    NC_("SC_OPCODE_ISOWEEKNUM", "Calculates the ISO 8601 calendar week for the given date."),
    NC_("SC_OPCODE_ISOWEEKNUM", "Number"),
    NC_("SC_OPCODE_ISOWEEKNUM", "The internal number of the date.")
};

const char* SC_OPCODE_WEEKNUM_OOO_ARY[] =
{
    NC_("SC_OPCODE_WEEKNUM_OOO", "Calculates the calendar week corresponding to the given date.\nThis function only provides interoperability with %PRODUCTNAME 5.0 and earlier and OpenOffice.org."),
    NC_("SC_OPCODE_WEEKNUM_OOO", "Number"),
    NC_("SC_OPCODE_WEEKNUM_OOO", "The internal number of the date."),
    NC_("SC_OPCODE_WEEKNUM_OOO", "Mode"),
    NC_("SC_OPCODE_WEEKNUM_OOO", "Indicates the first day of the week (1 = Sunday, other values = Monday).")
};

// -=*# Resource for function EASTERSUNDAY #*=-
const char* SC_OPCODE_EASTERSUNDAY_ARY[] =
{
    NC_("SC_OPCODE_EASTERSUNDAY", "Calculates the date of Easter Sunday in a given year."),
    NC_("SC_OPCODE_EASTERSUNDAY", "Year"),
    NC_("SC_OPCODE_EASTERSUNDAY", "An integer between 1583 and 9956, or 0 and 99 (19xx or 20xx depending on the option set).")
};

// -=*# Resource for function PV #*=-
const char* SC_OPCODE_PV_ARY[] =
{
    NC_("SC_OPCODE_PV", "Present value. Calculates the present value of an investment."),
    NC_("SC_OPCODE_PV", "Rate"),
    NC_("SC_OPCODE_PV", "The rate of interest for the period given."),
    NC_("SC_OPCODE_PV", "NPER"),
    NC_("SC_OPCODE_PV", "The payment period. The total number of periods in which the annuity is paid."),
    NC_("SC_OPCODE_PV", "PMT"),
    NC_("SC_OPCODE_PV", "Regular payments. The constant amount of annuity that is paid in each period."),
    NC_("SC_OPCODE_PV", "FV"),
    NC_("SC_OPCODE_PV", "Future value. The value (final value) to be attained after the last payment."),
    NC_("SC_OPCODE_PV", "Type"),
    NC_("SC_OPCODE_PV", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
};

// -=*# Resource for function FV #*=-
const char* SC_OPCODE_FV_ARY[] =
{
    NC_("SC_OPCODE_FV", "Future value. Returns the future value of an investment based on regular payments and a constant interest rate."),
    NC_("SC_OPCODE_FV", "Rate"),
    NC_("SC_OPCODE_FV", "The rate of interest per period."),
    NC_("SC_OPCODE_FV", "NPER"),
    NC_("SC_OPCODE_FV", "Payment period. The total number of periods in which the annuity (pension) is paid."),
    NC_("SC_OPCODE_FV", "PMT"),
    NC_("SC_OPCODE_FV", "Regular payments. The constant annuity to be paid in each period."),
    NC_("SC_OPCODE_FV", "PV"),
    NC_("SC_OPCODE_FV", "Present value. The current value of a series of payments"),
    NC_("SC_OPCODE_FV", "Type"),
    NC_("SC_OPCODE_FV", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
};

// -=*# Resource for function NPER #*=-
const char* SC_OPCODE_NPER_ARY[] =
{
    NC_("SC_OPCODE_NPER", "Payment period. Calculates the number of payment periods for an investment based on regular payments and a constant interest rate."),
    NC_("SC_OPCODE_NPER", "Rate"),
    NC_("SC_OPCODE_NPER", "The rate of interest per period."),
    NC_("SC_OPCODE_NPER", "PMT"),
    NC_("SC_OPCODE_NPER", "Regular payments. The constant annuity to be paid in each period."),
    NC_("SC_OPCODE_NPER", "PV"),
    NC_("SC_OPCODE_NPER", "Present value. The current value of a series of payments"),
    NC_("SC_OPCODE_NPER", "FV"),
    NC_("SC_OPCODE_NPER", "Future value. The value (end value) to be attained after the final payment."),
    NC_("SC_OPCODE_NPER", "Type"),
    NC_("SC_OPCODE_NPER", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
};

// -=*# Resource for function PMT #*=-
const char* SC_OPCODE_PMT_ARY[] =
{
    NC_("SC_OPCODE_PMT", "Regular payments. Returns the periodic payment of an annuity, based on regular payments and a fixed periodic interest rate."),
    NC_("SC_OPCODE_PMT", "Rate"),
    NC_("SC_OPCODE_PMT", "The rate of interest per period."),
    NC_("SC_OPCODE_PMT", "NPER"),
    NC_("SC_OPCODE_PMT", "Payment period. The total number of periods in which the annuity (pension) is paid."),
    NC_("SC_OPCODE_PMT", "PV"),
    NC_("SC_OPCODE_PMT", "Present value. The current value of a series of payments"),
    NC_("SC_OPCODE_PMT", "FV"),
    NC_("SC_OPCODE_PMT", "Future value. The value (end value) to be attained after the final payment."),
    NC_("SC_OPCODE_PMT", "Type"),
    NC_("SC_OPCODE_PMT", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
};

// -=*# Resource for function RATE #*=-
const char* SC_OPCODE_RATE_ARY[] =
{
    NC_("SC_OPCODE_RATE", "Calculates the constant interest rate of an investment with regular payments."),
    NC_("SC_OPCODE_RATE", "NPER"),
    NC_("SC_OPCODE_RATE", "Payment period. The total number of periods in which the annuity (pension) is paid."),
    NC_("SC_OPCODE_RATE", "PMT"),
    NC_("SC_OPCODE_RATE", "Regular payments. The constant annuity to be paid in each period."),
    NC_("SC_OPCODE_RATE", "PV"),
    NC_("SC_OPCODE_RATE", "Present value. The current value of a series of payments"),
    NC_("SC_OPCODE_RATE", "FV"),
    NC_("SC_OPCODE_RATE", "Future value. The value (end value) to be attained after the final payment."),
    NC_("SC_OPCODE_RATE", "Type"),
    NC_("SC_OPCODE_RATE", "Type = 1 denotes due at the beginning of the period, = 0 at the end."),
    NC_("SC_OPCODE_RATE", "Guess"),
    NC_("SC_OPCODE_RATE", "Guess. The estimate of the interest rate for the iterative calculating method.")
};

// -=*# Resource for function IPMT #*=-
const char* SC_OPCODE_IPMT_ARY[] =
{
    NC_("SC_OPCODE_IPMT", "Compounded interest. Calculates the interest payment on the principal for an investment with regular payments and a constant interest rate for a given period."),
    NC_("SC_OPCODE_IPMT", "Rate"),
    NC_("SC_OPCODE_IPMT", "The rate of interest per period."),
    NC_("SC_OPCODE_IPMT", "Period"),
    NC_("SC_OPCODE_IPMT", "Periods. The periods for which the compounded interest is to be calculated. P = 1 denotes for the first period, P = NPER for the last one."),
    NC_("SC_OPCODE_IPMT", "NPER"),
    NC_("SC_OPCODE_IPMT", "Payment period. The total number of periods in which the annuity (pension) is paid."),
    NC_("SC_OPCODE_IPMT", "PV"),
    NC_("SC_OPCODE_IPMT", "Present value. The current value of a series of payments"),
    NC_("SC_OPCODE_IPMT", "FV"),
    NC_("SC_OPCODE_IPMT", "Future value. The value (end value) to be attained after the final payment."),
    NC_("SC_OPCODE_IPMT", "Type"),
    NC_("SC_OPCODE_IPMT", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
};

// -=*# Resource for function PPMT #*=-
const char* SC_OPCODE_PPMT_ARY[] =
{
    NC_("SC_OPCODE_PPMT", "Repayment. Calculates the repayment amount for a period for an investment whereby the payments are at regular intervals and the interest rate constant."),
    NC_("SC_OPCODE_PPMT", "Rate"),
    NC_("SC_OPCODE_PPMT", "The interest rate per period."),
    NC_("SC_OPCODE_PPMT", "Period"),
    NC_("SC_OPCODE_PPMT", "Period. The period for which the repayments are to be calculated. Per = 1 denotes for the first period, P = NPER for the last"),
    NC_("SC_OPCODE_PPMT", "NPER"),
    NC_("SC_OPCODE_PPMT", "The payment period. The total number of periods in which the annuity (pension) is paid."),
    NC_("SC_OPCODE_PPMT", "PV"),
    NC_("SC_OPCODE_PPMT", "The present value. The present value or the amount the annuity is currently worth."),
    NC_("SC_OPCODE_PPMT", "FV"),
    NC_("SC_OPCODE_PPMT", "Future value. The value (end value) attained after the last payment has been made."),
    NC_("SC_OPCODE_PPMT", "Type"),
    NC_("SC_OPCODE_PPMT", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
};

// -=*# Resource for function CUMPRINC #*=-
const char* SC_OPCODE_CUM_PRINC_ARY[] =
{
    NC_("SC_OPCODE_CUM_PRINC", "Cumulative capital. Calculates the total amount of the repayment share in a period for an investment with constant interest rate."),
    NC_("SC_OPCODE_CUM_PRINC", "Rate"),
    NC_("SC_OPCODE_CUM_PRINC", "The rate of interest per period."),
    NC_("SC_OPCODE_CUM_PRINC", "NPER"),
    NC_("SC_OPCODE_CUM_PRINC", "Payment period. The total number of periods in which the annuity (pension) is paid."),
    NC_("SC_OPCODE_CUM_PRINC", "PV"),
    NC_("SC_OPCODE_CUM_PRINC", "The present value. The present value or the amount the annuity is currently worth."),
    NC_("SC_OPCODE_CUM_PRINC", "S"),
    NC_("SC_OPCODE_CUM_PRINC", "The start period. The first period to be taken into account. S = 1 denotes the very first period."),
    NC_("SC_OPCODE_CUM_PRINC", "E"),
    NC_("SC_OPCODE_CUM_PRINC", "End period. The last period to be taken into account."),
    NC_("SC_OPCODE_CUM_PRINC", "Type"),
    NC_("SC_OPCODE_CUM_PRINC", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
};

// -=*# Resource for function CUMIPMT #*=-
const char* SC_OPCODE_CUM_IPMT_ARY[] =
{
    NC_("SC_OPCODE_CUM_IPMT", "Cumulative compounded interest. Calculates the total amount of the interest share in a period for an investment with a constant interest rate."),
    NC_("SC_OPCODE_CUM_IPMT", "Rate"),
    NC_("SC_OPCODE_CUM_IPMT", "The rate of interest per period."),
    NC_("SC_OPCODE_CUM_IPMT", "NPER"),
    NC_("SC_OPCODE_CUM_IPMT", "Payment period. The total number of periods in which the annuity (pension) is paid."),
    NC_("SC_OPCODE_CUM_IPMT", "PV"),
    NC_("SC_OPCODE_CUM_IPMT", "The present value. The present value or the amount the annuity is currently worth."),
    NC_("SC_OPCODE_CUM_IPMT", "S"),
    NC_("SC_OPCODE_CUM_IPMT", "The start period. The first period to be taken into account. S = 1 denotes the very first period."),
    NC_("SC_OPCODE_CUM_IPMT", "E"),
    NC_("SC_OPCODE_CUM_IPMT", "The end period. The last period to be taken into account."),
    NC_("SC_OPCODE_CUM_IPMT", "Type"),
    NC_("SC_OPCODE_CUM_IPMT", "Type = 1 denotes due at the beginning of the period, = 0 at the end.")
};

// -=*# Resource for function SYD #*=-
const char* SC_OPCODE_SYD_ARY[] =
{
    NC_("SC_OPCODE_SYD", "Calculates the arithmetically declining value of an asset (depreciation) for a specified period."),
    NC_("SC_OPCODE_SYD", "Cost"),
    NC_("SC_OPCODE_SYD", "Acquisition costs. The initial cost of the asset."),
    NC_("SC_OPCODE_SYD", "Salvage"),
    NC_("SC_OPCODE_SYD", "Salvage: The remaining value of the asset at the end of its life."),
    NC_("SC_OPCODE_SYD", "Life"),
    NC_("SC_OPCODE_SYD", "Useful life. The number of periods in the useful life of the asset."),
    NC_("SC_OPCODE_SYD", "Period"),
    NC_("SC_OPCODE_SYD", "Period. The depreciation period which must have the same time unit as average useful life.")
};

// -=*# Resource for function SLN #*=-
const char* SC_OPCODE_SLN_ARY[] =
{
    NC_("SC_OPCODE_SLN", "Calculates the linear depreciation per period."),
    NC_("SC_OPCODE_SLN", "Cost"),
    NC_("SC_OPCODE_SLN", "Acquisition cost. The initial cost of an asset."),
    NC_("SC_OPCODE_SLN", "Salvage"),
    NC_("SC_OPCODE_SLN", "Salvage: The remaining value of the asset at the end of its life."),
    NC_("SC_OPCODE_SLN", "Life"),
    NC_("SC_OPCODE_SLN", "Useful life. The number of periods in the useful life of the asset.")
};

// -=*# Resource for function DDB #*=-
const char* SC_OPCODE_DDB_ARY[] =
{
    NC_("SC_OPCODE_DDB", "Calculates the depreciation of an asset for a specific period using the double-declining balance method or declining balance factor."),
    NC_("SC_OPCODE_DDB", "Cost"),
    NC_("SC_OPCODE_DDB", "Acquisition costs. The initial cost of the asset."),
    NC_("SC_OPCODE_DDB", "Salvage"),
    NC_("SC_OPCODE_DDB", "Salvage: The remaining value of the asset at the end of its life."),
    NC_("SC_OPCODE_DDB", "Life"),
    NC_("SC_OPCODE_DDB", "Useful life. The number of periods in the useful life of the asset."),
    NC_("SC_OPCODE_DDB", "Period"),
    NC_("SC_OPCODE_DDB", "Period. The depreciation period in the same time unit as the average useful life entry."),
    NC_("SC_OPCODE_DDB", "Factor"),
    NC_("SC_OPCODE_DDB", "Factor. The factor for balance decline. F = 2 means a double declining balance factor")
};

// -=*# Resource for function DB #*=-
const char* SC_OPCODE_DB_ARY[] =
{
    NC_("SC_OPCODE_DB", "Returns the real depreciation of an asset for a specified period using the fixed-declining balance method."),
    NC_("SC_OPCODE_DB", "Cost"),
    NC_("SC_OPCODE_DB", "Acquisition costs: The initial cost of the asset."),
    NC_("SC_OPCODE_DB", "Salvage"),
    NC_("SC_OPCODE_DB", "Salvage: The remaining value of the asset at the end of its life."),
    NC_("SC_OPCODE_DB", "Life"),
    NC_("SC_OPCODE_DB", "Useful life. The number of periods in the useful life of the asset."),
    NC_("SC_OPCODE_DB", "Period"),
    NC_("SC_OPCODE_DB", "Periods: The period for which the depreciation is calculated. The time unit used for period must be the same as that for the useful life."),
    NC_("SC_OPCODE_DB", "Month"),
    NC_("SC_OPCODE_DB", "Months: The number of months in the first year of depreciation.")
};

// -=*# Resource for function VDB #*=-
const char* SC_OPCODE_VBD_ARY[] =
{
    NC_("SC_OPCODE_VBD", "Variable declining balance. Returns the declining balance depreciation for a particular period."),
    NC_("SC_OPCODE_VBD", "Cost"),
    NC_("SC_OPCODE_VBD", "Cost. The initial cost of the asset."),
    NC_("SC_OPCODE_VBD", "Salvage"),
    NC_("SC_OPCODE_VBD", "Salvage. The salvage value of an asset at the end of its useful life."),
    NC_("SC_OPCODE_VBD", "Life"),
    NC_("SC_OPCODE_VBD", "Useful life. The number of periods in the useful life of the asset."),
    NC_("SC_OPCODE_VBD", "Start"),
    NC_("SC_OPCODE_VBD", "Start. The first period for depreciation in the same time unit as the useful life."),
    NC_("SC_OPCODE_VBD", "End"),
    NC_("SC_OPCODE_VBD", "End. The last period of the depreciation using the same time unit as for the useful life."),
    NC_("SC_OPCODE_VBD", "Factor"),
    NC_("SC_OPCODE_VBD", "Factor. The factor for the reduction of the depreciation. Factor = 2 denotes double rate depreciation."),
    NC_("SC_OPCODE_VBD", "NoSwitch"),
    NC_("SC_OPCODE_VBD", "NoSwitch = 0 denotes switch to linear depreciation, NoSwitch = 1 do not switch.")
};

// -=*# Resource for function EFFECT #*=-
const char* SC_OPCODE_EFFECT_ARY[] =
{
    NC_("SC_OPCODE_EFFECT", "Calculates the annual net interest rate for a nominal interest rate."),
    NC_("SC_OPCODE_EFFECT", "NOM"),
    NC_("SC_OPCODE_EFFECT", "Nominal interest"),
    NC_("SC_OPCODE_EFFECT", "P"),
    NC_("SC_OPCODE_EFFECT", "Periods. The number of interest payments per year.")
};

// -=*# Resource for function NOMINAL #*=-
const char* SC_OPCODE_NOMINAL_ARY[] =
{
    NC_("SC_OPCODE_NOMINAL", "Calculates the yearly nominal interest rate as an effective interest rate."),
    NC_("SC_OPCODE_NOMINAL", "Effective rate"),
    NC_("SC_OPCODE_NOMINAL", "The effective interest rate"),
    NC_("SC_OPCODE_NOMINAL", "NPER"),
    NC_("SC_OPCODE_NOMINAL", "Periods. The number of interest payment per year.")
};

// -=*# Resource for function NPV #*=-
const char* SC_OPCODE_NPV_ARY[] =
{
    NC_("SC_OPCODE_NPV", "Net present value. Calculates the net present value of an investment based on a series of periodic payments and a discount rate."),
    NC_("SC_OPCODE_NPV", "Rate"),
    NC_("SC_OPCODE_NPV", "The rate of discount for one period."),
    NC_("SC_OPCODE_NPV", "Value "),
    NC_("SC_OPCODE_NPV", "Value 1, value 2,... are arguments representing payments and income.")
};

// -=*# Resource for function IRR #*=-
const char* SC_OPCODE_IRR_ARY[] =
{
    NC_("SC_OPCODE_IRR", "Returns the actuarial rate of interest of an investment excluding costs or profits."),
    NC_("SC_OPCODE_IRR", "Values"),
    NC_("SC_OPCODE_IRR", "An array or reference to cells whose contents correspond to the payments."),
    NC_("SC_OPCODE_IRR", "Guess"),
    NC_("SC_OPCODE_IRR", "Guess. An estimated value of the rate of return to be used for the iteration calculation.")
};

// -=*# Resource for function MIRR #*=-
const char* SC_OPCODE_MIRR_ARY[] =
{
    NC_("SC_OPCODE_MIRR", "Returns the modified internal rate of return for a series of investments."),
    NC_("SC_OPCODE_MIRR", "Values"),
    NC_("SC_OPCODE_MIRR", "An array or reference to cells whose contents correspond to the payments."),
    NC_("SC_OPCODE_MIRR", "Investment"),
    NC_("SC_OPCODE_MIRR", "Interest rate for investments (the negative values in the array)."),
    NC_("SC_OPCODE_MIRR", "Reinvest rate"),
    NC_("SC_OPCODE_MIRR", "Interest rate for reinvestments (the positive values in the array).")
};

// -=*# Resource for function ISPMT #*=-
const char* SC_OPCODE_ISPMT_ARY[] =
{
    NC_("SC_OPCODE_ISPMT", "Returns the amount of interest for constant amortization rates."),
    NC_("SC_OPCODE_ISPMT", "Rate"),
    NC_("SC_OPCODE_ISPMT", "Interest rate for a single amortization rate."),
    NC_("SC_OPCODE_ISPMT", "Period"),
    NC_("SC_OPCODE_ISPMT", "Number of amortization periods for the calculation of the interest."),
    NC_("SC_OPCODE_ISPMT", "Total periods"),
    NC_("SC_OPCODE_ISPMT", "Sum total of amortization periods."),
    NC_("SC_OPCODE_ISPMT", "Investment"),
    NC_("SC_OPCODE_ISPMT", "Amount of the investment.")
};

// -=*# Resource for function PDURATION #*=-
const char* SC_OPCODE_PDURATION_ARY[] =
{
    NC_("SC_OPCODE_PDURATION", "Duration. Calculates the number of periods required by an investment to attain the desired value."),
    NC_("SC_OPCODE_PDURATION", "Rate"),
    NC_("SC_OPCODE_PDURATION", "The constant rate of interest."),
    NC_("SC_OPCODE_PDURATION", "PV"),
    NC_("SC_OPCODE_PDURATION", "The present value. The current value of the investment."),
    NC_("SC_OPCODE_PDURATION", "FV"),
    NC_("SC_OPCODE_PDURATION", "The future value of the investment.")
};

// -=*# Resource for function RRI #*=-
const char* SC_OPCODE_RRI_ARY[] =
{
    NC_("SC_OPCODE_RRI", "Interest. Calculates the interest rate which represents the rate of return from an investment."),
    NC_("SC_OPCODE_RRI", "Periods"),
    NC_("SC_OPCODE_RRI", "The number of periods used in the calculation."),
    NC_("SC_OPCODE_RRI", "PV"),
    NC_("SC_OPCODE_RRI", "Present value. The current value of the investment."),
    NC_("SC_OPCODE_RRI", "FV"),
    NC_("SC_OPCODE_RRI", "The future value of the investment.")
};

// -=*# Resource for function ISREF #*=-
const char* SC_OPCODE_IS_REF_ARY[] =
{
    NC_("SC_OPCODE_IS_REF", "Returns TRUE if value is a reference."),
    NC_("SC_OPCODE_IS_REF", "Value"),
    NC_("SC_OPCODE_IS_REF", "The value to be tested.")
};

// -=*# Resource for function ISERR #*=-
const char* SC_OPCODE_IS_ERR_ARY[] =
{
    NC_("SC_OPCODE_IS_ERR", "Returns TRUE if the value is an error value not equal to #N/A."),
    NC_("SC_OPCODE_IS_ERR", "Value"),
    NC_("SC_OPCODE_IS_ERR", "The value to be tested.")
};

// -=*# Resource for function ISERROR #*=-
const char* SC_OPCODE_IS_ERROR_ARY[] =
{
    NC_("SC_OPCODE_IS_ERROR", "Returns TRUE if the value is an error value."),
    NC_("SC_OPCODE_IS_ERROR", "Value"),
    NC_("SC_OPCODE_IS_ERROR", "The value to be tested.")
};

// -=*# Resource for function ISBLANK #*=-
const char* SC_OPCODE_IS_EMPTY_ARY[] =
{
    NC_("SC_OPCODE_IS_EMPTY", "Returns TRUE if value refers to an empty cell."),
    NC_("SC_OPCODE_IS_EMPTY", "Value"),
    NC_("SC_OPCODE_IS_EMPTY", "The value to be tested.")
};

// -=*# Resource for function ISLOGICAL #*=-
const char* SC_OPCODE_IS_LOGICAL_ARY[] =
{
    NC_("SC_OPCODE_IS_LOGICAL", "Returns TRUE if the value carries a logical number format."),
    NC_("SC_OPCODE_IS_LOGICAL", "Value"),
    NC_("SC_OPCODE_IS_LOGICAL", "The value to be tested.")
};

// -=*# Resource for function ISNA #*=-
const char* SC_OPCODE_IS_NV_ARY[] =
{
    NC_("SC_OPCODE_IS_NV", "Returns TRUE if value equals #N/A."),
    NC_("SC_OPCODE_IS_NV", "Value"),
    NC_("SC_OPCODE_IS_NV", "The value to be tested.")
};

// -=*# Resource for function ISNONTEXT #*=-
const char* SC_OPCODE_IS_NON_STRING_ARY[] =
{
    NC_("SC_OPCODE_IS_NON_STRING", "Returns TRUE if the value is not text."),
    NC_("SC_OPCODE_IS_NON_STRING", "Value"),
    NC_("SC_OPCODE_IS_NON_STRING", "The value to be tested.")
};

// -=*# Resource for function ISTEXT #*=-
const char* SC_OPCODE_IS_STRING_ARY[] =
{
    NC_("SC_OPCODE_IS_STRING", "Returns TRUE if value is text."),
    NC_("SC_OPCODE_IS_STRING", "Value"),
    NC_("SC_OPCODE_IS_STRING", "The value to be tested.")
};

// -=*# Resource for function ISNUMBER #*=-
const char* SC_OPCODE_IS_VALUE_ARY[] =
{
    NC_("SC_OPCODE_IS_VALUE", "Returns TRUE if value is a number."),
    NC_("SC_OPCODE_IS_VALUE", "Value"),
    NC_("SC_OPCODE_IS_VALUE", "The value to be tested.")
};

// -=*# Resource for function ISFORMULA #*=-
const char* SC_OPCODE_IS_FORMULA_ARY[] =
{
    NC_("SC_OPCODE_IS_FORMULA", "Returns TRUE if the cell is a formula cell."),
    NC_("SC_OPCODE_IS_FORMULA", "Reference"),
    NC_("SC_OPCODE_IS_FORMULA", "The cell to be tested.")
};

// -=*# Resource for function FORMULA #*=-
const char* SC_OPCODE_FORMULA_ARY[] =
{
    NC_("SC_OPCODE_FORMULA", "Returns the formula of a formula cell."),
    NC_("SC_OPCODE_FORMULA", "Reference"),
    NC_("SC_OPCODE_FORMULA", "The formula cell.")
};

// -=*# Resource for function N #*=-
const char* SC_OPCODE_N_ARY[] =
{
    NC_("SC_OPCODE_N", "Converts a value to a number."),
    NC_("SC_OPCODE_N", "Value"),
    NC_("SC_OPCODE_N", "The value to be interpreted as a number.")
};

// -=*# Resource for function NA #*=-
const char* SC_OPCODE_NO_VALUE_ARY[] =
{
    NC_("SC_OPCODE_NO_VALUE", "Not available. Returns the error value #N/A.")
};

// -=*# Resource for function TYPE #*=-
const char* SC_OPCODE_TYPE_ARY[] =
{
    NC_("SC_OPCODE_TYPE", "Returns the data type of a value (1 = number, 2 = text, 4 = Boolean value, 8 = formula, 16 = error value, 64 = array)."),
    NC_("SC_OPCODE_TYPE", "Value"),
    NC_("SC_OPCODE_TYPE", "The value for which the data type is to be determined.")
};

// -=*# Resource for function CELL #*=-
const char* SC_OPCODE_CELL_ARY[] =
{
    NC_("SC_OPCODE_CELL", "Determines information about address, formatting or contents of a cell."),
    NC_("SC_OPCODE_CELL", "Info type"),
    NC_("SC_OPCODE_CELL", "String that specifies the type of information."),
    NC_("SC_OPCODE_CELL", "Reference"),
    NC_("SC_OPCODE_CELL", "The position of the cell you want to examine.")
};

// -=*# Resource for function CURRENT #*=-
const char* SC_OPCODE_CURRENT_ARY[] =
{
    NC_("SC_OPCODE_CURRENT", "Calculates the current value of the formula at the present location.")
};

// -=*# Resource for function FALSE #*=-
const char* SC_OPCODE_FALSE_ARY[] =
{
    NC_("SC_OPCODE_FALSE", "Defines the logical value as FALSE.")
};

// -=*# Resource for function NOT #*=-
const char* SC_OPCODE_NOT_ARY[] =
{
    NC_("SC_OPCODE_NOT", "Reverses the value of the argument."),
    NC_("SC_OPCODE_NOT", "Logical value"),
    NC_("SC_OPCODE_NOT", "An expression that can be either TRUE or FALSE.")
};

// -=*# Resource for function TRUE #*=-
const char* SC_OPCODE_TRUE_ARY[] =
{
    NC_("SC_OPCODE_TRUE", "Returns the logical value TRUE.")
};

// -=*# Resource for function IF #*=-
const char* SC_OPCODE_IF_ARY[] =
{
    NC_("SC_OPCODE_IF", "Specifies a logical test to be performed."),
    NC_("SC_OPCODE_IF", "Test"),
    NC_("SC_OPCODE_IF", "Any value or expression which can be either TRUE or FALSE."),
    NC_("SC_OPCODE_IF", "Then value"),
    NC_("SC_OPCODE_IF", "The result of the function if the logical test returns a TRUE."),
    NC_("SC_OPCODE_IF", "Otherwise value"),
    NC_("SC_OPCODE_IF", "The result of the function if the logical test returns FALSE.")
};

// -=*# Resource for function IFERROR #*=-
const char* SC_OPCODE_IF_ERROR_ARY[] =
{
    NC_("SC_OPCODE_IF_ERROR", "Returns value if not an error value, else alternative."),
    NC_("SC_OPCODE_IF_ERROR", "Value"),
    NC_("SC_OPCODE_IF_ERROR", "The value to be calculated."),
    NC_("SC_OPCODE_IF_ERROR", "Alternative value"),
    NC_("SC_OPCODE_IF_ERROR", "The alternative to be returned, should value be an error value.")
};

// -=*# Resource for function IFNA #*=-
const char* SC_OPCODE_IF_NA_ARY[] =
{
    NC_("SC_OPCODE_IF_NA", "Returns value if not a #N/A error, else alternative."),
    NC_("SC_OPCODE_IF_NA", "Value"),
    NC_("SC_OPCODE_IF_NA", "The value to be calculated."),
    NC_("SC_OPCODE_IF_NA", "Alternative value"),
    NC_("SC_OPCODE_IF_NA", "The alternative to be returned, should value be a #N/A error.")
};

// -=*# Resource for function OR #*=-
const char* SC_OPCODE_OR_ARY[] =
{
    NC_("SC_OPCODE_OR", "Returns TRUE if an argument is TRUE."),
    NC_("SC_OPCODE_OR", "Logical value "),
    NC_("SC_OPCODE_OR", "Logical value 1, logical value 2,... are conditions to be tested and which return either TRUE or FALSE.")
};

// -=*# Resource for function XOR #*=-
const char* SC_OPCODE_XOR_ARY[] =
{
    NC_("SC_OPCODE_XOR", "Returns TRUE if an odd number of arguments evaluates to TRUE."),
    NC_("SC_OPCODE_XOR", "Logical value "),
    NC_("SC_OPCODE_XOR", "Logical value 1, logical value 2, ... are conditions to be tested and which return either TRUE or FALSE.")
};

// -=*# Resource for function AND #*=-
const char* SC_OPCODE_AND_ARY[] =
{
    NC_("SC_OPCODE_AND", "Returns TRUE if all arguments are TRUE."),
    NC_("SC_OPCODE_AND", "Logical value "),
    NC_("SC_OPCODE_AND", "Logical value 1, logical value 2;...are conditions to be tested and each returns either TRUE or FALSE.")
};

// -=*# Resource for function ABS #*=-
const char* SC_OPCODE_ABS_ARY[] =
{
    NC_("SC_OPCODE_ABS", "Absolute value of a number."),
    NC_("SC_OPCODE_ABS", "Number"),
    NC_("SC_OPCODE_ABS", "The number whose absolute value is to be returned.")
};

// -=*# Resource for function POWER #*=-
const char* SC_OPCODE_POWER_ARY[] =
{
    NC_("SC_OPCODE_POWER", "Returns a^b, base a raised to the power of exponent b."),
    NC_("SC_OPCODE_POWER", "Base"),
    NC_("SC_OPCODE_POWER", "The base a of the power a^b."),
    NC_("SC_OPCODE_POWER", "Exponent"),
    NC_("SC_OPCODE_POWER", "The exponent b of the power a^b.")
};

// -=*# Resource for function COUNTBLANK #*=-
const char* SC_OPCODE_COUNT_EMPTY_CELLS_ARY[] =
{
    NC_("SC_OPCODE_COUNT_EMPTY_CELLS", "Counts the blank cells in a specified range."),
    NC_("SC_OPCODE_COUNT_EMPTY_CELLS", "Range"),
    NC_("SC_OPCODE_COUNT_EMPTY_CELLS", "The range in which empty cells are to be counted.")
};

// -=*# Resource for function PI #*=-
const char* SC_OPCODE_PI_ARY[] =
{
    NC_("SC_OPCODE_PI", "Returns the value of the number Pi.")
};

// -=*# Resource for function SUM #*=-
const char* SC_OPCODE_SUM_ARY[] =
{
    NC_("SC_OPCODE_SUM", "Returns the sum of all arguments."),
    NC_("SC_OPCODE_SUM", "Number "),
    NC_("SC_OPCODE_SUM", "Number 1, number 2, ... are arguments whose total is to be calculated.")
};

// -=*# Resource for function SUMSQ #*=-
const char* SC_OPCODE_SUM_SQ_ARY[] =
{
    NC_("SC_OPCODE_SUM_SQ", "Returns the sum of the squares of the arguments."),
    NC_("SC_OPCODE_SUM_SQ", "Number "),
    NC_("SC_OPCODE_SUM_SQ", "Number 1, number 2,... are arguments for which the sum of the squares is to be calculated.")
};

// -=*# Resource for function PRODUCT #*=-
const char* SC_OPCODE_PRODUCT_ARY[] =
{
    NC_("SC_OPCODE_PRODUCT", "Multiplies the arguments."),
    NC_("SC_OPCODE_PRODUCT", "Number "),
    NC_("SC_OPCODE_PRODUCT", "Number 1, number 2, ... are arguments to be multiplied and a result returned.")
};

// -=*# Resource for function SUMIF #*=-
const char* SC_OPCODE_SUM_IF_ARY[] =
{
    NC_("SC_OPCODE_SUM_IF", "Totals the arguments that meet the condition."),
    NC_("SC_OPCODE_SUM_IF", "Range"),
    NC_("SC_OPCODE_SUM_IF", "The range to be evaluated by the criteria given."),
    NC_("SC_OPCODE_SUM_IF", "Criteria"),
    NC_("SC_OPCODE_SUM_IF", "The criteria to be applied to the range."),
    NC_("SC_OPCODE_SUM_IF", "Sum range"),
    NC_("SC_OPCODE_SUM_IF", "The range from which the values are to be totalled.")
};

// -=*# Resource for function AVERAGEIF #*=-
const char* SC_OPCODE_AVERAGE_IF_ARY[] =
{
    NC_("SC_OPCODE_AVERAGE_IF", "Averages the arguments that meet the conditions."),
    NC_("SC_OPCODE_AVERAGE_IF", "Range"),
    NC_("SC_OPCODE_AVERAGE_IF", "The range to be evaluated by the criteria given."),
    NC_("SC_OPCODE_AVERAGE_IF", "Criteria"),
    NC_("SC_OPCODE_AVERAGE_IF", "The criteria to be applied to the range."),
    NC_("SC_OPCODE_AVERAGE_IF", "Average range"),
    NC_("SC_OPCODE_AVERAGE_IF", "The range from which the values are to be averaged.")
};

const char* SC_OPCODE_SUM_IFS_ARY[] =
{
    NC_("SC_OPCODE_SUM_IFS", "Totals the values of cells in a range that meet multiple criteria in multiple ranges."),
    NC_("SC_OPCODE_SUM_IFS", "Sum range"),
    NC_("SC_OPCODE_SUM_IFS", "The range from which the values are to be totalled."),
    NC_("SC_OPCODE_SUM_IFS", "Range "),
    NC_("SC_OPCODE_SUM_IFS", "Range 1, range 2,... are the ranges to be evaluated by the criteria given."),
    NC_("SC_OPCODE_SUM_IFS", "Criteria "),
    NC_("SC_OPCODE_SUM_IFS", "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.")
};

// -=*# Resource for function AVERAGEIFS #*=-
const char* SC_OPCODE_AVERAGE_IFS_ARY[] =
{
    NC_("SC_OPCODE_AVERAGE_IFS", "Averages the value of the cells that meet multiple criteria in multiple ranges."),
    NC_("SC_OPCODE_AVERAGE_IFS", "Average range"),
    NC_("SC_OPCODE_AVERAGE_IFS", "The range from which the values are to be averaged."),
    NC_("SC_OPCODE_AVERAGE_IFS", "Range "),
    NC_("SC_OPCODE_AVERAGE_IFS", "Range 1, range 2,... are the ranges to be evaluated by the criteria given."),
    NC_("SC_OPCODE_AVERAGE_IFS", "Criteria "),
    NC_("SC_OPCODE_AVERAGE_IFS", "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.")
};

// -=*# Resource for function COUNTIFS #*=-
const char* SC_OPCODE_COUNT_IFS_ARY[] =
{
    NC_("SC_OPCODE_COUNT_IFS", "Counts the cells that meet multiple criteria in multiple ranges."),
    NC_("SC_OPCODE_COUNT_IFS", "Range "),
    NC_("SC_OPCODE_COUNT_IFS", "Range 1, range 2,... are the ranges to be evaluated by the criteria given."),
    NC_("SC_OPCODE_COUNT_IFS", "Criteria "),
    NC_("SC_OPCODE_COUNT_IFS", "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.")
};

// -=*# Resource for function COUNTIF #*=-
const char* SC_OPCODE_COUNT_IF_ARY[] =
{
    NC_("SC_OPCODE_COUNT_IF", "Counts the arguments which meet the set conditions."),
    NC_("SC_OPCODE_COUNT_IF", "Range"),
    NC_("SC_OPCODE_COUNT_IF", "The range of cells to be evaluated by the criteria given."),
    NC_("SC_OPCODE_COUNT_IF", "Criteria"),
    NC_("SC_OPCODE_COUNT_IF", "The criteria to be applied to the range.")
};

// -=*# Resource for function SQRT #*=-
const char* SC_OPCODE_SQRT_ARY[] =
{
    NC_("SC_OPCODE_SQRT", "Returns the square root of a number."),
    NC_("SC_OPCODE_SQRT", "Number"),
    NC_("SC_OPCODE_SQRT", "A positive value for which the square root is to be calculated.")
};

// -=*# Resource for function RAND #*=-
const char* SC_OPCODE_RANDOM_ARY[] =
{
    NC_("SC_OPCODE_RANDOM", "Returns a random number between 0 and 1.")
};

// -=*# Resource for function ISEVEN #*=-
const char* SC_OPCODE_IS_EVEN_ARY[] =
{
    NC_("SC_OPCODE_IS_EVEN", "Returns TRUE if value is an even integer."),
    NC_("SC_OPCODE_IS_EVEN", "Value"),
    NC_("SC_OPCODE_IS_EVEN", "The value to be tested.")
};

// -=*# Resource for function ISODD #*=-
const char* SC_OPCODE_IS_ODD_ARY[] =
{
    NC_("SC_OPCODE_IS_ODD", "Returns TRUE if value is an odd integer."),
    NC_("SC_OPCODE_IS_ODD", "Value"),
    NC_("SC_OPCODE_IS_ODD", "The value to be tested.")
};

// -=*# Resource for function COMBIN #*=-
const char* SC_OPCODE_COMBIN_ARY[] =
{
    NC_("SC_OPCODE_COMBIN", "Calculates the number of combinations for elements without repetition."),
    NC_("SC_OPCODE_COMBIN", "Number 1"),
    NC_("SC_OPCODE_COMBIN", "The total number of elements."),
    NC_("SC_OPCODE_COMBIN", "Number 2"),
    NC_("SC_OPCODE_COMBIN", "The number of elements selected.")
};

// -=*# Resource for function COMBINA #*=-
const char* SC_OPCODE_COMBIN_A_ARY[] =
{
    NC_("SC_OPCODE_COMBIN_A", "Calculates the number of combinations of elements including repetition."),
    NC_("SC_OPCODE_COMBIN_A", "Number 1"),
    NC_("SC_OPCODE_COMBIN_A", "The total number of elements."),
    NC_("SC_OPCODE_COMBIN_A", "Number 2"),
    NC_("SC_OPCODE_COMBIN_A", "The number of elements selected.")
};

// -=*# Resource for function ARCCOS #*=-
const char* SC_OPCODE_ARC_COS_ARY[] =
{
    NC_("SC_OPCODE_ARC_COS", "Returns the arccosine of a number."),
    NC_("SC_OPCODE_ARC_COS", "Number"),
    NC_("SC_OPCODE_ARC_COS", "A value between -1 and 1 for which the arccosine is to be returned.")
};

// -=*# Resource for function ARCSIN #*=-
const char* SC_OPCODE_ARC_SIN_ARY[] =
{
    NC_("SC_OPCODE_ARC_SIN", "Returns the arcsine of a number."),
    NC_("SC_OPCODE_ARC_SIN", "Number"),
    NC_("SC_OPCODE_ARC_SIN", "A value between -1 and 1 for which the arcsine is to be returned.")
};

// -=*# Resource for function ARCCOSHYP #*=-
const char* SC_OPCODE_ARC_COS_HYP_ARY[] =
{
    NC_("SC_OPCODE_ARC_COS_HYP", "Returns the inverse hyperbolic cosine of a number."),
    NC_("SC_OPCODE_ARC_COS_HYP", "Number"),
    NC_("SC_OPCODE_ARC_COS_HYP", "A value greater than or equal to 1 for which the inverse hyperbolic cosine is to be returned.")
};

// -=*# Resource for function ARCSINHYP #*=-
const char* SC_OPCODE_ARC_SIN_HYP_ARY[] =
{
    NC_("SC_OPCODE_ARC_SIN_HYP", "Returns the inverse hyperbolic sine of a number."),
    NC_("SC_OPCODE_ARC_SIN_HYP", "Number"),
    NC_("SC_OPCODE_ARC_SIN_HYP", "The value for which the inverse hyperbolic sine is to be returned.")
};

// -=*# Resource for function ARCCOT #*=-
const char* SC_OPCODE_ARC_COT_ARY[] =
{
    NC_("SC_OPCODE_ARC_COT", "Returns the inverse cotangent of a number."),
    NC_("SC_OPCODE_ARC_COT", "Number"),
    NC_("SC_OPCODE_ARC_COT", "The value for which the inverse cotangent is to be returned.")
};

// -=*# Resource for function ARCTAN #*=-
const char* SC_OPCODE_ARC_TAN_ARY[] =
{
    NC_("SC_OPCODE_ARC_TAN", "Returns the arctangent of a number."),
    NC_("SC_OPCODE_ARC_TAN", "Number"),
    NC_("SC_OPCODE_ARC_TAN", "The value for which the arctangent is to be returned.")
};

// -=*# Resource for function ARCCOTHYP #*=-
const char* SC_OPCODE_ARC_COT_HYP_ARY[] =
{
    NC_("SC_OPCODE_ARC_COT_HYP", "Returns the inverse hyperbolic cotangent of a number."),
    NC_("SC_OPCODE_ARC_COT_HYP", "Number"),
    NC_("SC_OPCODE_ARC_COT_HYP", "A value smaller than -1 or greater than 1 for which the inverse hyperbolic cotangent is to be returned.")
};

// -=*# Resource for function ARCTANHYP #*=-
const char* SC_OPCODE_ARC_TAN_HYP_ARY[] =
{
    NC_("SC_OPCODE_ARC_TAN_HYP", "Returns the inverse hyperbolic tangent of a number."),
    NC_("SC_OPCODE_ARC_TAN_HYP", "Number"),
    NC_("SC_OPCODE_ARC_TAN_HYP", "A value between -1 and 1 for which the inverse hyperbolic tangent is to be returned.")
};

// -=*# Resource for function COS #*=-
const char* SC_OPCODE_COS_ARY[] =
{
    NC_("SC_OPCODE_COS", "Returns the cosine of a number."),
    NC_("SC_OPCODE_COS", "Number"),
    NC_("SC_OPCODE_COS", "The angle in the radians for which the cosine is to be returned.")
};

// -=*# Resource for function SIN #*=-
const char* SC_OPCODE_SIN_ARY[] =
{
    NC_("SC_OPCODE_SIN", "Returns the sine of a number."),
    NC_("SC_OPCODE_SIN", "Number"),
    NC_("SC_OPCODE_SIN", "The angle in radians for which the sine is to be calculated.")
};

// -=*# Resource for function COT #*=-
const char* SC_OPCODE_COT_ARY[] =
{
    NC_("SC_OPCODE_COT", "Returns the cotangent of a number."),
    NC_("SC_OPCODE_COT", "Number"),
    NC_("SC_OPCODE_COT", "The angle in radians whose cotangent value is to be returned.")
};

// -=*# Resource for function TAN #*=-
const char* SC_OPCODE_TAN_ARY[] =
{
    NC_("SC_OPCODE_TAN", "Returns the tangent of a number."),
    NC_("SC_OPCODE_TAN", "Number"),
    NC_("SC_OPCODE_TAN", "The angle in radians for which the tangent is to be calculated.")
};

// -=*# Resource for function COSHYP #*=-
const char* SC_OPCODE_COS_HYP_ARY[] =
{
    NC_("SC_OPCODE_COS_HYP", "Returns the hyperbolic cosine of a number."),
    NC_("SC_OPCODE_COS_HYP", "Number"),
    NC_("SC_OPCODE_COS_HYP", "The value for which the hyperbolic cosine is to be returned.")
};

// -=*# Resource for function SINHYP #*=-
const char* SC_OPCODE_SIN_HYP_ARY[] =
{
    NC_("SC_OPCODE_SIN_HYP", "Returns the hyperbolic sine of a number."),
    NC_("SC_OPCODE_SIN_HYP", "Number"),
    NC_("SC_OPCODE_SIN_HYP", "The value for which the hyperbolic sine is to be calculated.")
};

// -=*# Resource for function COTHYP #*=-
const char* SC_OPCODE_COT_HYP_ARY[] =
{
    NC_("SC_OPCODE_COT_HYP", "Returns the hyperbolic cotangent of a number."),
    NC_("SC_OPCODE_COT_HYP", "Number"),
    NC_("SC_OPCODE_COT_HYP", "A value not equal to 0 for which the hyperbolic cotangent is to be returned.")
};

// -=*# Resource for function TANHYP #*=-
const char* SC_OPCODE_TAN_HYP_ARY[] =
{
    NC_("SC_OPCODE_TAN_HYP", "Returns the hyperbolic tangent of a number."),
    NC_("SC_OPCODE_TAN_HYP", "Number"),
    NC_("SC_OPCODE_TAN_HYP", "The value for which the hyperbolic tangent is to be calculated.")
};

// -=*# Resource for function ARCTAN2 #*=-
const char* SC_OPCODE_ARC_TAN_2_ARY[] =
{
    NC_("SC_OPCODE_ARC_TAN_2", "Returns the arctangent for the specified coordinates."),
    NC_("SC_OPCODE_ARC_TAN_2", "Number X"),
    NC_("SC_OPCODE_ARC_TAN_2", "The value for the X coordinate."),
    NC_("SC_OPCODE_ARC_TAN_2", "Number Y"),
    NC_("SC_OPCODE_ARC_TAN_2", "The value for the Y coordinate.")
};

// -=*# Resource for function CSC #*=-
const char* SC_OPCODE_COSECANT_ARY[] =
{
    NC_("SC_OPCODE_COSECANT", "Return the cosecant of an angle. CSC(x)=1/SIN(x)"),
    NC_("SC_OPCODE_COSECANT", "Angle"),
    NC_("SC_OPCODE_COSECANT", "The angle in radians for which the cosecant is to be calculated.")
};

// -=*# Resource for function SEC #*=-
const char* SC_OPCODE_SECANT_ARY[] =
{
    NC_("SC_OPCODE_SECANT", "Return the secant of an angle. SEC(x)=1/COS(x)"),
    NC_("SC_OPCODE_SECANT", "Angle"),
    NC_("SC_OPCODE_SECANT", "The angle in radians for which the secant is to be calculated.")
};

// -=*# Resource for function CSCH #*=-
const char* SC_OPCODE_COSECANT_HYP_ARY[] =
{
    NC_("SC_OPCODE_COSECANT_HYP", "Return the hyperbolic cosecant of a hyperbolic angle. CSCH(x)=1/SINH(x)"),
    NC_("SC_OPCODE_COSECANT_HYP", "Angle"),
    NC_("SC_OPCODE_COSECANT_HYP", "The hyperbolic angle in radians for which the hyperbolic cosecant is to be calculated.")
};

// -=*# Resource for function SECH #*=-
const char* SC_OPCODE_SECANT_HYP_ARY[] =
{
    NC_("SC_OPCODE_SECANT_HYP", "Return the hyperbolic secant of a hyperbolic angle. SECH(x)=1/COSH(x)"),
    NC_("SC_OPCODE_SECANT_HYP", "Angle"),
    NC_("SC_OPCODE_SECANT_HYP", "The hyperbolic angle in radians for which the hyperbolic secant is to be calculated.")
};

// -=*# Resource for function DEG #*=-
const char* SC_OPCODE_DEG_ARY[] =
{
    NC_("SC_OPCODE_DEG", "Converts a radian to degrees"),
    NC_("SC_OPCODE_DEG", "Number"),
    NC_("SC_OPCODE_DEG", "The angle in a radian")
};

// -=*# Resource for function RAD #*=-
const char* SC_OPCODE_RAD_ARY[] =
{
    NC_("SC_OPCODE_RAD", "Converts degrees to radians"),
    NC_("SC_OPCODE_RAD", "Number"),
    NC_("SC_OPCODE_RAD", "The angle in degrees.")
};

// -=*# Resource for function EXP #*=-
const char* SC_OPCODE_EXP_ARY[] =
{
    NC_("SC_OPCODE_EXP", "Calculates the exponent for basis e."),
    NC_("SC_OPCODE_EXP", "Number"),
    NC_("SC_OPCODE_EXP", "The exponent applied to base e.")
};

// -=*# Resource for function LOG #*=-
const char* SC_OPCODE_LOG_ARY[] =
{
    NC_("SC_OPCODE_LOG", "Calculates the logarithm to any specified base."),
    NC_("SC_OPCODE_LOG", "Number"),
    NC_("SC_OPCODE_LOG", "A value greater than 0 for which the logarithm is to be calculated."),
    NC_("SC_OPCODE_LOG", "Base"),
    NC_("SC_OPCODE_LOG", "The base of the logarithm. If omitted, the base is regarded as 10.")
};

// -=*# Resource for function LN #*=-
const char* SC_OPCODE_LN_ARY[] =
{
    NC_("SC_OPCODE_LN", "Calculates the natural logarithm of a number."),
    NC_("SC_OPCODE_LN", "Number"),
    NC_("SC_OPCODE_LN", "A value greater than 0 for which the natural logarithm is to be calculated.")
};

// -=*# Resource for function LOG10 #*=-
const char* SC_OPCODE_LOG10_ARY[] =
{
    NC_("SC_OPCODE_LOG10", "Calculates the base-10 logarithm of a number."),
    NC_("SC_OPCODE_LOG10", "Number"),
    NC_("SC_OPCODE_LOG10", "A value greater than 0 for which the logarithm is to be calculated.")
};

// -=*# Resource for function FACT #*=-
const char* SC_OPCODE_FACT_ARY[] =
{
    NC_("SC_OPCODE_FACT", "Calculates the factorial of a number."),
    NC_("SC_OPCODE_FACT", "Number"),
    NC_("SC_OPCODE_FACT", "The number for which the factorial is to be calculated.")
};

// -=*# Resource for function MOD #*=-
const char* SC_OPCODE_MOD_ARY[] =
{
    NC_("SC_OPCODE_MOD", "Calculates the remainder of a division."),
    NC_("SC_OPCODE_MOD", "Dividend"),
    NC_("SC_OPCODE_MOD", "The number to be divided."),
    NC_("SC_OPCODE_MOD", "Divisor"),
    NC_("SC_OPCODE_MOD", "The number by which the dividend is divided.")
};

// -=*# Resource for function SIGN #*=-
const char* SC_OPCODE_PLUS_MINUS_ARY[] =
{
    NC_("SC_OPCODE_PLUS_MINUS", "Returns the algebraic sign of a number."),
    NC_("SC_OPCODE_PLUS_MINUS", "Number"),
    NC_("SC_OPCODE_PLUS_MINUS", "The number for which the algebraic sign is to be determined.")
};

// -=*# Resource for function SUBTOTAL #*=-
const char* SC_OPCODE_SUB_TOTAL_ARY[] =
{
    NC_("SC_OPCODE_SUB_TOTAL", "Calculates subtotals in a spreadsheet."),
    NC_("SC_OPCODE_SUB_TOTAL", "Function"),
    NC_("SC_OPCODE_SUB_TOTAL", "Function index. Is an index of the possible functions Total, Max, ..."),
    NC_("SC_OPCODE_SUB_TOTAL", "Range"),
    NC_("SC_OPCODE_SUB_TOTAL", "The cells of the range which are to be taken into account.")
};

// -=*# Resource for function AGGREGATE #*=-
const char* SC_OPCODE_AGGREGATE_ARY[] =
{
    NC_("SC_OPCODE_AGGREGATE", "Calculates an aggregate in a spreadsheet."),
    NC_("SC_OPCODE_AGGREGATE", "Function"),
    NC_("SC_OPCODE_AGGREGATE", "Function index. Is an index of the possible functions Total, Max, ..."),
    NC_("SC_OPCODE_AGGREGATE", "Options"),
    NC_("SC_OPCODE_AGGREGATE", "Option index. Is an index of the possible ignore options."),
    NC_("SC_OPCODE_AGGREGATE", "Reference 1 or array"),
    NC_("SC_OPCODE_AGGREGATE", "The cell(s) of the range which are to be taken into account."),
    NC_("SC_OPCODE_AGGREGATE", "Reference 2..n or k "),
    NC_("SC_OPCODE_AGGREGATE", "The cells of the range which are to be taken into account or mandatory 2nd argument for certain functions.")
};

// -=*# Resource for function INT #*=-
const char* SC_OPCODE_INT_ARY[] =
{
    NC_("SC_OPCODE_INT", "Rounds a number down to the nearest integer."),
    NC_("SC_OPCODE_INT", "Number"),
    NC_("SC_OPCODE_INT", "The number to be rounded down.")
};

// -=*# Resource for function TRUNC #*=-
const char* SC_OPCODE_TRUNC_ARY[] =
{
    NC_("SC_OPCODE_TRUNC", "Truncates the decimal places of a number."),
    NC_("SC_OPCODE_TRUNC", "Number"),
    NC_("SC_OPCODE_TRUNC", "The number to be truncated."),
    NC_("SC_OPCODE_TRUNC", "Count"),
    NC_("SC_OPCODE_TRUNC", "The number of places after the decimal point that are not to be truncated.")
};

// -=*# Resource for function ROUND #*=-
const char* SC_OPCODE_ROUND_ARY[] =
{
    NC_("SC_OPCODE_ROUND", "Rounds a number to a predefined accuracy."),
    NC_("SC_OPCODE_ROUND", "Number"),
    NC_("SC_OPCODE_ROUND", "The number to be rounded."),
    NC_("SC_OPCODE_ROUND", "Count"),
    NC_("SC_OPCODE_ROUND", "The number of places to which a number is to be rounded.")
};

// -=*# Resource for function ROUNDUP #*=-
const char* SC_OPCODE_ROUND_UP_ARY[] =
{
    NC_("SC_OPCODE_ROUND_UP", "Rounds a number up to the predefined accuracy."),
    NC_("SC_OPCODE_ROUND_UP", "Number"),
    NC_("SC_OPCODE_ROUND_UP", "The number to be rounded up."),
    NC_("SC_OPCODE_ROUND_UP", "Count"),
    NC_("SC_OPCODE_ROUND_UP", "The number of places to which a number is to be rounded.")
};

// -=*# Resource for function ROUNDDOWN #*=-
const char* SC_OPCODE_ROUND_DOWN_ARY[] =
{
    NC_("SC_OPCODE_ROUND_DOWN", "Rounds a number down to a predefined accuracy."),
    NC_("SC_OPCODE_ROUND_DOWN", "Number"),
    NC_("SC_OPCODE_ROUND_DOWN", "The number to be rounded down."),
    NC_("SC_OPCODE_ROUND_DOWN", "Count"),
    NC_("SC_OPCODE_ROUND_DOWN", "The number of places down to which a number is to be rounded.")
};

// -=*# Resource for function EVEN #*=-
const char* SC_OPCODE_EVEN_ARY[] =
{
    NC_("SC_OPCODE_EVEN", "Rounds a positive number up and negative number down to the nearest even integer."),
    NC_("SC_OPCODE_EVEN", "Number"),
    NC_("SC_OPCODE_EVEN", "The number to be rounded up.")
};

// -=*# Resource for function ODD #*=-
const char* SC_OPCODE_ODD_ARY[] =
{
    NC_("SC_OPCODE_ODD", "Rounds a positive number up and negative number down to the nearest odd integer."),
    NC_("SC_OPCODE_ODD", "Number"),
    NC_("SC_OPCODE_ODD", "The number to be rounded up.")
};

// -=*# Resource for function CEILING.XCL #*=-
const char* SC_OPCODE_CEIL_MS_ARY[] =
{
    NC_("SC_OPCODE_CEIL_MS", "Rounds a number away from zero to the nearest multiple of significance.\nThis function exists for interoperability with Microsoft Excel 2007 or older versions."),
    NC_("SC_OPCODE_CEIL_MS", "Number"),
    NC_("SC_OPCODE_CEIL_MS", "The number to be rounded up."),
    NC_("SC_OPCODE_CEIL_MS", "Significance"),
    NC_("SC_OPCODE_CEIL_MS", "The number to whose multiple the value is rounded.")
};

// -=*# Resource for function CEILING.PRECISE #*=-
const char* SC_OPCODE_CEIL_PRECISE_ARY[] =
{
    NC_("SC_OPCODE_CEIL_PRECISE", "Rounds a number up to the nearest multiple of significance, regardless of sign of significance."),
    NC_("SC_OPCODE_CEIL_PRECISE", "Number"),
    NC_("SC_OPCODE_CEIL_PRECISE", "The number to be rounded up."),
    NC_("SC_OPCODE_CEIL_PRECISE", "Significance"),
    NC_("SC_OPCODE_CEIL_PRECISE", "The number to whose multiple the value is rounded.")
};

// -=*# Resource for function ISO.CEILING #*=-
const char* SC_OPCODE_CEIL_ISO_ARY[] =
{
    NC_("SC_OPCODE_CEIL_ISO", "Rounds a number up to the nearest multiple of significance, regardless of sign of significance."),
    NC_("SC_OPCODE_CEIL_ISO", "Number"),
    NC_("SC_OPCODE_CEIL_ISO", "The number to be rounded up."),
    NC_("SC_OPCODE_CEIL_ISO", "Significance"),
    NC_("SC_OPCODE_CEIL_ISO", "The number to whose multiple the value is rounded.")
};

// -=*# Resource for function CEILING #*=-
const char* SC_OPCODE_CEIL_ARY[] =
{
    NC_("SC_OPCODE_CEIL", "Rounds a number up to the nearest multiple of significance."),
    NC_("SC_OPCODE_CEIL", "Number"),
    NC_("SC_OPCODE_CEIL", "The number to be rounded up."),
    NC_("SC_OPCODE_CEIL", "Significance"),
    NC_("SC_OPCODE_CEIL", "If given the number to whose multiple the value is rounded, else -1 or 1 depending on sign of Number."),
    NC_("SC_OPCODE_CEIL", "Mode"),
    NC_("SC_OPCODE_CEIL", "If given and not equal to zero then rounded up according to amount when a negative number and significance.")
};

// -=*# Resource for function CEILING.MATH #*=-
const char* SC_OPCODE_CEIL_MATH_ARY[] =
{
    NC_("SC_OPCODE_CEIL_MATH", "Rounds a number up to the nearest multiple of significance."),
    NC_("SC_OPCODE_CEIL_MATH", "Number"),
    NC_("SC_OPCODE_CEIL_MATH", "The number to be rounded up."),
    NC_("SC_OPCODE_CEIL_MATH", "Significance"),
    NC_("SC_OPCODE_CEIL_MATH", "If given the number to whose multiple the value is rounded, else 1."),
    NC_("SC_OPCODE_CEIL_MATH", "Mode"),
    NC_("SC_OPCODE_CEIL_MATH", "For negative numbers; if given and not equal to zero then rounds away from zero, else rounds towards zero.")
};

// -=*# Resource for function FLOOR #*=-
const char* SC_OPCODE_FLOOR_ARY[] =
{
    NC_("SC_OPCODE_FLOOR", "Rounds number down to the nearest multiple of significance."),
    NC_("SC_OPCODE_FLOOR", "Number"),
    NC_("SC_OPCODE_FLOOR", "The number to be rounded down."),
    NC_("SC_OPCODE_FLOOR", "Significance"),
    NC_("SC_OPCODE_FLOOR", "The number to whose multiple the value is to be rounded down."),
    NC_("SC_OPCODE_FLOOR", "Mode"),
    NC_("SC_OPCODE_FLOOR", "If given and not equal to zero then rounded towards zero with negative number and significance.")
};

// -=*# Resource for function FLOOR.XCL #*=-
const char* SC_OPCODE_FLOOR_MS_ARY[] =
{
    NC_("SC_OPCODE_FLOOR_MS", "Rounds number towards zero to the nearest multiple of absolute value of significance.\nThis function exists for interoperability with Microsoft Excel 2007 or older versions."),
    NC_("SC_OPCODE_FLOOR_MS", "Number"),
    NC_("SC_OPCODE_FLOOR_MS", "The number to be rounded down."),
    NC_("SC_OPCODE_FLOOR_MS", "Significance"),
    NC_("SC_OPCODE_FLOOR_MS", "The number to whose multiple the value is to be rounded down.")
};

// -=*# Resource for function FLOOR.MATH #*=-
const char* SC_OPCODE_FLOOR_MATH_ARY[] =
{
    NC_("SC_OPCODE_FLOOR_MATH", "Rounds number down to the nearest multiple of significance, regardless of sign of significance."),
    NC_("SC_OPCODE_FLOOR_MATH", "Number"),
    NC_("SC_OPCODE_FLOOR_MATH", "The number to be rounded down."),
    NC_("SC_OPCODE_FLOOR_MATH", "Significance"),
    NC_("SC_OPCODE_FLOOR_MATH", "The number to whose multiple the value is to be rounded down."),
    NC_("SC_OPCODE_FLOOR_MATH", "Mode"),
    NC_("SC_OPCODE_FLOOR_MATH", "For negative numbers; if given and not equal to or less than zero rounds towards zero.")
};

// -=*# Resource for function FLOOR.PRECISE #*=-
const char* SC_OPCODE_FLOOR_PRECISE_ARY[] =
{
    NC_("SC_OPCODE_FLOOR_PRECISE", "Rounds number down (towards -∞) to the nearest multiple of significance."),
    NC_("SC_OPCODE_FLOOR_PRECISE", "Number"),
    NC_("SC_OPCODE_FLOOR_PRECISE", "The number to be rounded down."),
    NC_("SC_OPCODE_FLOOR_PRECISE", "Significance"),
    NC_("SC_OPCODE_FLOOR_PRECISE", "The number to whose multiple the value is to be rounded down. Sign has no meaning.")
};

// -=*# Resource for function GCD #*=-
const char* SC_OPCODE_GCD_ARY[] =
{
    NC_("SC_OPCODE_GCD", "Greatest Common Divisor"),
    NC_("SC_OPCODE_GCD", "Integer "),
    NC_("SC_OPCODE_GCD", "Integer 1; integer 2,... are integers for which the greatest common divisor is to be calculated.")
};

// -=*# Resource for function LCM #*=-
const char* SC_OPCODE_LCM_ARY[] =
{
    NC_("SC_OPCODE_LCM", "Lowest common multiple"),
    NC_("SC_OPCODE_LCM", "Integer "),
    NC_("SC_OPCODE_LCM", "Integer 1; integer 2,... are integers whose smallest common multiple is to be calculated.")
};

// -=*# Resource for function TRANSPOSE #*=-
const char* SC_OPCODE_MAT_TRANS_ARY[] =
{
    NC_("SC_OPCODE_MAT_TRANS", "Array transposition. Exchanges the rows and columns of an array."),
    NC_("SC_OPCODE_MAT_TRANS", "Array"),
    NC_("SC_OPCODE_MAT_TRANS", "The array in which the rows and columns have been transposed.")
};

// -=*# Resource for function MMULT #*=-
const char* SC_OPCODE_MAT_MULT_ARY[] =
{
    NC_("SC_OPCODE_MAT_MULT", "Array multiplication. Returns the product of two arrays."),
    NC_("SC_OPCODE_MAT_MULT", "Array 1"),
    NC_("SC_OPCODE_MAT_MULT", "The first array for the array product."),
    NC_("SC_OPCODE_MAT_MULT", "Array 2"),
    NC_("SC_OPCODE_MAT_MULT", "The second array having the same number of rows as the first array has columns.")
};

// -=*# Resource for function MDETERM #*=-
const char* SC_OPCODE_MAT_DET_ARY[] =
{
    NC_("SC_OPCODE_MAT_DET", "Returns the array determinant."),
    NC_("SC_OPCODE_MAT_DET", "Array"),
    NC_("SC_OPCODE_MAT_DET", "The array for which the determinant is to be determined.")
};

// -=*# Resource for function MINVERSE #*=-
const char* SC_OPCODE_MAT_INV_ARY[] =
{
    NC_("SC_OPCODE_MAT_INV", "Returns the inverse of an array."),
    NC_("SC_OPCODE_MAT_INV", "Array"),
    NC_("SC_OPCODE_MAT_INV", "The array to be inverted.")
};

// -=*# Resource for function MUNIT #*=-
const char* SC_OPCODE_MATRIX_UNIT_ARY[] =
{
    NC_("SC_OPCODE_MATRIX_UNIT", "Returns the unitary square array of a certain size."),
    NC_("SC_OPCODE_MATRIX_UNIT", "Dimensions"),
    NC_("SC_OPCODE_MATRIX_UNIT", "The size of the unitary array.")
};

// -=*# Resource for function SUMPRODUCT #*=-
const char* SC_OPCODE_SUM_PRODUCT_ARY[] =
{
    NC_("SC_OPCODE_SUM_PRODUCT", "(Inner products) Returns the sum of the products of array arguments."),
    NC_("SC_OPCODE_SUM_PRODUCT", "Array "),
    NC_("SC_OPCODE_SUM_PRODUCT", "Array 1, array 2, ... are arrays whose arguments are to be multiplied.")
};

// -=*# Resource for function SUMX2MY2 #*=-
const char* SC_OPCODE_SUM_X2MY2_ARY[] =
{
    NC_("SC_OPCODE_SUM_X2MY2", "Returns the sum of the difference of squares of two arrays."),
    NC_("SC_OPCODE_SUM_X2MY2", "Array X"),
    NC_("SC_OPCODE_SUM_X2MY2", "First array where the square of the arguments are totalled."),
    NC_("SC_OPCODE_SUM_X2MY2", "Array Y"),
    NC_("SC_OPCODE_SUM_X2MY2", "Second array where the square of the arguments is to be subtracted.")
};

// -=*# Resource for function SUMX2PY2 #*=-
const char* SC_OPCODE_SUM_X2DY2_ARY[] =
{
    NC_("SC_OPCODE_SUM_X2DY2", "Returns the total of the square sum of two arrays."),
    NC_("SC_OPCODE_SUM_X2DY2", "Array X"),
    NC_("SC_OPCODE_SUM_X2DY2", "First array where the square of the arguments are totalled."),
    NC_("SC_OPCODE_SUM_X2DY2", "Array Y"),
    NC_("SC_OPCODE_SUM_X2DY2", "Second array where the square of the arguments is to be totalled.")
};

// -=*# Resource for function SUMXMY2 #*=-
const char* SC_OPCODE_SUM_XMY2_ARY[] =
{
    NC_("SC_OPCODE_SUM_XMY2", "Returns the sum of squares of differences of two arrays."),
    NC_("SC_OPCODE_SUM_XMY2", "Array X"),
    NC_("SC_OPCODE_SUM_XMY2", "First array for forming argument differences."),
    NC_("SC_OPCODE_SUM_XMY2", "Array Y"),
    NC_("SC_OPCODE_SUM_XMY2", "Second array for forming the argument differences.")
};

// -=*# Resource for function FREQUENCY #*=-
const char* SC_OPCODE_FREQUENCY_ARY[] =
{
    NC_("SC_OPCODE_FREQUENCY", "Returns a frequency distribution as a vertical array."),
    NC_("SC_OPCODE_FREQUENCY", "Data"),
    NC_("SC_OPCODE_FREQUENCY", "The array of the data."),
    NC_("SC_OPCODE_FREQUENCY", "Classes"),
    NC_("SC_OPCODE_FREQUENCY", "The array for forming classes.")
};

// -=*# Resource for function LINEST #*=-
const char* SC_OPCODE_LINEST_ARY[] =
{
    NC_("SC_OPCODE_LINEST", "Calculates parameters of the linear regression as an array."),
    NC_("SC_OPCODE_LINEST", "Data Y"),
    NC_("SC_OPCODE_LINEST", "The Y data array."),
    NC_("SC_OPCODE_LINEST", "Data X"),
    NC_("SC_OPCODE_LINEST", "The X data array."),
    NC_("SC_OPCODE_LINEST", "Linear type"),
    NC_("SC_OPCODE_LINEST", "If type = 0 the linears will be calculated through the zero point, or else moved linears."),
    NC_("SC_OPCODE_LINEST", "Stats"),
    NC_("SC_OPCODE_LINEST", "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well.")
};

// -=*# Resource for function LOGEST #*=-
const char* SC_OPCODE_LOGEST_ARY[] =
{
    NC_("SC_OPCODE_LOGEST", "Calculates the parameters of the exponential regression curve as an array."),
    NC_("SC_OPCODE_LOGEST", "Data Y"),
    NC_("SC_OPCODE_LOGEST", "The Y data array."),
    NC_("SC_OPCODE_LOGEST", "Data X"),
    NC_("SC_OPCODE_LOGEST", "The X data array."),
    NC_("SC_OPCODE_LOGEST", "Function type"),
    NC_("SC_OPCODE_LOGEST", "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x."),
    NC_("SC_OPCODE_LOGEST", "Stats"),
    NC_("SC_OPCODE_LOGEST", "If parameter = 0 then only the regression coefficient will be calculated, otherwise other values as well.")
};

// -=*# Resource for function TREND #*=-
const char* SC_OPCODE_TREND_ARY[] =
{
    NC_("SC_OPCODE_TREND", "Calculates points along a regression line."),
    NC_("SC_OPCODE_TREND", "Data Y"),
    NC_("SC_OPCODE_TREND", "The Y data array."),
    NC_("SC_OPCODE_TREND", "Data X"),
    NC_("SC_OPCODE_TREND", "The X data array as the basis for the regression."),
    NC_("SC_OPCODE_TREND", "New data X"),
    NC_("SC_OPCODE_TREND", "The array of X data for recalculating the values."),
    NC_("SC_OPCODE_TREND", "Linear type"),
    NC_("SC_OPCODE_TREND", "If type = 0 the linears will be calculated through the zero point, or else moved linears.")
};

// -=*# Resource for function GROWTH #*=-
const char* SC_OPCODE_GROWTH_ARY[] =
{
    NC_("SC_OPCODE_GROWTH", "Calculates points on the exponential regression function."),
    NC_("SC_OPCODE_GROWTH", "Data Y"),
    NC_("SC_OPCODE_GROWTH", "The Y data array."),
    NC_("SC_OPCODE_GROWTH", "Data X"),
    NC_("SC_OPCODE_GROWTH", "The X data array as the basis for the regression."),
    NC_("SC_OPCODE_GROWTH", "New data X"),
    NC_("SC_OPCODE_GROWTH", "The array of X data for recalculating the values."),
    NC_("SC_OPCODE_GROWTH", "Function type"),
    NC_("SC_OPCODE_GROWTH", "If type = 0 then the functions will be calculated in the form of y=m^x, or also functions y=b*m^x.")
};

// -=*# Resource for function COUNT #*=-
const char* SC_OPCODE_COUNT_ARY[] =
{
    NC_("SC_OPCODE_COUNT", "Counts how many numbers are in the list of arguments."),
    NC_("SC_OPCODE_COUNT", "Value "),
    NC_("SC_OPCODE_COUNT", "Value 1, value 2, ... are arguments containing different data types but where only numbers are counted.")
};

// -=*# Resource for function COUNTA #*=-
const char* SC_OPCODE_COUNT_2_ARY[] =
{
    NC_("SC_OPCODE_COUNT_2", "Counts how many values are in the list of arguments."),
    NC_("SC_OPCODE_COUNT_2", "Value "),
    NC_("SC_OPCODE_COUNT_2", "Value 1, value 2, ... are arguments representing the values to be counted.")
};

// -=*# Resource for function MAX #*=-
const char* SC_OPCODE_MAX_ARY[] =
{
    NC_("SC_OPCODE_MAX", "Returns the maximum value in a list of arguments."),
    NC_("SC_OPCODE_MAX", "Number "),
    NC_("SC_OPCODE_MAX", "Number 1, number 2, ... are numerical arguments for which the largest number is to be determined.")
};

// -=*# Resource for function MAXA #*=-
const char* SC_OPCODE_MAX_A_ARY[] =
{
    NC_("SC_OPCODE_MAX_A", "Returns the maximum value in a list of arguments. Text is evaluated as Zero."),
    NC_("SC_OPCODE_MAX_A", "Value "),
    NC_("SC_OPCODE_MAX_A", "Value 1, value 2,    are arguments whose largest value is to be determined.")
};

// -=*# Resource for function MIN #*=-
const char* SC_OPCODE_MIN_ARY[] =
{
    NC_("SC_OPCODE_MIN", "Returns the minimum value in a list of arguments."),
    NC_("SC_OPCODE_MIN", "Number "),
    NC_("SC_OPCODE_MIN", "Number 1, number 2, ... are numerical arguments for which the smallest number is to be determined.")
};

// -=*# Resource for function MINA #*=-
const char* SC_OPCODE_MIN_A_ARY[] =
{
    NC_("SC_OPCODE_MIN_A", "Returns the smallest value in a list of arguments. Text is evaluated as zero."),
    NC_("SC_OPCODE_MIN_A", "Value "),
    NC_("SC_OPCODE_MIN_A", "Value 1; value 2;... are arguments whose smallest number is to be determined.")
};

// -=*# Resource for function VAR #*=-
const char* SC_OPCODE_VAR_ARY[] =
{
    NC_("SC_OPCODE_VAR", "Calculates the variance based on a sample."),
    NC_("SC_OPCODE_VAR", "Number "),
    NC_("SC_OPCODE_VAR", "Number 1, number 2, ... are numerical arguments which portray a sample of a population.")
};

// -=*# Resource for function VAR.S #*=-
const char* SC_OPCODE_VAR_S_ARY[] =
{
    NC_("SC_OPCODE_VAR_S", "Calculates the variance based on a sample."),
    NC_("SC_OPCODE_VAR_S", "Number "),
    NC_("SC_OPCODE_VAR_S", "Number 1, number 2, ... are numerical arguments which portray a sample of a population.")
};

// -=*# Resource for function VARA #*=-
const char* SC_OPCODE_VAR_A_ARY[] =
{
    NC_("SC_OPCODE_VAR_A", "Returns the variance based on a sample. Text is evaluated as zero."),
    NC_("SC_OPCODE_VAR_A", "Value "),
    NC_("SC_OPCODE_VAR_A", "Value 1; value 2; ... are arguments representing a sample taken from a basic total population.")
};

// -=*# Resource for function VARP #*=-
const char* SC_OPCODE_VAR_P_ARY[] =
{
    NC_("SC_OPCODE_VAR_P", "Calculates variance based on the entire population."),
    NC_("SC_OPCODE_VAR_P", "Number "),
    NC_("SC_OPCODE_VAR_P", "Number 1, number 2, ... are numerical arguments which represent a population.")
};

// -=*# Resource for function VAR.P #*=-
const char* SC_OPCODE_VAR_P_MS_ARY[] =
{
    NC_("SC_OPCODE_VAR_P_MS", "Calculates variance based on the entire population."),
    NC_("SC_OPCODE_VAR_P_MS", "Number "),
    NC_("SC_OPCODE_VAR_P_MS", "Number 1, number 2, ... are numerical arguments which represent a population.")
};

// -=*# Resource for function VARPA #*=-
const char* SC_OPCODE_VAR_P_A_ARY[] =
{
    NC_("SC_OPCODE_VAR_P_A", "Returns the variance based on the entire population. Text is evaluated as zero."),
    NC_("SC_OPCODE_VAR_P_A", "Value "),
    NC_("SC_OPCODE_VAR_P_A", "Value 1; value 2;... are arguments representing a population.")
};

// -=*# Resource for function STDEV #*=-
const char* SC_OPCODE_ST_DEV_ARY[] =
{
    NC_("SC_OPCODE_ST_DEV", "Calculates the standard deviation based on a sample."),
    NC_("SC_OPCODE_ST_DEV", "Number "),
    NC_("SC_OPCODE_ST_DEV", "Number 1, number 2, ... are numerical arguments which portray a sample of a population.")
};

// -=*# Resource for function STDEV.S #*=-
const char* SC_OPCODE_ST_DEV_S_ARY[] =
{
    NC_("SC_OPCODE_ST_DEV_S", "Calculates the standard deviation based on a sample."),
    NC_("SC_OPCODE_ST_DEV_S", "Number "),
    NC_("SC_OPCODE_ST_DEV_S", "Number 1, number 2, ... are numerical arguments which portray a sample of a population.")
};

// -=*# Resource for function STDEVA #*=-
const char* SC_OPCODE_ST_DEV_A_ARY[] =
{
    NC_("SC_OPCODE_ST_DEV_A", "Returns the standard deviation based on a sample. Text is evaluated as zero."),
    NC_("SC_OPCODE_ST_DEV_A", "Value "),
    NC_("SC_OPCODE_ST_DEV_A", "Value 1; value 2; ... are arguments representing a sample taken from a basic total population.")
};

// -=*# Resource for function STDEVP #*=-
const char* SC_OPCODE_ST_DEV_P_ARY[] =
{
    NC_("SC_OPCODE_ST_DEV_P", "Calculates the standard deviation based on the entire population."),
    NC_("SC_OPCODE_ST_DEV_P", "Number "),
    NC_("SC_OPCODE_ST_DEV_P", "Number 1, number 2, ... are numerical arguments which portray a population.")
};

// -=*# Resource for function STDEV.P #*=-
const char* SC_OPCODE_ST_DEV_P_MS_ARY[] =
{
    NC_("SC_OPCODE_ST_DEV_P_MS", "Calculates the standard deviation based on the entire population."),
    NC_("SC_OPCODE_ST_DEV_P_MS", "Number "),
    NC_("SC_OPCODE_ST_DEV_P_MS", "Number 1, number 2, ... are numerical arguments which portray a population.")
};

// -=*# Resource for function STDEVPA #*=-
const char* SC_OPCODE_ST_DEV_P_A_ARY[] =
{
    NC_("SC_OPCODE_ST_DEV_P_A", "Returns the standard deviation based on the entire population. Text is evaluated as zero."),
    NC_("SC_OPCODE_ST_DEV_P_A", "Value "),
    NC_("SC_OPCODE_ST_DEV_P_A", "Value 1; value 2;... are arguments corresponding to a population.")
};

// -=*# Resource for function AVERAGE #*=-
const char* SC_OPCODE_AVERAGE_ARY[] =
{
    NC_("SC_OPCODE_AVERAGE", "Returns the average of a sample."),
    NC_("SC_OPCODE_AVERAGE", "Number "),
    NC_("SC_OPCODE_AVERAGE", "Number 1, number 2;...are numeric arguments representing a population sample.")
};

// -=*# Resource for function AVERAGEA #*=-
const char* SC_OPCODE_AVERAGE_A_ARY[] =
{
    NC_("SC_OPCODE_AVERAGE_A", "Returns the average value for a sample. Text is evaluated as zero."),
    NC_("SC_OPCODE_AVERAGE_A", "Value "),
    NC_("SC_OPCODE_AVERAGE_A", "Value 1; value 2; ... are arguments representing a sample taken from a basic total population.")
};

// -=*# Resource for function DEVSQ #*=-
const char* SC_OPCODE_DEV_SQ_ARY[] =
{
    NC_("SC_OPCODE_DEV_SQ", "Returns the sum of squares of deviations from the sample mean value"),
    NC_("SC_OPCODE_DEV_SQ", "Number "),
    NC_("SC_OPCODE_DEV_SQ", "Number 1, number 2, ... are numerical arguments which portray a sample.")
};

// -=*# Resource for function AVEDEV #*=-
const char* SC_OPCODE_AVE_DEV_ARY[] =
{
    NC_("SC_OPCODE_AVE_DEV", "Returns the average of the absolute deviations of a sample from the mean."),
    NC_("SC_OPCODE_AVE_DEV", "Number "),
    NC_("SC_OPCODE_AVE_DEV", "Number 1, number 2;...are numerical arguments representing a sample.")
};

// -=*# Resource for function SKEW #*=-
const char* SC_OPCODE_SKEW_ARY[] =
{
    NC_("SC_OPCODE_SKEW", "Returns the skewness of a distribution."),
    NC_("SC_OPCODE_SKEW", "Number "),
    NC_("SC_OPCODE_SKEW", "Number 1, number 2, ... are numerical arguments portraying a sample of the distribution.")
};

// -=*# Resource for function SKEWP #*=-
const char* SC_OPCODE_SKEWP_ARY[] =
{
    NC_("SC_OPCODE_SKEWP", "Returns the skewness of a distribution using the population of a random variable."),
    NC_("SC_OPCODE_SKEWP", "Number "),
    NC_("SC_OPCODE_SKEWP", "Number 1, number 2, ... are numerical arguments portraying the population.")
};

// -=*# Resource for function KURT #*=-
const char* SC_OPCODE_KURT_ARY[] =
{
    NC_("SC_OPCODE_KURT", "Returns the kurtosis of a distribution."),
    NC_("SC_OPCODE_KURT", "Number "),
    NC_("SC_OPCODE_KURT", "Number 1, number 2, ... are numerical arguments, representing a sample of the distribution.")
};

// -=*# Resource for function GEOMEAN #*=-
const char* SC_OPCODE_GEO_MEAN_ARY[] =
{
    NC_("SC_OPCODE_GEO_MEAN", "Returns the geometric mean of a sample."),
    NC_("SC_OPCODE_GEO_MEAN", "Number "),
    NC_("SC_OPCODE_GEO_MEAN", "Number 1, number 2, ... are numerical arguments which portray a sample.")
};

// -=*# Resource for function HARMEAN #*=-
const char* SC_OPCODE_HAR_MEAN_ARY[] =
{
    NC_("SC_OPCODE_HAR_MEAN", "Returns the harmonic mean of a sample."),
    NC_("SC_OPCODE_HAR_MEAN", "Number "),
    NC_("SC_OPCODE_HAR_MEAN", "Number 1, number 2, ... are numerical arguments which portray a sample.")
};

// -=*# Resource for function MODE #*=-
const char* SC_OPCODE_MODAL_VALUE_ARY[] =
{
    NC_("SC_OPCODE_MODAL_VALUE", "Returns the most common value in a sample."),
    NC_("SC_OPCODE_MODAL_VALUE", "Number "),
    NC_("SC_OPCODE_MODAL_VALUE", "Number 1, number 2, ... are numerical arguments which portray a sample.")
};

// -=*# Resource for function MODE.SNGL #*=-
const char* SC_OPCODE_MODAL_VALUE_MS_ARY[] =
{
    NC_("SC_OPCODE_MODAL_VALUE_MS", "Returns the most common value in a sample."),
    NC_("SC_OPCODE_MODAL_VALUE_MS", "Number "),
    NC_("SC_OPCODE_MODAL_VALUE_MS", "Number 1, number 2, ... are numerical arguments which portray a sample.")
};

// -=*# Resource for function MODE.MULT #*=-
const char* SC_OPCODE_MODAL_VALUE_MULTI_ARY[] =
{
    NC_("SC_OPCODE_MODAL_VALUE_MULTI", "Returns the most common value in a sample."),
    NC_("SC_OPCODE_MODAL_VALUE_MULTI", "Number "),
    NC_("SC_OPCODE_MODAL_VALUE_MULTI", "Number 1, number 2, ... are 1 to 254 numerical arguments which portray a sample.")
};

// -=*# Resource for function MEDIAN #*=-
const char* SC_OPCODE_MEDIAN_ARY[] =
{
    NC_("SC_OPCODE_MEDIAN", "Returns the median of a given sample."),
    NC_("SC_OPCODE_MEDIAN", "Number "),
    NC_("SC_OPCODE_MEDIAN", "Number 1, number 2, ... are numerical arguments which portray a sample.")
};

// -=*# Resource for function PERCENTILE #*=-
const char* SC_OPCODE_PERCENTILE_ARY[] =
{
    NC_("SC_OPCODE_PERCENTILE", "Returns the alpha quantile of a sample."),
    NC_("SC_OPCODE_PERCENTILE", "Data"),
    NC_("SC_OPCODE_PERCENTILE", "The array of the data in the sample."),
    NC_("SC_OPCODE_PERCENTILE", "Alpha"),
    NC_("SC_OPCODE_PERCENTILE", "The percentage rate of the quantile between 0 and 1.")
};

// -=*# Resource for function PERCENTILE.EXC #*=-
const char* SC_OPCODE_PERCENTILE_EXC_ARY[] =
{
    NC_("SC_OPCODE_PERCENTILE_EXC", "Returns the alpha percentile of a sample."),
    NC_("SC_OPCODE_PERCENTILE_EXC", "Data"),
    NC_("SC_OPCODE_PERCENTILE_EXC", "The array of the data in the sample."),
    NC_("SC_OPCODE_PERCENTILE_EXC", "Alpha"),
    NC_("SC_OPCODE_PERCENTILE_EXC", "The percentile value, range 0...1, exclusive.")
};

// -=*# Resource for function PERCENTILE.INC #*=-
const char* SC_OPCODE_PERCENTILE_INC_ARY[] =
{
    NC_("SC_OPCODE_PERCENTILE_INC", "Returns the alpha percentile of a sample."),
    NC_("SC_OPCODE_PERCENTILE_INC", "Data"),
    NC_("SC_OPCODE_PERCENTILE_INC", "The array of the data in the sample."),
    NC_("SC_OPCODE_PERCENTILE_INC", "Alpha"),
    NC_("SC_OPCODE_PERCENTILE_INC", "The percentile value, range 0...1, inclusive.")
};

// -=*# Resource for function QUARTILE #*=-
const char* SC_OPCODE_QUARTILE_ARY[] =
{
    NC_("SC_OPCODE_QUARTILE", "Returns the quartile of a sample."),
    NC_("SC_OPCODE_QUARTILE", "Data"),
    NC_("SC_OPCODE_QUARTILE", "The array of the data in the sample."),
    NC_("SC_OPCODE_QUARTILE", "Type"),
    NC_("SC_OPCODE_QUARTILE", "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX).")
};

// -=*# Resource for function QUARTILE.EXC #*=-
const char* SC_OPCODE_QUARTILE_EXC_ARY[] =
{
    NC_("SC_OPCODE_QUARTILE_EXC", "Returns the quartile of a sample."),
    NC_("SC_OPCODE_QUARTILE_EXC", "Data"),
    NC_("SC_OPCODE_QUARTILE_EXC", "The array of the data in the sample."),
    NC_("SC_OPCODE_QUARTILE_EXC", "Type"),
    NC_("SC_OPCODE_QUARTILE_EXC", "The type of the quartile (1 = 25%, 2 = 50%, 3 = 75%).")
};

// -=*# Resource for function QUARTILE.INC #*=-
const char* SC_OPCODE_QUARTILE_INC_ARY[] =
{
    NC_("SC_OPCODE_QUARTILE_INC", "Returns the quartile of a sample."),
    NC_("SC_OPCODE_QUARTILE_INC", "Data"),
    NC_("SC_OPCODE_QUARTILE_INC", "The array of the data in the sample."),
    NC_("SC_OPCODE_QUARTILE_INC", "Type"),
    NC_("SC_OPCODE_QUARTILE_INC", "The type of the quartile (0 = MIN, 1 = 25%, 2 = 50%, 3 = 75%, 4 = MAX).")
};

// -=*# Resource for function LARGE #*=-
const char* SC_OPCODE_LARGE_ARY[] =
{
    NC_("SC_OPCODE_LARGE", "Returns the k-th largest value of a sample."),
    NC_("SC_OPCODE_LARGE", "Data"),
    NC_("SC_OPCODE_LARGE", "The array of the data in the sample."),
    NC_("SC_OPCODE_LARGE", "Rank c"),
    NC_("SC_OPCODE_LARGE", "The ranking of the value.")
};

// -=*# Resource for function SMALL #*=-
const char* SC_OPCODE_SMALL_ARY[] =
{
    NC_("SC_OPCODE_SMALL", "Returns the k-th smallest value of a sample."),
    NC_("SC_OPCODE_SMALL", "Data"),
    NC_("SC_OPCODE_SMALL", "The array of the data in the sample."),
    NC_("SC_OPCODE_SMALL", "Rank c"),
    NC_("SC_OPCODE_SMALL", "The ranking of the value.")
};

// -=*# Resource for function PERCENTRANK #*=-
const char* SC_OPCODE_PERCENT_RANK_ARY[] =
{
    NC_("SC_OPCODE_PERCENT_RANK", "Returns the percentage rank of a value in a sample."),
    NC_("SC_OPCODE_PERCENT_RANK", "Data"),
    NC_("SC_OPCODE_PERCENT_RANK", "The array of the data in the sample."),
    NC_("SC_OPCODE_PERCENT_RANK", "Value"),
    NC_("SC_OPCODE_PERCENT_RANK", "The value for which percentage ranking is to be determined."),
    NC_("SC_OPCODE_PERCENT_RANK", "Significance"),
    NC_("SC_OPCODE_PERCENT_RANK", "The number of significant digits for the returned percentage: if omitted, a value of 3 is used.")
};

// -=*# Resource for function PERCENTRANK.EXC #*=-
const char* SC_OPCODE_PERCENT_RANK_EXC_ARY[] =
{
    NC_("SC_OPCODE_PERCENT_RANK_EXC", "Returns the percentage rank (0..1, exclusive) of a value in a sample."),
    NC_("SC_OPCODE_PERCENT_RANK_EXC", "Data"),
    NC_("SC_OPCODE_PERCENT_RANK_EXC", "The array of the data in the sample."),
    NC_("SC_OPCODE_PERCENT_RANK_EXC", "Value"),
    NC_("SC_OPCODE_PERCENT_RANK_EXC", "The value for which percentage ranking is to be determined."),
    NC_("SC_OPCODE_PERCENT_RANK_EXC", "Significance"),
    NC_("SC_OPCODE_PERCENT_RANK_EXC", "The number of significant digits for the returned percentage: if omitted, a value of 3 is used.")
};

// -=*# Resource for function PERCENTRANK.INC #*=-
const char* SC_OPCODE_PERCENT_RANK_INC_ARY[] =
{
    NC_("SC_OPCODE_PERCENT_RANK_INC", "Returns the percentage rank (0..1, inclusive) of a value in a sample."),
    NC_("SC_OPCODE_PERCENT_RANK_INC", "Data"),
    NC_("SC_OPCODE_PERCENT_RANK_INC", "The array of the data in the sample."),
    NC_("SC_OPCODE_PERCENT_RANK_INC", "Value"),
    NC_("SC_OPCODE_PERCENT_RANK_INC", "The value for which percentage ranking is to be determined."),
    NC_("SC_OPCODE_PERCENT_RANK_INC", "Significance"),
    NC_("SC_OPCODE_PERCENT_RANK_INC", "The number of significant digits for the returned percentage: if omitted, a value of 3 is used.")
};

// -=*# Resource for function RANK #*=-
const char* SC_OPCODE_RANK_ARY[] =
{
    NC_("SC_OPCODE_RANK", "Returns the ranking of a value in a sample."),
    NC_("SC_OPCODE_RANK", "Value"),
    NC_("SC_OPCODE_RANK", "The value for which the rank is to be determined."),
    NC_("SC_OPCODE_RANK", "Data"),
    NC_("SC_OPCODE_RANK", "The array of the data in the sample."),
    NC_("SC_OPCODE_RANK", "Type"),
    NC_("SC_OPCODE_RANK", "Sequence order: 0 or omitted means descending, any other value than 0 means ascending.")
};

// -=*# Resource for function RANK.EQ #*=-
const char* SC_OPCODE_RANK_EQ_ARY[] =
{
    NC_("SC_OPCODE_RANK_EQ", "Returns the ranking of a value in a sample; if more than one value has the same rank, the top rank of that set of values is returned."),
    NC_("SC_OPCODE_RANK_EQ", "Value"),
    NC_("SC_OPCODE_RANK_EQ", "The value for which the rank is to be determined."),
    NC_("SC_OPCODE_RANK_EQ", "Data"),
    NC_("SC_OPCODE_RANK_EQ", "The array of the data in the sample."),
    NC_("SC_OPCODE_RANK_EQ", "Type"),
    NC_("SC_OPCODE_RANK_EQ", "Sequence order: 0 or omitted means descending, any other value than 0 means ascending.")
};

// -=*# Resource for function RANK.AVG #*=-
const char* SC_OPCODE_RANK_AVG_ARY[] =
{
    NC_("SC_OPCODE_RANK_AVG", "Returns the ranking of a value in a sample; if more than one value has the same rank, the average rank is returned."),
    NC_("SC_OPCODE_RANK_AVG", "Value"),
    NC_("SC_OPCODE_RANK_AVG", "The value for which the rank is to be determined."),
    NC_("SC_OPCODE_RANK_AVG", "Data"),
    NC_("SC_OPCODE_RANK_AVG", "The array of the data in the sample."),
    NC_("SC_OPCODE_RANK_AVG", "Type"),
    NC_("SC_OPCODE_RANK_AVG", "Sequence order: 0 or omitted means descending, any other value than 0 means ascending.")
};

// -=*# Resource for function TRIMMEAN #*=-
const char* SC_OPCODE_TRIM_MEAN_ARY[] =
{
    NC_("SC_OPCODE_TRIM_MEAN", "Returns the mean of a sample without including the marginal values."),
    NC_("SC_OPCODE_TRIM_MEAN", "Data"),
    NC_("SC_OPCODE_TRIM_MEAN", "The array of the data in the sample."),
    NC_("SC_OPCODE_TRIM_MEAN", "Alpha"),
    NC_("SC_OPCODE_TRIM_MEAN", "The percentage of marginal data that is not to be taken into account.")
};

// -=*# Resource for function PROB #*=-
const char* SC_OPCODE_PROB_ARY[] =
{
    NC_("SC_OPCODE_PROB", "Returns the discrete probability of an interval."),
    NC_("SC_OPCODE_PROB", "Data"),
    NC_("SC_OPCODE_PROB", "The sample data array."),
    NC_("SC_OPCODE_PROB", "Probability"),
    NC_("SC_OPCODE_PROB", "The array of the associated probabilities."),
    NC_("SC_OPCODE_PROB", "Start"),
    NC_("SC_OPCODE_PROB", "The start of the value interval whose probabilities is to be totalled."),
    NC_("SC_OPCODE_PROB", "End"),
    NC_("SC_OPCODE_PROB", "The end of the value interval where the probabilities are to be totalled.")
};

// -=*# Resource for function B #*=-
const char* SC_OPCODE_B_ARY[] =
{
    NC_("SC_OPCODE_B", "Returns the probability of a trial result using binomial distribution."),
    NC_("SC_OPCODE_B", "Trials"),
    NC_("SC_OPCODE_B", "The number of trials."),
    NC_("SC_OPCODE_B", "SP"),
    NC_("SC_OPCODE_B", "The individual probability of a trial result."),
    NC_("SC_OPCODE_B", "T 1"),
    NC_("SC_OPCODE_B", "Lower limit for the number of trials."),
    NC_("SC_OPCODE_B", "T 2"),
    NC_("SC_OPCODE_B", "Upper limit for the number of trials.")
};

// -=*# Resource for function PHI #*=-
const char* SC_OPCODE_PHI_ARY[] =
{
    NC_("SC_OPCODE_PHI", "Values of the distribution function for a standard normal distribution."),
    NC_("SC_OPCODE_PHI", "Number"),
    NC_("SC_OPCODE_PHI", "The value for which the standard normal distribution is to be calculated.")
};

// -=*# Resource for function GAUSS #*=-
const char* SC_OPCODE_GAUSS_ARY[] =
{
    NC_("SC_OPCODE_GAUSS", "Returns the integral values of the standard normal cumulative distribution."),
    NC_("SC_OPCODE_GAUSS", "Number"),
    NC_("SC_OPCODE_GAUSS", "The value for which the integral value of the standard normal distribution is to be calculated.")
};

// -=*# Resource for function FISHER #*=-
const char* SC_OPCODE_FISHER_ARY[] =
{
    NC_("SC_OPCODE_FISHER", "Returns the Fisher transformation."),
    NC_("SC_OPCODE_FISHER", "Number"),
    NC_("SC_OPCODE_FISHER", "The value to be transformed (-1 < VALUE < 1).")
};

// -=*# Resource for function FISHERINV #*=-
const char* SC_OPCODE_FISHER_INV_ARY[] =
{
    NC_("SC_OPCODE_FISHER_INV", "Returns the inverse of the Fisher transformation."),
    NC_("SC_OPCODE_FISHER_INV", "Number"),
    NC_("SC_OPCODE_FISHER_INV", "The value that is to be transformed back.")
};

// -=*# Resource for function BINOMDIST #*=-
const char* SC_OPCODE_BINOM_DIST_ARY[] =
{
    NC_("SC_OPCODE_BINOM_DIST", "Values of the binomial distribution."),
    NC_("SC_OPCODE_BINOM_DIST", "X"),
    NC_("SC_OPCODE_BINOM_DIST", "The number of successes in a series of trials."),
    NC_("SC_OPCODE_BINOM_DIST", "Trials"),
    NC_("SC_OPCODE_BINOM_DIST", "The total number of trials."),
    NC_("SC_OPCODE_BINOM_DIST", "SP"),
    NC_("SC_OPCODE_BINOM_DIST", "The success probability of a trial."),
    NC_("SC_OPCODE_BINOM_DIST", "C"),
    NC_("SC_OPCODE_BINOM_DIST", "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability.")
};

// -=*# Resource for function BINOM.DIST #*=-
const char* SC_OPCODE_BINOM_DIST_MS_ARY[] =
{
    NC_("SC_OPCODE_BINOM_DIST_MS", "Values of the binomial distribution."),
    NC_("SC_OPCODE_BINOM_DIST_MS", "X"),
    NC_("SC_OPCODE_BINOM_DIST_MS", "The number of successes in a series of trials."),
    NC_("SC_OPCODE_BINOM_DIST_MS", "Trials"),
    NC_("SC_OPCODE_BINOM_DIST_MS", "The total number of trials."),
    NC_("SC_OPCODE_BINOM_DIST_MS", "SP"),
    NC_("SC_OPCODE_BINOM_DIST_MS", "The success probability of a trial."),
    NC_("SC_OPCODE_BINOM_DIST_MS", "C"),
    NC_("SC_OPCODE_BINOM_DIST_MS", "Cumulated. C=0 calculates the individual probability, C=1 the cumulated probability.")
};

// -=*# Resource for function NEGBINOMDIST #*=-
const char* SC_OPCODE_NEG_BINOM_VERT_ARY[] =
{
    NC_("SC_OPCODE_NEG_BINOM_VERT", "Values of the negative binomial distribution."),
    NC_("SC_OPCODE_NEG_BINOM_VERT", "X"),
    NC_("SC_OPCODE_NEG_BINOM_VERT", "The number of failures in the trial range."),
    NC_("SC_OPCODE_NEG_BINOM_VERT", "R"),
    NC_("SC_OPCODE_NEG_BINOM_VERT", "The number of successes in the trial sequence."),
    NC_("SC_OPCODE_NEG_BINOM_VERT", "SP"),
    NC_("SC_OPCODE_NEG_BINOM_VERT", "The success probability of a trial.")
};

// -=*# Resource for function NEGBINOM.DIST #*=-
const char* SC_OPCODE_NEG_BINOM_DIST_MS_ARY[] =
{
    NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "Values of the negative binomial distribution."),
    NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "X"),
    NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "The number of failures in the trial range."),
    NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "R"),
    NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "The number of successes in the trial sequence."),
    NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "SP"),
    NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "The success probability of a trial."),
    NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "Cumulative"),
    NC_("SC_OPCODE_NEG_BINOM_DIST_MS", "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.")
};

// -=*# Resource for function CRITBINOM #*=-
const char* SC_OPCODE_CRIT_BINOM_ARY[] =
{
    NC_("SC_OPCODE_CRIT_BINOM", "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value."),
    NC_("SC_OPCODE_CRIT_BINOM", "Trials"),
    NC_("SC_OPCODE_CRIT_BINOM", "The total number of trials."),
    NC_("SC_OPCODE_CRIT_BINOM", "SP"),
    NC_("SC_OPCODE_CRIT_BINOM", "The success probability of a trial."),
    NC_("SC_OPCODE_CRIT_BINOM", "Alpha"),
    NC_("SC_OPCODE_CRIT_BINOM", "The border probability that is attained or exceeded.")
};

// -=*# Resource for function BINOM.INV #*=-
const char* SC_OPCODE_BINOM_INV_ARY[] =
{
    NC_("SC_OPCODE_BINOM_INV", "Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value."),
    NC_("SC_OPCODE_BINOM_INV", "Trials"),
    NC_("SC_OPCODE_BINOM_INV", "The total number of trials."),
    NC_("SC_OPCODE_BINOM_INV", "SP"),
    NC_("SC_OPCODE_BINOM_INV", "The success probability of a trial."),
    NC_("SC_OPCODE_BINOM_INV", "Alpha"),
    NC_("SC_OPCODE_BINOM_INV", "The border probability that is attained or exceeded.")
};

// -=*# Resource for function POISSON #*=-
const char* SC_OPCODE_POISSON_DIST_ARY[] =
{
    NC_("SC_OPCODE_POISSON_DIST", "Returns the Poisson distribution."),
    NC_("SC_OPCODE_POISSON_DIST", "Number"),
    NC_("SC_OPCODE_POISSON_DIST", "The value for which the Poisson distribution is to be calculated."),
    NC_("SC_OPCODE_POISSON_DIST", "Mean"),
    NC_("SC_OPCODE_POISSON_DIST", "Mean. The mean value of the Poisson distribution."),
    NC_("SC_OPCODE_POISSON_DIST", "Cumulative"),
    NC_("SC_OPCODE_POISSON_DIST", "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.")
};

// -=*# Resource for function POISSON.DIST #*=-
const char* SC_OPCODE_POISSON_DIST_MS_ARY[] =
{
    NC_("SC_OPCODE_POISSON_DIST_MS", "Returns the Poisson distribution."),
    NC_("SC_OPCODE_POISSON_DIST_MS", "Number"),
    NC_("SC_OPCODE_POISSON_DIST_MS", "The value for which the Poisson distribution is to be calculated."),
    NC_("SC_OPCODE_POISSON_DIST_MS", "Mean"),
    NC_("SC_OPCODE_POISSON_DIST_MS", "Mean. The mean value of the Poisson distribution."),
    NC_("SC_OPCODE_POISSON_DIST_MS", "Cumulative"),
    NC_("SC_OPCODE_POISSON_DIST_MS", "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.")
};

// -=*# Resource for function NORMDIST #*=-
const char* SC_OPCODE_NORM_DIST_ARY[] =
{
    NC_("SC_OPCODE_NORM_DIST", "Values of the normal distribution."),
    NC_("SC_OPCODE_NORM_DIST", "Number"),
    NC_("SC_OPCODE_NORM_DIST", "The value for which the normal distribution is to be calculated."),
    NC_("SC_OPCODE_NORM_DIST", "Mean"),
    NC_("SC_OPCODE_NORM_DIST", "The mean value. The mean value of the normal distribution."),
    NC_("SC_OPCODE_NORM_DIST", "STDEV"),
    NC_("SC_OPCODE_NORM_DIST", "Standard deviation. The standard deviation of the normal distribution."),
    NC_("SC_OPCODE_NORM_DIST", "C"),
    NC_("SC_OPCODE_NORM_DIST", "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.")
};

// -=*# Resource for function NORM.DIST #*=-
const char* SC_OPCODE_NORM_DIST_MS_ARY[] =
{
    NC_("SC_OPCODE_NORM_DIST_MS", "Values of the normal distribution."),
    NC_("SC_OPCODE_NORM_DIST_MS", "Number"),
    NC_("SC_OPCODE_NORM_DIST_MS", "The value for which the normal distribution is to be calculated."),
    NC_("SC_OPCODE_NORM_DIST_MS", "Mean"),
    NC_("SC_OPCODE_NORM_DIST_MS", "The mean value. The mean value of the normal distribution."),
    NC_("SC_OPCODE_NORM_DIST_MS", "STDEV"),
    NC_("SC_OPCODE_NORM_DIST_MS", "Standard deviation. The standard deviation of the normal distribution."),
    NC_("SC_OPCODE_NORM_DIST_MS", "C"),
    NC_("SC_OPCODE_NORM_DIST_MS", "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.")
};

// -=*# Resource for function NORMINV #*=-
const char* SC_OPCODE_NORM_INV_ARY[] =
{
    NC_("SC_OPCODE_NORM_INV", "Values of the inverse normal distribution."),
    NC_("SC_OPCODE_NORM_INV", "Number"),
    NC_("SC_OPCODE_NORM_INV", "The probability value for which the inverse normal distribution is to be calculated."),
    NC_("SC_OPCODE_NORM_INV", "Mean"),
    NC_("SC_OPCODE_NORM_INV", "The mean value. The mean value of the normal distribution."),
    NC_("SC_OPCODE_NORM_INV", "STDEV"),
    NC_("SC_OPCODE_NORM_INV", "Standard deviation. The standard deviation of the normal distribution.")
};

// -=*# Resource for function NORM.INV #*=-
const char* SC_OPCODE_NORM_INV_MS_ARY[] =
{
    NC_("SC_OPCODE_NORM_INV_MS", "Values of the inverse normal distribution."),
    NC_("SC_OPCODE_NORM_INV_MS", "Number"),
    NC_("SC_OPCODE_NORM_INV_MS", "The probability value for which the inverse normal distribution is to be calculated."),
    NC_("SC_OPCODE_NORM_INV_MS", "Mean"),
    NC_("SC_OPCODE_NORM_INV_MS", "The mean value. The mean value of the normal distribution."),
    NC_("SC_OPCODE_NORM_INV_MS", "STDEV"),
    NC_("SC_OPCODE_NORM_INV_MS", "Standard deviation. The standard deviation of the normal distribution.")
};

// -=*# Resource for function NORMSDIST #*=-
const char* SC_OPCODE_STD_NORM_DIST_ARY[] =
{
    NC_("SC_OPCODE_STD_NORM_DIST", "The values of the standard normal cumulative distribution."),
    NC_("SC_OPCODE_STD_NORM_DIST", "Number"),
    NC_("SC_OPCODE_STD_NORM_DIST", "The value for which the standard normal distribution is to be calculated.")
};

// -=*# Resource for function NORM.S.DIST #*=-
const char* SC_OPCODE_STD_NORM_DIST_MS_ARY[] =
{
    NC_("SC_OPCODE_STD_NORM_DIST_MS", "The values of the standard normal distribution."),
    NC_("SC_OPCODE_STD_NORM_DIST_MS", "Number"),
    NC_("SC_OPCODE_STD_NORM_DIST_MS", "The value for which the standard normal distribution is to be calculated."),
    NC_("SC_OPCODE_STD_NORM_DIST_MS", "Cumulative"),
    NC_("SC_OPCODE_STD_NORM_DIST_MS", "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.")
};

// -=*# Resource for function NORMSINV #*=-
const char* SC_OPCODE_S_NORM_INV_ARY[] =
{
    NC_("SC_OPCODE_S_NORM_INV", "Values of the inverse standard normal distribution."),
    NC_("SC_OPCODE_S_NORM_INV", "Number"),
    NC_("SC_OPCODE_S_NORM_INV", "The probability value for which the inverse standard normal distribution is to be calculated.")
};

// -=*# Resource for function NORM.S.INV #*=-
const char* SC_OPCODE_S_NORM_INV_MS_ARY[] =
{
    NC_("SC_OPCODE_S_NORM_INV_MS", "Values of the inverse standard normal distribution."),
    NC_("SC_OPCODE_S_NORM_INV_MS", "Number"),
    NC_("SC_OPCODE_S_NORM_INV_MS", "The probability value for which the inverse standard normal distribution is to be calculated.")
};

// -=*# Resource for function LOGNORMDIST #*=-
const char* SC_OPCODE_LOG_NORM_DIST_ARY[] =
{
    NC_("SC_OPCODE_LOG_NORM_DIST", "Values of the log normal distribution."),
    NC_("SC_OPCODE_LOG_NORM_DIST", "Number"),
    NC_("SC_OPCODE_LOG_NORM_DIST", "The value for which the log normal distribution is to be calculated."),
    NC_("SC_OPCODE_LOG_NORM_DIST", "Mean"),
    NC_("SC_OPCODE_LOG_NORM_DIST", "The mean value of the log normal distribution. It is set to 0 if omitted."),
    NC_("SC_OPCODE_LOG_NORM_DIST", "STDEV"),
    NC_("SC_OPCODE_LOG_NORM_DIST", "The standard deviation of the log normal distribution. It is set to 1 if omitted."),
    NC_("SC_OPCODE_LOG_NORM_DIST", "Cumulative"),
    NC_("SC_OPCODE_LOG_NORM_DIST", "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.")
};

// -=*# Resource for function LOGNORM.DIST #*=-
const char* SC_OPCODE_LOG_NORM_DIST_MS_ARY[] =
{
    NC_("SC_OPCODE_LOG_NORM_DIST_MS", "Values of the log normal distribution."),
    NC_("SC_OPCODE_LOG_NORM_DIST_MS", "Number"),
    NC_("SC_OPCODE_LOG_NORM_DIST_MS", "The value for which the log normal distribution is to be calculated."),
    NC_("SC_OPCODE_LOG_NORM_DIST_MS", "Mean"),
    NC_("SC_OPCODE_LOG_NORM_DIST_MS", "The mean value of the log normal distribution."),
    NC_("SC_OPCODE_LOG_NORM_DIST_MS", "STDEV"),
    NC_("SC_OPCODE_LOG_NORM_DIST_MS", "The standard deviation of the log normal distribution."),
    NC_("SC_OPCODE_LOG_NORM_DIST_MS", "Cumulative"),
    NC_("SC_OPCODE_LOG_NORM_DIST_MS", "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.")
};

// -=*# Resource for function LOGINV #*=-
const char* SC_OPCODE_LOG_INV_ARY[] =
{
    NC_("SC_OPCODE_LOG_INV", "Values of the inverse of the lognormal distribution."),
    NC_("SC_OPCODE_LOG_INV", "Number"),
    NC_("SC_OPCODE_LOG_INV", "The probability value for which the inverse log normal distribution is to be calculated."),
    NC_("SC_OPCODE_LOG_INV", "Mean"),
    NC_("SC_OPCODE_LOG_INV", "Mean value. The mean value of the log normal distribution."),
    NC_("SC_OPCODE_LOG_INV", "STDEV"),
    NC_("SC_OPCODE_LOG_INV", "Standard deviation. The standard deviation of the log normal distribution.")
};

// -=*# Resource for function LOGNORM.INV #*=-
const char* SC_OPCODE_LOG_INV_MS_ARY[] =
{
    NC_("SC_OPCODE_LOG_INV_MS", "Values of the inverse of the lognormal distribution."),
    NC_("SC_OPCODE_LOG_INV_MS", "Number"),
    NC_("SC_OPCODE_LOG_INV_MS", "The probability value for which the inverse log normal distribution is to be calculated."),
    NC_("SC_OPCODE_LOG_INV_MS", "Mean"),
    NC_("SC_OPCODE_LOG_INV_MS", "Mean value. The mean value of the log normal distribution."),
    NC_("SC_OPCODE_LOG_INV_MS", "STDEV"),
    NC_("SC_OPCODE_LOG_INV_MS", "Standard deviation. The standard deviation of the log normal distribution.")
};

// -=*# Resource for function EXPONDIST #*=-
const char* SC_OPCODE_EXP_DIST_ARY[] =
{
    NC_("SC_OPCODE_EXP_DIST", "Values of the exponential distribution."),
    NC_("SC_OPCODE_EXP_DIST", "Number"),
    NC_("SC_OPCODE_EXP_DIST", "The value to which the exponential distribution is to be calculated."),
    NC_("SC_OPCODE_EXP_DIST", "Lambda"),
    NC_("SC_OPCODE_EXP_DIST", "The parameters of the exponential distribution."),
    NC_("SC_OPCODE_EXP_DIST", "C"),
    NC_("SC_OPCODE_EXP_DIST", "Cumulated. C=0 calculates the density function, C=1 the distribution.")
};

// -=*# Resource for function EXPON.DIST #*=-
const char* SC_OPCODE_EXP_DIST_MS_ARY[] =
{
    NC_("SC_OPCODE_EXP_DIST_MS", "Values of the exponential distribution."),
    NC_("SC_OPCODE_EXP_DIST_MS", "Number"),
    NC_("SC_OPCODE_EXP_DIST_MS", "The value to which the exponential distribution is to be calculated."),
    NC_("SC_OPCODE_EXP_DIST_MS", "Lambda"),
    NC_("SC_OPCODE_EXP_DIST_MS", "The parameters of the exponential distribution."),
    NC_("SC_OPCODE_EXP_DIST_MS", "C"),
    NC_("SC_OPCODE_EXP_DIST_MS", "Cumulated. C=0 calculates the density function, C=1 the distribution.")
};

// -=*# Resource for function GAMMADIST #*=-
const char* SC_OPCODE_GAMMA_DIST_ARY[] =
{
    NC_("SC_OPCODE_GAMMA_DIST", "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution."),
    NC_("SC_OPCODE_GAMMA_DIST", "Number"),
    NC_("SC_OPCODE_GAMMA_DIST", "The value for which the gamma distribution is to be calculated."),
    NC_("SC_OPCODE_GAMMA_DIST", "Alpha"),
    NC_("SC_OPCODE_GAMMA_DIST", "The Alpha parameter of the Gamma distribution."),
    NC_("SC_OPCODE_GAMMA_DIST", "Beta"),
    NC_("SC_OPCODE_GAMMA_DIST", "The Beta parameter of the Gamma distribution."),
    NC_("SC_OPCODE_GAMMA_DIST", "Cumulative"),
    NC_("SC_OPCODE_GAMMA_DIST", "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.")
};

// -=*# Resource for function GAMMA.DIST #*=-
const char* SC_OPCODE_GAMMA_DIST_MS_ARY[] =
{
    NC_("SC_OPCODE_GAMMA_DIST_MS", "Returns the value of the probability density function or the cumulative distribution function for the Gamma distribution."),
    NC_("SC_OPCODE_GAMMA_DIST_MS", "Number"),
    NC_("SC_OPCODE_GAMMA_DIST_MS", "The value for which the gamma distribution is to be calculated."),
    NC_("SC_OPCODE_GAMMA_DIST_MS", "Alpha"),
    NC_("SC_OPCODE_GAMMA_DIST_MS", "The Alpha parameter of the Gamma distribution."),
    NC_("SC_OPCODE_GAMMA_DIST_MS", "Beta"),
    NC_("SC_OPCODE_GAMMA_DIST_MS", "The Beta parameter of the Gamma distribution."),
    NC_("SC_OPCODE_GAMMA_DIST_MS", "Cumulative"),
    NC_("SC_OPCODE_GAMMA_DIST_MS", "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.")
};

// -=*# Resource for function GAMMAINV #*=-
const char* SC_OPCODE_GAMMA_INV_ARY[] =
{
    NC_("SC_OPCODE_GAMMA_INV", "Values of the inverse gamma distribution."),
    NC_("SC_OPCODE_GAMMA_INV", "Number"),
    NC_("SC_OPCODE_GAMMA_INV", "The probability value for which the inverse gamma distribution is to be calculated."),
    NC_("SC_OPCODE_GAMMA_INV", "Alpha"),
    NC_("SC_OPCODE_GAMMA_INV", "The Alpha (shape) parameter of the Gamma distribution."),
    NC_("SC_OPCODE_GAMMA_INV", "Beta"),
    NC_("SC_OPCODE_GAMMA_INV", "The Beta (scale) parameter of the Gamma distribution.")
};

// -=*# Resource for function GAMMA.INV #*=-
const char* SC_OPCODE_GAMMA_INV_MS_ARY[] =
{
    NC_("SC_OPCODE_GAMMA_INV_MS", "Values of the inverse gamma distribution."),
    NC_("SC_OPCODE_GAMMA_INV_MS", "Number"),
    NC_("SC_OPCODE_GAMMA_INV_MS", "The probability value for which the inverse gamma distribution is to be calculated."),
    NC_("SC_OPCODE_GAMMA_INV_MS", "Alpha"),
    NC_("SC_OPCODE_GAMMA_INV_MS", "The Alpha (shape) parameter of the Gamma distribution."),
    NC_("SC_OPCODE_GAMMA_INV_MS", "Beta"),
    NC_("SC_OPCODE_GAMMA_INV_MS", "The Beta (scale) parameter of the Gamma distribution.")
};

// -=*# Resource for function GAMMALN #*=-
const char* SC_OPCODE_GAMMA_LN_ARY[] =
{
    NC_("SC_OPCODE_GAMMA_LN", "Returns the natural logarithm of the gamma function."),
    NC_("SC_OPCODE_GAMMA_LN", "Number"),
    NC_("SC_OPCODE_GAMMA_LN", "The value for which the natural logarithm of the gamma function is to be calculated.")
};

// -=*# Resource for function GAMMALN.PRECISE #*=-
const char* SC_OPCODE_GAMMA_LN_MS_ARY[] =
{
    NC_("SC_OPCODE_GAMMA_LN_MS", "Returns the natural logarithm of the gamma function."),
    NC_("SC_OPCODE_GAMMA_LN_MS", "Number"),
    NC_("SC_OPCODE_GAMMA_LN_MS", "The value for which the natural logarithm of the gamma function is to be calculated.")
};


// -=*# Resource for function GAMMA #*=-
const char* SC_OPCODE_GAMMA_ARY[] =
{
    NC_("SC_OPCODE_GAMMA", "Returns the value of the Gamma function."),
    NC_("SC_OPCODE_GAMMA", "Number"),
    NC_("SC_OPCODE_GAMMA", "The value for which the Gamma function is to be calculated.")
};


// -=*# Resource for function BETADIST #*=-
const char* SC_OPCODE_BETA_DIST_ARY[] =
{
    NC_("SC_OPCODE_BETA_DIST", "Values of the beta distribution."),
    NC_("SC_OPCODE_BETA_DIST", "Number"),
    NC_("SC_OPCODE_BETA_DIST", "The value for which the beta distribution is to be calculated."),
    NC_("SC_OPCODE_BETA_DIST", "Alpha"),
    NC_("SC_OPCODE_BETA_DIST", "The Alpha parameter of the Beta distribution."),
    NC_("SC_OPCODE_BETA_DIST", "Beta"),
    NC_("SC_OPCODE_BETA_DIST", "The Beta parameter of the Beta distribution."),
    NC_("SC_OPCODE_BETA_DIST", "Start"),
    NC_("SC_OPCODE_BETA_DIST", "The starting value for the value interval of the distribution."),
    NC_("SC_OPCODE_BETA_DIST", "End"),
    NC_("SC_OPCODE_BETA_DIST", "The final value for the value interval of the distribution."),
    NC_("SC_OPCODE_BETA_DIST", "Cumulative"),
    NC_("SC_OPCODE_BETA_DIST", "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function.")
};

// -=*# Resource for function BETAINV #*=-
const char* SC_OPCODE_BETA_INV_ARY[] =
{
    NC_("SC_OPCODE_BETA_INV", "Values of the inverse beta distribution."),
    NC_("SC_OPCODE_BETA_INV", "Number"),
    NC_("SC_OPCODE_BETA_INV", "The probability value for which the inverse beta distribution is to be calculated."),
    NC_("SC_OPCODE_BETA_INV", "Alpha"),
    NC_("SC_OPCODE_BETA_INV", "The Alpha parameter of the Beta distribution."),
    NC_("SC_OPCODE_BETA_INV", "Beta"),
    NC_("SC_OPCODE_BETA_INV", "The Beta parameter of the Beta distribution."),
    NC_("SC_OPCODE_BETA_INV", "Start"),
    NC_("SC_OPCODE_BETA_INV", "The starting value for the value interval of the distribution."),
    NC_("SC_OPCODE_BETA_INV", "End"),
    NC_("SC_OPCODE_BETA_INV", "The final value for the value interval of the distribution.")
};

// -=*# Resource for function BETA.DIST #*=-
const char* SC_OPCODE_BETA_DIST_MS_ARY[] =
{
    NC_("SC_OPCODE_BETA_DIST_MS", "Values of the beta distribution."),
    NC_("SC_OPCODE_BETA_DIST_MS", "Number"),
    NC_("SC_OPCODE_BETA_DIST_MS", "The value for which the beta distribution is to be calculated."),
    NC_("SC_OPCODE_BETA_DIST_MS", "Alpha"),
    NC_("SC_OPCODE_BETA_DIST_MS", "The Alpha parameter of the Beta distribution."),
    NC_("SC_OPCODE_BETA_DIST_MS", "Beta"),
    NC_("SC_OPCODE_BETA_DIST_MS", "The Beta parameter of the Beta distribution."),
    NC_("SC_OPCODE_BETA_DIST_MS", "Cumulative"),
    NC_("SC_OPCODE_BETA_DIST_MS", "0 or FALSE for probability density function, any other value or TRUE or omitted for cumulative distribution function."),
    NC_("SC_OPCODE_BETA_DIST_MS", "Start"),
    NC_("SC_OPCODE_BETA_DIST_MS", "The starting value for the value interval of the distribution."),
    NC_("SC_OPCODE_BETA_DIST_MS", "End"),
    NC_("SC_OPCODE_BETA_DIST_MS", "The final value for the value interval of the distribution.")
};

// -=*# Resource for function BETA.INV #*=-
const char* SC_OPCODE_BETA_INV_MS_ARY[] =
{
    NC_("SC_OPCODE_BETA_INV_MS", "Values of the inverse beta distribution."),
    NC_("SC_OPCODE_BETA_INV_MS", "Number"),
    NC_("SC_OPCODE_BETA_INV_MS", "The probability value for which the inverse beta distribution is to be calculated."),
    NC_("SC_OPCODE_BETA_INV_MS", "Alpha"),
    NC_("SC_OPCODE_BETA_INV_MS", "The Alpha parameter of the Beta distribution."),
    NC_("SC_OPCODE_BETA_INV_MS", "Beta"),
    NC_("SC_OPCODE_BETA_INV_MS", "The Beta parameter of the Beta distribution."),
    NC_("SC_OPCODE_BETA_INV_MS", "Start"),
    NC_("SC_OPCODE_BETA_INV_MS", "The starting value for the value interval of the distribution."),
    NC_("SC_OPCODE_BETA_INV_MS", "End"),
    NC_("SC_OPCODE_BETA_INV_MS", "The final value for the value interval of the distribution.")
};

// -=*# Resource for function WEIBULL #*=-
const char* SC_OPCODE_WEIBULL_ARY[] =
{
    NC_("SC_OPCODE_WEIBULL", "Returns the values of the Weibull distribution."),
    NC_("SC_OPCODE_WEIBULL", "Number"),
    NC_("SC_OPCODE_WEIBULL", "The value for which the Weibull distribution is to be calculated."),
    NC_("SC_OPCODE_WEIBULL", "Alpha"),
    NC_("SC_OPCODE_WEIBULL", "The Alpha parameter of the Weibull distribution."),
    NC_("SC_OPCODE_WEIBULL", "Beta"),
    NC_("SC_OPCODE_WEIBULL", "The Beta parameter of the Weibull distribution."),
    NC_("SC_OPCODE_WEIBULL", "C"),
    NC_("SC_OPCODE_WEIBULL", "Cumulated. C=0 calculates the density function, C=1 the distribution.")
};

// -=*# Resource for function WEIBULL.DIST #*=-
const char* SC_OPCODE_WEIBULL_MS_ARY[] =
{
    NC_("SC_OPCODE_WEIBULL_MS", "Returns the values of the Weibull distribution."),
    NC_("SC_OPCODE_WEIBULL_MS", "Number"),
    NC_("SC_OPCODE_WEIBULL_MS", "The value for which the Weibull distribution is to be calculated."),
    NC_("SC_OPCODE_WEIBULL_MS", "Alpha"),
    NC_("SC_OPCODE_WEIBULL_MS", "The Alpha parameter of the Weibull distribution."),
    NC_("SC_OPCODE_WEIBULL_MS", "Beta"),
    NC_("SC_OPCODE_WEIBULL_MS", "The Beta parameter of the Weibull distribution."),
    NC_("SC_OPCODE_WEIBULL_MS", "C"),
    NC_("SC_OPCODE_WEIBULL_MS", "Cumulated. C=0 calculates the density function, C=1 the distribution.")
};

// -=*# Resource for function HYPGEOMDIST #*=-
const char* SC_OPCODE_HYP_GEOM_DIST_ARY[] =
{
    NC_("SC_OPCODE_HYP_GEOM_DIST", "Values of the hypergeometric distribution."),
    NC_("SC_OPCODE_HYP_GEOM_DIST", "X"),
    NC_("SC_OPCODE_HYP_GEOM_DIST", "The number of successes in the sample."),
    NC_("SC_OPCODE_HYP_GEOM_DIST", "N sample"),
    NC_("SC_OPCODE_HYP_GEOM_DIST", "The size of the sample."),
    NC_("SC_OPCODE_HYP_GEOM_DIST", "Successes"),
    NC_("SC_OPCODE_HYP_GEOM_DIST", "The number of successes in the population."),
    NC_("SC_OPCODE_HYP_GEOM_DIST", "N population"),
    NC_("SC_OPCODE_HYP_GEOM_DIST", "The population size."),
    NC_("SC_OPCODE_HYP_GEOM_DIST", "Cumulative"),
    NC_("SC_OPCODE_HYP_GEOM_DIST", "Cumulated. TRUE calculates the cumulative distribution function, FALSE the probability mass function.")
};

// -=*# Resource for function HYPGEOM.DIST #*=-
const char* SC_OPCODE_HYP_GEOM_DIST_MS_ARY[] =
{
    NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "Values of the hypergeometric distribution."),
    NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "X"),
    NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "The number of successes in the sample."),
    NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "N sample"),
    NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "The size of the sample."),
    NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "Successes"),
    NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "The number of successes in the population."),
    NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "N population"),
    NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "The population size."),
    NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "Cumulative"),
    NC_("SC_OPCODE_HYP_GEOM_DIST_MS", "Cumulated. TRUE calculates the cumulative distribution function, FALSE the probability mass function.")
};

// -=*# Resource for function TDIST #*=-
const char* SC_OPCODE_T_DIST_ARY[] =
{
    NC_("SC_OPCODE_T_DIST", "Returns the t-distribution."),
    NC_("SC_OPCODE_T_DIST", "Number"),
    NC_("SC_OPCODE_T_DIST", "The value for which the T distribution is to be calculated."),
    NC_("SC_OPCODE_T_DIST", "Degrees freedom"),
    NC_("SC_OPCODE_T_DIST", "The degrees of freedom of the T distribution."),
    NC_("SC_OPCODE_T_DIST", "Mode"),
    NC_("SC_OPCODE_T_DIST", "Mode = 1 calculates the one-tailed test, 2 = two-tailed distribution.")
};

// -=*# Resource for function T.DIST.2T #*=-
const char* SC_OPCODE_T_DIST_2T_ARY[] =
{
    NC_("SC_OPCODE_T_DIST_2T", "Returns the two-tailed t-distribution."),
    NC_("SC_OPCODE_T_DIST_2T", "Number"),
    NC_("SC_OPCODE_T_DIST_2T", "The value for which the T distribution is to be calculated."),
    NC_("SC_OPCODE_T_DIST_2T", "Degrees freedom"),
    NC_("SC_OPCODE_T_DIST_2T", "The degrees of freedom of the T distribution.")
};

// -=*# Resource for function T.DIST #*=-
const char* SC_OPCODE_T_DIST_MS_ARY[] =
{
    NC_("SC_OPCODE_T_DIST_MS", "Returns the t-distribution."),
    NC_("SC_OPCODE_T_DIST_MS", "Number"),
    NC_("SC_OPCODE_T_DIST_MS", "The value for which the T distribution is to be calculated."),
    NC_("SC_OPCODE_T_DIST_MS", "Degrees freedom"),
    NC_("SC_OPCODE_T_DIST_MS", "The degrees of freedom of the T distribution."),
    NC_("SC_OPCODE_T_DIST_MS", "Cumulative"),
    NC_("SC_OPCODE_T_DIST_MS", "True calculates the cumulative distribution function, false the probability density function.")
};

// -=*# Resource for function T.DIST.RT #*=-
const char* SC_OPCODE_T_DIST_RT_ARY[] =
{
    NC_("SC_OPCODE_T_DIST_RT", "Returns the right-tailed t-distribution."),
    NC_("SC_OPCODE_T_DIST_RT", "Number"),
    NC_("SC_OPCODE_T_DIST_RT", "The value for which the T distribution is to be calculated."),
    NC_("SC_OPCODE_T_DIST_RT", "Degrees freedom"),
    NC_("SC_OPCODE_T_DIST_RT", "The degrees of freedom of the T distribution.")
};

// -=*# Resource for function TINV #*=-
const char* SC_OPCODE_T_INV_ARY[] =
{
    NC_("SC_OPCODE_T_INV", "Values of the inverse t-distribution."),
    NC_("SC_OPCODE_T_INV", "Number"),
    NC_("SC_OPCODE_T_INV", "The probability value for which the inverse T distribution is to be calculated."),
    NC_("SC_OPCODE_T_INV", "Degrees freedom"),
    NC_("SC_OPCODE_T_INV", "The degrees of freedom of the T distribution.")
};

// -=*# Resource for function T.INV #*=-
const char* SC_OPCODE_T_INV_MS_ARY[] =
{
    NC_("SC_OPCODE_T_INV_MS", "Values of the left-tailed inverse t-distribution."),
    NC_("SC_OPCODE_T_INV_MS", "Number"),
    NC_("SC_OPCODE_T_INV_MS", "The probability value for which the inverse T distribution is to be calculated."),
    NC_("SC_OPCODE_T_INV_MS", "Degrees freedom"),
    NC_("SC_OPCODE_T_INV_MS", "The degrees of freedom of the T distribution.")
};

// -=*# Resource for function T.INV.2T #*=-
const char* SC_OPCODE_T_INV_2T_ARY[] =
{
    NC_("SC_OPCODE_T_INV_2T", "Values of the two-tailed inverse t-distribution."),
    NC_("SC_OPCODE_T_INV_2T", "Number"),
    NC_("SC_OPCODE_T_INV_2T", "The probability value for which the inverse T distribution is to be calculated."),
    NC_("SC_OPCODE_T_INV_2T", "Degrees freedom"),
    NC_("SC_OPCODE_T_INV_2T", "The degrees of freedom of the T distribution.")
};

// -=*# Resource for function FDIST #*=-
const char* SC_OPCODE_F_DIST_ARY[] =
{
    NC_("SC_OPCODE_F_DIST", "Values of the F probability distribution."),
    NC_("SC_OPCODE_F_DIST", "Number"),
    NC_("SC_OPCODE_F_DIST", "The value for which the F distribution is to be calculated."),
    NC_("SC_OPCODE_F_DIST", "Degrees freedom 1"),
    NC_("SC_OPCODE_F_DIST", "The degrees of freedom in the numerator of the F distribution."),
    NC_("SC_OPCODE_F_DIST", "Degrees freedom 2"),
    NC_("SC_OPCODE_F_DIST", "The degrees of freedom in the denominator of the F distribution.")
};

// -=*# Resource for function F.DIST #*=-
const char* SC_OPCODE_F_DIST_LT_ARY[] =
{
    NC_("SC_OPCODE_F_DIST_LT", "Values of the left tail F probability distribution."),
    NC_("SC_OPCODE_F_DIST_LT", "Number"),
    NC_("SC_OPCODE_F_DIST_LT", "The value for which the F distribution is to be calculated."),
    NC_("SC_OPCODE_F_DIST_LT", "Degrees freedom 1"),
    NC_("SC_OPCODE_F_DIST_LT", "The degrees of freedom in the numerator of the F distribution."),
    NC_("SC_OPCODE_F_DIST_LT", "Degrees freedom 2"),
    NC_("SC_OPCODE_F_DIST_LT", "The degrees of freedom in the denominator of the F distribution."),
    NC_("SC_OPCODE_F_DIST_LT", "Cumulative"),
    NC_("SC_OPCODE_F_DIST_LT", "Cumulative distribution function (TRUE) or probability density function (FALSE).")
};

// -=*# Resource for function F.DIST.RT #*=-
const char* SC_OPCODE_F_DIST_RT_ARY[] =
{
    NC_("SC_OPCODE_F_DIST_RT", "Values of the right tail F probability distribution."),
    NC_("SC_OPCODE_F_DIST_RT", "Number"),
    NC_("SC_OPCODE_F_DIST_RT", "The value for which the F distribution is to be calculated."),
    NC_("SC_OPCODE_F_DIST_RT", "Degrees freedom 1"),
    NC_("SC_OPCODE_F_DIST_RT", "The degrees of freedom in the numerator of the F distribution."),
    NC_("SC_OPCODE_F_DIST_RT", "Degrees freedom 2"),
    NC_("SC_OPCODE_F_DIST_RT", "The degrees of freedom in the denominator of the F distribution.")
};

// -=*# Resource for function FINV #*=-
const char* SC_OPCODE_F_INV_ARY[] =
{
    NC_("SC_OPCODE_F_INV", "Values of the inverse F distribution."),
    NC_("SC_OPCODE_F_INV", "Number"),
    NC_("SC_OPCODE_F_INV", "The probability value for which the inverse F distribution is to be calculated."),
    NC_("SC_OPCODE_F_INV", "Degrees freedom 1"),
    NC_("SC_OPCODE_F_INV", "The degrees of freedom in the numerator of the F distribution."),
    NC_("SC_OPCODE_F_INV", "Degrees freedom 2"),
    NC_("SC_OPCODE_F_INV", "The degrees of freedom in the denominator of the F distribution.")
};

// -=*# Resource for function F.INV #*=-
const char* SC_OPCODE_F_INV_LT_ARY[] =
{
    NC_("SC_OPCODE_F_INV_LT", "Values of the inverse left tail F distribution."),
    NC_("SC_OPCODE_F_INV_LT", "Number"),
    NC_("SC_OPCODE_F_INV_LT", "The probability value for which the inverse F distribution is to be calculated."),
    NC_("SC_OPCODE_F_INV_LT", "Degrees freedom 1"),
    NC_("SC_OPCODE_F_INV_LT", "The degrees of freedom in the numerator of the F distribution."),
    NC_("SC_OPCODE_F_INV_LT", "Degrees freedom 2"),
    NC_("SC_OPCODE_F_INV_LT", "The degrees of freedom in the denominator of the F distribution.")
};

// -=*# Resource for function F.INV.RT #*=-
const char* SC_OPCODE_F_INV_RT_ARY[] =
{
    NC_("SC_OPCODE_F_INV_RT", "Values of the inverse right tail F distribution."),
    NC_("SC_OPCODE_F_INV_RT", "Number"),
    NC_("SC_OPCODE_F_INV_RT", "The probability value for which the inverse F distribution is to be calculated."),
    NC_("SC_OPCODE_F_INV_RT", "Degrees freedom 1"),
    NC_("SC_OPCODE_F_INV_RT", "The degrees of freedom in the numerator of the F distribution."),
    NC_("SC_OPCODE_F_INV_RT", "Degrees freedom 2"),
    NC_("SC_OPCODE_F_INV_RT", "The degrees of freedom in the denominator of the F distribution.")
};

// -=*# Resource for function CHIDIST #*=-
const char* SC_OPCODE_CHI_DIST_ARY[] =
{
    NC_("SC_OPCODE_CHI_DIST", "Returns the right-tail probability of the chi-square distribution."),
    NC_("SC_OPCODE_CHI_DIST", "Number"),
    NC_("SC_OPCODE_CHI_DIST", "The value for which the chi square distribution is to be calculated."),
    NC_("SC_OPCODE_CHI_DIST", "Degrees freedom"),
    NC_("SC_OPCODE_CHI_DIST", "The degrees of freedom of the chi square distribution.")
};

// -=*# Resource for function CHISQ.DIST.RT #*=-
const char* SC_OPCODE_CHI_DIST_MS_ARY[] =
{
    NC_("SC_OPCODE_CHI_DIST_MS", "Returns the right-tail probability of the chi-square distribution."),
    NC_("SC_OPCODE_CHI_DIST_MS", "Number"),
    NC_("SC_OPCODE_CHI_DIST_MS", "The value for which the chi square distribution is to be calculated."),
    NC_("SC_OPCODE_CHI_DIST_MS", "Degrees freedom"),
    NC_("SC_OPCODE_CHI_DIST_MS", "The degrees of freedom of the chi square distribution.")
};


// -=*# Resource for function CHISQDIST #*=-
const char* SC_OPCODE_CHISQ_DIST_ARY[] =
{
    NC_("SC_OPCODE_CHISQ_DIST", "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution."),
    NC_("SC_OPCODE_CHISQ_DIST", "Number"),
    NC_("SC_OPCODE_CHISQ_DIST", "The value for which the probability density function or cumulative distribution function is to be calculated."),
    NC_("SC_OPCODE_CHISQ_DIST", "Degrees of Freedom"),
    NC_("SC_OPCODE_CHISQ_DIST", "The degrees of freedom of the chi-square distribution."),
    NC_("SC_OPCODE_CHISQ_DIST", "Cumulative"),
    NC_("SC_OPCODE_CHISQ_DIST", "0 or FALSE calculates the probability density function. Any other value or TRUE or omitted calculates the cumulative distribution function.")
};


// -=*# Resource for function CHISQ.DIST #*=-
const char* SC_OPCODE_CHISQ_DIST_MS_ARY[] =
{
    NC_("SC_OPCODE_CHISQ_DIST_MS", "Returns left-tail probability of the cumulative distribution function or values of the probability density function of the chi-square distribution."),
    NC_("SC_OPCODE_CHISQ_DIST_MS", "Number"),
    NC_("SC_OPCODE_CHISQ_DIST_MS", "The value for which the probability density function or cumulative distribution function is to be calculated."),
    NC_("SC_OPCODE_CHISQ_DIST_MS", "Degrees of Freedom"),
    NC_("SC_OPCODE_CHISQ_DIST_MS", "The degrees of freedom of the chi-square distribution."),
    NC_("SC_OPCODE_CHISQ_DIST_MS", "Cumulative"),
    NC_("SC_OPCODE_CHISQ_DIST_MS", "0 or FALSE calculates the probability density function. Any other value or TRUE calculates the cumulative distribution function.")
};


// -=*# Resource for function CHIINV #*=-
const char* SC_OPCODE_CHI_INV_ARY[] =
{
    NC_("SC_OPCODE_CHI_INV", "Values of the inverse of CHIDIST(x; DegreesOfFreedom)."),
    NC_("SC_OPCODE_CHI_INV", "Number"),
    NC_("SC_OPCODE_CHI_INV", "The probability value for which the inverse chi square distribution is to be calculated."),
    NC_("SC_OPCODE_CHI_INV", "Degrees freedom"),
    NC_("SC_OPCODE_CHI_INV", "The degrees of freedom of the chi square distribution.")
};


// -=*# Resource for function CHISQ.INV.RT #*=-
const char* SC_OPCODE_CHI_INV_MS_ARY[] =
{
    NC_("SC_OPCODE_CHI_INV_MS", "Values of the inverse of CHIDIST(x; DegreesOfFreedom)."),
    NC_("SC_OPCODE_CHI_INV_MS", "Number"),
    NC_("SC_OPCODE_CHI_INV_MS", "The probability value for which the inverse chi square distribution is to be calculated."),
    NC_("SC_OPCODE_CHI_INV_MS", "Degrees freedom"),
    NC_("SC_OPCODE_CHI_INV_MS", "The degrees of freedom of the chi square distribution.")
};


// -=*# Resource for function CHISQINV #*=-
const char* SC_OPCODE_CHISQ_INV_ARY[] =
{
    NC_("SC_OPCODE_CHISQ_INV", "Values of the inverse of CHISQDIST(x;DegreesOfFreedom;TRUE())."),
    NC_("SC_OPCODE_CHISQ_INV", "Probability"),
    NC_("SC_OPCODE_CHISQ_INV", "The probability value for which the inverse of the chi square distribution is to be calculated."),
    NC_("SC_OPCODE_CHISQ_INV", "Degrees of Freedom"),
    NC_("SC_OPCODE_CHISQ_INV", "The degrees of freedom of the chi square distribution.")
};


// -=*# Resource for function CHISQ.INV #*=-
const char* SC_OPCODE_CHISQ_INV_MS_ARY[] =
{
    NC_("SC_OPCODE_CHISQ_INV_MS", "Values of the inverse of CHISQ.DIST(x;DegreesOfFreedom;TRUE())."),
    NC_("SC_OPCODE_CHISQ_INV_MS", "Probability"),
    NC_("SC_OPCODE_CHISQ_INV_MS", "The probability value for which the inverse of the chi square distribution is to be calculated."),
    NC_("SC_OPCODE_CHISQ_INV_MS", "Degrees of Freedom"),
    NC_("SC_OPCODE_CHISQ_INV_MS", "The degrees of freedom of the chi square distribution.")
};


// -=*# Resource for function STANDARDIZE #*=-
const char* SC_OPCODE_STANDARD_ARY[] =
{
    NC_("SC_OPCODE_STANDARD", "Converts a random variable to a normalized value."),
    NC_("SC_OPCODE_STANDARD", "Number"),
    NC_("SC_OPCODE_STANDARD", "The value to be standardized."),
    NC_("SC_OPCODE_STANDARD", "Mean"),
    NC_("SC_OPCODE_STANDARD", "The mean value used for moving."),
    NC_("SC_OPCODE_STANDARD", "STDEV"),
    NC_("SC_OPCODE_STANDARD", "The standard deviation used for scaling.")
};

// -=*# Resource for function PERMUT #*=-
const char* SC_OPCODE_PERMUT_ARY[] =
{
    NC_("SC_OPCODE_PERMUT", "Returns the number of permutations for a given number of elements without repetition."),
    NC_("SC_OPCODE_PERMUT", "Count 1"),
    NC_("SC_OPCODE_PERMUT", "The total number of elements."),
    NC_("SC_OPCODE_PERMUT", "Count 2"),
    NC_("SC_OPCODE_PERMUT", "The selection number taken from the elements.")
};

// -=*# Resource for function PERMUTATIONA #*=-
const char* SC_OPCODE_PERMUTATION_A_ARY[] =
{
    NC_("SC_OPCODE_PERMUTATION_A", "Returns the number of permutations for a given number of objects (repetition allowed)."),
    NC_("SC_OPCODE_PERMUTATION_A", "Count 1"),
    NC_("SC_OPCODE_PERMUTATION_A", "The total number of elements."),
    NC_("SC_OPCODE_PERMUTATION_A", "Count 2"),
    NC_("SC_OPCODE_PERMUTATION_A", "The selection number taken from the elements.")
};

// -=*# Resource for function CONFIDENCE #*=-
const char* SC_OPCODE_CONFIDENCE_ARY[] =
{
    NC_("SC_OPCODE_CONFIDENCE", "Returns a (1-alpha) confidence interval for a normal distribution."),
    NC_("SC_OPCODE_CONFIDENCE", "Alpha"),
    NC_("SC_OPCODE_CONFIDENCE", "The level of the confidence interval."),
    NC_("SC_OPCODE_CONFIDENCE", "STDEV"),
    NC_("SC_OPCODE_CONFIDENCE", "The standard deviation of the population."),
    NC_("SC_OPCODE_CONFIDENCE", "Size"),
    NC_("SC_OPCODE_CONFIDENCE", "The size of the population.")
};

// -=*# Resource for function CONFIDENCE.NORM #*=-
const char* SC_OPCODE_CONFIDENCE_N_ARY[] =
{
    NC_("SC_OPCODE_CONFIDENCE_N", "Returns a (1-alpha) confidence interval for a normal distribution."),
    NC_("SC_OPCODE_CONFIDENCE_N", "Alpha"),
    NC_("SC_OPCODE_CONFIDENCE_N", "The level of the confidence interval."),
    NC_("SC_OPCODE_CONFIDENCE_N", "STDEV"),
    NC_("SC_OPCODE_CONFIDENCE_N", "The standard deviation of the population."),
    NC_("SC_OPCODE_CONFIDENCE_N", "Size"),
    NC_("SC_OPCODE_CONFIDENCE_N", "The size of the population.")
};

// -=*# Resource for function CONFIDENCE.T #*=-
const char* SC_OPCODE_CONFIDENCE_T_ARY[] =
{
    NC_("SC_OPCODE_CONFIDENCE_T", "Returns a (1-alpha) confidence interval for a Student's t distribution."),
    NC_("SC_OPCODE_CONFIDENCE_T", "Alpha"),
    NC_("SC_OPCODE_CONFIDENCE_T", "The level of the confidence interval."),
    NC_("SC_OPCODE_CONFIDENCE_T", "STDEV"),
    NC_("SC_OPCODE_CONFIDENCE_T", "The standard deviation of the population."),
    NC_("SC_OPCODE_CONFIDENCE_T", "Size"),
    NC_("SC_OPCODE_CONFIDENCE_T", "The size of the population.")
};

// -=*# Resource for function ZTEST #*=-
const char* SC_OPCODE_Z_TEST_ARY[] =
{
    NC_("SC_OPCODE_Z_TEST", "Calculates the probability of observing a z-statistic greater than the one computed based on a sample."),
    NC_("SC_OPCODE_Z_TEST", "Data"),
    NC_("SC_OPCODE_Z_TEST", "The given sample, drawn from a normally distributed population."),
    NC_("SC_OPCODE_Z_TEST", "mu"),
    NC_("SC_OPCODE_Z_TEST", "The known mean of the population."),
    NC_("SC_OPCODE_Z_TEST", "sigma"),
    NC_("SC_OPCODE_Z_TEST", "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used.")
};

// -=*# Resource for function Z.TEST #*=-
const char* SC_OPCODE_Z_TEST_MS_ARY[] =
{
    NC_("SC_OPCODE_Z_TEST_MS", "Calculates the probability of observing a z-statistic greater than the one computed based on a sample."),
    NC_("SC_OPCODE_Z_TEST_MS", "Data"),
    NC_("SC_OPCODE_Z_TEST_MS", "The given sample, drawn from a normally distributed population."),
    NC_("SC_OPCODE_Z_TEST_MS", "mu"),
    NC_("SC_OPCODE_Z_TEST_MS", "The known mean of the population."),
    NC_("SC_OPCODE_Z_TEST_MS", "sigma"),
    NC_("SC_OPCODE_Z_TEST_MS", "The known standard deviation of the population. If omitted, the standard deviation of the given sample is used.")
};

// -=*# Resource for function CHITEST #*=-
const char* SC_OPCODE_CHI_TEST_ARY[] =
{
    NC_("SC_OPCODE_CHI_TEST", "Returns the chi square independence test."),
    NC_("SC_OPCODE_CHI_TEST", "Data B"),
    NC_("SC_OPCODE_CHI_TEST", "The observed data array."),
    NC_("SC_OPCODE_CHI_TEST", "Data E"),
    NC_("SC_OPCODE_CHI_TEST", "The expected data array.")
};

// -=*# Resource for function CHISQ.TEST #*=-
const char* SC_OPCODE_CHI_TEST_MS_ARY[] =
{
    NC_("SC_OPCODE_CHI_TEST_MS", "Returns the chi square independence test."),
    NC_("SC_OPCODE_CHI_TEST_MS", "Data B"),
    NC_("SC_OPCODE_CHI_TEST_MS", "The observed data array."),
    NC_("SC_OPCODE_CHI_TEST_MS", "Data E"),
    NC_("SC_OPCODE_CHI_TEST_MS", "The expected data array.")
};

// -=*# Resource for function FTEST #*=-
const char* SC_OPCODE_F_TEST_ARY[] =
{
    NC_("SC_OPCODE_F_TEST", "Calculates the F test."),
    NC_("SC_OPCODE_F_TEST", "Data 1"),
    NC_("SC_OPCODE_F_TEST", "The first record array."),
    NC_("SC_OPCODE_F_TEST", "Data 2"),
    NC_("SC_OPCODE_F_TEST", "The second record array.")
};

// -=*# Resource for function F.TEST #*=-
const char* SC_OPCODE_F_TEST_MS_ARY[] =
{
    NC_("SC_OPCODE_F_TEST_MS", "Calculates the F test."),
    NC_("SC_OPCODE_F_TEST_MS", "Data 1"),
    NC_("SC_OPCODE_F_TEST_MS", "The first record array."),
    NC_("SC_OPCODE_F_TEST_MS", "Data 2"),
    NC_("SC_OPCODE_F_TEST_MS", "The second record array.")
};

// -=*# Resource for function TTEST #*=-
const char* SC_OPCODE_T_TEST_ARY[] =
{
    NC_("SC_OPCODE_T_TEST", "Calculates the T test."),
    NC_("SC_OPCODE_T_TEST", "Data 1"),
    NC_("SC_OPCODE_T_TEST", "The first record array."),
    NC_("SC_OPCODE_T_TEST", "Data 2"),
    NC_("SC_OPCODE_T_TEST", "The second record array."),
    NC_("SC_OPCODE_T_TEST", "Mode"),
    NC_("SC_OPCODE_T_TEST", "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"),
    NC_("SC_OPCODE_T_TEST", "Type"),
    NC_("SC_OPCODE_T_TEST", "The type of the T test.")
};

// -=*# Resource for function T.TEST #*=-
const char* SC_OPCODE_T_TEST_MS_ARY[] =
{
    NC_("SC_OPCODE_T_TEST_MS", "Calculates the T test."),
    NC_("SC_OPCODE_T_TEST_MS", "Data 1"),
    NC_("SC_OPCODE_T_TEST_MS", "The first record array."),
    NC_("SC_OPCODE_T_TEST_MS", "Data 2"),
    NC_("SC_OPCODE_T_TEST_MS", "The second record array."),
    NC_("SC_OPCODE_T_TEST_MS", "Mode"),
    NC_("SC_OPCODE_T_TEST_MS", "Mode specifies the number of distribution tails to return. 1 = one-tailed, 2 = two-tailed distribution"),
    NC_("SC_OPCODE_T_TEST_MS", "Type"),
    NC_("SC_OPCODE_T_TEST_MS", "The type of the T test.")
};

// -=*# Resource for function RSQ #*=-
const char* SC_OPCODE_RSQ_ARY[] =
{
    NC_("SC_OPCODE_RSQ", "Returns the square of the Pearson product moment correlation coefficient."),
    NC_("SC_OPCODE_RSQ", "Data Y"),
    NC_("SC_OPCODE_RSQ", "The Y data array."),
    NC_("SC_OPCODE_RSQ", "Data X"),
    NC_("SC_OPCODE_RSQ", "The X data array.")
};

// -=*# Resource for function INTERCEPT #*=-
const char* SC_OPCODE_INTERCEPT_ARY[] =
{
    NC_("SC_OPCODE_INTERCEPT", "Returns the intercept of the linear regression line and the Y axis."),
    NC_("SC_OPCODE_INTERCEPT", "Data Y"),
    NC_("SC_OPCODE_INTERCEPT", "The Y data array."),
    NC_("SC_OPCODE_INTERCEPT", "Data X"),
    NC_("SC_OPCODE_INTERCEPT", "The X data array.")
};

// -=*# Resource for function SLOPE #*=-
const char* SC_OPCODE_SLOPE_ARY[] =
{
    NC_("SC_OPCODE_SLOPE", "Returns the slope of the linear regression line."),
    NC_("SC_OPCODE_SLOPE", "Data Y"),
    NC_("SC_OPCODE_SLOPE", "The Y data array."),
    NC_("SC_OPCODE_SLOPE", "Data X"),
    NC_("SC_OPCODE_SLOPE", "The X data array.")
};

// -=*# Resource for function STEYX #*=-
const char* SC_OPCODE_STEYX_ARY[] =
{
    NC_("SC_OPCODE_STEYX", "Returns the standard error of the linear regression."),
    NC_("SC_OPCODE_STEYX", "Data Y"),
    NC_("SC_OPCODE_STEYX", "The Y data array."),
    NC_("SC_OPCODE_STEYX", "Data X"),
    NC_("SC_OPCODE_STEYX", "The X data array.")
};

// -=*# Resource for function PEARSON #*=-
const char* SC_OPCODE_PEARSON_ARY[] =
{
    NC_("SC_OPCODE_PEARSON", "Returns the Pearson product moment correlation coefficient."),
    NC_("SC_OPCODE_PEARSON", "Data 1"),
    NC_("SC_OPCODE_PEARSON", "The first record array."),
    NC_("SC_OPCODE_PEARSON", "Data 2"),
    NC_("SC_OPCODE_PEARSON", "The second record array.")
};

// -=*# Resource for function CORREL #*=-
const char* SC_OPCODE_CORREL_ARY[] =
{
    NC_("SC_OPCODE_CORREL", "Returns the correlation coefficient."),
    NC_("SC_OPCODE_CORREL", "Data 1"),
    NC_("SC_OPCODE_CORREL", "The first record array."),
    NC_("SC_OPCODE_CORREL", "Data 2"),
    NC_("SC_OPCODE_CORREL", "The second record array.")
};

// -=*# Resource for function COVAR #*=-
const char* SC_OPCODE_COVAR_ARY[] =
{
    NC_("SC_OPCODE_COVAR", "Calculates the population covariance."),
    NC_("SC_OPCODE_COVAR", "Data 1"),
    NC_("SC_OPCODE_COVAR", "The first record array."),
    NC_("SC_OPCODE_COVAR", "Data 2"),
    NC_("SC_OPCODE_COVAR", "The second record array.")
};

// -=*# Resource for function COVARIANCE.P #*=-
const char* SC_OPCODE_COVARIANCE_P_ARY[] =
{
    NC_("SC_OPCODE_COVARIANCE_P", "Calculates the population covariance."),
    NC_("SC_OPCODE_COVARIANCE_P", "Data 1"),
    NC_("SC_OPCODE_COVARIANCE_P", "The first record array."),
    NC_("SC_OPCODE_COVARIANCE_P", "Data 2"),
    NC_("SC_OPCODE_COVARIANCE_P", "The second record array.")
};

// -=*# Resource for function COVARIANCE.S #*=-
const char* SC_OPCODE_COVARIANCE_S_ARY[] =
{
    NC_("SC_OPCODE_COVARIANCE_S", "Calculates the sample covariance."),
    NC_("SC_OPCODE_COVARIANCE_S", "Data 1"),
    NC_("SC_OPCODE_COVARIANCE_S", "The first record array."),
    NC_("SC_OPCODE_COVARIANCE_S", "Data 2"),
    NC_("SC_OPCODE_COVARIANCE_S", "The second record array.")
};

// -=*# Resource for function FORECAST #*=-
const char* SC_OPCODE_FORECAST_ARY[] =
{
    NC_("SC_OPCODE_FORECAST", "Returns a value along a linear regression"),
    NC_("SC_OPCODE_FORECAST", "Value"),
    NC_("SC_OPCODE_FORECAST", "The X value for which the Y value on the regression linear is to be calculated."),
    NC_("SC_OPCODE_FORECAST", "Data Y"),
    NC_("SC_OPCODE_FORECAST", "The Y data array."),
    NC_("SC_OPCODE_FORECAST", "Data X"),
    NC_("SC_OPCODE_FORECAST", "The X data array.")
};

// -=*# Resource for function FORECAST.ETS #*=-
const char* SC_OPCODE_FORECAST_ETS_ADD_ARY[] =
{
    NC_("SC_OPCODE_FORECAST_ETS_ADD", "Calculates future value(s) using additive Exponential Smoothing algorithm."),
    NC_("SC_OPCODE_FORECAST_ETS_ADD", "Target"),
    NC_("SC_OPCODE_FORECAST_ETS_ADD", "The date (array) for which you want to predict a value."),
    NC_("SC_OPCODE_FORECAST_ETS_ADD", "Values"),
    NC_("SC_OPCODE_FORECAST_ETS_ADD", "The data array from which you want to forecast."),
    NC_("SC_OPCODE_FORECAST_ETS_ADD", "Timeline"),
    NC_("SC_OPCODE_FORECAST_ETS_ADD", "The date or numeric array; a consistent step between values is needed."),
    NC_("SC_OPCODE_FORECAST_ETS_ADD", "Period length"),
    NC_("SC_OPCODE_FORECAST_ETS_ADD", "Number of Samples in Period (default 1); length of the seasonal pattern."),
    NC_("SC_OPCODE_FORECAST_ETS_ADD", "Data completion"),
    NC_("SC_OPCODE_FORECAST_ETS_ADD", "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."),
    NC_("SC_OPCODE_FORECAST_ETS_ADD", "Aggregation"),
    NC_("SC_OPCODE_FORECAST_ETS_ADD", "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.")
};

// -=*# Resource for function FORECAST.ETS.MULT #*=-
const char* SC_OPCODE_FORECAST_ETS_MUL_ARY[] =
{
    NC_("SC_OPCODE_FORECAST_ETS_MUL", "Calculates future value(s) using multiplicative Exponential Smoothing algorithm."),
    NC_("SC_OPCODE_FORECAST_ETS_MUL", "Target"),
    NC_("SC_OPCODE_FORECAST_ETS_MUL", "The date (array) for which you want to predict a value."),
    NC_("SC_OPCODE_FORECAST_ETS_MUL", "Values"),
    NC_("SC_OPCODE_FORECAST_ETS_MUL", "The data array from which you want to forecast."),
    NC_("SC_OPCODE_FORECAST_ETS_MUL", "Timeline"),
    NC_("SC_OPCODE_FORECAST_ETS_MUL", "The date or numeric array; a consistent step between values is needed."),
    NC_("SC_OPCODE_FORECAST_ETS_MUL", "Period length"),
    NC_("SC_OPCODE_FORECAST_ETS_MUL", "Number of Samples in Period (default 1); length of the seasonal pattern."),
    NC_("SC_OPCODE_FORECAST_ETS_MUL", "Data completion"),
    NC_("SC_OPCODE_FORECAST_ETS_MUL", "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."),
    NC_("SC_OPCODE_FORECAST_ETS_MUL", "Aggregation"),
    NC_("SC_OPCODE_FORECAST_ETS_MUL", "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.")
};

// -=*# Resource for function FORECAST.ETS.CONFINT #*=-
const char* SC_OPCODE_FORECAST_ETS_PIA_ARY[] =
{
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "Returns a prediction interval at the specified target value(s) for additive Exponential Smoothing method"),
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "Target"),
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "The date (array) for which you want to predict a value."),
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "Values"),
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "The data array from which you want to forecast."),
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "Timeline"),
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "The date or numeric array; a consistent step between values is needed."),
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "Confidence level"),
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval."),
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "Period length"),
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "Number of Samples in Period (default 1); length of the seasonal pattern."),
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "Data completion"),
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."),
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "Aggregation"),
    NC_("SC_OPCODE_FORECAST_ETS_PIA", "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.")
};

// -=*# Resource for function FORECAST.ETS.PI.MULT #*=-
const char* SC_OPCODE_FORECAST_ETS_PIM_ARY[] =
{
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "Returns a prediction interval at the specified target value(s) for multiplicative Exponential Smoothing method"),
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "Target"),
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "The date (array) for which you want to predict a value."),
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "Values"),
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "The data array from which you want to forecast."),
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "Timeline"),
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "The date or numeric array; a consistent step between values is needed."),
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "Confidence level"),
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "Confidence level (default 0.95); value 0 to 1 (exclusive) for 0 to 100% calculated prediction interval."),
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "Period length"),
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "Number of Samples in Period (default 1); length of the seasonal pattern."),
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "Data completion"),
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."),
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "Aggregation"),
    NC_("SC_OPCODE_FORECAST_ETS_PIM", "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.")
};

// -=*# Resource for function FORECAST.ETS.SEASONALITY #*=-
const char* SC_OPCODE_FORECAST_ETS_SEA_ARY[] =
{
    NC_("SC_OPCODE_FORECAST_ETS_SEA", "Calculates the number of samples in period (season) using additive Exponential Triple Smoothing algorithm."),
    NC_("SC_OPCODE_FORECAST_ETS_SEA", "Values"),
    NC_("SC_OPCODE_FORECAST_ETS_SEA", "The data array from which you want to forecast."),
    NC_("SC_OPCODE_FORECAST_ETS_SEA", "Timeline"),
    NC_("SC_OPCODE_FORECAST_ETS_SEA", "The date or numeric array; a consistent step between values is needed."),
    NC_("SC_OPCODE_FORECAST_ETS_SEA", "Data completion"),
    NC_("SC_OPCODE_FORECAST_ETS_SEA", "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."),
    NC_("SC_OPCODE_FORECAST_ETS_SEA", "Aggregation"),
    NC_("SC_OPCODE_FORECAST_ETS_SEA", "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.")
};

// -=*# Resource for function FORECAST.ETS.STAT #*=-
const char* SC_OPCODE_FORECAST_ETS_STA_ARY[] =
{
    NC_("SC_OPCODE_FORECAST_ETS_STA", "Returns statistical value(s) using additive Exponential Smoothing algorithm."),
    NC_("SC_OPCODE_FORECAST_ETS_STA", "Values"),
    NC_("SC_OPCODE_FORECAST_ETS_STA", "The data array from which you want to forecast."),
    NC_("SC_OPCODE_FORECAST_ETS_STA", "Timeline"),
    NC_("SC_OPCODE_FORECAST_ETS_STA", "The date or numeric array; a consistent step between values is needed."),
    NC_("SC_OPCODE_FORECAST_ETS_STA", "Statistic type"),
    NC_("SC_OPCODE_FORECAST_ETS_STA", "Value (1-9) or array of values, indicating which statistic will be returned for the calculated forecast"),
    NC_("SC_OPCODE_FORECAST_ETS_STA", "Period length"),
    NC_("SC_OPCODE_FORECAST_ETS_STA", "Number of Samples in Period (default 1); length of the seasonal pattern."),
    NC_("SC_OPCODE_FORECAST_ETS_STA", "Data completion"),
    NC_("SC_OPCODE_FORECAST_ETS_STA", "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."),
    NC_("SC_OPCODE_FORECAST_ETS_STA", "Aggregation"),
    NC_("SC_OPCODE_FORECAST_ETS_STA", "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.")
};

// -=*# Resource for function FORECAST.ETS.STAT.MULT #*=-
const char* SC_OPCODE_FORECAST_ETS_STM_ARY[] =
{
    NC_("SC_OPCODE_FORECAST_ETS_STM", "Returns statistical value(s) using multiplicative Exponential Smoothing algorithm."),
    NC_("SC_OPCODE_FORECAST_ETS_STM", "Values"),
    NC_("SC_OPCODE_FORECAST_ETS_STM", "The data array from which you want to forecast."),
    NC_("SC_OPCODE_FORECAST_ETS_STM", "Timeline"),
    NC_("SC_OPCODE_FORECAST_ETS_STM", "The date or numeric array; a consistent step between values is needed."),
    NC_("SC_OPCODE_FORECAST_ETS_STM", "Statistic type"),
    NC_("SC_OPCODE_FORECAST_ETS_STM", "Value (1-9) or array of values, indicating which statistic will be returned for the calculated forecast"),
    NC_("SC_OPCODE_FORECAST_ETS_STM", "Period length"),
    NC_("SC_OPCODE_FORECAST_ETS_STM", "Number of samples in period (default 1); length of the seasonal pattern."),
    NC_("SC_OPCODE_FORECAST_ETS_STM", "Data completion"),
    NC_("SC_OPCODE_FORECAST_ETS_STM", "Data completion (default 1); 0 treats missing points as zero, 1 interpolates."),
    NC_("SC_OPCODE_FORECAST_ETS_STM", "Aggregation"),
    NC_("SC_OPCODE_FORECAST_ETS_STM", "Aggregation (default 1 = AVERAGE); method to be used to aggregate identical (time) values.")
};

// -=*# Resource for function FORECAST.LINEAR #*=-
const char* SC_OPCODE_FORECAST_LIN_ARY[] =
{
    NC_("SC_OPCODE_FORECAST_LIN", "Returns a value along a linear regression"),
    NC_("SC_OPCODE_FORECAST_LIN", "Value"),
    NC_("SC_OPCODE_FORECAST_LIN", "The X value for which the Y value on the regression linear is to be calculated."),
    NC_("SC_OPCODE_FORECAST_LIN", "Data Y"),
    NC_("SC_OPCODE_FORECAST_LIN", "The Y data array."),
    NC_("SC_OPCODE_FORECAST_LIN", "Data X"),
    NC_("SC_OPCODE_FORECAST_LIN", "The X data array.")
};

// -=*# Resource for function ADDRESS #*=-
const char* SC_OPCODE_ADDRESS_ARY[] =
{
    NC_("SC_OPCODE_ADDRESS", "Returns the reference to a cell as text."),
    NC_("SC_OPCODE_ADDRESS", "Row"),
    NC_("SC_OPCODE_ADDRESS", "The row number of the cell."),
    NC_("SC_OPCODE_ADDRESS", "Column"),
    NC_("SC_OPCODE_ADDRESS", "The column number of the cell."),
    NC_("SC_OPCODE_ADDRESS", "ABS"),
    NC_("SC_OPCODE_ADDRESS", "Specifies whether absolute or relative referencing is to be used."),
    NC_("SC_OPCODE_ADDRESS", "A1"),
    NC_("SC_OPCODE_ADDRESS", "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style."),
    NC_("SC_OPCODE_ADDRESS", "Sheet"),
    NC_("SC_OPCODE_ADDRESS", "The spreadsheet name of the cell reference.")
};

// -=*# Resource for function AREAS #*=-
const char* SC_OPCODE_AREAS_ARY[] =
{
    NC_("SC_OPCODE_AREAS", "Returns the number of individual ranges that belong to a (multiple) range."),
    NC_("SC_OPCODE_AREAS", "Reference"),
    NC_("SC_OPCODE_AREAS", "The reference to a (multiple) range.")
};

// -=*# Resource for function CHOOSE #*=-
const char* SC_OPCODE_CHOOSE_ARY[] =
{
    NC_("SC_OPCODE_CHOOSE", "Selects a value from a list of up to 30 value arguments."),
    NC_("SC_OPCODE_CHOOSE", "Index"),
    NC_("SC_OPCODE_CHOOSE", "The index of the value (1..30) selected."),
    NC_("SC_OPCODE_CHOOSE", "Value "),
    NC_("SC_OPCODE_CHOOSE", "Value 1, value 2,... The list of arguments from which a value is chosen.")
};

// -=*# Resource for function COLUMNS #*=-
const char* SC_OPCODE_COLUMN_ARY[] =
{
    NC_("SC_OPCODE_COLUMN", "Returns the internal column number of a reference."),
    NC_("SC_OPCODE_COLUMN", "Reference"),
    NC_("SC_OPCODE_COLUMN", "The reference to a cell or a range.")
};

// -=*# Resource for function ROW #*=-
const char* SC_OPCODE_ROW_ARY[] =
{
    NC_("SC_OPCODE_ROW", "Defines the internal row number of a reference."),
    NC_("SC_OPCODE_ROW", "Reference"),
    NC_("SC_OPCODE_ROW", "The reference to a cell or a range.")
};

// -=*# Resource for function SHEET #*=-
const char* SC_OPCODE_SHEET_ARY[] =
{
    NC_("SC_OPCODE_SHEET", "Returns the internal sheet number of a reference or a string."),
    NC_("SC_OPCODE_SHEET", "Reference"),
    NC_("SC_OPCODE_SHEET", "The reference to a cell or a range or the character string of a sheet name.")
};

// -=*# Resource for function COLUMNS #*=-
const char* SC_OPCODE_COLUMNS_ARY[] =
{
    NC_("SC_OPCODE_COLUMNS", "Returns the number of columns in an array or reference."),
    NC_("SC_OPCODE_COLUMNS", "Array"),
    NC_("SC_OPCODE_COLUMNS", "The array (reference) for which the number of columns is to be determined.")
};

// -=*# Resource for function ROWS #*=-
const char* SC_OPCODE_ROWS_ARY[] =
{
    NC_("SC_OPCODE_ROWS", "Returns the number of rows in a reference or array."),
    NC_("SC_OPCODE_ROWS", "Array"),
    NC_("SC_OPCODE_ROWS", "The array (reference) for which the number of rows is to be determined.")
};

// -=*# Resource for function SHEETS #*=-
const char* SC_OPCODE_SHEETS_ARY[] =
{
    NC_("SC_OPCODE_SHEETS", "Returns the number of sheets of a given reference. If no parameter has been entered, the total number of sheets in the document is returned."),
    NC_("SC_OPCODE_SHEETS", "Reference"),
    NC_("SC_OPCODE_SHEETS", "The reference to a cell or a range.")
};

// -=*# Resource for function HLOOKUP #*=-
const char* SC_OPCODE_H_LOOKUP_ARY[] =
{
    NC_("SC_OPCODE_H_LOOKUP", "Horizontal search and reference to the cells located below."),
    NC_("SC_OPCODE_H_LOOKUP", "Search criterion"),
    NC_("SC_OPCODE_H_LOOKUP", "The value to be found in the first row."),
    NC_("SC_OPCODE_H_LOOKUP", "Array"),
    NC_("SC_OPCODE_H_LOOKUP", "The array or the range for the reference."),
    NC_("SC_OPCODE_H_LOOKUP", "Index"),
    NC_("SC_OPCODE_H_LOOKUP", "The row index in the array."),
    NC_("SC_OPCODE_H_LOOKUP", "Sorted range lookup"),
    NC_("SC_OPCODE_H_LOOKUP", "If the value is TRUE or not given, the search row of the array represents a series of ranges, and must be sorted in ascending order.")
};

// -=*# Resource for function VLOOKUP #*=-
const char* SC_OPCODE_V_LOOKUP_ARY[] =
{
    NC_("SC_OPCODE_V_LOOKUP", "Vertical search and reference to indicated cells."),
    NC_("SC_OPCODE_V_LOOKUP", "Search criterion"),
    NC_("SC_OPCODE_V_LOOKUP", "The value to be found in the first column."),
    NC_("SC_OPCODE_V_LOOKUP", "Array"),
    NC_("SC_OPCODE_V_LOOKUP", "The array or range for referencing."),
    NC_("SC_OPCODE_V_LOOKUP", "Index"),
    NC_("SC_OPCODE_V_LOOKUP", "Column index number in the array."),
    NC_("SC_OPCODE_V_LOOKUP", "Sorted range lookup"),
    NC_("SC_OPCODE_V_LOOKUP", "If the value is TRUE or not given, the search column of the array represents a series of ranges, and must be sorted in ascending order.")
};

// -=*# Resource for function INDEX #*=-
const char* SC_OPCODE_INDEX_ARY[] =
{
    NC_("SC_OPCODE_INDEX", "Returns a reference to a cell from a defined range."),
    NC_("SC_OPCODE_INDEX", "Reference"),
    NC_("SC_OPCODE_INDEX", "The reference to a (multiple) range."),
    NC_("SC_OPCODE_INDEX", "Row"),
    NC_("SC_OPCODE_INDEX", "The row in the range."),
    NC_("SC_OPCODE_INDEX", "Column"),
    NC_("SC_OPCODE_INDEX", "The column in the range."),
    NC_("SC_OPCODE_INDEX", "Range"),
    NC_("SC_OPCODE_INDEX", "The index of the subrange if referring to a multiple range.")
};

// -=*# Resource for function INDIRECT #*=-
const char* SC_OPCODE_INDIRECT_ARY[] =
{
    NC_("SC_OPCODE_INDIRECT", "Returns the contents of a cell that is referenced in text form."),
    NC_("SC_OPCODE_INDIRECT", "Reference"),
    NC_("SC_OPCODE_INDIRECT", "The cell whose contents are to be evaluated is to be referenced in text form (e.g. \"A1\")."),
    NC_("SC_OPCODE_INDIRECT", "A1"),
    NC_("SC_OPCODE_INDIRECT", "The reference style: 0 or FALSE means R1C1 style, any other value or omitted means A1 style.")
};

// -=*# Resource for function LOOKUP #*=-
const char* SC_OPCODE_LOOKUP_ARY[] =
{
    NC_("SC_OPCODE_LOOKUP", "Determines a value in a vector by comparison to values in another vector."),
    NC_("SC_OPCODE_LOOKUP", "Search criterion"),
    NC_("SC_OPCODE_LOOKUP", "The value to be used for comparison."),
    NC_("SC_OPCODE_LOOKUP", "Search vector"),
    NC_("SC_OPCODE_LOOKUP", "The vector (row or column) in which to search."),
    NC_("SC_OPCODE_LOOKUP", "Result vector"),
    NC_("SC_OPCODE_LOOKUP", "The vector (row or range) from which the value is to be determined.")
};

// -=*# Resource for function MATCH #*=-
const char* SC_OPCODE_MATCH_ARY[] =
{
    NC_("SC_OPCODE_MATCH", "Defines a position in an array after comparing values."),
    NC_("SC_OPCODE_MATCH", "Search criterion"),
    NC_("SC_OPCODE_MATCH", "The value to be used for comparison."),
    NC_("SC_OPCODE_MATCH", "Lookup array"),
    NC_("SC_OPCODE_MATCH", "The array (range) in which the search is made."),
    NC_("SC_OPCODE_MATCH", "Type"),
    NC_("SC_OPCODE_MATCH", "Type can take the value 1 (first column array ascending), 0 (exact match or wildcard or regular expression match) or -1 (first column array descending) and determines the criteria to be used for comparison purposes.")
};

// -=*# Resource for function OFFSET #*=-
const char* SC_OPCODE_OFFSET_ARY[] =
{
    NC_("SC_OPCODE_OFFSET", "Returns a reference which has been moved in relation to the starting point."),
    NC_("SC_OPCODE_OFFSET", "Reference"),
    NC_("SC_OPCODE_OFFSET", "The reference (cell) from which to base the movement."),
    NC_("SC_OPCODE_OFFSET", "Rows"),
    NC_("SC_OPCODE_OFFSET", "The number of rows to be moved either up or down."),
    NC_("SC_OPCODE_OFFSET", "Columns"),
    NC_("SC_OPCODE_OFFSET", "The number of columns that are to be moved to the left or to the right."),
    NC_("SC_OPCODE_OFFSET", "Height"),
    NC_("SC_OPCODE_OFFSET", "The number of rows of the moved reference."),
    NC_("SC_OPCODE_OFFSET", "Width"),
    NC_("SC_OPCODE_OFFSET", "The number of columns in the moved reference.")
};

// -=*# Resource for function ERRORTYPE #*=-
const char* SC_OPCODE_ERROR_TYPE_ARY[] =
{
    NC_("SC_OPCODE_ERROR_TYPE", "Returns a number corresponding to an error type"),
    NC_("SC_OPCODE_ERROR_TYPE", "Reference"),
    NC_("SC_OPCODE_ERROR_TYPE", "The reference (cell) in which the error occurred.")
};

// -=*# Resource for function ERROR.TYPE #*=-
const char* SC_OPCODE_ERROR_TYPE_ODF_ARY[] =
{
    NC_("SC_OPCODE_ERROR_TYPE_ODF", "Returns a number corresponding to one of the error values or #N/A if no error exists"),
    NC_("SC_OPCODE_ERROR_TYPE_ODF", "Expression"),
    NC_("SC_OPCODE_ERROR_TYPE_ODF", "The error value whose identifying number you want to find. Can be the actual error value or a reference to a cell that you want to test.")
};

// -=*# Resource for function STYLE #*=-
const char* SC_OPCODE_STYLE_ARY[] =
{
    NC_("SC_OPCODE_STYLE", "Applies a Style to the formula cell."),
    NC_("SC_OPCODE_STYLE", "Style"),
    NC_("SC_OPCODE_STYLE", "The name of the Style to be applied."),
    NC_("SC_OPCODE_STYLE", "Time"),
    NC_("SC_OPCODE_STYLE", "The time (in seconds) that the Style is to remain valid."),
    NC_("SC_OPCODE_STYLE", "Style 2"),
    NC_("SC_OPCODE_STYLE", "The style to be applied after time expires.")
};

// -=*# Resource for function DDE #*=-
const char* SC_OPCODE_DDE_ARY[] =
{
    NC_("SC_OPCODE_DDE", "Result of a DDE link."),
    NC_("SC_OPCODE_DDE", "Server"),
    NC_("SC_OPCODE_DDE", "The name of the server application."),
    NC_("SC_OPCODE_DDE", "Topic/file"),
    NC_("SC_OPCODE_DDE", "The topic or name of the file."),
    NC_("SC_OPCODE_DDE", "Item/range"),
    NC_("SC_OPCODE_DDE", "The item or range from which data is to be taken."),
    NC_("SC_OPCODE_DDE", "Mode"),
    NC_("SC_OPCODE_DDE", "Defines how data is to be converted to numbers.")
};

// -=*# Resource for function HYPERLINK #*=-
const char* SC_OPCODE_HYPERLINK_ARY[] =
{
    NC_("SC_OPCODE_HYPERLINK", "Construct a Hyperlink."),
    NC_("SC_OPCODE_HYPERLINK", "URL"),
    NC_("SC_OPCODE_HYPERLINK", "The clickable URL."),
    NC_("SC_OPCODE_HYPERLINK", "Cell text"),
    NC_("SC_OPCODE_HYPERLINK", "The cell text to be displayed.")
};

// -=*# Resource for function GETPIVOTDATA #*=-
const char* SC_OPCODE_GET_PIVOT_DATA_ARY[] =
{
    NC_("SC_OPCODE_GET_PIVOT_DATA", "Extracts value(s) from a pivot table."),
    NC_("SC_OPCODE_GET_PIVOT_DATA", "Data field"),
    NC_("SC_OPCODE_GET_PIVOT_DATA", "The name of the pivot table field to extract."),
    NC_("SC_OPCODE_GET_PIVOT_DATA", "Pivot table"),
    NC_("SC_OPCODE_GET_PIVOT_DATA", "A reference to a cell or range in the pivot table."),
    NC_("SC_OPCODE_GET_PIVOT_DATA", "Field name / item"),
    NC_("SC_OPCODE_GET_PIVOT_DATA", "Field name/value pair to filter the target data.")
};

// -=*# Resource for function BAHTTEXT #*=-
const char* SC_OPCODE_BAHTTEXT_ARY[] =
{
    NC_("SC_OPCODE_BAHTTEXT", "Converts a number to text (Baht)."),
    NC_("SC_OPCODE_BAHTTEXT", "Number"),
    NC_("SC_OPCODE_BAHTTEXT", "The number to convert.")
};

// -=*# Resource for function JIS #*=-
const char* SC_OPCODE_JIS_ARY[] =
{
    NC_("SC_OPCODE_JIS", "Converts half-width ASCII and katakana characters to full-width."),
    NC_("SC_OPCODE_JIS", "Text"),
    NC_("SC_OPCODE_JIS", "The text to convert.")
};

// -=*# Resource for function ASC #*=-
const char* SC_OPCODE_ASC_ARY[] =
{
    NC_("SC_OPCODE_ASC", "Converts full-width ASCII and katakana characters to half-width."),
    NC_("SC_OPCODE_ASC", "Text"),
    NC_("SC_OPCODE_ASC", "The text to convert.")
};

// -=*# Resource for function CODE #*=-
const char* SC_OPCODE_CODE_ARY[] =
{
    NC_("SC_OPCODE_CODE", "Returns a numeric code for the first character in a text string."),
    NC_("SC_OPCODE_CODE", "Text"),
    NC_("SC_OPCODE_CODE", "This is the text for which the code of the first character is to be found.")
};

// -=*# Resource for function DOLLAR #*=-
const char* SC_OPCODE_CURRENCY_ARY[] =
{
    NC_("SC_OPCODE_CURRENCY", "Converts a number to text in currency format."),
    NC_("SC_OPCODE_CURRENCY", "Value"),
    NC_("SC_OPCODE_CURRENCY", "Value is a number, a reference to a cell containing a number or a formula that results in a number."),
    NC_("SC_OPCODE_CURRENCY", "Decimals"),
    NC_("SC_OPCODE_CURRENCY", "Decimal places. Denotes the number of digits to the right of the decimal point.")
};

// -=*# Resource for function CHAR #*=-
const char* SC_OPCODE_CHAR_ARY[] =
{
    NC_("SC_OPCODE_CHAR", "Converts a code number into a character or letter."),
    NC_("SC_OPCODE_CHAR", "Number"),
    NC_("SC_OPCODE_CHAR", "The code value for the character.")
};

// -=*# Resource for function CLEAN #*=-
const char* SC_OPCODE_CLEAN_ARY[] =
{
    NC_("SC_OPCODE_CLEAN", "Removes all nonprintable characters from text."),
    NC_("SC_OPCODE_CLEAN", "Text"),
    NC_("SC_OPCODE_CLEAN", "The text from which nonprintable characters are to be removed.")
};

// -=*# Resource for function CONCATENATE #*=-
const char* SC_OPCODE_CONCAT_ARY[] =
{
    NC_("SC_OPCODE_CONCAT", "Combines several text items into one."),
    NC_("SC_OPCODE_CONCAT", "Text"),
    NC_("SC_OPCODE_CONCAT", "Text for the concatenation.")
};

// -=*# Resource for function CONCAT #*=-
const char* SC_OPCODE_CONCAT_MS_ARY[] =
{
    NC_("SC_OPCODE_CONCAT_MS", "Combines several text items into one, accepts cell ranges as arguments."),
    NC_("SC_OPCODE_CONCAT_MS", "Text"),
    NC_("SC_OPCODE_CONCAT_MS", "Text and/or cell ranges for the concatenation.")
};

// -=*# Resource for function TEXTJOIN #*=-
const char* SC_OPCODE_TEXTJOIN_MS_ARY[] =
{
    NC_("SC_OPCODE_TEXTJOIN_MS", "Combines several text items into one, accepts cell ranges as arguments. Uses delimiter between items."),
    NC_("SC_OPCODE_TEXTJOIN_MS", "Delimiter"),
    NC_("SC_OPCODE_TEXTJOIN_MS", "Text string to be used as delimiter."),
    NC_("SC_OPCODE_TEXTJOIN_MS", "Skip empty cells"),
    NC_("SC_OPCODE_TEXTJOIN_MS", "If TRUE, empty cells will be ignored."),
    NC_("SC_OPCODE_TEXTJOIN_MS", "Text"),
    NC_("SC_OPCODE_TEXTJOIN_MS", "Text and/or cell ranges for the concatenation.")
};

// -=*# Resource for function IFS #*=-
const char* SC_OPCODE_IFS_MS_ARY[] =
{
    NC_("SC_OPCODE_IFS_MS", "Checks 1 or more conditions and returns a value corresponding to the first true condition."),
    NC_("SC_OPCODE_IFS_MS", "Test"),
    NC_("SC_OPCODE_IFS_MS", "Any value or expression which can be either TRUE or FALSE."),
    NC_("SC_OPCODE_IFS_MS", "Result"),
    NC_("SC_OPCODE_IFS_MS", "The result of the function if test is TRUE.")
};

// -=*# Resource for function SWITCH #*=-
const char* SC_OPCODE_SWITCH_MS_ARY[] =
{
    NC_("SC_OPCODE_SWITCH_MS", "Checks 1 or more values and returns a result corresponding to the first value equal to the given expression."),
    NC_("SC_OPCODE_SWITCH_MS", "Expression"),
    NC_("SC_OPCODE_SWITCH_MS", "Value that will be compared against value1-valueN."),
    NC_("SC_OPCODE_SWITCH_MS", "Value"),
    NC_("SC_OPCODE_SWITCH_MS", "Value that will be compared against expression."),
    NC_("SC_OPCODE_SWITCH_MS", "Result"),
    NC_("SC_OPCODE_SWITCH_MS", "Value to return when corresponding value argument matches expression.")
};

const char* SC_OPCODE_MINIFS_MS_ARY[] =
{
    NC_("SC_OPCODE_MINIFS_MS", "Returns the minimum value in a range that meet multiple criteria in multiple ranges."),
    NC_("SC_OPCODE_MINIFS_MS", "Min range"),
    NC_("SC_OPCODE_MINIFS_MS", "The range from which the minimum will be determined."),
    NC_("SC_OPCODE_MINIFS_MS", "Range "),
    NC_("SC_OPCODE_MINIFS_MS", "Range 1, range 2,... are the ranges to be evaluated by the criteria given."),
    NC_("SC_OPCODE_MINIFS_MS", "Criteria "),
    NC_("SC_OPCODE_MINIFS_MS", "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.")
};

const char* SC_OPCODE_MAXIFS_MS_ARY[] =
{
    NC_("SC_OPCODE_MAXIFS_MS", "Returns the maximum value in a range that meet multiple criteria in multiple ranges."),
    NC_("SC_OPCODE_MAXIFS_MS", "Max range"),
    NC_("SC_OPCODE_MAXIFS_MS", "The range from which the maximum will be determined."),
    NC_("SC_OPCODE_MAXIFS_MS", "Range "),
    NC_("SC_OPCODE_MAXIFS_MS", "Range 1, range 2,... are the ranges to be evaluated by the criteria given."),
    NC_("SC_OPCODE_MAXIFS_MS", "Criteria "),
    NC_("SC_OPCODE_MAXIFS_MS", "Criteria 1, criteria 2,... are the criteria to be applied to the ranges given.")
};

// -=*# Resource for function EXACT #*=-
const char* SC_OPCODE_EXACT_ARY[] =
{
    NC_("SC_OPCODE_EXACT", "Specifies whether two texts are identical."),
    NC_("SC_OPCODE_EXACT", "Text 1"),
    NC_("SC_OPCODE_EXACT", "The first text to be used for comparing texts."),
    NC_("SC_OPCODE_EXACT", "Text 2"),
    NC_("SC_OPCODE_EXACT", "The second text for comparing texts.")
};

// -=*# Resource for function FIND #*=-
const char* SC_OPCODE_FIND_ARY[] =
{
    NC_("SC_OPCODE_FIND", "Looks for a string of text within another (case sensitive)"),
    NC_("SC_OPCODE_FIND", "Find text"),
    NC_("SC_OPCODE_FIND", "The text to be found."),
    NC_("SC_OPCODE_FIND", "Text"),
    NC_("SC_OPCODE_FIND", "The text in which a search is to be made."),
    NC_("SC_OPCODE_FIND", "Position"),
    NC_("SC_OPCODE_FIND", "The position in the text from which the search starts.")
};

// -=*# Resource for function SEARCH #*=-
const char* SC_OPCODE_SEARCH_ARY[] =
{
    NC_("SC_OPCODE_SEARCH", "Looks for one text value within another (not case-sensitive)."),
    NC_("SC_OPCODE_SEARCH", "Find text"),
    NC_("SC_OPCODE_SEARCH", "The text to be found."),
    NC_("SC_OPCODE_SEARCH", "Text"),
    NC_("SC_OPCODE_SEARCH", "The text in which a search is to be made."),
    NC_("SC_OPCODE_SEARCH", "Position"),
    NC_("SC_OPCODE_SEARCH", "The position in the text where the search is started.")
};

// -=*# Resource for function TRIM #*=-
const char* SC_OPCODE_TRIM_ARY[] =
{
    NC_("SC_OPCODE_TRIM", "Removes extra spaces from text."),
    NC_("SC_OPCODE_TRIM", "Text"),
    NC_("SC_OPCODE_TRIM", "The text in which extra spaces between words are to be deleted.")
};

// -=*# Resource for function PROPER #*=-
const char* SC_OPCODE_PROPER_ARY[] =
{
    NC_("SC_OPCODE_PROPER", "Capitalizes the first letter in all words."),
    NC_("SC_OPCODE_PROPER", "Text"),
    NC_("SC_OPCODE_PROPER", "The text in which the beginning of words are to be replaced by capital letters.")
};

// -=*# Resource for function UPPER #*=-
const char* SC_OPCODE_UPPER_ARY[] =
{
    NC_("SC_OPCODE_UPPER", "Converts text to uppercase."),
    NC_("SC_OPCODE_UPPER", "Text"),
    NC_("SC_OPCODE_UPPER", "The text in which lower case letters are to be converted to capitals.")
};

// -=*# Resource for function LOWER #*=-
const char* SC_OPCODE_LOWER_ARY[] =
{
    NC_("SC_OPCODE_LOWER", "Converts text to lowercase."),
    NC_("SC_OPCODE_LOWER", "Text"),
    NC_("SC_OPCODE_LOWER", "The text in which capitals are converted to lower case letters.")
};

// -=*# Resource for function VALUE #*=-
const char* SC_OPCODE_VALUE_ARY[] =
{
    NC_("SC_OPCODE_VALUE", "Converts text to a number."),
    NC_("SC_OPCODE_VALUE", "Text"),
    NC_("SC_OPCODE_VALUE", "The text to be converted to a number.")
};

// -=*# Resource for function TEXT #*=-
const char* SC_OPCODE_TEXT_ARY[] =
{
    NC_("SC_OPCODE_TEXT", "Converts a number to text according to a given format."),
    NC_("SC_OPCODE_TEXT", "Number"),
    NC_("SC_OPCODE_TEXT", "The numeric value to be converted."),
    NC_("SC_OPCODE_TEXT", "Format"),
    NC_("SC_OPCODE_TEXT", "The text that describes the format.")
};

// -=*# Resource for function T #*=-
const char* SC_OPCODE_T_ARY[] =
{
    NC_("SC_OPCODE_T", "Returns a value if it is text, otherwise an empty string."),
    NC_("SC_OPCODE_T", "Value"),
    NC_("SC_OPCODE_T", "The value to be checked and returned if it is text.")
};

// -=*# Resource for function REPLACE #*=-
const char* SC_OPCODE_REPLACE_ARY[] =
{
    NC_("SC_OPCODE_REPLACE", "Replaces characters within a text string with a different text string."),
    NC_("SC_OPCODE_REPLACE", "Text"),
    NC_("SC_OPCODE_REPLACE", "The text in which some characters are to be replaced."),
    NC_("SC_OPCODE_REPLACE", "Position"),
    NC_("SC_OPCODE_REPLACE", "The character position from which text is to be replaced."),
    NC_("SC_OPCODE_REPLACE", "Length"),
    NC_("SC_OPCODE_REPLACE", "The number of characters to be replaced."),
    NC_("SC_OPCODE_REPLACE", "New text"),
    NC_("SC_OPCODE_REPLACE", "The text to be inserted.")
};

// -=*# Resource for function FIXED #*=-
const char* SC_OPCODE_FIXED_ARY[] =
{
    NC_("SC_OPCODE_FIXED", "Formats a number with a fixed number of places after the decimal point and thousands separator."),
    NC_("SC_OPCODE_FIXED", "Number"),
    NC_("SC_OPCODE_FIXED", "The number to be formatted."),
    NC_("SC_OPCODE_FIXED", "Decimals"),
    NC_("SC_OPCODE_FIXED", "Decimal places. The number of fixed decimal places that are to be displayed."),
    NC_("SC_OPCODE_FIXED", "No thousands separators"),
    NC_("SC_OPCODE_FIXED", "Thousands separator. If 0 or omitted the locale group separator is used else the separator is suppressed.")
};

// -=*# Resource for function LEN #*=-
const char* SC_OPCODE_LEN_ARY[] =
{
    NC_("SC_OPCODE_LEN", "Calculates length of a text string."),
    NC_("SC_OPCODE_LEN", "Text"),
    NC_("SC_OPCODE_LEN", "The text in which the length is to be determined.")
};

// -=*# Resource for function LEFT #*=-
const char* SC_OPCODE_LEFT_ARY[] =
{
    NC_("SC_OPCODE_LEFT", "Returns the first character or characters of a text."),
    NC_("SC_OPCODE_LEFT", "Text"),
    NC_("SC_OPCODE_LEFT", "The text where the initial partial words are to be determined."),
    NC_("SC_OPCODE_LEFT", "Number"),
    NC_("SC_OPCODE_LEFT", "The number of characters for the start text.")
};

// -=*# Resource for function RIGHT #*=-
const char* SC_OPCODE_RIGHT_ARY[] =
{
    NC_("SC_OPCODE_RIGHT", "Returns the last character or characters of a text."),
    NC_("SC_OPCODE_RIGHT", "Text"),
    NC_("SC_OPCODE_RIGHT", "The text in which the end partial words are to be determined."),
    NC_("SC_OPCODE_RIGHT", "Number"),
    NC_("SC_OPCODE_RIGHT", "The number of characters for the end text.")
};

// -=*# Resource for function MID #*=-
const char* SC_OPCODE_MID_ARY[] =
{
    NC_("SC_OPCODE_MID", "Returns a partial text string of a text."),
    NC_("SC_OPCODE_MID", "Text"),
    NC_("SC_OPCODE_MID", "The text in which partial words are to be determined."),
    NC_("SC_OPCODE_MID", "Start"),
    NC_("SC_OPCODE_MID", "The position from which the part word is to be determined."),
    NC_("SC_OPCODE_MID", "Number"),
    NC_("SC_OPCODE_MID", "The number of characters for the text.")
};

// -=*# Resource for function REPT #*=-
const char* SC_OPCODE_REPT_ARY[] =
{
    NC_("SC_OPCODE_REPT", "Repeats text a given number of times."),
    NC_("SC_OPCODE_REPT", "Text"),
    NC_("SC_OPCODE_REPT", "The text to be repeated."),
    NC_("SC_OPCODE_REPT", "Number"),
    NC_("SC_OPCODE_REPT", "The number of times the text is to be repeated.")
};

// -=*# Resource for function SUBSTITUTE #*=-
const char* SC_OPCODE_SUBSTITUTE_ARY[] =
{
    NC_("SC_OPCODE_SUBSTITUTE", "Substitutes new text for old text in a string."),
    NC_("SC_OPCODE_SUBSTITUTE", "Text"),
    NC_("SC_OPCODE_SUBSTITUTE", "The text in which partial words are to be replaced."),
    NC_("SC_OPCODE_SUBSTITUTE", "Search text"),
    NC_("SC_OPCODE_SUBSTITUTE", "The partial string to be (repeatedly) replaced."),
    NC_("SC_OPCODE_SUBSTITUTE", "New text"),
    NC_("SC_OPCODE_SUBSTITUTE", "The text which is to replace the text string."),
    NC_("SC_OPCODE_SUBSTITUTE", "Occurrence"),
    NC_("SC_OPCODE_SUBSTITUTE", "Which occurrence of the old text is to be replaced.")
};

// -=*# Resource for function REGEX #*=-
const char* SC_OPCODE_REGEX_ARY[] =
{
    NC_("SC_OPCODE_REGEX", "Matches and extracts or optionally replaces text using regular expressions."),
    NC_("SC_OPCODE_REGEX", "Text"),
    NC_("SC_OPCODE_REGEX", "The text to be operated on."),
    NC_("SC_OPCODE_REGEX", "Expression"),
    NC_("SC_OPCODE_REGEX", "The regular expression pattern to be matched."),
    NC_("SC_OPCODE_REGEX", "Replacement"),
    NC_("SC_OPCODE_REGEX", "The replacement text and references to capture groups."),
    NC_("SC_OPCODE_REGEX", "Flags or Occurrence"),
    NC_("SC_OPCODE_REGEX", "Text specifying option flags, \"g\" for global replacement. Or number of occurrence to match or replace.")
};

// -=*# Resource for function BASE #*=-
const char* SC_OPCODE_BASE_ARY[] =
{
    NC_("SC_OPCODE_BASE", "Converts a positive integer to text from a number system to the base defined."),
    NC_("SC_OPCODE_BASE", "Number"),
    NC_("SC_OPCODE_BASE", "The number to be converted."),
    NC_("SC_OPCODE_BASE", "Radix"),
    NC_("SC_OPCODE_BASE", "The base number for conversion must be in the range 2 - 36."),
    NC_("SC_OPCODE_BASE", "Minimum length"),
    NC_("SC_OPCODE_BASE", "If the text is shorter than the specified length, zeros are added to the left of the string.")
};

// -=*# Resource for function DECIMAL #*=-
const char* SC_OPCODE_DECIMAL_ARY[] =
{
    NC_("SC_OPCODE_DECIMAL", "Converts a text of a specified number system to a positive integer in the base given."),
    NC_("SC_OPCODE_DECIMAL", "Text"),
    NC_("SC_OPCODE_DECIMAL", "The text to be converted."),
    NC_("SC_OPCODE_DECIMAL", "Radix"),
    NC_("SC_OPCODE_DECIMAL", "The base number for conversion must be in the range 2 - 36.")
};

// -=*# Resource for function CONVERT_OOO #*=-
const char* SC_OPCODE_CONVERT_OOO_ARY[] =
{
    NC_("SC_OPCODE_CONVERT_OOO", "Converts a value according to a conversion table in the configuration (main.xcd)."),
    NC_("SC_OPCODE_CONVERT_OOO", "Value"),
    NC_("SC_OPCODE_CONVERT_OOO", "The value to be converted."),
    NC_("SC_OPCODE_CONVERT_OOO", "Text"),
    NC_("SC_OPCODE_CONVERT_OOO", "Unit from which something is converted, case-sensitive."),
    NC_("SC_OPCODE_CONVERT_OOO", "Text"),
    NC_("SC_OPCODE_CONVERT_OOO", "Unit into which something is converted, case-sensitive.")
};

// -=*# Resource for function ROMAN #*=-
const char* SC_OPCODE_ROMAN_ARY[] =
{
    NC_("SC_OPCODE_ROMAN", "Converts a number to a Roman numeral."),
    NC_("SC_OPCODE_ROMAN", "Number"),
    NC_("SC_OPCODE_ROMAN", "The number to be converted to a Roman numeral must be in the 0 - 3999 range."),
    NC_("SC_OPCODE_ROMAN", "Mode"),
    NC_("SC_OPCODE_ROMAN", "The more this value increases, the more the Roman numeral is simplified. The value must be in the 0 - 4 range.")
};

// -=*# Resource for function ARABIC #*=-
const char* SC_OPCODE_ARABIC_ARY[] =
{
    NC_("SC_OPCODE_ARABIC", "Calculates the value of a Roman numeral."),
    NC_("SC_OPCODE_ARABIC", "Text"),
    NC_("SC_OPCODE_ARABIC", "The text that represents a Roman numeral.")
};

const char* SC_OPCODE_INFO_ARY[] =
{
    NC_("SC_OPCODE_INFO", "Returns information about the environment."),
    NC_("SC_OPCODE_INFO", "Text"),
    NC_("SC_OPCODE_INFO", "Can be \"osversion\", \"system\", \"release\", \"numfile\", and \"recalc\".")
};

const char* SC_OPCODE_UNICODE_ARY[] =
{
    NC_("SC_OPCODE_UNICODE", "Returns the numeric code for the first Unicode character in a text string."),
    NC_("SC_OPCODE_UNICODE", "Text"),
    NC_("SC_OPCODE_UNICODE", "This is the text for which the code of the first character is to be found.")
};

const char* SC_OPCODE_UNICHAR_ARY[] =
{
    NC_("SC_OPCODE_UNICHAR", "Converts a code number into a Unicode character or letter."),
    NC_("SC_OPCODE_UNICHAR", "Number"),
    NC_("SC_OPCODE_UNICHAR", "The code value for the character.")
};

const char* SC_OPCODE_EUROCONVERT_ARY[] =
{
    NC_("SC_OPCODE_EUROCONVERT", "Converts a value from one to another Euro currency."),
    NC_("SC_OPCODE_EUROCONVERT", "Value"),
    NC_("SC_OPCODE_EUROCONVERT", "The value to be converted."),
    NC_("SC_OPCODE_EUROCONVERT", "From currency"),
    NC_("SC_OPCODE_EUROCONVERT", "ISO 4217 code of the currency from which is converted."),
    NC_("SC_OPCODE_EUROCONVERT", "To currency"),
    NC_("SC_OPCODE_EUROCONVERT", "ISO 4217 code of the currency into which is converted."),
    NC_("SC_OPCODE_EUROCONVERT", "Full precision"),
    NC_("SC_OPCODE_EUROCONVERT", "If omitted or 0 or FALSE, the result is rounded to the decimals of To_currency. Else the result is not rounded."),
    NC_("SC_OPCODE_EUROCONVERT", "Triangulation precision"),
    /* This description uses almost all available space in the dialog, make sure translations fit in size */
    NC_("SC_OPCODE_EUROCONVERT", "If given and >=3, the intermediate result of a triangular conversion is rounded to that precision. If omitted, the result is not rounded.")
};

const char* SC_OPCODE_NUMBERVALUE_ARY[] =
{
    NC_("SC_OPCODE_NUMBERVALUE", "Converts text to a number, in a locale-independent way."),
    NC_("SC_OPCODE_NUMBERVALUE", "Text"),
    NC_("SC_OPCODE_NUMBERVALUE", "The text to be converted to a number."),
    NC_("SC_OPCODE_NUMBERVALUE", "Decimal separator"),
    NC_("SC_OPCODE_NUMBERVALUE", "Defines the character used as the decimal separator."),
    NC_("SC_OPCODE_NUMBERVALUE", "Group separator"),
    NC_("SC_OPCODE_NUMBERVALUE", "Defines the character(s) used as the group separator.")
};


const char* SC_OPCODE_BITAND_ARY[] =
{
    NC_("SC_OPCODE_BITAND", "Bitwise \"AND\" of two integers."),
    NC_("SC_OPCODE_BITAND", "Number1"),
    NC_("SC_OPCODE_BITAND", "Positive integer less than 2^48."),
    NC_("SC_OPCODE_BITAND", "Number2"),
    NC_("SC_OPCODE_BITAND", "Positive integer less than 2^48.")
};

const char* SC_OPCODE_BITOR_ARY[] =
{
    NC_("SC_OPCODE_BITOR", "Bitwise \"OR\" of two integers."),
    NC_("SC_OPCODE_BITOR", "Number1"),
    NC_("SC_OPCODE_BITOR", "Positive integer less than 2^48."),
    NC_("SC_OPCODE_BITOR", "Number2"),
    NC_("SC_OPCODE_BITOR", "Positive integer less than 2^48.")
};

const char* SC_OPCODE_BITXOR_ARY[] =
{
    NC_("SC_OPCODE_BITXOR", "Bitwise \"exclusive OR\" of two integers."),
    NC_("SC_OPCODE_BITXOR", "Number1"),
    NC_("SC_OPCODE_BITXOR", "Positive integer less than 2^48."),
    NC_("SC_OPCODE_BITXOR", "Number2"),
    NC_("SC_OPCODE_BITXOR", "Positive integer less than 2^48.")
};

const char* SC_OPCODE_BITRSHIFT_ARY[] =
{
    NC_("SC_OPCODE_BITRSHIFT", "Bitwise right shift of an integer value."),
    NC_("SC_OPCODE_BITRSHIFT", "Number"),
    NC_("SC_OPCODE_BITRSHIFT", "The value to be shifted. Positive integer less than 2^48."),
    NC_("SC_OPCODE_BITRSHIFT", "Shift"),
    NC_("SC_OPCODE_BITRSHIFT", "The integer number of bits the value is to be shifted.")
};

const char* SC_OPCODE_BITLSHIFT_ARY[] =
{
    NC_("SC_OPCODE_BITLSHIFT", "Bitwise left shift of an integer value."),
    NC_("SC_OPCODE_BITLSHIFT", "Number"),
    NC_("SC_OPCODE_BITLSHIFT", "The value to be shifted. Positive integer less than 2^48."),
    NC_("SC_OPCODE_BITLSHIFT", "Shift"),
    NC_("SC_OPCODE_BITLSHIFT", "The integer number of bits the value is to be shifted.")
};

const char* SC_OPCODE_LENB_ARY[] =
{
    NC_("SC_OPCODE_LENB", "Calculates length of a text string, with DBCS"),
    NC_("SC_OPCODE_LENB", "Text"),
    NC_("SC_OPCODE_LENB", "The text in which the length is to be determined.")
};

const char* SC_OPCODE_RIGHTB_ARY[] =
{
    NC_("SC_OPCODE_RIGHTB", "Returns the last character or characters of a text,with DBCS"),
    NC_("SC_OPCODE_RIGHTB", "Text"),
    NC_("SC_OPCODE_RIGHTB", "The text in which the end partial words are to be determined."),
    NC_("SC_OPCODE_RIGHTB", "Number"),
    NC_("SC_OPCODE_RIGHTB", "The number of characters for the end text.")
};

const char* SC_OPCODE_LEFTB_ARY[] =
{
    NC_("SC_OPCODE_LEFTB", "Returns the first character or characters of a text,with DBCS"),
    NC_("SC_OPCODE_LEFTB", "Text"),
    NC_("SC_OPCODE_LEFTB", "The text where the initial partial words are to be determined."),
    NC_("SC_OPCODE_LEFTB", "Number"),
    NC_("SC_OPCODE_LEFTB", "The number of characters for the start text.")
};

const char* SC_OPCODE_MIDB_ARY[] =
{
    NC_("SC_OPCODE_MIDB", "Returns a partial text string of a text, with DBCS"),
    NC_("SC_OPCODE_MIDB", "Text"),
    NC_("SC_OPCODE_MIDB", "The text in which partial words are to be determined."),
    NC_("SC_OPCODE_MIDB", "Start"),
    NC_("SC_OPCODE_MIDB", "The position from which the part word is to be determined."),
    NC_("SC_OPCODE_MIDB", "Number"),
    NC_("SC_OPCODE_MIDB", "The number of characters for the text.")
};

const char* SC_OPCODE_FILTERXML_ARY[] =
{
    NC_("SC_OPCODE_FILTERXML", "Apply an XPath expression to an XML document"),
    NC_("SC_OPCODE_FILTERXML", "XML Document"),
    NC_("SC_OPCODE_FILTERXML", "String containing a valid XML stream"),
    NC_("SC_OPCODE_FILTERXML", "XPath expression"),
    NC_("SC_OPCODE_FILTERXML", "String containing a valid XPath expression")
};

const char* SC_OPCODE_COLOR_ARY[] =
{
    NC_("SC_OPCODE_COLOR", "Returns an implementation defined value representing a RGBA color"),
    NC_("SC_OPCODE_COLOR", "Red"),
    NC_("SC_OPCODE_COLOR", "Value of red"),
    NC_("SC_OPCODE_COLOR", "Green"),
    NC_("SC_OPCODE_COLOR", "Value of green"),
    NC_("SC_OPCODE_COLOR", "Blue"),
    NC_("SC_OPCODE_COLOR", "Value of blue"),
    NC_("SC_OPCODE_COLOR", "Alpha"),
    NC_("SC_OPCODE_COLOR", "Value of alpha")
};

const char* SC_OPCODE_WEBSERVICE_ARY[] =
{
    NC_("SC_OPCODE_WEBSERVICE", "Get some web-content from a URI."),
    NC_("SC_OPCODE_WEBSERVICE", "URI"),
    NC_("SC_OPCODE_WEBSERVICE", "URI of the webservice")
};

const char* SC_OPCODE_ENCODEURL_ARY[] =
{
    NC_("SC_OPCODE_ENCODEURL", "Return a URL-encoded string."),
    NC_("SC_OPCODE_ENCODEURL", "Text"),
    NC_("SC_OPCODE_ENCODEURL", "A string to be URL-encoded")
};

const char* SC_OPCODE_ERF_MS_ARY[] =
{
    NC_("SC_OPCODE_ERF_MS", "Returns the error function."),
    NC_("SC_OPCODE_ERF_MS", "Lower limit"),
    NC_("SC_OPCODE_ERF_MS", "The lower limit for integration")
};

const char* SC_OPCODE_ERFC_MS_ARY[] =
{
    NC_("SC_OPCODE_ERFC_MS", "Returns the complementary error function."),
    NC_("SC_OPCODE_ERFC_MS", "Lower limit"),
    NC_("SC_OPCODE_ERFC_MS", "The lower limit for integration")
};

const char* SC_OPCODE_RAWSUBTRACT_ARY[] =
{
    NC_("SC_OPCODE_RAWSUBTRACT", "Returns the subtraction of numbers. Like a-b-c but without eliminating small roundoff errors."),
    NC_("SC_OPCODE_RAWSUBTRACT", "Minuend"),
    NC_("SC_OPCODE_RAWSUBTRACT", "Number from which following arguments are subtracted."),
    NC_("SC_OPCODE_RAWSUBTRACT", "Subtrahend "),
    NC_("SC_OPCODE_RAWSUBTRACT", "Subtrahend 1, subtrahend 2, ... are numerical arguments subtracted from the minuend.")
};

// -=*# Resource for function ROUNDSIG #*=-
const char* SC_OPCODE_ROUNDSIG_ARY[] =
{
    NC_("SC_OPCODE_ROUNDSIG", "Rounds a number to predefined significant digits."),
    NC_("SC_OPCODE_ROUNDSIG", "Value"),
    NC_("SC_OPCODE_ROUNDSIG", "The number to be rounded."),
    NC_("SC_OPCODE_ROUNDSIG", "Digits"),
    NC_("SC_OPCODE_ROUNDSIG", "The number of significant digits to which value is to be rounded.")
};

const char* SC_OPCODE_REPLACEB_ARY[] =
{
    NC_("SC_OPCODE_REPLACEB", "Replaces characters within a text string with a different text string, with DBCS."),
    NC_("SC_OPCODE_REPLACEB", "Text"),
    NC_("SC_OPCODE_REPLACEB", "The text in which some characters are to be replaced."),
    NC_("SC_OPCODE_REPLACEB", "Position"),
    NC_("SC_OPCODE_REPLACEB", "The character position from which text is to be replaced."),
    NC_("SC_OPCODE_REPLACEB", "Length"),
    NC_("SC_OPCODE_REPLACEB", "The number of characters to be replaced."),
    NC_("SC_OPCODE_REPLACEB", "New text"),
    NC_("SC_OPCODE_REPLACEB", "The text to be inserted.")
};

 // -=*# Resource for function FINDB #*=-
const char* SC_OPCODE_FINDB_ARY[] =
{
    NC_("SC_OPCODE_FINDB", "Looks for a string of text within another (case sensitive), using byte positions."),
    NC_("SC_OPCODE_FINDB", "Find text"),
    NC_("SC_OPCODE_FINDB", "The text to be found."),
    NC_("SC_OPCODE_FINDB", "Text"),
    NC_("SC_OPCODE_FINDB", "The text in which a search is to be made."),
    NC_("SC_OPCODE_FINDB", "Position"),
    NC_("SC_OPCODE_FINDB", "The position in the text from which the search starts.")
};

 // -=*# Resource for function SEARCHB #*=-
const char* SC_OPCODE_SEARCHB_ARY[] =
{
    NC_("SC_OPCODE_SEARCHB", "Looks for a string of text within another (not case sensitive), using byte positions."),
    NC_("SC_OPCODE_SEARCHB", "Find text"),
    NC_("SC_OPCODE_SEARCHB", "The text to be found."),
    NC_("SC_OPCODE_SEARCHB", "Text"),
    NC_("SC_OPCODE_SEARCHB", "The text in which a search is to be made."),
    NC_("SC_OPCODE_SEARCHB", "Position"),
    NC_("SC_OPCODE_SEARCHB", "The position in the text from which the search starts.")
};

// -=*# Resource for function FOURIER #*=-
const char* SC_OPCODE_FOURIER_ARY[] =
{
    NC_("SC_OPCODE_FOURIER", "Computes the Discrete Fourier Transform (DFT) of an array"),
    NC_("SC_OPCODE_FOURIER", "Array"),
    NC_("SC_OPCODE_FOURIER", "The array whose DFT needs to be computed. The dimensions of this array can be Nx1 or Nx2 or 1xN or 2xN."),
    NC_("SC_OPCODE_FOURIER", "GroupedByColumns"),
    NC_("SC_OPCODE_FOURIER", "Flag to indicate whether the array is grouped by columns or not (default TRUE)."),
    NC_("SC_OPCODE_FOURIER", "Inverse"),
    NC_("SC_OPCODE_FOURIER", "Flag to indicate whether an inverse DFT is to be computed (default FALSE)."),
    NC_("SC_OPCODE_FOURIER", "Polar"),
    NC_("SC_OPCODE_FOURIER", "Flag to indicate whether to return the results in polar form (default FALSE)."),
    NC_("SC_OPCODE_FOURIER", "MinimumMagnitude"),
    NC_("SC_OPCODE_FOURIER", "In case of Polar=TRUE, the frequency components below this magnitude are clipped out (default 0.0).")
};

#endif

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */