File: hi.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 (2065 lines) | stat: -rw-r--r-- 43,556 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
# translation of genius.HEAD.hi.po to Hindi
# This file is distributed under the same license as the PACKAGE package.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# G Karunakar <karunakar@freedomink.org>, 2003
#
msgid ""
msgstr ""
"Project-Id-Version: genius.HEAD.hi\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2004-02-20 03:37+0100\n"
"PO-Revision-Date: 2003-08-16 18:13+0530\n"
"Last-Translator: G Karunakar <karunakar@freedomink.org>\n"
"Language-Team: Hindi <indlinux-hindi-gnome@lists.sourceforge.net>\n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.0\n"

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

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

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

#: src/calc.c:992 src/eval.c:5090 src/eval.c:5273
msgid "Unexpected operator!"
msgstr ""

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

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

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

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

#: src/calc.c:1351 src/eval.c:5447
msgid "Unexpected node!"
msgstr ""

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

#: src/calc.c:1670 src/calc.c:1679 src/calc.c:1684 src/calc.c:1693
#: src/calc.c:1698 src/calc.c:1707 src/calc.c:1712 src/calc.c:1721
#: src/calc.c:1726 src/calc.c:1737 src/calc.c:1742 src/calc.c:1753
#: src/calc.c:1760 src/calc.c:1773 src/calc.c:1779 src/calc.c:1786
#: src/calc.c:1795 src/calc.c:1801 src/calc.c:1808 src/calc.c:1814
#: src/calc.c:1823
msgid "Badly formed record"
msgstr ""

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

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

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

#: src/calc.c:1893 src/calc.c:2308 src/calc.c:2342
#, c-format
msgid "Can't open file: '%s'"
msgstr ""

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

#: src/calc.c:2043
msgid "Load a plugin"
msgstr "प्लगिन लोड करें"

#: src/calc.c:2046
msgid "List files in the current directory"
msgstr "वर्तमान डॉयरेक्ट्री मे फाइल दिखाएं"

#: src/calc.c:2049
msgid "Change directory"
msgstr "डॉयरेक्ट्री बदलें"

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

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

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

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

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

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

#: src/calc.c:2084
msgid ""
"\n"
"Commands:\n"
msgstr ""
"\n"
"आदेश :\n"

#: src/calc.c:2132
msgid ""
"\n"
"Undocumented:\n"
msgstr ""
"\n"
"अलिखित :\n"

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

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

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

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

#: src/calc.c:2245
#, c-format
msgid "Description: %s\n"
msgstr "विवरण : %s\n"

#: src/calc.c:2381 src/calc.c:2392
#, c-format
msgid "Can't expand '%s'"
msgstr "नहीं फैला सकते '%s'"

#: src/calc.c:2462
#, c-format
msgid "Cannot open plugin '%s'!"
msgstr "प्लगिन नही खोल सकते '%s'!"

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

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

#: src/calc.c:2793
#, fuzzy, c-format
msgid "ERROR: %s before newline"
msgstr "नईपंक्ति से पहले"

#: src/calc.c:2795
#, fuzzy, c-format
msgid "ERROR: %s at end of input"
msgstr "इंपुट के अंत मे"

#: src/calc.c:2802
#, fuzzy, c-format
msgid "ERROR: %s before '%s'"
msgstr " पहले '"

#: src/compil.c:426 src/compil.c:432
msgid "Bad tree record when decompiling"
msgstr ""

#: src/eval.c:1185 src/eval.c:1222 src/eval.c:1236
msgid "Cannot compare non value-only matrixes"
msgstr ""

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

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

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

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

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

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

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

#: src/eval.c:1687 src/eval.c:1803 src/eval.c:1870
msgid "Matrix appears singular and can't be inverted"
msgstr ""

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

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

#: src/eval.c:2506 src/eval.c:3571
msgid "Unevaluatable function type encountered!"
msgstr ""

#: src/eval.c:2528 src/eval.c:2546 src/eval.c:3360
#, c-format
msgid "Variable '%s' used uninitialized"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: src/eval.c:4033 src/eval.c:4048
msgid "Matrix index out of range"
msgstr ""

#: src/eval.c:4095 src/eval.c:4156 src/eval.c:4218 src/eval.c:4262
#, c-format
msgid "Trying to set a protected id '%s'"
msgstr ""

