File: oc.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 (4105 lines) | stat: -rw-r--r-- 89,763 bytes parent folder | download | duplicates (4)
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
# Translation of oc.po to Occitan
# Occitan translation of genius
# Copyright (C) 1998-2004, 2007 Free Software Foundation, Inc.
# This file is distributed under the same license as the genius package.
#
# Yannig Marchegay (Kokoyaya) <yannig@marchegay.org>, 2006-2008
msgid ""
msgstr ""
"Project-Id-Version: oc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2008-03-07 10:20+0100\n"
"PO-Revision-Date: 2007-12-27 15:08+0100\n"
"Last-Translator: Yannig Marchegay (Kokoyaya) <yannig@marchegay.org>\n"
"Language-Team: Occitan <ubuntu-l10n-oci@lists.ubuntu.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"

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

#: ../lib/library-strings.c:2
msgid ""
"Compose a function with itself n times, passing x as argument, and returning "
"x if n == 0"
msgstr ""

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

#: ../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:5955
msgid "Absolute value"
msgstr ""

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

# je n'ai pas trouvé de traduction française à fractional part
#: ../lib/library-strings.c:20
msgid "Return the fractional part of a number"
msgstr ""

# w/o = without
#: ../lib/library-strings.c:21
msgid "Division w/o remainder"
msgstr ""

#: ../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 ""

# je ne comprends pas ce que fait la fonction dans genius
#: ../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 ""

#: ../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 ""

# a mon avis, cela devrait être M au lieu de Mp en anglais
#: ../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
msgid "Return all prime factors of a number"
msgstr ""

#: ../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 ""

#: ../lib/library-strings.c:79
msgid "Delete a row of a matrix"
msgstr ""

#: ../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 ""

#: ../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
msgid "Conjugate transpose of a matrix (adjoint)"
msgstr ""

#: ../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 ""
"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:113
msgid "Hankel matrix"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../lib/library-strings.c:130
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:131
msgid "Get the i-j minor of a matrix"
msgstr ""

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

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

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

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

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

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

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

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

#: ../lib/library-strings.c:140
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:141
msgid "Rosser matrix, a classic symmetric eigenvalue test problem"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../lib/library-strings.c:158
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:159
msgid "Get the classical adjoint (adjugate) of a matrix"
msgstr ""

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

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

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

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

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

#: ../lib/library-strings.c:165
msgid "Calculate n'th Fibonacci number"
msgstr ""

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

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

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

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

#: ../lib/library-strings.c:170
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:171
msgid "Compute linear recursive sequence using galois stepping"
msgstr ""

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

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

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

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

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

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

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

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

#: ../lib/library-strings.c:180
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:181
msgid ""
"Attempt to calculate derivative by trying first symbolically and then "
"numerically"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../lib/library-strings.c:201
msgid "argument (angle) of complex number"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../lib/library-strings.c:215
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:216
msgid "The cis function, that is cos(x)+i*sin(x)"
msgstr ""

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

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

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

#: ../lib/library-strings.c:220
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:221
msgid "Find root of a function using the bisection method"
msgstr ""

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

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

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

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

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

#: ../lib/library-strings.c:227
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:228
msgid "Calculate average of an entire matrix"
msgstr ""

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

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

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

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

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

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

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

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

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

#: ../lib/library-strings.c:238
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:239
msgid "Returns a set where every element of X appears only once"
msgstr ""

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

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

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

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

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

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

#: ../src/calc.c:939
msgid "Bad identifier for function node!"
msgstr ""

#: ../src/calc.c:977 ../src/eval.c:6407 ../src/eval.c:6601
msgid "Unexpected operator!"
msgstr ""

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

#: ../src/calc.c:1261
msgid "NULL function!"
msgstr ""

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

#: ../src/calc.c:1323
msgid "NULL tree!"
msgstr ""

#: ../src/calc.c:1413 ../src/eval.c:6837
msgid "Unexpected node!"
msgstr ""

#: ../src/calc.c:1884
#, c-format
msgid "File '%s' is a wrong version of GEL"
msgstr ""

#: ../src/calc.c:1932 ../src/calc.c:1941 ../src/calc.c:1946 ../src/calc.c:1955
#: ../src/calc.c:1960 ../src/calc.c:1969 ../src/calc.c:1974 ../src/calc.c:1983
#: ../src/calc.c:1988 ../src/calc.c:1999 ../src/calc.c:2004 ../src/calc.c:2015
#: ../src/calc.c:2022 ../src/calc.c:2035 ../src/calc.c:2041 ../src/calc.c:2048
#: ../src/calc.c:2057 ../src/calc.c:2068 ../src/calc.c:2074 ../src/calc.c:2081
#: ../src/calc.c:2087 ../src/calc.c:2096 ../src/calc.c:2106
msgid "Badly formed record"
msgstr ""

#: ../src/calc.c:1935
msgid "Record out of place"
msgstr ""

#: ../src/calc.c:2120
msgid "Missing value for function"
msgstr ""

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

#: ../src/calc.c:2182 ../src/calc.c:2737 ../src/calc.c:2772
#, c-format
msgid "Can't open file: '%s'"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/calc.c:2811 ../src/calc.c:2822
#, c-format
msgid "Can't expand '%s'"
msgstr ""

#: ../src/calc.c:2892
#, c-format
msgid "Cannot open plugin '%s'!"
msgstr ""

