File: en_GB.po

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../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 ""
"Logarithm of any base (calls DiscreteLog if in modulo mode), if base is not "
"given, e is used"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../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 ""
"Find the x that solves the system given by the vector a and modulo the "
"elements of m, using the Chinese Remainder Theorem"

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

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

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

#: ../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 ""
"Find discrete log of n base b in F_q where q is a prime using the Silver-"
"Pohlig-Hellman algoritm"

#: ../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 ""
"Compute phi(n), the Euler phi function, that is the number of integers "
"between 1 and n relatively prime to n"

#: ../lib/library-strings.c:50
msgid "Return all factors of a number"
msgstr "Return all factors of a number"

#: ../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 ""
"Attempt fermat factorisation of n into (t-s)*(t+s), returns t and s as a "
"vector if possible, null otherwise"

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

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

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

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

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

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

#: ../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 ""
"Check if g is primitive in F_q, where q is a prime.  If q is not prime "
"results are erroneous."

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

#: ../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 ""
"If n is a pseudoprime base b but not a prime, that is if b^(n-1) == 1 mod n"

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

#: ../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 ""
"Return the residue of a mod n with the least absolute value (in the interval "
"-n/2 to n/2)"

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

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

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

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

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

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

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

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

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

#: ../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 ""
"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 factorisation of q-1"

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

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

#: ../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 ""
"Apply a function over all entries of 2 matrices (or 1 value and 1 matrix) "
"and return a matrix of the results"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../lib/library-strings.c:104
msgid "Conjugate transpose of a matrix (adjoint)"
msgstr "Conjugate transpose of a matrix (adjoint)"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../lib/library-strings.c:221
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 ""
"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"

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

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

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

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

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

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

#: ../lib/library-strings.c:228
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 ""
"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"

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

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

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

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

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

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

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

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

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

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

#: ../lib/library-strings.c:239
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 ""
"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)"

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

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

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

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

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

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

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

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

#: ../src/calc.c:1016 ../src/eval.c:6405 ../src/eval.c:6599
msgid "Unexpected operator!"
msgstr "Unexpected operator!"

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

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

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

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

#: ../src/calc.c:1452 ../src/eval.c:6836
msgid "Unexpected node!"
msgstr "Unexpected node!"

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

#: ../src/calc.c:1970 ../src/calc.c:1979 ../src/calc.c:1984 ../src/calc.c:1993
#: ../src/calc.c:1998 ../src/calc.c:2007 ../src/calc.c:2012 ../src/calc.c:2021
#: ../src/calc.c:2026 ../src/calc.c:2037 ../src/calc.c:2042 ../src/calc.c:2053
#: ../src/calc.c:2060 ../src/calc.c:2073 ../src/calc.c:2079 ../src/calc.c:2086
#: ../src/calc.c:2095 ../src/calc.c:2106 ../src/calc.c:2112 ../src/calc.c:2119
#: ../src/calc.c:2125 ../src/calc.c:2134 ../src/calc.c:2144
msgid "Badly formed record"
msgstr "Badly formed record"

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

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

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

#: ../src/calc.c:2218 ../src/calc.c:2761 ../src/calc.c:2796
#, c-format
msgid "Can't open file: '%s'"
msgstr "Can't open file: '%s'"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/eval.c:2658 ../src/eval.c:2685 ../src/eval.c:2706 ../src/eval.c:2730
#: ../src/eval.c:2776
msgid "Operations on functions with variable argument list not supported"
msgstr "Operations on functions with variable argument list not supported"

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

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

#: ../src/eval.c:3360 ../src/eval.c:4719
msgid "Unevaluatable function type encountered!"
msgstr "Encountered function type that can't be evaulated!"

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

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

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

#: ../src/eval.c:3430 ../src/eval.c:3458 ../src/eval.c:4470
#, c-format
msgid "Variable '%s' used uninitialized"
msgstr "Variable '%s' used uninitialised"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/eval.c:5234 ../src/eval.c:5249
msgid "Matrix index out of range"
msgstr "Matrix index out of range"

#: ../src/eval.c:5296 ../src/eval.c:5358 ../src/eval.c:5421 ../src/eval.c:5468
#, c-format
msgid "Trying to set a protected id '%s'"
msgstr "Trying to set a protected id '%s'"

#: ../src/eval.c:5314 ../src/eval.c:5353
msgid "Indexed Lvalue not user function"
msgstr "Indexed Lvalue not user function"

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

#: ../src/eval.c:5343 ../src/eval.c:5458
msgid "Dereference of undefined variable!"
msgstr "Dereference of undefined variable!"

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

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

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

