File: nb.po

package info (click to toggle)
genius 1.0.14-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 18,616 kB
  • sloc: ansic: 71,355; xml: 27,271; sh: 11,176; makefile: 542; lex: 497; yacc: 298; perl: 54
file content (4864 lines) | stat: -rw-r--r-- 112,683 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
# Norwegian (bokmål dialect) translation of genius.
# Copyright (C) 1998 Free Software Foundation, Inc.
# Kjartan Maraas <kmaraas@gnome.org>, 1998-2010.
#
msgid ""
msgstr ""
"Project-Id-Version: genius 0.6.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-07-13 14:15+0200\n"
"PO-Revision-Date: 2010-07-13 14:18+0200\n"
"Last-Translator: Kjartan Maraas <kmaraas@gnome.org>\n"
"Language-Team: Norwegian <i18n-nb@lister.ping.uio.no>\n"
"Language: no\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"

#: ../lib/library-strings.c:1
msgid "Compose two functions"
msgstr "Sett sammen to funksjoner"

#: ../lib/library-strings.c:2
msgid ""
"Compose a function with itself n times, passing x as argument, and returning "
"x if n == 0"
msgstr "Sett sammen en funksjon med seg selv n ganger, og gi x som et argument og returner x hvis n == 0"

#: ../lib/library-strings.c:3
msgid "Make a string"
msgstr "Lag en streng"

#: ../lib/library-strings.c:4
msgid "Tolerance of the Chop function"
msgstr ""

#: ../lib/library-strings.c:5
msgid "How many iterations to try to find the limit for continuity and limits"
msgstr ""

#: ../lib/library-strings.c:6
msgid ""
"How many successive steps to be within tolerance for calculation of "
"continuity"
msgstr ""

#: ../lib/library-strings.c:7
msgid "Tolerance for continuity of functions and for calculating the limit"
msgstr ""

#: ../lib/library-strings.c:8
msgid "How many iterations to try to find the limit for derivative"
msgstr ""

#: ../lib/library-strings.c:9
msgid ""
"How many successive steps to be within tolerance for calculation of "
"derivative"
msgstr ""

#: ../lib/library-strings.c:10
msgid "Tolerance for calculating the derivatives of functions"
msgstr ""

#: ../lib/library-strings.c:11
msgid "Tolerance of the ErrorFunction"
msgstr ""

#: ../lib/library-strings.c:12
msgid "Tolerance of the GaussDistribution function"
msgstr ""

#: ../lib/library-strings.c:13
msgid "The function used for numerical integration in NumericalIntegral"
msgstr ""

#: ../lib/library-strings.c:14
msgid "Steps to perform in NumericalIntegral"
msgstr ""

#: ../lib/library-strings.c:15
msgid "How many iterations to try for InfiniteSum and InfiniteProduct"
msgstr ""

#: ../lib/library-strings.c:16
msgid ""
"How many successive steps to be within tolerance for InfiniteSum and "
"InfiniteProduct"
msgstr ""

#: ../lib/library-strings.c:17
msgid "Tolerance for InfiniteSum and InfiniteProduct"
msgstr ""

#: ../lib/library-strings.c:18 ../src/eval.c:5985
msgid "Absolute value"
msgstr "Absolutt verdi"

#: ../lib/library-strings.c:19
msgid "Replace very small number with zero"
msgstr ""

#: ../lib/library-strings.c:20
msgid "Return the fractional part of a number"
msgstr ""

#: ../lib/library-strings.c:21
msgid "Division w/o remainder"
msgstr "Divisjon uten rest"

#: ../lib/library-strings.c:22
msgid "Return the sign (-1,0,1)"
msgstr ""

#: ../lib/library-strings.c:23
msgid ""
"Logarithm of any base (calls DiscreteLog if in modulo mode), if base is not "
"given, e is used"
msgstr ""

#: ../lib/library-strings.c:24
msgid "The arccos (inverse cos) function"
msgstr ""

#: ../lib/library-strings.c:25
msgid "The arccosh (inverse cosh) function"
msgstr ""

#: ../lib/library-strings.c:26
msgid "The arccot (inverse cot) function"
msgstr ""

#: ../lib/library-strings.c:27
msgid "The arccoth (inverse coth) function"
msgstr ""

#: ../lib/library-strings.c:28
msgid "The inverse cosecant function"
msgstr ""

#: ../lib/library-strings.c:29
msgid "The inverse hyperbolic cosecant function"
msgstr ""

#: ../lib/library-strings.c:30
msgid "The inverse secant function"
msgstr ""

#: ../lib/library-strings.c:31
msgid "The inverse hyperbolic secant function"
msgstr ""

#: ../lib/library-strings.c:32
msgid "The arcsin (inverse sin) function"
msgstr ""

#: ../lib/library-strings.c:33
msgid "The arcsinh (inverse sinh) function"
msgstr ""

#: ../lib/library-strings.c:34
msgid "The arctanh (inverse tanh) function"
msgstr ""

#: ../lib/library-strings.c:35
msgid "The cotangent function"
msgstr ""

#: ../lib/library-strings.c:36
msgid "The hyperbolic cotangent function"
msgstr ""

#: ../lib/library-strings.c:37
msgid "The cosecant function"
msgstr ""

#: ../lib/library-strings.c:38
msgid "The hyperbolic cosecant function"
msgstr ""

#: ../lib/library-strings.c:39
msgid "The secant function"
msgstr ""

#: ../lib/library-strings.c:40
msgid "The hyperbolic secant function"
msgstr ""

#: ../lib/library-strings.c:41
msgid "The hyperbolic tangent function"
msgstr ""

#: ../lib/library-strings.c:42
msgid "Are a and b relatively prime?"
msgstr ""

#: ../lib/library-strings.c:43
msgid "Return the nth Bernoulli number"
msgstr ""

#: ../lib/library-strings.c:44
msgid ""
"Find the x that solves the system given by the vector a and modulo the "
"elements of m, using the Chinese Remainder Theorem"
msgstr ""

#: ../lib/library-strings.c:45
msgid ""
"Given two factorizations, give the factorization of the product, see "
"Factorize"
msgstr ""

#: ../lib/library-strings.c:46
msgid "Convert a vector of values indicating powers of b to a number"
msgstr ""

#: ../lib/library-strings.c:47
msgid "Convert a number to a vector of powers for elements in base b"
msgstr ""

#: ../lib/library-strings.c:48
msgid ""
"Find discrete log of n base b in F_q where q is a prime using the Silver-"
"Pohlig-Hellman algoritm"
msgstr ""

#: ../lib/library-strings.c:49
msgid ""
"Compute phi(n), the Euler phi function, that is the number of integers "
"between 1 and n relatively prime to n"
msgstr ""

#: ../lib/library-strings.c:50
msgid "Return all factors of a number"
msgstr "Returner alle faktorer av et tall"

#: ../lib/library-strings.c:51
msgid ""
"Attempt fermat factorization of n into (t-s)*(t+s), returns t and s as a "
"vector if possible, null otherwise"
msgstr ""

#: ../lib/library-strings.c:52
msgid "Find the first primitive element in F_q (q must be a prime)"
msgstr ""

#: ../lib/library-strings.c:53
msgid "Find a random primitive element in F_q (q must be a prime)"
msgstr ""

#: ../lib/library-strings.c:54
msgid ""
"Compute discrete log base b of n in F_q (q a prime) using the factor base "
"S.  S should be a column of primes possibly with second column precalculated "
"by IndexCalculusPrecalculation."
msgstr ""

#: ../lib/library-strings.c:55
msgid ""
"Run the precalculation step of IndexCalculus for logarithms base b in F_q (q "
"a prime) for the factor base S (where S is a column vector of primes).  The "
"logs will be precalculated and returned in the second column."
msgstr ""

#: ../lib/library-strings.c:56
msgid "Test if Mp is a Mersenne prime using a table"
msgstr ""

#: ../lib/library-strings.c:57
msgid "Tests if a rational number is a perfect power"
msgstr ""

#: ../lib/library-strings.c:58
msgid ""
"Check if g is primitive in F_q, where q is a prime.  If q is not prime "
"results are bogus."
msgstr ""

#: ../lib/library-strings.c:59
msgid ""
"Check if g is primitive in F_q, where q is a prime and f is a vector of "
"prime factors of q-1.  If q is not prime results are bogus."
msgstr ""

#: ../lib/library-strings.c:60
msgid ""
"If n is a pseudoprime base b but not a prime, that is if b^(n-1) == 1 mod n"
msgstr ""

#: ../lib/library-strings.c:61
msgid "Test if n is a strong pseudoprime to base b but not a prime"
msgstr ""

#: ../lib/library-strings.c:62
msgid ""
"Return the residue of a mod n with the least absolute value (in the interval "
"-n/2 to n/2)"
msgstr ""

#: ../lib/library-strings.c:63
msgid "Test if Mp is a Mersenne prime using the Lucas-Lehmer test"
msgstr ""

#: ../lib/library-strings.c:64
msgid "Return all maximal prime power factors of a number"
msgstr ""

#: ../lib/library-strings.c:65
msgid "Vector with the known Mersenne prime exponents"
msgstr ""

#: ../lib/library-strings.c:66
msgid "Return the Moebius mu function evaluated in n"
msgstr ""

#: ../lib/library-strings.c:67
msgid "Returns the padic valuation (number of trailing zeros in base p)."
msgstr ""

#: ../lib/library-strings.c:68
msgid "Compute a^b mod m"
msgstr ""

#: ../lib/library-strings.c:69
#, fuzzy
msgid "Return all prime factors of a number"
msgstr "Kan ikke faktorisere komplekse tall"

#: ../lib/library-strings.c:70
msgid "Pseudoprime test, true iff b^(n-1) == 1 (mod n)"
msgstr ""

#: ../lib/library-strings.c:71
msgid "Removes all instances of the factor m from the number n"
msgstr ""

#: ../lib/library-strings.c:72
msgid ""
"Find discrete log of n base b in F_q where q is a prime using the Silver-"
"Pohlig-Hellman algoritm, given f being the factorization of q-1"
msgstr ""

#: ../lib/library-strings.c:73
msgid ""
"Find square root of n mod p (a prime). Null is returned if not a quadratic "
"residue."
msgstr ""

#: ../lib/library-strings.c:74
msgid ""
"Apply a function over all entries of a matrix and return a matrix of the "
"results"
msgstr ""

#: ../lib/library-strings.c:75
msgid ""
"Apply a function over all entries of 2 matrices (or 1 value and 1 matrix) "
"and return a matrix of the results"
msgstr ""

#: ../lib/library-strings.c:76
msgid "Remove column(s) and row(s) from a matrix"
msgstr ""

#: ../lib/library-strings.c:77
msgid "Calculate the kth compund matrix of A"
msgstr ""

#: ../lib/library-strings.c:78
msgid "Delete a column of a matrix"
msgstr "Slett en kolonne i en matrise"

#: ../lib/library-strings.c:79
msgid "Delete a row of a matrix"
msgstr "Slett en rad i en matrise"

#: ../lib/library-strings.c:80
msgid "Get the dot product of two vectors (no conjugates)"
msgstr ""

#: ../lib/library-strings.c:81
msgid "Zero out entries above the diagonal"
msgstr ""

#: ../lib/library-strings.c:82
msgid "Make diagonal matrix from a vector"
msgstr ""

#: ../lib/library-strings.c:83
msgid "Make column vector out of matrix by putting columns above each other"
msgstr ""

#: ../lib/library-strings.c:84
msgid "Calculate the product of all elements in a matrix"
msgstr ""

#: ../lib/library-strings.c:85
msgid "Calculate the sum of all elements in a matrix"
msgstr ""

#: ../lib/library-strings.c:86
msgid "Calculate the sum of squares of all elements in a matrix"
msgstr ""

#: ../lib/library-strings.c:87
msgid "Get the outer product of two vectors"
msgstr ""

#: ../lib/library-strings.c:88
msgid "Reverse elements in a vector"
msgstr ""

#: ../lib/library-strings.c:89
msgid "Calculate sum of each row in a matrix"
msgstr ""

#: ../lib/library-strings.c:90
msgid "Calculate sum of squares of each row in a matrix"
msgstr ""

#: ../lib/library-strings.c:91
msgid "Sort vector elements"
msgstr "Sorter vektorelementer"

#: ../lib/library-strings.c:92
msgid "Removes any all-zero rows of M"
msgstr ""

#: ../lib/library-strings.c:93
msgid "Return column(s) and row(s) from a matrix"
msgstr ""

#: ../lib/library-strings.c:94
msgid "Swap two rows in a matrix"
msgstr ""

#: ../lib/library-strings.c:95
msgid "Zero out entries below the diagonal"
msgstr ""

#: ../lib/library-strings.c:96
msgid "Get the auxilliary unit matrix of size n"
msgstr ""

#: ../lib/library-strings.c:97
msgid "Evaluate (v,w) with respect to the bilinear form given by the matrix A"
msgstr ""

#: ../lib/library-strings.c:98
msgid ""
"Return a function that evaluates two vectors with respect to the bilinear "
"form given by A"
msgstr ""

#: ../lib/library-strings.c:99
msgid "Get the characteristic polynomial as a vector"
msgstr ""

#: ../lib/library-strings.c:100
msgid "Get the characteristic polynomial as a function"
msgstr ""

#: ../lib/library-strings.c:101
msgid "Get a basis matrix for the columnspace of a matrix"
msgstr ""

#: ../lib/library-strings.c:102
msgid ""
"Return the commutation matrix K(m,n) which is the unique m*n by m*n matrix "
"such that K(m,n) * MakeVector(A) = MakeVector(A.') for all m by n matrices A."
msgstr ""

#: ../lib/library-strings.c:103
msgid "Companion matrix of a polynomial (as vector)"
msgstr ""

#: ../lib/library-strings.c:104
#, fuzzy
msgid "Conjugate transpose of a matrix (adjoint)"
msgstr "Kan ikke transponere ikke-matrise"

#: ../lib/library-strings.c:105 ../lib/library-strings.c:106
msgid "Calculate convolution of two horizontal vectors"
msgstr ""

#: ../lib/library-strings.c:107
msgid "CrossProduct of two vectors in R^3"
msgstr ""

#: ../lib/library-strings.c:108
msgid ""
"Get the determinantal divisors of an integer matrix (not its characteristic)"
msgstr ""

#: ../lib/library-strings.c:109
msgid "Direct sum of matrices"
msgstr ""

#: ../lib/library-strings.c:110
msgid "Direct sum of a vector of matrices"
msgstr ""

#: ../lib/library-strings.c:111
msgid ""
"Get the eigenvalues of a matrix (Currently only for up to 4x4 or triangular "
"matrices)"
msgstr ""

#: ../lib/library-strings.c:112
msgid ""
"Get the eigenvalues and eigenvectors of a matrix (Currently only for up to "
"2x2 matrices)"
msgstr ""

#: ../lib/library-strings.c:113
msgid ""
"Apply the Gram-Schmidt process (to the columns) with respect to inner "
"product given by B (if not given use hermitian product)"
msgstr ""

#: ../lib/library-strings.c:114
msgid "Hankel matrix"
msgstr ""

#: ../lib/library-strings.c:115
msgid "Hilbert matrix of order n"
msgstr ""

#: ../lib/library-strings.c:116
msgid "Get the image (columnspace) of a linear transform"
msgstr ""

#: ../lib/library-strings.c:117
msgid "Get the Inf Norm of a vector"
msgstr ""

#: ../lib/library-strings.c:118
msgid ""
"Get the invariant factors of a square integer matrix (not its characteristic)"
msgstr ""

#: ../lib/library-strings.c:119
msgid "Inverse Hilbert matrix of order n"
msgstr ""

#: ../lib/library-strings.c:120
msgid "Is a matrix hermitian"
msgstr ""

#: ../lib/library-strings.c:121
msgid "Test if a vector is in a subspace"
msgstr ""

#: ../lib/library-strings.c:122
msgid ""
"Is a matrix (or number) invertible (Integer matrix is invertible iff it's "
"invertible over the integers)"
msgstr ""

#: ../lib/library-strings.c:123
msgid "Is a matrix (or number) invertible over a field"
msgstr ""

#: ../lib/library-strings.c:124
msgid "Is a matrix normal"
msgstr ""

#: ../lib/library-strings.c:125
msgid "Is a matrix positive definite"
msgstr ""

#: ../lib/library-strings.c:126
msgid "Is a matrix positive semidefinite"
msgstr ""

#: ../lib/library-strings.c:127
msgid "Is a matrix skew-hermitian"
msgstr ""

#: ../lib/library-strings.c:128
msgid "Is a matrix unitary"
msgstr ""

#: ../lib/library-strings.c:129
msgid "Get the jordan block corresponding to lambda and n"
msgstr ""

#: ../lib/library-strings.c:130
msgid "Get the kernel (nullspace) of a linear transform"
msgstr ""

#: ../lib/library-strings.c:131
msgid ""
"Get the LU decomposition of A and store the result in the L and U which "
"should be references.  If not possible returns false."
msgstr ""

#: ../lib/library-strings.c:132
msgid "Get the i-j minor of a matrix"
msgstr ""