#: ../src/calc.c:3102
msgid "ERROR: Probably corrupt stack!"
msgstr ""

#: ../src/calc.c:3125
msgid "ERROR: Can't execute more things at once!"
msgstr ""

#: ../src/calc.c:3231
#, c-format
msgid "ERROR: %s before newline"
msgstr ""

#: ../src/calc.c:3233
#, c-format
msgid "ERROR: %s at end of input"
msgstr ""

#: ../src/calc.c:3240
#, c-format
msgid "ERROR: %s before '%s'"
msgstr ""

#: ../src/compil.c:463 ../src/compil.c:470
msgid "Bad tree record when decompiling"
msgstr ""

#: ../src/eval.c:1445 ../src/eval.c:1499 ../src/eval.c:1514
msgid "Cannot compare non value or bool only matrixes"
msgstr ""

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

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

#: ../src/eval.c:1924
msgid "Can't add/subtract two matricies of different sizes"
msgstr ""

#: ../src/eval.c:1926
msgid ""
"Can't do element by element operations on two matricies of different sizes"
msgstr ""

#: ../src/eval.c:1992
msgid "Can't multiply matricies of wrong sizes"
msgstr ""

#: ../src/eval.c:2043
msgid "Powers are defined on (square matrix)^(integer) only"
msgstr ""

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

#: ../src/eval.c:2057
msgid "Exponent too large"
msgstr ""

#: ../src/eval.c:2084 ../src/eval.c:2199 ../src/eval.c:2265
msgid "Matrix appears singular and can't be inverted"
msgstr ""

#: ../src/eval.c:2176
msgid "Can't divide matrices of different sizes or non-square matrices"
msgstr ""

#: ../src/eval.c:2247
msgid "Can't divide by a non-square matrix"
msgstr ""

#: ../src/eval.c:2660 ../src/eval.c:2687 ../src/eval.c:2708 ../src/eval.c:2732
#: ../src/eval.c:2778
msgid "Operations on functions with variable argument list not supported"
msgstr ""

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

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

#: ../src/eval.c:3362 ../src/eval.c:4721
msgid "Unevaluatable function type encountered!"
msgstr ""

#: ../src/eval.c:3384
msgid "' or '"
msgstr ""

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

#: ../src/eval.c:3425 ../src/eval.c:3453
#, c-format
msgid "Variable '%s' used uninitialized, perhaps you meant %s."
msgstr ""

#: ../src/eval.c:3432 ../src/eval.c:3460 ../src/eval.c:4472
#, c-format
msgid "Variable '%s' used uninitialized"
msgstr ""

#: ../src/eval.c:3464 ../src/eval.c:4515
#, c-format
msgid ""
"Call of '%s' with the wrong number of arguments!\n"
"(should be %d)"
msgstr ""

#: ../src/eval.c:3467
#, c-format
msgid "Trying to dereference '%s' which is not a reference!\n"
msgstr ""

#: ../src/eval.c:3472
msgid "NULL reference encountered!"
msgstr ""

#: ../src/eval.c:3599
msgid "Cannot compare matrixes"
msgstr ""

#: ../src/eval.c:3641
msgid "Primitives must get numeric/matrix/string arguments"
msgstr ""

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

#: ../src/eval.c:4450
#, c-format
msgid "Function '%s' used uninitialized, perhaps you meant %s."
msgstr ""

#: ../src/eval.c:4457
#, c-format
msgid "Function '%s' used uninitialized"
msgstr ""

#: ../src/eval.c:4478
#, c-format
msgid "Can't dereference '%s'!"
msgstr ""

#: ../src/eval.c:4486
msgid "Can't call a non-function!"
msgstr ""

#: ../src/eval.c:4520
#, c-format
msgid ""
"Call of '%s' with the wrong number of arguments!\n"
"(should be greater than %d)"
msgstr ""

#: ../src/eval.c:4568
#, c-format
msgid "Referencing an undefined variable %s!"
msgstr ""

#: ../src/eval.c:4698
msgid "Reference function with arguments encountered!"
msgstr ""

#: ../src/eval.c:4703
msgid "Unnamed reference function encountered!"
msgstr ""

#: ../src/eval.c:4826
msgid "Bad type for 'for/sum/prod' loop!"
msgstr ""

#: ../src/eval.c:4831
msgid "'for/sum/prod' loop increment can't be 0"
msgstr ""

#: ../src/eval.c:4942
msgid "Bad type for 'for in' loop!"
msgstr ""

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

#: ../src/eval.c:5200
msgid "Wrong argument type as matrix index"
msgstr ""

#: ../src/eval.c:5210
msgid "Matrix index too large"
msgstr ""

#: ../src/eval.c:5213
msgid "Matrix index less than 1"
msgstr ""

#: ../src/eval.c:5236 ../src/eval.c:5251
msgid "Matrix index out of range"
msgstr ""

#: ../src/eval.c:5298 ../src/eval.c:5360 ../src/eval.c:5423 ../src/eval.c:5470
#, c-format
msgid "Trying to set a protected id '%s'"
msgstr ""

#: ../src/eval.c:5316 ../src/eval.c:5355
msgid "Indexed Lvalue not user function"
msgstr ""

#: ../src/eval.c:5339 ../src/eval.c:5454
msgid "Dereference of non-identifier!"
msgstr ""

