~ubuntu-branches/ubuntu/natty/kde-l10n-hu/natty-updates

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
# Sári Gábor <saga@mail.externet.hu>, 1999.
#
msgid ""
msgstr ""
"Project-Id-Version: KDE 4.4\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2011-06-06 14:23+0200\n"
"PO-Revision-Date: 2010-01-04 12:12+0100\n"
"Last-Translator: Tamas Szanto <taszanto@gmail.com>\n"
"Language-Team: Hungarian <kde-lista@sophia.jpte.hu>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8-bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#: kcalc_const_button.cpp:32 kcalc_const_button.cpp:44
msgctxt "Write display data into memory"
msgid "Store"
msgstr "Tárolás"

#: kcalc_const_button.cpp:32 kcalc_const_button.cpp:44
msgid "Write display data into memory"
msgstr "A kiírt adat memóriába mentése"

#: kcalc_const_button.cpp:76
msgid "Set Name"
msgstr "Név beállítása"

#: kcalc_const_button.cpp:79
msgid "Choose From List"
msgstr "Választás listából"

#: kcalc_const_button.cpp:92
msgid "New Name for Constant"
msgstr "A konstans új neve"

#: kcalc_const_button.cpp:92
msgid "New name:"
msgstr "Név:"

#: kcalc_const_menu.cpp:90
msgid "Mathematics"
msgstr "Matematika"

#: kcalc_const_menu.cpp:91
msgid "Electromagnetism"
msgstr "Elektromágnesesség"

#: kcalc_const_menu.cpp:92
msgid "Atomic && Nuclear"
msgstr "Atomfizika"

#: kcalc_const_menu.cpp:93
msgid "Thermodynamics"
msgstr "Termodinamika"

#: kcalc_const_menu.cpp:94
msgid "Gravitation"
msgstr "Gravitáció"

#: kcalc.cpp:70
msgid "KDE Calculator"
msgstr "KDE számológép"

#: kcalc.cpp:123
msgid "&Constants"
msgstr "&Konstansok"

#: kcalc.cpp:197
msgid "Simple Mode"
msgstr ""

#: kcalc.cpp:201
msgid "Science Mode"
msgstr ""

#: kcalc.cpp:205
#, fuzzy
#| msgid "&Statistic Buttons"
msgid "Statistic Mode"
msgstr "Statisztikai &gombok"

#. i18n: file: kcalc.kcfg:119
#. i18n: ectx: label, entry (CalculatorMode), group (General)
#: kcalc.cpp:209 rc.cpp:621
msgid "Numeral System Mode"
msgstr ""

#: kcalc.cpp:214
msgid "&Constants Buttons"
msgstr "Konstans-&gombok"

#: kcalc.cpp:220
msgid "Show B&it Edit"
msgstr "B&itszerkesztő"

#: kcalc.cpp:351
msgctxt "Add display to memory"
msgid "M+"
msgstr "M+"

#: kcalc.cpp:351
msgid "Add display to memory"
msgstr "A kiírt adat hozzáadása a memória tartalmához"

#: kcalc.cpp:352
msgctxt "Subtract from memory"
msgid "M−"
msgstr ""

#: kcalc.cpp:352
msgid "Subtract from memory"
msgstr "Kivonás a memória tartalmából"

#: kcalc.cpp:379
msgctxt "Third power"
msgid "x<sup>3</sup>"
msgstr "x<sup>3</sup>"

#: kcalc.cpp:379
msgid "Third power"
msgstr "Harmadik hatvány"

#: kcalc.cpp:380
msgid "Cube root"
msgstr "Köbgyök"

#: kcalc.cpp:487
msgctxt "Sine"
msgid "Sin"
msgstr "Sin"

#. i18n: file: kcalc.ui:220
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbSin)
#: kcalc.cpp:487 rc.cpp:212
msgid "Sine"
msgstr "Szinusz"

#: kcalc.cpp:488
msgctxt "Arc sine"
msgid "Asin"
msgstr "Arc sin"

#: kcalc.cpp:488
msgid "Arc sine"
msgstr "Arkusz szinusz"

#: kcalc.cpp:489
msgctxt "Hyperbolic sine"
msgid "Sinh"
msgstr "Sinh"

#: kcalc.cpp:489
msgid "Hyperbolic sine"
msgstr "Hiperbolikus koszinusz"

#: kcalc.cpp:491
msgctxt "Inverse hyperbolic sine"
msgid "Asinh"
msgstr "Arc sinh"

#: kcalc.cpp:491
msgid "Inverse hyperbolic sine"
msgstr "Inverz hiperbolikus szinusz"

#: kcalc.cpp:498
msgctxt "Cosine"
msgid "Cos"
msgstr "Cos"

#. i18n: file: kcalc.ui:286
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbCos)
#: kcalc.cpp:498 rc.cpp:251
msgid "Cosine"
msgstr "Koszinusz"

#: kcalc.cpp:499
msgctxt "Arc cosine"
msgid "Acos"
msgstr "Arc cos"

#: kcalc.cpp:499
msgid "Arc cosine"
msgstr "Arkusz koszinusz"

#: kcalc.cpp:500
msgctxt "Hyperbolic cosine"
msgid "Cosh"
msgstr "Cosh"

#: kcalc.cpp:500
msgid "Hyperbolic cosine"
msgstr "Hiperbolikus koszinusz"

#: kcalc.cpp:502
msgctxt "Inverse hyperbolic cosine"
msgid "Acosh"
msgstr "Arc cosh"

#: kcalc.cpp:502
msgid "Inverse hyperbolic cosine"
msgstr "Inverz hiperbolikus koszinusz"

#: kcalc.cpp:509
msgctxt "Tangent"
msgid "Tan"
msgstr "Tan"

#. i18n: file: kcalc.ui:349
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbTan)
#: kcalc.cpp:509 rc.cpp:287
msgid "Tangent"
msgstr "Tangens"

#: kcalc.cpp:510
msgctxt "Arc tangent"
msgid "Atan"
msgstr "Arc tan"

#: kcalc.cpp:510
msgid "Arc tangent"
msgstr "Arkusz tangens"

#: kcalc.cpp:511
msgctxt "Hyperbolic tangent"
msgid "Tanh"
msgstr "Tanh"

#: kcalc.cpp:511
msgid "Hyperbolic tangent"
msgstr "Hiperbolikus tangens"

#: kcalc.cpp:513
msgctxt "Inverse hyperbolic tangent"
msgid "Atanh"
msgstr "Arc tanh"

#: kcalc.cpp:513
msgid "Inverse hyperbolic tangent"
msgstr "Inverz hiperbolikus tangens"

#: kcalc.cpp:520
msgctxt "Logarithm to base 10"
msgid "Log"
msgstr "Log"

#. i18n: file: kcalc.ui:415
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbLog)
#: kcalc.cpp:520 rc.cpp:326
msgid "Logarithm to base 10"
msgstr "10-es alapú logaritmus"

#: kcalc.cpp:521
msgctxt "10 to the power of x"
msgid "10<sup>x</sup>"
msgstr "10<sup>x</sup>"

#: kcalc.cpp:521
msgid "10 to the power of x"
msgstr "10 emelése az x-edik hatványra"

#: kcalc.cpp:527
msgctxt "Natural log"
msgid "Ln"
msgstr "Ln"