#: src/eval.c:4113 src/eval.c:4152
msgid "Indexed Lvalue not user function"
msgstr ""

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

#: src/eval.c:4142 src/eval.c:4253
msgid "Dereference of undefined variable!"
msgstr ""

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

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

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

#: src/eval.c:4234 src/eval.c:4274
msgid "Referencing an undefined variable!"
msgstr ""

#: src/eval.c:4320 src/eval.c:4398 src/eval.c:4407
msgid "Wrong matrix dimensions when setting"
msgstr ""

#: src/eval.c:4338 src/eval.c:4378 src/eval.c:4444 src/eval.c:4623
#: src/eval.c:4676
msgid "Matrix index not an integer or a vector"
msgstr ""

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

#: src/eval.c:4518 src/eval.c:4560 src/eval.c:4635
msgid "Index works only on matricies"
msgstr ""

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

#: src/eval.c:4695
msgid "number"
msgstr "अंक"

#: src/eval.c:4696
msgid "matrix"
msgstr "साँचा"

#: src/eval.c:4697
msgid "string"
msgstr "वाक्य"

#: src/eval.c:4698
msgid "function"
msgstr "प्रकार्य"

#: src/eval.c:4721
msgid "Absolute value"
msgstr "पूर्ण मान"

#: src/eval.c:4722
msgid "Addition"
msgstr "जोडना"

#: src/eval.c:4723
msgid "Subtraction"
msgstr "घटाना"

#: src/eval.c:4724
msgid "Multiplication"
msgstr "गुणक"

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

#: src/eval.c:4726
msgid "Division"
msgstr "भाग"

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

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

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

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

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

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

#: src/eval.c:4733
msgid "Power"
msgstr "घात"

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

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

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

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

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

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

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

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

#: src/eval.c:4761
#, c-format
msgid "Bad types for '%s'"
msgstr "'%s' के लिए गलत प्रकार"

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

#: src/eval.c:4791
#, c-format
msgid "Bad type for '%s'"
msgstr "'%s' के लिए गलत प्रकार"

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

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

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

#: src/funclib.c:64
#, c-format
msgid "%s: argument number %d not an integer"
msgstr ""

#: src/funclib.c:77
#, c-format
msgid "%s: argument number %d not an integer or a matrix"
msgstr ""

#: src/funclib.c:91
#, c-format
msgid "%s: argument number %d not a positive integer"
msgstr ""

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

#: src/funclib.c:112
#, c-format
msgid "%s: argument number %d not a real number"
msgstr ""

#: src/funclib.c:122
#, c-format
msgid "%s: argument number %d not a matrix"
msgstr ""

#: src/funclib.c:133
#, c-format
msgid "%s: argument number %d not a value only matrix"
msgstr ""

#: src/funclib.c:143 src/funclib.c:154
#, c-format
msgid "%s: argument number %d not a string"
msgstr ""

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

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

#: src/funclib.c:214
msgid "Cannot locate the manual"
msgstr "मेनयुअल नहीं मिला"

#: src/funclib.c:230
#, 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 2 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, write to the Free Software\n"
"    Foundation,  Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,\n"
"    USA.\n"
msgstr ""

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

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

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

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

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

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

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

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

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

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

#: src/funclib.c:2048 src/funclib.c:2088 src/funclib.c:3103
#, c-format
msgid "%s: too many arguments"
msgstr ""

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

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

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

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

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

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

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

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

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

#: src/funclib.c:3320 src/funclib.c:3409 src/funclib.c:3628 src/funclib.c:3683
#, c-format
msgid "%s: value out of range"
msgstr ""

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

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

#: src/funclib.c:3829 src/funclib.c:3865 src/funclib.c:4073
#, c-format
msgid "%s: argument should be between %d and %d"
msgstr ""

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

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

#: src/funclib.c:4123
msgid "Basic"
msgstr "मूलतत्त्व"

#: src/funclib.c:4124
msgid "Parameters"
msgstr ""

#: src/funclib.c:4125
msgid "Constants"
msgstr ""

#: src/funclib.c:4126
msgid "Numeric"
msgstr "आंकिक"

#: src/funclib.c:4127
msgid "Trigonometry"
msgstr ""

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

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

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

#: src/funclib.c:4131
msgid "Combinatorics"
msgstr ""

#: src/funclib.c:4132
msgid "Calculus"
msgstr ""

