~codygarver/pantheon-files/fix-1021550

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
# Hungarian translation for marlin
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the marlin package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: marlin\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2012-05-30 00:35-0700\n"
"PO-Revision-Date: 2012-06-27 14:15+0000\n"
"Last-Translator: András Bognár <froccsmester@gmail.com>\n"
"Language-Team: Hungarian <hu@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Launchpad-Export-Date: 2012-06-28 05:13+0000\n"
"X-Generator: Launchpad (build 15505)\n"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:31
msgid "Files Preferences"
msgstr "Fájlkezelő beállításai"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:54
msgid "Single click to open:"
msgstr "Egyszeri kattintásra megnyitni:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:64
msgid "Mouse auto-selection speed:"
msgstr "Egér auto-kiválasztás sebesség:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:80
msgid "Default File Manager:"
msgstr "Alapértelmezett fájlkezelő"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:89
msgid "Behavior"
msgstr "Viselkedés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:96
msgid "small"
msgstr "kicsi"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:97
msgid "medium"
msgstr "közepes"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:98
msgid "large"
msgstr "nagy"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:99
msgid "extra-large"
msgstr "Nagyon-nagy"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:120
msgid "Sidebar icon size:"
msgstr "Oldalsáv-ikon méret:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:131
msgid "iso"
msgstr "iso"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:132
msgid "locale"
msgstr "területi"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:133
msgid "informal"
msgstr "informális"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:140
msgid "Date format:"
msgstr "Dátumformátum:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:148
msgid "Appearance"
msgstr "Megjelenés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/SettingsDialog.vala:197
msgid "Extensions"
msgstr "Bővítmények"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/DirectoryNotFound.vala:72
#, c-format
msgid "Folder does not exist"
msgstr "A mappa nem létezik"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/DirectoryNotFound.vala:75
#, c-format
msgid "Marlin can't find the folder %s"
msgstr "Marlin nem találja a %s mappát"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/DirectoryNotFound.vala:80
msgid "Create"
msgstr "Létrehozás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/DirectoryNotFound.vala:80
#, c-format
msgid "Create the folder %s"
msgstr "%s mappa létrehozása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ViewContainer.vala:141
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:324
msgid "Home"
msgstr "Saját mappa"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ViewContainer.vala:143
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:394
msgid "File System"
msgstr "Fájlrendszer"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:137
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3406
msgid "Set as default"
msgstr "Beállítás alapértelmezettként"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:142
msgid "Ignore"
msgstr "Mellőz"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:454
msgid "Undo"
msgstr "Visszavonás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:455
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:749
msgid "Undo the last action"
msgstr "Utolsó művelet visszavonása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:464
msgid "Redo"
msgstr "Megismétlés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:465
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:752
msgid "Redo the last action"
msgstr "Az utolsó művelet ismételt végrehajtása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:720
msgid "_File"
msgstr "_Fájl"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:721
msgid "_Edit"
msgstr "_Szerkesztés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:722
msgid "_View"
msgstr "_Nézet"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:723
msgid "_Go"
msgstr "_Ugrás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:724
msgid "_Help"
msgstr "Se_gítség"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:726
msgid "New _Window"
msgstr "Új _ablak"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:727
msgid "Open another Marlin window for the displayed location"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:730
msgid "New _Tab"
msgstr "Új _lap"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:731
msgid "Open another tab for the displayed location"
msgstr "Másik lap megnyitása a megjelenített helyhez"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:734
msgid "_Close"
msgstr "_Bezárás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:735
msgid "Close this folder"
msgstr "Mappa bezárása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:738
msgid "Customize _Toolbar..."
msgstr "_Eszköztár testreszabása..."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:739
msgid "Easily edit the toolbar layout"
msgstr "Az eszköztár elrendezésének egyszerű szerkesztése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:742
msgid "Preferences"
msgstr "Beállítások"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:743
msgid "Change Marlin's preferences"
msgstr "Marlin beállításainak modosítása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:748
msgid "_Undo"
msgstr "_Visszavonás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:751
msgid "_Redo"
msgstr "_Újra"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:754
msgid "Open _Parent"
msgstr "Szülő _megnyitása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:755
msgid "Open the parent folder"
msgstr "Szülőmappa megnyitása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:757
msgid "_Back"
msgstr "_Vissza"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:758
msgid "Go to the previous visited location"
msgstr "Ugrás az előző meglátogatott helyre"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:761
msgid "_Forward"
msgstr "_Előre"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:762
msgid "Go to the next visited location"
msgstr "Ugrás a következő meglátogatott helyre"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:764
msgid "_Reload"
msgstr "Új_ratöltés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:765
msgid "Reload the current location"
msgstr "A jelenlegi hely újrabetöltése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:768
msgid "_Home Folder"
msgstr "_Saját mappa"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:769
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:329
msgid "Open your personal folder"
msgstr "Személyes mappa megnyitása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:772
msgid "_Trash"
msgstr "_Kuka"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:773
msgid "Open your personal trash folder"
msgstr "A személyes kuka mappa megnyitása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:776
msgid "_Network"
msgstr "_Hálózat"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:777
msgid "Browse bookmarked and local network locations"
msgstr "Könyvjelzőzött és helyi hálózati helyek tallózása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:780
msgid "Zoom _In"
msgstr "_Nagyítás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:781
msgid "Increase the view size"
msgstr "Megjelenési méret növelése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:792
msgid "Zoom _Out"
msgstr "Kicsin_yítés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:793
msgid "Decrease the view size"
msgstr "Megjelenési méret csökkentése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:800
msgid "Normal Si_ze"
msgstr "Normál _méret"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:801
msgid "Use the normal view size"
msgstr "Normál méret használata"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:804
msgid "Next Tab"
msgstr "Következő lap"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:808
msgid "Previous Tab"
msgstr "Előző lap"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:812
msgid "Connect to _Server..."
msgstr "Kapcsolódás _kiszolgálóhoz..."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:813
msgid "Connect to a remote computer or shared disk"
msgstr "Kapcsolódás távoli számítógéphez vagy megosztott lemezhez"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:816
msgid "_About"
msgstr "_Névjegy"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:817
msgid "Display credits"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:820
msgid "Report a Problem..."
msgstr "Hiba jelentése..."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:821
msgid "File a bug on Launchpad"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:824
msgid "Get Help Online..."
msgstr "Online segítség kérése..."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:828
msgid "Translate This Application..."
msgstr "Alkalmazás fordítása..."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:837
msgid "Show _Hidden Files"
msgstr "Re_jtett fájlok megjelenítése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:838
msgid "Toggle the display of hidden files in the current window"
msgstr "A rejtett fájlok megjelenítésének átváltása a jelenlegi ablakban"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:843
msgid "Show _Desktop Files"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:844
msgid "Toggle the display of desktop files"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:848
msgid "_Context Pane"
msgstr "_Kontextus ablaktábla"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:849
msgid "Change the visibility of the context pane"
msgstr "A kontextus ablaktábla láthatóságának megváltoztatása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:853
msgid "_Menubar"
msgstr "_Menüsáv"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:854
msgid "Change the visibility of this window's menubar"
msgstr "Az ablak menübár láthatóságának megváltoztatása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:858
msgid "_Places"
msgstr "_Helyek"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:859
msgid "Change the visibility of this window's side pane"
msgstr "Megváltoztatja ezen ablak oldalsávjának láthatóságát"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:867
msgid "Icon"
msgstr "Ikon"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:870
msgid "List"
msgstr "Lista"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:873
msgid "Compact"
msgstr "Tömör"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/Window.vala:876
msgid "Columns"
msgstr "Oszlopok"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/LocationBar.vala:100
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:588
msgid "Network"
msgstr "Hálózat"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ContextView.vala:317
msgid "Name"
msgstr "Név"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ContextView.vala:318
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-list-view.c:59
msgid "Type"
msgstr "Típus"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ContextView.vala:321
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:375
msgid "Target"
msgstr "Cél"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ContextView.vala:323
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-list-view.c:59
msgid "Size"
msgstr "Méret"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ContextView.vala:325
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:347
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-list-view.c:59
msgid "Modified"
msgstr "Módosítva"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/ContextView.vala:326
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:832
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:845
msgid "Owner"
msgstr "Tulajdonos"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:63
msgid "Properties"
msgstr "Tulajdonságok"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:118
msgid "Info"
msgstr "Infó"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:126
msgid "Permissions"
msgstr "Jogosultságok"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:138
msgid "Preview"
msgstr "Előnézet"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:345
msgid "Created"
msgstr "Létrehozva"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:350
msgid "Last Access"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:356
msgid "Deleted"
msgstr "Törölve"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:361
msgid "MimeType"
msgstr "MIME-típus"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:369
msgid "MimeTypes"
msgstr "MimeTípusok"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:373
msgid "Location"
msgstr "Hely"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:381
msgid "Origin Location"
msgstr "Származási hely"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:419
msgid "Other application..."
msgstr "Más alkalmazás…"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:443
msgid "Open with"
msgstr "Megnyitás ezzel"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:459
msgid "Device usage"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:604
msgid "Read"
msgstr "Olvasás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:609
msgid "Write"
msgstr "Írás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:614
msgid "Execute"
msgstr "Végrehajtás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:837
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:849
msgid "Group"
msgstr "Csoport"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:853
msgid "Everyone"
msgstr "Mindenki"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/View/PropertiesWindow.vala:1109
msgid "Select an aplication to open "
msgstr "Válassz egy alkalmazást a megnyitáshoz "

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:124
msgid "SSH"
msgstr "SSH"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:127
msgid "Public FTP"
msgstr "Nyilvános FTP"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:129
msgid "FTP (with login)"
msgstr "FTP (bejelentkezéssel)"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:132
msgid "Windows share"
msgstr "Windows-megosztás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:134
msgid "WebDAV (HTTP)"
msgstr "WebDAV (HTTP)"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:136
msgid "Secure WebDAV (HTTPS)"
msgstr "Biztonságos WebDAV (HTTPS)"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:183
msgid "Connecting..."
msgstr "Kapcsolódás…"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:207
msgid ""
"Can't load the supported server method list.\n"
"Please check your gvfs installation."
msgstr ""
"A támogatott kiszolgálómódszerek listája nem tölthető be.\n"
"Ellenőrizze a gvfs telepítését."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:285
#, c-format
msgid "The folder \"%s\" cannot be opened on \"%s\"."
msgstr "A(z) „%s” mappa nem nyitható meg ezen: „%s”."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:295
#, c-format
msgid "The server at \"%s\" cannot be found."
msgstr "A kiszolgáló nem található itt: „%s”."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:330
msgid "Try Again"
msgstr "Próbálja újra"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:395
msgid "Please verify your user details."
msgstr "Ellenőrizze a felhasználói adatait."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:425
msgid "Continue"
msgstr "Folytatás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:750
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1140
msgid "C_onnect"
msgstr "K_apcsolódás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:875
msgid "Connect to Server"
msgstr "Kapcsolódás a kiszolgálóhoz"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:893
msgid "Server Details"
msgstr "Kiszolgáló részletei"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:917
msgid "_Server:"
msgstr "_Kiszolgáló:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:937
msgid "_Port:"
msgstr "_Port:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:955
msgid "_Type:"
msgstr "_Típus:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1024
msgid "Sh_are:"
msgstr "Meg_osztás:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1039
msgid "_Folder:"
msgstr "_Mappa:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1057
msgid "User Details"
msgstr "Felhasználói adatok"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1080
msgid "_Domain name:"
msgstr "_Tartománynév:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1095
msgid "_User name:"
msgstr "_Felhasználónév:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1110
msgid "Pass_word:"
msgstr "_Jelszó:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1126
msgid "_Remember this password"
msgstr "_Emlékezzen erre a jelszóra"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-connect-server-dialog.c:1229
msgid "Operation cancelled"
msgstr "A művelet megszakítva"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:113
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:163
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:471
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:527
msgid "File Operations"
msgstr "Fájlműveletek"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:122
msgid "Show Details"
msgstr "Részletek megjelenítése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:157
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:179
#, c-format
msgid "%'d file operation active"
msgid_plural "%'d file operations active"
msgstr[0] "%'d fájlművelet aktív"
msgstr[1] "%'d fájlművelet aktív"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:280
msgid "Show copy dialog"
msgstr "Másolási párbeszédablak megjelenítése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:291
msgid "Cancel all in-progress actions"
msgstr "Az összes folyamatban lévő tevékenység megszakítása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-progress-ui-handler.c:528
msgid "All file operations have been successfully completed"
msgstr "Minden fájlművelet sikeresen befejeződött"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-clipboard-manager.c:369
msgid "There is nothing on the clipboard to paste"
msgstr "A vágólapról nincs mit beilleszteni"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-application.c:416
msgid "Show the version of the program."
msgstr "A program verziószámának megjelenítése."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-application.c:420
msgid "Open uri(s) in new tab"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-application.c:422
msgid "Quit Marlin."
msgstr "Kilépés a Marlinből"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-application.c:424
msgid "Enable debug logging"
msgstr "Hibakereső naplózás engedélyezése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-application.c:425
msgid "[URI...]"
msgstr "[URI...]"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-application.c:434
msgid ""
"\n"
"\n"
"Browse the file system with the file manager"
msgstr ""
"\n"
"\n"
"A fájlrendszer böngészése a fájlkezelővel"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-application.c:454
msgid "--quit cannot be used with URIs."
msgstr "a --quit nem használható URI-címekkel."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-columns-view.c:82
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:572
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-list-view.c:616
msgid "This folder is empty."
msgstr "Ez a mappa üres."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-columns-view.c:186
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:139
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-list-view.c:199
#, c-format
msgid "Failed to rename %s to %s"
msgstr "„%s” átnevezése sikertelen erre: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-icon-view.c:86
msgid "Icon directory listing"
msgstr "Ikon könyvtár listázás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-icon-view.c:87
msgid "Icon view"
msgstr "Ikonnézet"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:283
msgid "Arran_ge Items"
msgstr "Elemek rend_ezése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:288
msgid "Re_versed Order"
msgstr "_Fordított sorrend"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:289
msgid "Display icons in the opposite order"
msgstr "Ikonok megjelenítése fordított sorrendben"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:296
msgid "By _Name"
msgstr "_Név szerint"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:297
msgid "Keep icons sorted by name in rows"
msgstr "Ikonok maradjanak név szerint rendezve"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:300
msgid "By _Size"
msgstr "Mé_ret szerint"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:301
msgid "Keep icons sorted by size in rows"
msgstr "Ikonok maradjanak méret szerint rendezve"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:304
msgid "By _Type"
msgstr "_Típus szerint"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:305
msgid "Keep icons sorted by type in rows"
msgstr "Ikonok maradjanak típus szerint rendezve"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:308
msgid "By Modification _Date"
msgstr "Módosítás _dátuma szerint"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-abstract-icon-view.c:309
msgid "Keep icons sorted by modification date in rows"
msgstr "Ikonok maradjanak a módosítás dátuma szerint rendezve"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-dnd.c:779
msgid "_Move Here"
msgstr "_Áthelyezés ide"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-dnd.c:784
msgid "_Copy Here"
msgstr "_Másolás ide"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-dnd.c:789
msgid "_Link Here"
msgstr "_Hivatkozás ide"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-dnd.c:794
msgid "Set as _Background"
msgstr "Beállítás _háttérként"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-dnd.c:801
msgid "Cancel"
msgstr "Mégse"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-dnd.c:893
#, c-format
msgid "Failed to execute file \"%s\""
msgstr "Nem futtatható fájl: \"%s\""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/eel-editable-label.c:3188
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3517
msgid "Select All"
msgstr "Összes kijelölése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/eel-editable-label.c:3199
msgid "Input Methods"
msgstr "Beviteli módok"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-compact-view.c:86
msgid "Compact directory listing"
msgstr "Tömör könyvtár listázás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-compact-view.c:87
msgid "Compact view"
msgstr "Tömör nézet"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1150
msgid "Invalid filename provided by XDS drag site"
msgstr "Az XDS érvénytelen fájlnévet közöl"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1308
#, c-format
msgid "Failed to create a link for the URL \"%s\""
msgstr "Hivatkozás létesítése \"%s\" URL-hez sikertelen"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1793
#, c-format
msgid "Use \"%s\" to open the selected item"
msgid_plural "Use \"%s\" to open the selected items"
msgstr[0] "Használja a következőt a kijelölt elem megnyitásához: \"%s\""
msgstr[1] "Használja a következőt a kijelölt elem megnyitásához: \"%s\""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1940
#, c-format
msgid "_Open With %s"
msgstr "_Megnyitás ezzel: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1946
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3483
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2399
msgid "_Open"
msgstr "_Megnyitás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1962
#, c-format
msgid "Open in %'d New _Tabs"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1966
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3495
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2407
msgid "Open in New _Tab"
msgstr "Megnyitás új _lapon"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1971
#, c-format
msgid "Open in %'d New _Windows"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:1975
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2414
msgid "Open in New _Window"
msgstr "Megnyitás új _ablakban"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3455
msgid "Prepare the selected files to be moved with a Paste command"
msgstr ""
"A kijelölt fájlok előkészítése áthelyezésre egy „Beillesztés” paranccsal"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3459
msgid "Prepare the selected files to be copied with a Paste command"
msgstr "A kijelölt fájlok előkészítése másolásra a „Beillesztés” paranccsal"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3463
msgid "Move or copy files previously selected by a Cut or Copy command"
msgstr ""
"Egy „Kivágás„ vagy „Másolás” parancs által kiválasztott fájlok áthelyezése "
"vagy másolása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3466
msgid "Paste Into Folder"
msgstr "Beillesztés a mappába"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3467
msgid ""
"Move or copy files previously selected by a Cut or Copy command into "
"selected folder"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3470
msgid "_Rename..."
msgstr "Á_tnevezés…"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3471
msgid "Rename selected item"
msgstr "Kijelölt elem átnevezése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3474
msgid "Create New _Folder"
msgstr "Új mappa létreh_ozása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3475
msgid "Create a new empty folder inside this folder"
msgstr "Új üres mappa létrehozása ebben a mappában"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3477
msgid "Create New _File"
msgstr "Új fájl _létrehozása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3479
msgid "_Empty Document"
msgstr "Üres dok_umentum"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3480
msgid "Create a new empty document inside this folder"
msgstr "Új üres dokumentum létrehozása ebben a mappában"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3484
msgid "Open the selected item"
msgstr "Kijelölt elem megnyitása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3491
msgid "Open in new Window"
msgstr "Megnyitás új ablakban"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3492
msgid "Open each selected item in a new window"
msgstr "Minden kijelölt elem megnyitása új ablakban"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3496
msgid "Open each selected item in a new tab"
msgstr "Minden kijelölt elem megnyitása új lapon"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3498
msgid "Open Wit_h"
msgstr "Megnyitás e_zzel"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3499
msgid "Choose a program with which to open the selected item"
msgstr "Válasszon egy programot, amivel megnyithatja a kijelölt elemet"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3501
msgid "Other _Application..."
msgstr "Egyéb _alkalmazás…"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3502
msgid "Choose another application with which to open the selected item"
msgstr ""
"Válasszon egy másik alkalmazást, amivel megnyithatja a kiválasztott elemet"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3505
msgid "Mo_ve to Trash"
msgstr "Át_helyezés a Kukába"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3506
msgid "Move each selected item to the Trash"
msgstr "Minden kijelölt elem áthelyezése a Kukába"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3509
msgid "_Delete Permanently"
msgstr "_Végleges törlés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3510
msgid "Delete each selected item, without moving to the Trash"
msgstr "Minden kijelölt elem törlése, Kukába való áthelyezés nélkül"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3513
msgid "_Restore"
msgstr "_Visszaállítás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3521
msgid "_Properties"
msgstr "_Tulajdonságok"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3522
msgid "View or modify the properties of each selected item"
msgstr "Minden kijelölt elem tulajdonságainak megtekintése vagy módosítása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-directory-view.c:3629
msgid "Set Color:"
msgstr "Szín beállítása:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-toolbar-editor.c:445
msgid "Customize Toolbar"
msgstr "Eszköztár testreszabása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-toolbar-editor.c:465
msgid ""
"Select items to be displayed on the toolbar. Items can be reordered by drag "
"and drop."
msgstr ""
"Válassza ki, mely elemek jelenjenek meg az eszköztáron. A sorrendet húzással "
"állíthatja be."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-toolbar-editor.c:481
msgid "Available Items"
msgstr "Elérhető elemek"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-toolbar-editor.c:502
msgid "Displayed Items"
msgstr "Megjelenített elemek"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/exo-icon-view.c:887
msgid "Layout mode"
msgstr "Elrendezés mód"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/exo-icon-view.c:888
msgid "The layout mode"
msgstr "Elrendezési mód"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/exo-tree-view.c:167
msgid "Single Click"
msgstr "Egyszeres kattintás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/exo-tree-view.c:168
msgid "Whether the items in the view can be activated with single clicks"
msgstr "Aktiválható-e az elem ebben a nézetben egyszeri kattintással"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/exo-tree-view.c:184
msgid "Single Click Timeout"
msgstr "Egyszeri kattintás késleltetés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/exo-tree-view.c:185
msgid ""
"The amount of time after which the item under the mouse cursor will be "
"selected automatically in single click mode"
msgstr ""
"Az időtartam miután az egér alatt lévő elem automatikusan kiválasztódik "
"egyszeri kattintás módban"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/fm-list-view.c:59
msgid "Filename"
msgstr "Fájlnév"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:310
msgid "Personal"
msgstr "Személyes"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:315
msgid "Your common places and bookmarks"
msgstr "Saját mappái és könyvjelzői"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:370
msgid "Trash"
msgstr "Kuka"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:372
msgid "Open the trash"
msgstr "A Kuka megnyitása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:382
msgid "Devices"
msgstr "Eszközök"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:387
msgid "Your local partitions and devices"
msgstr "Helyi partíciók és eszközök"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:396
msgid "Open the contents of the File System"
msgstr "A fájlrendszer tartalmának megjelenítése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:455
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:480
#, c-format
msgid "Mount and open %s"
msgstr "%s csatolása és megnyitása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:593
msgid "Your network places"
msgstr "Hálózati helyek"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:624
msgid "Entire network"
msgstr "Teljes hálózat"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:626
msgid "Browse the contents of the network"
msgstr "A hálózat tartalmának tallózása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1610
msgid "_Start"
msgstr "_Kezdés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1611
msgid "_Stop"
msgstr "_Befejezés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1616
msgid "_Power On"
msgstr "Be_kapcsolás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1617
msgid "_Safely Remove Drive"
msgstr "Meghajtó _biztonságos eltávolítása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1620
msgid "_Connect Drive"
msgstr "Meghajtó _csatlakoztatása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1621
msgid "_Disconnect Drive"
msgstr "_Kapcsolat bontása a meghajtóval"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1624
msgid "_Start Multi-disk Device"
msgstr "_Többlemezes eszköz indítása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1625
msgid "_Stop Multi-disk Device"
msgstr "_Többlemezes eszköz leállítása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1629
msgid "_Unlock Drive"
msgstr "Meghajtó fel_oldása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1630
msgid "_Lock Drive"
msgstr "Meghajtó _zárolása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1704
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2251
#, c-format
msgid "Unable to start %s"
msgstr "A(z) %s nem indítható"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:1994
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2023
#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2052
#, c-format
msgid "Unable to eject %s"
msgstr "Nem adható ki: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2197
#, c-format
msgid "Unable to poll %s for media changes"
msgstr "A(z) %s adathordozó változásai nem kérdezhetők le"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2307
#, c-format
msgid "Unable to stop %s"
msgstr "A(z) %s nem állítható le"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2423
msgid "Remove"
msgstr "Eltávolítás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2432
msgid "Rename..."
msgstr "Átnevezés…"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2444
msgid "_Mount"
msgstr "_Csatolás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2451
msgid "_Unmount"
msgstr "_Leválasztás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2458
msgid "_Eject"
msgstr "_Kiadás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:2466
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1418
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2306
msgid "Empty _Trash"
msgstr "_Kuka ürítése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:3123
msgid "Icon Size"
msgstr "Ikonméret"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/marlin-places-sidebar.c:3124
msgid "Icon size"
msgstr "Ikonméret"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/config.vala:5
msgid "Browse your files"
msgstr "Fájljai böngészése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../src/config.vala:6
msgid "File Manager"
msgstr "Fájlkezelő"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:237
msgid "Today at 00:00:00 PM"
msgstr "Ma 00.00.00-kor"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:238
msgid "Today at %-I:%M:%S %p"
msgstr "Ma %-k.%M.%S-kor"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:240
msgid "Today at 00:00 PM"
msgstr "Ma 00.00-kor"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:241
msgid "Today at %-I:%M %p"
msgstr "Ma %-k.%M-kor"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:243
msgid "Today, 00:00 PM"
msgstr "Ma, 00.00"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:244
msgid "Today, %-I:%M %p"
msgstr "Ma, %-k.%M"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:246
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:247
msgid "Today"
msgstr "Ma"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:256
msgid "Yesterday at 00:00:00 PM"
msgstr "Tegnap 00.00.00-kor"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:257
msgid "Yesterday at %-I:%M:%S %p"
msgstr "Tegnap %-k.%M.%S-kor"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:259
msgid "Yesterday at 00:00 PM"
msgstr "Tegnap 00.00-kor"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:260
msgid "Yesterday at %-I:%M %p"
msgstr "Tegnap %-k.%M-kor"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:262
msgid "Yesterday, 00:00 PM"
msgstr "Tegnap, 00.00"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:263
msgid "Yesterday, %-I:%M %p"
msgstr "Tegnap, %k.%M"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:265
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:266
msgid "Yesterday"
msgstr "Tegnap"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:277
msgid "Wednesday, September 00 0000 at 00:00:00 PM"
msgstr "0000. szeptember 00., szerda, 00.00.00"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:278
msgid "%A, %B %-d %Y at %-I:%M:%S %p"
msgstr "%Y. %B %e., %A, %k.%M.%S"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:280
msgid "Mon, Oct 00 0000 at 00:00:00 PM"
msgstr "0000. okt. 00., hétfő, 00.00.00"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:281
msgid "%a, %b %-d %Y at %-I:%M:%S %p"
msgstr "%Y. %b. %e., %a., %H.%M.%S"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:283
msgid "Mon, Oct 00 0000 at 00:00 PM"
msgstr "0000. okt. 00., hétfő, 00.00"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:284
msgid "%a, %b %-d %Y at %-I:%M %p"
msgstr "%Y. %b. %e., %a., %H.%M"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:286
msgid "Oct 00 0000 at 00:00 PM"
msgstr "0000. okt. 00., 00.00"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:287
msgid "%b %-d %Y at %-I:%M %p"
msgstr "%Y. %b. %e., %H.%M"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:289
msgid "Oct 00 0000, 00:00 PM"
msgstr "0000. okt. 00., 00.00"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:290
msgid "%b %-d %Y, %-I:%M %p"
msgstr "%Y. %b. %e., %H.%M"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:292
msgid "00/00/00, 00:00 PM"
msgstr "00/00/00, 00.00"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:293
msgid "%m/%-d/%y, %-I:%M %p"
msgstr "%y/%m/%-d, %H.%M"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:295
msgid "00/00/00"
msgstr "00/00/00"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-fcts.c:296
msgid "%m/%d/%y"
msgstr "%y/%m/%d"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-stock-dialogs.c:35
msgid "Show more _details"
msgstr "Több _részlet megjelenítése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/gof-file.c:252
#, c-format
msgid "link to %s"
msgstr "link erre: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/gof-file.c:1698
#, c-format
msgid "Failed to parse the desktop file: %s"
msgstr "A fájl elemzése sikertelen: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/gof-file.c:1736
msgid "No Exec field specified"
msgstr "Nincs Exec mező megadva"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/gof-file.c:1756
msgid "No URL field specified"
msgstr "Nincs URL megadva"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/gof-file.c:1762
msgid "Invalid desktop file"
msgstr "Érvénytelen .desktop fájl"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/gof-file.c:2052
msgid "Slashes are not allowed in filenames"
msgstr "A fájlnevek nem tartalmazhatnak osztásjelet"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/gof-file.c:2072
msgid "Toplevel files cannot be renamed"
msgstr "A felső szintű fájlok nem nevezhetők át"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-utilities.c:266
#, c-format
msgid "Could not determine original location of \"%s\" "
msgstr "Nem határozható meg „%s” eredeti helye "

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-utilities.c:269
msgid "The item cannot be restored from trash"
msgstr "Az elem nem állítható helyre a Kukából"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-progress-info.c:192
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-progress-info.c:210
msgid "Preparing"
msgstr "Felkészülés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:146
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:361
#, c-format
msgid "Merge folder \"%s\"?"
msgstr "Egyesíti a(z) „%s” mappát?"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:150
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:364
msgid ""
"Merging will ask for confirmation before replacing any files in the folder "
"that conflict with the files being copied."
msgstr ""
"Az egyesítés a mappában található, a másolandó fájlokkal ütköző fájlok "
"felülírása előtt megerősítést kér."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:155
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:369
#, c-format
msgid "An older folder with the same name already exists in \"%s\"."
msgstr "Már létezik ilyen nevű régebbi mappa „%s” alatt."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:159
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:373
#, c-format
msgid "A newer folder with the same name already exists in \"%s\"."
msgstr "Már létezik egy újabb, ugyan ilyen nevű mappa itt: „%s”."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:163
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:377
#, c-format
msgid "Another folder with the same name already exists in \"%s\"."
msgstr "Már létezik egy másik, ugyan ilyen nevű mappa itt: „%s”."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:168
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:382
msgid "Replacing it will remove all files in the folder."
msgstr "Cseréjével az összes fájl a mappában el lesz távolítva."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:170
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:384
#, c-format
msgid "Replace folder \"%s\"?"
msgstr "Lecseréli a(z) „%s” mappát?"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:172
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:386
#, c-format
msgid "A folder with the same name already exists in \"%s\"."
msgstr "Már létezik egy ugyan ilyen nevű mappa itt: „%s”."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:177
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:391
#, c-format
msgid "Replace file \"%s\"?"
msgstr "Felülírja a(z) \"%s\" fájlt?"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:179
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:393
msgid "Replacing it will overwrite its content."
msgstr "Cseréjével a fájl tartalma felül lesz írva."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:183
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:397
#, c-format
msgid "An older file with the same name already exists in \"%s\"."
msgstr "Már létezik egy régebbi, ugyanilyen nevű fájl itt: „%s”."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:187
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:401
#, c-format
msgid "A newer file with the same name already exists in \"%s\"."
msgstr "Már létezik egy újabb, ugyanilyen nevű fájl itt: „%s”."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:191
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:405
#, c-format
msgid "Another file with the same name already exists in \"%s\"."
msgstr "Már létezik egy másik, ugyanilyen nevű fájl itt: „%s”."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:253
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:460
msgid "Original file"
msgstr "Eredeti fájl"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:254
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:285
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:461
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:482
msgid "Size:"
msgstr "Méret:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:257
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:288
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:464
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:485
msgid "Type:"
msgstr "Típus:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:260
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:291
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:467
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:488
msgid "Last modified:"
msgstr "Utoljára módosítva:"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:284
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:481
msgid "Replace with"
msgstr "Cserélje erre"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:313
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:506
msgid "Merge"
msgstr "Egyesítés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:700
msgid "_Select a new name for the destination"
msgstr "A_dja meg a cél új nevét"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:714
msgid "Reset"
msgstr "Alapállapot"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:726
msgid "Apply this action to all files"
msgstr "Művelet alkalmazása az összes fájlra"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:737
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:201
msgid "_Skip"
msgstr "_Kihagyás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:742
msgid "Re_name"
msgstr "Át_nevezés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:748
msgid "Replace"
msgstr "Felülírás"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-conflict-dialog.c:821
msgid "File conflict"
msgstr "Fájlütközés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/eel-vfs-extensions.c:72
msgid " (invalid Unicode)"
msgstr " (érvénytelen Unicode)"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1202
#, c-format
msgid "Delete %d copied items"
msgstr "%d másolt elem törlése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1205
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1215
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1246
#, c-format
msgid "Delete '%s'"
msgstr "„%s” törlése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1212
#, c-format
msgid "Delete %d duplicated items"
msgstr "%d duplikált elem törlése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1223
#, c-format
msgid "Move %d items back to '%s'"
msgstr "%d elem visszahelyezése ide: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1227
#, c-format
msgid "Move '%s' back to '%s'"
msgstr "„%s” helyreállítása ide: „%s”"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1236
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1403
#, c-format
msgid "Rename '%s' as '%s'"
msgstr "„%s” átnevezése erre: „%s”"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1255
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1450
#, c-format
msgid "Restore %d items from trash"
msgstr "%d elem helyreállítása a kukából"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1263
#, c-format
msgid "Restore '%s' to '%s'"
msgstr "„%s” visszaállítása erre: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1274
#, c-format
msgid "Move %d items back to trash"
msgstr "%d elem visszahelyezése a kukába"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1277
#, c-format
msgid "Move '%s' back to trash"
msgstr "„%s” visszahelyezése a kukába"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1286
#, c-format
msgid "Delete links to %d items"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1289
#, c-format
msgid "Delete link to '%s'"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1299
#, c-format
msgid "Restore original permissions of items enclosed in '%s'"
msgstr ""
"„%s” által tartalmazott elemek eredeti jogosultságainak helyreállítása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1307
#, c-format
msgid "Restore original permissions of '%s'"
msgstr "„%s” eredeti jogosultságainak helyreállítása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1316
#, c-format
msgid "Restore group of '%s' to '%s'"
msgstr "„%s” csoportjának visszaállítása erre: „%s”"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1326
#, c-format
msgid "Restore owner of '%s' to '%s'"
msgstr "„%s” tulajdonságának visszaállítása erre: „%s”"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1365
#, c-format
msgid "Copy %d items to '%s'"
msgstr "%d elem másolása ide: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1369
#, c-format
msgid "Copy '%s' to '%s'"
msgstr "„%s” másolása ide: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1377
#, c-format
msgid "Duplicate of %d items in '%s'"
msgstr "%d duplikált elem itt: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1382
#, c-format
msgid "Duplicate '%s' in '%s'"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1390
#, c-format
msgid "Move %d items to '%s'"
msgstr "%d elem mozgatása ide: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1394
#, c-format
msgid "Move '%s' to '%s'"
msgstr "„%s” áthelyezése ide: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1412
#, c-format
msgid "Create new file '%s' from template "
msgstr "Új „%s” fájl létrehozása sablonból "

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1419
#, c-format
msgid "Create an empty file '%s'"
msgstr "Üres fájl létrehozása: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1426
#, c-format
msgid "Create a new folder '%s'"
msgstr "Új mappa létrehozása: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1434
#, c-format
msgid "Move %d items to trash"
msgstr "%d elem áthelyezése a kukába"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1440
#, c-format
msgid "Move '%s' to trash"
msgstr "„%s” áthelyezés a kukába"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1453
#, c-format
msgid "Restore '%s' from trash"
msgstr "„%s” visszaállítása a kukából"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1462
#, c-format
msgid "Create links to %d items"
msgstr "Hivatkozása létrehozása %d elemre"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1465
#, c-format
msgid "Create link to '%s'"
msgstr "Hivatkozás létrehozása erre: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1474
#, c-format
msgid "Set permissions of items enclosed in '%s'"
msgstr "„%s” által tartalmazott elemek jogosultságainak beállítása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1482
#, c-format
msgid "Set permissions of '%s'"
msgstr "„%s” jogosultságainak beállítása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1491
#, c-format
msgid "Set group of '%s' to '%s'"
msgstr "„%s” csoportjának beállítása erre: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1501
#, c-format
msgid "Set owner of '%s' to '%s'"
msgstr "„%s” tulajdonosának beállítása erre: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1533
#, c-format
msgid "_Undo copy of %d item"
msgid_plural "_Undo copy of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1538
#, c-format
msgid "_Undo duplicate of %d item"
msgid_plural "_Undo duplicate of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1543
#, c-format
msgid "_Undo move of %d item"
msgid_plural "_Undo move of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1548
#, c-format
msgid "_Undo rename of %d item"
msgid_plural "_Undo rename of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1552
msgid "_Undo creation of an empty file"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1555
msgid "_Undo creation of a file from template"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1559
#, c-format
msgid "_Undo creation of %d folder"
msgid_plural "_Undo creation of %d folders"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1564
#, c-format
msgid "_Undo move to trash of %d item"
msgid_plural "_Undo move to trash of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1569
#, c-format
msgid "_Undo restore from trash of %d item"
msgid_plural "_Undo restore from trash of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1574
#, c-format
msgid "_Undo create link to %d item"
msgid_plural "_Undo create link to %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1579
#, c-format
msgid "_Undo delete of %d item"
msgid_plural "_Undo delete of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1584
#, c-format
msgid "Undo recursive change permissions of %d item"
msgid_plural "Undo recursive change permissions of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1590
#, c-format
msgid "Undo change permissions of %d item"
msgid_plural "Undo change permissions of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1595
#, c-format
msgid "Undo change group of %d item"
msgid_plural "Undo change group of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1600
#, c-format
msgid "Undo change owner of %d item"
msgid_plural "Undo change owner of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1628
#, c-format
msgid "_Redo copy of %d item"
msgid_plural "_Redo copy of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1633
#, c-format
msgid "_Redo duplicate of %d item"
msgid_plural "_Redo duplicate of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1638
#, c-format
msgid "_Redo move of %d item"
msgid_plural "_Redo move of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1643
#, c-format
msgid "_Redo rename of %d item"
msgid_plural "_Redo rename of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1647
msgid "_Redo creation of an empty file"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1650
msgid "_Redo creation of a file from template"
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1654
#, c-format
msgid "_Redo creation of %d folder"
msgid_plural "_Redo creation of %d folders"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1659
#, c-format
msgid "_Redo move to trash of %d item"
msgid_plural "_Redo move to trash of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1664
#, c-format
msgid "_Redo restore from trash of %d item"
msgid_plural "_Redo restore from trash of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1669
#, c-format
msgid "_Redo create link to %d item"
msgid_plural "_Redo create link to %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1674
#, c-format
msgid "_Redo delete of %d item"
msgid_plural "_Redo delete of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1679
#, c-format
msgid "Redo recursive change permissions of %d item"
msgid_plural "Redo recursive change permissions of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1685
#, c-format
msgid "Redo change permissions of %d item"
msgid_plural "Redo change permissions of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1690
#, c-format
msgid "Redo change group of %d item"
msgid_plural "Redo change group of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-undostack-manager.c:1695
#, c-format
msgid "Redo change owner of %d item"
msgid_plural "Redo change owner of %d items"
msgstr[0] ""
msgstr[1] ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:202
msgid "S_kip All"
msgstr "Összes ki_hagyása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:203
msgid "_Retry"
msgstr "_Újra"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:204
msgid "Delete _All"
msgstr "Öss_zes törlése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:205
msgid "_Replace"
msgstr "_Kicserél"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:206
msgid "Replace _All"
msgstr "_Összes cseréje"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:207
msgid "_Merge"
msgstr "Össz_efésülés"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:208
msgid "Merge _All"
msgstr "Összes össze_fésülése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:209
msgid "Copy _Anyway"
msgstr "Másolás mi_ndenképp"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:295
#, c-format
msgid "%'d second"
msgid_plural "%'d seconds"
msgstr[0] "%'d másodperc"
msgstr[1] "%'d másodperc"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:300
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:311
#, c-format
msgid "%'d minute"
msgid_plural "%'d minutes"
msgstr[0] "%'d perc"
msgstr[1] "%'d perc"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:310
#, c-format
msgid "%'d hour"
msgid_plural "%'d hours"
msgstr[0] "%'d óra"
msgstr[1] "%'d óra"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:318
#, c-format
msgid "approximately %'d hour"
msgid_plural "approximately %'d hours"
msgstr[0] "megközelítőleg %'d óra"
msgstr[1] "megközelítőleg %'d óra"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:394
#, c-format
msgid "Link to %s"
msgstr "Link erre: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:398
#, c-format
msgid "Another link to %s"
msgstr "Még egy link erre: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:414
#, c-format
msgid "%'dst link to %s"
msgstr "%'d. link erre: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:418
#, c-format
msgid "%'dnd link to %s"
msgstr "%'d. link erre: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:422
#, c-format
msgid "%'drd link to %s"
msgstr "%'d. link erre: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:426
#, c-format
msgid "%'dth link to %s"
msgstr "%'d. link erre: %s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:464
msgid " (copy)"
msgstr " (másolat)"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:466
msgid " (another copy)"
msgstr " (még egy másolat)"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:469
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:471
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:473
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:483
msgid "th copy)"
msgstr ". másolat)"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:476
msgid "st copy)"
msgstr ". másolat)"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:478
msgid "nd copy)"
msgstr ". másolat)"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:480
msgid "rd copy)"
msgstr ". másolat)"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:497
#, c-format
msgid "%s (copy)%s"
msgstr "%s (másolat)%s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:499
#, c-format
msgid "%s (another copy)%s"
msgstr "%s (még egy másolat)%s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:502
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:504
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:506
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:520
#, c-format
msgid "%s (%'dth copy)%s"
msgstr "%s (%'d. másolat)%s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:514
#, c-format
msgid "%s (%'dst copy)%s"
msgstr "%s (%'d. másolat)%s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:516
#, c-format
msgid "%s (%'dnd copy)%s"
msgstr "%s (%'d. másolat)%s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:518
#, c-format
msgid "%s (%'drd copy)%s"
msgstr "%s (%'d. másolat)%s"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:618
msgid " ("
msgstr " ("

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:626
#, c-format
msgid " (%'d"
msgstr " (%'d"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1377
msgid "Are you sure you want to permanently delete \"%B\" from the trash?"
msgstr "Biztosan véglegesen törölni akarja a következőt a Kukából: „%B”?"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1380
#, c-format
msgid ""
"Are you sure you want to permanently delete the %'d selected item from the "
"trash?"
msgid_plural ""
"Are you sure you want to permanently delete the %'d selected items from the "
"trash?"
msgstr[0] ""
"Biztosan véglegesen törölni akarja a kijelölt %'d elemet a Kukából?"
msgstr[1] ""
"Biztosan véglegesen törölni akarja a kijelölt %'d elemet a Kukából?"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1390
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1458
msgid "If you delete an item, it will be permanently lost."
msgstr "Ha töröl egy elemet, akkor az véglegesen elvész."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1411
msgid "Empty all items from Trash?"
msgstr "Törölni kívánja az összes elemet a kukából?"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1415
msgid "All items in the Trash will be permanently deleted."
msgstr "A kuka összes eleme véglegesen törölve lesz."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1446
msgid "Are you sure you want to permanently delete \"%B\"?"
msgstr "Biztosan véglegesen törölni akarja a következőt: „%B”?"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1449
#, c-format
msgid "Are you sure you want to permanently delete the %'d selected item?"
msgid_plural ""
"Are you sure you want to permanently delete the %'d selected items?"
msgstr[0] "Biztosan véglegesen törölni akarja a kijelölt %'d elemet?"
msgstr[1] "Biztosan véglegesen törölni akarja a kijelölt %'d elemet?"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1474
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1506
msgid "Deleting files"
msgstr "Fájlok törlése folyamatban"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1500
#, c-format
msgid "%'d file left to delete"
msgid_plural "%'d files left to delete"
msgstr[0] "%'d fájl törlése van hátra"
msgstr[1] "%'d fájl törlése van hátra"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1520
msgid "%T left"
msgid_plural "%T left"
msgstr[0] "%T van hátra"
msgstr[1] "%T van hátra"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1588
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1622
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1661
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1738
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2569
msgid "Error while deleting."
msgstr "Hiba törléskor."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1592
msgid ""
"Files in the folder \"%B\" cannot be deleted because you do not have "
"permissions to see them."
msgstr ""
"A(z) „%B” mappa fájljai nem törölhetők, mert nincs jogosultsága látni azokat."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1595
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2628
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3624
msgid ""
"There was an error getting information about the files in the folder \"%B\"."
msgstr ""
"Hiba történt a(z) „%B” mappa fájljaival kapcsolatos információk lekérésekor."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1604
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3633
msgid "_Skip files"
msgstr "Fájlok _kihagyása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1625
msgid ""
"The folder \"%B\" cannot be deleted because you do not have permissions to "
"read it."
msgstr "A(z) „%B” mappa nem törölhető, mert nincs rá olvasási joga."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1628
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2667
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3669
msgid "There was an error reading the folder \"%B\"."
msgstr "Hiba történt a(z) „%B” mappa olvasása közben."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1662
msgid "Could not remove the folder %B."
msgstr "A(z) %B mappa nem távolítható el."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1739
msgid "There was an error deleting %B."
msgstr "Hiba történt a(z) %B törlése közben."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1815
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1827
msgid "Moving files to trash"
msgstr "Fájlok áthelyezése a Kukába"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1829
#, c-format
msgid "%'d file left to trash"
msgid_plural "%'d files left to trash"
msgstr[0] "%'d fájl maradt Kukába való áthelyezésből"
msgstr[1] "%'d fájl maradt Kukába való áthelyezésből"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1884
msgid "Cannot move file to trash. Delete Immediately?"
msgstr "Nem lehet a fájlt a kukába helyezni. Azonnal törli?"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:1885
msgid ""
"This file is located on an external media and cannot be moved to the trash. "
"Once deleted, it cannot be restored."
msgstr ""

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2065
msgid "Trashing Files"
msgstr "Fájlok Kukába helyezése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2067
msgid "Deleting Files"
msgstr "Fájlok törlése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2139
msgid "Unable to eject %V"
msgstr "A eszköz (%V) nem adható ki"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2141
msgid "Unable to unmount %V"
msgstr "A kötet (%V) nem választható le"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2296
msgid "Do you want to empty the trash before you unmount?"
msgstr "Leválasztás előtt ki legyen ürítve a Kuka?"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2298
msgid ""
"In order to regain the free space on this volume the trash must be emptied. "
"All trashed items on the volume will be permanently lost."
msgstr ""
"A szabad hely visszanyerése érdekében a tárolón ki kell üríteni a Kukát. A "
"Kuka összes eleme a tárolón véglegesen elvész."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2304
msgid "Do _not Empty Trash"
msgstr "_Ne ürítse a Kukát"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2359
msgid "Emptying the trash"
msgstr "A kuka ürítése folyamatban"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2426
#, c-format
msgid "Unable to mount %s"
msgstr "A(z) %s nem csatolható"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2504
#, c-format
msgid "Preparing to copy %'d file (%S)"
msgid_plural "Preparing to copy %'d files (%S)"
msgstr[0] "Felkészülés %'d fájl másolására (%S)"
msgstr[1] "Felkészülés %'d fájl másolására (%S)"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2510
#, c-format
msgid "Preparing to move %'d file (%S)"
msgid_plural "Preparing to move %'d files (%S)"
msgstr[0] "Felkészülés %'d fájl áthelyezésére (%S)"
msgstr[1] "Felkészülés %'d fájl áthelyezésére (%S)"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2516
#, c-format
msgid "Preparing to delete %'d file (%S)"
msgid_plural "Preparing to delete %'d files (%S)"
msgstr[0] "Felkészülés %'d fájl törlésére (%S)"
msgstr[1] "Felkészülés %'d fájl törlésére (%S)"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2522
#, c-format
msgid "Preparing to trash %'d file"
msgid_plural "Preparing to trash %'d files"
msgstr[0] "Felkészülés %'d fájl áthelyezésére a Kukába"
msgstr[1] "Felkészülés %'d fájl áthelyezésére a Kukába"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2565
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3485
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3616
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3661
msgid "Error while copying."
msgstr "Hiba másoláskor."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2567
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3614
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3659
msgid "Error while moving."
msgstr "Hiba áthelyezéskor."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2571
msgid "Error while moving files to trash."
msgstr "Hiba a fájlok Kukába helyezésekor."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2625
msgid ""
"Files in the folder \"%B\" cannot be handled because you do not have "
"permissions to see them."
msgstr ""
"A(z) \"%B\" mappa fájljai nem másolhatók, mert nincs jogosultsága látni "
"azokat."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2664
msgid ""
"The folder \"%B\" cannot be handled because you do not have permissions to "
"read it."
msgstr "A(z) \"%B\" mappa nem kezelhető, mert nincs rá olvasási joga."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2741
msgid ""
"The file \"%B\" cannot be handled because you do not have permissions to "
"read it."
msgstr "A(z) \"%B\" fájl nem kezelhető, mert nincs rá olvasási joga."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2744
msgid "There was an error getting information about \"%B\"."
msgstr "Hiba történt az információkéréskor a következőről: \"%B\"."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2844
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2886
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2919
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2949
msgid "Error while copying to \"%B\"."
msgstr "Hiba a(z) \"%B\" helyre másoláskor."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2848
msgid "You do not have permissions to access the destination folder."
msgstr "Nincs jogosultsága elérni a célmappát."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2850
msgid "There was an error getting information about the destination."
msgstr "Hiba történt információk kérésekor a célról."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2887
msgid "The destination is not a folder."
msgstr "A cél nem egy mappa."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2920
msgid ""
"There is not enough space on the destination. Try to remove files to make "
"space."
msgstr ""
"A célon nincs elég hely. Próbáljon meg néhány fájl eltávolításával helyet "
"felszabadítani."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2922
#, c-format
msgid "There is %S available, but %S is required."
msgstr "%S érhető el, de %S szükséges."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:2950
msgid "The destination is read-only."
msgstr "A cél írásvédett."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3011
msgid "Moving \"%B\" to \"%B\""
msgstr "„%B” áthelyezése ide: „%B”"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3012
msgid "Copying \"%B\" to \"%B\""
msgstr "„%B” másolása ide: „%B”"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3016
msgid "Duplicating \"%B\""
msgstr "„%B” kettőzése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3020
msgid "Moving %'d file (in \"%B\") to \"%B\""
msgid_plural "Moving %'d files (in \"%B\") to \"%B\""
msgstr[0] "%'d fájl áthelyezése (ebben: „%B”) a következőbe: „%B”"
msgstr[1] "%'d fájl áthelyezése (ebben: „%B”) a következőbe: „%B”"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3023
msgid "Copying %'d file (in \"%B\") to \"%B\""
msgid_plural "Copying %'d files (in \"%B\") to \"%B\""
msgstr[0] "%'d fájl másolása (ebben: „%B”) a következőbe: „%B”"
msgstr[1] "%'d fájl másolása (ebben: „%B”) a következőbe: „%B”"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3030
msgid "Duplicating %'d file (in \"%B\")"
msgid_plural "Duplicating %'d files (in \"%B\")"
msgstr[0] "%'d fájl kettőzése (ebben: „%B”)"
msgstr[1] "%'d fájl kettőzése (ebben: „%B”))"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3039
msgid "Moving %'d file to \"%B\""
msgid_plural "Moving %'d files to \"%B\""
msgstr[0] "%'d fájl áthelyezése ide „%B”"
msgstr[1] "%'d fájl áthelyezése ide „%B”"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3043
msgid "Copying %'d file to \"%B\""
msgid_plural "Copying %'d files to \"%B\""
msgstr[0] "%'d fájl másolása ide „%B”"
msgstr[1] "%'d fájl másolása ide „%B”"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3048
#, c-format
msgid "Duplicating %'d file"
msgid_plural "Duplicating %'d files"
msgstr[0] "%'d fájl megkettőzése"
msgstr[1] "%'d fájl megkettőzése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3099
#, c-format
msgid "%S of %S"
msgstr "%S, összesen: %S"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3110
msgid "%S of %S — %T left (%S/sec)"
msgid_plural "%S of %S — %T left (%S/sec)"
msgstr[0] "%S, összesen: %S — %T van hátra (%S/mp)"
msgstr[1] "%S, összesen: %S — %T van hátra (%S/mp)"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3489
msgid ""
"The folder \"%B\" cannot be copied because you do not have permissions to "
"create it in the destination."
msgstr ""
"A(z) \"%B\" mappa nem másolható, mert nincs joga létrehozni azt a célon."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3492
msgid "There was an error creating the folder \"%B\"."
msgstr "Hiba történt a(z) \"%B\" mappa létrehozásakor."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3621
msgid ""
"Files in the folder \"%B\" cannot be copied because you do not have "
"permissions to see them."
msgstr ""
"A(z) \"%B\" mappa fájljai nem másolhatók, mert nincs jogosultsága látni "
"azokat."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3666
msgid ""
"The folder \"%B\" cannot be copied because you do not have permissions to "
"read it."
msgstr "A(z) \"%B\" mappa nem másolható, mert nincs rá olvasási joga."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3711
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4412
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5000
msgid "Error while moving \"%B\"."
msgstr "Hiba a(z) \"%B\" áthelyezésekor."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3712
msgid "Could not remove the source folder."
msgstr "A forrásmappa nem távolítható el."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3797
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3838
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4414
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4485
msgid "Error while copying \"%B\"."
msgstr "Hiba a(z) \"%B\" másolásakor."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3798
#, c-format
msgid "Could not remove files from the already existing folder %F."
msgstr "Nem távolíthatók el fájlok a már létező %F mappából."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:3839
#, c-format
msgid "Could not remove the already existing file %F."
msgstr "A már létező %F fájl nem távolítható el."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4168
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4840
msgid "You cannot move a folder into itself."
msgstr "Nem lehet egy mappát önmagába áthelyezni."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4169
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4841
msgid "You cannot copy a folder into itself."
msgstr "Nem lehet egy mappát önmagára másolni."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4170
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4842
msgid "The destination folder is inside the source folder."
msgstr "A célmappa a forrásmappán belül van."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4201
msgid "You cannot move a file over itself."
msgstr "A fájl nem mozgatható önmagára."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4202
msgid "You cannot copy a file over itself."
msgstr "Nem másolhatja a fájlt saját magára."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4203
msgid "The source file would be overwritten by the destination."
msgstr "A forrásfájlt felülírná a célfájl."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4416
#, c-format
msgid "Could not remove the already existing file with the same name in %F."
msgstr "A(z) „%F” mappában található azonos nevű fájl nem törölhető."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4486
#, c-format
msgid "There was an error copying the file into %F."
msgstr "Hiba történt a fájl %F mappába másolásakor."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4714
msgid "Copying Files"
msgstr "Fájlok másolása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4740
msgid "Preparing to move to \"%B\""
msgstr "Felkészülés \"%B\" mappába való mozgatáshoz"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:4752
#, c-format
msgid "Preparing to move %'d file"
msgid_plural "Preparing to move %'d files"
msgstr[0] "Felkészülés %'d fájl áthelyezésére"
msgstr[1] "Felkészülés %'d fájl áthelyezésére"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5001
#, c-format
msgid "There was an error moving the file into %F."
msgstr "Hiba történt a fájl %F mappába helyezésekor."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5264
msgid "Moving Files"
msgstr "Fájlok áthelyezése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5294
msgid "Creating links in \"%B\""
msgstr "Linkek létrehozása itt: „%B”"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5305
#, c-format
msgid "Making link to %'d file"
msgid_plural "Making links to %'d files"
msgstr[0] "Link létrehozása %'d fájlra"
msgstr[1] "Linkek létrehozása %'d fájlokra"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5440
msgid "Error while creating link to %B."
msgstr "Hiba a link létrehozásakor a következőre: \"%B\"."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5442
msgid "Symbolic links only supported for local files"
msgstr "A szimbolikus linkek csak helyi fájlokhoz támogatottak"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5445
msgid "The target doesn't support symbolic links."
msgstr "A cél nem támogatja a szimbolikus linkeket."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5448
#, c-format
msgid "There was an error creating the symlink in %F."
msgstr "Hiba történt a szimbolikus link létrehozásakor a következőben: %F."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5776
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:5779
msgid "Setting permissions"
msgstr "Jogosultságok beállítása"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:6030
msgid "untitled folder"
msgstr "névtelen mappa"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:6038
msgid "new file"
msgstr "új fájl"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:6209
msgid "Error while creating directory %B."
msgstr "Hiba a következő könyvtár létrehozásakor: %B."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:6211
msgid "Error while creating file %B."
msgstr "Hiba a következő fájl létrehozásakor: %B."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:6213
#, c-format
msgid "There was an error creating the directory in %F."
msgstr "Hiba a könyvtár létrehozásakor a következőben: %F."

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libcore/marlin-file-operations.c:6530
msgid "Emptying Trash"
msgstr "Kuka ürítése"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libwidgets/LocationBar.vala:241
msgid "Cut the selected text to the clipboard"
msgstr "A kijelölt szöveg áthelyezése a vágólapra"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libwidgets/LocationBar.vala:245
msgid "Copy the selected text to the clipboard"
msgstr "A kijelölt szöveg másolása a vágólapra"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libwidgets/LocationBar.vala:249
#: /home/ttosttos/pantheon-files-fix-1004294/po/../libwidgets/LocationBar.vala:253
msgid "Paste the text stored on the clipboard"
msgstr "Szöveg beillesztése a vágólapról"

#: /home/ttosttos/pantheon-files-fix-1004294/po/../libwidgets/LocationBar.vala:722
#, c-format
msgid "Go to %s"
msgstr "Ugrás ide: %s"