#: ../src/eval.c:5345 ../src/eval.c:5460
msgid "Dereference of undefined variable!"
msgstr ""

#: ../src/eval.c:5349 ../src/eval.c:5464
msgid "Dereference of non-reference!"
msgstr ""

#: ../src/eval.c:5378
msgid "Indexed Lvalue not an identifier or a dereference"
msgstr ""

#: ../src/eval.c:5416
msgid "Lvalue not an identifier/dereference/matrix location!"
msgstr ""

#: ../src/eval.c:5441 ../src/eval.c:5482
msgid "Referencing an undefined variable!"
msgstr ""

#: ../src/eval.c:5528 ../src/eval.c:5606 ../src/eval.c:5615
msgid "Wrong matrix dimensions when setting"
msgstr ""

#: ../src/eval.c:5546 ../src/eval.c:5586 ../src/eval.c:5652 ../src/eval.c:5782
#: ../src/eval.c:5907
msgid "Matrix index not an integer or a vector"
msgstr ""

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

#: ../src/eval.c:5729 ../src/eval.c:5774 ../src/eval.c:5865
msgid "Index works only on matricies"
msgstr ""

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

#: ../src/eval.c:5930
msgid "number"
msgstr "nombre"

#: ../src/eval.c:5931
msgid "matrix"
msgstr ""

#: ../src/eval.c:5932
msgid "string"
msgstr "cadena"

#: ../src/eval.c:5933
msgid "function"
msgstr ""

#: ../src/eval.c:5934
msgid "identifier"
msgstr ""

#: ../src/eval.c:5935
msgid "polynomial"
msgstr ""

#: ../src/eval.c:5936
msgid "boolean"
msgstr "boolean"

#: ../src/eval.c:5956
msgid "Addition"
msgstr "Adicion"

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

#: ../src/eval.c:5958
msgid "Subtraction"
msgstr "Sostraccion"

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

#: ../src/eval.c:5960
msgid "Multiplication"
msgstr "Multiplicacion"

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

#: ../src/eval.c:5962
msgid "Division"
msgstr "Division"

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

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

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

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

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

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

#: ../src/eval.c:5969
msgid "Power"
msgstr "Poténcia"

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

#: ../src/eval.c:5971
msgid "Factorial"
msgstr "Factoriala"

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

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

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

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

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

#: ../src/eval.c:5977
msgid "NOT"
msgstr "PAS"

#: ../src/eval.c:5997
#, c-format
msgid "Bad types for '%s'"
msgstr ""

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

#: ../src/eval.c:6027
#, c-format
msgid "Bad type for '%s'"
msgstr ""

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

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

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

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

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

#: ../src/funclib.c:159
msgid "Cannot locate the manual"
msgstr ""

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

#: ../src/funclib.c:213 ../src/gnome-genius.c:1135
#, 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:307
#, c-format
msgid "%s: trying to undefine a protected id!"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

#: ../src/funclib.c:2716 ../src/funclib.c:2756 ../src/funclib.c:4224
#: ../src/funclib.c:4518
#, c-format
msgid "%s: too many arguments"
msgstr ""

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

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

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

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

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

#: ../src/funclib.c:3577 ../src/funclib.c:4218
msgid "third argument"
msgstr ""

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

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

#: ../src/funclib.c:3958 ../src/funclib.c:3987 ../src/funclib.c:4239
#: ../src/mpwrap.c:3624 ../src/mpwrap.c:3643 ../src/mpwrap.c:3700
#: ../src/mpwrap.c:3729 ../src/mpwrap.c:3746 ../src/mpwrap.c:3795
msgid "Division by zero!"
msgstr ""

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

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

#: ../src/funclib.c:4436
#, c-format
msgid "%s: argument 1 must be a quadratic polynomial"
msgstr ""

#: ../src/funclib.c:4746 ../src/funclib.c:4835 ../src/funclib.c:5063
#: ../src/funclib.c:5118 ../src/funclib.c:5188 ../src/funclib.c:5202
#, c-format
msgid "%s: value out of range"
msgstr ""

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

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

#: ../src/funclib.c:5447
#, c-format
msgid "%s: argument 2 must be less than or equal to argument 3"
msgstr ""

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

#: ../src/funclib.c:5560 ../src/funclib.c:5596 ../src/funclib.c:5850
#, c-format
msgid "%s: argument should be between %d and %d"
msgstr ""

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

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

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

#. internal
#: ../src/funclib.c:5913
msgid "Parameters"
msgstr "Paramètres"

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

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

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

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

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

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

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

#. internal
#: ../src/funclib.c:5921
msgid "Calculus"
msgstr ""

#. internal
#: ../src/funclib.c:5922
msgid "Functions"
msgstr "Foncion"

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

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

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

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

#. internal
#: ../src/funclib.c:5927
msgid "Miscellaneous"
msgstr "Divèrs"

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

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

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

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

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

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

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

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

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

#: ../src/funclib.c:5949
msgid "Prints an expression"
msgstr ""

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

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

#: ../src/funclib.c:5952
msgid "Display a string and an expression"
msgstr ""

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

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

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

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

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

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

#: ../src/funclib.c:5965 ../src/gnome-genius.c:1695
msgid "Floating point precision"
msgstr ""

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

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