#: ../src/eval.c:5439 ../src/eval.c:5480
msgid "Referencing an undefined variable!"
msgstr "Referencing an undefined variable!"

#: ../src/eval.c:5526 ../src/eval.c:5604 ../src/eval.c:5613
msgid "Wrong matrix dimensions when setting"
msgstr "Wrong matrix dimensions when setting"

#: ../src/eval.c:5544 ../src/eval.c:5584 ../src/eval.c:5650 ../src/eval.c:5780
#: ../src/eval.c:5905
msgid "Matrix index not an integer or a vector"
msgstr "Matrix index not an integer or a vector"

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

#: ../src/eval.c:5727 ../src/eval.c:5772 ../src/eval.c:5863
msgid "Index works only on matricies"
msgstr "Index works only on matrices"

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

#: ../src/eval.c:5928
msgid "number"
msgstr "number"

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

#: ../src/eval.c:5930
msgid "string"
msgstr "string"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/funclib.c:172 ../src/gnome-genius.c:1823
#, 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 ""
"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 Licence, 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 Licence for more details.\n"
"\n"
"    You should have received a copy of the GNU General Public Licence\n"
"    along with this program.  If not, see <http://www.gnu.org/licenses/>.\n"

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/funclib.c:2704 ../src/funclib.c:2762 ../src/funclib.c:4274
#: ../src/funclib.c:4568
#, c-format
msgid "%s: too many arguments"
msgstr "%s: too many arguments"

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

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

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

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

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

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

#: ../src/funclib.c:3625 ../src/funclib.c:4268
msgid "third argument"
msgstr "third argument"

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

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

#: ../src/funclib.c:4008 ../src/funclib.c:4037 ../src/funclib.c:4289
#: ../src/mpwrap.c:3717 ../src/mpwrap.c:3736 ../src/mpwrap.c:3793
#: ../src/mpwrap.c:3822 ../src/mpwrap.c:3839 ../src/mpwrap.c:3888
msgid "Division by zero!"
msgstr "Division by zero!"

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

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

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

#: ../src/funclib.c:4796 ../src/funclib.c:4885 ../src/funclib.c:5113
#: ../src/funclib.c:5168 ../src/funclib.c:5238 ../src/funclib.c:5252
#, c-format
msgid "%s: value out of range"
msgstr "%s: value out of range"

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

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

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

#: ../src/funclib.c:5676 ../src/funclib.c:5711 ../src/funclib.c:5956
#, c-format
msgid "%s: argument should be between %d and %d"
msgstr "%s: argument should be between %d and %d"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#. 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:6145
msgid "The Riemann zeta function (only real values implemented)"
msgstr "The Riemann zeta function (only real values implemented)"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/funclib.c:6228
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 ""
"Calculate the Jacobi symbol (a/b) with the Kronecker extension (a/2)=(2/a) "
"when a odd, or (a/2)=0 when a even"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/funclib.c:6265
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 ""
"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."

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

#: ../src/funclib.c:6271
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 ""
"Return pivot columns of a matrix, that is columns which have a leading 1 in "
"rref form, also returns the row where they occur"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/funclib.c:6354
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 ""
"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"

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

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

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

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

#: ../src/genius.c:309 ../src/genius.lang.h:5 ../src/gnome-genius.c:733
msgid "Genius"
msgstr "Genius"

#: ../src/genius.c:342 ../src/genius.c:351 ../src/genius.c:358
#: ../src/genius.c:367
#, c-format
msgid "%s should be between %d and %d, using %d"
msgstr "%s should be between %d and %d, using %d"

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

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

#: ../src/genius.c:454
#, c-format
msgid ""
"Genius %s usage:\n"
"\n"
"genius [options] [files]\n"
"\n"
"\t--help            \tPrint this help\n"
"\t--version         \tPrint version number\n"
"\t--precision=num   \tFloating point precision [128]\n"
"\t--maxdigits=num   \tMaximum digits to display (0=no limit) [0]\n"
"\t--[no]floatresult \tAll results as floats [OFF]\n"
"\t--[no]scinot      \tResults in scientific notation [OFF]\n"
"\t--[no]fullexp     \tAlways print full expressions [OFF]\n"
"\t--maxerrors=num   \tMaximum errors to display (0=no limit) [5]\n"
"\t--[no]mixed       \tPrint fractions in mixed format\n"
"\t--intoutbase=num  \tBase to use to print out integers [10]\n"
"\t--chop=num        \tChop small numbers less than 10^-num [20]\n"
"\t--chopwhen=num    \tBut only when other numbers 10^-num or more [5]\n"
"\t--[no]readline    \tUse readline if it is available [ON]\n"
"\t--[no]compile     \tCompile everything and dump it to stdout [OFF]\n"
"\t--[no]gettext     \tDump help/error strings in fake .c file to\n"
"\t                  \tstdout (for use with gettext) [OFF]\n"
"\t--[no]quiet       \tBe quiet during non-interactive mode,\n"
"\t                  \t(always on when compiling) [OFF]\n"
"\t--exec=expr       \tExecute an expression\n"
"\n"
msgstr ""
"Genius %s 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"

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