#: ../lib/library-strings.c:133
msgid "Return the columns that are not the pivot columns of a matrix"
msgstr ""

#: ../lib/library-strings.c:134
msgid "Get the p Norm (or 2 Norm if no p is supplied) of a vector"
msgstr ""

#: ../lib/library-strings.c:135
msgid "Get the nullity of a matrix"
msgstr ""

#: ../lib/library-strings.c:136
msgid "Get the orthogonal complement of the columnspace"
msgstr ""

#: ../lib/library-strings.c:137
msgid ""
"Projection of vector v onto subspace W given a sesquilinear form B (if not "
"given use hermitian product)"
msgstr ""

#: ../lib/library-strings.c:138
msgid "Get the QR decomposition of A, returns R and Q can be a reference"
msgstr ""

#: ../lib/library-strings.c:139
msgid "Get the rank of a matrix"
msgstr ""

#: ../lib/library-strings.c:140
msgid "Return the Rayleigh quotient of a matrix and a vector"
msgstr ""

#: ../lib/library-strings.c:141
msgid ""
"Compute an eigenvalue using the Rayleigh Quotient Iteration method until we "
"are epsilon from eigenvalue or for maxiter iterations"
msgstr ""

#: ../lib/library-strings.c:142
msgid "Rosser matrix, a classic symmetric eigenvalue test problem"
msgstr ""

#: ../lib/library-strings.c:143
msgid "Rotation around origin in R^2"
msgstr ""

#: ../lib/library-strings.c:144
msgid "Rotation around origin in R^3 about the x-axis"
msgstr ""

#: ../lib/library-strings.c:145
msgid "Rotation around origin in R^3 about the y-axis"
msgstr ""

#: ../lib/library-strings.c:146
msgid "Rotation around origin in R^3 about the z-axis"
msgstr ""

#: ../lib/library-strings.c:147
msgid "Get a basis matrix for the rowspace of a matrix"
msgstr ""

#: ../lib/library-strings.c:148
msgid ""
"Evaluate (v,w) with respect to the sesquilinear form given by the matrix A"
msgstr ""

#: ../lib/library-strings.c:149
msgid ""
"Return a function that evaluates two vectors with respect to the "
"sesquilinear form given by A"
msgstr ""

#: ../lib/library-strings.c:150
msgid "Smith Normal Form for fields (will end up with 1's on the diagonal)"
msgstr ""

#: ../lib/library-strings.c:151
msgid "Smith Normal Form for square integer matrices (not its characteristic)"
msgstr ""

#: ../lib/library-strings.c:152
msgid ""
"Return the Toeplitz matrix constructed given the first column c and "
"(optionally) the first row r."
msgstr ""

#: ../lib/library-strings.c:153
msgid "Calculate the trace of a matrix"
msgstr ""

#: ../lib/library-strings.c:154
#, fuzzy
msgid "Transpose of a matrix"
msgstr "Kan ikke transponere ikke-matrise"

#: ../lib/library-strings.c:155
msgid "Return the Vandermonde matrix"
msgstr ""

#: ../lib/library-strings.c:156
msgid "The angle of two vectors, given an inner product"
msgstr ""

#: ../lib/library-strings.c:157
msgid "The direct sum of the vector spaces M and N"
msgstr ""

#: ../lib/library-strings.c:158
msgid "Intersection of the subspaces given by M and N"
msgstr ""

#: ../lib/library-strings.c:159
msgid ""
"The sum of the vector spaces M and N, that is {w | w=m+n, m in M, n in N}"
msgstr ""

#: ../lib/library-strings.c:160
msgid "Get the classical adjoint (adjugate) of a matrix"
msgstr ""

#: ../lib/library-strings.c:161
msgid "Compute the Column Reduced Echelon Form"
msgstr ""

#: ../lib/library-strings.c:162
msgid "Get n'th catalan number"
msgstr ""

#: ../lib/library-strings.c:163
msgid "Double factorial: n(n-2)(n-4)..."
msgstr ""

#: ../lib/library-strings.c:164
msgid "Factorial: n(n-1)(n-2)..."
msgstr ""

#: ../lib/library-strings.c:165
msgid "Falling factorial: (n)_k = n(n-1)...(n-(k-1))"
msgstr ""

#: ../lib/library-strings.c:166
#, fuzzy
msgid "Calculate n'th Fibonacci number"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../lib/library-strings.c:167
msgid "Calculate the Frobenius number for a coin problem"
msgstr ""

#: ../lib/library-strings.c:168
msgid ""
"Galois matrix given a linear combining rule (a_1*x_+...+a_n*x_n=x_(n+1))"
msgstr ""

#: ../lib/library-strings.c:169
msgid "Use greedy algorithm to find c, for c . v = n.  (v must be sorted)"
msgstr ""

#: ../lib/library-strings.c:170
msgid "Harmonic Number, the nth harmonic number of order r"
msgstr ""

#: ../lib/library-strings.c:171
msgid ""
"Hofstadter's function q(n) defined by q(1)=1, q(2)=1, q(n)=q(n-q(n-1))+q(n-q"
"(n-2))"
msgstr ""

#: ../lib/library-strings.c:172
msgid "Compute linear recursive sequence using galois stepping"
msgstr ""

#: ../lib/library-strings.c:173
msgid "Calculate multinomial coefficients"
msgstr ""

#: ../lib/library-strings.c:174
msgid "Get the pascal's triangle as a matrix"
msgstr ""

#: ../lib/library-strings.c:175
msgid "(Pochhammer) Rising factorial: (n)_k = n(n+1)...(n+(k-1))"
msgstr ""

#: ../lib/library-strings.c:176
msgid "Stirling number of the first kind"
msgstr ""

#: ../lib/library-strings.c:177
msgid "Stirling number of the second kind"
msgstr ""

#: ../lib/library-strings.c:178
msgid "Subfactorial: n! times sum_{k=1}^n (-1)^k/k!"
msgstr ""

#: ../lib/library-strings.c:179
msgid "Calculate the nth triangular number"
msgstr ""

#: ../lib/library-strings.c:180
msgid "Calculate permutations"
msgstr ""

#: ../lib/library-strings.c:181
msgid ""
"Integration of f by Composite Simpson's Rule on the interval [a,b] with the "
"number of steps calculated by the fourth derivative bound and the desired "
"tolerance"
msgstr ""

#: ../lib/library-strings.c:182
msgid ""
"Attempt to calculate derivative by trying first symbolically and then "
"numerically"
msgstr ""

#: ../lib/library-strings.c:183
msgid ""
"Return a function which is the even periodic extension of f defined on the "
"interval [0,L]"
msgstr ""

#: ../lib/library-strings.c:184
msgid ""
"Return a function which is a Fourier series with the coefficients given by "
"the vectors a (sines) and b (cosines).  Note that a@(1) is the constant "
"coefficient!"
msgstr ""

#: ../lib/library-strings.c:185
msgid "Try to calculate an infinite product for a single parameter function"
msgstr ""

#: ../lib/library-strings.c:186
msgid ""
"Try to calculate an infinite product for a double parameter function with "
"func(arg,n)"
msgstr ""

#: ../lib/library-strings.c:187
msgid "Try to calculate an infinite sum for a single parameter function"
msgstr ""

#: ../lib/library-strings.c:188
msgid ""
"Try to calculate an infinite sum for a double parameter function with func"
"(arg,n)"
msgstr ""

#: ../lib/library-strings.c:189
msgid ""
"Try and see if a real-valued function is continuous at x0 by calculating the "
"limit there"
msgstr ""

#: ../lib/library-strings.c:190
msgid ""
"Test for differentiability by approximating the left and right limits and "
"comparing"
msgstr ""

#: ../lib/library-strings.c:191
msgid "Calculate the left limit of a real-valued function at x0"
msgstr ""

#: ../lib/library-strings.c:192
msgid ""
"Calculate the limit of a real-valued function at x0.  Tries to calculate "
"both left and right limits."
msgstr ""

#: ../lib/library-strings.c:193
msgid "Integration by midpoint rule"
msgstr ""

#: ../lib/library-strings.c:194
msgid "Attempt to calculate numerical derivative"
msgstr ""

#: ../lib/library-strings.c:195
msgid ""
"Numerically compute the coefficients for a cosine Fourier series for a "
"function on [0,L] up to the Nth coefficient."
msgstr ""

#: ../lib/library-strings.c:196
msgid ""
"Return a function which is the Fourier cosine series of f on [0,L] with "
"coefficients up to N computed numerically"
msgstr ""

#: ../lib/library-strings.c:197
msgid ""
"Numerically compute the coefficients for a Fourier series with half-period L "
"up to the Nth coefficient."
msgstr ""

#: ../lib/library-strings.c:198
msgid ""
"Return a function which is the Fourier series of f with half-period L with "
"coefficients up to N computed numerically"
msgstr ""

#: ../lib/library-strings.c:199
msgid ""
"Numerically compute the coefficients for a sine Fourier series for a "
"function on [0,L] up to the Nth coefficient."
msgstr ""

#: ../lib/library-strings.c:200
msgid ""
"Return a function which is the Fourier sine series of f on [0,L] with "
"coefficients up to N computed numerically"
msgstr ""

#: ../lib/library-strings.c:201
msgid ""
"Integration by rule set in NumericalIntegralFunction of f from a to b using "
"NumericalIntegralSteps steps"
msgstr ""

#: ../lib/library-strings.c:202
msgid "Attempt to calculate numerical left derivative"
msgstr ""

#: ../lib/library-strings.c:203
msgid "Attempt to calculate the limit of f(step_fun(i)) as i goes from 1 to N"
msgstr ""

#: ../lib/library-strings.c:204
msgid "Attempt to calculate numerical right derivative"
msgstr ""

#: ../lib/library-strings.c:205
msgid ""
"Return a function which is the odd periodic extension of f defined on the "
"interval [0,L]"
msgstr ""

#: ../lib/library-strings.c:206
msgid "Compute one-sided derivative using five point formula"
msgstr ""

#: ../lib/library-strings.c:207
msgid "Compute one-sided derivative using three-point formula"
msgstr ""

#: ../lib/library-strings.c:208
msgid ""
"Return a function which is the periodic extension of f defined on the "
"interval [a,b]"
msgstr ""

#: ../lib/library-strings.c:209
msgid "Calculate the right limit of a real-valued function at x0"
msgstr ""

#: ../lib/library-strings.c:210
msgid "Compute two-sided derivative using five-point formula"
msgstr ""

#: ../lib/library-strings.c:211
msgid "Compute two-sided derivative using three-point formula"
msgstr ""

#: ../lib/library-strings.c:212
#, fuzzy
msgid "argument (angle) of complex number"
msgstr "Kan ikke utføre modulo på komplekse tall"

#: ../lib/library-strings.c:213
msgid "Dirichlet kernel of order n"
msgstr ""

#: ../lib/library-strings.c:214
msgid "Returns 1 iff all elements are zero"
msgstr ""

#: ../lib/library-strings.c:215
msgid "The error function, 2/sqrt(pi) * int_0^x e^(-t^2) dt"
msgstr ""

#: ../lib/library-strings.c:216
msgid "Fejer kernel of order n"
msgstr ""

#: ../lib/library-strings.c:217
msgid "Returns 1 iff all elements are equal"
msgstr ""

#: ../lib/library-strings.c:218
msgid "Find the first value where f(x)=0"
msgstr ""

#: ../lib/library-strings.c:219
msgid "Moebius mapping of the disk to itself mapping a to 0"
msgstr ""

#: ../lib/library-strings.c:220
msgid ""
"Moebius mapping using the cross ratio taking z2,z3,z4 to 1,0, and infinity "
"respectively"
msgstr ""

#: ../lib/library-strings.c:221
msgid ""
"Moebius mapping using the cross ratio taking infinity to infinity and z2,z3 "
"to 1 and 0 respectively"
msgstr ""

#: ../lib/library-strings.c:222
msgid ""
"Moebius mapping using the cross ratio taking infinity to 1 and z3,z4 to 0 "
"and infinity respectively"
msgstr ""

#: ../lib/library-strings.c:223
msgid ""
"Moebius mapping using the cross ratio taking infinity to 0 and z2,z4 to 1 "
"and infinity respectively"
msgstr ""

#: ../lib/library-strings.c:224
msgid ""
"Poisson kernel on D(0,1) (not normalized to 1, that is integral of this is "
"2pi)"
msgstr ""

#: ../lib/library-strings.c:225
msgid "Poisson kernel on D(0,R) (not normalized to 1)"
msgstr ""

#: ../lib/library-strings.c:226
msgid ""
"The unit step function = 0 for x<0, 1 otherwise.  This is the integral of "
"the Dirac Delta function."
msgstr ""

#: ../lib/library-strings.c:227
msgid "The cis function, that is cos(x)+i*sin(x)"
msgstr ""

#: ../lib/library-strings.c:228
msgid "Convert degrees to radians"
msgstr ""

#: ../lib/library-strings.c:229
msgid "Convert radians to degrees"
msgstr ""

#: ../lib/library-strings.c:230
msgid "Find roots of a cubic polynomial (given as vector of coefficients)"
msgstr ""

#: ../lib/library-strings.c:231
msgid ""
"Use classical Euler's method to numerically solve y'=f(x,y) for initial x0,"
"y0 going to x1 with n increments, returns y at x1"
msgstr ""

#: ../lib/library-strings.c:232
msgid "Find root of a function using the bisection method"
msgstr ""

#: ../lib/library-strings.c:233
msgid "Find root of a function using the method of false position"
msgstr ""

#: ../lib/library-strings.c:234
msgid "Find root of a function using the Muller's method"
msgstr ""

#: ../lib/library-strings.c:235
msgid "Find root of a function using the secant method"
msgstr ""

#: ../lib/library-strings.c:236
msgid "Find roots of a polynomial (given as vector of coefficients)"
msgstr ""

#: ../lib/library-strings.c:237
msgid "Find roots of a quartic polynomial (given as vector of coefficients)"
msgstr ""

#: ../lib/library-strings.c:238
msgid ""
"Use classical non-adaptive Runge-Kutta of fourth order method to numerically "
"solve y'=f(x,y) for initial x0,y0 going to x1 with n increments, returns y "
"at x1"
msgstr ""

#: ../lib/library-strings.c:239
msgid "Calculate average of an entire matrix"
msgstr ""

#: ../lib/library-strings.c:240
msgid "Integral of the GaussFunction from 0 to x (area under the normal curve)"
msgstr ""

#: ../lib/library-strings.c:241
msgid "The normalized Gauss distribution function (the normal curve)"
msgstr ""

#: ../lib/library-strings.c:242
msgid "Calculate median of an entire matrix"
msgstr ""

#: ../lib/library-strings.c:243
msgid "Calculate the population standard deviation of a whole matrix"
msgstr ""

#: ../lib/library-strings.c:244
msgid "Calculate average of each row in a matrix"
msgstr ""

#: ../lib/library-strings.c:245
msgid "Calculate median of each row in a matrix"
msgstr ""

#: ../lib/library-strings.c:246
msgid ""
"Calculate the population standard deviations of rows of a matrix and return "
"a vertical vector"
msgstr ""

#: ../lib/library-strings.c:247
msgid ""
"Calculate the standard deviations of rows of a matrix and return a vertical "
"vector"
msgstr ""

#: ../lib/library-strings.c:248
msgid "Calculate the standard deviation of a whole matrix"
msgstr ""

#: ../lib/library-strings.c:249
msgid ""
"Run newton's method on a polynomial to attempt to find a root, returns after "
"two successive values are within epsilon or after maxn tries (then returns "
"null)"
msgstr ""

#: ../lib/library-strings.c:250
msgid "Returns a set where every element of X appears only once"
msgstr ""

#: ../lib/library-strings.c:251
msgid ""
"Returns a set theoretic union of X and Y (X and Y are vectors pretending to "
"be sets)"
msgstr ""

#: ../lib/library-strings.c:252
msgid "Attempt to symbolically differentiate a function n times"
msgstr ""

#: ../lib/library-strings.c:253
msgid ""
"Attempt to symbolically differentiate a function n times quietly and return "
"null on failure"
msgstr ""

#: ../lib/library-strings.c:254
msgid ""
"Attempt to construct the taylor approximation function around x0 to the nth "
"degree."
msgstr ""

#: ../src/calc.c:217
msgid "Uncategorized"
msgstr ""

#: ../src/calc.c:399
msgid "Trying to set an alias for an alias"
msgstr ""

#: ../src/calc.c:978
msgid "Bad identifier for function node!"
msgstr "Ugyldig identifikator for funksjonsnode!"

#: ../src/calc.c:1016 ../src/eval.c:6437 ../src/eval.c:6631
msgid "Unexpected operator!"
msgstr "Uventet operator!"

#. FIXME:
#: ../src/calc.c:1208
msgid "Cannot currently print polynomials of more than 3 vars"
msgstr ""

#: ../src/calc.c:1300
msgid "NULL function!"
msgstr "NULL-funksjon!"

#. variable and reference functions should
#. never be in the etree
#: ../src/calc.c:1366
msgid "Unexpected function type!"
msgstr "Uventet funksjonstype!"

#: ../src/calc.c:1381
msgid "NULL tree!"
msgstr "NULL-tre!"