#: ../src/funclib.c:5971
msgid "Maximum digits to display"
msgstr ""

#: ../src/funclib.c:5972
msgid "Maximum errors to display"
msgstr ""

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

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

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

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

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

#: ../src/funclib.c:5978
msgid "Use scientific notation"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/funclib.c:6018
msgid "Calculates the arctan2 function (arctan(y/x) if x>0)"
msgstr ""

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

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

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

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

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

#: ../src/funclib.c:6035
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:6040
msgid "The Riemann zeta function (only real values implemented)"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/funclib.c:6108
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:6109
msgid "Run the strong pseudoprime test base b on n"
msgstr ""

#: ../src/funclib.c:6110
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:6111
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:6112
msgid "Return factorization of a number as a matrix"
msgstr ""

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

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

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

#: ../src/funclib.c:6123
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:6125
msgid "Calculate the Legendre symbol (a/p)"
msgstr ""

#: ../src/funclib.c:6128
msgid "Get the real part of a complex number"
msgstr ""

#: ../src/funclib.c:6131
msgid "Get the imaginary part of a complex number"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/funclib.c:6160
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:6163
msgid "Get the determinant of a matrix"
msgstr ""

#: ../src/funclib.c:6166
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:6168
msgid "Get the nullspace of a matrix"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

#: ../src/funclib.c:6185
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:6186
msgid "Returns true if X is a subset of Y"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/funclib.c:6234
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:6235
msgid ""
"Convert a vector of 0-based alphabet values (positions in the alphabet "
"string) to a string"
msgstr ""

#: ../src/funclib.c:6237
msgid "Protect a variable from being modified"
msgstr ""

#: ../src/funclib.c:6238
msgid "Unprotect a variable from being modified"
msgstr ""

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

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

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

#: ../src/funclib.c:6242
msgid "Undefine a variable (including locals and globals)"
msgstr ""

#: ../src/funclib.c:6244
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:105
#, c-format
msgid "line %d: %s\n"
msgstr ""

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

#: ../src/genius.c:246 ../src/genius.c:255 ../src/genius.c:262
#: ../src/genius.c:271
#, c-format
msgid "%s should be between %d and %d, using %d"
msgstr ""

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

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

#: ../src/genius.c:358
#, 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 ""

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

#: ../src/genius.c:414
#, 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 ""

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

#: ../src/genius.c:498 ../src/genius.c:571
msgid "Can't open file"
msgstr ""

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

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

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

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

#: ../src/genius.lang.h:5
msgid "Genius"
msgstr ""

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

#: ../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 "Cadena"

#: ../src/gnome-genius.c:240
msgid "_New Program"
msgstr ""

#: ../src/gnome-genius.c:240 ../src/gnome-genius.c:374
msgid "Create new program tab"
msgstr ""

#: ../src/gnome-genius.c:245
msgid "Save all _unsaved"
msgstr ""

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

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

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

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

#: ../src/gnome-genius.c:253
msgid "Load and execute a file in genius"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

#: ../src/gnome-genius.c:309 ../src/gnome-genius.c:371
msgid "Interrupt current calculation"
msgstr ""

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

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

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

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

#: ../src/gnome-genius.c:314 ../src/graphing.c:3348
msgid "_Plot"
msgstr ""

#: ../src/gnome-genius.c:314 ../src/gnome-genius.c:376
msgid "Plot a function"
msgstr ""

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

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

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

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

#: ../src/gnome-genius.c:337
msgid "_Next Tab"
msgstr "Onglet _seguent"

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

#: ../src/gnome-genius.c:341
msgid "_Previous Tab"
msgstr "Onglet _precedent"

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

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

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

#: ../src/gnome-genius.c:359
msgid "_Calculator"
msgstr ""

#: ../src/gnome-genius.c:361
msgid "P_lugins"
msgstr ""

#: ../src/gnome-genius.c:363
msgid "_Programs"
msgstr ""

#: ../src/gnome-genius.c:371
msgid "Interrupt"
msgstr ""

#: ../src/gnome-genius.c:373
msgid "Run"
msgstr "Executar"

#: ../src/gnome-genius.c:374
msgid "New"
msgstr "Novèl"

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

#: ../src/gnome-genius.c:375
msgid "Open a GEL file for running"
msgstr ""

#: ../src/gnome-genius.c:376 ../src/graphing.c:1240
msgid "Plot"
msgstr ""

#: ../src/gnome-genius.c:377
msgid "Exit"
msgstr "Sortir"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/gnome-genius.c:1083
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:1107
msgid "translator-credits"
msgstr "Yannig Marchegay (Kokoyaya) <yannig@marchegay.org>"

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

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

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

#: ../src/gnome-genius.c:1171
msgid ""
"The Gnome calculator style edition of the genius calculator.  For license/"
"warranty details, type 'warranty' into the console."
msgstr ""

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

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

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

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

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

#: ../src/gnome-genius.c:1516
msgid "Output"
msgstr "Sortida"

#: ../src/gnome-genius.c:1519
msgid "Number/Expression output options"
msgstr ""

#: ../src/gnome-genius.c:1529
msgid "Maximum digits to output (0=unlimited)"
msgstr ""

#: ../src/gnome-genius.c:1549
msgid "Results as floats"
msgstr ""

#: ../src/gnome-genius.c:1557
msgid "Floats in scientific notation"
msgstr ""

