summaryrefslogtreecommitdiff
path: root/BUILD/Languages/hungarian.lng
blob: 093db082634f2248233a0d0bf021ad2f860148f3 (plain)
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
<header>
	<language name>Magyar</language name>
	<translator>Demon</translator>
	<locale>hu_HU</locale>
	<flag file>hungary.png</flag file>
	<plural forms>2</plural forms>
	<plural definition>n == 1 ? 0 : 1</plural definition>
</header>

<source>Show in Explorer</source>
<target></target>
<source>Open with default application</source>
<target>Megnyitás az alapértelmezett alkalmazással</target>
<source>Browse directory</source>
<target>Mappa tallózása</target>
<source>RealtimeSync - Automated Synchronization</source>
<target>RealtimeSync - Automatikus szinkronizálás</target>
<source>Browse</source>
<target>Tallózás</target>
<source>Error resolving symbolic link:</source>
<target>A szimbolikus link feloldása sikertelen:</target>
<source>Select alternate synchronization settings</source>
<target>Alternatív szinkronizációs beállítások kiválasztása</target>
<source>No filter selected</source>
<target>Nincs szűrő kiválasztva</target>
<source>Filter is active</source>
<target>A szűrő aktív</target>
<source>Clear filter settings</source>
<target>Szűrőbeállítások törlése</target>
<source>Remove alternate settings</source>
<target>Alternatív beállítások eltávolítása</target>
<source>Create a batch job</source>
<target>Kötegelt feladat létrehozása</target>
<source>Synchronization settings</source>
<target>Szinkronizáció beállításai</target>
<source>Comparison settings</source>
<target>Összehasonlítási beállítások</target>
<source>About</source>
<target>A programról</target>
<source>Error</source>
<target>Hiba</target>
<source>Warning</source>
<target>Figyelem</target>
<source>Question</source>
<target>Kérdés</target>
<source>Confirm</source>
<target>Megerősítés</target>
<source>Configure filter</source>
<target>Szűrő beállítása</target>
<source>Customize columns</source>
<target>Oszlopok testreszabása</target>
<source>Global settings</source>
<target>Globális beállítások</target>
<source>Synchronization Preview</source>
<target>Szinkronizáció előnézete</target>
<source>Find</source>
<target>Keresés:</target>
<source>%x MB</source>
<target>%x MB</target>
<source>%x KB</source>
<target></target>
<source>%x GB</source>
<target>%x GB</target>
<source>
<pluralform>1 Byte</pluralform>
<pluralform>%x Bytes</pluralform>
</source>
<target>
</target>
<source><Symlink></source>
<target><Symlink></target>
<source><Directory></source>
<target><Mappa></target>
<source>Size</source>
<target>Méret</target>
<source>Date</source>
<target>Dátum</target>
<source>Full path</source>
<target>Teljes elérési útvonal</target>
<source>Filename</source>
<target>Fájlnév</target>
<source>Relative path</source>
<target>Relatív útvonal</target>
<source>Directory</source>
<target>Mappa</target>
<source>Extension</source>
<target>Kiterjesztés</target>
<source>Comparison Result</source>
<target>Az összehasonlítás eredménye</target>
<source>Incompatible synchronization database format:</source>
<target>Inkompatibilis szinkronizációs adatbázis formátum:</target>
<source>Initial synchronization:</source>
<target>Első szinkronizáció:</target>
<source>One of the FreeFileSync database files is not yet existing:</source>
<target>A FreeFileSync egyik adatbázisfájlja nem létezik:</target>
<source>One of the FreeFileSync database entries within the following file is not yet existing:</source>
<target>A FreeFileSync a következő fájlban lévő egyik adatbázisbejegyzése nem található:</target>
<source>Error reading from synchronization database:</source>
<target>Hiba történt a szinkronizációs adatbázis olvasása közben:</target>
<source>An exception occurred!</source>
<target>Kivétel keletkezett!</target>
<source>Error deleting file:</source>
<target>A fájl törlése sikertelen:</target>
<source>Error reading file attributes:</source>
<target>A fájl attribútumainak olvasása sikertelen:</target>
<source>Waiting while directory is locked (%x)...</source>
<target>Várakozás a mappa zárolásának a feloldására (%x)...</target>
<source>Error setting directory lock:</source>
<target>Hiba történt a mappa zárolása közben:</target>
<source>
<pluralform>1 sec</pluralform>
<pluralform>%x sec</pluralform>
</source>
<target>
</target>
<source>Info</source>
<target>Információ</target>
<source>Fatal Error</source>
<target>Kritikus hiba</target>
<source>File does not exist:</source>
<target>A következő fájl nem létezik:</target>
<source>Error parsing configuration file:</source>
<target>A beállításokat tartalmazó fájl feldolgozása sikertelen:</target>
<source>Error writing file:</source>
<target>A fájl írása sikertelen:</target>
<source>Invalid FreeFileSync config file!</source>
<target>Érvénytelen a FreeFileSync beállításait tartalmazó fájl!</target>
<source>/sec</source>
<target>/másodperc</target>
<source>
<pluralform>1 min</pluralform>
<pluralform>%x min</pluralform>
</source>
<target>
</target>
<source>
<pluralform>1 hour</pluralform>
<pluralform>%x hours</pluralform>
</source>
<target>
</target>
<source>
<pluralform>1 day</pluralform>
<pluralform>%x days</pluralform>
</source>
<target>
</target>
<source>S&ave configuration...</source>
<target>Beállítások mentés&e...</target>
<source>&Load configuration...</source>
<target>&Beállítások betöltése...</target>
<source>&Quit</source>
<target>&Kilépés</target>
<source>&File</source>
<target>&Fájl</target>
<source>&Content</source>
<target>&Tartalom</target>
<source>&About...</source>
<target>&A programról...</target>
<source>&Help</source>
<target>&Súgó</target>
<source>Usage:</source>
<target>Használat:</target>
<source>1. Select directories to monitor.</source>
<target>1. Válaszd ki a figyelendő mappákat.</target>
<source>2. Enter a command line.</source>
<target>2. Add meg a parancssort.</target>
<source>3. Press 'Start'.</source>
<target>3. Nyomd meg a Start gombot.</target>
<source>
The command line is executed each time:
- all directories become available (e.g. USB stick insert)
- files within these directories or subdirectories are modified
</source>
<target>
A parancssor végrehajtódik minden alkalommal, ha:
- minden mappa elérhetővé válik (pl. USB-kulcs csatlakoztatása)
- fájlok módosulnak az adott mappákban és almappákban
</target>
<source>Directories to watch</source>
<target>Figyelendő mappák</target>
<source>Add folder</source>
<target>Mappa hozzáadása</target>
<source>Remove folder</source>
<target>Mappa eltávolítása</target>
<source>Select a folder</source>
<target>Mappa kiválasztása</target>
<source>Command line</source>
<target>Parancssor</target>
<source>Minimum Idle Time [seconds]</source>
<target>Minimális tétlenségi idő (másodpercek)</target>
<source>Idle time between detection of last change and execution of command line in seconds</source>
<target>A tétlenség hossza másodpercekben az utolsó változás észlelése és a parancssor végrehajtása között.</target>
<source>Start</source>
<target>Indítás</target>
<source>(Build: %x)</source>
<target>(Build: %x)</target>
<source>RealtimeSync configuration</source>
<target>RealtimeSync beállítások</target>
<source>File already exists. Overwrite?</source>
<target>A fájl már létezik. Felülírjuk?</target>
<source>&Restore</source>
<target>&Visszaállítás</target>
<source>&Exit</source>
<target>&Kilépés</target>
<source>Monitoring active...</source>
<target>Figyelés aktív...</target>
<source>Waiting for missing directories...</source>
<target>Várakozás a hiányzó mappákra...</target>
<source>Command line is empty!</source>
<target>A parancssor üres!</target>
<source>Could not initialize directory monitoring:</source>
<target>A mappafigyelés inicializálása sikertelen:</target>
<source>A directory input field is empty.</source>
<target>Valamelyik mappa megadására szolgáló mező üres.</target>
<source>Error when monitoring directories.</source>
<target>Hiba történt a mappák figyelése közben.</target>
<source>Drag && drop</source>
<target>Húzd && Ejtsd</target>
<source>Conversion error:</source>
<target>Konverziós hiba:</target>
<source>Error moving file:</source>
<target>Hiba a fájl mozgatásakor:</target>
<source>Operation aborted!</source>
<target>Művelet megszakítva!</target>
<source>Target file already existing!</source>
<target>A célként megadott fájl már létezik!</target>
<source>Error moving directory:</source>
<target>Hiba a mappa mozgatásakor:</target>
<source>Target directory already existing!</source>
<target>A célmappa már létezik!</target>
<source>Error deleting directory:</source>
<target>A mappa törlése sikertelen:</target>
<source>Error changing modification time:</source>
<target>Az utolsó változtatás dátumának módosítása sikertelen:</target>
<source>Error loading library function:</source>
<target>A könyvtári funkció betöltése sikertelen:</target>
<source>Error reading security context:</source>
<target>A biztonsági címke olvasása sikertelen:</target>
<source>Error writing security context:</source>
<target>A biztonsági címke írása sikertelen:</target>
<source>Error copying file permissions:</source>
<target>Hiba történt a fájl jogosultságainak másolása közben:</target>
<source>Error creating directory:</source>
<target>A mappa létrehozása sikertelen:</target>
<source>Error copying symbolic link:</source>
<target>Hiba történt a szimbolikus link másolása közben:</target>
<source>Error copying file:</source>
<target>A fájl másolása sikertelen:</target>
<source>Error opening file:</source>
<target>A fájl megnyitása sikertelen:</target>
<source>Error reading file:</source>
<target>A fájl olvasása sikertelen:</target>
<source>Endless loop when traversing directory:</source>
<target>Végtelen hurok a mappák bejárásakor:</target>
<source>Error traversing directory:</source>
<target>A mappa átnézése sikertelen:</target>
<source>Error setting privilege:</source>
<target>Hiba történt a jogok beállítása közben:</target>
<source>Error moving to Recycle Bin:</source>
<target>A Lomtárba (Recycle Bin) mozgatás sikertelen:</target>
<source>Could not load a required DLL:</source>
<target>A szükséges DLL betöltése sikertelen:</target>
<source>Error writing to synchronization database:</source>
<target>Hiba történt a szinkronizációs adatbázis írása közben:</target>
<source>Error starting Volume Shadow Copy Service!</source>
<target>Hiba történt a Volume Shadow Copy szolgáltatás indítása közben!</target>
<source>Making shadow copies on WOW64 is not supported. Please use FreeFileSync 64-bit version.</source>
<target>A Shadow Copy a WOW64-en nem támogatott. Kérjük, használja a 64-bites FreeFileSync-et.</target>
<source>Could not determine volume name for file:</source>
<target>A következő fájlnak nem lehet meghatározni a kötetnevét:</target>
<source>Volume name %x not part of filename %y!</source>
<target>A(z) %x kötetnevet nem tartalmazza a(z) %y fájlnév!</target>
<source>%x TB</source>
<target>%x TB</target>
<source>%x PB</source>
<target>%x PB</target>
<source>%x%</source>
<target>%x%</target>
<source>Could not read values for the following XML nodes:</source>
<target>A következő XML-csomópontok értékének beolvasása sikertelen:</target>
<source>Show popup</source>
<target>Felbukkanó ablak mutatása</target>
<source>Show popup on errors or warnings</source>
<target>Értesítés felbukkanó ablakban a hibákról és figyelmeztetésekről</target>
<source>Ignore errors</source>
<target>Hibák figyelmen kívül hagyása</target>
<source>Hide all error and warning messages</source>
<target>Összes hibaüzenet és figyelmeztetés elrejtése</target>
<source>Exit instantly</source>
<target>Kilépés azonnal</target>
<source>Abort synchronization immediately</source>
<target>Szinkronizáció azonnali megszakítása</target>
<source>Logging</source>
<target>Naplózás</target>
<source>FreeFileSync batch file</source>
<target>FreeFileSync kötegelt fájl</target>
<source>FreeFileSync configuration</source>
<target>FreeFileSync beállítások</target>
<source>FreeFileSync Batch Job</source>
<target>FreeFileSync kötegelt feladat</target>
<source>Unable to create logfile!</source>
<target>Nem lehet létrehozni a naplófájlt!</target>
<source>Batch execution</source>
<target>Kötegelt végrehajtás</target>
<source>Log-messages:</source>
<target>Naplóbejegyzések:</target>
<source>Stop</source>
<target>Megállítás</target>
<source>Total time:</source>
<target>Becsült idő:</target>
<source>Synchronization aborted!</source>
<target>A szinkronizáció megszakítva!</target>
<source>Synchronization completed with errors!</source>
<target>A szinkronizáció befejeződött, de akadtak hibák!</target>
<source>Synchronization completed successfully!</source>
<target>A szinkronizáció sikeresen befejeződött!</target>
<source>Press "Switch" to open FreeFileSync GUI mode.</source>
<target>Kérjük, nyomja meg a "Váltás" gombot a GUI mód megnyitásához.</target>
<source>Switching to FreeFileSync GUI mode...</source>
<target>Váltás a FreeFileSync GUI módjára...</target>
<source>Unable to connect to sourceforge.net!</source>
<target>A csatlakozás a sourceforge.net-hez sikertelen!</target>
<source>A newer version of FreeFileSync is available:</source>
<target>Elérhető a FreeFileSync egy újabb verziója:</target>
<source>Download now?</source>
<target>Letöltsem most?</target>
<source>Information</source>
<target>Információ</target>
<source>FreeFileSync is up to date!</source>
<target>A FreeFileSync naprakész!</target>
<source>Do you want FreeFileSync to automatically check for updates every week?</source>
<target>Akarod, hogy a FreeFileSync automatikusan minden héten keressen frissítést?</target>
<source>(Requires an Internet connection!)</source>
<target>(Internetkapcsolat szükséges!)</target>
<source>1. &Compare</source>
<target>1. &Összehasonlítás</target>
<source>2. &Synchronize...</source>
<target>2. &Szinkronizálás</target>
<source>S&witch view</source>
<target>Nézet v&áltása</target>
<source>&New</source>
<target>&Új</target>
<source>&Program</source>
<target>&Program</target>
<source>&Language</source>
<target>&Nyelv</target>
<source>&Global settings...</source>
<target>&Globális beállítások...</target>
<source>&Create batch job...</source>
<target>&Kötegelt feladat létrehozása...</target>
<source>&Export file list...</source>
<target>&Fájllista exportálása...</target>
<source>&Advanced</source>
<target>&Haladó</target>
<source>&Check for new version</source>
<target>&Új verzió keresése</target>
<source>Compare</source>
<target>Összehasonlítás</target>
<source>Compare both sides</source>
<target>Mindkét oldal összehasonlítása</target>
<source>&Abort</source>
<target>&Megszakít</target>
<source>Synchronize...</source>
<target>Szinkronizálás</target>
<source>Start synchronization</source>
<target>Szinkronizáció indítása</target>
<source>Swap sides</source>
<target>Oldalak felcserélése</target>
<source>Add folder pair</source>
<target>Mappa pár megadása</target>
<source>Remove folder pair</source>
<target>Mappa párok eltávolítása</target>
<source>Save current configuration to file</source>
<target>Aktuális beállítások mentése fájlba</target>
<source>Load configuration from file</source>
<target>Beállítások betöltése fájlból</target>
<source>Last used configurations (press DEL to remove from list)</source>
<target>Utoljára használt beállítások (DEL billentyűvel törölhető a listából)</target>
<source>Hide excluded items</source>
<target>A kizárt elemek elrejtése</target>
<source>Hide filtered or temporarily excluded files</source>
<target>A kiszűrt vagy ideiglenesen kizárt fájlok elrejtése</target>
<source>Number of files and directories that will be created</source>
<target>A létrehozandó fájlok és mappák száma</target>
<source>Number of files that will be overwritten</source>
<target>A felülírandó fájlok száma</target>
<source>Number of files and directories that will be deleted</source>
<target>A törlendő fájlok és mappák száma</target>
<source>Total amount of data that will be transferred</source>
<target>A mozgatandó adatok összmérete</target>
<source>Left</source>
<target>Bal oldal</target>
<source>Right</source>
<target>Jobb oldal</target>
<source>Batch job</source>
<target>Kötegelt feladat</target>
<source>Assemble a batch file for automated synchronization. To start in batch mode simply pass the name of the file to the FreeFileSync executable: FreeFileSync.exe <batchfile>. This can also be scheduled in your operating system's task planner.</source>
<target>Egy kötegelt feladat fájl létrehozása az automatizált szinkronizációhoz. Kötegelt feladat módban való indításhoz egyszerűen meg kell adni a fájl nevét a FreeFileSync.exe-nek: FreeFileSync.exe <kötegelt feladat fájl>. Ezt ütemezni is lehet az operációs rendszer feladatkezelőjével.</target>
<source>Help</source>
<target>Súgó</target>
<source>Configuration overview:</source>
<target>Beállítások áttekintése:</target>
<source>Filter files</source>
<target>Fájlok szűrése</target>
<source>Status feedback</source>
<target>Státusz visszajelzés</target>
<source>Silent mode</source>
<target>Csendes mód</target>
<source>Start minimized and write status information to a logfile</source>
<target>Indítás lekicsinyítve és a státuszinformációk mentése naplófájlba</target>
<source>Error handling</source>
<target>Hibakezelés</target>
<source>Overview</source>
<target>Összefoglaló</target>
<source>Select logfile directory:</source>
<target>Naplófájl mappájának kiválasztása:</target>
<source>Maximum number of logfiles:</source>
<target>Naplófájlok maximális száma:</target>
<source>&Save</source>
<target>&Mentés</target>
<source>&Load</source>
<target>&Betöltés</target>
<source>&Cancel</source>
<target>&Mégsem</target>
<source>Elements found:</source>
<target>Talált elemek száma:</target>
<source>Elements remaining:</source>
<target>Hátralévő elemek száma:</target>
<source>Speed:</source>
<target>Sebesség:</target>
<source>Time remaining:</source>
<target>Hátralévő idő:</target>
<source>Time elapsed:</source>
<target>Eltelt idő:</target>
<source>Operation:</source>
<target>Művelet:</target>
<source>Select variant:</source>
<target>Változat kiválasztása:</target>
<source><Automatic></source>
<target><Automatikus></target>
<source>Identify and propagate changes on both sides using a database. Deletions and conflicts are detected automatically.</source>
<target>Mindkét oldal változásainak azonosítása és tárolása adatbázis segítségével. A törlések és ütközések automatikusan észlelődnek.</target>
<source>Mirror ->></source>
<target>Tükrözés ->></target>
<source>Mirror backup of left folder. Right folder is modified to exactly match left folder after synchronization.</source>
<target>A bal oldali mappa tükrözött másolata. A jobb oldali mappa úgy lesz megváltoztatva, hogy a szinkronizáció után pontosan megegyezzen a bal oldalival.</target>
<source>Update -></source>
<target>Frissítés -></target>
<source>Copy new or updated files to right folder.</source>
<target>Új vagy frissített fájlok másolása a jobb oldali mappába.</target>
<source>Custom</source>
<target>Egyedi</target>
<source>Configure your own synchronization rules.</source>
<target>Saját szinkronizálási szabályok beállítása.</target>
<source>Deletion handling</source>
<target>Törlések kezelése</target>
<source>&OK</source>
<target>&OK</target>
<source>Configuration</source>
<target>Beállítás</target>
<source>Category</source>
<target>Kategória</target>
<source>Action</source>
<target>Művelet</target>
<source>Files/folders that exist on left side only</source>
<target>Csak a bal oldalon létező fájlok/mappák</target>
<source>Files/folders that exist on right side only</source>
<target>Csak a jobb oldalon létező fájlok/mappák</target>
<source>Files that exist on both sides, left one is newer</source>
<target>Mindkét oldalon létező fájlok, de a bal oldali újabb</target>
<source>Files that exist on both sides, right one is newer</source>
<target>Mindkét oldalon létező fájlok, de a jobb oldali újabb</target>
<source>Files that have different content</source>
<target>Fájlok, amelyeknek különböző a tartalmuk:</target>
<source>Conflicts/files that cannot be categorized</source>
<target>Kategorizálhatatlan ütközések/fájlok</target>
<source>Compare by...</source>
<target>Összehasonlítás</target>
<source>
Files are found equal if
     - file size
     - last write time and date