#. i18n: file: kcalc.ui:478
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbLn)
#: kcalc.cpp:527 rc.cpp:362
msgid "Natural log"
msgstr "Természetes alapú logaritmus"

#: kcalc.cpp:528
msgctxt "Exponential function"
msgid "e<sup>x</sup>"
msgstr "e<sup>x</sup>"

#: kcalc.cpp:528
msgid "Exponential function"
msgstr "Exponenciális függvény"

#: kcalc.cpp:544
msgctxt "Number of data entered"
msgid "N"
msgstr "N"

#. i18n: file: kcalc.ui:144
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbNData)
#: kcalc.cpp:544 rc.cpp:170
msgid "Number of data entered"
msgstr "A bevitt adatok száma"

#: kcalc.cpp:546
msgid "Sum of all data items"
msgstr "Az adatok összege"

#: kcalc.cpp:553
msgctxt "Mean"
msgid "Mea"
msgstr "Mea"

#. i18n: file: kcalc.ui:210
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbMean)
#: kcalc.cpp:553 rc.cpp:206
msgid "Mean"
msgstr "Középérték"

#: kcalc.cpp:556
msgid "Sum of all data items squared"
msgstr "Az adatok négyzetösszege"

#. i18n: file: kcalc.ui:276
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbSd)
#: kcalc.cpp:564 rc.cpp:245
msgid "Standard deviation"
msgstr "Szórás"

#: kcalc.cpp:566
msgid "Sample standard deviation"
msgstr "Minta standard szórás"

#: kcalc.cpp:577
msgctxt "Enter data"
msgid "Dat"
msgstr "Dat"

#. i18n: file: kcalc.ui:402
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbDat)
#: kcalc.cpp:577 rc.cpp:317
msgid "Enter data"
msgstr "Adatbevitel"

#: kcalc.cpp:578
msgctxt "Delete last data item"
msgid "CDat"
msgstr "CDat"

#: kcalc.cpp:578
msgid "Delete last data item"
msgstr "Az utolsó adat törlése"

#: kcalc.cpp:644
msgctxt "Modulo"
msgid "Mod"
msgstr "Mod"

#. i18n: file: kcalc.ui:180
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbMod)
#: kcalc.cpp:644 rc.cpp:191
msgid "Modulo"
msgstr "Maradék"

#: kcalc.cpp:645
msgctxt "Integer division"
msgid "IntDiv"
msgstr "IntDiv"

#: kcalc.cpp:645
msgid "Integer division"
msgstr "Egész osztás"

#: kcalc.cpp:653
msgctxt "Reciprocal"
msgid "1/x"
msgstr "1/x"

#. i18n: file: kcalc.ui:243
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbReci)
#: kcalc.cpp:653 rc.cpp:227
msgid "Reciprocal"
msgstr "Reciprok"

#: kcalc.cpp:654
msgctxt "n Choose m"
msgid "nCm"
msgstr "nCm"

#: kcalc.cpp:654
msgid "n Choose m"
msgstr "Választás n - m"

#: kcalc.cpp:661
msgctxt "Factorial"
msgid "x!"
msgstr "x!"

#. i18n: file: kcalc.ui:309
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbFactorial)
#: kcalc.cpp:661 rc.cpp:266
msgid "Factorial"
msgstr "Faktoriális"

#: kcalc.cpp:667
msgctxt "Square"
msgid "x<sup>2</sup>"
msgstr "x<sup>2</sup>"

#. i18n: file: kcalc.ui:372
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbSquare)
#: kcalc.cpp:667 rc.cpp:302
msgid "Square"
msgstr "Négyzetre emelés"

#: kcalc.cpp:668
msgid "Square root"
msgstr "Négyzetgyök"

#: kcalc.cpp:677
msgctxt "x to the power of y"
msgid "x<sup>y</sup>"
msgstr "x<sup>y</sup>"

#. i18n: file: kcalc.ui:438
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbPower)
#: kcalc.cpp:677 rc.cpp:341
msgid "x to the power of y"
msgstr "x emelése az y-odik hatványra"

#: kcalc.cpp:678
msgctxt "x to the power of 1/y"
msgid "x<sup>1/y</sup>"
msgstr "x<sup>1/y</sup>"

#: kcalc.cpp:678
msgid "x to the power of 1/y"
msgstr "x emelése az 1/y-odik hatványra"

#. i18n: file: kcalc.ui:501
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbEE)
#: kcalc.cpp:687 rc.cpp:377
msgid "Exponent"
msgstr "Exponens"

#: kcalc.cpp:890
msgctxt "Second button functions are active"
msgid "SHIFT"
msgstr ""

#. i18n: file: kcalc.ui:827
#. i18n: ectx: property (text), widget (KCalcButton, pbShift)
#: kcalc.cpp:891 rc.cpp:470
msgid "Shift"
msgstr ""

#: kcalc.cpp:893
#, fuzzy
#| msgid "OR"
msgctxt "Normal button functions are active"
msgid "NORM"
msgstr "OR"

#: kcalc.cpp:990 kcalc.cpp:991
msgid "M"
msgstr "M"

#: kcalc.cpp:1374
msgid "Last stat item erased"
msgstr "Az utolsó bevitel törölve"

#: kcalc.cpp:1384
msgid "Stat mem cleared"
msgstr "Memória törölve"

#. i18n: file: general.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, General)
#: kcalc.cpp:1427 rc.cpp:74
msgid "General"
msgstr "Általános"

#: kcalc.cpp:1427
msgid "General Settings"
msgstr "Általános beállítások"

#: kcalc.cpp:1432
msgid "Font"
msgstr "Betűtípus"

#: kcalc.cpp:1432
msgid "Select Display Font"
msgstr "Válassza ki a képernyő-betűtípust"

#: kcalc.cpp:1437
msgid "Colors"
msgstr "Színek"

#: kcalc.cpp:1437
msgid "Button & Display Colors"
msgstr "A nyomógombok és a kijelző színei"

#. i18n: file: constants.ui:13
#. i18n: ectx: property (windowTitle), widget (QWidget, Constants)
#. i18n: file: constants.ui:19
#. i18n: ectx: property (title), widget (QGroupBox, constantsBox)
#: kcalc.cpp:1486 rc.cpp:38 rc.cpp:41
msgid "Constants"
msgstr "Konstansok"

#: kcalc.cpp:1486
msgid "Define Constants"
msgstr "Konstans definiálása"

#. i18n: file: kcalc.ui:14
#. i18n: ectx: property (windowTitle), widget (QWidget, KCalculator)
#: kcalc.cpp:1903 rc.cpp:131
msgid "KCalc"
msgstr "KCalc"

#: kcalc.cpp:1907
msgid ""
"(c) 2000-2008, The KDE Team\n"
"(c) 2003-2005, Klaus Niederkrüger\n"
"(c) 1996-2000, Bernd Johannes Wuebben"
msgstr ""
"(c) A KDE fejlesztői, 2000-2008.\n"
"(c) Klaus Niederkrüger, 2003-2005.\n"
"(c) Bernd Johannes Wuebben, 1996-2000."

#: kcalc.cpp:1914
msgid "Klaus Niederkrüger"
msgstr "Klaus Niederkrüger"

#: kcalc.cpp:1915
msgid "Bernd Johannes Wuebben"
msgstr "Bernd Johannes Wuebben"