#: ../src/gnome-genius.c:1565
msgid "Always print full expressions"
msgstr ""

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

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

#: ../src/gnome-genius.c:1635
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:1641
msgid "Error/Info output options"
msgstr ""

#: ../src/gnome-genius.c:1649
msgid "Display errors in a dialog"
msgstr ""

#: ../src/gnome-genius.c:1657
msgid "Display information messages in a dialog"
msgstr ""

#: ../src/gnome-genius.c:1668
msgid "Maximum errors to display (0=unlimited)"
msgstr ""

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

#: ../src/gnome-genius.c:1702
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 ""

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

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

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

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

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

#: ../src/gnome-genius.c:1759
msgid "Scrollback lines"
msgstr ""

#: ../src/gnome-genius.c:1782
msgid "Font:"
msgstr "Poliça :"

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

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

#: ../src/gnome-genius.c:1814
msgid "Memory"
msgstr "Memòria"

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

#: ../src/gnome-genius.c:1824
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:1833
msgid "Maximum number of nodes to allocate"
msgstr ""

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

#: ../src/gnome-genius.c:1901
msgid "GEL files"
msgstr ""

#: ../src/gnome-genius.c:1906 ../src/graphing.c:821
msgid "All files"
msgstr "Totes los fichièrs"

#: ../src/gnome-genius.c:1930 ../src/gnome-genius.c:2736
msgid "Cannot open file!"
msgstr ""

#: ../src/gnome-genius.c:1940 ../src/gnome-genius.c:3071
msgid "Output from "
msgstr "Sortida"

#: ../src/gnome-genius.c:1956 ../src/gnome-genius.c:3138
msgid "End"
msgstr "Fin"

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

#: ../src/gnome-genius.c:1979
msgid "_Load"
msgstr "_Carga"

#: ../src/gnome-genius.c:2491
msgid "Cannot open file"
msgstr "Impossible de dobrir lo fichièr"

#: ../src/gnome-genius.c:2523 ../src/gnome-genius.c:3674
#, c-format
msgid "Line: %d"
msgstr ""

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

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

#: ../src/gnome-genius.c:2695
#, c-format
msgid "Cannot open %s"
msgstr "Impossible de dobrir %s"

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

#. new fname
#: ../src/gnome-genius.c:2833 ../src/gnome-genius.c:2862
#: ../src/gnome-genius.c:2913
#, c-format
msgid ""
"<b>Cannot save file</b>\n"
"Details: %s"
msgstr ""

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

#: ../src/gnome-genius.c:2907 ../src/graphing.c:622 ../src/graphing.c:724
msgid "File already exists.  Overwrite it?"
msgstr ""

#: ../src/gnome-genius.c:2949
msgid "Save As..."
msgstr "Enregistrar coma..."

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

#: ../src/gnome-genius.c:3039
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:3089
msgid ""
"<b>Cannot execute program</b>\n"
"\n"
"Cannot fork."
msgstr ""

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

#: ../src/gnome-genius.c:3388
msgid "Memory (node number) limit has been reached, interrupt the computation?"
msgstr ""

#. error
#. always textbox
#. textbox_title
#. bind_response
#: ../src/gnome-genius.c:3463
msgid "Can't execute genius-readline-helper-fifo!\n"
msgstr ""

#: ../src/gnome-genius.c:3694
msgid ""
"\n"
"Note: Compiled without GtkSourceView (better source editor)"
msgstr ""

#: ../src/gnome-genius.c:3995
msgid "Console"
msgstr ""

#: ../src/gnome-genius.c:4047
#, 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 ""

#: ../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:318
msgid "Rotate"
msgstr ""

#: ../src/graphing.c:337
msgid "Rotate X: "
msgstr ""

#: ../src/graphing.c:362
msgid "Rotate Y: "
msgstr ""

#: ../src/graphing.c:387
msgid "Rotate Z: "
msgstr ""

#: ../src/graphing.c:495
msgid "Print"
msgstr "Estampar"

#: ../src/graphing.c:512
msgid "Print command: "
msgstr ""

#: ../src/graphing.c:539
msgid "Cannot open temporary file, cannot print."
msgstr ""

#: ../src/graphing.c:561
msgid "Printing failed"
msgstr ""

#: ../src/graphing.c:687 ../src/graphing.c:739 ../src/graphing.c:756
msgid "Export failed"
msgstr ""

#: ../src/graphing.c:787
msgid "Export encapsulated postscript"
msgstr ""

#: ../src/graphing.c:789
msgid "Export postscript"
msgstr ""

#: ../src/graphing.c:791
msgid "Export PNG"
msgstr ""

#: ../src/graphing.c:807
msgid "EPS files"
msgstr ""

#: ../src/graphing.c:811
msgid "PS files"
msgstr ""

#: ../src/graphing.c:815
msgid "PNG files"
msgstr "Fichièrs PNG"

#: ../src/graphing.c:1266
msgid "_Graph"
msgstr ""

#: ../src/graphing.c:1270
msgid "_Print..."
msgstr "_Estampar..."

#: ../src/graphing.c:1276
msgid "_Export postscript..."
msgstr ""

#: ../src/graphing.c:1282
msgid "E_xport encapsulated postscript..."
msgstr ""

#: ../src/graphing.c:1288
msgid "_Export PNG..."
msgstr ""