#: ../src/calc.c:1471 ../src/eval.c:6930
msgid "Unexpected node!"
msgstr "Uventet node!"

#: ../src/calc.c:1966
#, c-format
msgid "File '%s' is a wrong version of GEL"
msgstr "Filen '%s' er i feil versjon av GEL"

#: ../src/calc.c:2016 ../src/calc.c:2025 ../src/calc.c:2030 ../src/calc.c:2039
#: ../src/calc.c:2044 ../src/calc.c:2053 ../src/calc.c:2058 ../src/calc.c:2067
#: ../src/calc.c:2072 ../src/calc.c:2083 ../src/calc.c:2088 ../src/calc.c:2099
#: ../src/calc.c:2106 ../src/calc.c:2119 ../src/calc.c:2125 ../src/calc.c:2132
#: ../src/calc.c:2141 ../src/calc.c:2152 ../src/calc.c:2158 ../src/calc.c:2165
#: ../src/calc.c:2171 ../src/calc.c:2178 ../src/calc.c:2184 ../src/calc.c:2191
#: ../src/calc.c:2197 ../src/calc.c:2204 ../src/calc.c:2210 ../src/calc.c:2217
#: ../src/calc.c:2223 ../src/calc.c:2230 ../src/calc.c:2236 ../src/calc.c:2243
#: ../src/calc.c:2259 ../src/calc.c:2277 ../src/calc.c:2287
msgid "Badly formed record"
msgstr "Dårlig utformet oppføring"

#: ../src/calc.c:2019
msgid "Record out of place"
msgstr "Feilplassert oppføring"

#: ../src/calc.c:2301
msgid "Missing value for function"
msgstr "Mangler verdi for funksjon"

#: ../src/calc.c:2327
msgid "Extra dictionary for NULL function"
msgstr ""

#: ../src/calc.c:2379 ../src/calc.c:2922 ../src/calc.c:2957
#, c-format
msgid "Can't open file: '%s'"
msgstr "Kan ikke åpne fil: '%s'"

#: ../src/calc.c:2580
msgid "Load a file into the interpretor"
msgstr ""

#: ../src/calc.c:2583
msgid "Load a plugin"
msgstr ""

#: ../src/calc.c:2586
msgid "List files in the current directory"
msgstr ""

#: ../src/calc.c:2589
msgid "Change directory"
msgstr ""

#: ../src/calc.c:2592
msgid "Print current directory"
msgstr ""

#: ../src/calc.c:2595
msgid "Print help (or help on a function/command)"
msgstr ""

#: ../src/calc.c:2611
msgid ""
"\n"
"For a manual on using Genius and the GEL language type:\n"
msgstr ""

#: ../src/calc.c:2613
msgid "  manual\n"
msgstr ""

#: ../src/calc.c:2617
msgid ""
"\n"
"For help on a specific function type:\n"
msgstr ""

#: ../src/calc.c:2619
msgid "  help FunctionName\n"
msgstr ""

#: ../src/calc.c:2623
msgid ""
"\n"
"Commands:\n"
msgstr ""

#: ../src/calc.c:2668
msgid ""
"\n"
"Undocumented:\n"
msgstr ""

#. func
#. aliasfor
#. category
#: ../src/calc.c:2711
msgid "Not documented"
msgstr ""

#: ../src/calc.c:2733
#, c-format
msgid "'%s' is not documented"
msgstr ""

#: ../src/calc.c:2735
#, c-format
msgid "'%s' is not documented.  Perhaps you meant %s."
msgstr ""

#: ../src/calc.c:2745
#, c-format
msgid "%s is an alias for %s\n"
msgstr ""

#: ../src/calc.c:2759
msgid "Parameter: "
msgstr ""

#: ../src/calc.c:2784
msgid "Aliases:"
msgstr ""

#: ../src/calc.c:2796
#, c-format
msgid "Description: %s\n"
msgstr ""

#: ../src/calc.c:2982 ../src/calc.c:2989
#, c-format
msgid "Error changing to directory '%s': %s"
msgstr ""

#: ../src/calc.c:3003 ../src/calc.c:3014
#, c-format
msgid "Can't expand '%s'"
msgstr "Kan ikke utvide «%s»"

#: ../src/calc.c:3084
#, c-format
msgid "Cannot open plugin '%s'!"
msgstr "Kan ikke åpne tillegg «%s»!"

#: ../src/calc.c:3174
#, c-format
msgid "getcwd error: %s"
msgstr ""

#: ../src/calc.c:3233
#, c-format
msgid "ERROR: 'pipe' failed: %s"
msgstr ""

#: ../src/calc.c:3240 ../src/calc.c:3247
#, c-format
msgid "ERROR: 'write' possibly failed: %s"
msgstr ""

#: ../src/calc.c:3315
msgid "ERROR: Probably corrupt stack!"
msgstr "FEIL: Sannsynligvis korrupt stakk!"

#: ../src/calc.c:3327
msgid ""
"ERROR: 'local' in a wrong place, can only be first statement in a function!"
msgstr ""

#: ../src/calc.c:3351
msgid "ERROR: Can't execute more things at once!"
msgstr "FEIL: Kan ikke kjøre flere ting samtidig!"

#: ../src/calc.c:3457
#, c-format
msgid "ERROR: %s before newline"
msgstr "FEIL: %s før linjeskift"

#: ../src/calc.c:3459
#, c-format
msgid "ERROR: %s at end of input"
msgstr "FEIL: %s ved slutten av inndata"

#: ../src/calc.c:3466
#, c-format
msgid "ERROR: %s before '%s'"
msgstr "FEIL: %s før «%s»"

#: ../src/compil.c:537 ../src/compil.c:543
msgid "Bad tree record when decompiling"
msgstr "Ugyldig tre-oppføring under dekompilering"

#: ../src/eval.c:1448 ../src/eval.c:1505 ../src/eval.c:1520
#, fuzzy
msgid "Cannot compare non value or bool only matrixes"
msgstr "Kan ikke sammenligne matriser som ikke er \"value-only\""

#. also on rationals but as integers
#: ../src/eval.c:1576 ../src/eval.c:1622
msgid "Modulo arithmetic only works on integers"
msgstr ""

#: ../src/eval.c:1834
msgid ""
"Can't add/subtract a scalar to non-square matrix (A + x is defined as A + "
"x*I)"
msgstr ""

#: ../src/eval.c:1930
msgid "Can't add/subtract two matricies of different sizes"
msgstr "Kan ikke legge til/subtrahere to matriser av forskjellig størrelse"

#: ../src/eval.c:1932
#, fuzzy
msgid ""
"Can't do element by element operations on two matricies of different sizes"
msgstr "Kan ikke legge til/subtrahere to matriser av forskjellig størrelse"

#: ../src/eval.c:1998
msgid "Can't multiply matricies of wrong sizes"
msgstr "Kan ikke multiplisere matriser av feil størrelse"

#: ../src/eval.c:2049
msgid "Powers are defined on (square matrix)^(integer) only"
msgstr "Potenser er kun definert på (kvadratisk matrise)^(heltall)"

#: ../src/eval.c:2055
msgid "Powers on matrices in modulo mode are defined on integer matrices only"
msgstr ""

#: ../src/eval.c:2063
msgid "Exponent too large"
msgstr "Eksponenten er for stor"

#: ../src/eval.c:2090 ../src/eval.c:2205 ../src/eval.c:2271
msgid "Matrix appears singular and can't be inverted"
msgstr "Matrisen ser ut til å være singulær og kan ikke inverteres"

#: ../src/eval.c:2182
msgid "Can't divide matrices of different sizes or non-square matrices"
msgstr ""
"Kan ikke dividerer matriser av forskjellige størrelser eller som er ikke-"
"kvadratiske"

#: ../src/eval.c:2253
msgid "Can't divide by a non-square matrix"
msgstr "Kan ikke dividere med en ikke-kvadratisk matrise"

#: ../src/eval.c:2669 ../src/eval.c:2696 ../src/eval.c:2717 ../src/eval.c:2741
#: ../src/eval.c:2789
#, fuzzy
msgid "Operations on functions with variable argument list not supported"
msgstr "Referanse-funksjon med argumenter funnet!"

#: ../src/eval.c:2674
msgid ""
"Operations on functions with different number of arguments not supported"
msgstr ""

#: ../src/eval.c:2794
msgid "Function creation with wrong number of arguments"
msgstr ""

#: ../src/eval.c:3372 ../src/eval.c:4746
msgid "Unevaluatable function type encountered!"
msgstr "Uevaluerbar funksjonstype funnet!"

#: ../src/eval.c:3394
msgid "' or '"
msgstr "« eller »"

#: ../src/eval.c:3429
msgid ""
"Variable 'i' used uninitialized.  Perhaps you meant to write '1i' for the "
"imaginary number (square root of -1)."
msgstr ""

#: ../src/eval.c:3435 ../src/eval.c:3463 ../src/eval.c:6748
#, c-format
msgid "Variable '%s' used uninitialized, perhaps you meant %s."
msgstr "Variabel «%s» brukt uinitiert, kanskje du mente %s."

#: ../src/eval.c:3442 ../src/eval.c:3470 ../src/eval.c:4482 ../src/eval.c:6755
#, c-format
msgid "Variable '%s' used uninitialized"
msgstr "Variabel «%s» brukt uinitiert"

#: ../src/eval.c:3474 ../src/eval.c:4525
#, c-format
msgid ""
"Call of '%s' with the wrong number of arguments!\n"
"(should be %d)"
msgstr ""
"Kall til «%s» med feil antall argumenter!\n"
"(skulle vært %d)"

#: ../src/eval.c:3477
#, c-format
msgid "Trying to dereference '%s' which is not a reference!\n"
msgstr "Forsøk på å referere til «%s» som ikke er en referanse!\n"

#: ../src/eval.c:3482
msgid "NULL reference encountered!"
msgstr "NULL-referanse funnet!"

#: ../src/eval.c:3609
msgid "Cannot compare matrixes"
msgstr "Kan ikke sammenligne matriser"

#: ../src/eval.c:3651
msgid "Primitives must get numeric/matrix/string arguments"
msgstr "Primitiver må få numeriske/matrise/streng-argumenter"

#: ../src/eval.c:3742
msgid "Bad argument to modular operation"
msgstr ""

#: ../src/eval.c:4460
#, c-format
msgid "Function '%s' used uninitialized, perhaps you meant %s."
msgstr "Funksjon «%s» brukt uinitiert, kanskje du mente %s."

#: ../src/eval.c:4467
#, c-format
msgid "Function '%s' used uninitialized"
msgstr "Funksjon «%s» brukt uinitiert"

#: ../src/eval.c:4488
#, c-format
msgid "Can't dereference '%s'!"
msgstr "Kan ikke referere til '%s'!"

#: ../src/eval.c:4496
msgid "Can't call a non-function!"
msgstr "Kan ikke kalle en ikke-funksjon!"

#: ../src/eval.c:4530
#, fuzzy, c-format
msgid ""
"Call of '%s' with the wrong number of arguments!\n"
"(should be greater than %d)"
msgstr ""
"Kall til '%s' med feil antall argumenter!\n"
"(skulle vært %d)"

#: ../src/eval.c:4569
#, fuzzy, c-format
msgid "Referencing an undefined variable %s!"
msgstr "Refererer til en udefinert variabel!"

#: ../src/eval.c:4723
msgid "Reference function with arguments encountered!"
msgstr "Referanse-funksjon med argumenter funnet!"

#: ../src/eval.c:4728
msgid "Unnamed reference function encountered!"
msgstr "Referanse-funksjon uten navn funnet!"

#: ../src/eval.c:4851
#, fuzzy
msgid "Bad type for 'for/sum/prod' loop!"
msgstr "Feil type for 'for'-løkke!"

#: ../src/eval.c:4856
#, fuzzy
msgid "'for/sum/prod' loop increment can't be 0"
msgstr "'for'-løkke kan ikke økes med 1"

#: ../src/eval.c:4967
#, fuzzy
msgid "Bad type for 'for in' loop!"
msgstr "Feil type for 'for'-løkke!"

#: ../src/eval.c:5131 ../src/eval.c:5164
msgid "Continue or break outside a loop, assuming \"return null\""
msgstr ""

#: ../src/eval.c:5225
msgid "Wrong argument type as matrix index"
msgstr "Feil argumenttype som matriseindeks"

#: ../src/eval.c:5235
msgid "Matrix index too large"
msgstr "Matriseindeksen er for stor"

#: ../src/eval.c:5238
#, fuzzy
msgid "Matrix index less than 1"
msgstr "Matriseindeksen er mindre enn 1"

#: ../src/eval.c:5261 ../src/eval.c:5276
msgid "Matrix index out of range"
msgstr "Matriseindeks utenfor gyldig område"

#: ../src/eval.c:5323 ../src/eval.c:5385 ../src/eval.c:5453 ../src/eval.c:5494
#: ../src/eval.c:5702
#, c-format
msgid "Trying to set a protected id '%s'"
msgstr ""

#: ../src/eval.c:5341 ../src/eval.c:5380
msgid "Indexed Lvalue not user function"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/eval.c:5364 ../src/eval.c:5478
msgid "Dereference of non-identifier!"
msgstr "Referanse til ikke-identifikator!"

#: ../src/eval.c:5370 ../src/eval.c:5484
msgid "Dereference of undefined variable!"
msgstr "Referanse til udefinert variabel!"

#: ../src/eval.c:5374 ../src/eval.c:5488
msgid "Dereference of non-reference!"
msgstr "Referanse til ikke-referanse!"

#: ../src/eval.c:5403
msgid "Indexed Lvalue not an identifier or a dereference"
msgstr "Indeksert Lvalue ikke en identifikator eller en referanse"

#: ../src/eval.c:5441
msgid "Lvalue not an identifier/dereference/matrix location!"
msgstr "Lvalue er ikke en identifikator/referanse/matrise-lokasjon!"

#: ../src/eval.c:5465 ../src/eval.c:5506
msgid "Referencing an undefined variable!"
msgstr "Refererer til en udefinert variabel!"

#: ../src/eval.c:5552 ../src/eval.c:5630 ../src/eval.c:5639
#, fuzzy
msgid "Wrong matrix dimensions when setting"
msgstr "I tilbakedivisjon må matrisedimensjonene stemme overens"

#: ../src/eval.c:5570 ../src/eval.c:5610 ../src/eval.c:5676 ../src/eval.c:5812
#: ../src/eval.c:5937
#, fuzzy
msgid "Matrix index not an integer or a vector"
msgstr "Matriseindeks utenfor gyldig område"

#: ../src/eval.c:5697
msgid "Parameters can only be created in the global context"
msgstr ""

#: ../src/eval.c:5759 ../src/eval.c:5804 ../src/eval.c:5895
msgid "Index works only on matricies"
msgstr "Indeksen virker kun på matriser"

#: ../src/eval.c:5792
msgid "Vector index not an integer or a vector"
msgstr ""

#: ../src/eval.c:5960
msgid "number"
msgstr "tall"

#: ../src/eval.c:5961
msgid "matrix"
msgstr "matrise"

#: ../src/eval.c:5962
msgid "string"
msgstr "streng"

#: ../src/eval.c:5963
msgid "function"
msgstr "funksjon"

#: ../src/eval.c:5964
msgid "identifier"
msgstr "identifikator"

#: ../src/eval.c:5965
msgid "polynomial"
msgstr "polynom"

#: ../src/eval.c:5966
msgid "boolean"
msgstr "bolsk verdi"

#: ../src/eval.c:5986
msgid "Addition"
msgstr ""

#: ../src/eval.c:5987
msgid "Element by element addition"
msgstr ""

#: ../src/eval.c:5988
msgid "Subtraction"
msgstr ""

#: ../src/eval.c:5989
msgid "Element by element subtraction"
msgstr ""

#: ../src/eval.c:5990
msgid "Multiplication"
msgstr ""

#: ../src/eval.c:5991
msgid "Element by element multiplication"
msgstr ""

#: ../src/eval.c:5992
msgid "Division"
msgstr "Divisjon"

#: ../src/eval.c:5993
msgid "Element by element division"
msgstr ""

#: ../src/eval.c:5994
msgid "Back division"
msgstr ""

#: ../src/eval.c:5995
msgid "Element by element back division"
msgstr ""

#: ../src/eval.c:5996
msgid "Modulo"
msgstr ""

#: ../src/eval.c:5997
msgid "Element by element modulo"
msgstr ""

#: ../src/eval.c:5998
msgid "Negation"
msgstr ""

#: ../src/eval.c:5999
msgid "Power"
msgstr ""

#: ../src/eval.c:6000
msgid "Element by element power"
msgstr ""

#: ../src/eval.c:6001
msgid "Factorial"
msgstr ""

#: ../src/eval.c:6002
msgid "Double factorial"
msgstr ""

#: ../src/eval.c:6003
msgid "Transpose"
msgstr ""

#: ../src/eval.c:6004
msgid "ConjugateTranspose"
msgstr ""

#: ../src/eval.c:6005
msgid "Comparison (<=>)"
msgstr ""

#: ../src/eval.c:6006
msgid "XOR"
msgstr ""

