File: ca.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 (5662 lines) | stat: -rw-r--r-- 149,942 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
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
# Traducció del mòdul genius de l'equip de Softcatalà
# Copyright © Free Software Foundation, Inc.
# This file is distributed under the same license as the genius package.
# Xavier Conde Rueda <xaviconde@eresmas.com>, 2003, 2004
#
msgid ""
msgstr ""
"Project-Id-Version: genius\n"
"Report-Msgid-Bugs-To: http://bugzilla.gnome.org/enter_bug.cgi?"
"product=genius&keywords=I18N+L10N&component=general\n"
"POT-Creation-Date: 2015-02-26 20:31+0000\n"
"PO-Revision-Date: 2004-04-23 19:56+0200\n"
"Last-Translator: Xavier Conde Rueda <xaviconde@eresmas.com>\n"
"Language-Team: Catalan <tradgnome@softcatala.org>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: ../lib/library-strings.c:1
#, fuzzy
msgid "Compose two functions"
msgstr "Dibuixa una funció"

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

#: ../lib/library-strings.c:3
msgid ""
"Print a table of values for f(n) for numbers from from vector v, or if v is "
"a number for integers from 1 to v"
msgstr ""

#: ../lib/library-strings.c:4
#, fuzzy
msgid "Make a string"
msgstr "cadena de text"

#: ../lib/library-strings.c:5
#, fuzzy
msgid "Tolerance of the Chop function"
msgstr "Calcula la funció cosinus"

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

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

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

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

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

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

#: ../lib/library-strings.c:12
msgid "Tolerance of the ErrorFunction (used for complex values only)"
msgstr ""

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

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

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

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

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

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

#: ../lib/library-strings.c:19 ../src/eval.c:6703
msgid "Absolute value"
msgstr "Valor absolut"

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

#: ../lib/library-strings.c:21
#, fuzzy
msgid "Return the fractional part of a number"
msgstr "Obté la part real d'un nombre complex"

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

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

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

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

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

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

#: ../lib/library-strings.c:28
#, fuzzy
msgid "The inverse cosecant function"
msgstr "La funció exponencial"

#: ../lib/library-strings.c:29
#, fuzzy
msgid "The inverse hyperbolic cosecant function"
msgstr "Calcula la funció cosinus hiperbòlic"

#: ../lib/library-strings.c:30
#, fuzzy
msgid "The inverse secant function"
msgstr "La funció exponencial"

#: ../lib/library-strings.c:31
#, fuzzy
msgid "The inverse hyperbolic secant function"
msgstr "Calcula la funció sinus hiperbòlic"

#: ../lib/library-strings.c:32
#, fuzzy
msgid "The arcsin (inverse sin) function"
msgstr "Aquesta és la funció del connector de proves\n"

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

#: ../lib/library-strings.c:34
#, fuzzy
msgid "The arctanh (inverse tanh) function"
msgstr "Calcula la funció tangent"

#: ../lib/library-strings.c:35
#, fuzzy
msgid "The cotangent function"
msgstr "La funció exponencial"

#: ../lib/library-strings.c:36
#, fuzzy
msgid "The hyperbolic cotangent function"
msgstr "Calcula la funció cosinus hiperbòlic"

#: ../lib/library-strings.c:37
#, fuzzy
msgid "The cosecant function"
msgstr "La funció exponencial"

#: ../lib/library-strings.c:38
#, fuzzy
msgid "The hyperbolic cosecant function"
msgstr "Calcula la funció cosinus hiperbòlic"

#: ../lib/library-strings.c:39
#, fuzzy
msgid "The secant function"
msgstr "La funció exponencial"

#: ../lib/library-strings.c:40
#, fuzzy
msgid "The hyperbolic secant function"
msgstr "Calcula la funció sinus hiperbòlic"

#: ../lib/library-strings.c:41
#, fuzzy
msgid "The hyperbolic tangent function"
msgstr "Calcula la funció sinus hiperbòlic"

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

#: ../lib/library-strings.c:43
#, fuzzy
msgid "Return the nth Bernoulli number"
msgstr "Retorna l'n-èssim nombre de Lucas"

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

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

#: ../lib/library-strings.c:46
#, fuzzy
msgid "Convert a vector of values indicating powers of b to a number"
msgstr "Converteix un vector de valors ASCII en cadena de text"

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

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

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

#: ../lib/library-strings.c:50
#, fuzzy
msgid "Return all factors of a number"
msgstr "Retorna la factorització d'un nombre com a matriu"

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

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

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

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

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

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

#: ../lib/library-strings.c:57
#, fuzzy
msgid "Tests if a rational number is a perfect power"
msgstr "Comprova si un nombre és una potència perfecta (a^b)"

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

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

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

#: ../lib/library-strings.c:61
#, fuzzy
msgid "Test if n is a strong pseudoprime to base b but not a prime"
msgstr "Executa el test fort de pseudo-primer base b en n"

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

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

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

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

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

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

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

#: ../lib/library-strings.c:69
#, fuzzy
msgid "Return all prime factors of a number"
msgstr "Retorna la factorització d'un nombre com a matriu"

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

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

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

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

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

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

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

#: ../lib/library-strings.c:77
#, fuzzy
msgid "Calculate the kth compound matrix of A"
msgstr "Calcula la funció tangent"

#: ../lib/library-strings.c:78
#, fuzzy
msgid "Delete a column of a matrix"
msgstr "Obté el nombre de columnes d'una matriu"

#: ../lib/library-strings.c:79
#, fuzzy
msgid "Delete a row of a matrix"
msgstr "Obté el nombre de files d'una matriu"

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

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

#: ../lib/library-strings.c:82
#, fuzzy
msgid "Make diagonal matrix from a vector"
msgstr "Construeix una matriu de tot zeros (o un vector fila)"

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

#: ../lib/library-strings.c:84
#, fuzzy
msgid "Calculate the product of all elements in a matrix"
msgstr "Obté el nombre d'elements d'una matriu"

#: ../lib/library-strings.c:85
#, fuzzy
msgid "Calculate the sum of all elements in a matrix"
msgstr "Obté el nombre d'elements d'una matriu"

#: ../lib/library-strings.c:86
#, fuzzy
msgid "Calculate the sum of squares of all elements in a matrix"
msgstr "Obté el nombre d'elements d'una matriu"

#: ../lib/library-strings.c:87
#, fuzzy
msgid "Get the outer product of two vectors"
msgstr "Obté el nombre de files d'una matriu"

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

#: ../lib/library-strings.c:89
#, fuzzy
msgid "Calculate sum of each row in a matrix"
msgstr "Obté el nombre de files d'una matriu"

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

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

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

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

#: ../lib/library-strings.c:94
#, fuzzy
msgid "Return column(s) and row(s) from a matrix"
msgstr "Obté el nombre de columnes d'una matriu"

#: ../lib/library-strings.c:95
#, fuzzy
msgid "Swap two rows in a matrix"
msgstr "Obté el nombre de files d'una matriu"

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

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

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

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

#: ../lib/library-strings.c:100
#, fuzzy
msgid "Get the characteristic polynomial as a vector"
msgstr "Resta dos polinomis (com a vectors)"

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

#: ../lib/library-strings.c:102
#, fuzzy
msgid "Get a basis matrix for the columnspace of a matrix"
msgstr "Obté el nombre de columnes d'una matriu"

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

#: ../lib/library-strings.c:104
#, fuzzy
msgid "Companion matrix of a polynomial (as vector)"
msgstr "Construeix una funció a partir d'un polinomi (com a vector)"

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

#: ../lib/library-strings.c:106 ../lib/library-strings.c:107
#, fuzzy
msgid "Calculate convolution of two horizontal vectors"
msgstr "%s: els arguments no són vectors horitzontals"

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

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

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

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

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

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

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

#: ../lib/library-strings.c:115
#, fuzzy
msgid "Hankel matrix"
msgstr "matriu"

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

#: ../lib/library-strings.c:117
#, fuzzy
msgid "Get the image (columnspace) of a linear transform"
msgstr "Obté el nombre de columnes d'una matriu"

#: ../lib/library-strings.c:118
#, fuzzy
msgid "Get the Inf Norm of a vector"
msgstr "Obté el nombre de columnes d'una matriu"

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

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

#: ../lib/library-strings.c:121
#, fuzzy
msgid "Is a matrix Hermitian"
msgstr "És una matriu quadrada"

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

#: ../lib/library-strings.c:123
msgid ""
"Is a matrix (or number) invertible (Integer matrix is invertible if and only "
"if it is invertible over the integers)"
msgstr ""

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

#: ../lib/library-strings.c:125
#, fuzzy
msgid "Is a matrix normal"
msgstr "És una matriu quadrada"

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

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

#: ../lib/library-strings.c:128
#, fuzzy
msgid "Is a matrix skew-Hermitian"
msgstr "És una matriu quadrada"

#: ../lib/library-strings.c:129
#, fuzzy
msgid "Is a matrix unitary"
msgstr "És una matriu quadrada"

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

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

#: ../lib/library-strings.c:132
#, fuzzy
msgid "Compute the Kronecker product of two matrices"
msgstr "Obté el nombre de files d'una matriu"

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

#: ../lib/library-strings.c:134
#, fuzzy
msgid "Get the i-j minor of a matrix"
msgstr "Obté el determinant d'una matriu"

#: ../lib/library-strings.c:135
#, fuzzy
msgid "Return the columns that are not the pivot columns of a matrix"
msgstr "Obté el nombre de columnes d'una matriu"

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

#: ../lib/library-strings.c:137
#, fuzzy
msgid "Get the nullity of a matrix"
msgstr "Obté el determinant d'una matriu"

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

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

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

#: ../lib/library-strings.c:141
#, fuzzy
msgid "Get the rank of a matrix"
msgstr "Obté el determinant d'una matriu"

#: ../lib/library-strings.c:142
#, fuzzy
msgid "Return the Rayleigh quotient of a matrix and a vector"
msgstr "Obté les entrades diagonals d'una matriu com un vector horitzontal"

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

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

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

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

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

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

#: ../lib/library-strings.c:149
#, fuzzy
msgid "Get a basis matrix for the rowspace of a matrix"
msgstr "Obté el nombre de files d'una matriu"

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

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

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

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

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

#: ../lib/library-strings.c:155
#, fuzzy
msgid "Calculate the trace of a matrix"
msgstr "Calcula la funció tangent"

#: ../lib/library-strings.c:156
#, fuzzy
msgid "Transpose of a matrix"
msgstr "Transposada"

#: ../lib/library-strings.c:157
#, fuzzy
msgid "Return the Vandermonde matrix"
msgstr "Obté el determinant d'una matriu"

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

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

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

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

#: ../lib/library-strings.c:162
#, fuzzy
msgid "Get the classical adjoint (adjugate) of a matrix"
msgstr "Obté el determinant d'una matriu"

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

#: ../lib/library-strings.c:164
#, fuzzy
msgid "Get nth Catalan number"
msgstr "El nombre e"

#: ../lib/library-strings.c:165
#, fuzzy
msgid "Double factorial: n(n-2)(n-4)..."
msgstr "Doble factorial"

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

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

#: ../lib/library-strings.c:168
#, fuzzy
msgid "Calculate nth Fibonacci number"
msgstr "Calcula el conjugat"

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

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

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

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

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

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

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

#: ../lib/library-strings.c:176
#, fuzzy
msgid "Get the Pascal's triangle as a matrix"
msgstr "Obté el determinant d'una matriu"

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

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

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

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

#: ../lib/library-strings.c:181
#, fuzzy
msgid "Calculate the nth triangular number"
msgstr "Calcula la funció tangent"

#: ../lib/library-strings.c:182
#, fuzzy
msgid "Calculate permutations"
msgstr "Calcula la funció tangent"

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

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

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

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

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

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

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

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

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

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

#: ../lib/library-strings.c:193
#, fuzzy
msgid "Calculate the left limit of a real-valued function at x0"
msgstr "Calcula la funció arctangent"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: ../lib/library-strings.c:214
#, fuzzy
msgid "argument (angle) of complex number"
msgstr "No es pot obtenir el mòdul d'un nombre complex"

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

#: ../lib/library-strings.c:216
msgid "Returns 1 if and only if all elements are zero"
msgstr ""

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

#: ../lib/library-strings.c:218
msgid "Returns 1 if and only if all elements are equal"
msgstr ""

#: ../lib/library-strings.c:219
msgid ""
"Principal branch of the Lambert W function for real values greater than or "
"equal to -1/e"
msgstr ""

#: ../lib/library-strings.c:220
msgid ""
"The minus-one branch of the Lambert W function for real values between -1/e "
"and 0"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

#: ../lib/library-strings.c:233
#, fuzzy
msgid "Find roots of a cubic polynomial (given as vector of coefficients)"
msgstr "Construeix un text a partir d'un polinomi (com a vector)"

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

#: ../lib/library-strings.c:235
msgid ""
"Use classical Euler's method to numerically solve y'=f(x,y) for initial x0,"
"y0 going to x1 with n increments, returns an n+1 by 2 matrix of values"
msgstr ""

#: ../lib/library-strings.c:236
msgid ""
"Find root of a function using the bisection method to within TOL tolerance "
"in up to N iterations.  f(a) and f(b) must have opposite signs."
msgstr ""

#: ../lib/library-strings.c:237
msgid ""
"Find root of a function using the method of false position to within TOL "
"tolerance in up to N iterations.  f(a) and f(b) must have opposite signs."
msgstr ""

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

#: ../lib/library-strings.c:239
msgid ""
"Find root of a function using the secant method to within TOL tolerance in "
"up to N iterations.  f(a) and f(b) must have opposite signs."
msgstr ""

#: ../lib/library-strings.c:240
msgid ""
"Attempt to find a zero of a functionf with derivative df and second "
"derivative ddf using Halleys's method, returning after two successive values "
"are within epsilon or after maxn tries (then returns null)"
msgstr ""

#: ../lib/library-strings.c:241
msgid ""
"Attempt to find a zero of a functionf with derivative df using Newton's "
"method, returning after two successive values are within epsilon or after "
"maxn tries (then returns null)"
msgstr ""

#: ../lib/library-strings.c:242
#, fuzzy
msgid "Find roots of a polynomial (given as vector of coefficients)"
msgstr "Construeix un text a partir d'un polinomi (com a vector)"

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

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

#: ../lib/library-strings.c:245
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 an n"
"+1 by 2 matrix of values"
msgstr ""

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

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

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

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

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

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

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

#: ../lib/library-strings.c:253
#, fuzzy
msgid ""
"Calculate the population standard deviations of rows of a matrix and return "
"a vertical vector"
msgstr "Obté les files de la matriu com un vector vertical"

#: ../lib/library-strings.c:254
#, fuzzy
msgid ""
"Calculate the standard deviations of rows of a matrix and return a vertical "
"vector"
msgstr "Obté les files de la matriu com un vector vertical"

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

#: ../lib/library-strings.c:256
msgid ""
"Attempt to find a root of a polynomial using Newton's method, returning "
"after two successive values are within epsilon or after maxn tries (then "
"returns null)"
msgstr ""

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

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

#: ../lib/library-strings.c:259
msgid ""
"For a Hilbert function that is c for degree d, given the Macaulay bound for "
"the Hilbert function of degree d+1 (The c^<d> operator from Green's proof)"
msgstr ""

#: ../lib/library-strings.c:260
msgid "The c_<d> operator from Green's proof of Macaulay's Theorem"
msgstr ""

#: ../lib/library-strings.c:261
msgid "Return the dth Macaulay representation of a positive integer c"
msgstr ""

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

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

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

#: ../src/calc.c:214
msgid "Uncategorized"
msgstr "Sense categoria"

#: ../src/calc.c:396
msgid "Trying to set an alias for an alias"
msgstr "S'intenta assignar un àlies a un àlies"

#: ../src/calc.c:975
msgid "Bad identifier for function node!"
msgstr "Identificador incorrecte per al node de funció"

#: ../src/calc.c:1025 ../src/eval.c:7211 ../src/eval.c:7418
msgid "Unexpected operator!"
msgstr "Operador inesperat"

#. FIXME:
#: ../src/calc.c:1217
msgid "Cannot currently print polynomials of more than 3 vars"
msgstr "No es poden imprimir polinomis de més de 3 variables"

#: ../src/calc.c:1309 ../src/calc.c:1385
msgid "NULL function!"
msgstr "Funció nul·la"

#. variable and reference functions should
#. never be in the etree
#: ../src/calc.c:1375
msgid "Unexpected function type!"
msgstr "Tipus de funció inesperat"

#: ../src/calc.c:1421
msgid "NULL tree!"
msgstr "Arbre nul"

#: ../src/calc.c:1511 ../src/eval.c:7717
msgid "Unexpected node!"
msgstr "Node inesperat"

#: ../src/calc.c:2025
#, c-format
msgid "File '%s' is a wrong version of GEL"
msgstr "El fitxer '%s' és una versió incorrecta del GEL"