#: ../src/graphing.c:1296
msgid "_Zoom"
msgstr "_Zoom"

#: ../src/graphing.c:1300
msgid "Zoom _out"
msgstr ""

#: ../src/graphing.c:1306
msgid "Zoom _in"
msgstr ""

#: ../src/graphing.c:1312
msgid "_Fit dependent axis"
msgstr ""

#: ../src/graphing.c:1320
msgid "_View"
msgstr "_Visualizacion"

#: ../src/graphing.c:1325
msgid "_Reset angles"
msgstr ""

#: ../src/graphing.c:1330
msgid "_Top view"
msgstr ""

#: ../src/graphing.c:1335
msgid "R_otate axis..."
msgstr ""

#: ../src/graphing.c:2003
#, c-format
msgid "Function"
msgstr "Foncion"

#: ../src/graphing.c:2005
#, c-format
msgid "Function #%d"
msgstr ""

#: ../src/graphing.c:2014
#, c-format
msgid "%s: argument number %d not a number"
msgstr ""

#: ../src/graphing.c:2027
msgid "Graph limits not given as a 4-vector"
msgstr ""

#: ../src/graphing.c:2033 ../src/graphing.c:2039 ../src/graphing.c:2045
#: ../src/graphing.c:2051 ../src/graphing.c:2116 ../src/graphing.c:2122
#: ../src/graphing.c:2128 ../src/graphing.c:2134 ../src/graphing.c:2140
#: ../src/graphing.c:2146
msgid "Graph limits not given as numbers"
msgstr ""

#: ../src/graphing.c:2110
msgid "Graph limits not given as a 6-vector"
msgstr ""

#: ../src/graphing.c:2554
msgid "to:"
msgstr "Autor :"

#: ../src/graphing.c:2572
msgid "by:"
msgstr ""

#: ../src/graphing.c:2634
msgid ""
"Type in function names or expressions involving the x variable in the boxes "
"below to graph them"
msgstr ""

#: ../src/graphing.c:2650
msgid "_Functions / Expressions"
msgstr ""

#: ../src/graphing.c:2658
msgid ""
"Type in function names or expressions involving the t variable in the boxes "
"below to graph them.  Either fill in both boxes with x= and y= in front of "
"them giving the x and y coordinates separately, or alternatively fill in the "
"z= box giving x and y as the real and imaginary part of a complex number."
msgstr ""

#: ../src/graphing.c:2681
msgid "or"
msgstr "o"

#. t range
#: ../src/graphing.c:2696
msgid "Parameter t from:"
msgstr ""

#: ../src/graphing.c:2704
msgid "_Parametric"
msgstr ""

#: ../src/graphing.c:2706 ../src/graphing.c:2761
msgid "Plot Window"
msgstr ""

#.
#. * X range
#.
#: ../src/graphing.c:2715 ../src/graphing.c:2770
msgid "X from:"
msgstr ""

#.
#. * Y range
#.
#: ../src/graphing.c:2721 ../src/graphing.c:2777
msgid "Y from:"
msgstr ""

#: ../src/graphing.c:2736
msgid "Function / Expression"
msgstr ""

#: ../src/graphing.c:2741
msgid ""
"Type a function name or an expression involving the x and y variables (or "
"the z variable which will be z=x+iy) in the boxes below to graph them.  "
"Functions with one argument only will be passed a complex number."
msgstr ""

#.
#. * Z range
#.
#: ../src/graphing.c:2784
msgid "Z from:"
msgstr ""

#: ../src/graphing.c:2798
msgid "Function _line plot"
msgstr ""

#: ../src/graphing.c:2802
msgid "_Surface plot"
msgstr ""

#: ../src/graphing.c:3002 ../src/graphing.c:3206
msgid "No functions to plot or no functions could be parsed"
msgstr ""

#: ../src/graphing.c:3033 ../src/graphing.c:3237
msgid "Invalid X range"
msgstr ""

#: ../src/graphing.c:3038 ../src/graphing.c:3242
msgid "Invalid Y range"
msgstr ""

#: ../src/graphing.c:3043
msgid "Invalid Z range"
msgstr ""

#: ../src/graphing.c:3195
msgid "Only specify x and y, or z, not all at once."
msgstr ""

#: ../src/graphing.c:3214
msgid "Invalid t range"
msgstr ""

#: ../src/graphing.c:3343
msgid "Create Plot"
msgstr ""

#: ../src/graphing.c:3383 ../src/graphing.c:3529
#, c-format
msgid "%s: argument not a function"
msgstr ""

#: ../src/graphing.c:3393
#, c-format
msgid "%s: only one function supported"
msgstr ""

#: ../src/graphing.c:3460 ../src/graphing.c:3580 ../src/graphing.c:3710
#: ../src/graphing.c:3842
#, c-format
msgid "%s: invalid X range"
msgstr ""

#: ../src/graphing.c:3465 ../src/graphing.c:3585 ../src/graphing.c:3715
#: ../src/graphing.c:3847
#, c-format
msgid "%s: invalid Y range"
msgstr ""

#: ../src/graphing.c:3470
#, c-format
msgid "%s: invalid Z range"
msgstr ""

#: ../src/graphing.c:3524
#, c-format
msgid "%s: only up to 10 functions supported"
msgstr ""