#: ../src/eval.c:6007
msgid "NOT"
msgstr ""

#: ../src/eval.c:6027
#, c-format
msgid "Bad types for '%s'"
msgstr "Ugyldige typer for «%s»"

#: ../src/eval.c:6038
#, c-format
msgid "%s not defined on <%s> and <%s>"
msgstr ""

#: ../src/eval.c:6057
#, c-format
msgid "Bad type for '%s'"
msgstr "Ugyldig type for «%s»"

#: ../src/eval.c:6067
#, c-format
msgid "%s not defined on <%s>"
msgstr "%s ikke definert på <%s>"

#: ../src/eval.c:6086 ../src/eval.c:6103
msgid "Vector building only works on numbers"
msgstr ""

#. FIXME: perhaps we should just return null like octave?
#: ../src/eval.c:6096
msgid "Impossible arguments to vector building operator"
msgstr ""

#: ../src/funclib.c:116
#, c-format
msgid "%s: argument too large"
msgstr ""

#: ../src/funclib.c:143
#, c-format
msgid "Cannot parse version string: %s"
msgstr ""

#: ../src/funclib.c:172 ../src/gnome-genius.c:1883
#, c-format
msgid ""
"Genius %s\n"
"%s\n"
"\n"
"    This program is free software: you can redistribute it and/or modify\n"
"    it under the terms of the GNU General Public License as published by\n"
"    the Free Software Foundation, either version 3 of the License, or\n"
"    (at your option) any later version.\n"
"\n"
"    This program is distributed in the hope that it will be useful,\n"
"    but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
"    GNU General Public License for more details.\n"
"\n"
"    You should have received a copy of the GNU General Public License\n"
"    along with this program.  If not, see <http://www.gnu.org/licenses/>.\n"
msgstr ""

#: ../src/funclib.c:266
#, c-format
msgid "%s: trying to undefine a protected id!"
msgstr ""

#: ../src/funclib.c:533
#, c-format
msgid "%s: trying to set a protected id!"
msgstr ""

#. FIXME: fix this, this should just work too
#: ../src/funclib.c:539
#, c-format
msgid "%s: trying to set a parameter, use the equals sign"
msgstr ""

#: ../src/funclib.c:566 ../src/funclib.c:659
#, c-format
msgid "%s: Too many arguments, should be at most %d"
msgstr ""

#: ../src/funclib.c:807
msgid "Cannot apply function to two differently sized matrixes"
msgstr ""

#: ../src/funclib.c:1433 ../src/funclib.c:1470
#, c-format
msgid "%s: Not implemented (yet) for complex values"
msgstr ""

#: ../src/funclib.c:1914
#, c-format
msgid "%s: square root for composite moduli is not yet implemented"
msgstr ""

#: ../src/funclib.c:1922
#, c-format
msgid "%s: Cannot find square root function for prime moduli"
msgstr ""

#: ../src/funclib.c:1955
#, c-format
msgid "%s: matrix argument is not square"
msgstr ""

#: ../src/funclib.c:2083 ../src/funclib.c:2183
#, c-format
msgid "%s: matrix argument must be integer only"
msgstr ""

#: ../src/funclib.c:2105 ../src/funclib.c:2205
#, c-format
msgid "%s: argument must be an integer"
msgstr ""

#: ../src/funclib.c:2440 ../src/funclib.c:2527
#, c-format
msgid "%s: matrix argument must be value only"
msgstr ""

#: ../src/funclib.c:2783 ../src/funclib.c:2841 ../src/funclib.c:4353
#: ../src/funclib.c:4647
#, c-format
msgid "%s: too many arguments"
msgstr ""

#: ../src/funclib.c:3065
#, c-format
msgid "%s: vector argument not value only"
msgstr ""

#: ../src/funclib.c:3076 ../src/funclib.c:3115
#, c-format
msgid "%s: argument can't be negative or 0"
msgstr ""

#: ../src/funclib.c:3084 ../src/funclib.c:3120
#, c-format
msgid "%s: vector argument has too large entries"
msgstr ""

#: ../src/funclib.c:3162
#, c-format
msgid "%s: arguments must be vectors of equal size"
msgstr ""

#: ../src/funclib.c:3654 ../src/funclib.c:3660
#, c-format
msgid "%s: %s not a reference"
msgstr ""

#: ../src/funclib.c:3699
#, c-format
msgid "%s: matrices not of the same height"
msgstr ""

#: ../src/funclib.c:3704 ../src/funclib.c:4347
msgid "third argument"
msgstr ""

#: ../src/funclib.c:3709
msgid "fourth argument"
msgstr ""

#: ../src/funclib.c:3984
#, c-format
msgid "%s: argument must be greater than 2"
msgstr ""

#: ../src/funclib.c:4087 ../src/funclib.c:4116 ../src/funclib.c:4368
#: ../src/mpwrap.c:3736 ../src/mpwrap.c:3755 ../src/mpwrap.c:3812
#: ../src/mpwrap.c:3841 ../src/mpwrap.c:3858 ../src/mpwrap.c:3907
msgid "Division by zero!"
msgstr "Divisjon med null!"

#: ../src/funclib.c:4172
#, c-format
msgid "%s: arguments not horizontal vectors"
msgstr ""

#: ../src/funclib.c:4181
#, c-format
msgid "%s: arguments not numeric only vectors"
msgstr ""

#: ../src/funclib.c:4565
#, fuzzy, c-format
msgid "%s: argument 1 must be a quadratic polynomial"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/funclib.c:4875 ../src/funclib.c:4964 ../src/funclib.c:5192
#: ../src/funclib.c:5247 ../src/funclib.c:5317 ../src/funclib.c:5331
#, fuzzy, c-format
msgid "%s: value out of range"
msgstr "Indeks utenfor gyldig område"

#: ../src/funclib.c:5457
#, c-format
msgid "%s: undefined function"
msgstr ""

#: ../src/funclib.c:5463
#, c-format
msgid "%s: flags argument must be a string"
msgstr ""

#: ../src/funclib.c:5591 ../src/symbolic.c:723
#, c-format
msgid "%s: argument not a function of one variable"
msgstr ""

#: ../src/funclib.c:5803 ../src/funclib.c:5838 ../src/funclib.c:6083
#, c-format
msgid "%s: argument should be between %d and %d"
msgstr ""

#: ../src/funclib.c:5991
msgid "OutputStyle must be one of normal, troff, latex or mathml"
msgstr ""

#: ../src/funclib.c:6031
#, c-format
msgid "%s: argument should be larger or equal to 0"
msgstr ""

#: ../src/funclib.c:6144
msgid "Basic"
msgstr ""

#. internal
#: ../src/funclib.c:6145
msgid "Parameters"
msgstr ""

#. internal
#: ../src/funclib.c:6146
msgid "Constants"
msgstr ""

#. internal
#: ../src/funclib.c:6147
msgid "Numeric"
msgstr ""

#. internal
#: ../src/funclib.c:6148
msgid "Trigonometry"
msgstr ""

#. internal
#: ../src/funclib.c:6149
msgid "Number Theory"
msgstr ""

#. internal
#: ../src/funclib.c:6150
msgid "Matrix Manipulation"
msgstr ""

#. internal
#: ../src/funclib.c:6151
msgid "Linear Algebra"
msgstr ""

#. internal
#: ../src/funclib.c:6152
msgid "Combinatorics"
msgstr ""

#. internal
#: ../src/funclib.c:6153
#, fuzzy
msgid "Calculus"
msgstr "_Kalkulator"

#. internal
#: ../src/funclib.c:6154
#, fuzzy
msgid "Functions"
msgstr "NULL-funksjon!"

#. internal
#: ../src/funclib.c:6155
msgid "Equation Solving"
msgstr ""

#. internal
#: ../src/funclib.c:6156
msgid "Statistics"
msgstr ""

#. internal
#: ../src/funclib.c:6157
msgid "Polynomials"
msgstr ""

#. internal
#: ../src/funclib.c:6158
msgid "Set Theory"
msgstr ""

#. internal
#: ../src/funclib.c:6159
msgid "Miscellaneous"
msgstr ""

#. internal
#: ../src/funclib.c:6161
msgid "Displays the user manual"
msgstr ""

#: ../src/funclib.c:6162
msgid "Gives the warranty information"
msgstr ""

#: ../src/funclib.c:6163
msgid "Return version as a 3-vector"
msgstr ""

#: ../src/funclib.c:6164
msgid "Exits the program"
msgstr ""

#: ../src/funclib.c:6166
msgid "Prints a string to the error stream"
msgstr ""

#: ../src/funclib.c:6167
msgid "Waits a specified number of seconds"
msgstr ""

#: ../src/funclib.c:6168
msgid "The true boolean value"
msgstr ""

#: ../src/funclib.c:6170
msgid "The false boolean value"
msgstr ""

#: ../src/funclib.c:6179
msgid "Make integer (0 or 1) from a boolean value"
msgstr ""

#: ../src/funclib.c:6181
#, fuzzy
msgid "Prints an expression"
msgstr "Alltid skriv ut hele uttrykk"

#: ../src/funclib.c:6182
msgid "Changes current directory"
msgstr ""

#: ../src/funclib.c:6183
msgid "Prints an expression without a trailing newline"
msgstr ""

#: ../src/funclib.c:6184
#, fuzzy
msgid "Display a string and an expression"
msgstr "Alltid skriv ut hele uttrykk"

#: ../src/funclib.c:6185
msgid "Set a global variable"
msgstr ""

#: ../src/funclib.c:6187
msgid "Set the category and help description line for a function"
msgstr ""

#: ../src/funclib.c:6188
msgid "Sets up a help alias"
msgstr ""

#: ../src/funclib.c:6190
msgid "Identity function, returns its argument"
msgstr ""

#: ../src/funclib.c:6192
msgid "Generate random float"
msgstr ""

#: ../src/funclib.c:6194
msgid "Generate random integer"
msgstr ""

#: ../src/funclib.c:6197 ../src/gnome-genius.c:2440
msgid "Floating point precision"
msgstr "Flyttallspresisjon"

#: ../src/funclib.c:6199 ../src/gnome-genius.c:2329
msgid ""
"Display 0.0 when floating point number is less than 10^-x (0=never chop)"
msgstr ""

#: ../src/funclib.c:6202 ../src/gnome-genius.c:2352
msgid "Only chop numbers when another number is greater than 10^-x"
msgstr ""

#: ../src/funclib.c:6203
#, fuzzy
msgid "Maximum digits to display"
msgstr "Maks antall siffer for utskrift (0=ubegrenset)"

#: ../src/funclib.c:6204
#, fuzzy
msgid "Maximum errors to display"
msgstr "Maks antall feil som skal vises (0=ubegrenset)"

#: ../src/funclib.c:6205
msgid "Output style: normal, latex, mathml or troff"
msgstr ""

#: ../src/funclib.c:6206
msgid "Integer output base"
msgstr ""

#: ../src/funclib.c:6207
msgid "If true, mixed fractions are printed"
msgstr ""

#: ../src/funclib.c:6208
msgid "Print full expressions, even if more than a line"
msgstr ""

#: ../src/funclib.c:6209
msgid "Convert all results to floats before printing"
msgstr ""

#: ../src/funclib.c:6210
#, fuzzy
msgid "Use scientific notation"
msgstr "Flyttall i vitenskaplig notasjon"

#: ../src/funclib.c:6212
msgid ""
"Number of extra Miller-Rabin tests to run on a number before declaring it a "
"prime in IsPrime"
msgstr ""

#: ../src/funclib.c:6218
msgid "Expands a matrix just like we do on unquoted matrix input"
msgstr ""

#: ../src/funclib.c:6219
msgid "Gets the rows of a matrix as a vertical vector"
msgstr ""

#: ../src/funclib.c:6220
msgid "Gets the columns of a matrix as a horizontal vector"
msgstr ""

#: ../src/funclib.c:6221
msgid "Gets the diagonal entries of a matrix as a column vector"
msgstr ""

#: ../src/funclib.c:6222
msgid "Count the number of zero columns in a matrix"
msgstr ""

#: ../src/funclib.c:6223
msgid "Removes any all-zero columns of M"
msgstr ""

#: ../src/funclib.c:6225
msgid "Calculates the conjugate"
msgstr ""

#: ../src/funclib.c:6230
#, fuzzy
msgid "Calculates the sine function"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/funclib.c:6233
msgid "Calculates the cosine function"
msgstr ""

#: ../src/funclib.c:6236
msgid "Calculates the hyperbolic sine function"
msgstr ""

#: ../src/funclib.c:6239
msgid "Calculates the hyperbolic cosine function"
msgstr ""

#: ../src/funclib.c:6242
msgid "Calculates the tan function"
msgstr ""

#: ../src/funclib.c:6245
msgid "Calculates the arctan function"
msgstr ""

#: ../src/funclib.c:6250
#, fuzzy
msgid "Calculates the arctan2 function (arctan(y/x) if x>0)"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/funclib.c:6254
msgid "The number pi"
msgstr ""

#: ../src/funclib.c:6256
msgid "The natural number e"
msgstr ""

#: ../src/funclib.c:6258
msgid "The Golden Ratio"
msgstr ""

#: ../src/funclib.c:6260
msgid "Free fall acceleration"
msgstr ""

#: ../src/funclib.c:6263
msgid "Euler's Constant gamma"
msgstr ""

#: ../src/funclib.c:6267
msgid "Catalan's Constant (0.915...)"
msgstr ""

#. FUNC (ErrorFunction, 1, "x", "functions", N_("The error function, 2/sqrt(2) * int_0^x e^(-t^2) dt (only real values implemented)"));
#. ErrorFunction_function = f;
#. ALIAS (erf, 1, ErrorFunction);
#: ../src/funclib.c:6272
msgid "The Riemann zeta function (only real values implemented)"
msgstr ""

#: ../src/funclib.c:6276
msgid "The Gamma function (only real values implemented)"
msgstr ""

#: ../src/funclib.c:6281
msgid "The square root"
msgstr ""

#: ../src/funclib.c:6285
msgid "The exponential function"
msgstr ""

#: ../src/funclib.c:6288
msgid "The natural logarithm"
msgstr ""

#: ../src/funclib.c:6291
msgid "Logarithm of x base 2"
msgstr ""

#: ../src/funclib.c:6296
msgid "Logarithm of x base 10"
msgstr ""

#: ../src/funclib.c:6299
msgid "Round a number"
msgstr ""

#: ../src/funclib.c:6303
msgid "Get the highest integer less than or equal to n"
msgstr ""

#: ../src/funclib.c:6307
msgid "Get the lowest integer more than or equal to n"
msgstr ""

#: ../src/funclib.c:6311
msgid "Truncate number to an integer (return the integer part)"
msgstr ""

#: ../src/funclib.c:6316
msgid "Make number a float"
msgstr ""

#: ../src/funclib.c:6319
msgid "Get the numerator of a rational number"
msgstr ""

#: ../src/funclib.c:6321
msgid "Get the denominator of a rational number"
msgstr ""

#: ../src/funclib.c:6324
msgid "Greatest common divisor"
msgstr ""

#: ../src/funclib.c:6326
msgid "Least common multiplier"
msgstr ""

#: ../src/funclib.c:6328
msgid "Check a number for being a perfect square"
msgstr ""

#: ../src/funclib.c:6329
msgid "Check a number for being any perfect power (a^b)"
msgstr ""

#: ../src/funclib.c:6330
msgid "Return the n'th prime (up to a limit)"
msgstr ""

#: ../src/funclib.c:6332
msgid "Tests if an integer is even"
msgstr ""

#: ../src/funclib.c:6333
msgid "Tests if an integer is odd"
msgstr ""

#: ../src/funclib.c:6335
msgid "Returns the least prime greater than n (if n is positive)"
msgstr ""

#: ../src/funclib.c:6336
msgid "Returns the n'th Lucas number"
msgstr ""

#: ../src/funclib.c:6337
msgid "Returns inverse of n mod m"
msgstr ""

#: ../src/funclib.c:6338
msgid "Checks divisibility (if m divides n)"
msgstr ""

#: ../src/funclib.c:6339
msgid ""
"Return n/d but only if d divides n else returns garbage (this is faster than "
"writing n/d)"
msgstr ""

#: ../src/funclib.c:6340
msgid ""
"Tests primality of integers, for numbers greater than 25*10^9 false positive "
"is with low probability depending on IsPrimeMillerRabinReps"
msgstr ""

#: ../src/funclib.c:6341
msgid "Run the strong pseudoprime test base b on n"
msgstr ""

#: ../src/funclib.c:6342
msgid ""
"Use the Miller-Rabin primality test on n, reps number of times.  The "
"probability of false positive is (1/4)^reps"
msgstr ""

#: ../src/funclib.c:6343
msgid ""
"Use the Miller-Rabin primality test on n with enough bases that assuming the "
"Generalized Reimann Hypothesis the result is deterministic"
msgstr ""

#: ../src/funclib.c:6344
msgid "Return factorization of a number as a matrix"
msgstr ""

#: ../src/funclib.c:6346
msgid "Returns the maximum of arguments or matrix"
msgstr ""

#: ../src/funclib.c:6349
msgid "Returns the minimum of arguments or matrix"
msgstr ""