#: ../src/genius.c:495
#, c-format
msgid ""
"Genius %s\n"
"%s\n"
"This is free software with ABSOLUTELY NO WARRANTY.\n"
"For license details type `warranty'.\n"
"For help type 'manual' or 'help'.%s\n"
"\n"
msgstr ""
"Genius %s\n"
"%s\n"
"This is free software with ABSOLUTELY NO WARRANTY.\n"
"For licence details type `warranty'.\n"
"For help type 'manual' or 'help'.%s\n"
"\n"

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

#: ../src/genius.c:589 ../src/genius.c:662
msgid "Can't open file"
msgstr "Can't open file"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#. label, accelerator
#: ../src/gnome-genius.c:273 ../src/gnome-genius.c:277
msgid "Open a file"
msgstr "Open a file"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/gnome-genius.c:321
msgid "Cut the selection"
msgstr "Cut the selection"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/gnome-genius.c:372 ../src/gnome-genius.c:566 ../src/graphing.c:5047
msgid "_Plot"
msgstr "_Plot"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#. 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:1792
msgid "translator-credits"
msgstr ""
"Gareth Owen <gowen72@yahoo.com>\n"
"David Lodge <dave@cirt.net>\n"
"Jen Ockwell <jenfraggleubuntu@gmail.com>"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/gnome-genius.c:2518
msgid "Maximum number of nodes to allocate"
msgstr "Maximum number of nodes to allocate"

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

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

#: ../src/gnome-genius.c:2591 ../src/graphing.c:992
msgid "All files"
msgstr "All files"

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

#: ../src/gnome-genius.c:2625 ../src/gnome-genius.c:3964
msgid "Output from "
msgstr "Output from "

#: ../src/gnome-genius.c:2641 ../src/gnome-genius.c:4033
msgid "End"
msgstr "End"

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

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

#: ../src/gnome-genius.c:3183
msgid "Cannot open file"
msgstr "Cannot open file"

#. context
#: ../src/gnome-genius.c:3218 ../src/gnome-genius.c:4627
#, c-format
msgid "Line: %d"
msgstr "Line: %d"

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

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

#: ../src/gnome-genius.c:3420
#, c-format
msgid "Cannot open %s"
msgstr "Cannot open %s"

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

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

#. new fname
#: ../src/gnome-genius.c:3585 ../src/gnome-genius.c:3617
#: ../src/gnome-genius.c:3676 ../src/gnome-genius.c:3805
#, c-format
msgid ""
"<b>Cannot save file</b>\n"
"Details: %s"
msgstr ""
"<b>Cannot save file</b>\n"
"Details: %s"

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

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

#: ../src/gnome-genius.c:3670 ../src/gnome-genius.c:3785 ../src/graphing.c:789
#: ../src/graphing.c:895
msgid "File already exists.  Overwrite it?"
msgstr "File already exists.  Overwrite it?"

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

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

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

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

#: ../src/gnome-genius.c:3951
#, c-format
msgid "Cannot open pipe: %s"
msgstr "Cannot open pipe: %s"

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

#: ../src/gnome-genius.c:4050
msgid ""
"<b>Error executing program</b>\n"
"\n"
"There was an error while writing the\n"
"program to the engine."
msgstr ""
"<b>Error executing program</b>\n"
"\n"
"There was an error while writing the\n"
"program to the engine."

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

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

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

#: ../src/gnome-genius.c:4444
msgid "Readline helper died, weird.  Trying to recover, things may be odd."
msgstr "Readline helper died. Trying to recover, but things may be odd."

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

#: ../src/gnome-genius.c:4771
msgid "GNOME Genius"
msgstr "GNOME Genius"

#. parent
#: ../src/gnome-genius.c:4822
msgid "Cannot find the library file, genius installation may be incorrect"
msgstr "Cannot find the library file, Genius installation may be incorrect"

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

#: ../src/gnome-genius.c:4995
#, 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 ""
"%sGenius %s%s\n"
"%s\n"
"This is free software with ABSOLUTELY NO WARRANTY.\n"
"For licence details type `%swarranty%s'.\n"
"For help type '%smanual%s' or '%shelp%s'.%s\n"
"\n"