are the same
</source>
<target>
A fájlok megegyező ha
  - a fájlméret
  - az utolsó módosítás dátuma
megegyezik
</target>
<source>File size and date</source>
<target>fájlméret és dátum alapján</target>
<source>
Files are found equal if
     - file content
is the same
</source>
<target>
A fájlok megegyező ha
  - a fájlok tartalma
megegyezik
</target>
<source>File content</source>
<target>fájl tartalma alapján</target>
<source>Symbolic Link handling</source>
<target>Symlink kezelés</target>
<source>Synchronizing...</source>
<target>Szinkronizálás folyamatban...</target>
<source>Elements processed:</source>
<target>Feldolgozott elemek száma:</target>
<source>&Pause</source>
<target>&Szünet</target>
<source>Compare by "File size and date"</source>
<target>Összehasonlítás "fájlméret és dátum alapján"</target>
<source>This variant evaluates two equally named files as being equal when they have the same file size AND the same last write date and time.</source>
<target>Ez a változat akkor tekint egyezőnek két azonos nevű fájlt, ha azok mérete ÉS az utolsó módosításuk ideje azonos.</target>
<source>When the comparison is started with this option set the following decision tree is processed:</source>
<target>Ha az összehasonlítás ezekkel a beállításokkal lesz elindítva, akkor a következő döntési fa érvényesül:</target>
<source>As a result the files are separated into the following categories:</source>
<target>Eredményképpen a fájlok a következő kategóriákra bomlanak:</target>
<source>- equal</source>
<target>- egyezik</target>
<source>- left newer</source>
<target>- a bal oldali újabb</target>
<source>- right newer</source>
<target>- a jobb oldali újabb</target>
<source>- exists left only</source>
<target>- csak a bal oldalon létezik</target>
<source>- exists right only</source>
<target>- csak a jobb oldalon létezik</target>
<source>- conflict</source>
<target>- ütközés</target>
<source>Compare by "File content"</source>
<target>Összehasonlítás "fájltartalom" alapján</target>
<source>
As the name suggests, two files which share the same name are marked as equal if and only if they have the same content. This option is useful for consistency checks rather than backup operations. Therefore the file times are not taken into account at all.