#: kcalc.cpp:1916
msgid "Evan Teran"
msgstr "Evan Teran"

#: kcalc.cpp:1916
msgid "Maintainer"
msgstr "Karbantartó"

#: kcalc.cpp:1917
msgid "Espen Sand"
msgstr "Espen Sand"

#: kcalc.cpp:1918
msgid "Chris Howells"
msgstr "Chris Howells"

#: kcalc.cpp:1919
msgid "Aaron J. Seigo"
msgstr "Aaron J. Seigo"

#: kcalc.cpp:1920
msgid "Charles Samuels"
msgstr "Charles Samuels"

#: kcalc.cpp:1922
msgid "René Mérou"
msgstr "René Mérou"

#: kcalc.cpp:1923
msgid "Michel Marti"
msgstr "Michel Marti"

#: kcalc.cpp:1924
msgid "David Johnson"
msgstr "David Johnson"

#: rc.cpp:1
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Sári Gábor,Szántó Tamás"

#: rc.cpp:2
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr "saga@mail.externet.hu,tszanto@interware.hu"

#. i18n: file: kcalcui.rc:4
#. i18n: ectx: Menu (settings)
#: rc.cpp:5
msgid "&Settings"
msgstr "&Beállítások"

#. i18n: file: colors.ui:16
#. i18n: ectx: property (title), widget (QGroupBox, displayColorsBox)
#: rc.cpp:8
msgid "Display Colors"
msgstr "A megjelenítő színei"

#. i18n: file: colors.ui:24
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#: rc.cpp:11
msgid "&Foreground:"
msgstr "&Előtér:"

#. i18n: file: colors.ui:51
#. i18n: ectx: property (text), widget (QLabel, textLabel2)
#: rc.cpp:14
msgid "&Background:"
msgstr "&Háttér:"

#. i18n: file: colors.ui:96
#. i18n: ectx: property (title), widget (QGroupBox, buttonColorsBox)
#: rc.cpp:17
msgid "Button Colors"
msgstr "A nyomógombok színei"

#. i18n: file: colors.ui:104
#. i18n: ectx: property (text), widget (QLabel, textLabel3)
#: rc.cpp:20
msgid "&Functions:"
msgstr "&Függvények:"

#. i18n: file: colors.ui:124
#. i18n: ectx: property (text), widget (QLabel, textLabel4)
#: rc.cpp:23
msgid "St&atistic functions:"
msgstr "Statisztikai fü&ggvények:"

#. i18n: file: colors.ui:144
#. i18n: ectx: property (text), widget (QLabel, textLabel5)
#: rc.cpp:26
msgid "He&xadecimals:"
msgstr "He&xadecimális számok:"

#. i18n: file: colors.ui:164
#. i18n: ectx: property (text), widget (QLabel, textLabel6)
#: rc.cpp:29
msgid "&Numbers:"
msgstr "Szám&ok:"

#. i18n: file: colors.ui:184
#. i18n: ectx: property (text), widget (QLabel, textLabel7)
#: rc.cpp:32
msgid "&Memory:"
msgstr "Memór&ia:"

#. i18n: file: colors.ui:204
#. i18n: ectx: property (text), widget (QLabel, textLabel8)
#: rc.cpp:35
msgid "O&perations:"
msgstr "Mű&veletek:"

#. i18n: file: constants.ui:39
#. i18n: ectx: property (text), widget (QPushButton, pushButton0)
#. i18n: file: constants.ui:60
#. i18n: ectx: property (text), widget (QPushButton, pushButton1)
#. i18n: file: constants.ui:81
#. i18n: ectx: property (text), widget (QPushButton, pushButton2)
#. i18n: file: constants.ui:102
#. i18n: ectx: property (text), widget (QPushButton, pushButton3)
#. i18n: file: constants.ui:123
#. i18n: ectx: property (text), widget (QPushButton, pushButton4)
#. i18n: file: constants.ui:144
#. i18n: ectx: property (text), widget (QPushButton, pushButton5)
#: rc.cpp:44 rc.cpp:47 rc.cpp:50 rc.cpp:53 rc.cpp:56 rc.cpp:59
msgid "Predefined"
msgstr "Előre definiált"

#. i18n: file: fonts.ui:21
#. i18n: ectx: property (text), widget (QLabel, buttonlabel)
#: rc.cpp:62
msgid "&Button font:"
msgstr "A nyomó&gombok betűtípusa:"

#. i18n: file: fonts.ui:34
#. i18n: ectx: property (toolTip), widget (KFontRequester, kcfg_ButtonFont)
#: rc.cpp:65
msgid "The font to use for the buttons"
msgstr "A nyomógombok szövegéhez használt betűtípus"

#. i18n: file: fonts.ui:41
#. i18n: ectx: property (text), widget (QLabel, displaylabel)
#: rc.cpp:68
msgid "&Display font:"
msgstr "&Kijelző-betűtípus:"

#. i18n: file: fonts.ui:54
#. i18n: ectx: property (toolTip), widget (KFontRequester, kcfg_DisplayFont)
#: rc.cpp:71
msgid "The font to use in the display"
msgstr "A megjelenítésnél használt betűtípus"

#. i18n: file: general.ui:19
#. i18n: ectx: property (title), widget (QGroupBox, precisionGroupBox)
#: rc.cpp:77
msgid "Precision"
msgstr "Pontosság"

#. i18n: file: general.ui:27
#. i18n: ectx: property (text), widget (QLabel, textLabel1)
#: rc.cpp:80
msgid "&Maximum number of digits:"
msgstr "A szám&jegyek max. száma:"

#. i18n: file: general.ui:40
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_Precision)
#: rc.cpp:83
msgid "Maximum number of digits displayed"
msgstr "A megjelenített számjegyek max. száma"

#. i18n: file: general.ui:43
#. i18n: ectx: property (whatsThis), widget (QSpinBox, kcfg_Precision)
#: rc.cpp:86
msgid ""
"KCalc can compute with many more digits than the number that fits on the "
"display. This setting gives the maximum number of digits displayed, before "
"KCalc starts using scientific notation, i.e. notation of the type 2.34e12."
msgstr ""
"A KCalc sokkal több számjeggyel is tud dolgozni, mint amennyi a kijelzőre "
"kifér. Ezzel a beállítással a lehető legtöbb számjegy fog megjelenni, "
"mielőtt a KCalc elkezd tudományos számábrázolást használni, azaz 2,34e12 "
"formájú értékeket."

#. i18n: file: general.ui:50
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_Fixed)
#: rc.cpp:89
msgid "Whether to use fixed decimal places"
msgstr "Ez határozza meg, hogy rögzített számú tizedesérték jelenjen-e meg"

#. i18n: file: general.ui:53
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_Fixed)
#: rc.cpp:92
msgid "Set &decimal precision"
msgstr "A pontosság b&eállítása"

#. i18n: file: general.ui:63
#. i18n: ectx: property (toolTip), widget (QSpinBox, kcfg_FixedPrecision)
#: rc.cpp:95
msgid "Number of fixed decimal digits"
msgstr "A rögzített tizedesjegyek száma"

#. i18n: file: general.ui:88
#. i18n: ectx: property (title), widget (QGroupBox, groupBox)
#: rc.cpp:98
msgid "Numbers"
msgstr "Számok"