#: ../src/gnome-genius.desktop.in.h:1
msgid "Genius Math Tool"
msgstr "Genius Math Tool"

#: ../src/gnome-genius.desktop.in.h:2
msgid "Genius Mathematical Tool and Calculator"
msgstr "Genius Mathematical Tool and Calculator"

#: ../src/graphing.c:470
msgid "Rotate"
msgstr "Rotate"

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

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

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

#: ../src/graphing.c:647
msgid "Print"
msgstr "Print"

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

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

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

#: ../src/graphing.c:730
#, c-format
msgid "Printing failed: %s"
msgstr "Printing failed: %s"

#: ../src/graphing.c:858 ../src/graphing.c:910 ../src/graphing.c:927
msgid "Export failed"
msgstr "Export failed"

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

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

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

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

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

#: ../src/graphing.c:986
msgid "PNG files"
msgstr "PNG files"

#: ../src/graphing.c:1559
msgid "Solver"
msgstr "Solver"

#: ../src/graphing.c:1564
msgid "Clea_r solutions"
msgstr "Clea_r solutions"

#: ../src/graphing.c:1566
msgid "_Plot solution"
msgstr "_Plot solution"

#: ../src/graphing.c:1587
msgid ""
"Clicking on the graph window now will draw a solution according to the "
"parameters set below, starting at the point clicked.  To be able to zoom by "
"mouse again, close this window."
msgstr ""
"Clicking on the graph window now will draw a solution according to the "
"parameters set below, starting at the point clicked.  To be able to zoom "
"with the mouse again, close this window."

#: ../src/graphing.c:1609
msgid "X increment:"
msgstr "X increment:"

#: ../src/graphing.c:1629
msgid "T increment:"
msgstr "T increment:"

#: ../src/graphing.c:1631
msgid "T interval length:"
msgstr "T interval length:"

#: ../src/graphing.c:1643
msgid "Point x:"
msgstr "Point x:"

#: ../src/graphing.c:1646
msgid "y:"
msgstr "y:"

#: ../src/graphing.c:1709
msgid "Plot"
msgstr "Plot"

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

#: ../src/graphing.c:1745
msgid "_Print..."
msgstr "_Print..."

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

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

#: ../src/graphing.c:1763
msgid "Export P_NG..."
msgstr "Export P_NG..."

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

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

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

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

#: ../src/graphing.c:1800
msgid "_Reset to original zoom"
msgstr "_Reset to original zoom"

#: ../src/graphing.c:1813
msgid "_View"
msgstr "_View"

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

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

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

#: ../src/graphing.c:1838
msgid "_Solver"
msgstr "_Solver"

#: ../src/graphing.c:1843
msgid "_Solver..."
msgstr "_Solver..."

#: ../src/graphing.c:1848
msgid "_Clear solutions"
msgstr "_Clear solutions"

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

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

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

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

#: ../src/graphing.c:2780 ../src/graphing.c:2786 ../src/graphing.c:2792
#: ../src/graphing.c:2798 ../src/graphing.c:2863 ../src/graphing.c:2869
#: ../src/graphing.c:2875 ../src/graphing.c:2881 ../src/graphing.c:2887
#: ../src/graphing.c:2893
msgid "Graph limits not given as numbers"
msgstr "Graph limits not given as numbers"

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

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

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

#: ../src/graphing.c:3945
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 ""
"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."

#: ../src/graphing.c:3969
msgid "or"
msgstr "or"

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

#: ../src/graphing.c:3985 ../src/graphing.c:4101 ../src/graphing.c:4112
#: ../src/graphing.c:4167 ../src/graphing.c:4178 ../src/graphing.c:4189
msgid "to:"
msgstr "to:"

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

#: ../src/graphing.c:3994
msgid "Pa_rametric"
msgstr "Pa_rametric"

#: ../src/graphing.c:4002
msgid ""
"Type in function name or expression involving the x and y variables (or the "
"z variable which will be z=x+iy) that gives the slope at the point (x,y)."
msgstr ""
"Type in function name or expression involving the x and y variables (or the "
"z variable which will be z=x+iy) that gives the slope at the point (x,y)."

#. # of ticks
#: ../src/graphing.c:4018 ../src/graphing.c:4066
msgid "Vertical ticks:"
msgstr "Vertical ticks:"

#. # of ticks
#: ../src/graphing.c:4022 ../src/graphing.c:4070
msgid "Horizontal ticks:"
msgstr "Horizontal ticks:"

#: ../src/graphing.c:4027
msgid "Sl_ope field"
msgstr "Sl_ope field"