#: src/funclib.c:4133
msgid "Functions"
msgstr "कार्य"

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

#: src/funclib.c:4135
msgid "Statistics"
msgstr "आंकडे"

#: src/funclib.c:4136
msgid "Polynomials"
msgstr ""

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

#: src/funclib.c:4138
msgid "Miscellaneous"
msgstr "विभिन्न"

#. bogus value
#: src/funclib.c:4171
msgid "Displays the user manual"
msgstr ""

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

#: src/funclib.c:4173
msgid "Exits the program"
msgstr "प्रोग्राम से बाहर"

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

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

#: src/funclib.c:4177
msgid "Changes current directory"
msgstr "वर्तमान डॉयरेक्ट्री बदलेगा"

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: src/funclib.c:4216
msgid "Calculates the cossine function"
msgstr ""

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

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

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

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

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

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

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

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

#: src/funclib.c:4228
msgid "Euler's Constant gamma good up to about precision of 9516 digits"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#: src/genius.c:96
#, c-format
msgid "line %d: %s\n"
msgstr "पंक्ति %d: %s\n"

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

#: src/genius.c:179 src/gnome-genius.c:2371
msgid ""
"\n"
"Note: Compiled without MPFR (some operations may be slow) see www.mpfr.org"
msgstr ""

#: src/genius.c:255
#, c-format
msgid ""
"Genius %s usage:\n"
"\n"
"genius [options] [files]\n"
"\n"
"\t--precision=num   \tFloating point precision [256]\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--[no]readline    \tUse readline if it is available [ON]\n"
"\t--[no]compile     \tCompile everything and dump it to stdout [OFF]\n"
"\t--[no]quiet       \tBe quiet during non-interactive mode,\n"
"\t                  \t(always on when compiling) [OFF]\n"
"\n"
msgstr ""

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

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

#: src/genius.c:372 src/genius.c:432
msgid "Can't open file"
msgstr "फाइल नही खोल सके"

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

#: src/genius.lang.h:2
#, fuzzy
msgid "Commands"
msgstr ""
"\n"
"आदेश :\n"

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

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

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

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

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

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

#: src/genius.lang.h:9
#, fuzzy
msgid "String"
msgstr "वाक्य"

#: src/gnome-genius.c:169
msgid "_New Program"
msgstr "नया प्रोग्राम (_N)"

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

#: src/gnome-genius.c:176
msgid "_Reload From Disk"
msgstr "डिस्क से पुनः लोड करें (_R)"

#: src/gnome-genius.c:176
msgid "Reload the selected program from disk"
msgstr "चयनित प्रोग्राम डिस्क से पुनः लोड करें (_R)"

#: src/gnome-genius.c:180
msgid "_Load and Run"
msgstr "लोड करें और चलाएं (_L)"

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

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

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

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

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

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

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

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

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

#: src/gnome-genius.c:219
msgid "_Run"
msgstr "चलाएं (_R)"

#: src/gnome-genius.c:219 src/gnome-genius.c:264
msgid "Run current program"
msgstr "वर्तमान प्रोग्राम चलाएं"

#: src/gnome-genius.c:220
msgid "_Interrupt"
msgstr "रुकावट (_I)"

#: src/gnome-genius.c:220 src/gnome-genius.c:262
msgid "Interrupt current calculation"
msgstr "वर्तमान गणना रोकें"

#. FIXME: no help
#. * GNOMEUIINFO_HELP("genius"),
#: src/gnome-genius.c:227
msgid "_Manual"
msgstr "मेनुअल (_M)"

#: src/gnome-genius.c:228
msgid "Display the manual"
msgstr "मेनुअल दिखाएं"

#: src/gnome-genius.c:231
msgid "_Warranty"
msgstr "अधिकार (_W)"

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

#: src/gnome-genius.c:250
msgid "_Calculator"
msgstr "गणक (c)"

#: src/gnome-genius.c:252
msgid "P_lugins"
msgstr "प्लगिन (_l)"

#: src/gnome-genius.c:254
msgid "_Programs"
msgstr "प्रोग्राम (_P)"

#: src/gnome-genius.c:262
msgid "Interrupt"
msgstr "रुकावट"

#: src/gnome-genius.c:264
msgid "Run"
msgstr "चलाएं"

#: src/gnome-genius.c:265
msgid "Open"
msgstr "खोलें"

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

#: src/gnome-genius.c:266
msgid "Exit"
msgstr "बाहर"