#: ../src/calc.c:2075 ../src/calc.c:2089 ../src/calc.c:2103 ../src/calc.c:2116
#: ../src/calc.c:2132 ../src/calc.c:2147 ../src/calc.c:2162 ../src/calc.c:2175
#: ../src/calc.c:2181 ../src/calc.c:2188 ../src/calc.c:2202 ../src/calc.c:2213
#: ../src/calc.c:2220 ../src/calc.c:2227 ../src/calc.c:2234 ../src/calc.c:2241
#: ../src/calc.c:2248 ../src/calc.c:2255 ../src/calc.c:2262 ../src/calc.c:2269
#: ../src/calc.c:2276 ../src/calc.c:2283 ../src/calc.c:2290 ../src/calc.c:2297
#: ../src/calc.c:2304 ../src/calc.c:2311 ../src/calc.c:2327 ../src/calc.c:2345
#: ../src/calc.c:2355
msgid "Badly formed record"
msgstr "Registre format incorrectament"

#: ../src/calc.c:2078 ../src/calc.c:2083 ../src/calc.c:2097 ../src/calc.c:2111
#: ../src/calc.c:2126 ../src/calc.c:2142 ../src/calc.c:2156
msgid "Record out of place"
msgstr "Registre fora de lloc"

#: ../src/calc.c:2369 ../src/calc.c:2380 ../src/calc.c:2392
msgid "Missing value for function"
msgstr "Falta el valor per a la funció"

#: ../src/calc.c:2412
msgid "Extra dictionary for NULL function"
msgstr "Diccionari afegit per a la funció nul·la"

#: ../src/calc.c:2465 ../src/calc.c:3019 ../src/calc.c:3054
#, c-format
msgid "Can't open file: '%s'"
msgstr "No es pot obrir el fitxer: '%s'"

#: ../src/calc.c:2666
#, fuzzy
msgid "Load a file into the interpreter"
msgstr "Carrega un fitxer a l'intèrpret"

#: ../src/calc.c:2669
msgid "Load a plugin"
msgstr "Carrega un connector"

#: ../src/calc.c:2672
msgid "List files in the current directory"
msgstr "Llista fitxers en el directori actual"

#: ../src/calc.c:2675
msgid "Change directory"
msgstr "Canvia el directori"

#: ../src/calc.c:2678
msgid "Print current directory"
msgstr "Mostra el directori actual"

#: ../src/calc.c:2681
msgid "Print help (or help on a function/command)"
msgstr "Escriu ajuda (o ajuda relacionada amb les funcions/ordres)"

#: ../src/calc.c:2697
msgid ""
"\n"
"For a manual on using Genius and the GEL language type:\n"
msgstr ""
"\n"
"Per a més informació sobre com fer servir Genius i el llenguatge GEL "
"escriviu:\n"

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

#: ../src/calc.c:2703
msgid ""
"\n"
"For help on a specific function type:\n"
msgstr ""
"\n"
"Per obtenir ajuda relacionada amb una funció escriviu:\n"

#: ../src/calc.c:2705
msgid "  help FunctionName\n"
msgstr "  help NomFunció\n"

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

#: ../src/calc.c:2754
msgid ""
"\n"
"Undocumented:\n"
msgstr ""
"\n"
"Sense documentar:\n"

#. func
#. aliasfor
#. category
#: ../src/calc.c:2797
msgid "Not documented"
msgstr "Sense documentar"

#: ../src/calc.c:2820
#, c-format
msgid "'%s' is not documented"
msgstr "'%s' no està documentat"

#: ../src/calc.c:2822
#, fuzzy, c-format
msgid "'%s' is not documented.  Perhaps you meant %s."
msgstr "'%s' no està documentat"

#: ../src/calc.c:2832
#, c-format
msgid "%s is an alias for %s\n"
msgstr "%s és un àlies per a %s\n"

#: ../src/calc.c:2854
#, fuzzy
msgid "Parameter: "
msgstr "Paràmetres"

#: ../src/calc.c:2881
msgid "Aliases:"
msgstr "Àlies:"

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

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

#: ../src/calc.c:3100 ../src/calc.c:3111
#, c-format
msgid "Can't expand '%s'"
msgstr "No es pot expandir '%s'"

#: ../src/calc.c:3181
#, c-format
msgid "Cannot open plugin '%s'!"
msgstr "No es pot obrir el connector '%s'"

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

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

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

#: ../src/calc.c:3412
msgid "ERROR: Probably corrupt stack!"
msgstr "S'ha produït un error: probablement, la pila s'ha corromput"

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

#: ../src/calc.c:3448
msgid "ERROR: Can't execute more things at once!"
msgstr "S'ha produït un error: no es pot executar més d'una cosa a la vegada"

#: ../src/calc.c:3554
#, c-format
msgid "ERROR: %s before newline"
msgstr "S'ha produït un error: %s abans d'una nova línia"

#: ../src/calc.c:3556
#, c-format
msgid "ERROR: %s at end of input"
msgstr "S'ha produït un error: %s al final de l'entrada"

#: ../src/calc.c:3563
#, c-format
msgid "ERROR: %s before '%s'"
msgstr "S'ha produït un error: %s abans de '%s'"

#: ../src/calc.h:32
msgid "Copyright (C) 1997-2014 Jiří (George) Lebl"
msgstr ""

#: ../src/compil.c:545 ../src/compil.c:554
msgid "Bad tree record when decompiling"
msgstr "Registre de l'arbre incorrecte quan s'estava descompilant"

#: ../src/eval.c:1561 ../src/eval.c:1618 ../src/eval.c:1633
#, fuzzy
msgid "Cannot compare non value or bool only matrices"
msgstr "No es poden comparar matrius que no siguin exclusivament amb valor"

#. also on rationals but as integers
#: ../src/eval.c:1689 ../src/eval.c:1735
msgid "Modulo arithmetic only works on integers"
msgstr "L'operació aritmètica mòdul només funciona amb enters"

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

#: ../src/eval.c:2037
#, fuzzy
msgid "Can't add/subtract two matrices of different sizes"
msgstr "No es poden sumar/restar dues matrius de mides diferents"

#: ../src/eval.c:2039
#, fuzzy
msgid ""
"Can't do element by element operations on two matrices of different sizes"
msgstr ""
"No es poden realitzar operacions d'element a element en dues matrius de "
"mides diferents"

#: ../src/eval.c:2105
#, fuzzy
msgid "Can't multiply matrices of wrong sizes"
msgstr "No es poden multiplicar matrius que no tinguin mides adecuades"

#: ../src/eval.c:2156
msgid "Powers are defined on (square matrix)^(integer) only"
msgstr "Les potències es defineixen només com a (matriu quadrada)^(enter)"

#: ../src/eval.c:2162
msgid "Powers on matrices in modulo mode are defined on integer matrices only"
msgstr ""
"Potències en matrius en el mode de mòdul només es defineixen sobre matrius "
"d'enters"

#: ../src/eval.c:2170
msgid "Exponent too large"
msgstr "Exponent massa gran"

#: ../src/eval.c:2197 ../src/eval.c:2312 ../src/eval.c:2378
msgid "Matrix appears singular and can't be inverted"
msgstr "Sembla que la matriu és singular i no es pot invertir"

#: ../src/eval.c:2289
msgid "Can't divide matrices of different sizes or non-square matrices"
msgstr ""
"No es poden dividir matrius de mides diferents o matrius que no siguin "
"quadrades"

#: ../src/eval.c:2360
msgid "Can't divide by a non-square matrix"
msgstr "No es pot dividir per una matriu que no sigui quadrada"

#: ../src/eval.c:2776 ../src/eval.c:2803 ../src/eval.c:2824 ../src/eval.c:2848
#: ../src/eval.c:2896
msgid "Operations on functions with variable argument list not supported"
msgstr ""
"No es permeten les operacions en funcions amb una llista d'arguments variable"

#: ../src/eval.c:2781
msgid ""
"Operations on functions with different number of arguments not supported"
msgstr ""
"No se suporten operacions en funcions amb un nombre d'arguments diferent"

#: ../src/eval.c:2901
msgid "Function creation with wrong number of arguments"
msgstr "La creació de la funció té un nombre incorrecte d'arguments"

#: ../src/eval.c:3483 ../src/eval.c:4911
msgid "Unevaluatable function type encountered!"
msgstr "S'ha trobat un tipus de funció que no es pot avaluar"

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

#: ../src/eval.c:3541
msgid ""
"Variable 'i' used uninitialized.  Perhaps you meant to write '1i' for the "
"imaginary number (square root of -1)."
msgstr ""
"La variable 'i' s'ha usat sense inicialitzar. Potser volíeu escriure '1i' "
"per representar el nombre imaginari (el nombre que elevat al quadrat val -1)."

#: ../src/eval.c:3547 ../src/eval.c:3580 ../src/eval.c:7535
#, fuzzy, c-format
msgid "Variable '%s' used uninitialized, perhaps you meant %s."
msgstr "S'ha fet servir la variable '%s' sense inicialitzar"

#: ../src/eval.c:3554 ../src/eval.c:3587 ../src/eval.c:4643 ../src/eval.c:7542
#, c-format
msgid "Variable '%s' used uninitialized"
msgstr "S'ha fet servir la variable '%s' sense inicialitzar"

#: ../src/eval.c:3595 ../src/eval.c:4689
#, c-format
msgid ""
"Call of '%s' with the wrong number of arguments!\n"
"(should be %d)"
msgstr ""
"La crida a '%s' té un nombre equivocat d'arguments\n"
"(hauria de ser %d)"

#: ../src/eval.c:3598
#, c-format
msgid "Trying to dereference '%s' which is not a reference!\n"
msgstr ""
"S'ha intentat desreferenciar '%s', però no es tracta d'una referència\n"

#: ../src/eval.c:3603
msgid "NULL reference encountered!"
msgstr "S'ha trobat una referència nul·la"

#: ../src/eval.c:3731
#, fuzzy
msgid "Cannot compare matrices"
msgstr "No es poden comparar matrius"

#: ../src/eval.c:3773
msgid "Primitives must get numeric/matrix/string arguments"
msgstr "Les primitives han d'obtenir arguments de tipus numèric/matriu/text"

#: ../src/eval.c:3864
msgid "Bad argument to modular operation"
msgstr "Argument incorrecte per a les operacions modulars"

#: ../src/eval.c:4617
#, fuzzy, c-format
msgid "Function '%s' used uninitialized, perhaps you meant %s."
msgstr "S'ha fet servir la funció '%s' sense inicialitzar"

#: ../src/eval.c:4624
#, c-format
msgid "Function '%s' used uninitialized"
msgstr "S'ha fet servir la funció '%s' sense inicialitzar"

#: ../src/eval.c:4652
#, c-format
msgid "Can't dereference '%s'!"
msgstr "No es pot desreferenciar '%s'"

#: ../src/eval.c:4660
msgid "Can't call a non-function!"
msgstr "No es pot fer una crida a quelcom que no és una funció"

#: ../src/eval.c:4694
#, c-format
msgid ""
"Call of '%s' with the wrong number of arguments!\n"
"(should be greater than %d)"
msgstr ""
"La crida a '%s' té un nombre equivocat d'arguments.\n"
"(hauria de ser més gran que %d)"

#: ../src/eval.c:4733
#, c-format
msgid "Referencing an undefined variable %s!"
msgstr "Es referencia una variable %s no definida"

#: ../src/eval.c:4887
msgid "Reference function with arguments encountered!"
msgstr "S'ha trobat una funció de referència amb arguments"

#: ../src/eval.c:4892
msgid "Unnamed reference function encountered!"
msgstr "S'ha trobat una funció de referència sense nom"

#: ../src/eval.c:5016
msgid "Bad type for 'for/sum/prod' loop!"
msgstr "Tipus incorrecte per al bucle 'for/sum/prod'"

#: ../src/eval.c:5021
msgid "'for/sum/prod' loop increment can't be 0"
msgstr "l'increment en un bucle 'for/sum/prod' no pot ser 0"

#: ../src/eval.c:5147
msgid "Bad type for 'for in' loop!"
msgstr "Tipus incorrecte per al bucle 'for in'"

#: ../src/eval.c:5312 ../src/eval.c:5345
msgid "Continue or break outside a loop, assuming \"return null\""
msgstr "Continua o surt fora del bucle, assumint \"return null\""

#: ../src/eval.c:5406
msgid "Wrong argument type as matrix index"
msgstr "Tipus d'argument erroni com a un índex de matriu"

#: ../src/eval.c:5416
msgid "Matrix index too large"
msgstr "L'índex de la matriu és massa gran"

#: ../src/eval.c:5419
msgid "Matrix index less than 1"
msgstr "L'índex de la matriu és inferior a 1"

#: ../src/eval.c:5442 ../src/eval.c:5457
msgid "Matrix index out of range"
msgstr "L'índex de la matriu és fora de rang"

#: ../src/eval.c:5506 ../src/eval.c:5574 ../src/eval.c:5732 ../src/eval.c:5773
#: ../src/eval.c:5896 ../src/eval.c:5936 ../src/eval.c:6373
#, c-format
msgid "Trying to set a protected id '%s'"
msgstr "S'està intentant assignar un identificador protegit '%s'"

#: ../src/eval.c:5531 ../src/eval.c:5569
msgid "Indexed Lvalue not user function"
msgstr "El valor esquerre indexat no és una funció d'usuari"

#: ../src/eval.c:5553 ../src/eval.c:5757 ../src/eval.c:5920
msgid "Dereference of non-identifier!"
msgstr "Desreferenciament de quelcom que no és un identificador"

#: ../src/eval.c:5559 ../src/eval.c:5763 ../src/eval.c:5926
msgid "Dereference of undefined variable!"
msgstr "Desreferenciament d'una variable no definida"

#: ../src/eval.c:5563 ../src/eval.c:5767 ../src/eval.c:5930
msgid "Dereference of non-reference!"
msgstr "Desreferenciament de quelcom que no és un identificador"

#: ../src/eval.c:5591
msgid "Indexed Lvalue not an identifier or a dereference"
msgstr "El valor esquerre indexat no és un identificador ni un desreferenciament"

#: ../src/eval.c:5645 ../src/eval.c:5700 ../src/eval.c:5877 ../src/eval.c:6042
#: ../src/eval.c:6079 ../src/eval.c:6124 ../src/eval.c:6527 ../src/eval.c:6652
msgid "Matrix index not an integer or a vector"
msgstr "L'índex de la matriu no és un enter ni un vector"

#: ../src/eval.c:5689 ../src/eval.c:5831 ../src/eval.c:5840
msgid "Wrong matrix dimensions when setting"
msgstr "S'està configurant una matriu amb mides incorrectes"

#: ../src/eval.c:5720 ../src/eval.c:5972 ../src/eval.c:6340 ../src/eval.c:6347
msgid "Lvalue not an identifier/dereference/matrix location!"
msgstr ""
"El valor esquerre no és la ubicació d'un identificador/desreferenciament/matriu"

#: ../src/eval.c:5744 ../src/eval.c:5785
msgid "Referencing an undefined variable!"
msgstr "S'està referenciant una variable indefinida"

#: ../src/eval.c:5891
#, c-format
msgid ""
"Increment/Swapwith does not work on parameters (trying to increment '%s')"
msgstr ""

#: ../src/eval.c:5960
msgid "Increment not a value!"
msgstr ""

#: ../src/eval.c:5984
#, fuzzy, c-format
msgid "Trying to increment non-value id '%s'"
msgstr "S'està intentant assignar un identificador protegit '%s'"

#: ../src/eval.c:6145 ../src/eval.c:6154
msgid "Can only swap user variables"
msgstr ""

#: ../src/eval.c:6194 ../src/eval.c:6229 ../src/eval.c:6260 ../src/eval.c:6276
#: ../src/eval.c:6294 ../src/eval.c:6310
#, fuzzy
msgid "Cannot swap matrix regions"
msgstr "No es poden comparar matrius"

#: ../src/eval.c:6368
msgid "Parameters can only be created in the global context"
msgstr "Els paràmetres només poden ser creats en el context global"

#: ../src/eval.c:6474 ../src/eval.c:6519 ../src/eval.c:6610
#, fuzzy
msgid "Index works only on matrices"
msgstr "Els índexs només funcionen en matrius"

#: ../src/eval.c:6507
msgid "Vector index not an integer or a vector"
msgstr "L'índex de vector no és un enter ni un vector"

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

#: ../src/eval.c:6676
msgid "matrix"
msgstr "matriu"

#: ../src/eval.c:6677
msgid "string"
msgstr "cadena de text"

#: ../src/eval.c:6678
msgid "function"
msgstr "funció"

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

#: ../src/eval.c:6680
#, fuzzy
msgid "polynomial"
msgstr "Polinomis"

#: ../src/eval.c:6681
msgid "boolean"
msgstr "booleà"