#: ../src/graphing.c:4035
msgid ""
"Type in function names or expressions involving the x and y variables (or "
"the z variable which will be z=x+iy) that give the dx/dt and dy/dt of the "
"autonomous system to be plotted at the point (x,y)."
msgstr ""
"Type in function names or expressions involving the x and y variables (or "
"the z variable which will be z=x+iy) that give the dx/dt and dy/dt of the "
"autonomous system to be plotted at the point (x,y)."

#. Normalize the arrow length?
#: ../src/graphing.c:4057
msgid "_Normalize arrow length (do not show size)"
msgstr "_Normalise arrow length (do not show size)"

#: ../src/graphing.c:4075
msgid "_Vector field"
msgstr "_Vector field"

#.
#. * Below notebook
#.
#: ../src/graphing.c:4081
msgid "_Draw legend"
msgstr "_Draw legend"

#: ../src/graphing.c:4090 ../src/graphing.c:4156
msgid "Plot Window"
msgstr "Plot Window"

#.
#. * X range
#.
#: ../src/graphing.c:4099 ../src/graphing.c:4165
msgid "X from:"
msgstr "X from:"

#.
#. * Y range
#.
#: ../src/graphing.c:4110 ../src/graphing.c:4176
msgid "Y from:"
msgstr "Y from:"

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

#: ../src/graphing.c:4135
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 ""
"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."

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

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

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

#: ../src/graphing.c:4447 ../src/graphing.c:4607 ../src/graphing.c:4722
#: ../src/graphing.c:4831 ../src/graphing.c:4926
msgid "No functions to plot or no functions could be parsed"
msgstr "No functions to plot or no functions could be parsed"

#: ../src/graphing.c:4478 ../src/graphing.c:4630 ../src/graphing.c:4751
#: ../src/graphing.c:4854 ../src/graphing.c:4949
msgid "Invalid X range"
msgstr "Invalid X range"

#: ../src/graphing.c:4483 ../src/graphing.c:4635 ../src/graphing.c:4756
#: ../src/graphing.c:4859 ../src/graphing.c:4954
msgid "Invalid Y range"
msgstr "Invalid Y range"

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

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

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

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

#: ../src/graphing.c:5080 ../src/graphing.c:5218 ../src/graphing.c:5249
#: ../src/graphing.c:5270 ../src/graphing.c:5310 ../src/graphing.c:5334
#: ../src/graphing.c:5441 ../src/graphing.c:5559 ../src/graphing.c:5676
#: ../src/graphing.c:5818 ../src/graphing.c:5951 ../src/graphing.c:6142
#: ../src/graphing.c:6388 ../src/graphing.c:6418 ../src/graphing.c:6477
#: ../src/graphing.c:6502
#, c-format
msgid "%s: Plotting in progress, cannot call %s"
msgstr "%s: Plotting in progress, cannot call %s"

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

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

#: ../src/graphing.c:5165 ../src/graphing.c:5399 ../src/graphing.c:5511
#: ../src/graphing.c:5629 ../src/graphing.c:5765 ../src/graphing.c:5905
#, c-format
msgid "%s: invalid X range"
msgstr "%s: invalid X range"

#: ../src/graphing.c:5170 ../src/graphing.c:5404 ../src/graphing.c:5516
#: ../src/graphing.c:5634 ../src/graphing.c:5770 ../src/graphing.c:5910
#, c-format
msgid "%s: invalid Y range"
msgstr "%s: invalid Y range"

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

#: ../src/graphing.c:5228
#, c-format
msgid "%s: dx must be positive"
msgstr "%s: dx must be positive"

#: ../src/graphing.c:5235 ../src/graphing.c:5254
#, c-format
msgid "%s: Slope field not active"
msgstr "%s: Slope field not active"

#: ../src/graphing.c:5281
#, c-format
msgid "%s: dt must be positive"
msgstr "%s: dt must be positive"

#: ../src/graphing.c:5287
#, c-format
msgid "%s: tlen must be positive"
msgstr "%s: tlen must be positive"

#: ../src/graphing.c:5295 ../src/graphing.c:5316
#, c-format
msgid "%s: Vector field not active"
msgstr "%s: Vector field not active"

#: ../src/graphing.c:5341 ../src/graphing.c:5825
#, c-format
msgid "%s: First argument must be a function"
msgstr "%s: First argument must be a function"

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

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

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

#: ../src/graphing.c:6025 ../src/graphing.c:6079
#, c-format
msgid ""
"%s: Line should be given as a real, n by 2 matrix with columns for x and y, "
"n>=2"
msgstr ""
"%s: Line should be given as a real, n by 2 matrix with columns for x and y, "
"n>=2"

#: ../src/graphing.c:6157
#, c-format
msgid "%s: Wrong number of arguments"
msgstr "%s: Wrong number of arguments"

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

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

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

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