#. i18n: file: general.ui:94
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_GroupDigits)
#: rc.cpp:101
msgid "Whether to group digits"
msgstr "Ez határozza meg, legyen-e ezreselválasztó"

#. i18n: file: general.ui:97
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_GroupDigits)
#: rc.cpp:104
msgid "Group digits"
msgstr "Ezreselválasztó"

#. i18n: file: general.ui:107
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_TwosComplement)
#: rc.cpp:107
msgid "Whether to use Two's Complement for non-decimal numbers"
msgstr "Kettes komplemens számformátum nem decimális számoknál"

#. i18n: file: general.ui:110
#. i18n: ectx: property (whatsThis), widget (QCheckBox, kcfg_TwosComplement)
#: rc.cpp:110
msgid ""
"Select to use Two's Complement notation for Binary, Octal and Hexidecimal "
"numbers. This is a common notation to represent negative numbers for non-"
"decimal numbers in computers."
msgstr ""
"Bináris, oktális és hexadecimális megjelenítésnél kettes komplemens "
"formátumot kell használni. Ez a formátum elterjedten használt negatív számok "
"tárolásához."

#. i18n: file: general.ui:113
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_TwosComplement)
#: rc.cpp:113
msgid "Two's complement"
msgstr "Kettes komplemens"

#. i18n: file: general.ui:126
#. i18n: ectx: property (title), widget (QGroupBox, miscGroupBox)
#: rc.cpp:116
msgid "Misc"
msgstr "Egyéb"

#. i18n: file: general.ui:132
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_Beep)
#: rc.cpp:119
msgid "Whether to beep on error"
msgstr "Hangjelzés hiba esetén"

#. i18n: file: general.ui:135
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_Beep)
#: rc.cpp:122
msgid "&Beep on error"
msgstr "Hangjelzés &hiba esetén"

#. i18n: file: general.ui:145
#. i18n: ectx: property (toolTip), widget (QCheckBox, kcfg_CaptionResult)
#: rc.cpp:125
msgid "Whether to show the result in the window title"
msgstr ""
"Ez határozza meg, hogy az eredmény ki legyen-e írva az ablak címsorában"

#. i18n: file: general.ui:148
#. i18n: ectx: property (text), widget (QCheckBox, kcfg_CaptionResult)
#: rc.cpp:128
msgid "Show &result in window title"
msgstr "Az eredmény kiírása az ablak &címsorában"

#. i18n: file: kcalc.ui:35
#. i18n: ectx: property (toolTip), widget (KCalcBitset, mBitset)
#: rc.cpp:134
msgid "Click on a Bit to toggle it."
msgstr "Kattintson egy bitre átváltáshoz."

#. i18n: file: kcalc.ui:44
#. i18n: ectx: property (text), widget (QRadioButton, degRadio)
#: rc.cpp:137
msgid "Deg"
msgstr "Fok"

#. i18n: file: kcalc.ui:51
#. i18n: ectx: property (text), widget (QRadioButton, radRadio)
#: rc.cpp:140
msgid "Rad"
msgstr "Rad"

#. i18n: file: kcalc.ui:58
#. i18n: ectx: property (text), widget (QRadioButton, gradRadio)
#: rc.cpp:143
msgid "Grad"
msgstr "Grad"

#. i18n: file: kcalc.ui:78
#. i18n: ectx: property (toolTip), widget (QRadioButton, hexRadio)
#: rc.cpp:146
msgid "Switch base to hexadecimal."
msgstr "Hexadecimális (tizenhatos alapú) számrendszer használata."

#. i18n: file: kcalc.ui:81
#. i18n: ectx: property (text), widget (QRadioButton, hexRadio)
#: rc.cpp:149
msgid "He&x"
msgstr "&Hexa"

#. i18n: file: kcalc.ui:88
#. i18n: ectx: property (toolTip), widget (QRadioButton, decRadio)
#: rc.cpp:152
msgid "Switch base to decimal."
msgstr "Decimális (10 alapú) számrendszer használata."

#. i18n: file: kcalc.ui:91
#. i18n: ectx: property (text), widget (QRadioButton, decRadio)
#: rc.cpp:155
msgid "&Dec"
msgstr "&Dec"

#. i18n: file: kcalc.ui:98
#. i18n: ectx: property (toolTip), widget (QRadioButton, octRadio)
#: rc.cpp:158
msgid "Switch base to octal."
msgstr "Oktális (8 alapú) számrendszer használata."

#. i18n: file: kcalc.ui:101
#. i18n: ectx: property (text), widget (QRadioButton, octRadio)
#: rc.cpp:161
msgid "&Oct"
msgstr "&Okt"

#. i18n: file: kcalc.ui:108
#. i18n: ectx: property (toolTip), widget (QRadioButton, binRadio)
#: rc.cpp:164
msgid "Switch base to binary."
msgstr "Bináris (kettes alapú) számrendszer használata."

#. i18n: file: kcalc.ui:111
#. i18n: ectx: property (text), widget (QRadioButton, binRadio)
#: rc.cpp:167
msgid "&Bin"
msgstr "&Bináris"

#. i18n: file: kcalc.ui:147
#. i18n: ectx: property (text), widget (KCalcButton, pbNData)
#. i18n: file: kcalc.ui:484
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbLn)
#: rc.cpp:173 rc.cpp:368
msgid "N"
msgstr "N"

#. i18n: file: kcalc.ui:154
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbHyp)
#: rc.cpp:176
msgid "Hyperbolic mode"
msgstr "Hiperbolikus mód"

#. i18n: file: kcalc.ui:157
#. i18n: ectx: property (text), widget (KCalcButton, pbHyp)
#: rc.cpp:179
msgid "Hyp"
msgstr "Hyp"

#. i18n: file: kcalc.ui:160
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbHyp)
#: rc.cpp:182
msgid "H"
msgstr "H"

#. i18n: file: kcalc.ui:170
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbAND)
#: rc.cpp:185
msgid "Bitwise AND"
msgstr "Bitenkénti ÉS"

#. i18n: file: kcalc.ui:173
#. i18n: ectx: property (text), widget (KCalcButton, pbAND)
#: rc.cpp:188
msgid "AND"
msgstr "AND"

#. i18n: file: kcalc.ui:183
#. i18n: ectx: property (text), widget (KCalcButton, pbMod)
#: rc.cpp:194
msgid "Mod"
msgstr "Mod"

#. i18n: file: kcalc.ui:190
#. i18n: ectx: property (text), widget (KCalcButton, pbA)
#. i18n: file: kcalc.ui:193
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbA)
#: rc.cpp:197 rc.cpp:200
msgid "A"
msgstr "A"

#. i18n: file: kcalc.ui:200
#. i18n: ectx: property (text), widget (KCalcConstButton, pbC1)
#: rc.cpp:203
msgid "C1"
msgstr "C1"

#. i18n: file: kcalc.ui:213
#. i18n: ectx: property (text), widget (KCalcButton, pbMean)
#: rc.cpp:209
msgid "Mea"
msgstr "Mea"

#. i18n: file: kcalc.ui:223
#. i18n: ectx: property (text), widget (KCalcButton, pbSin)
#: rc.cpp:215
msgid "Sin"
msgstr "Sin"

#. i18n: file: kcalc.ui:226
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbSin)
#: rc.cpp:218
msgid "S"
msgstr "S"