#: ../src/funclib.c:6353
msgid "Calculate the Jacobi symbol (a/b) (b should be odd)"
msgstr ""

#: ../src/funclib.c:6355
msgid ""
"Calculate the Jacobi symbol (a/b) with the Kronecker extension (a/2)=(2/a) "
"when a odd, or (a/2)=0 when a even"
msgstr ""

#: ../src/funclib.c:6357
msgid "Calculate the Legendre symbol (a/p)"
msgstr ""

#: ../src/funclib.c:6360
#, fuzzy
msgid "Get the real part of a complex number"
msgstr "Kan ikke bestemme typen av et komplekst tall"

#: ../src/funclib.c:6363
#, fuzzy
msgid "Get the imaginary part of a complex number"
msgstr "Kan ikke bestemme typen av et komplekst tall"

#: ../src/funclib.c:6367
msgid "Make an identity matrix of a given size"
msgstr ""

#: ../src/funclib.c:6370
msgid "Make an matrix of all zeros (or a row vector)"
msgstr ""

#: ../src/funclib.c:6372
msgid "Make an matrix of all ones (or a row vector)"
msgstr ""

#: ../src/funclib.c:6375
msgid "Get the number of rows of a matrix"
msgstr ""

#: ../src/funclib.c:6376
msgid "Get the number of columns of a matrix"
msgstr ""

#: ../src/funclib.c:6377
msgid "Is a matrix square"
msgstr ""

#: ../src/funclib.c:6378
msgid "Is argument a horizontal or a vertical vector"
msgstr ""

#: ../src/funclib.c:6379
msgid "Is a matrix upper triangular"
msgstr ""

#: ../src/funclib.c:6380
msgid "Is a matrix lower triangular"
msgstr ""

#: ../src/funclib.c:6381
msgid "Is a matrix diagonal"
msgstr ""

#: ../src/funclib.c:6382
msgid "Get the number of elements of a matrix"
msgstr ""

#: ../src/funclib.c:6384
msgid "Get the row echelon form of a matrix"
msgstr ""

#: ../src/funclib.c:6388
msgid "Get the reduced row echelon form of a matrix"
msgstr ""

#: ../src/funclib.c:6392
msgid ""
"Solve linear system Mx=V, return solution V if there is a unique solution, "
"null otherwise.  Extra two reference parameters can optionally be used to "
"get the reduced M and V."
msgstr ""

#: ../src/funclib.c:6395
msgid "Get the determinant of a matrix"
msgstr ""

#: ../src/funclib.c:6398
msgid ""
"Return pivot columns of a matrix, that is columns which have a leading 1 in "
"rref form, also returns the row where they occur"
msgstr ""

#: ../src/funclib.c:6400
msgid "Get the nullspace of a matrix"
msgstr ""

#: ../src/funclib.c:6402
msgid "Make new matrix of given size from old one"
msgstr ""

#: ../src/funclib.c:6403
msgid "Return the index complement of a vector of indexes"
msgstr ""

#: ../src/funclib.c:6404
msgid "Get the hermitian product of two vectors"
msgstr ""

#: ../src/funclib.c:6407
msgid "Check if a matrix is a matrix of numbers"
msgstr ""

#: ../src/funclib.c:6408
msgid "Check if a matrix is an integer (non-complex) matrix"
msgstr ""

#: ../src/funclib.c:6409
msgid "Check if a matrix is a rational (non-complex) matrix"
msgstr ""

#: ../src/funclib.c:6410
msgid "Check if a matrix is a real (non-complex) matrix"
msgstr ""

#: ../src/funclib.c:6411
msgid "Check if a matrix is positive, that is if each element is positive"
msgstr ""

#: ../src/funclib.c:6412
msgid ""
"Check if a matrix is nonnegative, that is if each element is nonnegative"
msgstr ""

#: ../src/funclib.c:6414
msgid "Check if a number or a matrix is all zeros"
msgstr ""

#: ../src/funclib.c:6415
msgid "Check if a number or a matrix is 1 or identity respectively"
msgstr ""

#: ../src/funclib.c:6417
msgid ""
"Returns true if the element x is in the set X (where X is a vector "
"pretending to be a set)"
msgstr ""

#: ../src/funclib.c:6418
msgid "Returns true if X is a subset of Y"
msgstr ""

#: ../src/funclib.c:6419
msgid ""
"Returns a set theoretic difference X-Y (X and Y are vectors pretending to be "
"sets)"
msgstr ""

#: ../src/funclib.c:6420
msgid ""
"Returns a set theoretic intersection of X and Y (X and Y are vectors "
"pretending to be sets)"
msgstr ""

#: ../src/funclib.c:6422
msgid "Check if argument is a null"
msgstr ""

#: ../src/funclib.c:6423
msgid "Check if argument is a number"
msgstr ""

#: ../src/funclib.c:6424
msgid "Check if argument is a boolean (and not a number)"
msgstr ""

#: ../src/funclib.c:6425
msgid "Check if argument is a text string"
msgstr ""

#: ../src/funclib.c:6426
msgid "Check if argument is a matrix"
msgstr ""

#: ../src/funclib.c:6427
msgid "Check if argument is a function"
msgstr ""

#: ../src/funclib.c:6428
msgid "Check if argument is a function or an identifier"
msgstr ""

#: ../src/funclib.c:6429
msgid "Check if argument is a function reference"
msgstr ""

#: ../src/funclib.c:6431
msgid "Check if argument is a complex (non-real) number"
msgstr ""

#: ../src/funclib.c:6432
msgid "Check if argument is a real number"
msgstr ""

#: ../src/funclib.c:6433
msgid "Check if argument is an integer (non-complex)"
msgstr ""

#: ../src/funclib.c:6434
msgid "Check if argument is a positive real integer"
msgstr ""

#: ../src/funclib.c:6436
msgid "Check if argument is a non-negative real integer"
msgstr ""

#: ../src/funclib.c:6437
msgid "Check if argument is a possibly complex integer"
msgstr ""

#: ../src/funclib.c:6439
msgid "Check if argument is a rational number (non-complex)"
msgstr ""

#: ../src/funclib.c:6440
msgid "Check if argument is a possibly complex rational number"
msgstr ""

#: ../src/funclib.c:6441
msgid "Check if argument is a floating point number (non-complex)"
msgstr ""

#: ../src/funclib.c:6443
msgid "Add two polynomials (vectors)"
msgstr ""

#: ../src/funclib.c:6444
msgid "Subtract two polynomials (as vectors)"
msgstr ""

#: ../src/funclib.c:6445
msgid "Multiply two polynomials (as vectors)"
msgstr ""

#: ../src/funclib.c:6446
msgid "Divide polynomial p by q, return the remainder in r"
msgstr ""

#: ../src/funclib.c:6447
msgid "Take polynomial (as vector) derivative"
msgstr ""

#: ../src/funclib.c:6448
msgid "Take second polynomial (as vector) derivative"
msgstr ""

#: ../src/funclib.c:6449
msgid "Trim zeros from a polynomial (as vector)"
msgstr ""

#: ../src/funclib.c:6450
msgid "Check if a vector is usable as a polynomial"
msgstr ""

#: ../src/funclib.c:6451
msgid "Make string out of a polynomial (as vector)"
msgstr ""

#: ../src/funclib.c:6452
msgid "Make function out of a polynomial (as vector)"
msgstr ""

#: ../src/funclib.c:6454
msgid "Find roots of a quadratic polynomial (given as vector of coefficients)"
msgstr ""

#: ../src/funclib.c:6456
msgid "Get all combinations of k numbers from 1 to n as a vector of vectors"
msgstr ""

#: ../src/funclib.c:6457
msgid ""
"Get combination that would come after v in call to combinations, first "
"combination should be [1:k]."
msgstr ""

#: ../src/funclib.c:6458
msgid "Get all permutations of k numbers from 1 to n as a vector of vectors"
msgstr ""

#: ../src/funclib.c:6460
msgid "Calculate combinations (binomial coefficient)"
msgstr ""

#: ../src/funclib.c:6463
msgid "Convert a string to a vector of ASCII values"
msgstr ""

#: ../src/funclib.c:6464
msgid "Convert a vector of ASCII values to a string"
msgstr ""

#: ../src/funclib.c:6466
msgid ""
"Convert a string to a vector of 0-based alphabet values (positions in the "
"alphabet string), -1's for unknown letters"
msgstr ""

#: ../src/funclib.c:6467
msgid ""
"Convert a vector of 0-based alphabet values (positions in the alphabet "
"string) to a string"
msgstr ""

#: ../src/funclib.c:6469
msgid ""
"Protect a variable from being modified.  It will be treated as a system "
"defined variable from now on.  Protected parameters can still be modified."
msgstr ""

#: ../src/funclib.c:6470
msgid ""
"Unprotect a variable from being modified.  It will be treated as a user "
"defined variable from now on."
msgstr ""

#: ../src/funclib.c:6471
msgid ""
"Set flags for a function, currently \"PropagateMod\" and \"NoModuloArguments"
"\""
msgstr ""

#: ../src/funclib.c:6472
msgid "Get current modulo from the context outside the function"
msgstr ""

#: ../src/funclib.c:6473
msgid "Check if a variable or function is defined"
msgstr ""

#: ../src/funclib.c:6474
msgid "Undefine a variable (including all locals and globals of the same name)"
msgstr ""

#: ../src/funclib.c:6476
msgid ""
"Undefine all unprotected (user defined) global variables and parameters.  "
"Does not reset or change protected (system) parameters."
msgstr ""

#: ../src/funclib.c:6477
msgid ""
"Mark all currently defined variables as protected.  They will be treated as "
"system defined variables from now on."
msgstr ""

#: ../src/funclib.c:6478
msgid ""
"Return a vector of all global unprotected (user defined) variable names."
msgstr ""

#: ../src/funclib.c:6480
msgid "Parse a string (but do not execute)"
msgstr ""

#: ../src/funclib.c:6481
msgid "Parse and evaluate a string"
msgstr ""

#: ../src/funclib.c:6483
msgid "Ask a question and return a string.  Optionally pass in a default."
msgstr ""

#: ../src/funclib.c:6484
msgid ""
"Ask a question and present a list of buttons.  Returns the 1-based index of "
"the button pressed (or null on failure)."
msgstr ""

#: ../src/funclib.c:6486
msgid ""
"Integration of f by Composite Simpson's Rule on the interval [a,b] with n "
"subintervals with error of max(f'''')*h^4*(b-a)/180, note that n should be "
"even"
msgstr ""

#: ../src/genius.c:110
#, c-format
msgid "line %d: %s\n"
msgstr "linje %d: %s\n"

#: ../src/genius.c:128
#, c-format
msgid "Too many errors! (%d followed)\n"
msgstr "For mange feil! (%d fulgt)\n"

#: ../src/genius.c:156
msgid "Cannot locate the manual"
msgstr ""

#: ../src/genius.c:221
#, c-format
msgid "Suggested: %s\n"
msgstr ""

#: ../src/genius.c:267
#, fuzzy, c-format
msgid "Out of range!\n"
msgstr "Indeks utenfor gyldig område"

#: ../src/genius.c:351 ../src/genius.lang.h:5 ../src/gnome-genius.c:750
#: ../src/gnome-genius.c:795
msgid "Genius"
msgstr ""

#: ../src/genius.c:384 ../src/genius.c:393 ../src/genius.c:400
#: ../src/genius.c:409
#, c-format
msgid "%s should be between %d and %d, using %d"
msgstr ""

#: ../src/genius.c:428 ../src/genius.c:437
#, c-format
msgid "%s should be greater then or equal to %d, using %d"
msgstr ""

#: ../src/genius.c:485
#, c-format
msgid ""
"Genius %s\n"
"%s%s\n"
msgstr ""

#: ../src/genius.c:496
#, fuzzy, c-format
msgid ""
"Genius %s usage:\n"
"\n"
"genius [options] [files]\n"
"\n"
"\t--help            \tPrint this help\n"
"\t--version         \tPrint version number\n"
"\t--precision=num   \tFloating point precision [128]\n"
"\t--maxdigits=num   \tMaximum digits to display (0=no limit) [0]\n"
"\t--[no]floatresult \tAll results as floats [OFF]\n"
"\t--[no]scinot      \tResults in scientific notation [OFF]\n"
"\t--[no]fullexp     \tAlways print full expressions [OFF]\n"
"\t--maxerrors=num   \tMaximum errors to display (0=no limit) [5]\n"
"\t--[no]mixed       \tPrint fractions in mixed format\n"
"\t--intoutbase=num  \tBase to use to print out integers [10]\n"
"\t--chop=num        \tChop small numbers less than 10^-num [20]\n"
"\t--chopwhen=num    \tBut only when other numbers 10^-num or more [5]\n"
"\t--[no]readline    \tUse readline if it is available [ON]\n"
"\t--[no]compile     \tCompile everything and dump it to stdout [OFF]\n"
"\t--[no]gettext     \tDump help/error strings in fake .c file to\n"
"\t                  \tstdout (for use with gettext) [OFF]\n"
"\t--[no]quiet       \tBe quiet during non-interactive mode,\n"
"\t                  \t(always on when compiling) [OFF]\n"
"\t--exec=expr       \tExecute an expression\n"
"\n"
msgstr ""
"Genius %s bruk:\n"
"\n"
"genius [alternativer] [filer]\n"
"\n"
"\t--precision=num         Flyttallspresisjon [256]\n"
"\t--maxdigits=num   \tMaks antall siffer for utskrift (0=ingen grense) [0]\n"
"\t--[no]floatresult \tAlle resultater som flyttall [AV]\n"
"\t--[no]scinot      \tResultater i vitenskapelig notasjon [AV]\n"
"\t--[no]fullexp     \tAlltid skriv ut hele uttrykk\n"
"        --maxerrors=num         Maksimalt antall feil som skal vises "
"(0=ubegrenset) [5]\n"
"\t--[no]readline    \tBruk readline hvis tilgjengelig [PÅ]\n"
"\t--[no]compile     \tKompiler alt og dump det til stdout [AV]\n"
"\t--[no]quiet       \tVær stille i ikke-interaktivt modus,\n"
"\t                  \t(alltid på under kompilering) [AV]\n"
"\n"

#: ../src/genius.c:526
#, c-format
msgid ""
"Can't specify both an expression and files to execute on the command line"
msgstr ""

#: ../src/genius.c:537
#, fuzzy, c-format
msgid ""
"Genius %s\n"
"%s\n"
"This is free software with ABSOLUTELY NO WARRANTY.\n"
"For license details type `warranty'.\n"
"For help type 'manual' or 'help'.%s\n"
"\n"
msgstr ""
"Genius %s\n"
"Copyright (c) 1997,1998,1999 Free Software Foundation, Inc.\n"
"Dette er fri programvare og er uten NOEN SOM HELST GARANTI.\n"
"For detaljer skriv `warranty'.\n"
"\n"

#: ../src/genius.c:610 ../src/gnome-genius.c:5142
msgid ""
"The only thing that interferes with my learning is my education.  -- Albert "
"Einstein"
msgstr ""

#: ../src/genius.c:631 ../src/genius.c:704
msgid "Can't open file"
msgstr "Kan ikke åpne filen"

#: ../src/genius.lang.h:1
msgid "Base-N Integers"
msgstr ""

#: ../src/genius.lang.h:2
msgid "Commands"
msgstr ""

#: ../src/genius.lang.h:3
msgid "Decimal Integers"
msgstr ""

#: ../src/genius.lang.h:4
msgid "Floats"
msgstr ""

#: ../src/genius.lang.h:6
msgid "Keywords"
msgstr ""

#: ../src/genius.lang.h:7
msgid "Line Comment"
msgstr ""

#: ../src/genius.lang.h:8
msgid "Scripts"
msgstr ""

#: ../src/genius.lang.h:9
msgid "String"
msgstr ""

#: ../src/gnome-genius.c:255
msgid "_File"
msgstr ""

#. name, stock id, label
#: ../src/gnome-genius.c:256
msgid "_Edit"
msgstr ""

#. name, stock id, label
#: ../src/gnome-genius.c:257
msgid "_Calculator"
msgstr "_Kalkulator"

#. name, stock id, label
#: ../src/gnome-genius.c:258
#, fuzzy
msgid "P_lugins"
msgstr "_Tillegg"

#. name, stock id, label
#: ../src/gnome-genius.c:259
msgid "_Programs"
msgstr ""

#. name, stock id, label
#: ../src/gnome-genius.c:260
msgid "_Settings"
msgstr ""

#. name, stock id, label
#: ../src/gnome-genius.c:261
msgid "_Help"
msgstr ""

#. name, stock id, label
#. name, stock id
#: ../src/gnome-genius.c:263
msgid "_New Program"
msgstr ""

#. label, accelerator
#: ../src/gnome-genius.c:264 ../src/gnome-genius.c:268
msgid "Create new program tab"
msgstr ""

#: ../src/gnome-genius.c:267
msgid "New"
msgstr ""

#. name, stock id
#: ../src/gnome-genius.c:271
msgid "_Open..."
msgstr ""