#: ../src/graphing.c:6303 ../src/graphing.c:6327
#, c-format
msgid "%s: arrow style should be \"origin\", \"end\", \"both\", or \"none\""
msgstr "%s: arrow style should be \"origin\", \"end\", \"both\", or \"none\""

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

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

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

#. internal
#: ../src/graphing.c:6539
msgid ""
"Plot a function with a line.  First come the functions (up to 10) then "
"optionally limits as x1,x2,y1,y2"
msgstr ""
"Plot a function with a line.  First come the functions (up to 10) then "
"optionally limits as x1,x2,y1,y2"

#: ../src/graphing.c:6540
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 ""
"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"

#: ../src/graphing.c:6541
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 ""
"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"

#: ../src/graphing.c:6543
msgid ""
"Draw a slope field.  First comes the function dy/dx in terms of x and y (or "
"a complex z) then optionally the limits as x1,x2,y1,y2"
msgstr ""
"Draw a slope field.  First comes the function dy/dx in terms of x and y (or "
"a complex z) then optionally the limits as x1,x2,y1,y2"

#: ../src/graphing.c:6544
msgid ""
"Draw a vector field.  First come the functions dx/dt and dy/dt in terms of x "
"and y then optionally the limits as x1,x2,y1,y2"
msgstr ""
"Draw a vector field.  First come the functions dx/dt and dy/dt in terms of x "
"and y then optionally the limits as x1,x2,y1,y2"

#: ../src/graphing.c:6546
msgid ""
"Draw a solution for a slope field starting at x,y and using dx as increment"
msgstr ""
"Draw a solution for a slope field starting at x,y and using dx as increment"

#: ../src/graphing.c:6547
msgid "Clear all the slopefield solutions"
msgstr "Clear all the slope field solutions"

#: ../src/graphing.c:6549
msgid ""
"Draw a solution for a vector field starting at x,y, using dt as increment "
"for tlen units"
msgstr ""
"Draw a solution for a vector field starting at x,y, using dt as increment "
"for tlen units"

#: ../src/graphing.c:6550
msgid "Clear all the vectorfield solutions"
msgstr "Clear all the vector field solutions"

#: ../src/graphing.c:6553
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 ""
"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"

#: ../src/graphing.c:6555
msgid "Show the line plot window and clear out functions"
msgstr "Show the line plot window and clear out functions"

#: ../src/graphing.c:6556
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 ""
"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"

#: ../src/graphing.c:6558
msgid ""
"Normalize vectorfields if true.  That is, only show direction and not "
"magnitude."
msgstr ""
"Normalise vector fields if true.  That is, only show direction and not "
"magnitude."

#: ../src/graphing.c:6559
msgid "If to draw legends or not on line plots."
msgstr "Whether to draw legends on line plots."

#: ../src/graphing.c:6561
msgid "Line plotting window (limits) as a 4-vector of the form [x1,x2,y1,y2]"
msgstr "Line plotting window (limits) as a 4-vector of the form [x1,x2,y1,y2]"

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../src/mpwrap.c:1592 ../src/mpwrap.c:1605 ../src/mpwrap.c:1618
#: ../src/mpwrap.c:1631
#, c-format
msgid "%s: can't work on non-integers!"
msgstr "%s: can't work on non-integers!"

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

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

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

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

#: ../src/mpwrap.c:2042 ../src/mpwrap.c:2110 ../src/mpwrap.c:4225
#: ../src/mpwrap.c:4246
#, c-format
msgid "%s: Bad types for mod power"
msgstr "%s: Bad types for mod power"

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

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

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

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

#: ../src/mpwrap.c:3414 ../src/mpwrap.c:4938 ../src/mpwrap.c:4960
msgid "Can't compare complex numbers"
msgstr "Can't compare complex numbers"

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

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

#: ../src/mpwrap.c:3933
msgid "Can't do modulo invert on complex numbers"
msgstr "Can't do modulo invert on complex numbers"

#: ../src/mpwrap.c:3950
msgid "Can't GCD complex numbers"
msgstr "Can't GCD complex numbers"

#: ../src/mpwrap.c:3979
msgid "Can't LCM complex numbers"
msgstr "Can't LCM complex numbers"

#: ../src/mpwrap.c:3996
msgid "Can't get jacobi symbols of complex numbers"
msgstr "Can't get jacobi symbols of complex numbers"

#: ../src/mpwrap.c:4012
msgid "Can't get legendre symbols complex numbers"
msgstr "Can't get legendre symbols complex numbers"