#: ../src/eval.c:6704
msgid "Addition"
msgstr "Suma"

#: ../src/eval.c:6705
#, fuzzy
msgid "Element by element addition"
msgstr "Divisió d'element per element"

#: ../src/eval.c:6706
msgid "Subtraction"
msgstr "Resta"

#: ../src/eval.c:6707
#, fuzzy
msgid "Element by element subtraction"
msgstr "Multiplicació d'element per element"

#: ../src/eval.c:6708
msgid "Multiplication"
msgstr "Multiplicació"

#: ../src/eval.c:6709
msgid "Element by element multiplication"
msgstr "Multiplicació d'element per element"

#: ../src/eval.c:6710
msgid "Division"
msgstr "Divisió"

#: ../src/eval.c:6711
msgid "Element by element division"
msgstr "Divisió d'element per element"

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

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

#: ../src/eval.c:6714
msgid "Modulo"
msgstr "Mòdul"

#: ../src/eval.c:6715
msgid "Element by element modulo"
msgstr "Mòdul element per element"

#: ../src/eval.c:6716
msgid "Negation"
msgstr "Negació"

#: ../src/eval.c:6717
msgid "Power"
msgstr "Potència"

#: ../src/eval.c:6718
msgid "Element by element power"
msgstr "Potència element per element"

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

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

#: ../src/eval.c:6721
msgid "Transpose"
msgstr "Transposada"

# Pot ser el nom d'una funció de línia d'ordres
#: ../src/eval.c:6722
msgid "ConjugateTranspose"
msgstr "ConjugateTranspose"

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

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

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

#: ../src/eval.c:6745
#, c-format
msgid "Bad types for '%s'"
msgstr "Tipus incorrectes per a '%s'"

#: ../src/eval.c:6756
#, c-format
msgid "%s not defined on <%s> and <%s>"
msgstr "%s no definit a <%s> i <%s>"

#: ../src/eval.c:6775
#, c-format
msgid "Bad type for '%s'"
msgstr "Tipus incorrecte per a '%s'"

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

#: ../src/eval.c:6805 ../src/eval.c:6822
msgid "Vector building only works on numbers"
msgstr "La construcció de vectors només funciona amb nombres"

#. FIXME: perhaps we should just return null like octave?
#: ../src/eval.c:6815
msgid "Impossible arguments to vector building operator"
msgstr "Arguments impossibles per a l'operació de construcció de vectors"

#: ../src/funclib.c:124
#, c-format
msgid "%s: argument too large"
msgstr "%s l'argument és massa gran"

#: ../src/funclib.c:151
#, fuzzy, c-format
msgid "Cannot parse version string: %s"
msgstr "No es poden comparar matrius que no siguin exclusivament amb valor"

#: ../src/funclib.c:180 ../src/gnome-genius.c:1982
#, fuzzy, 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"
"    Això és programari lliure; podeu redistribuir-lo i/o modificar-lo     "
"sota els termes de la Llicència Pública General GNU tal com ha estat     "
"publicada per la Free Software Foundation; bé sota la versió 2 de la     "
"Llicència o bé (si ho preferiu) sota qualsevol versió posterior. \n"
" \n"
"    Aquest programa es distribueix amb l'expectativa de que serà útil,     "
"però SENSE CAP GARANTIA; ni tan sols la garantia implícita de     "
"COMERCIABILITAT o ADEQUACIÓ PER UN PROPÒSIT PARTICULAR.  Vegeu la     "
"Llicència Pública General GNU per obtenir-ne més detalls. \n"
" \n"
"    Hauríeu d'haver rebut una còpia de la Llicència Pública General GNU     "
"juntament amb aquest programa; en cas contrari, escriviu a la Free     "
"Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,     MA  "
"02111, USA.\n"

#: ../src/funclib.c:274
#, fuzzy, c-format
msgid "%s: trying to undefine a protected id!"
msgstr "%s: s'intenta assignar un identificador protegit"

#: ../src/funclib.c:547 ../src/funclib.c:585 ../src/funclib.c:647
#, c-format
msgid "%s: trying to set a protected id!"
msgstr "%s: s'intenta assignar un identificador protegit"

#. FIXME: fix this, this should just work too
#: ../src/funclib.c:553 ../src/funclib.c:591 ../src/funclib.c:653
#, c-format
msgid "%s: trying to set a parameter, use the equals sign"
msgstr "%s: s'intenta definir un paràmetre, feu servir el signe igual"

#: ../src/funclib.c:705 ../src/gnome-genius.c:1180
#, fuzzy
msgid ""
"Global variables:\n"
"\n"
msgstr "Defineix una variable global"

#: ../src/funclib.c:728 ../src/gnome-genius.c:1213
#, fuzzy
msgid ""
"\n"
"Function call stack:\n"
msgstr "Dibuix de funció lineal"

#: ../src/funclib.c:730 ../src/funclib.c:770 ../src/gnome-genius.c:1215
#: ../src/gnome-genius.c:1272
msgid ""
"(depth of context in parentheses)\n"
"\n"
msgstr ""

#: ../src/funclib.c:768 ../src/gnome-genius.c:1270
#, fuzzy
msgid ""
"\n"
"Local variables:\n"
msgstr "Defineix una variable global"

#: ../src/funclib.c:799
#, fuzzy, c-format
msgid "%s: Argument number %d not a string or identifier"
msgstr "%s: el nombre d'arguments %d no és un enter"

#: ../src/funclib.c:808
#, fuzzy, c-format
msgid "%s undefined\n"
msgstr "%s: funció no definida"

#: ../src/funclib.c:831 ../src/funclib.c:924
#, c-format
msgid "%s: Too many arguments, should be at most %d"
msgstr "%s: massa arguments, com a màxim poden haver-hi %d"

#: ../src/funclib.c:1072
#, fuzzy
msgid "Cannot apply function to two differently sized matrices"
msgstr "No es pot aplicar la funció a dos matrius de mides diferents"

#: ../src/funclib.c:1760 ../src/funclib.c:1797 ../src/funclib.c:1834
#: ../src/funclib.c:1871 ../src/funclib.c:1913 ../src/funclib.c:1950
#: ../src/funclib.c:1992 ../src/funclib.c:2039
#, c-format
msgid "%s: Not implemented (yet) for complex values"
msgstr ""

#: ../src/funclib.c:1955 ../src/funclib.c:1997 ../src/funclib.c:2044
#, c-format
msgid ""
"%s: Bessel functions of second kind not defined for nonpositive real numbers"
msgstr ""

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

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

#: ../src/funclib.c:2538
#, c-format
msgid "%s: matrix argument is not square"
msgstr "%s: la matriu d'argument no és quadrada"

#: ../src/funclib.c:2679 ../src/funclib.c:2779
#, c-format
msgid "%s: matrix argument must be integer only"
msgstr "%s: la matriu d'argument només pot contenir enters"

#: ../src/funclib.c:2701 ../src/funclib.c:2801
#, c-format
msgid "%s: argument must be an integer"
msgstr "%s: l'argument ha de ser un enter"

#: ../src/funclib.c:2885 ../src/funclib.c:4762 ../src/funclib.c:4791
#: ../src/funclib.c:5043 ../src/mpwrap.c:3790 ../src/mpwrap.c:3809
#: ../src/mpwrap.c:3866 ../src/mpwrap.c:3895 ../src/mpwrap.c:3912
#: ../src/mpwrap.c:3961
msgid "Division by zero!"
msgstr "Divisió entre zero"

#: ../src/funclib.c:3067 ../src/funclib.c:3164
#, c-format
msgid "%s: matrix argument must be value only"
msgstr "%s: l'argument matriu només pot contenir valors"

#: ../src/funclib.c:3088 ../src/funclib.c:3185
#, fuzzy, c-format
#| msgid "Can't compare complex numbers"
msgid "%s: Cannot compare complex numbers"
msgstr "No es poden comparar nombres complexos"

#: ../src/funclib.c:3098 ../src/funclib.c:3194
#, fuzzy, c-format
#| msgid "%s: argument number %d not a number"
msgid "%s: Input not a number of matrix of numbers."
msgstr "%s: l'argument número %d no és un nombre"

#: ../src/funclib.c:3432 ../src/funclib.c:3490 ../src/funclib.c:5028
#: ../src/funclib.c:5322 ../src/graphing.c:10150
#, c-format
msgid "%s: too many arguments"
msgstr "%s: massa arguments"

#: ../src/funclib.c:3740
#, c-format
msgid "%s: vector argument not value only"
msgstr "%s: els argument dels vectors no poden ser valors"

#: ../src/funclib.c:3751 ../src/funclib.c:3790
#, c-format
msgid "%s: argument can't be negative or 0"
msgstr "%s: l'argument no pot ser negatiu ni 0"

#: ../src/funclib.c:3759 ../src/funclib.c:3795
#, c-format
msgid "%s: vector argument has too large entries"
msgstr "%s: els arguments del vector tenen entrades massa grans"

#: ../src/funclib.c:3837
#, fuzzy, c-format
msgid "%s: arguments must be vectors of equal size"
msgstr "%s: l'argument ha de ser més gran que 2"

#: ../src/funclib.c:4329 ../src/funclib.c:4335
#, c-format
msgid "%s: %s not a reference"
msgstr "%s: %s no és una referència"

#: ../src/funclib.c:4374
#, c-format
msgid "%s: matrices not of the same height"
msgstr "%s: les matrius no tenen la mateixa alçada"

#: ../src/funclib.c:4379 ../src/funclib.c:5022
msgid "third argument"
msgstr "tercer argument"

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

#: ../src/funclib.c:4659
#, c-format
msgid "%s: argument must be greater than 2"
msgstr "%s: l'argument ha de ser més gran que 2"

#: ../src/funclib.c:4847
#, c-format
msgid "%s: arguments not horizontal vectors"
msgstr "%s: els arguments no són vectors horitzontals"

#: ../src/funclib.c:4856
#, c-format
msgid "%s: arguments not numeric only vectors"
msgstr "%s: els arguments no són vectors de només xifres"

#: ../src/funclib.c:5240
#, fuzzy, c-format
msgid "%s: argument 1 must be a quadratic polynomial"
msgstr "%s: l'argument ha de ser un enter"

#: ../src/funclib.c:5551 ../src/funclib.c:5640 ../src/funclib.c:5901
#: ../src/funclib.c:5908 ../src/funclib.c:5963 ../src/funclib.c:5970
#: ../src/funclib.c:6041 ../src/funclib.c:6055
#, c-format
msgid "%s: value out of range"
msgstr "%s: valor fora de rang"

#: ../src/funclib.c:6264
#, c-format
msgid "%s: undefined function"
msgstr "%s: funció no definida"

#: ../src/funclib.c:6270
#, c-format
msgid "%s: flags argument must be a string"
msgstr "%s: els arguments modificadors han de ser de text"

#: ../src/funclib.c:6398 ../src/symbolic.c:734
#, fuzzy, c-format
msgid "%s: argument not a function of one variable"
msgstr "%s: l'argument no és una funció"

#: ../src/funclib.c:6610 ../src/funclib.c:6645 ../src/funclib.c:6890
#, c-format
msgid "%s: argument should be between %d and %d"
msgstr "%s: l'argument ha d'estar entre %d i %d"

#: ../src/funclib.c:6798
msgid "OutputStyle must be one of normal, troff, latex or mathml"
msgstr "OutputStyle ha de ser normal, troff, latex o mathml"

#: ../src/funclib.c:6838
#, c-format
msgid "%s: argument should be larger or equal to 0"
msgstr "%s: l'argument ha de ser més gran o igual que 0"

#: ../src/funclib.c:6951
msgid "Basic"
msgstr "Bàsic"

#. internal
#: ../src/funclib.c:6952
msgid "Parameters"
msgstr "Paràmetres"

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

#. internal
#: ../src/funclib.c:6954
msgid "Numeric"
msgstr "Numèric"

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

#. internal
#: ../src/funclib.c:6956
msgid "Number Theory"
msgstr "Teoria de nombres"

#. internal
#: ../src/funclib.c:6957
msgid "Matrix Manipulation"
msgstr "Manipulació de matrius"

#. internal
#: ../src/funclib.c:6958
msgid "Linear Algebra"
msgstr "Àlgebra lineal"

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

#. internal
#: ../src/funclib.c:6960
msgid "Calculus"
msgstr "Càlcul"

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

#. internal
#: ../src/funclib.c:6962
msgid "Equation Solving"
msgstr "Resolució d'equacions"

#. internal
#: ../src/funclib.c:6963
msgid "Statistics"
msgstr "Estadístiques"

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

#. internal
#: ../src/funclib.c:6965
msgid "Set Theory"
msgstr "Teoria de conjunts"

#. internal
#: ../src/funclib.c:6966
#, fuzzy
msgid "Commutative Algebra"
msgstr "Àlgebra lineal"

#. internal
#: ../src/funclib.c:6967
msgid "Miscellaneous"
msgstr "Miscel·lània"

#. internal
#: ../src/funclib.c:6969
msgid "Displays the user manual"
msgstr "Mostra el manual d'usuari"

#: ../src/funclib.c:6970
msgid "Gives the warranty information"
msgstr "Dóna la informació quant a la garantia"

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

#: ../src/funclib.c:6972
msgid "Exits the program"
msgstr "Surt del programa"

#: ../src/funclib.c:6974
msgid "Prints a string to the error stream"
msgstr "Escriu una cadena de text al canal d'error"

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

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

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

#: ../src/funclib.c:6981
#, fuzzy
msgid "Unix time in seconds as a floating point number"
msgstr "Comprova si l'argument és un nombre en coma flotant (no complex)"

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

#: ../src/funclib.c:6991
msgid "Prints an expression"
msgstr "Escriu una expressió"

#: ../src/funclib.c:6992
msgid "Changes current directory"
msgstr "Canvia el directori actual"

#: ../src/funclib.c:6993
msgid "Prints an expression without a trailing newline"
msgstr "Escriu una expressió sense un caràcter de nova línia"

#: ../src/funclib.c:6994
msgid "Display a string and an expression"
msgstr "Mostra una cadena de text i una expressió"

#: ../src/funclib.c:6995
msgid "Set a global variable"
msgstr "Defineix una variable global"

#: ../src/funclib.c:6996
msgid "Set an element in a global variable which is a matrix"
msgstr ""

#: ../src/funclib.c:6997
msgid "Set an element in a global variable which is a vector"
msgstr ""

#: ../src/funclib.c:6998
msgid "Display values of variables, or all if called without arguments"
msgstr ""

#: ../src/funclib.c:7000
msgid "Set the category and help description line for a function"
msgstr ""
"Defineix la categoria i la línia de descripció d'ajuda per a una funció"

#: ../src/funclib.c:7001
msgid "Sets up a help alias"
msgstr "Defineix un àlies d'ajuda"

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

#: ../src/funclib.c:7005
msgid ""
"Generate random float between 0 and 1, or if size given generate vector or "
"matrix of random floats"
msgstr ""

#: ../src/funclib.c:7007
msgid ""
"Generate random integer between 0 and max-1 inclusive, or if size given "
"generate vector or matrix of random integers"
msgstr ""

#: ../src/funclib.c:7010 ../src/gnome-genius.c:2525
msgid "Floating point precision"
msgstr "Precisió de coma flotant"

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

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

#: ../src/funclib.c:7016
msgid "Maximum digits to display"
msgstr "Nombre màxim de xifres que es mostraran"

#: ../src/funclib.c:7017
msgid "Maximum errors to display"
msgstr "Nombre màxim d'errors que es mostraran"

#: ../src/funclib.c:7018
#, fuzzy
msgid "Output style: normal, latex, mathml or troff"
msgstr "Estil de sortida: normal, latex o troff"

#: ../src/funclib.c:7019
msgid "Integer output base"
msgstr "Base de l'escriptura d'enters"

#: ../src/funclib.c:7020
msgid "If true, mixed fractions are printed"
msgstr "Si és cert, s'escriuen fraccions mesclades"

#: ../src/funclib.c:7021
msgid "Print full expressions, even if more than a line"
msgstr ""
"Imprimeix expressions completes, fins i tot si són majors que una línia"

#: ../src/funclib.c:7022
msgid "Convert all results to floats before printing"
msgstr "Converteix tots els resultats a coma flotant abans d'escriure"

#: ../src/funclib.c:7023
msgid "Use scientific notation"
msgstr "Fes servir notació científica"

# Com IsPrime no torna a aparéixer, no ho tradueixo
#: ../src/funclib.c:7025
msgid ""
"Number of extra Miller-Rabin tests to run on a number before declaring it a "
"prime in IsPrime"
msgstr ""
"Quantes proves extra de Miller-Rabin s'han de fer a un nombre abans de "
"considerar que és primer a IsPrime"

#: ../src/funclib.c:7031
msgid "Expands a matrix just like we do on unquoted matrix input"
msgstr ""
"Expandeix una matriu tal com ho fem amb matrius d'entrada sense cometes"