#. label, accelerator
#: ../src/gnome-genius.c:272 ../src/gnome-genius.c:276
#, fuzzy
msgid "Open a file"
msgstr "Kan ikke åpne filen"

#: ../src/gnome-genius.c:275
msgid "Open"
msgstr ""

#. name, stock id
#: ../src/gnome-genius.c:279
msgid "_Save"
msgstr ""

#. label, accelerator
#: ../src/gnome-genius.c:280
msgid "Save current file"
msgstr ""

#: ../src/gnome-genius.c:283
msgid "Save All _Unsaved"
msgstr ""

#: ../src/gnome-genius.c:284
msgid "Save all unsaved programs"
msgstr ""

#: ../src/gnome-genius.c:287
msgid "Save _As..."
msgstr ""

#: ../src/gnome-genius.c:288
msgid "Save to a file"
msgstr ""

#: ../src/gnome-genius.c:291
msgid "_Reload from Disk"
msgstr ""

#: ../src/gnome-genius.c:292
msgid "Reload the selected program from disk"
msgstr ""

#: ../src/gnome-genius.c:295
msgid "_Close"
msgstr ""

#: ../src/gnome-genius.c:296
msgid "Close the current file"
msgstr ""

#: ../src/gnome-genius.c:299
msgid "_Load and Run..."
msgstr ""

#: ../src/gnome-genius.c:300
msgid "Load and execute a file in genius"
msgstr "Last og kjør en fil i genius"

#: ../src/gnome-genius.c:303
msgid "Save Console Ou_tput..."
msgstr ""

#: ../src/gnome-genius.c:304
msgid ""
"Save what is visible on the console (including scrollback) to a text file"
msgstr ""

#: ../src/gnome-genius.c:307
msgid "_Quit"
msgstr ""

#: ../src/gnome-genius.c:308
msgid "Quit"
msgstr ""

#: ../src/gnome-genius.c:312
msgid "_Undo"
msgstr ""

#: ../src/gnome-genius.c:313
msgid "Undo the last action"
msgstr ""

#: ../src/gnome-genius.c:316
msgid "_Redo"
msgstr ""

#: ../src/gnome-genius.c:317
msgid "Redo the undone action"
msgstr ""

#: ../src/gnome-genius.c:321
msgid "Cu_t"
msgstr ""

#: ../src/gnome-genius.c:322
#, fuzzy
msgid "Cut the selection"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/gnome-genius.c:325
msgid "_Copy"
msgstr ""

#: ../src/gnome-genius.c:326
msgid "Copy the selection"
msgstr ""

#: ../src/gnome-genius.c:329
msgid "_Paste"
msgstr ""

#: ../src/gnome-genius.c:330
msgid "Paste the clipboard"
msgstr ""

#: ../src/gnome-genius.c:333
msgid "Copy Answer As Plain Te_xt"
msgstr ""

#: ../src/gnome-genius.c:334
msgid "Copy last answer into the clipboard in plain text"
msgstr ""

#: ../src/gnome-genius.c:337
msgid "Copy Answer As _LaTeX"
msgstr ""

#: ../src/gnome-genius.c:338
msgid "Copy last answer into the clipboard as LaTeX"
msgstr ""

#: ../src/gnome-genius.c:341
msgid "Copy Answer As _MathML"
msgstr ""

#: ../src/gnome-genius.c:342
msgid "Copy last answer into the clipboard as MathML"
msgstr ""

#: ../src/gnome-genius.c:345
msgid "Copy Answer As T_roff"
msgstr ""

#: ../src/gnome-genius.c:346
msgid "Copy last answer into the clipboard as Troff eqn"
msgstr ""

#: ../src/gnome-genius.c:349
msgid "_Run"
msgstr ""

#: ../src/gnome-genius.c:350
msgid "Run current program"
msgstr ""

#: ../src/gnome-genius.c:353
msgid "_Interrupt"
msgstr "_Avbryt"

#: ../src/gnome-genius.c:354
msgid "Interrupt current calculation"
msgstr "Avbryt aktiv kalkulasjon"

#: ../src/gnome-genius.c:357
msgid "Show _Full Answer"
msgstr ""

#: ../src/gnome-genius.c:358
msgid "Show the full text of last answer"
msgstr ""

#: ../src/gnome-genius.c:361
msgid "Show User _Variables"
msgstr ""

#: ../src/gnome-genius.c:362
msgid "Show the current value of all user variables"
msgstr ""

#: ../src/gnome-genius.c:365
msgid "_Monitor a Variable"
msgstr ""

#: ../src/gnome-genius.c:366
msgid "Monitor a variable continuously"
msgstr ""

#: ../src/gnome-genius.c:369
msgid "_Plot..."
msgstr ""

#: ../src/gnome-genius.c:370 ../src/gnome-genius.c:374
msgid "Plot functions, vector fields, surfaces, etc..."
msgstr ""

#: ../src/gnome-genius.c:373 ../src/gnome-genius.c:567 ../src/graphing.c:5941
msgid "_Plot"
msgstr ""

#: ../src/gnome-genius.c:377
msgid "_Next Tab"
msgstr ""

#: ../src/gnome-genius.c:378
msgid "Go to next tab"
msgstr ""

#: ../src/gnome-genius.c:381
msgid "_Previous Tab"
msgstr ""

#: ../src/gnome-genius.c:382
msgid "Go to previous tab"
msgstr ""

#: ../src/gnome-genius.c:385
msgid "_Console"
msgstr ""

#: ../src/gnome-genius.c:386
msgid "Go to the console tab"
msgstr ""

#: ../src/gnome-genius.c:389
msgid "_Preferences"
msgstr ""

#: ../src/gnome-genius.c:390
msgid "Configure Genius"
msgstr ""

#: ../src/gnome-genius.c:393
msgid "_Contents"
msgstr ""

#: ../src/gnome-genius.c:394
msgid "View the Genius manual"
msgstr ""

#: ../src/gnome-genius.c:397
msgid "_Help on Function"
msgstr ""

#: ../src/gnome-genius.c:398
msgid "Help on a function or a command"
msgstr ""

#: ../src/gnome-genius.c:401
msgid "_Warranty"
msgstr ""

#: ../src/gnome-genius.c:402
msgid "Display warranty information"
msgstr ""

#: ../src/gnome-genius.c:405
msgid "_About"
msgstr ""

#: ../src/gnome-genius.c:406
msgid "About Genius"
msgstr ""

#: ../src/gnome-genius.c:854
msgid "Help on Function"
msgstr ""

#: ../src/gnome-genius.c:872
msgid "Function or command name:"
msgstr ""

#: ../src/gnome-genius.c:905
#, c-format
msgid "<b>Help on %s not found</b>"
msgstr ""

#: ../src/gnome-genius.c:909
#, c-format
msgid ""
"<b>Help on %s not found</b>\n"
"\n"
"Perhaps you meant %s."
msgstr ""

#: ../src/gnome-genius.c:964
msgid "Error"
msgstr ""

#: ../src/gnome-genius.c:966
msgid "Information"
msgstr ""

#: ../src/gnome-genius.c:1052
msgid ""
"Global variables:\n"
"\n"
msgstr ""

#: ../src/gnome-genius.c:1085
msgid ""
"\n"
"Function call stack:\n"
msgstr ""

#: ../src/gnome-genius.c:1087 ../src/gnome-genius.c:1146
msgid ""
"(depth of context in parentheses)\n"
"\n"
msgstr ""

#: ../src/gnome-genius.c:1144
msgid ""
"\n"
"Local variables:\n"
msgstr ""

#: ../src/gnome-genius.c:1198
msgid "User Variable Listing"
msgstr ""

#: ../src/gnome-genius.c:1306
#, fuzzy, c-format
msgid "%s undefined"
msgstr "%s ikke definert på <%s>"

#. printed before a global variable
#: ../src/gnome-genius.c:1341
msgid "(global) "
msgstr ""

#. printed before local variable in certain
#. * context
#: ../src/gnome-genius.c:1345
#, c-format
msgid "(context %d) "
msgstr ""

#: ../src/gnome-genius.c:1367
#, c-format
msgid "%s not a user variable"
msgstr ""

#: ../src/gnome-genius.c:1401
#, c-format
msgid "Monitoring: %s"
msgstr ""

#: ../src/gnome-genius.c:1449
msgid "Update continuously"
msgstr ""

#: ../src/gnome-genius.c:1480
msgid "Monitor a Variable"
msgstr ""

#: ../src/gnome-genius.c:1497
msgid "Variable name:"
msgstr ""

#. error
#. always textbox
#: ../src/gnome-genius.c:1553
msgid "Full Answer"
msgstr ""

#: ../src/gnome-genius.c:1569
#, c-format
msgid ""
"\n"
"Too many errors! (%d followed)"
msgstr ""
"\n"
"For mange feil! (%d fulgt)"

#: ../src/gnome-genius.c:1584
#, c-format
msgid "\\e[01;31mToo many errors! (%d followed)\\e[0m\n"
msgstr "\\e[01;31mFor mange feil! (%d fulgt)\\e[0m\n"

#: ../src/gnome-genius.c:1704
#, c-format
msgid ""
"<b>Cannot display help</b>\n"
"\n"
"%s"
msgstr ""

#. parent
#: ../src/gnome-genius.c:1737
msgid "Genius manual not found.  Perhaps the installation is not correct."
msgstr ""

#. parent
#: ../src/gnome-genius.c:1765
msgid "Command 'xdg-open' is not found.  Cannot open help."
msgstr ""

#: ../src/gnome-genius.c:1837
msgid "Nils Barth (initial implementation of parts of the GEL library)"
msgstr ""

#: ../src/gnome-genius.c:1838
msgid "Adrian E. Feiguin <feiguin@ifir.edu.ar> (GtkExtra - plotting widgetry)"
msgstr ""

#. Translators should localize the following string
#. * which will give them credit in the About box.
#. * E.g. "Fulano de Tal <fulano@detal.com>"
#.
#: ../src/gnome-genius.c:1852
msgid "translator-credits"
msgstr ""

#: ../src/gnome-genius.c:1900
msgid "Genius Mathematical Tool"
msgstr ""

#: ../src/gnome-genius.c:1904
msgid "The Gnome calculator style edition of the Genius Mathematical Tool."
msgstr ""

#: ../src/gnome-genius.c:2100
msgid ""
"Genius is executing something, and furthermore there are unsaved programs.\n"
"Are you sure you wish to quit?"
msgstr ""

#: ../src/gnome-genius.c:2108
msgid "There are unsaved programs, are you sure you wish to quit?"
msgstr ""

#: ../src/gnome-genius.c:2115
msgid "Genius is executing something, are you sure you wish to quit?"
msgstr ""

#: ../src/gnome-genius.c:2122
msgid "Are you sure you wish to quit?"
msgstr ""

#: ../src/gnome-genius.c:2243
msgid "Genius Setup"
msgstr ""

#: ../src/gnome-genius.c:2261
msgid "Output"
msgstr "Utskrift"

#: ../src/gnome-genius.c:2264
msgid "Number/Expression output options"
msgstr "Alternativer for utskrift av tall/uttrykk"

#: ../src/gnome-genius.c:2274
msgid "Maximum digits to output (0=unlimited)"
msgstr "Maks antall siffer for utskrift (0=ubegrenset)"

#: ../src/gnome-genius.c:2294
msgid "Results as floats"
msgstr "Svar som flyttall"

#: ../src/gnome-genius.c:2302
msgid "Floats in scientific notation"
msgstr "Flyttall i vitenskaplig notasjon"

#: ../src/gnome-genius.c:2310
msgid "Always print full expressions"
msgstr "Alltid skriv ut hele uttrykk"

#: ../src/gnome-genius.c:2318
msgid "Use mixed fractions"
msgstr ""

#: ../src/gnome-genius.c:2371
msgid "Remember output settings across sessions"
msgstr ""

#: ../src/gnome-genius.c:2381
msgid ""
"Should the output settings in the \"Number/Expression output options\" frame "
"be remembered for next session.  Does not apply to the \"Error/Info output "
"options\" frame."
msgstr ""

#: ../src/gnome-genius.c:2386
msgid "Error/Info output options"
msgstr "Feil/Info utskriftsalternativer"

#: ../src/gnome-genius.c:2394
msgid "Display errors in a dialog"
msgstr "Vis feil i en dialog"

#: ../src/gnome-genius.c:2402
msgid "Display information messages in a dialog"
msgstr "Vis informasjonsmeldinger i en dialog"

#: ../src/gnome-genius.c:2413
msgid "Maximum errors to display (0=unlimited)"
msgstr "Maks antall feil som skal vises (0=ubegrenset)"

#: ../src/gnome-genius.c:2437
msgid "Precision"
msgstr "Presisjon"

#: ../src/gnome-genius.c:2447
msgid ""
"NOTE: The floating point precision might not take effect\n"
"for all numbers immediately, only new numbers calculated\n"
"and new variables will be affected."
msgstr ""
"MERK: Flyttallspresisjonen vil kanskje ikke effektueres\n"
"for alle tall med en gang, bare nye beregninger og nye\n"
"variable vil påvirkes."

#: ../src/gnome-genius.c:2456
msgid "Floating point precision (bits)"
msgstr "Flyttallspresisjon (bits)"

#: ../src/gnome-genius.c:2475
msgid "Remember precision setting across sessions"
msgstr ""

#: ../src/gnome-genius.c:2484
msgid "Should the precision setting be remembered for next session."
msgstr ""

#: ../src/gnome-genius.c:2492
msgid "Terminal"
msgstr "Terminal"

#: ../src/gnome-genius.c:2494
msgid "Terminal options"
msgstr "Alternativer for terminal"

#: ../src/gnome-genius.c:2503
msgid "Scrollback lines"
msgstr "Tilbakerulling i linjer"

#: ../src/gnome-genius.c:2526
msgid "Font:"
msgstr "Skrifttype:"

#: ../src/gnome-genius.c:2537
msgid "Black on white"
msgstr ""

#: ../src/gnome-genius.c:2545
msgid "Blinking cursor"
msgstr ""

#: ../src/gnome-genius.c:2558
msgid "Memory"
msgstr ""

#: ../src/gnome-genius.c:2561
msgid "Limits"
msgstr ""

#: ../src/gnome-genius.c:2568
msgid ""
"When the limit is reached you will be asked if\n"
"you wish to interrupt the calculation or continue.\n"
"Setting to 0 disables the limit."
msgstr ""

#: ../src/gnome-genius.c:2577
#, fuzzy
msgid "Maximum number of nodes to allocate"
msgstr "Maks antall feil som skal vises (0=ubegrenset)"

#: ../src/gnome-genius.c:2617
msgid ""
"<b>Genius is currently executing something.</b>\n"
"\n"
"Please try again later or interrupt the current operation."
msgstr ""

#: ../src/gnome-genius.c:2645
#, fuzzy
msgid "GEL files"
msgstr "Last GEL fil"

#: ../src/gnome-genius.c:2650 ../src/graphing.c:1104
msgid "All files"
msgstr ""

#: ../src/gnome-genius.c:2674 ../src/gnome-genius.c:3566
#, fuzzy
msgid "Cannot open file!"
msgstr "Kan ikke åpne filen!"

#: ../src/gnome-genius.c:2684 ../src/gnome-genius.c:4044
#, fuzzy
msgid "Output from "
msgstr "Utskrift"

#: ../src/gnome-genius.c:2700 ../src/gnome-genius.c:4113
msgid "End"
msgstr ""

#: ../src/gnome-genius.c:2719
msgid "Load and Run"
msgstr ""

#: ../src/gnome-genius.c:2723
msgid "_Load"
msgstr "_Last"

#: ../src/gnome-genius.c:3242
#, fuzzy
msgid "Cannot open file"
msgstr "Kan ikke åpne filen!"

#. context
#: ../src/gnome-genius.c:3277 ../src/gnome-genius.c:4711
#, fuzzy, c-format
msgid "Line: %d"
msgstr "linje %d: %s\n"

#: ../src/gnome-genius.c:3465
#, c-format
msgid "Program_%d.gel"
msgstr ""

#: ../src/gnome-genius.c:3472
#, c-format
msgid "Program %d"
msgstr ""

#: ../src/gnome-genius.c:3500
#, fuzzy, c-format
msgid "Cannot open %s"
msgstr "Kan ikke åpne filen!"

#: ../src/gnome-genius.c:3588
msgid "Open..."
msgstr ""

#: ../src/gnome-genius.c:3663
msgid "Program is read only"
msgstr ""

#. new fname
#: ../src/gnome-genius.c:3665 ../src/gnome-genius.c:3697
#: ../src/gnome-genius.c:3756 ../src/gnome-genius.c:3885
#, c-format
msgid ""
"<b>Cannot save file</b>\n"
"Details: %s"
msgstr ""

#: ../src/gnome-genius.c:3707
msgid "Save new programs by \"Save As..\" first!"
msgstr ""

#: ../src/gnome-genius.c:3713
msgid ""
"Some read-only programs are modified.  Use \"Save As..\" to save them to a "
"new location."
msgstr ""

#: ../src/gnome-genius.c:3750 ../src/gnome-genius.c:3865 ../src/graphing.c:901
#: ../src/graphing.c:1007
msgid "File already exists.  Overwrite it?"
msgstr ""