#. i18n: file: kcalc.ui:233
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbOR)
#: rc.cpp:221
msgid "Bitwise OR"
msgstr "Bitenkénti VAGY"

#. i18n: file: kcalc.ui:236
#. i18n: ectx: property (text), widget (KCalcButton, pbOR)
#: rc.cpp:224
msgid "OR"
msgstr "OR"

#. i18n: file: kcalc.ui:246
#. i18n: ectx: property (text), widget (KCalcButton, pbReci)
#: rc.cpp:230
msgid "1/X"
msgstr "1/X"

#. i18n: file: kcalc.ui:249
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbReci)
#: rc.cpp:233
msgid "R"
msgstr "R"

#. i18n: file: kcalc.ui:256
#. i18n: ectx: property (text), widget (KCalcButton, pbB)
#. i18n: file: kcalc.ui:259
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbB)
#: rc.cpp:236 rc.cpp:239
msgid "B"
msgstr "B"

#. i18n: file: kcalc.ui:266
#. i18n: ectx: property (text), widget (KCalcConstButton, pbC2)
#: rc.cpp:242
msgid "C2"
msgstr "C2"

#. i18n: file: kcalc.ui:279
#. i18n: ectx: property (text), widget (KCalcButton, pbSd)
#: rc.cpp:248
msgid "SD"
msgstr "SD"

#. i18n: file: kcalc.ui:289
#. i18n: ectx: property (text), widget (KCalcButton, pbCos)
#: rc.cpp:254
msgid "Cos"
msgstr "Cos"

#. i18n: file: kcalc.ui:292
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbCos)
#. i18n: file: kcalc.ui:319
#. i18n: ectx: property (text), widget (KCalcButton, pbC)
#. i18n: file: kcalc.ui:322
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbC)
#. i18n: file: kcalc.ui:843
#. i18n: ectx: property (text), widget (KCalcButton, pbClear)
#: rc.cpp:257 rc.cpp:272 rc.cpp:275 rc.cpp:479
msgid "C"
msgstr "C"

#. i18n: file: kcalc.ui:299
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbXOR)
#: rc.cpp:260
msgid "Bitwise XOR"
msgstr "Bitenkénti XOR"

#. i18n: file: kcalc.ui:302
#. i18n: ectx: property (text), widget (KCalcButton, pbXOR)
#: rc.cpp:263
msgid "XOR"
msgstr "XOR"

#. i18n: file: kcalc.ui:312
#. i18n: ectx: property (text), widget (KCalcButton, pbFactorial)
#: rc.cpp:269
msgid "x!"
msgstr "x!"

#. i18n: file: kcalc.ui:329
#. i18n: ectx: property (text), widget (KCalcConstButton, pbC3)
#: rc.cpp:278
msgid "C3"
msgstr "C3"

#. i18n: file: kcalc.ui:339
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbMed)
#: rc.cpp:281
msgid "Median"
msgstr "Medián"

#. i18n: file: kcalc.ui:342
#. i18n: ectx: property (text), widget (KCalcButton, pbMed)
#: rc.cpp:284
msgid "Med"
msgstr "Med"

#. i18n: file: kcalc.ui:352
#. i18n: ectx: property (text), widget (KCalcButton, pbTan)
#: rc.cpp:290
msgid "Tan"
msgstr "Tan"

#. i18n: file: kcalc.ui:355
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbTan)
#: rc.cpp:293
msgid "T"
msgstr "T"

#. i18n: file: kcalc.ui:362
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbLsh)
#: rc.cpp:296
msgid "Left bit shift"
msgstr "Biteltolás balra"

#. i18n: file: kcalc.ui:365
#. i18n: ectx: property (text), widget (KCalcButton, pbLsh)
#: rc.cpp:299
msgid "Lsh"
msgstr "Lsh"

#. i18n: file: kcalc.ui:375
#. i18n: ectx: property (text), widget (KCalcButton, pbSquare)
#: rc.cpp:305
msgid "x2"
msgstr "x2"

#. i18n: file: kcalc.ui:382
#. i18n: ectx: property (text), widget (KCalcButton, pbD)
#. i18n: file: kcalc.ui:385
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbD)
#. i18n: file: kcalc.ui:408
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbDat)
#: rc.cpp:308 rc.cpp:311 rc.cpp:323
msgid "D"
msgstr "D"

#. i18n: file: kcalc.ui:392
#. i18n: ectx: property (text), widget (KCalcConstButton, pbC4)
#: rc.cpp:314
msgid "C4"
msgstr "C4"

#. i18n: file: kcalc.ui:405
#. i18n: ectx: property (text), widget (KCalcButton, pbDat)
#: rc.cpp:320
msgid "Dat"
msgstr "Dat"

#. i18n: file: kcalc.ui:418
#. i18n: ectx: property (text), widget (KCalcButton, pbLog)
#: rc.cpp:329
msgid "Log"
msgstr "Log"

#. i18n: file: kcalc.ui:421
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbLog)
#: rc.cpp:332
msgid "L"
msgstr "L"

#. i18n: file: kcalc.ui:428
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbRsh)
#: rc.cpp:335
msgid "Right bit shift"
msgstr "Biteltolás jobbra"

#. i18n: file: kcalc.ui:431
#. i18n: ectx: property (text), widget (KCalcButton, pbRsh)
#: rc.cpp:338
msgid "Rsh"
msgstr "Rsh"

#. i18n: file: kcalc.ui:441
#. i18n: ectx: property (text), widget (KCalcButton, pbPower)
#: rc.cpp:344
msgid "pow"
msgstr "pow"

#. i18n: file: kcalc.ui:448
#. i18n: ectx: property (text), widget (KCalcButton, pbE)
#. i18n: file: kcalc.ui:451
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbE)
#. i18n: file: kcalc.ui:507
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbEE)
#: rc.cpp:347 rc.cpp:350 rc.cpp:383
msgid "E"
msgstr "E"

#. i18n: file: kcalc.ui:458
#. i18n: ectx: property (text), widget (KCalcConstButton, pbC5)
#: rc.cpp:353
msgid "C5"
msgstr "C5"

#. i18n: file: kcalc.ui:468
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbCSt)
#: rc.cpp:356
msgid "Clear data store"
msgstr "Az adatmező törlése"

#. i18n: file: kcalc.ui:471
#. i18n: ectx: property (text), widget (KCalcButton, pbCSt)
#: rc.cpp:359
msgid "CSt"
msgstr "CSt"

#. i18n: file: kcalc.ui:481
#. i18n: ectx: property (text), widget (KCalcButton, pbLn)
#: rc.cpp:365
msgid "Ln"
msgstr "Ln"

#. i18n: file: kcalc.ui:491
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbCmp)
#: rc.cpp:371
msgid "One's complement"
msgstr "2-es komplemens"

#. i18n: file: kcalc.ui:494
#. i18n: ectx: property (text), widget (KCalcButton, pbCmp)
#: rc.cpp:374
msgid "Cmp"
msgstr "Cmp"

#. i18n: file: kcalc.ui:504
#. i18n: ectx: property (text), widget (KCalcButton, pbEE)
#: rc.cpp:380
msgid "EXP"
msgstr "EXP"