With this option enabled the decision tree is smaller:
</source>
<target>
Ahogy a neve is mutatja, két fájl, melyeknek ugyanaz a nevük, akkor és csakis akkor lesz egyezőként jelölve, ha a tartalmuk megegyezik. Ez az opció leginkább a konzisztencia-viszgálatokhoz jó, mintsem a biztonsági mentésekhez. Így a fájlok dátuma nem számít semmit.

Ennek az opciónak az engedélyezésével a döntési fa kisebb lesz:
</target>
<source>- different</source>
<target>- különböző</target>
<source>Source code written in C++ utilizing:</source>
<target></target>
<source>Big thanks for localizing FreeFileSync goes out to:</source>
<target>
Nagy köszönet a FreeFileSync lokalizációjáért
a következő személyeknek:
</target>
<source>Feedback and suggestions are welcome at:</source>
<target>A visszajelzéseket és javaslatokat ide várjuk:</target>
<source>FreeFileSync at Sourceforge</source>
<target>FreeFileSync a Sourceforge-on</target>
<source>Homepage</source>
<target>Honlap</target>
<source>If you like FFS</source>
<target>FFS támogatása</target>
<source>Donate with PayPal</source>
<target>Ha szereted a FreeFileSync-et, támogasd a PayPal segítségével.</target>
<source>Email</source>
<target>E-mail</target>
<source>Report translation error</source>
<target>Fordítói hiba bejelentése</target>
<source>Published under the GNU General Public License:</source>
<target>Kiadva a GNU General Public License alatt:</target>
<source>Ignore subsequent errors</source>
<target>Későbbi hibák figyelmen kívül hagyása</target>
<source>Hide further error messages during the current process</source>
<target>A további hibaüzenetek elrejtése az aktuális folyamat során</target>
<source>&Ignore</source>
<target>&Kihagy</target>
<source>&Retry</source>
<target>&Ismét</target>
<source>Do not show this dialog again</source>
<target>Ne mutasd újra ezt a párbeszédablakot</target>
<source>&Switch</source>
<target>&Váltás</target>
<source>&Yes</source>
<target>&Igen</target>
<source>&No</source>
<target>&Nem</target>
<source>Delete on both sides</source>
<target>Törlés mindkét oldalon</target>
<source>Delete on both sides even if the file is selected on one side only</source>
<target>Törlés mindkét oldalon, még akkor is, ha csak egyik oldalon lett kijelölve</target>
<source>Use Recycle Bin</source>
<target>Lomtár (Recycle Bin) használata</target>
<source>
Only files/directories that match all filter settings will be selected for synchronization.
Note: The name filter must be specified relative(!) to main synchronization directories.
</source>
<target></target>
<source>Hints:</source>
<target>Tippek:</target>
<source>1. Enter relative file or directory names separated by ';' or a new line.</source>
<target>1. A relatív fájl- és mappanevek megadása pontosvesszővel elválasztva vagy új sorban.</target>
<source>2. Use wildcard characters '*' and '?'.</source>
<target>2. A csillag ('*') és a kérdőjel ('?') helyettesítő karakterek megengedettek.</target>
<source>3. Exclude files directly on main grid via context menu.</source>
<target>3. Fájlok közvetlen kizárása a fő listából helyi menü segítségével.</target>
<source>Example</source>
<target>Példa</target>
<source>
Include: *.doc;*.zip;*.exe
Exclude: \stuff\temp\*
</source>
<target></target>
<source>Synchronize all .doc, .zip and .exe files except everything in subfolder "temp".</source>
<target>Minden .doc, .zip és .exe fájl szinkronizálása a "temp" almappában találhatók kivételével.</target>
<source>Include</source>
<target>Csatol</target>
<source>Exclude</source>
<target>Kizár</target>
<source>Select time span:</source>
<target></target>
<source>Minimum file size:</source>
<target></target>
<source>Maximum file size:</source>
<target></target>
<source>&Default</source>
<target>&Alapértelmezett</target>
<source>Move column up</source>
<target>Oszlop mozgatása felfelé</target>
<source>Move column down</source>
<target>Oszlop mozgatása lefelé</target>
<source>Copy locked files</source>
<target>Zárolt fájlok másolása</target>
<source>
Copy shared or locked files using Volume Shadow Copy Service
(Requires Administrator rights)
</source>
<target>
A megosztott vagy zárolt fájlok másolása a Volume Shadow Copy szolgáltatással
(Adminisztrátori jogok szükségesek)
</target>
<source>Copy filesystem permissions</source>
<target>Fájlrendszer jogosultságok másolása</target>
<source>
Transfer file and directory permissions
(Requires Administrator rights)
</source>
<target>
Fájlok és mappák jogosultságainak átvitele
(Adminisztrátori jogok szükségesek)
</target>
<source>Hidden dialogs:</source>
<target>Rejtett párbeszédablakok:</target>
<source>Reset</source>
<target>Helyreállítás</target>
<source>Show hidden dialogs</source>
<target>Rejtett párbeszédablakok mutatása</target>
<source>External applications</source>
<target>Külső alkalmazások</target>
<source>Description</source>
<target>Megjegyzés</target>
<source>Variant</source>
<target>Variáns</target>
<source>Statistics</source>
<target>Statisztikák</target>
<source>Find what:</source>
<target>Mit keresünk:</target>
<source>Match case</source>
<target>Kis-/nagybetű egyezés</target>
<source>&Find next</source>
<target>&Következő keresése</target>
<source>You may try to synchronize remaining items again (WITHOUT having to re-compare)!</source>
<target>Meg lehet próbálni újra a megmaradt elemek szinkronizálását (az összehasonlítás újbóli elvégzése NÉLKÜL)!</target>
<source>Batch file created successfully!</source>
<target>A kötegelt feladat fájl létrehozása sikerült!</target>
<source>Main bar</source>
<target>Fő panel</target>
<source>Folder pairs</source>
<target>Mappa párok</target>
<source>Select view</source>
<target>Nézet kiválasztása</target>
<source>Folder Comparison and Synchronization</source>
<target>Mappa összehasonlítás és szinkronizáció</target>
<source>Recycle Bin not yet supported for this system!</source>
<target>A Lomtár (Recycle Bin) nem támogatott ezen a rendszeren!</target>
<source>Set direction:</source>
<target>Irány</target>
<source>Exclude temporarily</source>
<target>Ideiglenesen kizár</target>
<source>Include temporarily</source>
<target>Ideiglenesen csatolni</target>
<source>Exclude via filter:</source>
<target>Kizárás szűrő segítségével:</target>
<source><multiple selection></source>
<target><többszörös kijelölés></target>
<source>D-Click</source>
<target>D-Klikk</target>
<source>Copy to clipboard	CTRL+C</source>
<target>Másolás a vágólapra	CTRL+C</target>
<source>Delete files	DEL</source>
<target>Fájlok törlése	DEL</target>
<source>Customize...</source>
<target>Testreszabás...</target>
<source>Auto-adjust columns</source>
<target>Oszlopok automatikus igazítása</target>
<source>Include all rows</source>
<target>Minden sort csatolni</target>
<source>Exclude all rows</source>
<target>Minden sor kizárása</target>
<source>Reset view</source>
<target>Nézet visszaállítása</target>
<source>Show "%x"</source>
<target>"%x" mutatása</target>
<source><Last session></source>
<target><Utolsó munkamenet></target>
<source>Configuration saved!</source>
<target>Beállítások elmentve!</target>
<source>Save changes to current configuration?</source>
<target>Mentsük a beállítások változásait?</target>
<source>Configuration loaded!</source>
<target>Beállítások betöltve!</target>
<source>Hide files that exist on left side only</source>
<target>Csak a bal oldalon létező fájlok elrejtése</target>
<source>Show files that exist on left side only</source>
<target>Csak a bal oldalon létező fájlok mutatása</target>
<source>Hide files that exist on right side only</source>
<target>Csak a jobb oldalon létező fájlok elrejtése</target>
<source>Show files that exist on right side only</source>
<target>Csak a jobb oldalon létező fájlok mutatása</target>
<source>Hide files that are newer on left</source>
<target>A bal oldalon lévő újabb fájlok elrejtése</target>
<source>Show files that are newer on left</source>
<target>A bal oldali újabb fájlok mutatása</target>
<source>Hide files that are newer on right</source>
<target>A jobb oldalon lévő újabb fájlok elrejtése</target>
<source>Show files that are newer on right</source>
<target>A jobb oldali újabb fájlok mutatása</target>
<source>Hide files that are equal</source>
<target>Az egyező fájlok elrejtése</target>
<source>Show files that are equal</source>
<target>Egyező fájlok mutatása</target>
<source>Hide files that are different</source>
<target>A nem egyező fájlok elrejtése</target>
<source>Show files that are different</source>
<target>Eltérő fájlok mutatása</target>
<source>Hide conflicts</source>
<target>Ütközések elrejtése</target>
<source>Show conflicts</source>
<target>Ütközések mutatása</target>
<source>Hide files that will be created on the left side</source>
<target>A bal oldalon létrehozandó fájlok elrejtése.</target>
<source>Show files that will be created on the left side</source>
<target>A bal oldalon létrehozandó fájlok mutatása</target>
<source>Hide files that will be created on the right side</source>
<target>A jobb oldalon létrehozandó fájlok elrejtése.</target>
<source>Show files that will be created on the right side</source>
<target>A jobb oldalon létrehozandó fájlok mutatása</target>
<source>Hide files that will be deleted on the left side</source>
<target>A bal oldalon törlendő fájlok elrejtése.</target>
<source>Show files that will be deleted on the left side</source>
<target>A bal oldalon törlendő fájlok mutatása</target>
<source>Hide files that will be deleted on the right side</source>
<target>A jobb oldalon törlendő fájlok elrejtése.</target>
<source>Show files that will be deleted on the right side</source>
<target>A jobb oldalon törlendő fájlok mutatása</target>
<source>Hide files that will be overwritten on left side</source>
<target>A bal oldalon felülírandó fájlok elrejtése</target>
<source>Show files that will be overwritten on left side</source>
<target>A bal oldalon felülírandó fájlok mutatása</target>
<source>Hide files that will be overwritten on right side</source>
<target>A jobb oldalon felülírandó fájlok elrejtése</target>
<source>Show files that will be overwritten on right side</source>
<target>A jobb oldalon felülírandó fájlok mutatása</target>
<source>Hide files that won't be copied</source>
<target>A nem másolandó fájlok elrejtése</target>
<source>Show files that won't be copied</source>
<target>A nem másolandó fájlok mutatása</target>
<source>All directories in sync!</source>
<target>Minden mappa szinkronban!</target>
<source>Please run a Compare first before synchronizing!</source>
<target>Kérjük, futtass le egy összehasonlítást mielőtt szinkronizálnál!</target>
<source>Comma separated list</source>
<target>Comma separated values</target>
<source>Legend</source>
<target>Előzmény</target>
<source>File list exported!</source>
<target>A fájllista exportálása befejeződött!</target>
<source>
<pluralform>Object deleted successfully!</pluralform>
<pluralform>%x objects deleted successfully!</pluralform>
</source>
<target>
</target>
<source>
<pluralform>1 directory</pluralform>
<pluralform>%x directories</pluralform>
</source>
<target>
</target>
<source>
<pluralform>1 file</pluralform>
<pluralform>%x files</pluralform>
</source>
<target>
</target>
<source>
<pluralform>%x of 1 row in view</pluralform>
<pluralform>%x of %y rows in view</pluralform>
</source>
<target>
</target>
<source>Scanning...</source>
<target>Vizsgálat folyamatban...</target>
<source>Comparing content...</source>
<target>Tartalom összehasonlítása...</target>
<source>Paused</source>
<target>Szüneteltetve</target>
<source>Aborted</source>
<target>Megszakítva</target>
<source>Completed</source>
<target>Befejezve</target>
<source>Abort requested: Waiting for current operation to finish...</source>
<target>Megszakítási kérelem: Várakozás a folyamatban lévő művelet befejezésére...</target>
<source>Continue</source>
<target>Folytatás</target>
<source>Pause</source>
<target>Szünet</target>
<source>Cannot find %x</source>
<target>Nem található: %x</target>
<source>DECISION TREE</source>
<target>DÖNTÉSI FA</target>
<source>file exists on both sides</source>
<target>mindkét oldalon létező fájlok</target>
<source>on one side only</source>
<target>csak az egy oldalon létező fájlok</target>
<source>- left</source>
<target>- bal oldali</target>
<source>- right</source>
<target>- jobb oldali</target>
<source>different</source>
<target>különböző</target>
<source>- conflict (same date, different size)</source>
<target>- ütközés (ugyanaz a dátum, különböző méret)</target>
<source>Inactive</source>
<target></target>
<source>Second</source>
<target></target>
<source>Minute</source>
<target></target>
<source>Hour</source>
<target></target>
<source>Day</source>
<target></target>
<source>Byte</source>
<target></target>
<source>KB</source>
<target></target>
<source>MB</source>
<target></target>
<source>Filter: All pairs</source>
<target>Szűrő: Minden pár</target>
<source>Filter: Single pair</source>
<target>Szűrő: Egy pár</target>
<source>Ignore</source>
<target>Figyelmen kívül hagy</target>
<source>Direct</source>
<target>Közvetlen</target>
<source>Follow</source>
<target>Követés</target>
<source>Integrate external applications into context menu. The following macros are available:</source>
<target>Külső alkalmazás integrálása a helyi menübe. Az elérhető makrók a következők:</target>
<source>- full file or directory name</source>
<target>- teljes fájl- vagy mappanév</target>
<source>- directory part only</source>
<target>- csak a mappa részét</target>
<source>- Other side's counterpart to %name</source>
<target>- A %name másik oldalon szereplő párja</target>
<source>- Other side's counterpart to %dir</source>
<target>- A %dir másik oldalon szereplő párja</target>
<source>Restore all hidden dialogs?</source>
<target>Az összes rejtett párbeszédablakot visszaállítsuk?</target>
<source>
<pluralform>Do you really want to move the following object to the Recycle Bin?</pluralform>
<pluralform>Do you really want to move the following %x objects to the Recycle Bin?</pluralform>
</source>
<target>
</target>
<source>
<pluralform>Do you really want to delete the following object?</pluralform>
<pluralform>Do you really want to delete the following %x objects?</pluralform>
</source>
<target>
</target>
<source>Leave as unresolved conflict</source>
<target>Feloldatlan ütközésként hagyni</target>
<source>Delete permanently</source>
<target>Folyamatosan törölni</target>
<source>Delete or overwrite files permanently</source>
<target>A fájlok folyamatos törlése vagy felülírása</target>
<source>Use Recycle Bin when deleting or overwriting files</source>
<target>A Lomtár (Recycle Bin) használata fájlok törlésénél vagy felülírásánál</target>
<source>Versioning</source>
<target>Verziókövetés</target>
<source>Move files into a time-stamped subdirectory</source>
<target>Fájlok másolása időbélyeggel ellátott almappába</target>
<source>Cannot determine sync-direction:</source>
<target>Nem lehet meghatározni a szinkronizáció irányát:</target>
<source>Filter settings have changed!</source>
<target>A szűrőbeállítások megváltoztak!</target>
<source>Both sides have changed since last synchronization!</source>
<target>Mindkét oldal megváltozott az utolsó szikronizálás óta!</target>
<source>No change since last synchronization!</source>
<target>Az utolsó szinkronizálás után nem történt változás.</target>
<source>The file was not processed by last synchronization!</source>
<target>A fájl nem lett feldolgozva az utolsó szinkronizáció alkalmával!</target>
<source>Planned directory deletion is in conflict with its subdirectories and -files!</source>
<target>A tervezett mappának a törlése ütközik az almappáival és fájljaival.</target>
<source>Setting default synchronization directions: Old files will be overwritten with newer files.</source>
<target>Alapértelmezett szinkronizációs irányok beállítása: a régebbi fájlok felülíródnak az újabbakkal.</target>
<source>The file does not contain a valid configuration:</source>
<target>A következő fájl nem tartalmaz érvényes beállításokat:</target>
<source>Scanning:</source>
<target>Vizsgálat:</target>
<source>Encoding extended time information: %x</source>
<target>Kibővített időinformációk kódolása: %x</target>
<source>You can ignore this error to consider the directory as empty.</source>
<target>Figyelmen kívül hagyhatod ezt a hibát, üresnek tekintve a mappát.</target>
<source>Directory does not exist:</source>
<target>A mappa nem létezik:</target>
<source>Directories are dependent! Be careful when setting up synchronization rules:</source>
<target>A mappák függenek egymástól! Legyen óvatos, amikor megadja a szinkronizálási szabályokat:</target>
<source>Comparing content of files %x</source>
<target>%x fájlok tartalmának összehasonlítása</target>
<source>Memory allocation failed!</source>
<target>Sikertelen memóriafoglalás!</target>
<source>File %x has an invalid date!</source>
<target>A(z) %x fájlnak érvénytelen a dátuma!</target>
<source>Conflict detected:</source>
<target>Ütközés történt:</target>
<source>Files %x have the same date but a different size!</source>
<target>A(z) %x fájlok dátuma megegyezik, de a mérete nem!</target>
<source>Symlinks %x have the same date but a different target!</source>
<target>A(z) %x symlinknek megegyezik a dátuma, de a célpontja nem!</target>
<source>Comparing files by content failed.</source>
<target>Sikertelen a fájlok összehasonlítása tartalom alapján.</target>
<source>Generating file list...</source>
<target>Fájllista generálása...</target>
<source>Multiple...</source>
<target>Sokszorosítás</target>
<source>Files that are equal on both sides</source>
<target>Megegyező fájlok mindkét oldalon</target>
<source>Equal files/folders that differ in attributes only</source>
<target>Egyforma fájlok/mappák, melyek csak attribútumaikban különböznek</target>
<source>Copy from right to left</source>
<target>Másolás a jobb oldalról a bal oldalra</target>
<source>Copy from left to right</source>
<target>Másolás a bal oldalról a jobb oldalra</target>
<source>Delete files/folders existing on left side only</source>
<target>Csak a bal oldalon létező fájlok/mappák törlése</target>
<source>Delete files/folders existing on right side only</source>
<target>Csak a jobb oldalon létező fájlok/mappák törlése</target>
<source>Copy from right to left overwriting</source>
<target>Másolás a jobb oldalról a bal oldalra felülírással</target>
<source>Copy from left to right overwriting</source>
<target>Másolás a bal oldalról a jobb oldalra felülírással</target>
<source>Do nothing</source>
<target>Nincs mit csinálni</target>
<source>Copy attributes only from right to left</source>
<target>Attribútumok másolása kizárólag jobbról balra</target>
<source>Copy attributes only from left to right</source>
<target>Attribútumok másolása kizárólag balról jobbra</target>
<source>Deleting file %x</source>
<target>Fájl törlése %x</target>
<source>Deleting Symbolic Link %x</source>
<target>Symlink törlése: %x</target>
<source>Deleting folder %x</source>
<target>Mappa törlése %x</target>
<source>Moving %x to Recycle Bin</source>
<target>%x mozgatása a Lomtárba (Recycle Bin)</target>
<source>Moving file %x to user-defined directory %y</source>
<target>%x fájl mozgatása a felhasználó által megadott %y mappába</target>
<source>Moving folder %x to user-defined directory %y</source>
<target>%x mappa mozgatása a felhasználó által megadott %y mappába</target>
<source>Moving Symbolic Link %x to user-defined directory %y</source>
<target>A(z) %x symlink másolása a felhasználó által megadott %y mappába</target>
<source>Copying new file %x to %y</source>
<target>A(z) %x új fájl másolása a(z) %y fájlba</target>
<source>Copying new Symbolic Link %x to %y</source>
<target>A(z) %x új symlink másolása a(z) %y symlinkbe</target>
<source>Overwriting file %x in %y</source>
<target>A(z) %x fájl fölülírása a(z) %y mappában</target>
<source>Overwriting Symbolic Link %x in %y</source>
<target>A(z) %x symlink fölülírása a(z) %y mappában</target>
<source>Creating folder %x</source>
<target>%x mappa létrehozása</target>
<source>Verifying file %x</source>
<target>%x fájl ellenőrzése</target>
<source>Updating attributes of %x</source>
<target>A(z) %x attribútumainak frissítése</target>
<source>Source directory does not exist anymore:</source>
<target>A forrásként megadott mappa többé nem létezik:</target>
<source>Nothing to synchronize according to configuration!</source>
<target>A beállításoknak megfelelően nincs mit szinkronizálni!</target>
<source>Target directory name must not be empty!</source>
<target></target>
<source>User-defined directory for deletion was not specified!</source>
<target>A törléshez nem lett mappa megadva a felhasználó által!</target>
<source>Unresolved conflicts existing!</source>
<target>Feloldatlan ütközések vannak!</target>
<source>You can ignore conflicts and continue synchronization.</source>
<target>Figyelmen kívül hagyhatod az ütközéseket és folytathatod a szinkronizálást.</target>
<source>Significant difference detected:</source>
<target>Jelentős különbség érzékelve:</target>
<source>More than 50% of the total number of files will be copied or deleted!</source>
<target>Az összes fájl több mint 50%-a másolva vagy törölve lesz!</target>
<source>Not enough free disk space available in:</source>
<target>Nincs elég szabad lemezterület:</target>
<source>Free disk space required:</source>
<target>Szükséges szabad lemezterület:</target>
<source>Free disk space available:</source>
<target>Szabad lemezterület:</target>
<source>A directory will be modified which is part of multiple folder pairs! Please review synchronization settings!</source>
<target>Egy olyan mappa kerül módosításra, amely tagja több mappa párosnak! Kérjük, nézd át a szinkronizációs beállításokat!</target>
<source>Processing folder pair:</source>
<target>Mappapár feldolgozása:</target>
<source>Generating database...</source>
<target>Adatbázis generálása...</target>
<source>Error copying locked file %x!</source>
<target>Hiba történt a(z) %x zárolt fájl másolása közben!</target>
<source>Data verification error: Source and target file have different content!</source>
<target>Adatellenőrzési hiba: A forrás és cél fájl tartalma különbözik!</target>
bgstack15