#: ../src/mpwrap.c:4028
msgid "Can't get jacobi symbol with Kronecker extension for complex numbers"
msgstr "Can't get jacobi symbol with Kronecker extension for complex numbers"

#: ../src/mpwrap.c:4044
msgid "Can't get lucas number for complex numbers"
msgstr "Can't get lucas number for complex numbers"

#: ../src/mpwrap.c:4060
msgid "Can't get next prime for complex numbers"
msgstr "Can't get next prime for complex numbers"

#: ../src/mpwrap.c:4070 ../src/mpwrap.c:4082 ../src/mpwrap.c:4094
#: ../src/mpwrap.c:4106
#, c-format
msgid "%s: can't work on complex numbers"
msgstr "%s: can't work on complex numbers"

#: ../src/mpwrap.c:4335 ../src/mpwrap.c:4413 ../src/mpwrap.c:4478
#, c-format
msgid "%s: can't take logarithm of 0"
msgstr "%s: can't take logarithm of 0"

#: ../src/mpwrap.c:4807
msgid "arctan2 not defined for complex numbers"
msgstr "arctan2 not defined for complex numbers"

#: ../src/mpwrap.c:4855
msgid "Can't make random integer out of a complex number"
msgstr "Can't make random integer out of a complex number"

#: ../src/mpwrap.c:5017 ../src/mpwrap.c:5034
msgid "Can't make factorials of complex numbers"
msgstr "Can't make factorials of complex numbers"

#: ../src/mpwrap.c:5051
msgid "Can't make binomials of complex numbers"
msgstr "Can't make binomials of complex numbers"

#: ../src/mpwrap.c:5430 ../src/mpwrap.c:5441 ../src/mpwrap.c:5452
msgid "Can't determine type of a complex number"
msgstr "Can't determine type of a complex number"

#: ../src/mpwrap.c:5544 ../src/mpwrap.c:5567
msgid "Can't convert complex number into integer"
msgstr "Can't convert complex number into integer"

#: ../src/mpwrap.c:5550 ../src/mpwrap.c:5573
msgid "Can't convert real number to integer"
msgstr "Can't convert real number to integer"

#: ../src/mpwrap.c:5554 ../src/mpwrap.c:5577
msgid "Integer too large for this operation"
msgstr "Integer too large for this operation"

#: ../src/mpwrap.c:5590
msgid "Can't convert complex number into a double"
msgstr "Can't convert complex number into a double"

#: ../src/mpwrap.c:5599
msgid "Can't convert real number to double"
msgstr "Can't convert real number to double"

#: ../src/mpwrap.c:5605 ../src/mpwrap.c:5620
msgid "Number too large for this operation"
msgstr "Number too large for this operation"

#: ../src/plugin.c:155
msgid "Can't open plugin!"
msgstr "Can't open plugin!"

#: ../src/plugin.c:171 ../src/plugin.c:179
msgid "Can't initialize plugin!"
msgstr "Can't initialise plugin!"

#: ../src/symbolic.c:664
#, c-format
msgid "%s: '%s' not a function of one variable"
msgstr "%s: '%s' not a function of one variable"

#: ../src/symbolic.c:697
#, c-format
msgid "%s: Cannot differentiate the '%s' function"
msgstr "%s: Cannot differentiate the '%s' function"

#: ../src/symbolic.c:782
msgid "Symbolic Operations"
msgstr "Symbolic Operations"

#: ../src/symbolic.c:785
msgid ""
"Attempt to symbolically differentiate the function f, where f is a function "
"of one variable."
msgstr ""
"Attempt to symbolically differentiate the function f, where f is a function "
"of one variable."

#: ../src/symbolic.c:788
msgid ""
"Attempt to symbolically differentiate the function f, where f is a function "
"of one variable, returns null if unsuccessful but is silent."
msgstr ""
"Attempt to symbolically differentiate the function f, where f is a function "
"of one variable, returns null if unsuccessful but is silent."

#: ../src/testplugin.c:13
msgid "This is the test-plugin function\n"
msgstr "This is the test-plugin function\n"

#: ../src/testplugin.c:24
msgid ""
"You have opened test plugin!\n"
"\n"
"Will evaluate 2+2 as a demonstration\n"
"2+2 = "
msgstr ""
"You have opened test plugin!\n"
"\n"
"Will evaluate 2+2 as a demonstration\n"
"2+2 = "

#: ../src/testplugin.c:30
msgid ""
"For my next trick I will add a function named TestPluginFunction\n"
"\n"
msgstr ""
"For my next trick I will add a function named TestPluginFunction\n"
"\n"

#: ../src/testplugin.c:41
msgid ""
"That's it, isn't this fun\n"
"\n"
msgstr ""
"That's it, isn't this fun\n"
"\n"