#: ../src/graphing.c:3629
#, c-format
msgid "%s: First two arguments must be functions"
msgstr ""

#: ../src/graphing.c:3720 ../src/graphing.c:3852
#, c-format
msgid "%s: invalid T range"
msgstr ""

#: ../src/graphing.c:3763
#, c-format
msgid "%s: First argument must be functions"
msgstr ""

#: ../src/graphing.c:3909 ../src/graphing.c:3957
#, 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:3997
#, c-format
msgid "%s: Wrong number of arguments"
msgstr ""

#: ../src/graphing.c:4036
#, c-format
msgid "%s: No color specified"
msgstr ""

#: ../src/graphing.c:4048
#, c-format
msgid "%s: Color must be a string"
msgstr ""

#: ../src/graphing.c:4057
#, c-format
msgid "%s: No thicnkess specified"
msgstr ""

#: ../src/graphing.c:4073
#, c-format
msgid "%s: Unknown style"
msgstr ""

#: ../src/graphing.c:4080
#, c-format
msgid "%s: Bad parameter"
msgstr ""

#: ../src/graphing.c:4158
msgid "Plotting"
msgstr ""

#. internal
#: ../src/graphing.c:4160
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:4161
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:4162
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:4163
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:4165
msgid "Show the line plot window and clear out functions"
msgstr ""

#: ../src/graphing.c:4166
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:4168
msgid "Line plotting window (limits) as a 4-vector of the form [x1,x2,y1,y2]"
msgstr ""

#: ../src/graphing.c:4169
msgid ""
"Surface plotting window (limits) as a 6-vector of the form [x1,x2,y1,y2,z1,"
"z2]"
msgstr ""

#: ../src/matop.c:584
msgid "Determinant of a non-square matrix is undefined"
msgstr ""

#: ../src/mpwrap.c:494
msgid "Integer exponent too large to compute"
msgstr ""

#: ../src/mpwrap.c:1373
msgid "Can't do modulo of floats or rationals!"
msgstr ""

#: ../src/mpwrap.c:1387
msgid "Can't do GCD of floats or rationals!"
msgstr ""

#: ../src/mpwrap.c:1414
msgid "Can't modulo invert non integers!"
msgstr ""

#: ../src/mpwrap.c:1435
msgid "Can't get jacobi symbols of floats or rationals!"
msgstr ""

#: ../src/mpwrap.c:1454
msgid "Can't get legendre symbols of floats or rationals!"
msgstr ""

#: ../src/mpwrap.c:1473
msgid ""
"Can't get jacobi symbol with Kronecker extension of floats or rationals!"
msgstr ""

#: ../src/mpwrap.c:1482
msgid "Lucas must get an integer argument!"
msgstr ""

#: ../src/mpwrap.c:1488
msgid "Number too large to compute lucas number!"
msgstr ""

#: ../src/mpwrap.c:1493
msgid "No such thing as negative lucas numbers!"
msgstr ""

#: ../src/mpwrap.c:1508
msgid "Cannot get next prime after non-integer!"
msgstr ""

#: ../src/mpwrap.c:1528 ../src/mpwrap.c:1541 ../src/mpwrap.c:1554
#: ../src/mpwrap.c:1567
#, c-format
msgid "%s: can't work on non-integers!"
msgstr ""

#: ../src/mpwrap.c:1609 ../src/mpwrap.c:1649
msgid "Can't do factorials of rationals or floats!"
msgstr ""

#: ../src/mpwrap.c:1615 ../src/mpwrap.c:1655
msgid "Number too large to compute factorial!"
msgstr ""

#: ../src/mpwrap.c:1620 ../src/mpwrap.c:1660
msgid "Can't do factorials of negative numbers!"
msgstr ""

#: ../src/mpwrap.c:1671
msgid "Can't do binomials of rationals or floats!"
msgstr ""

#: ../src/mpwrap.c:1977 ../src/mpwrap.c:2045 ../src/mpwrap.c:4132
#: ../src/mpwrap.c:4153
#, c-format
msgid "%s: Bad types for mod power"
msgstr ""

#: ../src/mpwrap.c:2014
#, c-format
msgid "Can't invert %s modulo %s in %s"
msgstr ""

#: ../src/mpwrap.c:2333
msgid "Can't make random integer from a non-integer"
msgstr ""

#: ../src/mpwrap.c:2338
msgid "Range for random integer must be positive"
msgstr ""

#: ../src/mpwrap.c:2523 ../src/mpwrap.c:2551
msgid "Can't get numerator of floating types"
msgstr ""

#: ../src/mpwrap.c:3354 ../src/mpwrap.c:4835 ../src/mpwrap.c:4847
msgid "Can't compare complex numbers"
msgstr ""

#: ../src/mpwrap.c:3808
msgid "Can't modulo complex numbers"
msgstr ""

#: ../src/mpwrap.c:3831
#, c-format
msgid "Inverse of %s modulo %s not found!"
msgstr ""

#: ../src/mpwrap.c:3840
msgid "Can't do modulo invert on complex numbers"
msgstr ""

#: ../src/mpwrap.c:3857
msgid "Can't GCD complex numbers"
msgstr ""

#: ../src/mpwrap.c:3886
msgid "Can't LCM complex numbers"
msgstr ""

#: ../src/mpwrap.c:3903
msgid "Can't get jacobi symbols of complex numbers"
msgstr ""