#: ../src/funclib.c:7032
msgid "Gets the rows of a matrix as a vertical vector"
msgstr "Obté les files de la matriu com un vector vertical"

#: ../src/funclib.c:7033
msgid "Gets the columns of a matrix as a horizontal vector"
msgstr "Obté les columnes d'una matriu com un vector horitzontal"

#: ../src/funclib.c:7034
#, fuzzy
msgid "Gets the diagonal entries of a matrix as a column vector"
msgstr "Obté les entrades diagonals d'una matriu com un vector horitzontal"

#: ../src/funclib.c:7035
#, fuzzy
msgid "Count the number of zero columns in a matrix"
msgstr "Obté el nombre de columnes d'una matriu"

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

#: ../src/funclib.c:7037
#, fuzzy
msgid "Return a vector with the indices of the nonzero columns in a matrix"
msgstr "Obté el nombre de columnes d'una matriu"

#: ../src/funclib.c:7038
msgid "Return a vector with the indices of the nonzero elements in a vector"
msgstr ""

#: ../src/funclib.c:7040
msgid "Calculates the conjugate"
msgstr "Calcula el conjugat"

#: ../src/funclib.c:7045
msgid "Calculates the sine function"
msgstr "Calcula la funció sinus"

#: ../src/funclib.c:7048
msgid "Calculates the cosine function"
msgstr "Calcula la funció cosinus"

#: ../src/funclib.c:7051
msgid "Calculates the hyperbolic sine function"
msgstr "Calcula la funció sinus hiperbòlic"

#: ../src/funclib.c:7054
msgid "Calculates the hyperbolic cosine function"
msgstr "Calcula la funció cosinus hiperbòlic"

#: ../src/funclib.c:7057
msgid "Calculates the tan function"
msgstr "Calcula la funció tangent"

#: ../src/funclib.c:7060
msgid "Calculates the arctan function"
msgstr "Calcula la funció arctangent"

#: ../src/funclib.c:7065
#, fuzzy
msgid "Calculates the sinc function, that is sin(x)/x"
msgstr "Calcula la funció sinus"

#: ../src/funclib.c:7069
#, fuzzy
msgid "Calculates the arctan2 function (arctan(y/x) if x>0)"
msgstr "Calcula la funció arctangent"

#: ../src/funclib.c:7073
msgid "The number pi"
msgstr "El nombre pi"

#: ../src/funclib.c:7075
msgid "The natural number e"
msgstr "El nombre e"

#: ../src/funclib.c:7077
msgid "The Golden Ratio"
msgstr "La relació àuria"

#: ../src/funclib.c:7079
msgid "Free fall acceleration"
msgstr "Acceleració en caiguda lliure"

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

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

#: ../src/funclib.c:7088
msgid "The error function, 2/sqrt(2) * int_0^x e^(-t^2) dt"
msgstr ""

#: ../src/funclib.c:7091
msgid "The Riemann zeta function (only real values implemented)"
msgstr ""

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

#: ../src/funclib.c:7100
msgid "The Bessel function of first kind of order 0"
msgstr ""

#: ../src/funclib.c:7103
msgid "The Bessel function of first kind of order 1"
msgstr ""

#: ../src/funclib.c:7106
msgid "The Bessel function of first kind of order n"
msgstr ""

#: ../src/funclib.c:7109
msgid "The Bessel function of second kind of order 0"
msgstr ""

#: ../src/funclib.c:7112
msgid "The Bessel function of second kind of order 1"
msgstr ""

#: ../src/funclib.c:7115
msgid "The Bessel function of second kind of integer order n"
msgstr ""

#: ../src/funclib.c:7118
msgid "The square root"
msgstr "L'arrel quadrada"

#: ../src/funclib.c:7122
msgid "The exponential function"
msgstr "La funció exponencial"

#: ../src/funclib.c:7125
msgid "The natural logarithm"
msgstr "El logaritme natural"

#: ../src/funclib.c:7128
msgid "Logarithm of x base 2"
msgstr "Logaritme de x en base 2"

#: ../src/funclib.c:7133
msgid "Logarithm of x base 10"
msgstr "Logaritme de x en base 10"

#: ../src/funclib.c:7136
msgid "Round a number"
msgstr "Arrodoneix un nombre"

# ???????????????????
#: ../src/funclib.c:7140
msgid "Get the highest integer less than or equal to n"
msgstr "Obté l'enter més gran menor o igual que n"

#: ../src/funclib.c:7144
msgid "Get the lowest integer more than or equal to n"
msgstr "Obté l'enter més petit més gran o igual que n"

#: ../src/funclib.c:7148
msgid "Truncate number to an integer (return the integer part)"
msgstr "Trunca un nombre a enter (retorna la part entera)"

#: ../src/funclib.c:7153
msgid "Make number a float"
msgstr "Converteix el nombre en coma flotant"

#: ../src/funclib.c:7156
msgid "Get the numerator of a rational number"
msgstr "Obté el numerador d'un nombre racional"

#: ../src/funclib.c:7158
msgid "Get the denominator of a rational number"
msgstr "Obté el denominador d'un nombre racional"

#: ../src/funclib.c:7161
msgid "Greatest common divisor"
msgstr "Màxim comú divisor"

#: ../src/funclib.c:7163
msgid "Least common multiplier"
msgstr "Mínim comú múltiple"

#: ../src/funclib.c:7165
msgid "Check a number for being a perfect square"
msgstr "Comprova si un nombre és un quadrat perfecte"

#: ../src/funclib.c:7166
msgid "Check a number for being any perfect power (a^b)"
msgstr "Comprova si un nombre és una potència perfecta (a^b)"

#: ../src/funclib.c:7167
#, fuzzy
msgid "Return the nth prime (up to a limit)"
msgstr "Retorna el nombre primer n-èssim (fins a un límit)"

#: ../src/funclib.c:7169
msgid "Tests if an integer is even"
msgstr "Prova si un enter és parell"

#: ../src/funclib.c:7170
msgid "Tests if an integer is odd"
msgstr "Prova si un enter és senar"

#: ../src/funclib.c:7172
msgid "Returns the least prime greater than n (if n is positive)"
msgstr "Retorna el primer nombre primer més gran que n (si n és positiu)"

#: ../src/funclib.c:7173
#, fuzzy
msgid "Returns the nth Lucas number"
msgstr "Retorna l'n-èssim nombre de Lucas"

#: ../src/funclib.c:7174
msgid "Returns inverse of n mod m"
msgstr "Retorna l'invers de n mod m"

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

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

#: ../src/funclib.c:7177
msgid ""
"Tests primality of integers, for numbers greater than 25*10^9 false positive "
"is with low probability depending on IsPrimeMillerRabinReps"
msgstr ""
"Prova de primalitat d'enters. Per a nombres més grans que 25*10^9, la "
"probabilitat de trobar un fals positiu al test IsPrimeMillerRabinReps"

#: ../src/funclib.c:7178
msgid "Run the strong pseudoprime test base b on n"
msgstr "Executa el test fort de pseudo-primer base b en n"

#: ../src/funclib.c:7179
msgid ""
"Use the Miller-Rabin primality test on n, reps number of times.  The "
"probability of false positive is (1/4)^reps"
msgstr ""
"Fes servir el test de primalitat Miller-Rabin en n, reps vegades. La "
"probabilitat d'obtenir un fals positiu és (1/4)^reps"

#: ../src/funclib.c:7180
msgid ""
"Use the Miller-Rabin primality test on n with enough bases that assuming the "
"Generalized Reimann Hypothesis the result is deterministic"
msgstr ""
"Fes servir el test de primalitat en n amb suficients basses per assumir que "
"el resultat de la hipòtesi generalitzada de Reimann és determinista"

#: ../src/funclib.c:7181
msgid "Return factorization of a number as a matrix"
msgstr "Retorna la factorització d'un nombre com a matriu"

#: ../src/funclib.c:7183
msgid "Returns the maximum of arguments or matrix"
msgstr "Retorna el màxim dels arguments o la matriu"

#: ../src/funclib.c:7186
msgid "Returns the minimum of arguments or matrix"
msgstr "Retorna el mínim dels arguments o la matriu"

#: ../src/funclib.c:7190
msgid "Division w/o remainder, equivalent to floor(a/b)"
msgstr ""

#: ../src/funclib.c:7192
msgid "Calculate the Jacobi symbol (a/b) (b should be odd)"
msgstr "Calcula el símbol de Jacobi (a/b) (b ha de ser senar)"

#: ../src/funclib.c:7194
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 ""
"Calcula el símbol de Jacobi (a/b) amb l'extensió de Kronecker (a/2)=(2/a) "
"quan sigui senar, o (a/2)=0 quan sigui parell"

#: ../src/funclib.c:7196
msgid "Calculate the Legendre symbol (a/p)"
msgstr "Calcula el símbol de Legendre (a/p)"

#: ../src/funclib.c:7199
msgid "Get the real part of a complex number"
msgstr "Obté la part real d'un nombre complex"

#: ../src/funclib.c:7202
msgid "Get the imaginary part of a complex number"
msgstr "Obté la part imaginària d'un nombre complex"

#: ../src/funclib.c:7206
msgid "Make an identity matrix of a given size"
msgstr "Construeix la matriu identitat d'una mida donada"

#: ../src/funclib.c:7209
msgid "Make an matrix of all zeros (or a row vector)"
msgstr "Construeix una matriu de tot zeros (o un vector fila)"

#: ../src/funclib.c:7211
msgid "Make an matrix of all ones (or a row vector)"
msgstr "Construeix una matriu de tot uns (o un vector fila)"

#: ../src/funclib.c:7214
msgid "Get the number of rows of a matrix"
msgstr "Obté el nombre de files d'una matriu"

#: ../src/funclib.c:7215
msgid "Get the number of columns of a matrix"
msgstr "Obté el nombre de columnes d'una matriu"

#: ../src/funclib.c:7216
msgid "Is a matrix square"
msgstr "És una matriu quadrada"

#: ../src/funclib.c:7217
#, fuzzy
msgid "Is argument a horizontal or a vertical vector"
msgstr "%s: els arguments no són vectors horitzontals"

#: ../src/funclib.c:7218
#, fuzzy
msgid "Is a matrix upper triangular"
msgstr "És una matriu quadrada"

#: ../src/funclib.c:7219
#, fuzzy
msgid "Is a matrix lower triangular"
msgstr "És una matriu quadrada"

#: ../src/funclib.c:7220
#, fuzzy
msgid "Is a matrix diagonal"
msgstr "És una matriu quadrada"

#: ../src/funclib.c:7221
msgid "Get the number of elements of a matrix"
msgstr "Obté el nombre d'elements d'una matriu"

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

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

#: ../src/funclib.c:7231
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 ""
"Resol el sistema lineal Mx=V, retorna la solució V si hi ha solució única, o "
"nul en cas contrari. Opcionalment, es poden usar dos paràmetres de "
"referència extra per obtenir les M i V reduïdes."

#: ../src/funclib.c:7234
msgid "Get the determinant of a matrix"
msgstr "Obté el determinant d'una matriu"

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

#: ../src/funclib.c:7239
#, fuzzy
msgid "Get the nullspace of a matrix"
msgstr "Obté el determinant d'una matriu"

#: ../src/funclib.c:7241
msgid "Make new matrix of given size from old one"
msgstr "Construeix una nova matriu de mida donada a partir de la vella"

#: ../src/funclib.c:7242
msgid "Return the index complement of a vector of indexes"
msgstr "Retorna el complement de l'índex d'un vector d'índexs"

#: ../src/funclib.c:7243
#, fuzzy
msgid "Get the Hermitian product of two vectors"
msgstr "Obté el determinant d'una matriu"

#: ../src/funclib.c:7246
msgid "Check if a matrix is a matrix of numbers"
msgstr "Comprova si una matriu és una matriu de nombres"

#: ../src/funclib.c:7247
msgid "Check if a matrix is an integer (non-complex) matrix"
msgstr "Comprova si una matriu és una matriu d'enters (no complexos)"

#: ../src/funclib.c:7248
msgid "Check if a matrix is a rational (non-complex) matrix"
msgstr "Comprova si una matriu és una matriu de racionals (no complexos)"

#: ../src/funclib.c:7249
msgid "Check if a matrix is a real (non-complex) matrix"
msgstr "Comprova si una matriu és una matriu de reals (no complexos)"

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

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

#: ../src/funclib.c:7253
#, fuzzy
msgid "Check if a number or a matrix is all zeros"
msgstr "Comprova si una matriu és una matriu de nombres"

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

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

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

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

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

#: ../src/funclib.c:7261
msgid "Check if argument is a null"
msgstr "Comprova si l'argument és nul"

#: ../src/funclib.c:7262
msgid "Check if argument is a number"
msgstr "Comprova si l'argument és un nombre"

#: ../src/funclib.c:7263
#, fuzzy
msgid "Check if argument is a boolean (and not a number)"
msgstr "Comprova si l'argument és un nombre complex (no real)"

#: ../src/funclib.c:7264
msgid "Check if argument is a text string"
msgstr "Comprova si l'argument és una cadena de text"

#: ../src/funclib.c:7265
msgid "Check if argument is a matrix"
msgstr "Comprova si l'argument és una matriu"

#: ../src/funclib.c:7266
msgid "Check if argument is a function"
msgstr "Comprova si l'argument és una funció"

#: ../src/funclib.c:7267
#, fuzzy
msgid "Check if argument is a function or an identifier"
msgstr "Comprova si l'argument és una referència a funció"

#: ../src/funclib.c:7268
msgid "Check if argument is a function reference"
msgstr "Comprova si l'argument és una referència a funció"

#: ../src/funclib.c:7270
msgid "Check if argument is a complex (non-real) number"
msgstr "Comprova si l'argument és un nombre complex (no real)"

#: ../src/funclib.c:7271
msgid "Check if argument is a real number"
msgstr "Comprova si l'argument és un nombre real"

#: ../src/funclib.c:7272
msgid "Check if argument is an integer (non-complex)"
msgstr "Comprova si l'argument és un enter (no complex)"

#: ../src/funclib.c:7273
msgid "Check if argument is a positive real integer"
msgstr "Comprova si l'argument és un enter real positiu"

#: ../src/funclib.c:7275
#, fuzzy
msgid "Check if argument is a non-negative real integer"
msgstr "Comprova si l'argument és un enter real positiu"

#: ../src/funclib.c:7276
msgid "Check if argument is a possibly complex integer"
msgstr "Comprova si l'argument pot ser un enter complex"

#: ../src/funclib.c:7278
msgid "Check if argument is a rational number (non-complex)"
msgstr "Comprova si l'argument és un nombre racional (no complex)"

#: ../src/funclib.c:7279
msgid "Check if argument is a possibly complex rational number"
msgstr "Comprova si l'argument pot ser un nombre complex racional"

#: ../src/funclib.c:7280
msgid "Check if argument is a floating point number (non-complex)"
msgstr "Comprova si l'argument és un nombre en coma flotant (no complex)"

#: ../src/funclib.c:7282
msgid "Add two polynomials (vectors)"
msgstr "Suma dos polinomis (vectors)"

#: ../src/funclib.c:7283
msgid "Subtract two polynomials (as vectors)"
msgstr "Resta dos polinomis (com a vectors)"

#: ../src/funclib.c:7284
msgid "Multiply two polynomials (as vectors)"
msgstr "Multiplica dos polinomis (com a vectors)"

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

#: ../src/funclib.c:7286
msgid "Take polynomial (as vector) derivative"
msgstr "Obté la derivada del polinomi (com a vector)"

#: ../src/funclib.c:7287
msgid "Take second polynomial (as vector) derivative"
msgstr "Obté la segona derivada del polinomi (com a vector)"

#: ../src/funclib.c:7288
msgid "Trim zeros from a polynomial (as vector)"
msgstr "Treu fora els zeros d'un polinomi (com a vector)"

#: ../src/funclib.c:7289
msgid "Check if a vector is usable as a polynomial"
msgstr "Comprova si un vector es pot usar com a polinomi"

#: ../src/funclib.c:7290
msgid "Make string out of a polynomial (as vector)"
msgstr "Construeix un text a partir d'un polinomi (com a vector)"

#: ../src/funclib.c:7291
msgid "Make function out of a polynomial (as vector)"
msgstr "Construeix una funció a partir d'un polinomi (com a vector)"

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

#: ../src/funclib.c:7295
msgid "Get all combinations of k numbers from 1 to n as a vector of vectors"
msgstr ""
"Obté totes les combinacions de k nombres des d'1 fins n com a vector de "
"vectors"

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

#: ../src/funclib.c:7297
msgid "Get all permutations of k numbers from 1 to n as a vector of vectors"
msgstr ""
"Obté totes les permutacions de k nombres des d'1 fins n com a vector de "
"vectors"

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

#: ../src/funclib.c:7302
msgid "Convert a string to a vector of ASCII values"
msgstr "Converteix una cadena de text en un vector de valors ASCII"