#: ../src/gnome-genius.c:3792
msgid "Save As..."
msgstr ""

#: ../src/gnome-genius.c:3919
msgid "Save Console Output..."
msgstr ""

#: ../src/gnome-genius.c:3982
msgid ""
"The program you are closing is unsaved, are you sure you wish to close it "
"without saving?"
msgstr ""

#: ../src/gnome-genius.c:4001
msgid ""
"<b>No program selected.</b>\n"
"\n"
"Create a new program, or select an existing tab in the notebook."
msgstr ""

#: ../src/gnome-genius.c:4031
#, fuzzy, c-format
msgid "Cannot open pipe: %s"
msgstr "Kan ikke åpne filen!"

#: ../src/gnome-genius.c:4060
msgid ""
"<b>Cannot execute program</b>\n"
"\n"
"Cannot fork."
msgstr ""

#: ../src/gnome-genius.c:4130
msgid ""
"<b>Error executing program</b>\n"
"\n"
"There was an error while writing the\n"
"program to the engine."
msgstr ""

#: ../src/gnome-genius.c:4155
#, c-format
msgid "Genius %s"
msgstr ""

#: ../src/gnome-genius.c:4381
msgid "Memory (node number) limit has been reached, interrupt the computation?"
msgstr ""

#. error
#. always textbox
#. textbox_title
#. bind_response
#. wrap
#: ../src/gnome-genius.c:4461
msgid "Can't execute genius-readline-helper-fifo!\n"
msgstr ""

#: ../src/gnome-genius.c:4528
msgid "Readline helper died, weird.  Trying to recover, things may be odd."
msgstr ""

#: ../src/gnome-genius.c:4732
msgid ""
"\n"
"Note: Compiled without GtkSourceView (better source editor)"
msgstr ""

#: ../src/gnome-genius.c:4855
msgid "GNOME Genius"
msgstr ""

#. parent
#: ../src/gnome-genius.c:4906
msgid "Cannot find the library file, genius installation may be incorrect"
msgstr ""

#: ../src/gnome-genius.c:4985
msgid "Console"
msgstr ""

#: ../src/gnome-genius.c:5076
#, fuzzy, c-format
msgid ""
"%sGenius %s%s\n"
"%s\n"
"This is free software with ABSOLUTELY NO WARRANTY.\n"
"For license details type `%swarranty%s'.\n"
"For help type '%smanual%s' or '%shelp%s'.%s\n"
"\n"
msgstr ""
"Genius %s\n"
"Copyright (c) 1997,1998,1999 Free Software Foundation, Inc.\n"
"Dette er fri programvare og er uten NOEN SOM HELST GARANTI.\n"
"For detaljer skriv `warranty'.\n"
"\n"

#: ../src/gnome-genius.desktop.in.h:1
msgid "Genius Math Tool"
msgstr ""

#: ../src/gnome-genius.desktop.in.h:2
msgid "Genius Mathematical Tool and Calculator"
msgstr ""

#: ../src/graphing.c:574
msgid "Rotate"
msgstr ""

#: ../src/graphing.c:593 ../src/graphing.c:622
#, c-format
msgid "Rotate about %s axis: "
msgstr ""

#: ../src/graphing.c:651
msgid "Rotate about dependent axis: "
msgstr ""

#: ../src/graphing.c:759
msgid "Print"
msgstr ""

#: ../src/graphing.c:776
msgid "Print command: "
msgstr ""

#: ../src/graphing.c:803
msgid "Cannot open temporary file, cannot print."
msgstr ""

#: ../src/graphing.c:830
msgid "Printing failed"
msgstr ""

#: ../src/graphing.c:842
#, c-format
msgid "Printing failed: %s"
msgstr ""

#: ../src/graphing.c:970 ../src/graphing.c:1022 ../src/graphing.c:1039
msgid "Export failed"
msgstr ""

#: ../src/graphing.c:1070
msgid "Export encapsulated postscript"
msgstr ""

#: ../src/graphing.c:1072
msgid "Export postscript"
msgstr ""

#: ../src/graphing.c:1074
msgid "Export PNG"
msgstr ""

#: ../src/graphing.c:1090
msgid "EPS files"
msgstr ""

#: ../src/graphing.c:1094
msgid "PS files"
msgstr ""

#: ../src/graphing.c:1098
msgid "PNG files"
msgstr ""

#: ../src/graphing.c:1671
msgid "Solver"
msgstr ""

#: ../src/graphing.c:1676
msgid "Clea_r solutions"
msgstr ""

#: ../src/graphing.c:1678
#, fuzzy
msgid "_Plot solution"
msgstr "NULL-funksjon!"

#: ../src/graphing.c:1699
msgid ""
"Clicking on the graph window now will draw a solution according to the "
"parameters set below, starting at the point clicked.  To be able to zoom by "
"mouse again, close this window."
msgstr ""

#: ../src/graphing.c:1721
msgid "X increment:"
msgstr ""

#: ../src/graphing.c:1743
msgid "T increment:"
msgstr ""

#: ../src/graphing.c:1747
msgid "T interval length:"
msgstr ""

#: ../src/graphing.c:1761
msgid "Point x:"
msgstr ""

#: ../src/graphing.c:1766
msgid "y:"
msgstr ""

#: ../src/graphing.c:1833
msgid "Plot"
msgstr ""

#: ../src/graphing.c:1868
msgid "_Graph"
msgstr ""

#: ../src/graphing.c:1872
msgid "_Print..."
msgstr ""

#: ../src/graphing.c:1878
msgid "_Export postscript..."
msgstr ""

#: ../src/graphing.c:1884
msgid "E_xport encapsulated postscript..."
msgstr ""

#: ../src/graphing.c:1890
msgid "Export P_NG..."
msgstr ""

#: ../src/graphing.c:1902
msgid "_Zoom"
msgstr ""

#: ../src/graphing.c:1906
msgid "Zoom _out"
msgstr ""

#: ../src/graphing.c:1913
msgid "Zoom _in"
msgstr ""

#: ../src/graphing.c:1920
msgid "_Fit dependent axis"
msgstr ""

#: ../src/graphing.c:1927
msgid "_Reset to original zoom"
msgstr ""

#: ../src/graphing.c:1940
msgid "_View"
msgstr ""

#: ../src/graphing.c:1945
msgid "_Reset angles"
msgstr ""

#: ../src/graphing.c:1950
msgid "_Top view"
msgstr ""

#: ../src/graphing.c:1955
msgid "R_otate axis..."
msgstr ""

#: ../src/graphing.c:1965
msgid "_Solver"
msgstr ""

#: ../src/graphing.c:1970
msgid "_Solver..."
msgstr ""

#: ../src/graphing.c:1975
msgid "_Clear solutions"
msgstr ""

#: ../src/graphing.c:2880
#, fuzzy, c-format
msgid "Function"
msgstr "NULL-funksjon!"

#: ../src/graphing.c:2882
#, c-format
msgid "Function #%d"
msgstr ""

#: ../src/graphing.c:2891 ../src/funclibhelper.cP:113
#, c-format
msgid "%s: argument number %d not a number"
msgstr ""

#: ../src/graphing.c:2904
msgid "Graph limits not given as a 4-vector"
msgstr ""

#: ../src/graphing.c:2910 ../src/graphing.c:2921 ../src/graphing.c:2932
#: ../src/graphing.c:2943 ../src/graphing.c:3049 ../src/graphing.c:3060
#: ../src/graphing.c:3071 ../src/graphing.c:3082 ../src/graphing.c:3093
#: ../src/graphing.c:3104
msgid "Graph limits not given as numbers"
msgstr ""

#: ../src/graphing.c:3043
msgid "Graph limits not given as a 6-vector"
msgstr ""

#: ../src/graphing.c:3177 ../src/graphing.c:3195 ../src/graphing.c:3209
msgid "Ticks must be between 2 and 200"
msgstr ""

#: ../src/graphing.c:3186 ../src/graphing.c:3200
msgid "Ticks not given as numbers"
msgstr ""

#: ../src/graphing.c:3214
msgid "Ticks not given as a number or a 2-vector"
msgstr ""

#: ../src/graphing.c:4251
#, c-format
msgid ""
"Type in function name or expression involving the %s and %s variables (or "
"the %s variable which will be %s=%s+i%s) that gives the slope at the point "
"(%s,%s)."
msgstr ""

#: ../src/graphing.c:4276 ../src/graphing.c:4283 ../src/graphing.c:4447
#: ../src/graphing.c:4454
#, c-format
msgid "%s from:"
msgstr ""

#: ../src/graphing.c:4290 ../src/graphing.c:4297
#, c-format
msgid "%s increment:"
msgstr ""

#: ../src/graphing.c:4304
#, c-format
msgid "%s interval length:"
msgstr ""

#: ../src/graphing.c:4311
#, c-format
msgid "Point %s:"
msgstr ""

#: ../src/graphing.c:4324
#, c-format
msgid ""
"Type in function names or expressions involving the %s and %s variables (or "
"the %s variable which will be %s=%s+i%s) that give the d%s/d%s and d%s/d%s "
"of the autonomous system to be plotted at the point (%s,%s)."
msgstr ""

#: ../src/graphing.c:4360
#, c-format
msgid ""
"Type in function names or expressions involving the %s variable in the boxes "
"below to graph them"
msgstr ""

#: ../src/graphing.c:4377
#, c-format
msgid ""
"Type in function names or expressions involving the %s variable in the boxes "
"below to graph them.  Either fill in both boxes with %s= and %s= in front of "
"them giving the %s and %s coordinates separately, or alternatively fill in "
"the %s= box giving %s and %s as the real and imaginary part of a complex "
"number."
msgstr ""

#: ../src/graphing.c:4418
#, c-format
msgid "Parameter %s from:"
msgstr ""

#: ../src/graphing.c:4432
#, c-format
msgid ""
"Type a function name or an expression involving the %s and %s variables (or "
"the %s variable which will be %s=%s+i%s) in the boxes below to graph them.  "
"Functions with one argument only will be passed a complex number."
msgstr ""

#: ../src/graphing.c:4498 ../src/graphing.c:4618
msgid "Change variable names"
msgstr ""

#: ../src/graphing.c:4514 ../src/graphing.c:4634
msgid "Some values were illegal"
msgstr ""

#: ../src/graphing.c:4518 ../src/graphing.c:4638
msgid "independent variable (x):"
msgstr ""

#: ../src/graphing.c:4528
msgid "dependent variable (y):"
msgstr ""

#: ../src/graphing.c:4538
msgid "complex variable (z = x+iy):"
msgstr ""

#: ../src/graphing.c:4548
msgid "parameter variable (t):"
msgstr ""

#: ../src/graphing.c:4648
msgid "independent variable (y):"
msgstr ""

#: ../src/graphing.c:4658
msgid "independent complex variable (z = x+iy):"
msgstr ""

#: ../src/graphing.c:4768
msgid "_Functions / Expressions"
msgstr ""

#: ../src/graphing.c:4800
msgid "or"
msgstr ""

#. t range
#: ../src/graphing.c:4815
msgid "Parameter t from:"
msgstr ""

#: ../src/graphing.c:4819 ../src/graphing.c:4957 ../src/graphing.c:4969
#: ../src/graphing.c:5041 ../src/graphing.c:5053 ../src/graphing.c:5064
msgid "to:"
msgstr ""

#: ../src/graphing.c:4823
msgid "by:"
msgstr ""

#: ../src/graphing.c:4830
msgid "Pa_rametric"
msgstr ""

#. # of ticks
#: ../src/graphing.c:4857 ../src/graphing.c:4909
msgid "Vertical ticks:"
msgstr ""

#. # of ticks
#: ../src/graphing.c:4861 ../src/graphing.c:4913
msgid "Horizontal ticks:"
msgstr ""

#: ../src/graphing.c:4866
msgid "Sl_ope field"
msgstr ""

#. Normalize the arrow length?
#: ../src/graphing.c:4900
msgid "_Normalize arrow length (do not show size)"
msgstr ""

#: ../src/graphing.c:4918
msgid "_Vector field"
msgstr ""

#. draw legend?
#: ../src/graphing.c:4928
msgid "_Draw legend"
msgstr ""

#. change varnames
#: ../src/graphing.c:4937 ../src/graphing.c:5020
msgid "Change variable names..."
msgstr ""

#. plot window
#.
#. * Plot window frame
#.
#: ../src/graphing.c:4945 ../src/graphing.c:5029
msgid "Plot Window"
msgstr ""

#.
#. * X range
#.
#: ../src/graphing.c:4954 ../src/graphing.c:5038
msgid "X from:"
msgstr ""

#.
#. * Y range
#.
#: ../src/graphing.c:4966 ../src/graphing.c:5050
msgid "Y from:"
msgstr ""

#: ../src/graphing.c:4992
msgid "Function / Expression"
msgstr ""

#.
#. * Z range
#.
#: ../src/graphing.c:5062
msgid "Dependent axis from:"
msgstr ""

#: ../src/graphing.c:5083
msgid "Function _line plot"
msgstr ""

#: ../src/graphing.c:5087
msgid "_Surface plot"
msgstr ""

#: ../src/graphing.c:5305 ../src/graphing.c:5469 ../src/graphing.c:5590
#: ../src/graphing.c:5711 ../src/graphing.c:5815
msgid "No functions to plot or no functions could be parsed"
msgstr ""

#: ../src/graphing.c:5336 ../src/graphing.c:5342 ../src/graphing.c:5492
#: ../src/graphing.c:5498 ../src/graphing.c:5597 ../src/graphing.c:5620
#: ../src/graphing.c:5626 ../src/graphing.c:5734 ../src/graphing.c:5740
#: ../src/graphing.c:5838 ../src/graphing.c:5844
#, fuzzy, c-format
msgid "Invalid %s range"
msgstr "Indeks utenfor gyldig område"

#: ../src/graphing.c:5348
#, fuzzy
msgid "Invalid dependent range"
msgstr "Indeks utenfor gyldig område"

#: ../src/graphing.c:5584
#, c-format
msgid "Only specify %s and %s, or %s, not all at once."
msgstr ""

#: ../src/graphing.c:5936
msgid "Create Plot"
msgstr ""

#: ../src/graphing.c:5976 ../src/graphing.c:6114 ../src/graphing.c:6145
#: ../src/graphing.c:6166 ../src/graphing.c:6206 ../src/graphing.c:6230
#: ../src/graphing.c:6341 ../src/graphing.c:6463 ../src/graphing.c:6581
#: ../src/graphing.c:6724 ../src/graphing.c:6858 ../src/graphing.c:7050
#: ../src/graphing.c:7296 ../src/graphing.c:7326 ../src/graphing.c:7387
#: ../src/graphing.c:7413 ../src/graphing.c:7440 ../src/graphing.c:7531
#: ../src/graphing.c:7604 ../src/graphing.c:7629
#, c-format
msgid "%s: Plotting in progress, cannot call %s"
msgstr ""

#: ../src/graphing.c:5984 ../src/graphing.c:6482
#, fuzzy, c-format
msgid "%s: argument not a function"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/graphing.c:5994
#, c-format
msgid "%s: only one function supported"
msgstr ""

#: ../src/graphing.c:6061 ../src/graphing.c:6295 ../src/graphing.c:6411
#: ../src/graphing.c:6533 ../src/graphing.c:6670 ../src/graphing.c:6811
#, c-format
msgid "%s: invalid X range"
msgstr ""

#: ../src/graphing.c:6066 ../src/graphing.c:6300 ../src/graphing.c:6416
#: ../src/graphing.c:6538 ../src/graphing.c:6675 ../src/graphing.c:6816
#, c-format
msgid "%s: invalid Y range"
msgstr ""

#: ../src/graphing.c:6071
#, c-format
msgid "%s: invalid Z range"
msgstr ""

#: ../src/graphing.c:6124
#, c-format
msgid "%s: dx must be positive"
msgstr ""

#: ../src/graphing.c:6131 ../src/graphing.c:6150
#, c-format
msgid "%s: Slope field not active"
msgstr ""

#: ../src/graphing.c:6177
#, c-format
msgid "%s: dt must be positive"
msgstr ""

#: ../src/graphing.c:6183
#, c-format
msgid "%s: tlen must be positive"
msgstr ""

#: ../src/graphing.c:6191 ../src/graphing.c:6212
#, c-format
msgid "%s: Vector field not active"
msgstr ""

#: ../src/graphing.c:6237 ../src/graphing.c:6731
#, fuzzy, c-format
msgid "%s: First argument must be a function"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/graphing.c:6352 ../src/graphing.c:6589
#, c-format
msgid "%s: First two arguments must be functions"
msgstr ""

#: ../src/graphing.c:6477
#, c-format
msgid "%s: only up to 10 functions supported"
msgstr ""

#: ../src/graphing.c:6680 ../src/graphing.c:6821
#, c-format
msgid "%s: invalid T range"
msgstr ""

#: ../src/graphing.c:6933 ../src/graphing.c:6987
#, c-format
msgid ""
"%s: Line should be given as a real, n by 2 matrix with columns for x and y, "
"n>=2"
msgstr ""