#. i18n: file: kcalc.ui:514
#. i18n: ectx: property (text), widget (KCalcButton, pbF)
#. i18n: file: kcalc.ui:517
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbF)
#: rc.cpp:386 rc.cpp:389
msgid "F"
msgstr "F"

#. i18n: file: kcalc.ui:524
#. i18n: ectx: property (text), widget (KCalcConstButton, pbC6)
#: rc.cpp:392
msgid "C6"
msgstr "C6"

#. i18n: file: kcalc.ui:552
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbCube)
#: rc.cpp:395
#, fuzzy
#| msgid "Cube root"
msgid "Cube"
msgstr "Köbgyök"

#. i18n: file: kcalc.ui:555
#. i18n: ectx: property (text), widget (KCalcButton, pbCube)
#: rc.cpp:398
#, fuzzy
#| msgid "3"
msgid "x3"
msgstr "3"

#. i18n: file: kcalc.ui:568
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbDivision)
#: rc.cpp:401
msgid "Division"
msgstr "Osztás"

#. i18n: file: kcalc.ui:571
#. i18n: ectx: property (text), widget (KCalcButton, pbDivision)
#: rc.cpp:404
msgid "÷"
msgstr ""

#. i18n: file: kcalc.ui:584
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbMultiplication)
#: rc.cpp:407
msgid "Multiplication"
msgstr "Szorzás"

#. i18n: file: kcalc.ui:587
#. i18n: ectx: property (text), widget (KCalcButton, pbMultiplication)
#: rc.cpp:410
msgid "×"
msgstr ""

#. i18n: file: kcalc.ui:600
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbMinus)
#: rc.cpp:413
msgid "Minus"
msgstr "Mínusz"

#. i18n: file: kcalc.ui:603
#. i18n: ectx: property (text), widget (KCalcButton, pbMinus)
#: rc.cpp:416
msgctxt "- calculator button"
msgid "−"
msgstr ""

#. i18n: file: kcalc.ui:616
#. i18n: ectx: property (text), widget (KCalcButton, pb7)
#: rc.cpp:419
msgid "7"
msgstr "7"

#. i18n: file: kcalc.ui:632
#. i18n: ectx: property (text), widget (KCalcButton, pb8)
#: rc.cpp:422
msgid "8"
msgstr "8"

#. i18n: file: kcalc.ui:648
#. i18n: ectx: property (text), widget (KCalcButton, pb9)
#: rc.cpp:425
msgid "9"
msgstr "9"

#. i18n: file: kcalc.ui:664
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbPlus)
#: rc.cpp:428
msgid "Plus"
msgstr "Plusz"

#. i18n: file: kcalc.ui:667
#. i18n: ectx: property (text), widget (KCalcButton, pbPlus)
#: rc.cpp:431
msgctxt "+ calculator button"
msgid "+"
msgstr "+"

#. i18n: file: kcalc.ui:680
#. i18n: ectx: property (text), widget (KCalcButton, pb4)
#: rc.cpp:434
msgid "4"
msgstr "4"

#. i18n: file: kcalc.ui:696
#. i18n: ectx: property (text), widget (KCalcButton, pb5)
#: rc.cpp:437
msgid "5"
msgstr "5"

#. i18n: file: kcalc.ui:712
#. i18n: ectx: property (text), widget (KCalcButton, pb6)
#: rc.cpp:440
msgid "6"
msgstr "6"

#. i18n: file: kcalc.ui:728
#. i18n: ectx: property (text), widget (KCalcButton, pb1)
#: rc.cpp:443
msgid "1"
msgstr "1"

#. i18n: file: kcalc.ui:744
#. i18n: ectx: property (text), widget (KCalcButton, pb2)
#: rc.cpp:446
msgid "2"
msgstr "2"

#. i18n: file: kcalc.ui:760
#. i18n: ectx: property (text), widget (KCalcButton, pb3)
#: rc.cpp:449
msgid "3"
msgstr "3"

#. i18n: file: kcalc.ui:776
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbEqual)
#: rc.cpp:452
msgid "Result"
msgstr "Eredmény"

#. i18n: file: kcalc.ui:779
#. i18n: ectx: property (text), widget (KCalcButton, pbEqual)
#: rc.cpp:455
msgctxt "= calculator button"
msgid "="
msgstr "="

#. i18n: file: kcalc.ui:786
#. i18n: ectx: property (text), widget (KCalcButton, pb0)
#: rc.cpp:458
msgid "0"
msgstr "0"

#. i18n: file: kcalc.ui:802
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbPeriod)
#: rc.cpp:461
msgid "Decimal point"
msgstr "Tizedesjel"

#. i18n: file: kcalc.ui:805
#. i18n: ectx: property (text), widget (KCalcButton, pbPeriod)
#: rc.cpp:464
msgctxt ". calculator button"
msgid "."
msgstr "."

#. i18n: file: kcalc.ui:824
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbShift)
#: rc.cpp:467
msgid "Second button function"
msgstr ""

#. i18n: file: kcalc.ui:830
#. i18n: ectx: property (shortcut), widget (KCalcButton, pbShift)
#: rc.cpp:473
msgid "Ctrl+2"
msgstr ""

#. i18n: file: kcalc.ui:840
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbClear)
#: rc.cpp:476
msgid "Clear"
msgstr "Törlés"

#. i18n: file: kcalc.ui:850
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbAllClear)
#: rc.cpp:482
msgid "Clear all"
msgstr "Teljes törlés"

#. i18n: file: kcalc.ui:853
#. i18n: ectx: property (text), widget (KCalcButton, pbAllClear)
#: rc.cpp:485
msgid "AC"
msgstr "AC"

#. i18n: file: kcalc.ui:860
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbParenOpen)
#: rc.cpp:488
msgid "Open parenthesis"
msgstr "Zárójel kezdése"

#. i18n: file: kcalc.ui:863
#. i18n: ectx: property (text), widget (KCalcButton, pbParenOpen)
#: rc.cpp:491
msgctxt "( calculator button"
msgid "("
msgstr "{"

#. i18n: file: kcalc.ui:870
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbParenClose)
#: rc.cpp:494
msgid "Close parenthesis"
msgstr "Zárójel bezárása"

#. i18n: file: kcalc.ui:873
#. i18n: ectx: property (text), widget (KCalcButton, pbParenClose)
#: rc.cpp:497
msgctxt ") calculator button"
msgid ")"
msgstr ")"

#. i18n: file: kcalc.ui:880
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbMemRecall)
#: rc.cpp:500
msgid "Memory recall"
msgstr "A memória előhívása"

#. i18n: file: kcalc.ui:883
#. i18n: ectx: property (text), widget (KCalcButton, pbMemRecall)
#: rc.cpp:503
msgid "MR"
msgstr "MR"

#. i18n: file: kcalc.ui:890
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbMemClear)
#: rc.cpp:506
msgid "Memory clear"
msgstr "A memória törlése"

#. i18n: file: kcalc.ui:893
#. i18n: ectx: property (text), widget (KCalcButton, pbMemClear)
#: rc.cpp:509
msgid "MC"
msgstr "MC"

#. i18n: file: kcalc.ui:900
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbMemPlusMinus)
#: rc.cpp:512
msgid "Add to memory"
msgstr "Hozzáadás a memóriához"

#. i18n: file: kcalc.ui:903
#. i18n: ectx: property (text), widget (KCalcButton, pbMemPlusMinus)
#: rc.cpp:515
msgid "M+"
msgstr "M+"