#: ../src/funclib.c:7303
msgid "Convert a vector of ASCII values to a string"
msgstr "Converteix un vector de valors ASCII en cadena de text"

#: ../src/funclib.c:7305
msgid ""
"Convert a string to a vector of 0-based alphabet values (positions in the "
"alphabet string), -1's for unknown letters"
msgstr ""
"Converteix una cadena de text en un vector de valors de l'alfabet (és a dir, "
"la seva posició en l'alfabet) a partir de 0, on -1 significa que la lletra "
"és desconeguda"

#: ../src/funclib.c:7306
msgid ""
"Convert a vector of 0-based alphabet values (positions in the alphabet "
"string) to a string"
msgstr ""
"Converteix un vector de valors a partir de 0 (posicions en l'alfabet de la "
"cadena de text) en una cadena de text"

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

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

#: ../src/funclib.c:7310
msgid ""
"Set flags for a function, currently \"PropagateMod\" and \"NoModuloArguments"
"\""
msgstr ""
"Defineix els modificadors per a una funció, poden ser \"PropagateMod\" i "
"\"NoModuloArguments\""

#: ../src/funclib.c:7311
msgid "Get current modulo from the context outside the function"
msgstr "Obté el mòdul actual des del context de fora de la funció"

#: ../src/funclib.c:7312
#, fuzzy
msgid "Check if a variable or function is defined"
msgstr "Comprova si l'argument és una referència a funció"

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

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

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

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

#: ../src/funclib.c:7319
#, fuzzy
msgid "Parse a string (but do not execute)"
msgstr "Escriu una cadena de text al canal d'error"

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

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

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

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

#: ../src/funclibhelper.cP:40
#, c-format
msgid "%s: argument number %d not an integer"
msgstr "%s: el nombre d'arguments %d no és un enter"

#: ../src/funclibhelper.cP:53
#, c-format
msgid "%s: argument number %d not an integer or a matrix"
msgstr "%s: l'argument número %d no és un enter ni una matriu"

#: ../src/funclibhelper.cP:65 ../src/funclibhelper.cP:76
#, fuzzy, c-format
msgid "%s: argument number %d not a number or a matrix"
msgstr "%s: l'argument número %d no és un enter ni una matriu"

#: ../src/funclibhelper.cP:89
#, fuzzy, c-format
msgid "%s: argument number %d not a nonnegative integer"
msgstr "%s: l'argument número %d no és un enter positiu"

#: ../src/funclibhelper.cP:101
#, fuzzy, c-format
msgid "%s: argument number %d not a nonnegative number"
msgstr "%s: l'argument número %d no és un enter positiu"

#: ../src/funclibhelper.cP:115
#, c-format
msgid "%s: argument number %d not a positive integer"
msgstr "%s: l'argument número %d no és un enter positiu"

#: ../src/funclibhelper.cP:125 ../src/graphing.c:3359
#, c-format
msgid "%s: argument number %d not a number"
msgstr "%s: l'argument número %d no és un nombre"

#: ../src/funclibhelper.cP:136
#, fuzzy, c-format
msgid "%s: argument number %d not a boolean"
msgstr "%s: l'argument número %d no és un nombre"

#: ../src/funclibhelper.cP:147
#, c-format
msgid "%s: argument number %d not a real number"
msgstr "%s: l'argument número %d no és un nombre real"

#: ../src/funclibhelper.cP:157
#, c-format
msgid "%s: argument number %d not a matrix"
msgstr "%s: l'argument número %d no és una matriu"

#: ../src/funclibhelper.cP:168
#, fuzzy, c-format
msgid "%s: argument number %d not a square matrix"
msgstr "%s: l'argument número %d no és una matriu"

#: ../src/funclibhelper.cP:179
#, fuzzy, c-format
msgid "%s: argument number %d not a matrix or null node"
msgstr "%s: l'argument número %d no és una matriu"

#: ../src/funclibhelper.cP:190
#, c-format
msgid "%s: argument number %d not a value only matrix"
msgstr "%s: l'argument número %d no és una matriu exclusivament de valors"

#: ../src/funclibhelper.cP:203
#, fuzzy, c-format
msgid "%s: argument number %d not a value only vector"
msgstr "%s: l'argument número %d no és una matriu exclusivament de valors"

#: ../src/funclibhelper.cP:213 ../src/funclibhelper.cP:224
#, c-format
msgid "%s: argument number %d not a string"
msgstr "%s: l'argument número %d no és un text"

#: ../src/funclibhelper.cP:235
#, fuzzy, c-format
msgid "%s: argument number %d not a function or identifier"
msgstr "%s: el nombre d'arguments %d no és un enter"

#: ../src/genius.c:111
#, c-format
msgid "line %d: %s\n"
msgstr "línia %d: %s\n"

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

#: ../src/genius.c:157
msgid "Cannot locate the manual"
msgstr "No es pot localitzar el manual"

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

#: ../src/genius.c:268
#, fuzzy, c-format
msgid "Out of range!\n"
msgstr "%s: valor fora de rang"

#: ../src/genius.c:345 ../src/genius.lang.h:2 ../src/gnome-genius.c:846
#: ../src/gnome-genius.c:891
msgid "Genius"
msgstr "Genius"

#: ../src/genius.c:378 ../src/genius.c:387 ../src/genius.c:394
#: ../src/genius.c:403
#, fuzzy, c-format
msgid "%s should be between %d and %d, using %d"
msgstr "%s: l'argument ha d'estar entre %d i %d"

#: ../src/genius.c:422 ../src/genius.c:431
#, fuzzy, c-format
msgid "%s should be greater then or equal to %d, using %d"
msgstr "%s: l'argument ha de ser més gran o igual que 0"

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

#: ../src/genius.c:490
#, fuzzy, c-format
msgid ""
"Genius %s usage:\n"
"\n"
"genius [options] [files]\n"
"\n"
"\t--help            \tPrint this help\n"
"\t--version         \tPrint version number\n"
"\t--precision=num   \tFloating point precision [128]\n"
"\t--maxdigits=num   \tMaximum digits to display (0=no limit) [0]\n"
"\t--[no]floatresult \tAll results as floats [OFF]\n"
"\t--[no]scinot      \tResults in scientific notation [OFF]\n"
"\t--[no]fullexp     \tAlways print full expressions [OFF]\n"
"\t--maxerrors=num   \tMaximum errors to display (0=no limit) [5]\n"
"\t--[no]mixed       \tPrint fractions in mixed format\n"
"\t--intoutbase=num  \tBase to use to print out integers [10]\n"
"\t--chop=num        \tChop small numbers less than 10^-num [20]\n"
"\t--chopwhen=num    \tBut only when other numbers 10^-num or more [5]\n"
"\t--[no]readline    \tUse readline if it is available [ON]\n"
"\t--[no]compile     \tCompile everything and dump it to stdout [OFF]\n"
"\t--[no]gettext     \tDump help/error strings in fake .c file to\n"
"\t                  \tstdout (for use with gettext) [OFF]\n"
"\t--[no]quiet       \tBe quiet during non-interactive mode,\n"
"\t                  \t(always on when compiling) [OFF]\n"
"\t--exec=expr       \tExecute an expression\n"
"\n"
msgstr ""
"Ús del Genius %s:\n"
"\n"
"genius [opcions] [fitxers]\n"
"\n"
"\t--precision=num   \tPrecisió en coma flotant [256]\n"
"\t--maxdigits=num   \tNombre màxim de xifres que es mostaran (0=sense límit) "
"[0]\n"
"\t--[no]floatresult \tTots els resultats com a coma flotant [INACTIU]\n"
"\t--[no]scinot      \tResultats en notació científica [INACTIU]\n"
"\t--[no]fullexp     \tEscriu sempre expressions completes [INACTIU]\n"
"\t--maxerrors=num   \tNombre màxim d'errors que es mostraran (0=sense límit) "
"[5]\n"
"\t--[no]mixed       \tEscriu fraccions en format mesclat\n"
"\t--intoutbase=num  \tQuina base es fa servir per escriure enters [10]\n"
"\t--[no]readline    \tFer servir la biblioteca readline quan sigui "
"disponible [ACTIU]\n"
"\t--[no]compile     \tCompila tot i escriu-ho per la sortida estàndar "
"[INACTIU]\n"
"\t--[no]quiet       \tNo diguis res mentre siguis en la modalitat no "
"interactiva,\n"
"\t                  \t(activat sempre que s'està compilant) [INACTIU]\n"
"\n"

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

#: ../src/genius.c:531
#, fuzzy, c-format
#| msgid ""
#| "Genius %s\n"
#| "%s\n"
#| "This is free software with ABSOLUTELY NO WARRANTY.\n"
#| "For license details type `warranty'.\n"
#| "For help type 'manual' or 'help'.%s\n"
#| "\n"
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"
"Això és programari lliure i no té CAP GARANTIA.\n"
"Per detalls sobre la llicència, escriviu `warranty'.\n"
"Per obtenir ajut escriviu 'manual' o 'help'.%s\n"
"\n"

#: ../src/genius.c:604 ../src/gnome-genius.c:5373
msgid ""
"The only thing that interferes with my learning is my education.  -- Albert "
"Einstein"
msgstr ""
"L'única cosa que em va destorbar mentre aprenia era la meva educació. -- "
"Albert Einstein"

#: ../src/genius.c:625 ../src/genius.c:696
msgid "Can't open file"
msgstr "No es pot obrir el fitxer"

#: ../src/genius.lang.h:1
msgid "Scripts"
msgstr "Fitxers de seqüència d'ordres"

#: ../src/genius.lang.h:3
msgid "String"
msgstr "Cadena de text"

#: ../src/genius.lang.h:4
msgid "Line Comment"
msgstr "Comentari de línia"

#: ../src/genius.lang.h:5
msgid "Base-N Integers"
msgstr "Nombres enters en base n"

#: ../src/genius.lang.h:6
msgid "Decimal Integers"
msgstr "Enters decimals"

#: ../src/genius.lang.h:7
msgid "Floats"
msgstr "Coma flotant"

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

#: ../src/genius.lang.h:9
msgid "Keywords"
msgstr "Paraules reservades"

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

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

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

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

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

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

#. name, stock id, label
#: ../src/gnome-genius.c:269
msgid "_Settings"
msgstr "_Paràmetres"

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

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

#. label, accelerator
#: ../src/gnome-genius.c:273 ../src/gnome-genius.c:277
msgid "Create new program tab"
msgstr "Crea una nova pestanya de programa"

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

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

#. label, accelerator
#: ../src/gnome-genius.c:281 ../src/gnome-genius.c:285
#, fuzzy
msgid "Open a file"
msgstr "No es pot obrir el fitxer"

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

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

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

#. label, accelerator
#: ../src/gnome-genius.c:290
#, fuzzy
msgid "Save current file"
msgstr "Canvia el directori actual"

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

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

#: ../src/gnome-genius.c:297
#, fuzzy
msgid "Save _As..."
msgstr "Anomena i desa..."

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

#: ../src/gnome-genius.c:301
msgid "_Reload from Disk"
msgstr "To_rna a carregar del disc"

#: ../src/gnome-genius.c:302
msgid "Reload the selected program from disk"
msgstr "Torna a carregar el programa seleccionat del disc"

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

#: ../src/gnome-genius.c:306
msgid "Close the current file"
msgstr "Tanca el fitxer actual"

#: ../src/gnome-genius.c:309
msgid "_Load and Run..."
msgstr "_Carrega i executa..."

#: ../src/gnome-genius.c:310
msgid "Load and execute a file in genius"
msgstr "Carrega i executa un fitxer en el genius"

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

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

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

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

#: ../src/gnome-genius.c:322
msgid "_Undo"
msgstr "_Desfés"

#: ../src/gnome-genius.c:323
msgid "Undo the last action"
msgstr "Desfés l'última acció"

#: ../src/gnome-genius.c:326
msgid "_Redo"
msgstr "_Refés"

#: ../src/gnome-genius.c:327
msgid "Redo the undone action"
msgstr "Torna a fer l'acció prèviament desfeta"

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

#: ../src/gnome-genius.c:332
#, fuzzy
msgid "Cut the selection"
msgstr "Calcula la funció sinus"

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

#: ../src/gnome-genius.c:336
msgid "Copy the selection"
msgstr "Copia la selecció"

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

#: ../src/gnome-genius.c:340
msgid "Paste the clipboard"
msgstr "Enganxa el porta-retalls"

#: ../src/gnome-genius.c:343
#, fuzzy
msgid "Copy Answer As Plain Te_xt"
msgstr "Copia la respos_ta com a un text normal"

#: ../src/gnome-genius.c:344
msgid "Copy last answer into the clipboard in plain text"
msgstr "Copia la resposta anterior al porta-retalls com a un text normal"

#: ../src/gnome-genius.c:347
msgid "Copy Answer As _LaTeX"
msgstr "Copia _la resposta com a LaTeX"

#: ../src/gnome-genius.c:348
msgid "Copy last answer into the clipboard as LaTeX"
msgstr "Copia la resposta anterior al porta-retalls com a LaTeX"

#: ../src/gnome-genius.c:351
msgid "Copy Answer As _MathML"
msgstr "Copia la resposta co_m a MathML"

#: ../src/gnome-genius.c:352
msgid "Copy last answer into the clipboard as MathML"
msgstr "Copia la resposta anterior al porta-retalls com a MathML"

#: ../src/gnome-genius.c:355
msgid "Copy Answer As T_roff"
msgstr "Copia la _resposta com a Troff"

#: ../src/gnome-genius.c:356
msgid "Copy last answer into the clipboard as Troff eqn"
msgstr "Copia la resposta anterior al porta-retalls com a Troff"

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

#: ../src/gnome-genius.c:360
msgid "Run current program"
msgstr "Executa el programa actual"

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

#: ../src/gnome-genius.c:364
msgid "Interrupt current calculation"
msgstr "Interromp el càlcul en curs"

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

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

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

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

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

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

#: ../src/gnome-genius.c:379
#, fuzzy
msgid "_Plot..."
msgstr "_Dibuix"

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

#: ../src/gnome-genius.c:383 ../src/gnome-genius.c:586 ../src/graphing.c:7228
msgid "_Plot"
msgstr "_Dibuix"

#: ../src/gnome-genius.c:387
msgid "_Next Tab"
msgstr "Pestanya _següent"

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

#: ../src/gnome-genius.c:391
msgid "_Previous Tab"
msgstr "Pestanya _anterior"

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

#: ../src/gnome-genius.c:395
#, fuzzy
msgid "_Console"
msgstr "Consola"

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

#: ../src/gnome-genius.c:399
msgid "_Preferences"
msgstr "_Preferències"

#: ../src/gnome-genius.c:400
#, fuzzy
msgid "Configure Genius"
msgstr "Quant al Genius"

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

#: ../src/gnome-genius.c:404
#, fuzzy
msgid "View the Genius manual"
msgstr "Mostra el manual d'usuari"

#: ../src/gnome-genius.c:407
#, fuzzy
msgid "_Help on Function"
msgstr "  help NomFunció\n"

#: ../src/gnome-genius.c:408
#, fuzzy
msgid "Help on a function or a command"
msgstr "Escriu ajuda (o ajuda relacionada amb les funcions/ordres)"

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

#: ../src/gnome-genius.c:412
msgid "Display warranty information"
msgstr "Mostra la informació quant a la garantia"

#: ../src/gnome-genius.c:415
msgid "_About"
msgstr "_Quant a"

#: ../src/gnome-genius.c:416
msgid "About Genius"
msgstr "Quant al Genius"

#: ../src/gnome-genius.c:956
#, fuzzy
msgid "Help on Function"
msgstr "  help NomFunció\n"

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

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

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

#: ../src/gnome-genius.c:1092
msgid "Error"
msgstr "S'ha produït un error"

#: ../src/gnome-genius.c:1094
msgid "Information"
msgstr "Informació"

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

#: ../src/gnome-genius.c:1432
#, fuzzy, c-format
msgid "%s undefined"
msgstr "%s: funció no definida"

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

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

#: ../src/gnome-genius.c:1493
#, fuzzy, c-format
msgid "%s not a user variable"
msgstr "Defineix una variable global"

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

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

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

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

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

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

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

#: ../src/gnome-genius.c:1860
#, fuzzy, c-format
msgid ""
"<b>Cannot display help</b>\n"
"\n"
"%s"
msgstr ""
"<b>No es pot desar el fitxer</b>\n"
"Detalls: %s"

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

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

#. Translators should localize the following string
#. * which will give them credit in the About box.
#. * E.g. "Fulano de Tal <fulano@detal.com>"
#.
#: ../src/gnome-genius.c:1951
msgid "translator-credits"
msgstr ""
"Jordi Mas i Hernàndez <jmas@softcatala.org>\n"
"Gil Forcada <gilforcada@guifi.net>"