#: ../src/graphing.c:7065
#, c-format
msgid "%s: Wrong number of arguments"
msgstr ""

#: ../src/graphing.c:7123
#, c-format
msgid "%s: No color specified"
msgstr ""

#: ../src/graphing.c:7135
#, c-format
msgid "%s: Color must be a string"
msgstr ""

#: ../src/graphing.c:7144
#, c-format
msgid "%s: No thickness specified"
msgstr ""

#: ../src/graphing.c:7165
#, c-format
msgid "%s: No window specified"
msgstr ""

#: ../src/graphing.c:7211 ../src/graphing.c:7235
#, c-format
msgid "%s: arrow style should be \"origin\", \"end\", \"both\", or \"none\""
msgstr ""

#: ../src/graphing.c:7243
#, c-format
msgid "%s: Unknown style"
msgstr ""

#: ../src/graphing.c:7249
#, c-format
msgid "%s: Bad parameter"
msgstr ""

#: ../src/graphing.c:7447
#, fuzzy
msgid "Variable names not given in a 4-vector"
msgstr "Matriseindeks utenfor gyldig område"

#: ../src/graphing.c:7457 ../src/graphing.c:7466 ../src/graphing.c:7475
#: ../src/graphing.c:7484 ../src/graphing.c:7548 ../src/graphing.c:7557
#: ../src/graphing.c:7566
msgid "Variable names should be strings"
msgstr ""

#: ../src/graphing.c:7491 ../src/graphing.c:7572
#, fuzzy
msgid "Variable names must be valid identifiers"
msgstr "Variabel «%s» brukt uinitiert"

#: ../src/graphing.c:7500 ../src/graphing.c:7578
msgid "Variable names must be mutually distinct"
msgstr ""

#: ../src/graphing.c:7538
#, fuzzy
msgid "Variable names not given in a 3-vector"
msgstr "Matriseindeks utenfor gyldig område"

#: ../src/graphing.c:7664
msgid "Plotting"
msgstr ""

#. internal
#: ../src/graphing.c:7666
msgid ""
"Plot a function with a line.  First come the functions (up to 10) then "
"optionally limits as x1,x2,y1,y2"
msgstr ""

#: ../src/graphing.c:7667
msgid ""
"Plot a parametric function with a line.  First come the functions for x and "
"y then optionally the t limits as t1,t2,tinc, then optionally the limits as "
"x1,x2,y1,y2"
msgstr ""

#: ../src/graphing.c:7668
msgid ""
"Plot a parametric complex valued function with a line.  First comes the "
"function that returns x+iy then optionally the t limits as t1,t2,tinc, then "
"optionally the limits as x1,x2,y1,y2"
msgstr ""

#: ../src/graphing.c:7670
msgid ""
"Draw a slope field.  First comes the function dy/dx in terms of x and y (or "
"a complex z) then optionally the limits as x1,x2,y1,y2"
msgstr ""

#: ../src/graphing.c:7671
msgid ""
"Draw a vector field.  First come the functions dx/dt and dy/dt in terms of x "
"and y then optionally the limits as x1,x2,y1,y2"
msgstr ""

#: ../src/graphing.c:7673
msgid ""
"Draw a solution for a slope field starting at x,y and using dx as increment"
msgstr ""

#: ../src/graphing.c:7674
msgid "Clear all the slopefield solutions"
msgstr ""

#: ../src/graphing.c:7676
msgid ""
"Draw a solution for a vector field starting at x,y, using dt as increment "
"for tlen units"
msgstr ""

#: ../src/graphing.c:7677
msgid "Clear all the vectorfield solutions"
msgstr ""

#: ../src/graphing.c:7680
msgid ""
"Plot a surface function which takes either two arguments or a complex "
"number.  First comes the function then optionally limits as x1,x2,y1,y2,z1,z2"
msgstr ""

#: ../src/graphing.c:7682
msgid "Show the line plot window and clear out functions"
msgstr ""

#: ../src/graphing.c:7683
msgid ""
"Draw a line from x1,y1 to x2,y2.  x1,y1,x2,y2 can be replaced by a n by 2 "
"matrix for a longer line"
msgstr ""

#: ../src/graphing.c:7685
msgid "Number of slopefield ticks as a vector [vertical,horizontal]."
msgstr ""

#: ../src/graphing.c:7686
msgid "Number of vectorfield ticks as a vector [vertical,horizontal]."
msgstr ""

#: ../src/graphing.c:7687
msgid ""
"Default names used by all 2D plot functions.  Should be a 4 vector of "
"strings or identifiers [x,y,z,t]."
msgstr ""

#: ../src/graphing.c:7688
msgid ""
"Default names used by surface plot functions.  Should be a 3 vector of "
"strings or identifiers [x,y,z] (where z=x+iy and not the dependent axis)."
msgstr ""

#: ../src/graphing.c:7690
msgid ""
"Normalize vectorfields if true.  That is, only show direction and not "
"magnitude."
msgstr ""

#: ../src/graphing.c:7691
msgid "If to draw legends or not on line plots."
msgstr ""

#: ../src/graphing.c:7693
msgid "Line plotting window (limits) as a 4-vector of the form [x1,x2,y1,y2]"
msgstr ""

#: ../src/graphing.c:7694
msgid ""
"Surface plotting window (limits) as a 6-vector of the form [x1,x2,y1,y2,z1,"
"z2]"
msgstr ""

#: ../src/matop.c:687
msgid "Determinant of a non-square matrix is undefined"
msgstr "Determinanten til en ikke-kvadratisk matrise er udefinert"

#: ../src/mpwrap.c:520
#, fuzzy
msgid "Integer exponent too large to compute"
msgstr "Heltall for stort for denne operasjonen"

#: ../src/mpwrap.c:1455
msgid "Can't do modulo of floats or rationals!"
msgstr "Kan ikke bruke modulo på flyttall eller rasjonale tall!"

#: ../src/mpwrap.c:1469
msgid "Can't do GCD of floats or rationals!"
msgstr "Kan ikke utføre GCD på flyttall eller rasjonale tall!"

#: ../src/mpwrap.c:1496
#, fuzzy
msgid "Can't modulo invert non integers!"
msgstr "Kan ikke utføre modulo-beregninger på tall som ikke er heltall!"

#: ../src/mpwrap.c:1517
msgid "Can't get jacobi symbols of floats or rationals!"
msgstr "Kan ikke finne jacobi-symboler til flyttall eller rasjonale tall"

#: ../src/mpwrap.c:1536
msgid "Can't get legendre symbols of floats or rationals!"
msgstr "Kan ikke finne legendre symboler til flyttall eller rasjonale tall!"

#: ../src/mpwrap.c:1555
#, fuzzy
msgid ""
"Can't get jacobi symbol with Kronecker extension of floats or rationals!"
msgstr "Kan ikke finne jacobi-symboler til flyttall eller rasjonale tall"

#: ../src/mpwrap.c:1564
msgid "Lucas must get an integer argument!"
msgstr ""

#: ../src/mpwrap.c:1570
#, fuzzy
msgid "Number too large to compute lucas number!"
msgstr "Tallet er for stort til å beregne faktor!"

#: ../src/mpwrap.c:1575
#, fuzzy
msgid "No such thing as negative lucas numbers!"
msgstr "Kan ikke faktorisere negative tall!"

#: ../src/mpwrap.c:1590
#, fuzzy
msgid "Cannot get next prime after non-integer!"
msgstr "Kan ikke konvertere flyttall til heltall"

#: ../src/mpwrap.c:1610 ../src/mpwrap.c:1623 ../src/mpwrap.c:1636
#: ../src/mpwrap.c:1649
#, fuzzy, c-format
msgid "%s: can't work on non-integers!"
msgstr "perfecy_square: kan ikke jobbe med ikke-heltall!"

#: ../src/mpwrap.c:1691 ../src/mpwrap.c:1731
msgid "Can't do factorials of rationals or floats!"
msgstr "Kan ikke faktorisere rasjonale tall eller flyttall!"

#: ../src/mpwrap.c:1697 ../src/mpwrap.c:1737
msgid "Number too large to compute factorial!"
msgstr "Tallet er for stort til å beregne faktor!"

#: ../src/mpwrap.c:1702 ../src/mpwrap.c:1742
msgid "Can't do factorials of negative numbers!"
msgstr "Kan ikke faktorisere negative tall!"

#: ../src/mpwrap.c:1753
#, fuzzy
msgid "Can't do binomials of rationals or floats!"
msgstr "Kan ikke faktorisere rasjonale tall eller flyttall!"

#: ../src/mpwrap.c:2060 ../src/mpwrap.c:2128 ../src/mpwrap.c:4244
#: ../src/mpwrap.c:4265
#, fuzzy, c-format
msgid "%s: Bad types for mod power"
msgstr "Feil type for 'for'-løkke!"

#: ../src/mpwrap.c:2097
#, c-format
msgid "Can't invert %s modulo %s in %s"
msgstr ""

#: ../src/mpwrap.c:2418
#, fuzzy
msgid "Can't make random integer from a non-integer"
msgstr "Kan ikke utføre modulo-beregninger på tall som ikke er heltall!"

#: ../src/mpwrap.c:2423
msgid "Range for random integer must be positive"
msgstr ""

#: ../src/mpwrap.c:2608 ../src/mpwrap.c:2636
msgid "Can't get numerator of floating types"
msgstr ""

#: ../src/mpwrap.c:3433 ../src/mpwrap.c:4957 ../src/mpwrap.c:4979
msgid "Can't compare complex numbers"
msgstr "Kan ikke sammenligne komplekse tall"

#: ../src/mpwrap.c:3920
msgid "Can't modulo complex numbers"
msgstr "Kan ikke utføre modulo på komplekse tall"

#: ../src/mpwrap.c:3943
#, c-format
msgid "Inverse of %s modulo %s not found!"
msgstr ""

#: ../src/mpwrap.c:3952
#, fuzzy
msgid "Can't do modulo invert on complex numbers"
msgstr "Kan ikke utføre modulo på komplekse tall"

#: ../src/mpwrap.c:3969
msgid "Can't GCD complex numbers"
msgstr "Kan ikke bruke GCD på komplekse tall"

#: ../src/mpwrap.c:3998
#, fuzzy
msgid "Can't LCM complex numbers"
msgstr "Kan ikke bruke GCD på komplekse tall"

#: ../src/mpwrap.c:4015
msgid "Can't get jacobi symbols of complex numbers"
msgstr "Kan ikke finne jacobi-symboler for komplekse tall"

#: ../src/mpwrap.c:4031
msgid "Can't get legendre symbols complex numbers"
msgstr "Kan ikke finne legendre-symboler for komplekse tall"

#: ../src/mpwrap.c:4047
#, fuzzy
msgid "Can't get jacobi symbol with Kronecker extension for complex numbers"
msgstr "Kan ikke finne jacobi-symboler for komplekse tall"

#: ../src/mpwrap.c:4063
#, fuzzy
msgid "Can't get lucas number for complex numbers"
msgstr "Kan ikke finne jacobi-symboler for komplekse tall"

#: ../src/mpwrap.c:4079
#, fuzzy
msgid "Can't get next prime for complex numbers"
msgstr "Kan ikke finne legendre-symboler for komplekse tall"

#: ../src/mpwrap.c:4089 ../src/mpwrap.c:4101 ../src/mpwrap.c:4113
#: ../src/mpwrap.c:4125
#, fuzzy, c-format
msgid "%s: can't work on complex numbers"
msgstr "perfect_square: kan ikke jobbe med komplekse tall"

#: ../src/mpwrap.c:4354 ../src/mpwrap.c:4432 ../src/mpwrap.c:4497
#, fuzzy, c-format
msgid "%s: can't take logarithm of 0"
msgstr "ln: kan ikke finne logaritmen til 0"

#: ../src/mpwrap.c:4826
#, fuzzy
msgid "arctan2 not defined for complex numbers"
msgstr "Kan ikke finne legendre-symboler for komplekse tall"

#: ../src/mpwrap.c:4874
#, fuzzy
msgid "Can't make random integer out of a complex number"
msgstr "Kan ikke bestemme typen av et komplekst tall"

#: ../src/mpwrap.c:5036 ../src/mpwrap.c:5053
msgid "Can't make factorials of complex numbers"
msgstr "Kan ikke faktorisere komplekse tall"

#: ../src/mpwrap.c:5070
#, fuzzy
msgid "Can't make binomials of complex numbers"
msgstr "Kan ikke faktorisere komplekse tall"

#: ../src/mpwrap.c:5449 ../src/mpwrap.c:5460 ../src/mpwrap.c:5471
msgid "Can't determine type of a complex number"
msgstr "Kan ikke bestemme typen av et komplekst tall"

#: ../src/mpwrap.c:5565 ../src/mpwrap.c:5588
msgid "Can't convert complex number into integer"
msgstr "Kan ikke konvertere et komplekst tall til helltall"

#: ../src/mpwrap.c:5571 ../src/mpwrap.c:5594
msgid "Can't convert real number to integer"
msgstr "Kan ikke konvertere flyttall til heltall"

#: ../src/mpwrap.c:5575 ../src/mpwrap.c:5598
msgid "Integer too large for this operation"
msgstr "Heltall for stort for denne operasjonen"

#: ../src/mpwrap.c:5611
#, fuzzy
msgid "Can't convert complex number into a double"
msgstr "Kan ikke konvertere et komplekst tall til helltall"

#: ../src/mpwrap.c:5620
#, fuzzy
msgid "Can't convert real number to double"
msgstr "Kan ikke konvertere flyttall til heltall"

#: ../src/mpwrap.c:5626 ../src/mpwrap.c:5641
#, fuzzy
msgid "Number too large for this operation"
msgstr "Heltall for stort for denne operasjonen"

#: ../src/plugin.c:155
#, fuzzy
msgid "Can't open plugin!"
msgstr "Kan ikke åpne tillegg '%s'!"

#: ../src/plugin.c:171 ../src/plugin.c:179
msgid "Can't initialize plugin!"
msgstr ""

#: ../src/symbolic.c:665
#, c-format
msgid "%s: '%s' not a function of one variable"
msgstr ""

#: ../src/symbolic.c:698
#, c-format
msgid "%s: Cannot differentiate the '%s' function"
msgstr ""

#: ../src/symbolic.c:783
msgid "Symbolic Operations"
msgstr ""

#: ../src/symbolic.c:786
msgid ""
"Attempt to symbolically differentiate the function f, where f is a function "
"of one variable."
msgstr ""

#: ../src/symbolic.c:789
msgid ""
"Attempt to symbolically differentiate the function f, where f is a function "
"of one variable, returns null if unsuccessful but is silent."
msgstr ""

#: ../src/testplugin.c:13
msgid "This is the test-plugin function\n"
msgstr ""

#: ../src/testplugin.c:24
msgid ""
"You have opened test plugin!\n"
"\n"
"Will evaluate 2+2 as a demonstration\n"
"2+2 = "
msgstr ""

#: ../src/testplugin.c:30
msgid ""
"For my next trick I will add a function named TestPluginFunction\n"
"\n"
msgstr ""

#: ../src/testplugin.c:41
msgid ""
"That's it, isn't this fun\n"
"\n"
msgstr ""

#: ../src/util.c:93 ../src/util.c:112
msgid "Stack underflow!"
msgstr "Stakk underflyt"

#: ../src/funclibhelper.cP:40
#, fuzzy, c-format
msgid "%s: argument number %d not an integer"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/funclibhelper.cP:53
#, fuzzy, c-format
msgid "%s: argument number %d not an integer or a matrix"
msgstr "Matriseindeks utenfor gyldig område"

#: ../src/funclibhelper.cP:65 ../src/funclibhelper.cP:76
#, c-format
msgid "%s: argument number %d not a number or a matrix"
msgstr ""

#: ../src/funclibhelper.cP:89
#, fuzzy, c-format
msgid "%s: argument number %d not a nonnegative integer"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/funclibhelper.cP:103
#, fuzzy, c-format
msgid "%s: argument number %d not a positive integer"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/funclibhelper.cP:124
#, fuzzy, c-format
msgid "%s: argument number %d not a boolean"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/funclibhelper.cP:135
#, c-format
msgid "%s: argument number %d not a real number"
msgstr ""

#: ../src/funclibhelper.cP:145
#, fuzzy, c-format
msgid "%s: argument number %d not a matrix"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/funclibhelper.cP:156
#, fuzzy, c-format
msgid "%s: argument number %d not a square matrix"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/funclibhelper.cP:167
#, fuzzy, c-format
msgid "%s: argument number %d not a matrix or null node"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/funclibhelper.cP:178
#, fuzzy, c-format
msgid "%s: argument number %d not a value only matrix"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/funclibhelper.cP:191
#, fuzzy, c-format
msgid "%s: argument number %d not a value only vector"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/funclibhelper.cP:201 ../src/funclibhelper.cP:212
#, fuzzy, c-format
msgid "%s: argument number %d not a string"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/funclibhelper.cP:223
#, fuzzy, c-format
msgid "%s: argument number %d not a function or identifier"
msgstr "Indeksert Lvalue ikke brukerfunksjon"

#: ../src/parseutil.c:57
msgid "ERROR: local statement not the first statement in function definition"
msgstr ""