#: ../src/util.c:96 ../src/util.c:115
msgid "Stack underflow!"
msgstr "Stack underflow!"

#: ../src/funclibhelper.cP:40
#, c-format
msgid "%s: argument number %d not an integer"
msgstr "%s: argument number %d not an integer"

#: ../src/funclibhelper.cP:53
#, c-format
msgid "%s: argument number %d not an integer or a matrix"
msgstr "%s: argument number %d not an integer or a matrix"

#: ../src/funclibhelper.cP:65 ../src/funclibhelper.cP:76
#, c-format
msgid "%s: argument number %d not a number or a matrix"
msgstr "%s: argument number %d not a number or a matrix"

#: ../src/funclibhelper.cP:89
#, c-format
msgid "%s: argument number %d not a nonnegative integer"
msgstr "%s: argument number %d not a non-negative integer"

#: ../src/funclibhelper.cP:103
#, c-format
msgid "%s: argument number %d not a positive integer"
msgstr "%s: argument number %d not a positive integer"

#: ../src/funclibhelper.cP:124
#, c-format
msgid "%s: argument number %d not a boolean"
msgstr "%s: argument number %d not a boolean"

#: ../src/funclibhelper.cP:135
#, c-format
msgid "%s: argument number %d not a real number"
msgstr "%s: argument number %d not a real number"

#: ../src/funclibhelper.cP:145
#, c-format
msgid "%s: argument number %d not a matrix"
msgstr "%s: argument number %d not a matrix"

#: ../src/funclibhelper.cP:156
#, c-format
msgid "%s: argument number %d not a square matrix"
msgstr "%s: argument number %d not a square matrix"

#: ../src/funclibhelper.cP:167
#, c-format
msgid "%s: argument number %d not a matrix or null node"
msgstr "%s: argument number %d not a matrix or null node"

#: ../src/funclibhelper.cP:178
#, c-format
msgid "%s: argument number %d not a value only matrix"
msgstr "%s: argument number %d not a value only matrix"

#: ../src/funclibhelper.cP:191
#, c-format
msgid "%s: argument number %d not a value only vector"
msgstr "%s: argument number %d not a value only vector"

#: ../src/funclibhelper.cP:201 ../src/funclibhelper.cP:212
#, c-format
msgid "%s: argument number %d not a string"
msgstr "%s: argument number %d not a string"

#: ../src/funclibhelper.cP:223
#, c-format
msgid "%s: argument number %d not a function or identifier"
msgstr "%s: argument number %d not a function or identifier"

#~ msgid "Check if argument is a gaussian integer"
#~ msgstr "Check if argument is a gaussian integer"

#~ msgid "%s: argument 2 must be less than or equal to argument 3"
#~ msgstr "%s: argument 2 must be less than or equal to argument 3"

#~ msgid "Interrupt"
#~ msgstr "Interrupt"

#~ msgid "Run"
#~ msgstr "Run"

#~ msgid "Open a GEL file for running"
#~ msgstr "Open a GEL file for running"

#~ msgid "Exit genius"
#~ msgstr "Exit genius"

#~ msgid "(memory buffer)"
#~ msgstr "(memory buffer)"

#~ msgid "Cannot load user interface"
#~ msgstr "Cannot load user interface"

#~ 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 ""
#~ "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."

#~ msgid ""
#~ "Glade file is on crack! Make sure the correct file is installed!\n"
#~ "file: %s widget: %s"
#~ msgstr ""
#~ "Glade file is on crack! Make sure the correct file is installed!\n"
#~ "file: %s widget: %s"

#~ 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] ""
#~ "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."
#~ msgstr[1] ""
#~ "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."

#~ msgid ""
#~ "Glade file is on crack! Make sure the correct file is installed!\n"
#~ "file: %s widget: %s expected clist columns: %d"
#~ msgstr ""
#~ "Glade file is on crack! Make sure the correct file is installed!\n"
#~ "file: %s widget: %s expected clist columns: %d"

#~ 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 ""
#~ "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."

#~ msgid "No interface could be loaded. This is BAD! (file: %s)"
#~ msgstr "No interface could be loaded. This is BAD! (file: %s)"

#~ msgid "Too many alias levels for a locale; may indicate a loop"
#~ msgstr "Too many alias levels for a locale; may indicate a loop"

#~ msgid ""
#~ "Apply the Gram-Schmidt process (to the columns) using the dot product"
#~ msgstr ""
#~ "Apply the Gram-Schmidt process (to the columns) using the dot product"

#~ msgid "Draw a line from x1,y1 to x2,y2"
#~ msgstr "Draw a line from x1,y1 to x2,y2"