#: ../src/gnome-genius.c:1999
#, fuzzy
msgid "Genius Mathematical Tool"
msgstr "Eina matemàtica Genius"

#: ../src/gnome-genius.c:2003
#, fuzzy
msgid "The Gnome calculator style edition of the Genius Mathematical Tool."
msgstr ""
"L'edició amb estil calculadora del Gnome de la calculadora Genius. Per més "
"detalls quant a la garantia, escriviu 'warranty' a la cònsola."

#: ../src/gnome-genius.c:2192
msgid ""
"Genius is executing something, and furthermore there are unsaved programs.\n"
"Are you sure you wish to quit?"
msgstr ""
"El Genius està executant alguna cosa, a més encara queden programes sense "
"desar.\n"
"Segur que voleu sortir?"

#: ../src/gnome-genius.c:2200
msgid "There are unsaved programs, are you sure you wish to quit?"
msgstr "Hi ha programes sense desar, esteu segur que voleu sortir?"

#: ../src/gnome-genius.c:2207
msgid "Genius is executing something, are you sure you wish to quit?"
msgstr ""
"El Genius encara està executant alguna cosa, esteu segur que voleu sortir?"

#: ../src/gnome-genius.c:2214
msgid "Are you sure you wish to quit?"
msgstr "Esteu segur que desitgeu sortir?"

#: ../src/gnome-genius.c:2328
msgid "Genius Setup"
msgstr "Configuració del Genius"

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

#: ../src/gnome-genius.c:2349
msgid "Number/Expression output options"
msgstr "Opcions de sortida de nombres/expressió"

#: ../src/gnome-genius.c:2359
msgid "Maximum digits to output (0=unlimited)"
msgstr "Nombre màxim de dígits a la sortida (0=cap límit)"

#: ../src/gnome-genius.c:2379
msgid "Results as floats"
msgstr "Resultat com a coma flotant"

#: ../src/gnome-genius.c:2387
msgid "Floats in scientific notation"
msgstr "Coma flotant en notació científica"

#: ../src/gnome-genius.c:2395
msgid "Always print full expressions"
msgstr "Sempre escriu les expressions completes"

#: ../src/gnome-genius.c:2403
#, fuzzy
msgid "Use mixed fractions"
msgstr "Si és cert, s'escriuen fraccions mesclades"

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

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

#: ../src/gnome-genius.c:2471
msgid "Error/Info output options"
msgstr "Opcions de sortida d'error o informació"

#: ../src/gnome-genius.c:2479
msgid "Display errors in a dialog"
msgstr "Mostra els errors en un diàleg"

#: ../src/gnome-genius.c:2487
msgid "Display information messages in a dialog"
msgstr "Mostra missatges d'informació en un diàleg"

#: ../src/gnome-genius.c:2498
msgid "Maximum errors to display (0=unlimited)"
msgstr "Nombre màxim d'errors que es mostraran (0=cap límit)"

#: ../src/gnome-genius.c:2522
msgid "Precision"
msgstr "Precisió"

#: ../src/gnome-genius.c:2532
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 ""
"Atenció: la precisió de punt flotant no es farà efectiva\n"
"immediatament per a tots els nombres, sinó que només afectarà\n"
"als nous nombres que siguin calculats i les noves variables."

#: ../src/gnome-genius.c:2541
msgid "Floating point precision (bits)"
msgstr "Precisió en coma flotant (bits)"

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

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

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

#: ../src/gnome-genius.c:2579
msgid "Terminal options"
msgstr "Opcions de terminal"

#: ../src/gnome-genius.c:2588
msgid "Scrollback lines"
msgstr "Desplaçament lateral de línies"

#: ../src/gnome-genius.c:2611
msgid "Font:"
msgstr "Tipus de lletra:"

#: ../src/gnome-genius.c:2622
msgid "Black on white"
msgstr "Negre sobre blanc"

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

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

#: ../src/gnome-genius.c:2646
msgid "Limits"
msgstr "Límits"

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

#: ../src/gnome-genius.c:2662
#, fuzzy
msgid "Maximum number of nodes to allocate"
msgstr "Nombre màxim d'errors que es mostraran"

#: ../src/gnome-genius.c:2702
msgid ""
"<b>Genius is currently executing something.</b>\n"
"\n"
"Please try again later or interrupt the current operation."
msgstr ""
"<b>El Genius està executant alguna cosa.</b>\n"
"\n"
"Per favor proveu de nou després, o interrompeu l'operació en curs."

#: ../src/gnome-genius.c:2745
msgid "GEL files"
msgstr "Fitxers del GEL"

#: ../src/gnome-genius.c:2750 ../src/graphing.c:1241
msgid "All files"
msgstr "Tots els fitxers"

#: ../src/gnome-genius.c:2774 ../src/gnome-genius.c:3798
msgid "Cannot open file!"
msgstr "No es pot obrir el fitxer"

#: ../src/gnome-genius.c:2784 ../src/gnome-genius.c:4284
#, fuzzy
msgid "Output from "
msgstr "Sortida"

#: ../src/gnome-genius.c:2801 ../src/gnome-genius.c:4356
msgid "End"
msgstr "Fi"

#: ../src/gnome-genius.c:2820
msgid "Load and Run"
msgstr "Carrega i executa"

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

#: ../src/gnome-genius.c:3373
msgid "Cannot open file"
msgstr "No es pot obrir el fitxer"

#. context
#: ../src/gnome-genius.c:3408 ../src/gnome-genius.c:4975
#, c-format
msgid "Line: %d"
msgstr "Línia: %d"

#: ../src/gnome-genius.c:3540
#, fuzzy
msgid ""
"The program you are closing is unsaved, are you sure you wish to close it "
"without saving?"
msgstr "Hi ha programes sense desar, esteu segurs que voleu sortir?"

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

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

#: ../src/gnome-genius.c:3721
#, c-format
msgid "Cannot open %s"
msgstr "No es pot obrir %s"

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

#: ../src/gnome-genius.c:3905
#, fuzzy
msgid "Program is read only"
msgstr "Programa %d"

#: ../src/gnome-genius.c:3910 ../src/gnome-genius.c:3950
#, fuzzy, c-format
#| msgid ""
#| "<b>Cannot save file</b>\n"
#| "Details: %s"
msgid ""
"<b>Cannot save file %s</b>\n"
"Details: %s"
msgstr ""
"<b>No es pot desar el fitxer</b>\n"
"Detalls: %s"

#: ../src/gnome-genius.c:3916 ../src/gnome-genius.c:3957
#, fuzzy, c-format
#| msgid ""
#| "<b>Cannot save file</b>\n"
#| "Details: %s"
msgid "<b>Cannot save file %s</b>"
msgstr ""
"<b>No es pot desar el fitxer</b>\n"
"Detalls: %s"

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

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

#: ../src/gnome-genius.c:4013 ../src/gnome-genius.c:4149
#, c-format
msgid ""
"<b>Cannot save file</b>\n"
"Details: %s"
msgstr ""
"<b>No es pot desar el fitxer</b>\n"
"Detalls: %s"

#: ../src/gnome-genius.c:4018 ../src/gnome-genius.c:4154
#, fuzzy
#| msgid ""
#| "<b>Cannot save file</b>\n"
#| "Details: %s"
msgid "<b>Cannot save file</b>"
msgstr ""
"<b>No es pot desar el fitxer</b>\n"
"Detalls: %s"

#: ../src/gnome-genius.c:4053
msgid "Save As..."
msgstr "Anomena i desa..."

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

#: ../src/gnome-genius.c:4241
msgid ""
"<b>No program selected.</b>\n"
"\n"
"Create a new program, or select an existing tab in the notebook."
msgstr ""
"<b>No s'ha seleccionat cap programa.</b>\n"
"\n"
"Creeu un nou programa, o seleccioneu-ne un de les pestanyes de la llibreta."

#: ../src/gnome-genius.c:4271
#, fuzzy, c-format
msgid "Cannot open pipe: %s"
msgstr "No es pot obrir %s"

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

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

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

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

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

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

#: ../src/gnome-genius.c:4996
msgid ""
"\n"
"Note: Compiled without GtkSourceView (better source editor)"
msgstr ""
"\n"
"Atenció: s'ha compilat sense GtkSourceView (un editor de codi font molt "
"millor)"

#: ../src/gnome-genius.c:5089
#, fuzzy
msgid "GNOME Genius"
msgstr "Genius"

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

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

#: ../src/gnome-genius.c:5268
#, fuzzy, c-format
#| msgid ""
#| "%sGenius %s%s\n"
#| "%s\n"
#| "This is free software with ABSOLUTELY NO WARRANTY.\n"
#| "For license details type `%swarranty%s'.\n"
#| "For help type '%smanual%s' or '%shelp%s'.%s\n"
#| "\n"
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"
"Això és programari lliure i no té CAP GARANTIA.\n"
"Per a detalls sobre la llicència, escriviu '%swarranty%s'.\n"
"Per obtenir ajut escriviu '%smanual%s' o '%shelp%s'.%s\n"
"\n"

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

#: ../src/gnome-genius.desktop.in.h:2
msgid "Genius Mathematical Tool and Calculator"
msgstr "Calculadora i eina matemàtica Genius"

#: ../src/gnome-genius.desktop.in.h:3
msgid ""
"Mathematics;Matrix;Vector;Linear Algebra;Calculus;Plot;Plotting;Graph;"
"Graphing;Function;Number Theory;"
msgstr ""

#: ../src/graphing.c:610
msgid "Rotate"
msgstr "Gira"

#: ../src/graphing.c:629 ../src/graphing.c:658
#, c-format
msgid "Rotate about %s axis: "
msgstr ""

#: ../src/graphing.c:687
msgid "Rotate about dependent axis: "
msgstr ""

#: ../src/graphing.c:834
msgid "Print"
msgstr "Impressió"

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

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

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

#: ../src/graphing.c:923
#, c-format
msgid "Printing failed: %s"
msgstr ""

#: ../src/graphing.c:997 ../src/graphing.c:1138
msgid "File already exists.  Overwrite it?"
msgstr "El fitxer existeix. Desitgeu sobreescriure'l?"

#: ../src/graphing.c:1097 ../src/graphing.c:1153 ../src/graphing.c:1170
msgid "Export failed"
msgstr "Ha fallat l'exportació"

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

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

#: ../src/graphing.c:1199
#, fuzzy
#| msgid "Export failed"
msgid "Export PDF"
msgstr "Ha fallat l'exportació"

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

#: ../src/graphing.c:1208
msgid "Missing ps2pdf command, perhaps ghostscript is not installed."
msgstr ""

#: ../src/graphing.c:1223
#, fuzzy
msgid "EPS files"
msgstr "Fitxers del GEL"

#: ../src/graphing.c:1227
#, fuzzy
msgid "PS files"
msgstr "Fitxers del GEL"

#: ../src/graphing.c:1231
#, fuzzy
msgid "PDF files"
msgstr "Fitxers del GEL"

#: ../src/graphing.c:1235
#, fuzzy
msgid "PNG files"
msgstr "Fitxers del GEL"

#: ../src/graphing.c:1250
msgid "Generate preview in EPS file (with ps2epsi)"
msgstr ""

#: ../src/graphing.c:1934
msgid "Solver"
msgstr "Resoledor"

#: ../src/graphing.c:1939
msgid "Clea_r solutions"
msgstr ""

#: ../src/graphing.c:1941
#, fuzzy
msgid "_Plot solution"
msgstr "Dibuixa una funció"

#: ../src/graphing.c:1962
msgid ""
"Clicking on the graph window now will draw a solution according to the "
"parameters set below, starting at the point clicked.  To be able to zoom by "
"mouse again, close this window."
msgstr ""

#: ../src/graphing.c:1984
msgid "X increment:"
msgstr ""

#: ../src/graphing.c:2006
msgid "T increment:"
msgstr ""

#: ../src/graphing.c:2010
#, fuzzy
msgid "T interval length:"
msgstr "El logaritme natural"

#: ../src/graphing.c:2024
msgid "Point x:"
msgstr ""

#: ../src/graphing.c:2029
msgid "y:"
msgstr ""

#: ../src/graphing.c:2137
msgid "Plot"
msgstr "Dibuixa"

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

#: ../src/graphing.c:2176
msgid "_Print..."
msgstr "_Imprimeix..."

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

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

#: ../src/graphing.c:2195
msgid "Export P_DF..."
msgstr ""

#: ../src/graphing.c:2204
msgid "Export P_NG..."
msgstr ""

#: ../src/graphing.c:2216
#, fuzzy
msgid "_Zoom"
msgstr "Reduei_x l'ampliació"

#: ../src/graphing.c:2220
#, fuzzy
msgid "Zoom _out"
msgstr "Reduei_x l'ampliació"

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

#: ../src/graphing.c:2234
#, fuzzy
msgid "_Fit dependent axis"
msgstr "A_justa a l'eix Y"

#: ../src/graphing.c:2241
msgid "_Reset to original zoom"
msgstr ""

#: ../src/graphing.c:2254
msgid "_View"
msgstr "_Visualitza"

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

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

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

#: ../src/graphing.c:2274
msgid "Start rotate _animation..."
msgstr ""

#: ../src/graphing.c:2279
msgid "Stop rotate a_nimation..."
msgstr ""

#: ../src/graphing.c:2289
msgid "_Solver"
msgstr ""

#: ../src/graphing.c:2294
msgid "_Solver..."
msgstr "_Resoledor..."

#: ../src/graphing.c:2299
msgid "_Clear solutions"
msgstr ""

#: ../src/graphing.c:2330
msgid "Errors during plotting (possibly harmless), see the console."
msgstr ""

#: ../src/graphing.c:3348
#, fuzzy, c-format
msgid "Function"
msgstr "Funcions"

#: ../src/graphing.c:3350
#, c-format
msgid "Function #%d"
msgstr "Funció núm. %d"

#: ../src/graphing.c:3372
msgid "Graph limits not given as a 4-vector"
msgstr ""
"Els límits de la gràfica no s'han donat com a vector de quatre elements"

#: ../src/graphing.c:3378 ../src/graphing.c:3389 ../src/graphing.c:3400
#: ../src/graphing.c:3411 ../src/graphing.c:3454 ../src/graphing.c:3465
#: ../src/graphing.c:3563 ../src/graphing.c:3574 ../src/graphing.c:3585
#: ../src/graphing.c:3596 ../src/graphing.c:3607 ../src/graphing.c:3618
msgid "Graph limits not given as numbers"
msgstr "Els límits de la gràfica no s'han donat com a nombres"

#: ../src/graphing.c:3448
#, fuzzy
#| msgid "Graph limits not given as a 4-vector"
msgid "Graph limits not given as a 2-vector"
msgstr ""
"Els límits de la gràfica no s'han donat com a vector de quatre elements"

#: ../src/graphing.c:3557
#, fuzzy
msgid "Graph limits not given as a 6-vector"
msgstr ""
"Els límits de la gràfica no s'han donat com a vector de quatre elements"

#: ../src/graphing.c:3691 ../src/graphing.c:3709 ../src/graphing.c:3723
msgid "Ticks must be between 2 and 200"
msgstr ""

#: ../src/graphing.c:3700 ../src/graphing.c:3714
#, fuzzy
msgid "Ticks not given as numbers"
msgstr "Els límits de la gràfica no s'han donat com a nombres"

#: ../src/graphing.c:3728
#, fuzzy
msgid "Ticks not given as a number or a 2-vector"
msgstr ""
"Els límits de la gràfica no s'han donat com a vector de quatre elements"

#: ../src/graphing.c:5388
#, fuzzy, c-format
msgid ""
"Type in function name or expression involving the %s and %s variables (or "
"the %s variable which will be %s=%s+i%s) that gives the slope at the point "
"(%s,%s)."
msgstr ""
"Escriviu els noms de funcions o expressions en funció de la variable x en "
"les caixes de sota per fer-ne una gràfica"

#: ../src/graphing.c:5413 ../src/graphing.c:5420 ../src/graphing.c:5584
#: ../src/graphing.c:5591
#, fuzzy, c-format
msgid "%s from:"
msgstr "X des de:"

#: ../src/graphing.c:5427 ../src/graphing.c:5434
#, c-format
msgid "%s increment:"
msgstr ""

#: ../src/graphing.c:5441
#, c-format
msgid "%s interval length:"
msgstr ""

#: ../src/graphing.c:5448
#, c-format
msgid "Point %s:"
msgstr ""

#: ../src/graphing.c:5461
#, c-format
msgid ""
"Type in function names or expressions involving the %s and %s variables (or "
"the %s variable which will be %s=%s+i%s) that give the d%s/d%s and d%s/d%s "
"of the autonomous system to be plotted at the point (%s,%s)."
msgstr ""

#: ../src/graphing.c:5497
#, fuzzy, c-format
msgid ""
"Type in function names or expressions involving the %s variable in the boxes "
"below to graph them"
msgstr ""
"Escriviu els noms de funcions o expressions en funció de la variable x en "
"les caixes de sota per fer-ne una gràfica"

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