#. i18n: file: kcalc.ui:910
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbMemStore)
#: rc.cpp:518
msgid "Memory store"
msgstr "Eltárolás a memóriába"

#. i18n: file: kcalc.ui:913
#. i18n: ectx: property (text), widget (KCalcButton, pbMemStore)
#: rc.cpp:521
msgid "MS"
msgstr "MS"

#. i18n: file: kcalc.ui:920
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbPercent)
#: rc.cpp:524
msgid "Percent"
msgstr "Százalék"

#. i18n: file: kcalc.ui:923
#. i18n: ectx: property (text), widget (KCalcButton, pbPercent)
#: rc.cpp:528
#, no-c-format
msgid "%"
msgstr "%"

#. i18n: file: kcalc.ui:930
#. i18n: ectx: property (toolTip), widget (KCalcButton, pbPlusMinus)
#: rc.cpp:531
msgid "Change sign"
msgstr "Előjelváltás"

#. i18n: file: kcalc.ui:933
#. i18n: ectx: property (text), widget (KCalcButton, pbPlusMinus)
#: rc.cpp:534
msgid "+/−"
msgstr ""

#. i18n: file: kcalc.kcfg:13
#. i18n: ectx: label, entry (ForeColor), group (Colors)
#: rc.cpp:537
msgid "The foreground color of the display."
msgstr "A kijelző szövegszíne."

#. i18n: file: kcalc.kcfg:19
#. i18n: ectx: label, entry (BackColor), group (Colors)
#: rc.cpp:540
msgid "The background color of the display."
msgstr "A kijelző háttérszíne."

#. i18n: file: kcalc.kcfg:24
#. i18n: ectx: label, entry (NumberButtonsColor), group (Colors)
#: rc.cpp:543
msgid "The color of number buttons."
msgstr "A számgombok színe."

#. i18n: file: kcalc.kcfg:30
#. i18n: ectx: label, entry (FunctionButtonsColor), group (Colors)
#: rc.cpp:546
msgid "The color of function buttons."
msgstr "A függvénygombok színe."

#. i18n: file: kcalc.kcfg:34
#. i18n: ectx: label, entry (StatButtonsColor), group (Colors)
#: rc.cpp:549
msgid "The color of statistical buttons."
msgstr "A statisztikai gombok színe."

#. i18n: file: kcalc.kcfg:38
#. i18n: ectx: label, entry (HexButtonsColor), group (Colors)
#: rc.cpp:552
msgid "The color of hex buttons."
msgstr "A hexa gombok színe."

#. i18n: file: kcalc.kcfg:42
#. i18n: ectx: label, entry (MemoryButtonsColor), group (Colors)
#: rc.cpp:555
msgid "The color of memory buttons."
msgstr "A memóriakezelési gombok színe."

#. i18n: file: kcalc.kcfg:46
#. i18n: ectx: label, entry (OperationButtonsColor), group (Colors)
#: rc.cpp:558
msgid "The color of operation buttons."
msgstr "A műveleti gombok színe."

#. i18n: file: kcalc.kcfg:52
#. i18n: ectx: label, entry (ButtonFont), group (Font)
#: rc.cpp:561
msgid "The font to use for the buttons."
msgstr "A nyomógombok szövegéhez használt betűtípus."

#. i18n: file: kcalc.kcfg:56
#. i18n: ectx: label, entry (DisplayFont), group (Font)
#: rc.cpp:564
msgid "The font to use in the display."
msgstr "A kijelzőben használni kívánt betűtípus."

#. i18n: file: kcalc.kcfg:62
#. i18n: ectx: label, entry (Precision), group (Precision)
#: rc.cpp:567
msgid "Maximum number of digits displayed."
msgstr "A megjelenített számjegyek max. száma."

#. i18n: file: kcalc.kcfg:68
#. i18n: ectx: whatsthis, entry (Precision), group (Precision)
#: rc.cpp:570
msgid ""
"\n"
"\tKCalc can compute with many more digits than the number that\n"
"\tfits on the display. This setting gives the maximum number of\n"
"\tdigits displayed, before KCalc starts using scientific notation,\n"
"\ti.e. notation of the type 2.34e12.\n"
"      "
msgstr ""
"\n"
"\tA KCalc sokkal több számjeggyel is tud dolgozni, mint amennyi\n"
"\ta kijelzőre kifér. Ezzel a beállítással a lehető legtöbb számjegy fog\n"
"\tmegjelenni, mielőtt a KCalc elkezd tudományos számábrázolást használni,\n"
"\tazaz például 2,34e12 formájú értékeket.\n"
"      "

#. i18n: file: kcalc.kcfg:74
#. i18n: ectx: label, entry (FixedPrecision), group (Precision)
#: rc.cpp:578
msgid "Number of fixed decimal digits."
msgstr "A rögzített tizedesjegyek száma."

#. i18n: file: kcalc.kcfg:78
#. i18n: ectx: label, entry (Fixed), group (Precision)
#: rc.cpp:581
msgid "Whether to use fixed decimal places."
msgstr "Ez határozza meg, hogy rögzített számú tizedesérték jelenjen-e meg."

#. i18n: file: kcalc.kcfg:84
#. i18n: ectx: label, entry (Beep), group (General)
#: rc.cpp:584
msgid "Whether to beep on error."
msgstr "Hangjelzés hiba esetén."

#. i18n: file: kcalc.kcfg:88
#. i18n: ectx: label, entry (CaptionResult), group (General)
#: rc.cpp:587
msgid "Whether to show the result in the window title."
msgstr ""
"Ez határozza meg, hogy az eredmény ki legyen-e írva az ablak címsorában."

#. i18n: file: kcalc.kcfg:92
#. i18n: ectx: label, entry (GroupDigits), group (General)
#: rc.cpp:590
msgid "Whether to group digits."
msgstr "Ez határozza meg, legyen-e ezreselválasztó."

#. i18n: file: kcalc.kcfg:96
#. i18n: ectx: label, entry (TwosComplement), group (General)
#: rc.cpp:593
msgid "Whether to use Two's Complement for non-decimal numbers."
msgstr ""
"Ez határozza meg, hogy kettes komplemens formátumban jelenjenek-e meg a nem "
"decimális számok."

#. i18n: file: kcalc.kcfg:101
#. i18n: ectx: whatsthis, entry (TwosComplement), group (General)
#: rc.cpp:596
msgid ""
"\n"
"        Select to use Two's Complement notation for Binary, Octal\n"
"        and Hexidecimal numbers. This is a common notation to represent\n"
"        negative numbers in computers.\n"
"      "
msgstr ""
"\n"
"        Jelölje be, ha a bináris, oktális és hexadecimális számokat\n"
"        kettes komplemens formában szeretné megjeleníteni. Ez a formátum\n"
"        elterjedten használt negatív számok tárolásához.\n"
"      "

#. i18n: file: kcalc.kcfg:107
#. i18n: ectx: label, entry (CalculatorMode), group (General)
#: rc.cpp:603
#, fuzzy
#| msgid "KDE Calculator"
msgid "Easy Calculator Mode"
msgstr "KDE számológép"

#. i18n: file: kcalc.kcfg:108
#. i18n: ectx: whatsthis, entry (CalculatorMode), group (General)
#: rc.cpp:606
msgid "A very simple mode where only the basic calculator buttons are shown"
msgstr ""