#: ../src/mpwrap.c:3919
msgid "Can't get legendre symbols complex numbers"
msgstr ""

#: ../src/mpwrap.c:3935
msgid "Can't get jacobi symbol with Kronecker extension for complex numbers"
msgstr ""

#: ../src/mpwrap.c:3951
msgid "Can't get lucas number for complex numbers"
msgstr ""

#: ../src/mpwrap.c:3967
msgid "Can't get next prime for complex numbers"
msgstr ""

#: ../src/mpwrap.c:3977 ../src/mpwrap.c:3989 ../src/mpwrap.c:4001
#: ../src/mpwrap.c:4013
#, c-format
msgid "%s: can't work on complex numbers"
msgstr ""

#: ../src/mpwrap.c:4242 ../src/mpwrap.c:4320 ../src/mpwrap.c:4385
#, c-format
msgid "%s: can't take logarithm of 0"
msgstr ""

#
#: ../src/mpwrap.c:4714
msgid "arctan2 not defined for complex numbers"
msgstr ""

#: ../src/mpwrap.c:4762
msgid "Can't make random integer out of a complex number"
msgstr ""

#: ../src/mpwrap.c:4900 ../src/mpwrap.c:4917
msgid "Can't make factorials of complex numbers"
msgstr ""

#: ../src/mpwrap.c:4934
msgid "Can't make binomials of complex numbers"
msgstr ""

#: ../src/mpwrap.c:5313 ../src/mpwrap.c:5335 ../src/mpwrap.c:5357
msgid "Can't determine type of a complex number"
msgstr ""

#: ../src/mpwrap.c:5460 ../src/mpwrap.c:5483
msgid "Can't convert complex number into integer"
msgstr ""

#: ../src/mpwrap.c:5466 ../src/mpwrap.c:5489
msgid "Can't convert real number to integer"
msgstr ""

#: ../src/mpwrap.c:5470 ../src/mpwrap.c:5493
msgid "Integer too large for this operation"
msgstr ""

#: ../src/mpwrap.c:5506
msgid "Can't convert complex number into a double"
msgstr ""

#: ../src/mpwrap.c:5515
msgid "Can't convert real number to double"
msgstr ""

#: ../src/mpwrap.c:5521 ../src/mpwrap.c:5536
msgid "Number too large for this operation"
msgstr ""

#: ../src/plugin.c:152
msgid "Can't open plugin!"
msgstr ""

#: ../src/plugin.c:167 ../src/plugin.c:175
msgid "Can't initialize plugin!"
msgstr ""

#: ../src/symbolic.c:668
#, c-format
msgid "%s: '%s' not a function of one variable"
msgstr ""

#: ../src/symbolic.c:701
#, c-format
msgid "%s: Cannot differentiate the '%s' function"
msgstr ""

#: ../src/symbolic.c:786
msgid "Symbolic Operations"
msgstr ""

#: ../src/symbolic.c:789
msgid ""
"Attempt to symbolically differentiate the function f, where f is a function "
"of one variable."
msgstr ""

#: ../src/symbolic.c:792
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:96 ../src/util.c:115
msgid "Stack underflow!"
msgstr ""

#: ../ve/glade-helper.c:82 ../ve/glade-helper.c:114 ../ve/glade-helper.c:136
msgid "(memory buffer)"
msgstr ""

#. markup
#: ../ve/glade-helper.c:171 ../ve/glade-helper.c:224 ../ve/glade-helper.c:278
msgid "Cannot load user interface"
msgstr ""

#: ../ve/glade-helper.c:172
#, c-format
msgid ""
"An error occurred while loading user interface element %s%s from file %s.  "
"Possibly the glade interface description was corrupted.  %s cannot continue "
"and will exit now.  You should check your installation of %s or reinstall %s."
msgstr ""

#: ../ve/glade-helper.c:188
#, c-format
msgid ""
"Glade file is on crack! Make sure the correct file is installed!\n"
"file: %s widget: %s"
msgstr ""

#: ../ve/glade-helper.c:225
#, c-format
msgid ""
"An error occurred while loading the user interface element %s%s from file %"
"s. CList type widget should have %d column. Possibly the glade interface "
"description was corrupted. %s cannot continue and will exit now. You should "
"check your installation of %s or reinstall %s."
msgid_plural ""
"An error occurred while loading the user interface element %s%s from file %"
"s. CList type widget should have %d columns. Possibly the glade interface "
"description was corrupted. %s cannot continue and will exit now. You should "
"check your installation of %s or reinstall %s."
msgstr[0] ""
msgstr[1] ""

#: ../ve/glade-helper.c:254
#, c-format
msgid ""
"Glade file is on crack! Make sure the correct file is installed!\n"
"file: %s widget: %s expected clist columns: %d"
msgstr ""

#: ../ve/glade-helper.c:279
#, c-format
msgid ""
"An error occurred while loading the user interface from file %s.  Possibly "
"the glade interface description was not found.  %s cannot continue and will "
"exit now.  You should check your installation of %s or reinstall %s."
msgstr ""

#: ../ve/glade-helper.c:291
#, c-format
msgid "No interface could be loaded. This is BAD! (file: %s)"
msgstr ""

#: ../ve/ve-nongnome.c:134
msgid "Too many alias levels for a locale; may indicate a loop"
msgstr ""