#: ../src/graphing.c:5555
#, fuzzy, c-format
msgid "Parameter %s from:"
msgstr "Paràmetres"

#: ../src/graphing.c:5569
#, c-format
msgid ""
"Type a function name or an expression involving the %s and %s variables (or "
"the %s variable which will be %s=%s+i%s) in the boxes below to graph them.  "
"Functions with one argument only will be passed a complex number."
msgstr ""

#: ../src/graphing.c:5635 ../src/graphing.c:5754
msgid "Change variable names"
msgstr ""

#: ../src/graphing.c:5651 ../src/graphing.c:5770
msgid "Some values were illegal"
msgstr ""

#: ../src/graphing.c:5655 ../src/graphing.c:5774
msgid "independent variable (x):"
msgstr ""

#: ../src/graphing.c:5665
msgid "dependent variable (y):"
msgstr ""

#: ../src/graphing.c:5675
msgid "complex variable (z = x+iy):"
msgstr ""

#: ../src/graphing.c:5685
msgid "parameter variable (t):"
msgstr ""

#: ../src/graphing.c:5784
msgid "independent variable (y):"
msgstr ""

#: ../src/graphing.c:5794
msgid "independent complex variable (z = x+iy):"
msgstr ""

#: ../src/graphing.c:5958
#, fuzzy
msgid "_Functions / Expressions"
msgstr "Funció/expressions"

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

#. t range
#: ../src/graphing.c:6005
#, fuzzy
msgid "Parameter t from:"
msgstr "Paràmetres"

#: ../src/graphing.c:6009 ../src/graphing.c:6156 ../src/graphing.c:6169
#: ../src/graphing.c:6279 ../src/graphing.c:6291 ../src/graphing.c:6302
msgid "to:"
msgstr "a:"

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

#: ../src/graphing.c:6020
#, fuzzy
msgid "Pa_rametric"
msgstr "Paràmetres"

#. # of ticks
#: ../src/graphing.c:6047 ../src/graphing.c:6099
msgid "Vertical ticks:"
msgstr ""

#. # of ticks
#: ../src/graphing.c:6051 ../src/graphing.c:6103
msgid "Horizontal ticks:"
msgstr ""

#: ../src/graphing.c:6056
msgid "Sl_ope field"
msgstr ""

#. Normalize the arrow length?
#: ../src/graphing.c:6090
msgid "_Normalize arrow length (do not show size)"
msgstr ""

#: ../src/graphing.c:6108
msgid "_Vector field"
msgstr ""

#. draw legend?
#: ../src/graphing.c:6118 ../src/graphing.c:6248
msgid "_Draw legend"
msgstr ""

#. draw axis labels?
#: ../src/graphing.c:6127
msgid "Draw axis labels"
msgstr ""

#. change varnames
#: ../src/graphing.c:6136 ../src/graphing.c:6258
msgid "Change variable names..."
msgstr ""

#. plot window
#.
#. * Plot window frame
#.
#: ../src/graphing.c:6144 ../src/graphing.c:6267
msgid "Plot Window"
msgstr "Finestra de dibuix"

#.
#. * X range
#.
#: ../src/graphing.c:6153 ../src/graphing.c:6276
msgid "X from:"
msgstr "X des de:"

#.
#. * Y range
#.
#: ../src/graphing.c:6166 ../src/graphing.c:6288
msgid "Y from:"
msgstr "Y des de:"

#. fit dependent axis?
#: ../src/graphing.c:6177 ../src/graphing.c:6310
msgid "Fit dependent axis"
msgstr ""

#: ../src/graphing.c:6221
#, fuzzy
msgid "Function / Expression"
msgstr "Funció/expressions"

#.
#. * Z range
#.
#: ../src/graphing.c:6300
msgid "Dependent axis from:"
msgstr ""

#: ../src/graphing.c:6331
#, fuzzy
msgid "Function _line plot"
msgstr "Dibuix de funció lineal"

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

#: ../src/graphing.c:6549 ../src/graphing.c:6735 ../src/graphing.c:6862
#: ../src/graphing.c:6991 ../src/graphing.c:7096
msgid "No functions to plot or no functions could be parsed"
msgstr "No hi ha cap funció per analitzar o no s'ha pogut analitzar cap funció"

#: ../src/graphing.c:6582 ../src/graphing.c:6588 ../src/graphing.c:6758
#: ../src/graphing.c:6764 ../src/graphing.c:6869 ../src/graphing.c:6892
#: ../src/graphing.c:6898 ../src/graphing.c:7014 ../src/graphing.c:7020
#: ../src/graphing.c:7119 ../src/graphing.c:7125
#, fuzzy, c-format
msgid "Invalid %s range"
msgstr "Conjunt de valors per a X no vàlid"

#: ../src/graphing.c:6594
#, fuzzy
msgid "Invalid dependent range"
msgstr "Conjunt de valors per a X no vàlid"

#: ../src/graphing.c:6856
#, c-format
msgid "Only specify %s and %s, or %s, not all at once."
msgstr ""

#: ../src/graphing.c:7223
#, fuzzy
msgid "Create Plot"
msgstr "Crea una gràfica lineal"

#: ../src/graphing.c:7264 ../src/graphing.c:7434 ../src/graphing.c:7465
#: ../src/graphing.c:7486 ../src/graphing.c:7526 ../src/graphing.c:7550
#: ../src/graphing.c:7662 ../src/graphing.c:7786 ../src/graphing.c:7923
#: ../src/graphing.c:8080 ../src/graphing.c:8227 ../src/graphing.c:8250
#: ../src/graphing.c:8732 ../src/graphing.c:9013 ../src/graphing.c:9232
#: ../src/graphing.c:9471 ../src/graphing.c:9798 ../src/graphing.c:10030
#: ../src/graphing.c:10119 ../src/graphing.c:10232 ../src/graphing.c:10263
#: ../src/graphing.c:10292 ../src/graphing.c:10318 ../src/graphing.c:10345
#: ../src/graphing.c:10436 ../src/graphing.c:10509 ../src/graphing.c:10534
#: ../src/graphing.c:10567 ../src/graphing.c:10615
#, c-format
msgid "%s: Plotting in progress, cannot call %s"
msgstr ""

#: ../src/graphing.c:7272 ../src/graphing.c:7805
#, c-format
msgid "%s: argument not a function"
msgstr "%s: l'argument no és una funció"

#: ../src/graphing.c:7282
#, fuzzy, c-format
msgid "%s: only one function supported"
msgstr "%s: només es permeten 10 funcions com a màxim"

#: ../src/graphing.c:7305
#, fuzzy
#| msgid "Graph limits not given as a 4-vector"
msgid "Graph limits not given as a 4-vector or a 6-vector"
msgstr ""
"Els límits de la gràfica no s'han donat com a vector de quatre elements"

#: ../src/graphing.c:7361 ../src/graphing.c:7615 ../src/graphing.c:7732
#: ../src/graphing.c:7868 ../src/graphing.c:8017 ../src/graphing.c:8172
#: ../src/graphing.c:9899
#, c-format
msgid "%s: invalid X range"
msgstr "%s: conjunt de valors per a X no vàlid"

#: ../src/graphing.c:7366 ../src/graphing.c:7620 ../src/graphing.c:7737
#: ../src/graphing.c:7873 ../src/graphing.c:8022 ../src/graphing.c:8177
#: ../src/graphing.c:9904
#, c-format
msgid "%s: invalid Y range"
msgstr "%s: conjunt de valors per a Y no vàlid"

#: ../src/graphing.c:7371 ../src/graphing.c:9909
#, fuzzy, c-format
msgid "%s: invalid Z range"
msgstr "%s: conjunt de valors per a X no vàlid"

#: ../src/graphing.c:7444
#, c-format
msgid "%s: dx must be positive"
msgstr ""

#: ../src/graphing.c:7451 ../src/graphing.c:7470
#, c-format
msgid "%s: Slope field not active"
msgstr ""

#: ../src/graphing.c:7497
#, fuzzy, c-format
msgid "%s: dt must be positive"
msgstr "%s: l'argument ha de ser un enter"

#: ../src/graphing.c:7503
#, fuzzy, c-format
msgid "%s: tlen must be positive"
msgstr "%s: l'argument ha de ser un enter"

#: ../src/graphing.c:7511 ../src/graphing.c:7532
#, c-format
msgid "%s: Vector field not active"
msgstr ""

#: ../src/graphing.c:7557 ../src/graphing.c:8087
#, fuzzy, c-format
msgid "%s: First argument must be a function"
msgstr "%s: l'argument no és una funció"

#: ../src/graphing.c:7673 ../src/graphing.c:7931
#, fuzzy, c-format
msgid "%s: First two arguments must be functions"
msgstr "%s: l'argument no és una funció"

#: ../src/graphing.c:7800
#, c-format
msgid "%s: only up to 10 functions supported"
msgstr "%s: només es permeten 10 funcions com a màxim"

#: ../src/graphing.c:7826
#, fuzzy
#| msgid "Graph limits not given as a 4-vector"
msgid "Graph limits not given as a 2-vector or a 4-vector"
msgstr ""
"Els límits de la gràfica no s'han donat com a vector de quatre elements"

#: ../src/graphing.c:8027 ../src/graphing.c:8182
#, fuzzy, c-format
msgid "%s: invalid T range"
msgstr "%s: conjunt de valors per a X no vàlid"

#: ../src/graphing.c:8445 ../src/graphing.c:8499
#, c-format
msgid ""
"%s: Points should be given as a real, n by 2 matrix with columns for x and "
"y, n>=%d"
msgstr ""

#: ../src/graphing.c:8537 ../src/graphing.c:8600
#, c-format
msgid ""
"%s: Points should be given as a real, n by 3 matrix with columns for x, y "
"and z, n>=%d"
msgstr ""

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

#: ../src/graphing.c:8656 ../src/graphing.c:8663
#, fuzzy, c-format
#| msgid "Cannot open plugin '%s'!"
msgid "%s: Cannot parse color '%s'"
msgstr "No es pot obrir el connector '%s'"

#: ../src/graphing.c:8677
#, c-format
msgid ""
"%s: A vector giving color should be a 3-vector of real numbers between 0 and "
"1"
msgstr ""

#: ../src/graphing.c:8693
#, c-format
msgid ""
"%s: Warning: Values for red, green, or blue out of range (0 to 1), I will "
"clip them to this interval"
msgstr ""

#: ../src/graphing.c:8709
#, c-format
msgid ""
"%s: Color must be a string or a three-vector of rgb values (between 0 and 1)"
msgstr ""

#: ../src/graphing.c:8751 ../src/graphing.c:9032 ../src/graphing.c:9253
#: ../src/graphing.c:9492
#, fuzzy, c-format
msgid "%s: Wrong number of arguments"
msgstr "%s: massa arguments"

#: ../src/graphing.c:8819 ../src/graphing.c:9086 ../src/graphing.c:9319
#: ../src/graphing.c:9552
#, c-format
msgid "%s: No thickness specified"
msgstr ""

#: ../src/graphing.c:8842 ../src/graphing.c:9109 ../src/graphing.c:9344
#: ../src/graphing.c:9577
#, c-format
msgid "%s: No window specified"
msgstr ""

#: ../src/graphing.c:8890 ../src/graphing.c:8915
#, c-format
msgid "%s: arrow style should be \"origin\", \"end\", \"both\", or \"none\""
msgstr ""

#: ../src/graphing.c:8925 ../src/graphing.c:9153 ../src/graphing.c:9396
#: ../src/graphing.c:9629
#, c-format
msgid "%s: No legend specified"
msgstr ""

#: ../src/graphing.c:8939 ../src/graphing.c:9167 ../src/graphing.c:9411
#: ../src/graphing.c:9644
#, fuzzy, c-format
msgid "%s: Legend must be a string"
msgstr "%s: els arguments modificadors han de ser de text"

#: ../src/graphing.c:8948 ../src/graphing.c:9176 ../src/graphing.c:9421
#: ../src/graphing.c:9654
#, c-format
msgid "%s: Unknown style"
msgstr ""

#: ../src/graphing.c:8955 ../src/graphing.c:9183 ../src/graphing.c:9429
#: ../src/graphing.c:9662
#, c-format
msgid "%s: Bad parameter"
msgstr ""

#: ../src/graphing.c:9715 ../src/graphing.c:9778
#, c-format
msgid ""
"%s: Surface should be given as a real, n by 3 matrix with columns for x, y, "
"z, where n>=3"
msgstr ""

#: ../src/graphing.c:9806
#, fuzzy, c-format
msgid "%s: argument not a matrix of data"
msgstr "%s: l'argument número %d no és una matriu"

#: ../src/graphing.c:9990
#, c-format
msgid "%s: Surface grid data should be given as a real matrix "
msgstr ""

#: ../src/graphing.c:10036
#, fuzzy, c-format
msgid "%s: first argument not a matrix of data"
msgstr "%s: l'argument número %d no és una matriu"

#: ../src/graphing.c:10043
#, fuzzy, c-format
msgid "%s: second argument not a 4 or 6 element vector of limits"
msgstr "%s: els arguments no són vectors horitzontals"

#: ../src/graphing.c:10060
#, fuzzy, c-format
msgid "%s: too many arguments or last argument not a string label"
msgstr "%s: massa arguments, com a màxim poden haver %d"

#: ../src/graphing.c:10126
#, fuzzy, c-format
msgid "%s: first argument not a nonempty string"
msgstr "%s: l'argument número %d no és un text"

#: ../src/graphing.c:10134
#, c-format
msgid "%s: type not specified and filename has no extension"
msgstr ""

#: ../src/graphing.c:10143
#, fuzzy, c-format
msgid "%s: second argument not a nonempty string"
msgstr "%s: els arguments dels vectors no poden ser valors"

#: ../src/graphing.c:10155
#, c-format
msgid "%s: plot canvas not active, cannot export"
msgstr ""

#: ../src/graphing.c:10164 ../src/graphing.c:10181 ../src/graphing.c:10204
#, c-format
msgid "%s: export failed"
msgstr ""

#: ../src/graphing.c:10217
#, c-format
msgid "%s: unknown file type, can be \"png\", \"eps\", or \"ps\"."
msgstr ""

#: ../src/graphing.c:10352
#, fuzzy
msgid "Variable names not given in a 4-vector"
msgstr ""
"Els límits de la gràfica no s'han donat com a vector de quatre elements"

#: ../src/graphing.c:10362 ../src/graphing.c:10371 ../src/graphing.c:10380
#: ../src/graphing.c:10389 ../src/graphing.c:10453 ../src/graphing.c:10462
#: ../src/graphing.c:10471
msgid "Variable names should be strings"
msgstr ""

#: ../src/graphing.c:10396 ../src/graphing.c:10477
#, fuzzy
msgid "Variable names must be valid identifiers"
msgstr "S'ha fet servir la variable '%s' sense inicialitzar"

#: ../src/graphing.c:10405 ../src/graphing.c:10483
msgid "Variable names must be mutually distinct"
msgstr ""

#: ../src/graphing.c:10443
#, fuzzy
msgid "Variable names not given in a 3-vector"
msgstr ""
"Els límits de la gràfica no s'han donat com a vector de quatre elements"

#: ../src/graphing.c:10650
msgid "Plotting"
msgstr "Dibuix"

#. internal
#: ../src/graphing.c:10652
#, fuzzy
msgid ""
"Plot a function with a line.  First come the functions (up to 10) then "
"optionally limits as x1,x2,y1,y2"
msgstr ""
"Dibuixeu una funció amb una línia (molt rudimentari). Primer indiqueu les "
"funcions (fins a 10) i després opcionalment els límits com a x1,x2,y1,y2"

#: ../src/graphing.c:10653
#, fuzzy
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 ""
"Dibuixeu una funció amb una línia (molt rudimentari). Primer indiqueu les "
"funcions (fins a 10) i després opcionalment els límits com a x1,x2,y1,y2"

#: ../src/graphing.c:10654
#, fuzzy
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 ""
"Dibuixeu una funció amb una línia (molt rudimentari). Primer indiqueu les "
"funcions (fins a 10) i després opcionalment els límits com a x1,x2,y1,y2"

#: ../src/graphing.c:10656
#, fuzzy
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 ""
"Dibuixeu una funció amb una línia (molt rudimentari). Primer indiqueu les "
"funcions (fins a 10) i després opcionalment els límits com a x1,x2,y1,y2"

#: ../src/graphing.c:10657
#, fuzzy
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 ""
"Dibuixeu una funció amb una línia (molt rudimentari). Primer indiqueu les "
"funcions (fins a 10) i després opcionalment els límits com a x1,x2,y1,y2"

#: ../src/graphing.c:10659
msgid ""
"Draw a solution for a slope field starting at x,y and using dx as increment"
msgstr ""