#: src/gnome-genius.c:266
msgid "Exit genius"
msgstr "जिनियस से बाहर जाएं"

#: src/gnome-genius.c:311
msgid "Error"
msgstr "त्रुटि"

#: src/gnome-genius.c:311
msgid "Information"
msgstr "सूचना"

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

#: src/gnome-genius.c:376
#, c-format
msgid "\\e[01;31mToo many errors! (%d followed)\\e[0m\n"
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:499
msgid "translator_credits-PLEASE_ADD_YOURSELF_HERE"
msgstr "अनुवादक श्रेय - जी करुणाकर (_c)"

#: src/gnome-genius.c:502 src/gnome-genius.c:1977
msgid "GENIUS Calculator"
msgstr "जीनियस गणक"

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

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

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

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

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

#: src/gnome-genius.c:796
msgid "GENIUS Calculator Setup"
msgstr "जीनियस गणक सेटप"

#: src/gnome-genius.c:813
msgid "Output"
msgstr "उत्पादन"

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

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

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

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

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

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

#: src/gnome-genius.c:879
msgid "Display errors in a dialog"
msgstr "त्रुटियां डॉयलोग में दिखाएं"

#: src/gnome-genius.c:887
msgid "Display information messages in a dialog"
msgstr "सूचना संदेश डॉयलोग में दिखाएं"

#: src/gnome-genius.c:898
msgid "Maximum errors to display (0=unlimited)"
msgstr "दिखाने के लिए अधिकतम त्रुटियां (0= असीमित)"

#: src/gnome-genius.c:922
msgid "Precision"
msgstr "परिशुद्धता"

#: src/gnome-genius.c:932
msgid ""
"NOTE: The floating point precision might not take effect\n"
"for all numbers immediately, only new numbers calculated\n"
"and new variables will be affected."
msgstr ""

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

#: src/gnome-genius.c:965
msgid "Terminal"
msgstr "टर्मिनल"

#: src/gnome-genius.c:968
msgid "Terminal options"
msgstr "टर्मिनल विकल्प"

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

#: src/gnome-genius.c:1000
msgid "Font:"
msgstr "फोंट"

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

#: src/gnome-genius.c:1104 src/gnome-genius.c:1629
msgid "Cannot open file!"
msgstr "फाइल नही खोल सके"

#: src/gnome-genius.c:1128
msgid "Load GEL file"
msgstr "GEL फाइल लोड करें"

#: src/gnome-genius.c:1477
msgid "Cannot open file"
msgstr "फाइल नही खोल सके"

#: src/gnome-genius.c:1509 src/gnome-genius.c:2356
#, c-format
msgid "Line: %d"
msgstr "पंक्ति : %d"

#. the file name will have an underscore
#: src/gnome-genius.c:1580
#, c-format
msgid "Program_%d.gel"
msgstr ""

#: src/gnome-genius.c:1581
#, c-format
msgid "Program %d"
msgstr "प्रोग्राम %d"

#: src/gnome-genius.c:1597
#, c-format
msgid "Cannot open %s"
msgstr "%s नही खोल सके"

#: src/gnome-genius.c:1651 src/gnome-genius.c:1807
msgid "Open GEL file"
msgstr "GEL फाइल खोलें"

#. new fname
#: src/gnome-genius.c:1740 src/gnome-genius.c:1766
#, c-format
msgid ""
"<b>Cannot save file</b>\n"
"Details: %s"
msgstr ""
"<b>फाइल संग्रहित नही कर सके</b>\n"
"विवरण : %s"

#: src/gnome-genius.c:1762
msgid "File already exists.  Overwrite it?"
msgstr "फाइल अस्तित्व में है, लिखे पर लिखें?"

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

#: src/gnome-genius.c:2163
msgid "Can't execute genius-readline-helper-fifo!\n"
msgstr ""

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

#: src/gnome-genius.c:2540
msgid "Console"
msgstr "कंसोल"

#: src/gnome-genius.c:2572
#, c-format
msgid ""
"\\e[0;32mGenius %s\\e[0m\n"
"%s\n"
"This is free software with ABSOLUTELY NO WARRANTY.\n"
"For license details type `\\e[01;36mwarranty\\e[0m'.\n"
"For help type '\\e[01;36mmanual\\e[0m' or '\\e[01;36mhelp\\e[0m'.%s\n"
"\n"
msgstr ""