#. i18n: file: kcalc.kcfg:111
#. i18n: ectx: label, entry (CalculatorMode), group (General)
#: rc.cpp:609
msgid "Science Calculator Mode"
msgstr ""

#. i18n: file: kcalc.kcfg:112
#. i18n: ectx: whatsthis, entry (CalculatorMode), group (General)
#: rc.cpp:612
msgid "Mode with science buttons and optional constants buttons"
msgstr ""

#. i18n: file: kcalc.kcfg:115
#. i18n: ectx: label, entry (CalculatorMode), group (General)
#: rc.cpp:615
#, fuzzy
#| msgid "&Statistic Buttons"
msgid "Statistic Calculator Mode"
msgstr "Statisztikai &gombok"

#. i18n: file: kcalc.kcfg:116
#. i18n: ectx: whatsthis, entry (CalculatorMode), group (General)
#: rc.cpp:618
msgid "Mode with additional statistics buttons and optional constants buttons"
msgstr ""

#. i18n: file: kcalc.kcfg:120
#. i18n: ectx: whatsthis, entry (CalculatorMode), group (General)
#: rc.cpp:624
msgid ""
"Mode with logic buttons and selectable base. Optional bit edit available."
msgstr ""

#. i18n: file: kcalc.kcfg:125
#. i18n: ectx: label, entry (ShowBitset), group (General)
#: rc.cpp:627
msgid "Whether to show the bit edit widget."
msgstr "Ez határozza meg, hogy megjelenjen-e bitszerkesztő elem."

#. i18n: file: kcalc.kcfg:129
#. i18n: ectx: label, entry (ShowConstants), group (General)
#: rc.cpp:630
msgid "Whether to show constant buttons."
msgstr "A konstans-gombok ki-be kapcsolása."

#. i18n: file: kcalc.kcfg:133
#. i18n: ectx: label, entry (AngleMode), group (General)
#: rc.cpp:633
msgid "Degrees, radians or grads"
msgstr "Szög (radiánban vagy fokban)"

#. i18n: file: kcalc.kcfg:137
#. i18n: ectx: label, entry (BaseMode), group (General)
#: rc.cpp:636
msgid "Numeric base"
msgstr "Alap"

#. i18n: file: kcalc.kcfg:143
#. i18n: ectx: label, entry (nameConstant$(ConstIndex)), group (UserConstants)
#: rc.cpp:639
msgid "Name of the user programmable constants."
msgstr "A felhasználói konstansok nevei."

#. i18n: file: kcalc.kcfg:162
#. i18n: ectx: label, entry (valueConstant$(ConstIndex)), group (UserConstants)
#: rc.cpp:642
msgid "List of user programmable constants"
msgstr "A felhasználói konstansok listája"

#. i18n: file: kcalc.kcfg:153
#: rc.cpp:660
msgctxt "Name of the user programmable constant"
msgid "C1"
msgstr "C1"

#. i18n: file: kcalc.kcfg:154
#: rc.cpp:662
msgctxt "Name of the user programmable constant"
msgid "C2"
msgstr "C2"

#. i18n: file: kcalc.kcfg:155
#: rc.cpp:664
msgctxt "Name of the user programmable constant"
msgid "C3"
msgstr "C3"

#. i18n: file: kcalc.kcfg:156
#: rc.cpp:666
msgctxt "Name of the user programmable constant"
msgid "C4"
msgstr "C4"

#. i18n: file: kcalc.kcfg:157
#: rc.cpp:668
msgctxt "Name of the user programmable constant"
msgid "C5"
msgstr "C5"

#. i18n: file: kcalc.kcfg:158
#: rc.cpp:670
msgctxt "Name of the user programmable constant"
msgid "C6"
msgstr "C6"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:3
#: rc.cpp:680
msgid "Pi"
msgstr "Pi"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:7
#: rc.cpp:683
msgid "Euler Number"
msgstr "Euler-szám"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:11
#: rc.cpp:686
msgid "Golden Ratio"
msgstr "Aranymetszési arány"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:15
#: rc.cpp:689
msgid "Light Speed"
msgstr "Fénysebesség"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:19
#: rc.cpp:692
msgid "Planck's Constant"
msgstr "Planck-állandó"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:23
#: rc.cpp:695
msgid "Gravitational Constant"
msgstr "Gravitációs állandó"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:27
#: rc.cpp:698
msgid "Earth Acceleration"
msgstr "Földgyorsulás"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:31
#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:35
#: rc.cpp:701 rc.cpp:704
msgid "Elementary Charge"
msgstr "Elemi töltés"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:39
#: rc.cpp:707
msgid "Impedance of Vacuum"
msgstr "Vákuumimpedancia"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:43
#: rc.cpp:710
msgid "Fine-Structure Constant"
msgstr "Finomstruktúra-állandó"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:48
#: rc.cpp:713
msgid "Permeability of Vacuum"
msgstr "Vákuumpermeabilitás"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:52
#: rc.cpp:716
msgid "Permittivity of Vacuum"
msgstr "Vákuumpermittivitás"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:56
#: rc.cpp:719
msgid "Boltzmann Constant"
msgstr "Boltzmann-állandó"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:61
#: rc.cpp:722
msgid "Atomic Mass Unit"
msgstr "Atomi tömegegység"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:65
#: rc.cpp:725
msgid "Molar Gas Constant"
msgstr "Egyetemes gázállandó"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:69
#: rc.cpp:728
msgid "Stefan-Boltzmann Constant"
msgstr "Stefan-Boltzmann-állandó"

#. i18n: tag constant attribute name
#. i18n: file: scienceconstants.xml:73
#: rc.cpp:731
msgid "Avogadro's Number"
msgstr "Avogadro-szám"

#~ msgid "sr"
#~ msgstr "sr"

#~ msgid "Inverse mode"
#~ msgstr "Inverz mód"

#~ msgid "Inv"
#~ msgstr "Inv"

#~ msgid "I"
#~ msgstr "I"

#~ msgid "Science/&Engineering Buttons"
#~ msgstr "Tu&dományos/mérnöki gombok"

#~ msgid "&Logic Buttons"
#~ msgstr "&Logikai gombok"

#~ msgid "&Show All"
#~ msgstr "M&inden megjelenítése"

#~ msgid "&Hide All"
#~ msgstr "Minden elre&jtése"

#~ msgid "Whether to show statistical buttons."
#~ msgstr "A statisztikai gombok ki-be kapcsolása."

#~ msgid ""
#~ "Whether to show buttons with functions used in science/engineering,\n"
#~ "\t     like exp, log, sin, etc."
#~ msgstr ""
#~ "Ez határozza meg, megjelenjenek-e a tudományos/mérnöki funkciók gombjai,\n"
#~ "\t     például az exp, a log és a sin."

#~ msgid "Whether to show logic buttons."
#~ msgstr "A logikai gombok ki-be kapcsolása."

#~ msgctxt "Subtract from memory"
#~ msgid "M-"
#~ msgstr "M-"

#~ msgid "/"
#~ msgstr "/"

#~ msgid "X"
#~ msgstr "X"

#~ msgctxt "- calculator button"
#~ msgid "-"
#~ msgstr "-"

#~ msgid "+/-"
#~ msgstr "+/-"