#: ../src/graphing.c:10660
msgid "Clear all the slopefield solutions"
msgstr ""

#: ../src/graphing.c:10662
msgid ""
"Draw a solution for a vector field starting at x,y, using dt as increment "
"for tlen units"
msgstr ""

#: ../src/graphing.c:10663
msgid "Clear all the vectorfield solutions"
msgstr ""

#: ../src/graphing.c:10666
#, fuzzy
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 ""
"Dibuixeu una funció amb una línia (molt rudimentari). Primer indiqueu les "
"funcions (fins a 10) i després opcionalment els límits com a x1,x2,y1,y2"

#: ../src/graphing.c:10668
msgid "Show the surface (3d) plot window and clear out functions"
msgstr ""

#: ../src/graphing.c:10670
msgid ""
"Plot surface data given as n by 3 matrix (n>=3) of data with each row being "
"x,y,z.  Optionally can pass a label string and limits.  If no limits passed, "
"limits computed from data."
msgstr ""

#: ../src/graphing.c:10671
msgid ""
"Plot surface data given as a matrix (where rows are the x coordinate and "
"columns are the y coordinate), the limits are given as [x1,x2,y1,y2] or "
"optionally [x1,x2,y1,y2,z1,z2], and optionally a string for the label."
msgstr ""

#: ../src/graphing.c:10672
msgid ""
"Draw a line from x1,y1,z1 to x2,y2,z2 on the surface (3d) plot.  x1,y1,z1,x2,"
"y2,z2 can be replaced by a n by 3 matrix for a longer line"
msgstr ""

#: ../src/graphing.c:10673
msgid ""
"Draw a point at x,y,z on the surface (3d) plot.  x,y,z can be replaced by a "
"n by 3 matrix for more points."
msgstr ""

#: ../src/graphing.c:10675
msgid "Show the line plot window and clear out functions"
msgstr ""

#: ../src/graphing.c:10676
msgid ""
"Draw a line from x1,y1 to x2,y2.  x1,y1,x2,y2 can be replaced by a n by 2 "
"matrix for a longer line."
msgstr ""

#: ../src/graphing.c:10677
msgid ""
"Draw a point at x,y.  x,y can be replaced by a n by 2 matrix for more points."
msgstr ""

#: ../src/graphing.c:10679
msgid "Freeze the plot canvas, that is, inhibit drawing"
msgstr ""

#: ../src/graphing.c:10680
msgid "Thaw the plot canvas and redraw the plot immediately"
msgstr ""

#: ../src/graphing.c:10681
msgid "Raise the plot window, and create the window if necessary"
msgstr ""

#: ../src/graphing.c:10684
msgid ""
"Export the current contents of the plot canvas to a file.  The file type is "
"given by the string type, which can be \"png\", \"eps\", or \"ps\"."
msgstr ""

#: ../src/graphing.c:10686
msgid "Number of slopefield ticks as a vector [vertical,horizontal]."
msgstr ""

#: ../src/graphing.c:10687
msgid "Number of vectorfield ticks as a vector [vertical,horizontal]."
msgstr ""

#: ../src/graphing.c:10688
msgid ""
"Default names used by all 2D plot functions.  Should be a 4 vector of "
"strings or identifiers [x,y,z,t]."
msgstr ""

#: ../src/graphing.c:10689
msgid ""
"Default names used by surface plot functions.  Should be a 3 vector of "
"strings or identifiers [x,y,z] (where z=x+iy and not the dependent axis)."
msgstr ""

#: ../src/graphing.c:10691
msgid ""
"Normalize vectorfields if true.  That is, only show direction and not "
"magnitude."
msgstr ""

#: ../src/graphing.c:10692
msgid "If to draw legends or not on line plots."
msgstr ""

#: ../src/graphing.c:10693
msgid "If to draw axis labels on line plots."
msgstr ""

#: ../src/graphing.c:10695
msgid "If to draw legends or not on surface plots."
msgstr ""

#: ../src/graphing.c:10697
#, fuzzy
msgid "Line plotting window (limits) as a 4-vector of the form [x1,x2,y1,y2]"
msgstr ""
"Finestra de dibuix (límits) com a vector de 4 elements de la forma [x1,x2,y1,"
"y2]"

#: ../src/graphing.c:10698
#, fuzzy
msgid ""
"Surface plotting window (limits) as a 6-vector of the form [x1,x2,y1,y2,z1,"
"z2]"
msgstr ""
"Finestra de dibuix (límits) com a vector de 4 elements de la forma [x1,x2,y1,"
"y2]"

#: ../src/matop.c:689
msgid "Determinant of a non-square matrix is undefined"
msgstr "No existeix el determinant d'una matriu que no sigu quadrada"

#: ../src/matrixw.c:622 ../src/matrixw.c:708
msgid "Trying to increment a nonvalue"
msgstr ""

#: ../src/mpwrap.c:520
msgid "Integer exponent too large to compute"
msgstr "L'exponent enter és massa gran per ser calculat"

#: ../src/mpwrap.c:1455
msgid "Can't do modulo of floats or rationals!"
msgstr "No es pot obtenir el mòdul de punts flotant o racionals"

#: ../src/mpwrap.c:1469
msgid "Can't do GCD of floats or rationals!"
msgstr "No es pot obtenir el MCD de punts flotant o racionals"

#: ../src/mpwrap.c:1496
msgid "Can't modulo invert non integers!"
msgstr "No es pot invertir el mòdul de nombres no enters"

#: ../src/mpwrap.c:1517
#, fuzzy
msgid "Can't get Jacobi symbols of floats or rationals!"
msgstr ""
"No es poden obtenir els símbols de jacobi de punts flotants o racionals"

#: ../src/mpwrap.c:1536
#, fuzzy
msgid "Can't get Legendre symbols of floats or rationals!"
msgstr ""
"No es poden obtenir els símbols de legendre de punts flotants o racionals"

#: ../src/mpwrap.c:1555
#, fuzzy
msgid ""
"Can't get Jacobi symbol with Kronecker extension of floats or rationals!"
msgstr ""
"No es pot obtenir el símbol de jacobi amb l'extensió Kronecker de punts "
"flotants o racionals"

#: ../src/mpwrap.c:1564
msgid "Lucas must get an integer argument!"
msgstr "Lucas ha de rebre un argument enter"

#: ../src/mpwrap.c:1570
#, fuzzy
msgid "Number too large to compute Lucas number!"
msgstr "El nombre és massa gran per calcular el nombre de lucas"

#: ../src/mpwrap.c:1575
#, fuzzy
msgid "No such thing as negative Lucas numbers!"
msgstr "No existeix cap nombre que sigui un nombre de lucas negatiu"

#: ../src/mpwrap.c:1590
msgid "Cannot get next prime after non-integer!"
msgstr "No es pot obtenir el següent primer d'un nombre que no sigui enter"

#: ../src/mpwrap.c:1610 ../src/mpwrap.c:1623 ../src/mpwrap.c:1636
#: ../src/mpwrap.c:1649
#, c-format
msgid "%s: can't work on non-integers!"
msgstr "%s: no es pot treballar amb nombres que no siguin enters"

#: ../src/mpwrap.c:1691 ../src/mpwrap.c:1731
msgid "Can't do factorials of rationals or floats!"
msgstr "No es pot obtenir el factorial d'un racional o d'una coma flotant"

#: ../src/mpwrap.c:1697 ../src/mpwrap.c:1737
msgid "Number too large to compute factorial!"
msgstr "El nombre és massa gran per calcular el factorial"

#: ../src/mpwrap.c:1702 ../src/mpwrap.c:1742
msgid "Can't do factorials of negative numbers!"
msgstr "No es pot obtenir el factorial de nombres negatius"

#: ../src/mpwrap.c:1753
#, fuzzy
msgid "Can't do binomials of rationals or floats!"
msgstr "No es pot obtenir el factorial d'un racional o d'un coma flotant"

#: ../src/mpwrap.c:2091 ../src/mpwrap.c:2159 ../src/mpwrap.c:4298
#: ../src/mpwrap.c:4319
#, c-format
msgid "%s: Bad types for mod power"
msgstr ""

#: ../src/mpwrap.c:2128
#, c-format
msgid "Can't invert %s modulo %s in %s"
msgstr "No es pot invertir %s mòdul %s en %s"

#: ../src/mpwrap.c:2449
msgid "Can't make random integer from a non-integer"
msgstr "No es pot obtenir un enter a l'atzar d'un nombre que no és enter"

#: ../src/mpwrap.c:2454
msgid "Range for random integer must be positive"
msgstr "El rang per a l'enter a l'atzar ha de ser positiu"

#: ../src/mpwrap.c:2639 ../src/mpwrap.c:2667
msgid "Can't get numerator of floating types"
msgstr "No es pot obtenir el numerador d'un tipus de coma flotant"

#: ../src/mpwrap.c:3487 ../src/mpwrap.c:5011 ../src/mpwrap.c:5033
msgid "Can't compare complex numbers"
msgstr "No es poden comparar nombres complexos"

#: ../src/mpwrap.c:3974
msgid "Can't modulo complex numbers"
msgstr "No es pot obtenir el mòdul d'un nombre complex"

#: ../src/mpwrap.c:3997
#, c-format
msgid "Inverse of %s modulo %s not found!"
msgstr "No s'ha trobat l'invers de %s mòdul %s"

#: ../src/mpwrap.c:4006
msgid "Can't do modulo invert on complex numbers"
msgstr "No es pot obtenir la inversió de mòdul d'un nombre complex"

#: ../src/mpwrap.c:4023
msgid "Can't GCD complex numbers"
msgstr "No es pot obtenir el MCD d'un nombre complex"

#: ../src/mpwrap.c:4052
msgid "Can't LCM complex numbers"
msgstr "No es pot obtenir el mcm d'un nombre complex"

#: ../src/mpwrap.c:4069
#, fuzzy
msgid "Can't get Jacobi symbols of complex numbers"
msgstr "No es poden obtenir els símbols de jacobi d'un nombre complex"

#: ../src/mpwrap.c:4085
#, fuzzy
msgid "Can't get Legendre symbols complex numbers"
msgstr "No es pot obtenir el símbol de legendre d'un nombre complex"

#: ../src/mpwrap.c:4101
#, fuzzy
msgid "Can't get Jacobi symbol with Kronecker extension for complex numbers"
msgstr ""
"No es pot obtenir el símbol de jacobi amb l'extensió Kronecker d'un nombre "
"complex"

#: ../src/mpwrap.c:4117
#, fuzzy
msgid "Can't get Lucas number for complex numbers"
msgstr "No es pot obtenir el nombre de lucas d'un nombre complex"

#: ../src/mpwrap.c:4133
msgid "Can't get next prime for complex numbers"
msgstr "No es pot obtenir el següent primer d'un nombre complex"

#: ../src/mpwrap.c:4143 ../src/mpwrap.c:4155 ../src/mpwrap.c:4167
#: ../src/mpwrap.c:4179
#, c-format
msgid "%s: can't work on complex numbers"
msgstr "%s: no es pot treballar amb nombres complexos"

#: ../src/mpwrap.c:4408 ../src/mpwrap.c:4486 ../src/mpwrap.c:4551
#, c-format
msgid "%s: can't take logarithm of 0"
msgstr "%s: no es pot fer el logaritme de 0"

#: ../src/mpwrap.c:4880
#, fuzzy
msgid "arctan2 not defined for complex numbers"
msgstr "No es pot obtenir el següent primer d'un nombre complex"

#: ../src/mpwrap.c:4928
msgid "Can't make random integer out of a complex number"
msgstr "No es pot fer un enter a l'atzar a partir d'un nombre complex"

#: ../src/mpwrap.c:5090 ../src/mpwrap.c:5107
msgid "Can't make factorials of complex numbers"
msgstr "No es poden calcular factorials d'un nombre complex"

#: ../src/mpwrap.c:5124
#, fuzzy
msgid "Can't make binomials of complex numbers"
msgstr "No es poden calcular factorials d'un nombre complex"

#: ../src/mpwrap.c:5503 ../src/mpwrap.c:5514 ../src/mpwrap.c:5525
msgid "Can't determine type of a complex number"
msgstr "No es pot determinar el tipus d'un nombre complex"

#: ../src/mpwrap.c:5619 ../src/mpwrap.c:5642
msgid "Can't convert complex number into integer"
msgstr "No es pot convertir el nombre complex en enter"

#: ../src/mpwrap.c:5625 ../src/mpwrap.c:5648
msgid "Can't convert real number to integer"
msgstr "No es pot convertir el nombre real en enter"

#: ../src/mpwrap.c:5629 ../src/mpwrap.c:5652
msgid "Integer too large for this operation"
msgstr "L'enter és massa gran per a aquesta operació"

#: ../src/mpwrap.c:5665
#, fuzzy
msgid "Can't convert complex number into a double"
msgstr "No es pot convertir el nombre complex en enter"

#: ../src/mpwrap.c:5674
msgid "Can't convert real number to double"
msgstr "No es pot convertir el nombre real a doble precisió"

#: ../src/mpwrap.c:5680 ../src/mpwrap.c:5695
msgid "Number too large for this operation"
msgstr "El nombre és massa gran per a aquesta operació"

#: ../src/parseutil.c:57
msgid "ERROR: local statement not the first statement in function definition"
msgstr ""

#: ../src/plugin.c:155
msgid "Can't open plugin!"
msgstr "No es pot obrir el connector"

#: ../src/plugin.c:171 ../src/plugin.c:179
msgid "Can't initialize plugin!"
msgstr "No es pot inicialitzar el connector"

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

#: ../src/symbolic.c:709
#, fuzzy, c-format
msgid "%s: Cannot differentiate the '%s' function"
msgstr "%s: l'argument no és una funció"

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

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

#: ../src/symbolic.c:800
msgid ""
"Attempt to symbolically differentiate the function f, where f is a function "
"of one variable, returns null if unsuccessful but is silent."
msgstr ""

#: ../src/testplugin.c:13
msgid "This is the test-plugin function\n"
msgstr "Aquesta és la funció del connector de proves\n"

#: ../src/testplugin.c:24
msgid ""
"You have opened test plugin!\n"
"\n"
"Will evaluate 2+2 as a demonstration\n"
"2+2 = "
msgstr ""
"Heu obert un connector de prova.\n"
"\n"
"S'avaluarà 2+2 com a demostració\n"
"2+2 = "

#: ../src/testplugin.c:30
msgid ""
"For my next trick I will add a function named TestPluginFunction\n"
"\n"
msgstr ""
"I a continuació, afegiré una funció anomenada TestPluginFuction\n"
"\n"

#: ../src/testplugin.c:41
msgid ""
"That's it, isn't this fun\n"
"\n"
msgstr ""
"Oi que és divertit?\n"
"\n"

#: ../src/util.c:93 ../src/util.c:112
msgid "Stack underflow!"
msgstr "Desbordament inferior de la pila"

#, fuzzy
#~ msgid "%s: Color must be a string"
#~ msgstr "%s: els arguments modificadors han de ser de text"

#~ msgid "Generate random float"
#~ msgstr "Genera un nombre de coma flotant a l'atzar"

#~ msgid "Generate random integer"
#~ msgstr "Genera un nombre enter a l'atzar"

#~ msgid "Euler's Constant gamma good up to about precision of 9516 digits"
#~ msgstr "La constant gamma d'Euler amb una precisió de fins a 9516 dígits"

#~ msgid "Protect a variable from being modified"
#~ msgstr "Protegeix una variable perquè no es modifiqui"

#~ msgid "Unprotect a variable from being modified"
#~ msgstr "Desprotegeix una variable perquè es pugui modificar"

#~ msgid ""
#~ "\n"
#~ "Note: Compiled without MPFR (some operations may be slow) see www.mpfr.org"
#~ msgstr ""
#~ "\n"
#~ "Atenció: s'ha compilat sense MPFR (algunes operacions poden trigar molt), "
#~ "veieu www.mpfr.org"

#~ msgid "_Manual"
#~ msgstr "_Manual"

#~ msgid "Display the manual"
#~ msgstr "Mostra el manual"

#~ msgid "Interrupt"
#~ msgstr "Interromp"

#~ msgid "Run"
#~ msgstr "Executa"

#~ msgid "Open a GEL file for running"
#~ msgstr "Obre un fitxer GEL per ser executat"

#~ msgid "Exit"
#~ msgstr "Surt"

#~ msgid "Exit genius"
#~ msgstr "Surt del genius"

#~ msgid "translator_credits-PLEASE_ADD_YOURSELF_HERE"
#~ msgstr "Xavier A. Conde Rueda <xaviconde@eresmas.com>"

#~ msgid "Genius Line Plot"
#~ msgstr "Dibuix de línies Genius"

#~ msgid "Invalid Y range"
#~ msgstr "Conjunt de valors per a Y no vàlid"

#~ msgid "Number too large to compute exponential!"
#~ msgstr "El nombre és massa gran per calcular l'exponencial"