#: src/gnome-genius.desktop.in.h:1
msgid "Genius Math Tool"
msgstr "जीनियस गणित औजार"

#: src/gnome-genius.desktop.in.h:2
msgid "Genius Mathematical Tool and Calculator"
msgstr "जीनियस गणित औजार और गणक"

#: src/graphing.c:84
msgid "Genius Line Plot"
msgstr ""

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

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

#: src/graphing.c:395 src/graphing.c:401 src/graphing.c:407 src/graphing.c:413
msgid "Graph limits not given as numbers"
msgstr ""

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

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

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

#. bogus value
#: src/graphing.c:624
msgid ""
"Plot a function with a line (very rudimentary).  First come the functions "
"(up to 10) then optionally limits as x1,x2,y1,y2"
msgstr ""

#: src/graphing.c:626
msgid "Plotting window (limits) as a 4-vector of the form [x1,x2,y1,y2]"
msgstr ""

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

#: src/mpwrap.c:826
msgid "Number too large to compute exponential!"
msgstr ""

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

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

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

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

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

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

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

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

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

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

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

#: src/mpwrap.c:2623
msgid "perfect_square: can't work on non-integers!"
msgstr ""

#: src/mpwrap.c:2642
msgid "perfect_power: can't work on non-integers!"
msgstr ""

#: src/mpwrap.c:2659
msgid "even_p: can't work on non-integers!"
msgstr ""

#: src/mpwrap.c:2676
msgid "odd_p: can't work on non-integers!"
msgstr ""

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

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

#: src/mpwrap.c:2731 src/mpwrap.c:2738 src/mpwrap.c:2779 src/mpwrap.c:2786
msgid "Can't do factorials of negative numbers!"
msgstr ""

#: src/mpwrap.c:3166 src/mpwrap.c:3254 src/mpwrap.c:5162 src/mpwrap.c:5178
msgid "powm: Bad types for mod power"
msgstr ""

#: src/mpwrap.c:3201 src/mpwrap.c:3224
msgid "Can't invert in powm"
msgstr ""

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

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

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

#: src/mpwrap.c:4558 src/mpwrap.c:5759 src/mpwrap.c:5771
msgid "Can't compare complex numbers"
msgstr ""

#: src/mpwrap.c:4767 src/mpwrap.c:4782 src/mpwrap.c:4833 src/mpwrap.c:4856
#: src/mpwrap.c:4869 src/mpwrap.c:4914
msgid "Division by zero!"
msgstr ""

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

#. FIXME: give the numbers
#: src/mpwrap.c:4936
msgid "No modulo inverse found!"
msgstr ""

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

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

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

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

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

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

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

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

#: src/mpwrap.c:5047
msgid "perfect_square: can't work on complex numbers"
msgstr ""

#: src/mpwrap.c:5058
msgid "perfect_power: can't work on complex numbers"
msgstr ""

#: src/mpwrap.c:5069
msgid "even_p: can't work on complex numbers"
msgstr ""

#: src/mpwrap.c:5080
msgid "odd_p: can't work on complex numbers"
msgstr ""

#: src/mpwrap.c:5251
msgid "ln: can't take logarithm of 0"
msgstr ""

#: src/mpwrap.c:5321
msgid "log2: can't take logarithm of 0"
msgstr ""

#: src/mpwrap.c:5387
msgid "log10: can't take logarithm of 0"
msgstr ""

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

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

#: src/mpwrap.c:6104 src/mpwrap.c:6126 src/mpwrap.c:6148
msgid "Can't determine type of a complex number"
msgstr ""

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

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

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

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

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

#: src/plugin.c:130
msgid "Can't open plugin!"
msgstr "प्लगिन नही खोल सके!"

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

#: src/testplugin.c:14
msgid "This is the test-plugin function\n"
msgstr ""

#: src/testplugin.c:25
msgid ""
"You have opened test plugin!\n"
"\n"
"Will evaluate 2+2 as a demonstration\n"
"2+2 = "
msgstr ""

#: src/testplugin.c:31
msgid ""
"For my next trick I will add a function named TestPluginFunction\n"
"\n"
msgstr ""

#: src/testplugin.c:42
msgid ""
"That's it, isn't this fun\n"
"\n"
msgstr ""

#: src/util.c:116
msgid "Stack underflow!"
msgstr ""