-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathhungarian.ini
1843 lines (1843 loc) · 134 KB
/
hungarian.ini
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
STR_EXPANSION_ACCEPT = ACCEPT
STR_EXPANSION_ACCESSORIES_TRADER_SIGN = Accessories Trader Sign
STR_EXPANSION_ACTION_COVER = Cover
STR_EXPANSION_ACTION_RESTORE = Restore
STR_EXPANSION_ACTION_RESTORE_CONTENTS = Restore contents
STR_EXPANSION_ACTION_STORE = Store
STR_EXPANSION_ACTION_STORE_CONTENTS = Store contents
STR_EXPANSION_ACTION_UNCOVER = Remove cover
STR_EXPANSION_ADMIN = Admin
STR_EXPANSION_AIRCRAFT_BATTERY = Légijármű akkumulátor
STR_EXPANSION_AIRCRAFT_TRADER_SIGN = Aircraft Trader Sign
STR_EXPANSION_AIRDROP = Airdrop
STR_EXPANSION_AIRDROP_SYSTEM_EVENT = Airdop szállítmány érkezik %1 felé
STR_EXPANSION_AIRDROP_SYSTEM_EVENT_CLOSE = Az Airdrop repülő közeledik %1 felé
STR_EXPANSION_AIRDROP_SYSTEM_EVENT_DROP = Az Airdrop szállítmány kioldásra került %1 környékén.
STR_EXPANSION_AIRDROP_SYSTEM_TITLE = Airdrop
STR_EXPANSION_AIRDROP_TOO_MANY_PLANES = Túl sok repülő van egyszerre az égen, nem tudsz többet lehívni.
STR_EXPANSION_AI_CANNOT_RECRUIT_HOSTILE_TEMP = This character is currently hostile. Leave the area and come back in a few minutes.
STR_EXPANSION_AI_COMMAND_MENU = AI Command Menu
STR_EXPANSION_AI_DISMISS = Dismiss
STR_EXPANSION_AI_FACTION = Faction
STR_EXPANSION_AI_REQUIRED_FACTION_TRADER = You must be a member of the %1 faction.
STR_EXPANSION_AI_FACTION_CIVILIAN = Civilian
STR_EXPANSION_AI_FACTION_EAST = East
STR_EXPANSION_AI_FACTION_FREETRADERS = Free Traders
STR_EXPANSION_AI_FACTION_GUARDS = Guards
STR_EXPANSION_AI_FACTION_INFECTED = Infected
STR_EXPANSION_AI_FACTION_LUNATICS = Lunatics
STR_EXPANSION_AI_FACTION_MERCENARIES = Mercenaries
STR_EXPANSION_AI_FACTION_NAC = NAC
STR_EXPANSION_AI_FACTION_NEKROLOGISTS = Nekrologists
STR_EXPANSION_AI_FACTION_OBSERVERS = Observers
STR_EXPANSION_AI_FACTION_PASSIVE = Passive
STR_EXPANSION_AI_FACTION_RAIDERS = Raiders
STR_EXPANSION_AI_FACTION_RESISTANCE = Resistance
STR_EXPANSION_AI_FACTION_SCIENCESOCIETY = Science Society
STR_EXPANSION_AI_FACTION_SHAMANS = Shamans
STR_EXPANSION_AI_FACTION_SURVIVORS = Survivors
STR_EXPANSION_AI_FACTION_WEST = West
STR_EXPANSION_AI_FACTION_YEETBRIGADE = Yeet Brigade
STR_EXPANSION_AI_KILLED = AI killed
STR_EXPANSION_AI_LEPUS_EUROPAEUS = Wild Hare
STR_EXPANSION_AI_LEPUS_EUROPAEUS_DESC = Hares and jackrabbits are leporids belonging to the genus Lepus. Hares are classified in the same family as rabbits. They are similar in size and form to rabbits and have similar herbivorous diets, but generally have longer ears and live solitarily or in pairs.
STR_EXPANSION_AI_RECRUIT = Recruit
STR_EXPANSION_AI_SET_WAYPOINT = Set AI waypoint
STR_EXPANSION_AMMOBOX_338 = Boxed .338 Lapua Magnum Rounds
STR_EXPANSION_AMMOBOX_338_DESC = Box of .338 Lapua Magnum rounds.
STR_EXPANSION_AMMOBOX_46x30 = Boxed 4.6x30mm Armor-Piercing Rounds
STR_EXPANSION_AMMOBOX_46x30_DESC = Box of 4.6x30 armor-piercing rounds.
STR_EXPANSION_AMMO_338 = .338 Lapua Magnum Rounds
STR_EXPANSION_AMMO_338_DESC = .338 Lapua Magnum intermediate cartridge. Used in select rifles.
STR_EXPANSION_AMMO_46x30 = 4.6x30mm Armor-Piercing Rounds
STR_EXPANSION_AMMO_46x30_DESC = 4.6x3mm armor-piercing intermediate cartridge. Used in select rifles.
STR_EXPANSION_AMMO_ARROWBOLT = Crossbow Bolt
STR_EXPANSION_AMMO_ARROWBOLT_DESC = Short type of arrow designed for crossbow.
STR_EXPANSION_AMMO_M203_HE = M203 HE
STR_EXPANSION_AMMO_M203_HE_DESC = 40mm high-explosive grenade, intended for use in the M79 Grenade launcher.
STR_EXPANSION_AMMO_M203_SMOKE_DESC = 40mm smoke grenade, intended for use in the M79 Grenade launcher.
STR_EXPANSION_AMMO_M203_SMOKE_GREEN = M203 Smoke (Green)
STR_EXPANSION_AMMO_M203_SMOKE_GREEN_STICKY = M203 Sticky Smoke (Green)
STR_EXPANSION_AMMO_M203_SMOKE_PURPLE = M203 Smoke (Purple)
STR_EXPANSION_AMMO_M203_SMOKE_PURPLE_STICKY = M203 Sticky Smoke (Purple)
STR_EXPANSION_AMMO_M203_SMOKE_RED = M203 Smoke (Red)
STR_EXPANSION_AMMO_M203_SMOKE_RED_STICKY = M203 Sticky Smoke (Red)
STR_EXPANSION_AMMO_M203_SMOKE_TEARGAS = M203 Teargas Grenade
STR_EXPANSION_AMMO_M203_SMOKE_TEARGAS_DESC = 40mm teargas smoke grenade, intended for use in the M79 Grenade launcher. Great at dispersing crowds.
STR_EXPANSION_AMMO_M203_SMOKE_TEARGAS_STICKY = M203 Sticky Teargas Grenade
STR_EXPANSION_AMMO_M203_SMOKE_WHITE = M203 Smoke (White)
STR_EXPANSION_AMMO_M203_SMOKE_WHITE_STICKY = M203 Sticky Smoke (White)
STR_EXPANSION_AMMO_M203_SMOKE_YELLOW = M203 Smoke (Yellow)
STR_EXPANSION_AMMO_M203_SMOKE_YELLOW_STICKY = M203 Sticky Smoke (Yellow)
STR_EXPANSION_AMMO_M203_STICKY_SMOKE_DESC = 40mm smoke grenade, intended for use in the M79 Grenade launcher. This one has been coated in a sticky substance.
STR_EXPANSION_ANPEQ15 = AN/PEQ-15 Laser Sight
STR_EXPANSION_ANPEQ15_DESC = Laser Sight featuring both green and red laser modules, but it seems the green one is faulty.
STR_EXPANSION_ATM = ATM
STR_EXPANSION_ATM_AMOUNT_MAX_ERROR = Amount is higher than the possible amount that can be withdrawn
STR_EXPANSION_ATM_DEPOSIT_FAILED = Deposit Failed
STR_EXPANSION_ATM_DEPOSIT_MAX_ERROR = The maximum amount that can be deposited is %1. Please adjust the amount so that your deposited money does not exceed this value.
STR_EXPANSION_ATM_DEPOSIT_NOTENOUGHMONEY = You don't have more than %1 in your inventory
STR_EXPANSION_ATM_DEPOSIT_SUCCESS = Deposit Successful
STR_EXPANSION_ATM_DEPOSIT_SUCCESS_TEXT = You have deposited %1 into your account
STR_EXPANSION_ATM_LOCKER = Locker
STR_EXPANSION_ATM_NONZERO = Please set a non-zero amount!
STR_EXPANSION_ATM_NO_CURRENCIES_DEFINED = There are no currencies specified in the server market settings. Please contact the server owner and inform them about this error.
STR_EXPANSION_ATM_ONLY_NUMBERS = Only numbers are allowed!
STR_EXPANSION_ATM_TRANSFER_RECEIVER = You have received %1 from the player %2
STR_EXPANSION_ATM_TRANSFER_SENDER = You have sent %1 to the player %2
STR_EXPANSION_ATM_UI_AMOUNT = Amount:
STR_EXPANSION_ATM_UI_DEPOSIT = Deposit
STR_EXPANSION_ATM_UI_DEPOSIT_ALL = Deposit all
STR_EXPANSION_ATM_UI_MAXDEPOSIT = Max deposit:
STR_EXPANSION_ATM_UI_MONEY_ACCOUNT = Money in account:
STR_EXPANSION_ATM_UI_MONEY_INVENTORY = Money in inventory:
STR_EXPANSION_ATM_UI_PARTY_ACCOUNT = PARTY ACCOUNT
STR_EXPANSION_ATM_UI_PARTY_ID = Party ID:
STR_EXPANSION_ATM_UI_PARTY_NAME = Party name:
STR_EXPANSION_ATM_UI_PARTY_OWNER = Party Owner:
STR_EXPANSION_ATM_UI_PERSONAL_ACCOUNT = PERSONAL ACCOUNT
STR_EXPANSION_ATM_UI_PLAYERS = PLAYERS
STR_EXPANSION_ATM_UI_TITLE = ACCOUNT MANAGEMENT
STR_EXPANSION_ATM_UI_TRANSFER_ALL_PARTY = Transfer all to Party
STR_EXPANSION_ATM_UI_TRANSFER_ALL_PLAYER = Transfer all to player
STR_EXPANSION_ATM_UI_TRANSFER_ALL_YOU = Transfer all to you
STR_EXPANSION_ATM_UI_TRANSFER_PARTY = Transfer to Party
STR_EXPANSION_ATM_UI_TRANSFER_PLAYER = Transfer to player
STR_EXPANSION_ATM_UI_TRANSFER_YOU = Transfer to you
STR_EXPANSION_ATM_UI_WITHDRAW = Withdraw
STR_EXPANSION_ATM_UI_WITHDRAW_ALL = Withdraw all
STR_EXPANSION_ATM_WITHDRAW_FAILED = Withdraw Failed
STR_EXPANSION_ATM_WITHDRAW_SUCCESS = Withdraw Successful
STR_EXPANSION_ATM_WITHDRAW_SUCCESS_TEXT = You have withdrawn %1 from your account
STR_EXPANSION_ATTACHMENT_TRADER_SIGN = Attachments Trader Sign
STR_EXPANSION_AWM = AWM
STR_EXPANSION_AWM_5RND_MAGAZINE = 5Rnd AWM Mag
STR_EXPANSION_AWM_5RND_MAGAZINE_DESC = 5 Round magazine of .338 for the AWM.
STR_EXPANSION_AWM_DESC = The Accuracy International Arctic Warfare Magnum. Bolt action rifle typically chambered in .338 Lapua Magnum.
STR_EXPANSION_BAGUETTE = Baguette
STR_EXPANSION_BAGUETTE_DESC = A baguette is a long, thin loaf of French bread that is commonly made from basic lean dough. It is distinguishable by its length and crisp crust.
STR_EXPANSION_BANDIT_SET = Bandit Set
STR_EXPANSION_BANDIT_SET_DESC = This package contains bandit set
STR_EXPANSION_BANDIT_ZONE_TRADER_SIGN = Bandit Trader-Zone Sign
STR_EXPANSION_BANKNOTES_EURO = Euro Banknotes Stack
STR_EXPANSION_BANKNOTES_EURO_DESC = A stack of Euro Banknotes
STR_EXPANSION_BANKNOTES_HRYVNIA = Hryvnia Banknotes Stack
STR_EXPANSION_BANKNOTES_HRYVNIA_DESC = A stack of Hryvnia Banknotes
STR_EXPANSION_BANKNOTES_USD = USD Banknotes Stack
STR_EXPANSION_BANKNOTES_USD_DESC = A stack of USD Banknotes
STR_EXPANSION_BARBEDWIRE_KIT = Barbed Wire Kit
STR_EXPANSION_BASEBUILDING = Expansion Basebuilding
STR_EXPANSION_BASEBUILDING_AIRDROP = Basebuilding Airdrop
STR_EXPANSION_BASEBUILDING_CIRCUITBOARD_INSTALLUPGRADE_TIER = Install Upgrade - Tier %1
STR_EXPANSION_BASEBUILDING_DESC = Expansion Basebuilding
STR_EXPANSION_BB_CODE_RESET_CODE = Unscrew Lock
STR_EXPANSION_BB_CODE_CLOSE_LOCK = Lock
STR_EXPANSION_BB_CODE_LOCK = Kombinációs zár
STR_EXPANSION_BB_CODE_LOCK_CHANGE = Change Code
STR_EXPANSION_BB_CODE_LOCK_DESC = A kombinált zár egy olyan típusú reteszelő eszköz, amelyben a szimbólumok, általában számok sorozatát használják a zár kinyitásához.
STR_EXPANSION_BB_CODE_LOCK_ENTER_CODE = Enter Code
STR_EXPANSION_BB_CODE_LOCK_PIN = Enter PIN(x)
STR_EXPANSION_BB_CODE_LOCK_PUSH = PUSH
STR_EXPANSION_BB_CODE_LOCK_SET_CODE = Set Code
STR_EXPANSION_BB_CODE_SET = Set Code
STR_EXPANSION_BB_CODE_UNLOCK = Unlock
STR_EXPANSION_BB_CONCRETE_BASE = Beton alap
STR_EXPANSION_BB_CONCRETE_DOOR_FINISHED = Beton ajtó
STR_EXPANSION_BB_CONCRETE_DOOR_FRAME = Beton ajtó keret
STR_EXPANSION_BB_CONCRETE_FLOOR_FINISHED = Beton padló alap
STR_EXPANSION_BB_CONCRETE_FLOOR_FRAME = Beton padló alap
STR_EXPANSION_BB_CONCRETE_GATE_FINISHED = Beton kapu
STR_EXPANSION_BB_CONCRETE_GATE_FRAME = Beton kapu keret
STR_EXPANSION_BB_CONCRETE_HATCH_FINISHED = Beton ablakos fal
STR_EXPANSION_BB_CONCRETE_HATCH_FRAME = Beton ablakos fal keret
STR_EXPANSION_BB_CONCRETE_PILLAR = Beton oszlop
STR_EXPANSION_BB_CONCRETE_RAMP_FINISHED = Beton rámpa
STR_EXPANSION_BB_CONCRETE_RAMP_FRAME = Beton rámpa keret
STR_EXPANSION_BB_CONCRETE_WALL_FINISHED = Beton fal
STR_EXPANSION_BB_CONCRETE_WALL_FRAME = Beton fal keret
STR_EXPANSION_BB_CONCRETE_WINDOW_FINISHED = Beton ablak
STR_EXPANSION_BB_CONCRETE_WINDOW_FRAME = Beton ablak keret
STR_EXPANSION_BB_DOOR = Ajtó
STR_EXPANSION_BB_FLAG_CHANGE = Change Flag
STR_EXPANSION_BB_FLAG_CREATE_TERRITORY = Create Territory
STR_EXPANSION_BB_FLOOR_3X3_PLACE = 3x3m Floor
STR_EXPANSION_BB_FLOOR_3X6_PLACE = 3x6m Floor
STR_EXPANSION_BB_FLOOR_6X6_PLACE = 6x6m Floor
STR_EXPANSION_BB_FLOOR_BASE = Padló alap
STR_EXPANSION_BB_FLOOR_KIT = Padló kit
STR_EXPANSION_BB_FLOOR_KIT_DESC = A padló helyzetének és elrendezésének ábrázolására szolgál
STR_EXPANSION_BB_FOUNDATION_3X3_PLACE = 3x3m Foundation
STR_EXPANSION_BB_FOUNDATION_3X6_PLACE = 3x6m Foundation
STR_EXPANSION_BB_FOUNDATION_6X6_PLACE = 6x6m Foundation
STR_EXPANSION_BB_FOUNDATION_KIT = Foundation Kit
STR_EXPANSION_BB_FOUNDATION_KIT_DESC = Used to plot the position of a foundation and its layout
STR_EXPANSION_BB_GATE = Kapu
STR_EXPANSION_BB_METAL_BASE = Vas alap
STR_EXPANSION_BB_METAL_DOOR_FINISHED = Vas ajtó
STR_EXPANSION_BB_METAL_DOOR_FRAME = Vas ajtó keret
STR_EXPANSION_BB_METAL_FLOOR_FINISHED = Vas padló
STR_EXPANSION_BB_METAL_FLOOR_FRAME = Vas padló keret
STR_EXPANSION_BB_METAL_GATE_FINISHED = Vas kapu
STR_EXPANSION_BB_METAL_GATE_FRAME = Vas kapu keret
STR_EXPANSION_BB_METAL_HATCH_FINISHED = Vas ablakos fal
STR_EXPANSION_BB_METAL_HATCH_FRAME = Vas ablakos fal keret
STR_EXPANSION_BB_METAL_PILLAR = Vas oszlop
STR_EXPANSION_BB_METAL_RAMP_FINISHED = Vas rámpa
STR_EXPANSION_BB_METAL_RAMP_FRAME = Vas rámpa alap
STR_EXPANSION_BB_METAL_WALL_FINISHED = Vas fal
STR_EXPANSION_BB_METAL_WALL_FRAME = Vas fal keret
STR_EXPANSION_BB_METAL_WINDOW_FINISHED = Vas ablak
STR_EXPANSION_BB_METAL_WINDOW_FRAME = Vas ablak keret
STR_EXPANSION_BB_PILLAR_KIT = Oszlop kit
STR_EXPANSION_BB_PILLAR_KIT_DESC = Az oszlop helyzetének és elrendezésének ábrázolására szolgál
STR_EXPANSION_BB_RAMP_3X1_5X6_PLACE = 3x1 - 5x6m Ramp
STR_EXPANSION_BB_RAMP_6X1_5X6_PLACE = 6x1 - 5x6m Ramp
STR_EXPANSION_BB_RAMP_BASE = Rámpa alap
STR_EXPANSION_BB_RAMP_KIT = Rámpa kit
STR_EXPANSION_BB_RAMP_KIT_DESC = A rámpák helyzetének és elrendezésének ábrázolására szolgál
STR_EXPANSION_BB_ROOF_KIT = Roof Kit
STR_EXPANSION_BB_ROOF_KIT_DESC = Used to plot the position of a roof and its layout
STR_EXPANSION_BB_STAIR_BASE = Lépcső alap
STR_EXPANSION_BB_STAIR_KIT = Lémpcső kit
STR_EXPANSION_BB_STAIR_KIT_DESC = A lépcsők helyzetének és elrendezésének ábrázolására szolgál
STR_EXPANSION_BB_WALL = Fal
STR_EXPANSION_BB_WALL_BASE = Fal alap
STR_EXPANSION_BB_WALL_KIT = Fal kit
STR_EXPANSION_BB_WALL_KIT_DESC = A fal helyzetének és elrendezésének ábrázolására szolgál
STR_EXPANSION_BB_WINDOW = Ablak
STR_EXPANSION_BB_WOOD_BASE = Fa alap
STR_EXPANSION_BB_WOOD_DOOR_FINISHED = Fa ajtó
STR_EXPANSION_BB_WOOD_DOOR_FRAME = Fa ajtó keret
STR_EXPANSION_BB_WOOD_FLOOR_BASE = Fa padló alap
STR_EXPANSION_BB_WOOD_FLOOR_FINISHED = Fa padló
STR_EXPANSION_BB_WOOD_FLOOR_FRAME = Fa padló keret
STR_EXPANSION_BB_WOOD_GATE_FINISHED = Fa kapu
STR_EXPANSION_BB_WOOD_GATE_FRAME = Fa kapu keret
STR_EXPANSION_BB_WOOD_HATCH_FINISHED = Fa ablakos fal
STR_EXPANSION_BB_WOOD_HATCH_FRAME = Fa ablakos fal keret
STR_EXPANSION_BB_WOOD_PILLAR = Fa oszlop
STR_EXPANSION_BB_WOOD_RAMP_BASE = Fa rámpa alap
STR_EXPANSION_BB_WOOD_RAMP_FINISHED = Fa rámpa
STR_EXPANSION_BB_WOOD_RAMP_FRAME = Fa rámpa keret
STR_EXPANSION_BB_WOOD_ROOF_FINISHED = Wood Roof
STR_EXPANSION_BB_WOOD_STAIR_BASE = Fa lépcső alap
STR_EXPANSION_BB_WOOD_STAIR_FINISHED = Fa lépcső
STR_EXPANSION_BB_WOOD_STAIR_FRAME = Fa lépcső keret
STR_EXPANSION_BB_WOOD_STAIR_HANDRAIL = Fa lépcső korlát
STR_EXPANSION_BB_WOOD_STAIR_SUPPORT = Fa lépcső tartóelem
STR_EXPANSION_BB_WOOD_STAIR_TREAD = Fa lépcsőfok
STR_EXPANSION_BB_WOOD_WALL_BASE = Fa fal alap (3m)
STR_EXPANSION_BB_WOOD_WALL_BASE_HALF = Fa fal alap (1.5m)
STR_EXPANSION_BB_WOOD_WALL_BASE_THIRD = Fa fal alap (1m)
STR_EXPANSION_BB_WOOD_WALL_FINISHED = Fa fal
STR_EXPANSION_BB_WOOD_WALL_FRAME = Fa fal keret
STR_EXPANSION_BB_WOOD_WINDOW_FINISHED = Fa ablak
STR_EXPANSION_BB_WOOD_WINDOW_FRAME = Fa ablak keret
STR_EXPANSION_BENELLI_M4 = Benelli M4
STR_EXPANSION_BENELLI_M4_DESC = A Benelli M4 egy olasz félautomata shotgun, magas tűzveszélyességgel. Úgy tervezték, hogy az amerikai katonaság használja, és a Tengerészeti Hadtest M1014 megjelöléssel.
STR_EXPANSION_BIKE_GEAR_DOWN = Bike Gear Down
STR_EXPANSION_BIKE_GEAR_UP = Bike Gear Up
STR_EXPANSION_BIKE_GENTLE = Bike Accelerate
STR_EXPANSION_BIKE_MOVEBACKWARD = Bike Backward
STR_EXPANSION_BIKE_MOVEFORWARD = Bike Forward
STR_EXPANSION_BIKE_ROTATE_LEFT = Bike Left
STR_EXPANSION_BIKE_ROTATE_RIGHT = Bike Right
STR_EXPANSION_BIKE_TURBO = Bike Turbo
STR_EXPANSION_BOATS_TRADER_SIGN = Boats Trader Sign
STR_EXPANSION_BOAT_MOVEBACKWARD = Hajó Hátramenet
STR_EXPANSION_BOAT_MOVEFORWARD = Hajó Előremenet
STR_EXPANSION_BOAT_ROTATE_LEFT = Hajó Fordulás JOBBRA
STR_EXPANSION_BOAT_ROTATE_RIGHT = Hajó Fordulás BALRA
STR_EXPANSION_BOAT_TURBO = Hajó Turbó Fokozat
STR_EXPANSION_BOOK_BACK = BACK
STR_EXPANSION_BOOK_CATEGORY_NAME = CATEGORY NAME
STR_EXPANSION_BOOK_CRAFTING_INGREDIENT_NAME = NAME
STR_EXPANSION_BOOK_CRAFTING_INGREDIENT_ONE = Ingredient One
STR_EXPANSION_BOOK_CRAFTING_INGREDIENT_TWO = Ingredient Two
STR_EXPANSION_BOOK_CRAFTING_ITEMNAME = Item Name
STR_EXPANSION_BOOK_CRAFTING_PREPARE = Prepare Crafting
STR_EXPANSION_BOOK_CRAFTING_YOU_GET = You get:
STR_EXPANSION_BOOK_GROUP_ALLOW_INVITES = ALLOW INVITES
STR_EXPANSION_BOOK_GROUP_BLOCK_INVITES = BLOCK INVITES
STR_EXPANSION_BOOK_GROUP_CREATE_BUTTON_LABEL = CREATE
STR_EXPANSION_BOOK_GROUP_CREATE_TITLE_LABEL = GROUP NAME:
STR_EXPANSION_BOOK_GROUP_DELETE = DELETE
STR_EXPANSION_BOOK_GROUP_DELETE_GROUP = Are you sure you want to delete this party? This can't be undone!
STR_EXPANSION_BOOK_GROUP_DISSOLVE = DISSOLVE
STR_EXPANSION_BOOK_GROUP_ENTER_PARTYNAME = Please give your party a name:
STR_EXPANSION_BOOK_GROUP_ENTER_PARTYTAG = Please give your party a tag:
STR_EXPANSION_BOOK_GROUP_GROUP = GROUP
STR_EXPANSION_BOOK_GROUP_ID = GROUP ID:
STR_EXPANSION_BOOK_GROUP_INVITE = INVITE
STR_EXPANSION_BOOK_GROUP_INVITES_LIST_TITLE = GROUP INVITES
STR_EXPANSION_BOOK_GROUP_INVITE_LIST_TITLE = INVITE MEMBERS
STR_EXPANSION_BOOK_GROUP_INVITE_NOPLAYERS = No Players Online
STR_EXPANSION_BOOK_GROUP_INVITE_PLAYER = INVITE PLAYER
STR_EXPANSION_BOOK_GROUP_INVITE_PLAYER_DESC = Are you sure you want to invite this player to your party?
STR_EXPANSION_BOOK_GROUP_INVITE_TITLE = INVITE MEMBER
STR_EXPANSION_BOOK_GROUP_KICK = KICK
STR_EXPANSION_BOOK_GROUP_LEAVE = LEAVE PARTY
STR_EXPANSION_BOOK_GROUP_LEAVE_GROUP = Are you sure you want to leave this party?
STR_EXPANSION_BOOK_GROUP_MEMBERS_COUNT = MEMBER COUNT:
STR_EXPANSION_BOOK_GROUP_MEMBERS_LIST_TITLE = GROUP MEMBERS
STR_EXPANSION_BOOK_GROUP_MEMBER_PERM_DELETE = Delete party:
STR_EXPANSION_BOOK_GROUP_MEMBER_PERM_WITHDRAW = Withdraw money:
STR_EXPANSION_BOOK_GROUP_NAME = GROUP NAME:
STR_EXPANSION_BOOK_GROUP_TAG = GROUP TAG:
STR_EXPANSION_BOOK_GROUP_PAGE_TITLE = CREATE GROUP
STR_EXPANSION_BOOK_GROUP_QUIT = QUIT
STR_EXPANSION_BOOK_MEMBER_COLOR = Member Color:
STR_EXPANSION_BOOK_MEMBERS = Members
STR_EXPANSION_BOOK_RULES = SERVER RULES
STR_EXPANSION_BOOK_SERVERINFO_LABEL = SERVER DESCRIPTION
STR_EXPANSION_BOOK_SERVERINFO_NAME = SERVER NAME
STR_EXPANSION_BOOK_SERVERINFO_PLAYER_COUNT = PLAYER COUNT:
STR_EXPANSION_BOOK_SERVERINFO_PLAYTIME = PLAYTIME:
STR_EXPANSION_BOOK_SERVERINFO_SERVER_UPTIME = SERVER UPTIME:
STR_EXPANSION_BOOK_SERVERINFO_SETTINGS = SERVER SETTINGS
STR_EXPANSION_BOOK_SETTINGS_DISABLED = DISABLED
STR_EXPANSION_BOOK_SETTINGS_ENABLED = ENABLED
STR_EXPANSION_BOOK_SETTINGS_TITLE = CLIENT SETTINGS
STR_EXPANSION_BOOK_STATUS_CHARACTER_STATS_DAYS = Days
STR_EXPANSION_BOOK_STATUS_CHARACTER_STATS_GRAMS = Grams
STR_EXPANSION_BOOK_STATUS_CHARACTER_STATS_HOURS = Hours
STR_EXPANSION_BOOK_STATUS_CHARACTER_STATS_KG = Kg
STR_EXPANSION_BOOK_STATUS_CHARACTER_STATS_KILLS = Kills
STR_EXPANSION_BOOK_STATUS_CHARACTER_STATS_KM = Km
STR_EXPANSION_BOOK_STATUS_CHARACTER_STATS_METERS = Meters
STR_EXPANSION_BOOK_STATUS_CHARACTER_STATS_MINUTES = Minutes
STR_EXPANSION_BOOK_STATUS_CHARACTER_STATS_SECONDS = Seconds
STR_EXPANSION_BOOK_STATUS_CHARACTER_STAT_AI_KILLS = AI KILLS:
STR_EXPANSION_BOOK_STATUS_CHARACTER_STAT_ANIMAL_KILLS = ANIMAL KILLS:
STR_EXPANSION_BOOK_STATUS_CHARACTER_STAT_BLOODTYPE = BLOOD TYPE:
STR_EXPANSION_BOOK_STATUS_CHARACTER_STAT_PLAYER_DISTANCE = DISTANCE TRAVELLED:
STR_EXPANSION_BOOK_STATUS_CHARACTER_STAT_PLAYER_FACTION = FACTION:
STR_EXPANSION_BOOK_STATUS_CHARACTER_STAT_PLAYER_KILLS = PLAYER KILLS:
STR_EXPANSION_BOOK_STATUS_CHARACTER_STAT_PLAYER_PLAYTIME = TIME SURVIVED:
STR_EXPANSION_BOOK_STATUS_CHARACTER_STAT_PLAYER_SHOT = LONGEST SHOT:
STR_EXPANSION_BOOK_STATUS_CHARACTER_STAT_PLAYER_WEIGHT = WEIGHT:
STR_EXPANSION_BOOK_STATUS_CHARACTER_STAT_ZOMBIE_KILLS = ZOMBIE KILLS:
STR_EXPANSION_BOOK_STATUS_CHARACTER_TABTITLE = Player Profile
STR_EXPANSION_BOOK_STATUS_CHARACTER_TITLE = CHARACTER
STR_EXPANSION_BOOK_STATUS_STATS_BLOOD = BLOOD:
STR_EXPANSION_BOOK_STATUS_STATS_ENERGY = ENERGY:
STR_EXPANSION_BOOK_STATUS_STATS_HEALTH = HEALTH:
STR_EXPANSION_BOOK_STATUS_STATS_STAMINA = STAMINA:
STR_EXPANSION_BOOK_STATUS_STATS_TITLE = STATS
STR_EXPANSION_BOOK_STATUS_STATS_WATER = WATER:
STR_EXPANSION_BOOK_TAB_CRAFTING_RECIPES = Crafting Recipes
STR_EXPANSION_BOOK_TAB_PARTY_INVITES = Party Invites
STR_EXPANSION_BOOK_TAB_PARTY_MANAGER = Party Manager
STR_EXPANSION_BOOK_TAB_PARTY_NAME = PARTY NAME
STR_EXPANSION_BOOK_TAB_SERVER_INFORMATION = Server Information
STR_EXPANSION_BOOK_TAB_SERVER_RULES = Server Rules
STR_EXPANSION_BOOK_TAB_SERVER_SETTING_NAME = SETTING NAME
STR_EXPANSION_BOOK_TAB_TERRITORY_INVITES = Territory Invites
STR_EXPANSION_BOOK_TAB_TERRITORY_MANAGER = Territory Manager
STR_EXPANSION_BOOK_TAB_TERRITORY_NAME = TERRITORY NAME
STR_EXPANSION_BOOK_TAB_TERRITORY_TITLE = TITLE
STR_EXPANSION_BOOK_TERRITORY = TERRITORY
STR_EXPANSION_BOOK_TERRITORY_DELETE = DELETE
STR_EXPANSION_BOOK_TERRITORY_DELETE_TERRITORY = DELETE TERRITORY
STR_EXPANSION_BOOK_TERRITORY_DELETE_TERRITORY_CANCEL = CANCEL
STR_EXPANSION_BOOK_TERRITORY_DELETE_TERRITORY_CONFIRM = YES
STR_EXPANSION_BOOK_TERRITORY_DELETE_TERRITORY_DESC = Are you sure you want to delete this territory? There is no way to undo this!
STR_EXPANSION_BOOK_TERRITORY_DEMOTE = DEMOTE
STR_EXPANSION_BOOK_TERRITORY_ERROR_NO_ONLINE_MEMBERS = No other Members Online
STR_EXPANSION_BOOK_TERRITORY_ERROR_NO_ONLINE_PLAYERS = No other Players Online
STR_EXPANSION_BOOK_TERRITORY_INVITE = INVITE
STR_EXPANSION_BOOK_TERRITORY_INVITES_INFO = TERRITORY INVITES
STR_EXPANSION_BOOK_TERRITORY_INVITE_ACCEPT = ACCEPT INVITE
STR_EXPANSION_BOOK_TERRITORY_INVITE_DECLINE = DECLINE INVITE
STR_EXPANSION_BOOK_TERRITORY_INVITE_EMPTY = No players to invite!
STR_EXPANSION_BOOK_TERRITORY_INVITE_PLAYER = Are you sure you want to invite this player to your territory?
STR_EXPANSION_BOOK_TERRITORY_INVITE_SELECT = Select a player to invite:
STR_EXPANSION_BOOK_TERRITORY_INVITE_TITLE = INVITE MEMBER
STR_EXPANSION_BOOK_TERRITORY_KICK = KICK
STR_EXPANSION_BOOK_TERRITORY_LEAVE = LEAVE
STR_EXPANSION_BOOK_TERRITORY_LEAVE_DESC = Are you sure you want to leave the territory?
STR_EXPANSION_BOOK_TERRITORY_LEAVE_TERRITORY = LEAVE TERRITORY
STR_EXPANSION_BOOK_TERRITORY_MANAGE_INVITES = INVITE OPTIONS
STR_EXPANSION_BOOK_TERRITORY_MANAGE_MEMBER = MANAGE MEMBER
STR_EXPANSION_BOOK_TERRITORY_MEMBERS_TITLE = TERRITORY MEMBERS
STR_EXPANSION_BOOK_TERRITORY_MEMBER_DEFAULT = Survivor
STR_EXPANSION_BOOK_TERRITORY_MEMBER_DEMOTE = DEMOTE
STR_EXPANSION_BOOK_TERRITORY_MEMBER_INFO = MEMBER INFO
STR_EXPANSION_BOOK_TERRITORY_MEMBER_KICK = KICK
STR_EXPANSION_BOOK_TERRITORY_MEMBER_LIST_EMPTY = Territory has no other members!
STR_EXPANSION_BOOK_TERRITORY_MEMBER_NAME = Name:
STR_EXPANSION_BOOK_TERRITORY_MEMBER_OFFLINE = Offline
STR_EXPANSION_BOOK_TERRITORY_MEMBER_PERM_DELETE = Delete territory:
STR_EXPANSION_BOOK_TERRITORY_MEMBER_PERM_EDIT = Edit members:
STR_EXPANSION_BOOK_TERRITORY_MEMBER_PERM_INVITE = Invite members:
STR_EXPANSION_BOOK_TERRITORY_MEMBER_PERM_KICK = Kick members:
STR_EXPANSION_BOOK_TERRITORY_MEMBER_SAVE = SAVE
STR_EXPANSION_BOOK_TERRITORY_MEMBER_PROMOTE = PROMOTE
STR_EXPANSION_BOOK_TERRITORY_MEMBER_RANK = Rank:
STR_EXPANSION_BOOK_TERRITORY_MEMBER_STATUS = Status:
STR_EXPANSION_BOOK_TERRITORY_NO_PENDING_INVITES = No pending invites
STR_EXPANSION_BOOK_TERRITORY_PROMOTE = PROMOTE
STR_EXPANSION_BRAVO4 = Sig Bravo4 Scope
STR_EXPANSION_BRAVO4_DESC = A Bravo4 egy 4X nagyítással rendelkező távcső, amely ismert magas látómezővel rendelkezik, más távcsövekhez képest. A tetején sín található, azzal a képességgel, hogy teljesen testreszabhatóan rögzíthető a legjobb célpont kiiktatás érdekében.
STR_EXPANSION_BREAD = Bread
STR_EXPANSION_BREAD_DESC = Bread is a staple food prepared from a dough of flour and water, usually by baking.
STR_EXPANSION_BUILD_ZONE_ITEM_DISALLOWED = This item cannot be placed in this build zone.
STR_EXPANSION_BUILD_ZONE_REQUIRED = You can only place this item in a build zone.
STR_EXPANSION_BUILD_ZONE_REQUIRED_TITLE = Build Zone Required
STR_EXPANSION_BUILD_ZONE_TITLE = Build Zone %1
STR_EXPANSION_CAMO_BOX = Camo doboz
STR_EXPANSION_CAMO_BOX_DESC = Camo sátor (doboz alakú)
STR_EXPANSION_CAMO_TENT = Camo sátor
STR_EXPANSION_CAMO_TENT_DESC = A camo tent. Offers a comfortable dry space, with additional cargo space.
STR_EXPANSION_CANCEL = CANCEL
STR_EXPANSION_CAR_KEYS = Car Keys
STR_EXPANSION_CAR_KEYS_DESC = Used to lock and unlock a vehicle.
STR_EXPANSION_CAR_MASTER_KEYS_DESC = Used to lock and unlock a vehicle. This Key can pair other keys to the same car. Uses left:
STR_EXPANSION_CAR_TRADER_SIGN = Cars Trader Sign
STR_EXPANSION_CEMENTMIXER = Cement Mixer
STR_EXPANSION_CEMENTMIXER_DESC = NOT READY - DO NOT TRANSLATE
STR_EXPANSION_CEMENTMIXER_MOTOR = Cement Mixer Motor
STR_EXPANSION_CEMENTMIXER_MOTOR_DESC = NOT READY - DO NOT TRANSLATE
STR_EXPANSION_CEMENTMIXER_TANK = Cement Mixer Tank
STR_EXPANSION_CEMENTMIXER_TANK_DESC = NOT READY - DO NOT TRANSLATE
STR_EXPANSION_CHATTOGGLE_OFF = Kikapcsoltad a chat láthatóságát
STR_EXPANSION_CHATTOGGLE_ON = Bekapcsoltad a chat láthatóságát
STR_EXPANSION_CHATTOGGLE_TITLE = Chat mutatása
STR_EXPANSION_CHEESE = Cheese
STR_EXPANSION_CHEESE_DESC = Cheese is a dairy product derived from milk that is produced in a wide range of flavors, textures, and forms by coagulation of the milk protein casein.
STR_EXPANSION_CHEMICAL_POISON = Kémiai mérgezés
STR_EXPANSION_CHICKEN_COOP = Chicken Coop
STR_EXPANSION_CHICKEN_COOP_DESC = Want some egg?
STR_EXPANSION_CHICKEN_COOP_KIT = Chicken Breeder-Kit
STR_EXPANSION_CHICKEN_COOP_KIT_DESC = Used to place and create a chicken coop.
STR_EXPANSION_CHOLERA = Kolera
STR_EXPANSION_CLOTHING_TRADER_SIGN = Clothing Trader Sign
STR_EXPANSION_COMPONENTS_TRADER_SIGN = Components Trader Sign
STR_EXPANSION_CONE = Cone
STR_EXPANSION_CONE_DESC = Cones, are usually cone-shaped markers that are placed on roads or footpaths to temporarily redirect traffic in a safe manner. They are often used to create separation or merge lanes during road construction projects or automobile accidents.
STR_EXPANSION_CONNECT_TOW = Tow Vehicle
STR_EXPANSION_CONNECT_WINCH = Winch Vehicle
STR_EXPANSION_CONSUMABLES_TRADER_SIGN = Consumables Trader Sign
STR_EXPANSION_COT_TERRITORY_CANCEL_EDIT = Cancel Edit
STR_EXPANSION_COT_TERRITORY_DELETE = Delete Territory
STR_EXPANSION_COT_TERRITORY_ID = Territory ID:
STR_EXPANSION_COT_TERRITORY_INFORMATION = TERRITORY INFORMATION
STR_EXPANSION_COT_TERRITORY_LEVEL = Territory Level:
STR_EXPANSION_COT_TERRITORY_MEMBERS = TERRITORY MEMBERS
STR_EXPANSION_COT_TERRITORY_MEMBERS_OPTIONS = MEMBER OPTIONS
STR_EXPANSION_COT_TERRITORY_MEMBER_INFORMATION = MEMBER INFORMATION
STR_EXPANSION_COT_TERRITORY_MEMBER_NAME = Member Name:
STR_EXPANSION_COT_TERRITORY_MEMBER_STEAMID = Steam ID:
STR_EXPANSION_COT_TERRITORY_NAME = Territory Name:
STR_EXPANSION_COT_TERRITORY_OBJECTS = TERRITORY OBJECTS
STR_EXPANSION_COT_TERRITORY_OBJECT_CONTAINER_CONTENT = OBJECTS CONTAINER CONTENT
STR_EXPANSION_COT_TERRITORY_OBJECT_DELETE = Delete Object
STR_EXPANSION_COT_TERRITORY_OBJECT_ID = Object ID:
STR_EXPANSION_COT_TERRITORY_OBJECT_INFORMATION = OBJECT INFORMATION
STR_EXPANSION_COT_TERRITORY_OBJECT_OPTIONS = OBJECT OPTIONS
STR_EXPANSION_COT_TERRITORY_OBJECT_PREVIEW = OBJECT PREVIEW
STR_EXPANSION_COT_TERRITORY_OPTIONS = TERRITORY OPTIONS
STR_EXPANSION_COT_TERRITORY_OWNER_ID = Territory Owner ID:
STR_EXPANSION_COT_TERRITORY_POSITION = Territory Position:
STR_EXPANSION_COT_TERRITORY_RANK = Territory Rank:
STR_EXPANSION_COT_TERRITORY_REFRESH = REFRESH LIST
STR_EXPANSION_COT_TERRITORY_TELEPORTTO = Teleport to Territory
STR_EXPANSION_COT_TERRITORY_TERRITORIES = SERVER TERRITORIES
STR_EXPANSION_CREDITS_3DARTISTS = 3D - Modellezők
STR_EXPANSION_CREDITS_COMMUNITY_MANAGER = Közösségi Menedzser
STR_EXPANSION_CREDITS_LEAD = Projekt Vezető
STR_EXPANSION_CREDITS_MAPPING = Környezet Dizájn
STR_EXPANSION_CREDITS_MOVIES = Film & Trailer Producer
STR_EXPANSION_CREDITS_PROGRAMMERS = Programmers
STR_EXPANSION_CREDITS_SCRIPTERS = Szkripterek
STR_EXPANSION_CREDITS_SPECIAL_THANKS = Köszönetnyilvánítás
STR_EXPANSION_CREDITS_SUPPORTERS = Projekt Támogatók
STR_EXPANSION_CROSSBOW = Crossbow
STR_EXPANSION_CROSSBOW_DESC = A crossbow is a ranged weapon using an elastic launching device similar to a bow; it consists of a bow-like assembly called a prod, mounted horizontally on a main frame called a tiller, which is hand-held in a similar fashion to the stock of a long gun.
STR_EXPANSION_CfgOther0 = Others
STR_EXPANSION_CfgRail0 = Rails
STR_EXPANSION_CfgSwitch0 = Switchables
STR_EXPANSION_CfgVestHolster = Holsters
STR_EXPANSION_CfgVestPatch = Patches
STR_EXPANSION_DEADSCREEN_STATS_HIDE_BUTTON_LABLE = HIDE STATISTICS
STR_EXPANSION_DEADSCREEN_STATS_SHOW_BUTTON_LABLE = SHOW CHARACTER STATISTICS
STR_EXPANSION_DEADSCREEN_STATS_SURVIVED_TIME = Time Survived
STR_EXPANSION_DEADSCREEN_STATS_TITLE = Rest in Peace %1
STR_EXPANSION_DECLINE = DECLINE
STR_EXPANSION_DENIED = Denied
STR_EXPANSION_DELETE_MARKER = Térkép Marker Törlése
STR_EXPANSION_DELTAPOINT = Leupold Deltapoint Reflex Sight
STR_EXPANSION_DELTAPOINT_DESC = A Deltapoint széles körű felhasználást kínál, és többféle shotgunra, pisztolyra és a HAMR célirányzékra is felszerelhető.
STR_EXPANSION_DIRECT_CONNECT_DIALOG_TITLE = Közvetlen kapcsolódás
STR_EXPANSION_DIRECT_CONNECT_ERROR = Valós ip címet és portot kell megadnod a szerverhez való kapcsolódásnál.
STR_EXPANSION_DISCONNECT_TOW = Disconnect Vehicle
STR_EXPANSION_DISCONNECT_WINCH = UnWinch Vehicle
STR_EXPANSION_DISCORD = DISCORD
STR_EXPANSION_DT11 = DT11
STR_EXPANSION_DT11_DESC = Double-barreled break-action shotgun. Capable of firing both barrels simultaneously. Use both 12ga bucks and slugs.
STR_EXPANSION_EGG = Egg
STR_EXPANSION_EGG_DESC = What came first?
STR_EXPANSION_ELCAN = Elcan SpecterDR1.5/6x Távcső
STR_EXPANSION_ELCAN_DESC = A SpecterDR, "Dual Role", változó nagyítási szinttekkel rendelkezik, 1,5x illetve 6x.
STR_EXPANSION_ERROR_DESC_CODE_BADREAD = Unable to %1 - Can't read code
STR_EXPANSION_ERROR_DESC_CODE_SELECTION = Unable to %1 - Can't read selection
STR_EXPANSION_ERROR_TITLE = !!! ERROR !!!
STR_EXPANSION_EXCHANGE_TRADER_SIGN = Exchange Trader Sign
STR_EXPANSION_EXPS3 = EOTech XPS3 Holo Sight
STR_EXPANSION_EXPS3_DESC = Az EOTech XPS3 Holo sight kompakt és könnyű holografikus célirányzék, amely lehetővé teszi a gyors kiiktatást.
STR_EXPANSION_FISHING_TRADER_SIGN = Fishing Trader Sign
STR_EXPANSION_FLAG_CHANGE = CHANGE FLAG
STR_EXPANSION_FLAG_CREATE_TERRITORY = CREATE TERRITORY
STR_EXPANSION_FLAG_KIT = Zászló kit
STR_EXPANSION_FLAG_KIT_AUS = Ausztrál zászló
STR_EXPANSION_FLAG_KIT_CANADA = Kanadai zászló
STR_EXPANSION_FLAG_KIT_CHERNARUS = Csernarusszia zászló
STR_EXPANSION_FLAG_KIT_DESC = A zászló helyzetét és elrendezését ábrázolja
STR_EXPANSION_FLAG_KIT_DESC_2 = Zászlóoszlop, helyezd el a terület elfoglalásához
STR_EXPANSION_FLAG_KIT_EXPANSION = EXPANSION zászló
STR_EXPANSION_FLAG_KIT_FRANCE = Francia zászló
STR_EXPANSION_FLAG_KIT_GERMANY = Német zászló
STR_EXPANSION_FLAG_KIT_LATVIA = Lett zászló
STR_EXPANSION_FLAG_KIT_LUXEMBOURG = Luxemburgi zászló
STR_EXPANSION_FLAG_KIT_MEXICO = Mexikói zászló
STR_EXPANSION_FLAG_KIT_NETHERLANDS = Holland zászló
STR_EXPANSION_FLAG_KIT_NORWAY = Norvég zászló
STR_EXPANSION_FLAG_KIT_NZ = Új Zélandi zászló
STR_EXPANSION_FLAG_KIT_POLAND = Lengyel zászló
STR_EXPANSION_FLAG_KIT_RUSSIA = Orosz zászló
STR_EXPANSION_FLAG_KIT_UK = UK zászló
STR_EXPANSION_FLAG_KIT_USA = USA zászló
STR_EXPANSION_FLAG_KIT_WHITE = Fehér zászló
STR_EXPANSION_FLAG_POLE = Zászlóoszlop
STR_EXPANSION_FLAG_POLE_AUS = Zászlórúd - Ausztrália
STR_EXPANSION_FLAG_POLE_BASE = Zászlórúd alap
STR_EXPANSION_FLAG_POLE_CANADA = Zászlórúd - Kanada
STR_EXPANSION_FLAG_POLE_CHERNARUS = Zászlórúd - Csernarusszia
STR_EXPANSION_FLAG_POLE_DESC = Zászlórúd
STR_EXPANSION_FLAG_POLE_EXPANSION = Zászlórúd - Expansion
STR_EXPANSION_FLAG_POLE_FRANCE = Zászlórúd - Franciaország
STR_EXPANSION_FLAG_POLE_GERMANY = Zászlórúd - Németország
STR_EXPANSION_FLAG_POLE_LATVIA = Zászlórúd - Lettország
STR_EXPANSION_FLAG_POLE_LUXEMBOURG = Zászlórúd - Luxembourg
STR_EXPANSION_FLAG_POLE_MEXICO = Zászlórúd - Mexikó
STR_EXPANSION_FLAG_POLE_NETHERLANDS = Zászlórúd - Hollandia
STR_EXPANSION_FLAG_POLE_NORWAY = Zászlórúd - Norvégia
STR_EXPANSION_FLAG_POLE_NZ = Zászlórúd - Új Zéland
STR_EXPANSION_FLAG_POLE_POLAND = Zászlórúd - Lengyelország
STR_EXPANSION_FLAG_POLE_RUSSIA = Zászlórúd - Oroszország
STR_EXPANSION_FLAG_POLE_UK = Zászlórúd - UK
STR_EXPANSION_FLAG_POLE_USA = Zászlórúd - USA
STR_EXPANSION_FLAG_POLE_WHITE = Zászlórúd - Fehér
STR_EXPANSION_FLAG_PREVIEW = FLAG PREVIEW:
STR_EXPANSION_FLAG_TERRITORY_CONFIRM_DESC = Are you sure you want to convert this flag to a territory? You cannot undo this change!
STR_EXPANSION_FLAG_TERRITORY_CONFIRM_OK = OK
STR_EXPANSION_FLAG_TERRITORY_DATA = TERRITORY DATA:
STR_EXPANSION_FLAG_TERRITORY_FLAG = TERRITORY FLAG
STR_EXPANSION_FLAG_TERRITORY_NAME = TERRITORY NAME:
STR_EXPANSION_FLAG_TERRITORY_OWNER_NAME = Owner Name:
STR_EXPANSION_FLAG_TERRITORY_POSITION = Position:
STR_EXPANSION_FLAG_TERRITORY_TITLE = TERRITORY
STR_EXPANSION_FLAG_TEXTURE = FLAG TEXTURE:
STR_EXPANSION_FLAG_TITLE = FLAG
STR_EXPANSION_FLARE = Jelzőfény
STR_EXPANSION_FLARE_DESC = A jelzőfény töltet, fényjelző pisztolyba tölthető. Airdrop lehívására illetve pozíció megjelölésre alkalmas. Már messziről meglehet látni, főleg éjszaka.
STR_EXPANSION_FLARE_GUN = Jelzőpisztoly
STR_EXPANSION_FLARE_GUN_DESC = Ezt a fegyvert arra használják, hogy fényforrást löveljenek ki nagy magasságba. Tüzelés után egy fénycsóva rövid ideig lóg a levegőben, és piros fényben megvilágítja a területet. Amint eléri a talajt, a fényforrás nem sokkal később kialszik.
STR_EXPANSION_FOOD_POISON = Ételmérgezés
STR_EXPANSION_FORUMS = FORUMS
STR_EXPANSION_G36C = G36C
STR_EXPANSION_G36C_DESC = A G36C egy kompakt változat a G36-ból, amelyet a Heckler & Koch német gyártó készített 2001-ben. Rövidebb hordóval és picatinny sínnel, valamint levehető irányzékkal rendelkezik.
STR_EXPANSION_G36_30RND_MAGAZINE = 30rd G36 Mag
STR_EXPANSION_G36_30RND_MAGAZINE_DESC = Detachable box magazine for the G36. Holds up to 30 rounds of 5.56x45mm.
STR_EXPANSION_GARAGE_ACTION = Open Garage
STR_EXPANSION_GARAGE_ERROR = GARAGE ERROR
STR_EXPANSION_GARAGE_ERROR_BLOCKED = %1: Position is blocked by another object (%2 at %3).
STR_EXPANSION_GARAGE_ERROR_CARGO = Can't store vehicle %1. Storing vehicles with cargo items is not allowed!
STR_EXPANSION_GARAGE_ERROR_CREW = Can't store vehicle %1. There is a player in the vehicle!
STR_EXPANSION_GARAGE_ERROR_DESTROYED = Can't store vehicle %1. Vehicle is destroyed!
STR_EXPANSION_GARAGE_ERROR_FREESPACE = Can't store vehicle %1 because the spot is already taken by another stored vehicle (%2).
STR_EXPANSION_GARAGE_ERROR_KEY = Can't store vehicle %1. Can only store vehicles with a paired key!
STR_EXPANSION_GARAGE_ERROR_PRICE = Can't store vehicle %1. Not enough money to store vehicle. Storing this vehicle costs %2. You have %3.
STR_EXPANSION_GARAGE_ERROR_RETRIEVED = Can't retrieve vehicle %1. Can't find stored vehicle. Vehicle has already been retrieved?!
STR_EXPANSION_GARAGE_ERROR_STORED = Can't store vehicle %1. Can't find vehicle object. Vehicle has already been stored?!
STR_EXPANSION_GARAGE_ERROR_STORELIMIT = Can't store vehicle %1. Max storable vehicle limit reached!
STR_EXPANSION_GARAGE_ERROR_TERRITORY = Can't store vehicle %1. You are in foreign territory!
STR_EXPANSION_GARAGE_INFO = GARAGE INFO
STR_EXPANSION_GARAGE_INFO_CARGO = - Vehicles with items in there cargo can not be stored.
STR_EXPANSION_GARAGE_INFO_GROUP_RETRIEVE = - All your group members can retrieve your vehicles when near a garage access point.
STR_EXPANSION_GARAGE_INFO_GROUP_STORE = - All your group members can store your vehicles when near a garage access point.
STR_EXPANSION_GARAGE_INFO_GROUP_STOREANDRETRIEVE = - All your group members can store and retrieve your vehicles when near a garage access point.
STR_EXPANSION_GARAGE_INFO_KEY = - Vehicles need a paired key bound to them to be stored.
STR_EXPANSION_GARAGE_INFO_PRICE = - Storing a vehicle will cost you the displayed amount on the vehicle entry.
STR_EXPANSION_GARAGE_INFO_RAIDING = - Vehicles can be retrieved by other players if they gain access to a garage access point within a territory.
STR_EXPANSION_GARAGE_INFO_RETRIEVE = - Vehicles retrieve in the exact same position they are stored.
STR_EXPANSION_GARAGE_INFO_STORE = - Store vehicles to protect them over restarts, from thieves and DayZ bugs.
STR_EXPANSION_GARAGE_INFO_TERRITORY = - You must be member or owner of a territory to access the Virtual Garage.
STR_EXPANSION_GARAGE_INFO_WARRANTY = - Vehicles destroyed by the Virtual Garage retrieval will not be compensated.
STR_EXPANSION_GARAGE_MENU_CURRENCY = Currency:
STR_EXPANSION_GARAGE_MENU_CURRENCY_TOTAL = Total
STR_EXPANSION_GARAGE_MENU_ERROR_NOTERRITORY = You are not a owner or member of a territory! You need a territory to use the virtual garage!
STR_EXPANSION_GARAGE_MENU_ERROR_NOVEHICLES = There is no vehicles to store/retrieve that can be displayed!
STR_EXPANSION_GARAGE_MENU_INFO = INFORMATION
STR_EXPANSION_GARAGE_MENU_STORED_VEHICLES = STORED VEHICLES
STR_EXPANSION_GARAGE_MENU_TITLE = GARAGE
STR_EXPANSION_GARAGE_MENU_WORLD_VEHICLES = WORLD VEHICLES
STR_EXPANSION_GARAGE_SUCCESS_RETRIEVE = Vehicle %1 has been retrieved from the virtual garage! Position %2.
STR_EXPANSION_GARAGE_SUCCESS_STORE = Vehicle %1 has been stored in the virtual garage!
STR_EXPANSION_GATE = Boom Barrier
STR_EXPANSION_GATE_DESC = A boom barrier, also known as a boom gate, is a bar, or pole pivoted to allow the boom to block vehicular or pedestrian access through a controlled point.
STR_EXPANSION_GENERIC_AXE = Axe
STR_EXPANSION_GENERIC_BAYONET = Bayonet
STR_EXPANSION_GENERIC_KNIFE = Knife
STR_EXPANSION_GENERIC_SAW = Saw
STR_EXPANSION_GLOWPLUG = Glow Plug
STR_EXPANSION_GLOWPLUG_DESC = A heating device used to aid starting engines.
STR_EXPANSION_GOLD_BAR = Gold Bar
STR_EXPANSION_GOLD_BAR_DESC = A gold bar, also called gold bullion or a gold ingot, is a quantity of refined metallic gold of any shape that is made by a bar producer meeting standard conditions of manufacture, labeling, and record keeping. Larger gold bars that are produced by pouring the molten metal into molds are called ingots.
STR_EXPANSION_GOLD_NUGGET = Gold Nugget
STR_EXPANSION_GOLD_NUGGET_DESC = A gold nugget is a naturally occurring piece of native gold. Watercourses often concentrate nuggets and finer gold in placers. Nuggets are recovered by placer mining, but they are also found in residual deposits where the gold-bearing veins or lodes are weathered. Nuggets are also found in the tailings piles of previous mining operations, especially those left by gold mining dredges.
STR_EXPANSION_GPS_MAP_SCALE_DOWN = GPS Zoom In
STR_EXPANSION_GPS_MAP_SCALE_UP = GPS Zoom Out
STR_EXPANSION_GRAVECROSS = Grave Cross
STR_EXPANSION_GRAVECROSS_DESC = A marker for where a dead body is buried
STR_EXPANSION_GUNRACK = Fegyvertároló rekesz
STR_EXPANSION_GUNRACK_DESC = A gun rack is a rack for storing firearms such as rifles and pistols. The rack is typically equipped with locks to prevent theft or improper use. Gun Racks can also be mounted onto vehicle transportation and can carry one or more guns safely and securely.
STR_EXPANSION_HAMR = Leupold Mark 4 HAMR Távcső
STR_EXPANSION_HAMR_DESC = A HAMR egy 4X nagyítást kínáló távcső, azzal a lehetőséggel, hogy a Deltapoint optikát a fegyver tetejére szerelje a közvetlen harc során.
STR_EXPANSION_HANDMADE_EXPLOSIVE = Kézműves robbanószer
STR_EXPANSION_HANDMADE_EXPLOSIVE_DESC = Kézzel összetákolt robbanószer.
STR_EXPANSION_HARDLINE_COMMON = Common
STR_EXPANSION_HARDLINE_EPIC = Epic
STR_EXPANSION_HARDLINE_EXOTIC = Exotic
STR_EXPANSION_HARDLINE_LEGENDARY = Legendary
STR_EXPANSION_HARDLINE_MARKET_REPLOW = Reputation too low!
STR_EXPANSION_HARDLINE_MARKET_REPLOW_BUY_DESC = This item requires %1 reputation to buy!
STR_EXPANSION_HARDLINE_MARKET_REPLOW_SELL_DESC = This item requires %1 reputation to sell!
STR_EXPANSION_HARDLINE_MYTHIC = Mythic
STR_EXPANSION_HARDLINE_POOR = Poor
STR_EXPANSION_HARDLINE_QUEST = Quest
STR_EXPANSION_HARDLINE_RARE = Rare
STR_EXPANSION_HARDLINE_REPUTATION = Reputation:
STR_EXPANSION_HARDLINE_REPUTATION_OUTOFRANGE = Reputation requirement not fulfilled!
STR_EXPANSION_HARDLINE_REPUTATION_OUTOFRANGE_MINMAX_TRADER = Reputation required to access this trader: Between %1 to %2
STR_EXPANSION_HARDLINE_REPUTATION_OUTOFRANGE_TRADER = Reputation required to access this trader: Minimum %1
STR_EXPANSION_HARDLINE_REPUTATION_UPPERCASE = REPUTATION:
STR_EXPANSION_HARDLINE_FACTION_REPUTATION = Faction Reputation:
STR_EXPANSION_HARDLINE_UNCOMMON = Uncommon
STR_EXPANSION_HARDLINE_INGREDIENT = Ingredient
STR_EXPANSION_HARDLINE_COLLECTABLE = Collectable
STR_EXPANSION_HASHTAG = #
STR_EXPANSION_HELICOPTER_ANTI_TORQUE_LEFT = Helicopter Anti Torque Left
STR_EXPANSION_HELICOPTER_ANTI_TORQUE_RIGHT = Helicopter Anti Torque Right
STR_EXPANSION_HELICOPTER_BATTERY = Helikopter akkumulátor
STR_EXPANSION_HELICOPTER_BATTERY_DESC = Az újratölthető elem, akkumulátor, másodlagos elem vagy akkumulátor olyan típusú elektromos akkumulátor, amelyet többször is fel lehet tölteni, kisütni és újratölteni, szemben az eldobható vagy elsődleges akkumulátorral, amelyet teljesen feltöltve szállítanak, merülés után eldobható.
STR_EXPANSION_HELICOPTER_COLLECTIVE_DOWN = Helicopter Collective Down
STR_EXPANSION_HELICOPTER_COLLECTIVE_UP = Helicopter Collective Up
STR_EXPANSION_HELICOPTER_CYCLIC_BACKWARD = Helicopter Cyclic Backward
STR_EXPANSION_HELICOPTER_CYCLIC_FORWARD = Helicopter Cyclic Forward
STR_EXPANSION_HELICOPTER_CYCLIC_LEFT = Helicopter Cyclic Left
STR_EXPANSION_HELICOPTER_CYCLIC_RIGHT = Helicopter Cyclic Right
STR_EXPANSION_HELICOPTER_FREELOOK = Szabad nézet
STR_EXPANSION_HELICOPTER_TOGGLE_AUTOHOVER = Toggle Auto-Hover
STR_EXPANSION_HELIPAD = Helikopter leszállóhely
STR_EXPANSION_HELIPAD_DESC = A helipad is a landing area or platform for helicopters and powered lift aircraft.
STR_EXPANSION_HEMOLYTIC_REACTION = Hemolytic Reaction
STR_EXPANSION_HERO_SET = Hero Set
STR_EXPANSION_HERO_SET_DESC = This package contains everything that true hero deserves.
STR_EXPANSION_HERO_TRADER_SIGN = Hero Trader-Zone Sign
STR_EXPANSION_HESCO = Long Hesco
STR_EXPANSION_HESCO_DESC = Hesco barriers are a modern gabion primarily used for flood control and military fortifications.
STR_EXPANSION_HESCO_KIT = Long Hesco Kit
STR_EXPANSION_HOMEPAGE = HOMEPAGE
STR_EXPANSION_HOSTILE = Hostile
STR_EXPANSION_HUD_SHOW_ROOF_INDICATOR = SHOW ROOF INDICATOR
STR_EXPANSION_HUD_SHOW_ROOF_INDICATOR_DESC = Show roof indicator
STR_EXPANSION_HYDROHOSE = Hydraulic Hoses
STR_EXPANSION_HYDROHOSE_DESC = A hose is a flexible hollow tube designed to carry fluids from one location to another.
STR_EXPANSION_IGNITERPLUG = Igniter Plug
STR_EXPANSION_IGNITERPLUG_DESC = The igniter plug of a turbine engine ignition system differs considerably from the spark plug of a reciprocating engine ignition system. Its electrode must be capable of withstanding a current of much higher energy than the electrode of a conventional spark plug.
STR_EXPANSION_INVENTORY_FULL_TITLE = Inventory Full
STR_EXPANSION_INV_CARGO_SIZE = Storage space:
STR_EXPANSION_ITEM_BOLTCUTTERS = Bolt Cutters
STR_EXPANSION_ITEM_BOLTCUTTERS_DESC = A useful tool used for cutting wire.
STR_EXPANSION_ITEM_GPS_DESC = A GPS is a device that is capable of receiving information from GNSS satellites and then to calculate the device's geographical position.
STR_EXPANSION_ITEM_GPS_NAME = GPS
STR_EXPANSION_ITEM_PROPANETORCH = Propane Torch
STR_EXPANSION_ITEM_PROPANETORCH_DESC = A small handheld welding torch. Cuts through metal like a knife through butter.
STR_EXPANSION_ITEM_SURVIVALGUIDE_DESC = Take me into your hands and use me
STR_EXPANSION_ITEM_SURVIVALGUIDE_NAME = Expansion Survival Guide
STR_EXPANSION_ITEM_TOOLBOX = Large Toolbox
STR_EXPANSION_ITEM_TOOLBOX_DESC = Provides ample space to store tools.
STR_EXPANSION_KAR98 = Karabiner 98K
STR_EXPANSION_KAR98_AMMO = 7.92x57mm Mauser Rounds
STR_EXPANSION_KAR98_AMMOBOX = Boxed 7.92x57mm, 15 Rounds
STR_EXPANSION_KAR98_AMMOBOX_DESC = 7.92×57mm surplus Ammunition, 15 Rounds
STR_EXPANSION_KAR98_AMMO_DESC = 7.92x57mm Mauser cartridge. Used in select rifles.
STR_EXPANSION_KAR98_BAYONET = Karabiner98K Bayonet
STR_EXPANSION_KAR98_BAYONET_DESC = A bayonet that can be used as a melee weapon or affixed to the Karabiner 98K.
STR_EXPANSION_KAR98_DESC = The Karabiner 98K was the standard issue rifle of the German Wehrmacht during the Second World War. In more recent years, the rifle has become a coveted item among collectors, yet is surprisingly easy to find across Eastern Europe and the former territories of the Soviet Union... Chambered in 7.92x57 Mauser.
STR_EXPANSION_KEYCHAIN = Keychain
STR_EXPANSION_KEYCHAIN_DESC = An old keychain used to organize car keys.
STR_EXPANSION_KEYS = Keys
STR_EXPANSION_KILLFEED_ANONYMOUS_PLAYER = Túlélő
STR_EXPANSION_KILLFEED_PLAYER_AI_NOWEAPON = %1 meghalt egy %2 npc által aki puszta kezét használta
STR_EXPANSION_KILLFEED_PLAYER_AI_WEAPON = %1 megölte egy %2 npc egy %3 fegyverrel
STR_EXPANSION_KILLFEED_PLAYER_BARBED_WIRE = %1 got caught in barbed wire and died.
STR_EXPANSION_KILLFEED_PLAYER_CRASHED_CAR = %1 crashed with his %2 car.
STR_EXPANSION_KILLFEED_PLAYER_CRASHED_CAR_CREW = %1 was blown up in a %2 car because %3 driving skills were insufficient.
STR_EXPANSION_KILLFEED_PLAYER_CRASHED_HELI = %1 crashed with his %2 helicopter.
STR_EXPANSION_KILLFEED_PLAYER_CRASHED_HELI_CREW = %1 was blown up in a %2 helicopter because %3 flying skills were insufficient.
STR_EXPANSION_KILLFEED_PLAYER_DIED_BLEEDING = %1 meghalt vérveszteség által
STR_EXPANSION_KILLFEED_PLAYER_DIED_DEHYDRATION = %1 szomjan halt
STR_EXPANSION_KILLFEED_PLAYER_DIED_EXPLOSION = %1 was killed by an explosion by a %2.
STR_EXPANSION_KILLFEED_PLAYER_DIED_EXPLOSION_VEHICLE = %1 blew up with his %2.
STR_EXPANSION_KILLFEED_PLAYER_DIED_EXPLOSION_WEAPON = %1 was killed by an explosion by a %2. Well done %3.
STR_EXPANSION_KILLFEED_PLAYER_DIED_EXPLOSION_WEAPON_SUICIDE = %1 blew himself up with a %2.
STR_EXPANSION_KILLFEED_PLAYER_DIED_FALLING = %1 magasról lezuhant és meghalt
STR_EXPANSION_KILLFEED_PLAYER_DIED_FIRE = %1 got burned to death.
STR_EXPANSION_KILLFEED_PLAYER_DIED_STARVATION = %1 éhen halt
STR_EXPANSION_KILLFEED_PLAYER_DIED_STATUSEFFECT = %1 died from %2.
STR_EXPANSION_KILLFEED_PLAYER_DIED_SUICIDE = %1 megölte magát %2 fegyverrel
STR_EXPANSION_KILLFEED_PLAYER_DIED_SUICIDE_NOITEM = %1 commited suicide.
STR_EXPANSION_KILLFEED_PLAYER_DIED_UNKNOWN = %1 got killed.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_ANIMAL = %1-t megölte egy állat
STR_EXPANSION_KILLFEED_PLAYER_KILLED_CRASH_CAR = %1 was blown up in a %2 car because %3 driving skills were insufficient.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_CRASH_CAR_NODRIVER = %1 was blown up in a %2 car.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_CRASH_HELI = %1 was blown up in a %2 helicopter because %3 flying skills were insufficient.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_CRASH_HELI_NODRIVER = %1 was blown up in a %2 helicopter.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_PLAYER_MELEE = %1 -t megölte %2 %3 fegyverrel
STR_EXPANSION_KILLFEED_PLAYER_KILLED_PLAYER_WEAPON = %1 has been killed by %2 with a %3 from a distance of %4m.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_PLAYER_WEAPON_NODISTANCE = %1 has been killed by %2 with a %3.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_PLAYE_BAREHANDS = %1-t megölte %2 puszta kézzel
STR_EXPANSION_KILLFEED_PLAYER_KILLED_UNKNOWN = %1 got killed by %2.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_ZOMBIE = %1 has been killed by a Infected.
STR_EXPANSION_KILLFEED_PLAYER_TRIPWIRE = %1 tripped over a tripwire.
STR_EXPANSION_KILLFEED_TITLE = Gyilkosságok listája
STR_EXPANSION_KILLFEED_UNKNOWN_KILLED_PLAYER = %1 has been killed with a %2.
STR_EXPANSION_KILLFEED_UNKNOWN_KILLED_PLAYER_DISTANCE = %1 has been killed with a %3 from a %4 m distance.
STR_EXPANSION_KIT = Expansion Kit
STR_EXPANSION_KIT_BASE = Expansion Kit Base
STR_EXPANSION_KIT_BASE_DESC = Expansion Kit Base
STR_EXPANSION_KIT_DESC = Expansion Kit
STR_EXPANSION_LABEL = EXPANSION
STR_EXPANSION_LARGE_SAFE = Nagy széf
STR_EXPANSION_LATEST_MOD = Legújabb mod verzió:
STR_EXPANSION_LICKED_BATTERY_TEXT = Apart from a tingling sensation, the battery leaves a quite distinct sour taste in your mouth. That doesn't tell you anything about its exact charge though. Maybe you should look at the helpful bar on your screen? The wonders of modern technology!
STR_EXPANSION_LICKED_BATTERY_TITLE = Delicious!
STR_EXPANSION_LICKED_EMPTY_BATTERY_TEXT = The battery leaves a faint metallic aftertaste in your mouth. It doesn't appear to hold any charge though.
STR_EXPANSION_LICKED_VEHICLEBATTERY_TEXT = You would probably also lick lamp posts when it's freezing, hm?
STR_EXPANSION_LICKED_VEHICLEBATTERY_TITLE = You asked for this.
STR_EXPANSION_LICK_BATTERY = Lick battery
STR_EXPANSION_LICK_VEHICLEBATTERY = Lick battery (DON'T)
STR_EXPANSION_LICK_VEHICLEBATTERY_NEEDWIRE = Lick battery (can't)
STR_EXPANSION_LICK_VEHICLEBATTERY_NEEDWIRE_TEXT = Your tongue appears to be not long enough to bridge the terminals. If only you could attach something to make it possible? This is probably a bad idea...
STR_EXPANSION_LICK_VEHICLEBATTERY_NEEDWIRE_TITLE = Too bad!
STR_EXPANSION_LOADED_MOD = Általad használt mod verzió:
STR_EXPANSION_LOADING_MSG_SUBMITTEDBY = Submitted by
STR_EXPANSION_LUMBER_BIG = Deszka (1.5 m)
STR_EXPANSION_LUMBER_BIG_DESC = Lumber is a type of wood that has been processed into beams and planks, a stage in the process of wood production. Lumber is mainly used for structural purposes but has many other uses as well.
STR_EXPANSION_LUMBER_LARGE = Deszka (3 m)
STR_EXPANSION_LUMBER_LARGE_DESC = Lumber is a type of wood that has been processed into beams and planks, a stage in the process of wood production. Lumber is mainly used for structural purposes but has many other uses as well. Carefull to not break your back while carrying it !
STR_EXPANSION_LUMBER_MEDIUM = Deszka (1 m)
STR_EXPANSION_LUMBER_MEDIUM_DESC = Lumber is a type of wood that has been processed into beams and planks, a stage in the process of wood production. Lumber is mainly used for structural purposes but has many other uses as well. This one should be 1 meter long !
STR_EXPANSION_LUMBER_SMALL = Deszka (0.5 m)
STR_EXPANSION_LUMBER_SMALL_DESC = Lumber is a type of wood that has been processed into beams and planks, a stage in the process of wood production. Lumber is mainly used for structural purposes but has many other uses as well. This one is really short !
STR_EXPANSION_M14 = M14 Springfield
STR_EXPANSION_M14_DESC = The M14 is an American select-fire rifle that fires .308 ammunition. It became the standard-issued rifle for the U.S. military in 1959 replacing the M1 Garand rifle in the U.S. Army by 1961
STR_EXPANSION_M16A4 = M16A4
STR_EXPANSION_M16A4_DESC = 1964-ben az M16 belépett az Egyesült Államok katonai szolgálatába, és a következő évet a dzsungelharci műveletekre vezették be a vietnami háború alatt. Az M16A4 az M16 sorozat negyedik generációja. Fel van szerelve eltávolítható hordozófogantyúval és egy teljes hosszúságú négyszeres Picatinny sínnel. Az optika és más kiegészítő eszközök rögzítéséhez. Az FN M16A4, biztonságos / félig / robbanás nélküli szelektív tüzet használva, szokásos kérdés az Egyesült Államok Marine Corps számára.
STR_EXPANSION_M1A = M1A SOCOM
STR_EXPANSION_M1A_10RND_MAGAZINE = 10rd M14 Mag
STR_EXPANSION_M1A_10RND_MAGAZINE_DESC = Holds up to 10 rounds of .308
STR_EXPANSION_M1A_20RND_MAGAZINE = 20rd M14 Mag
STR_EXPANSION_M1A_20RND_MAGAZINE_DESC = Holds up to 20 rounds of .308
STR_EXPANSION_M1A_DESC = The Springfield Armory M1A SOCOM 16. The M1A is a civilian variant of the iconic M14 rifle. It is almost identical to the M14, minus the fully automatic fire mode.
STR_EXPANSION_M1A_SCOPE_RAIL = M1A/M14 Scope Mount
STR_EXPANSION_M1A_SCOPE_RAIL_DESC = Raised picatinny rail mount for M1A/M14 rifles for affixing a longer scope than the built-in rail allows.
STR_EXPANSION_M1A_SCOPE_RAIL_SLOT_NAME = M1A/M14 Scope Mount
STR_EXPANSION_M27_LAW = M72 LAW
STR_EXPANSION_M27_LAW_WARHEAD = M72 LAW Warhead
STR_EXPANSION_M79 = M79
STR_EXPANSION_M79_DESC = The M79 grenade launcher is a single-shot, shoulder-fired, break-action grenade launcher that fires a 40×46mm grenade, which uses what the US Army calls the High-Low Propulsion System to keep recoil forces low, and first appeared during the Vietnam War.
STR_EXPANSION_M9 = M9
STR_EXPANSION_M9_DESC = A Beretta M9, azaz a korábbi változatát a 92FS-t 1985-ben vezették be az amerikai egységeknél, leváltva az akkor már 74 éve szolgálatban lévő Browning M1911-est.Bár a katonák nem szerették volna leváltani a jól bevált 1911-eseket, a Védelmi Minisztérium a magas gyártási és javitási költségekre hivatkozva pályázatott hirdetett, hogy egy olcsóbb, de ugyancsak megbízható fegyvert keresnek.
STR_EXPANSION_M9_MAG = 15Rnd M9 Magazine
STR_EXPANSION_M9_MAG_DESC = 15 Round magazine for the M9 pistol
STR_EXPANSION_MAP_MARKERLIST_MEMBER_TITLE = MEMBER MARKERS
STR_EXPANSION_MAP_MARKERLIST_PARTY_TITLE = PARTY MARKERS
STR_EXPANSION_MAP_MARKERLIST_PERSONAL_TITLE = PERSONAL MARKERS
STR_EXPANSION_MAP_MARKERLIST_SERVER_TITLE = SERVER MARKERS
STR_EXPANSION_MAP_MARKERLIST_TITLE = MARKER LIST
STR_EXPANSION_MAP_MARKER_APLHA_OPTION_TITLE = MARKER ÁTLÁTSZÓSÁG
STR_EXPANSION_MAP_MARKER_ARROW_COLOR_TITLE = HELYMEGHATÁRÓZÓ NYÍL SZÍNE
STR_EXPANSION_MAP_MARKER_CANCEL_BUTTON_LABLE = VISSZAVONÁS
STR_EXPANSION_MAP_MARKER_CANCEL_EDIT_BUTTON_LABLE = SZERKESZTÉS VISSZAVONÁSA
STR_EXPANSION_MAP_MARKER_COLOR_LABLE = MARKER SZÍN
STR_EXPANSION_MAP_MARKER_COLOR_TITLE = MARKER SZÍN
STR_EXPANSION_MAP_MARKER_CREATE_BUTTON_LABLE = KÉSZÍTÉS
STR_EXPANSION_MAP_MARKER_CREATION_TITLE = MARKER KÉSZÍTÉS
STR_EXPANSION_MAP_MARKER_DELETE_BUTTON_LABLE = DELETE MARKER
STR_EXPANSION_MAP_MARKER_DELETE_SHORT_BUTTON_LABLE = DELETE
STR_EXPANSION_MAP_MARKER_EDIT_BUTTON_LABLE = SZERKESZTÉS
STR_EXPANSION_MAP_MARKER_EDIT_TITLE = MARKER SZERKESZTÉSE
STR_EXPANSION_MAP_MARKER_ICON_TITLE = MARKER IKON
STR_EXPANSION_MAP_MARKER_LIST_TITLE = MARKER LISTA
STR_EXPANSION_MAP_MARKER_NAME_LABLE = MARKER NEVE
STR_EXPANSION_MAP_MARKER_OPTIONS_TITLE = MARKER OPCIÓK
STR_EXPANSION_MAP_MARKER_OPTION_3D_LABEL_DESC = Show this marker on your HUD
STR_EXPANSION_MAP_MARKER_OPTION_3D_LABLE = 3D MARKER
STR_EXPANSION_MAP_MARKER_OPTION_LOCK_LABLE = LOCK (HOLD SHIFT TO DRAG)
STR_EXPANSION_MAP_MARKER_OPTION_PARTY_LABLE = CSAPAT MARKER
STR_EXPANSION_MAP_MARKER_PLAYERMARKER = (You) %1
STR_EXPANSION_MAP_MARKER_PLAYERMARKER_STREAMERMODE = (You)
STR_EXPANSION_MAP_MARKER_PREVIEW_TITLE = MARKER ELŐNÉZET
STR_EXPANSION_MAP_MARKER_UPDATE_TITLE = UPDATE
STR_EXPANSION_MAP_TOOLTIP_TEXT = Kattints a térképre a marker elhelyezéséhez. Ezután beállíthatod a marker típusát, színét, ikonját és nevét. Egy meglévő marker megváltoztatásához a markerre kattintva aktiválhatod szerkesztési módot. A marker új elhelyezéséhez húzza az új pozícióra, vagy újradefiniálhatod egy dupla kattintással a térképen.
STR_EXPANSION_MAP_TOOLTIP_TITLE = EXPANSION TÉRKÉP
STR_EXPANSION_MARKERLIST_INFO_1 = Create Marker - To create a marker just double-click on a position on the map.
STR_EXPANSION_MARKERLIST_INFO_2 = Delete Marker - Point on a existing marker on the map and press the "Delete Map Marker" key (Default: Delete) to remove it, or click on it and delete it from the "Edit Marker" window.
STR_EXPANSION_MARKERLIST_INFO_3 = Edit Marker - Click on a existing marker on the map or in the list to bring up the edit window and to change it to your likings.
STR_EXPANSION_MARKERLIST_INFO_4 = Change Marker Position - Drag and drop a existing marker on the map to change its position.
STR_EXPANSION_MARKERTOGGLE_ALL_HIDE = Hiding all previously visible 3D marker categories.
STR_EXPANSION_MARKERTOGGLE_ALL_SHOW = Showing all previously visible 3D marker categories.
STR_EXPANSION_MARKERTOGGLE_GROUP_HIDE = Hiding group 3D marker category.
STR_EXPANSION_MARKERTOGGLE_GROUP_SHOW = Showing group 3D marker category.
STR_EXPANSION_MARKERTOGGLE_PERSONAL_HIDE = Hiding personal 3D marker category.
STR_EXPANSION_MARKERTOGGLE_PERSONAL_SHOW = Showing personal 3D marker category.
STR_EXPANSION_MARKERTOGGLE_PLAYER_HIDE = Hiding player 3D marker category.
STR_EXPANSION_MARKERTOGGLE_PLAYER_SHOW = Showing player 3D marker category.
STR_EXPANSION_MARKERTOGGLE_SERVER_HIDE = Hiding server 3D marker category.
STR_EXPANSION_MARKERTOGGLE_SERVER_SHOW = Showing server 3D marker category.
STR_EXPANSION_MARKER_ALPHA_SAVED = Jelenlegi jelölő átlátszósága elmentve.
STR_EXPANSION_MARKER_EDITED_MARKER = Jelölő szerkesztése sikeres!
STR_EXPANSION_MARKER_NO_MARKER_SELECTED = Előbb ki kell választanod a jelölő ikont!
STR_EXPANSION_MARKER_NO_POSITION_SELECTED = Nem jelöltél ki pozíciót! Kattints duplán a térképen, hogy kiválaszd a jelölő pozíciót.
STR_EXPANSION_MARKER_SAVED_PLAYER_POSITION_COLOR = Játékos helymeghatározó nyíl szín elmentve.
STR_EXPANSION_MARKER_SYSTEM_ADDED_MARKER = Jelölő %1 létrehozva.
STR_EXPANSION_MARKER_SYSTEM_EDITING_CANCELLED = Jelölő szerkesztés mód inaktív!
STR_EXPANSION_MARKER_SYSTEM_EDITING_MARKER = Jelölő szerkesztés mód aktív!
STR_EXPANSION_MARKER_SYSTEM_ILLEGAL_CHARACTER = A jelölés neve nem elfogadott karaktert tartalmaz.
STR_EXPANSION_MARKER_SYSTEM_MARKER_NAME_ALREADY_EXIST = Már van egy jelölő %1 néven. Kérlek válassz egy másikat!
STR_EXPANSION_MARKER_SYSTEM_NAME_LENGHT = A jelölés neve 3-32 karakter között kell, hogy legyen.
STR_EXPANSION_MARKER_SYSTEM_REMOVED_MARKER = Sikeresen eltávolítottad a jelölőt.
STR_EXPANSION_MARKER_SYSTEM_TITLE = Jelölő Rendszer
STR_EXPANSION_MARKET_BOUGHT_ITEM = Tárgy vásárlás sikeres!
STR_EXPANSION_MARKET_BOUGHT_VEHICLE = Jármű vásárlás sikeres!
STR_EXPANSION_MARKET_BUY = VÁSÁRLÁS
STR_EXPANSION_MARKET_CATEGORY_AMMO = TÖLTÉNY
STR_EXPANSION_MARKET_CATEGORY_AMMOBOXES = TÖLTÉNY LÁDA
STR_EXPANSION_MARKET_CATEGORY_ARMBANDS = KARSZALAGOK
STR_EXPANSION_MARKET_CATEGORY_ASSAULT_RIFLES = GÉPKARABÉLYOK
STR_EXPANSION_MARKET_CATEGORY_BACKPACKS = HÁTIZSÁKOK
STR_EXPANSION_MARKET_CATEGORY_BANDANAS = BANDANNA
STR_EXPANSION_MARKET_CATEGORY_BATTERIES = AKKUMULÁTOROK
STR_EXPANSION_MARKET_CATEGORY_BAYONETS = BAYONETS
STR_EXPANSION_MARKET_CATEGORY_BELTS = ÖVEK
STR_EXPANSION_MARKET_CATEGORY_BLOUSES = FELSŐK
STR_EXPANSION_MARKET_CATEGORY_BOATS = HAJÓK
STR_EXPANSION_MARKET_CATEGORY_BOOTS = CSIZMÁK
STR_EXPANSION_MARKET_CATEGORY_BUTTSTOCKS = FEGYVER TUSOK
STR_EXPANSION_MARKET_CATEGORY_CAPS = KÖPENYEK
STR_EXPANSION_MARKET_CATEGORY_CARS = AUTÓK
STR_EXPANSION_MARKET_CATEGORY_COATS = KABÁTOK
STR_EXPANSION_MARKET_CATEGORY_CONTAINERS = TÁRÓLÓK
STR_EXPANSION_MARKET_CATEGORY_CROSSBOWS = CROSSBOWS
STR_EXPANSION_MARKET_CATEGORY_DRESSES = EGYBERUHÁK
STR_EXPANSION_MARKET_CATEGORY_DRINKS = INNIVALÓK
STR_EXPANSION_MARKET_CATEGORY_ELECTRONICS = ELEKTRONIKAI ESZKÖZÖK
STR_EXPANSION_MARKET_CATEGORY_EXCHANGE = CSERE
STR_EXPANSION_MARKET_CATEGORY_EXPLOSIVES = ROBBANÓSZEREK
STR_EXPANSION_MARKET_CATEGORY_EYEWEAR = SZEMÜVEGEK
STR_EXPANSION_MARKET_CATEGORY_FISH = HAL
STR_EXPANSION_MARKET_CATEGORY_FISHING = HORGÁSZATI FELSZERELÉS
STR_EXPANSION_MARKET_CATEGORY_FLAGS = FLAGS
STR_EXPANSION_MARKET_CATEGORY_FOOD = ÉTEL
STR_EXPANSION_MARKET_CATEGORY_FRUIT_AND_VEGETABLES = FRUIT & VEGETABLES
STR_EXPANSION_MARKET_CATEGORY_FURNISHINGS = FURNISHINGS
STR_EXPANSION_MARKET_CATEGORY_GARDENING = GARDENING
STR_EXPANSION_MARKET_CATEGORY_GHILLIES = GHILLIES
STR_EXPANSION_MARKET_CATEGORY_GLOVES = KESZTYŰK
STR_EXPANSION_MARKET_CATEGORY_GRENADES = GRÁNÁTOK
STR_EXPANSION_MARKET_CATEGORY_HANDGUARDS = KÉZVÉDŐK
STR_EXPANSION_MARKET_CATEGORY_HATS = KALAPOK
STR_EXPANSION_MARKET_CATEGORY_HELICOPTER = HELIKOPTER
STR_EXPANSION_MARKET_CATEGORY_HELMETS = SISAKOK
STR_EXPANSION_MARKET_CATEGORY_HOLSTERS = HOLSTERS & POUCHES
STR_EXPANSION_MARKET_CATEGORY_HOODIES = KAPUCNIS FELSŐK
STR_EXPANSION_MARKET_CATEGORY_HOODS = KAPUCNIS FELSŐK
STR_EXPANSION_MARKET_CATEGORY_JACKETS = DZSEKIK
STR_EXPANSION_MARKET_CATEGORY_KITS = KÉSZLETEK
STR_EXPANSION_MARKET_CATEGORY_KNIFES = KÉSEK
STR_EXPANSION_MARKET_CATEGORY_LAUNCHERS = RAKÉTA/GRÁNÁT VETŐK
STR_EXPANSION_MARKET_CATEGORY_LIGHTS = LÁMPÁK
STR_EXPANSION_MARKET_CATEGORY_LIQUIDS = FOLYADÉKOK
STR_EXPANSION_MARKET_CATEGORY_LOCKS = ZÁRAK
STR_EXPANSION_MARKET_CATEGORY_MAGAZINES = TÁRAK
STR_EXPANSION_MARKET_CATEGORY_MASKS = MASZKOK
STR_EXPANSION_MARKET_CATEGORY_MEAT = HÚS
STR_EXPANSION_MARKET_CATEGORY_MEDICALS = ELSŐ SEGÉLY
STR_EXPANSION_MARKET_CATEGORY_MEELE_WEAPONS = KÉZI FEGYVEREK
STR_EXPANSION_MARKET_CATEGORY_MUZZLES = MUZZLES
STR_EXPANSION_MARKET_CATEGORY_NAVIGATION = NAVIGÁCIÓ
STR_EXPANSION_MARKET_CATEGORY_OPTICS = OPTIKÁK
STR_EXPANSION_MARKET_CATEGORY_PANTS = NADRÁGOK
STR_EXPANSION_MARKET_CATEGORY_PISTOLS = PISZTOLYOK
STR_EXPANSION_MARKET_CATEGORY_RIFLES = KARABÉLYOK
STR_EXPANSION_MARKET_CATEGORY_SHIRTS = INGEK
STR_EXPANSION_MARKET_CATEGORY_SHOES = CIPŐK
STR_EXPANSION_MARKET_CATEGORY_SHORTS = RÖVIDNADRÁGOK
STR_EXPANSION_MARKET_CATEGORY_SHOTGUNS = SÖRÉTESEK
STR_EXPANSION_MARKET_CATEGORY_SKIRTS = SZOKNYÁK
STR_EXPANSION_MARKET_CATEGORY_SNIPER_RIFLES = MESTERLÖVÉSZ FEGYVEREK
STR_EXPANSION_MARKET_CATEGORY_SPRAYCANS = SPRAY FLAKONOK
STR_EXPANSION_MARKET_CATEGORY_SUBMACHINE_GUNS = KÖNNYŰ GÉPFEGYVEREK
STR_EXPANSION_MARKET_CATEGORY_SUITS = INGEK
STR_EXPANSION_MARKET_CATEGORY_SUPPLIES = KÉSZLETEK
STR_EXPANSION_MARKET_CATEGORY_SWEATERS = PULÓVEREK
STR_EXPANSION_MARKET_CATEGORY_TENTS = SÁTRAK
STR_EXPANSION_MARKET_CATEGORY_TOOLS = SZERSZÁMOK
STR_EXPANSION_MARKET_CATEGORY_TSHIRTS = PÓLÓK
STR_EXPANSION_MARKET_CATEGORY_VEHICLE_PARTS = JÁRMŰ ALKATRÉSZEK
STR_EXPANSION_MARKET_CATEGORY_VESTS = MELLÉNYEK
STR_EXPANSION_MARKET_CLOSE_MENU = Close Menu
STR_EXPANSION_MARKET_CURRENCY_DENOMS = Currency denominations:
STR_EXPANSION_MARKET_CURRENCY_TITLE = Valuta:
STR_EXPANSION_MARKET_CURRENCY_TOTAL = Összesen:
STR_EXPANSION_MARKET_CUSTOMIZE = CUSTOMIZE
STR_EXPANSION_MARKET_DIALOG_ACCEPT = [Y/Z] ACCEPT
STR_EXPANSION_MARKET_DIALOG_CANCLE = [C] CANCEL
STR_EXPANSION_MARKET_DONT_HAVE_ITEM = You don't have this item in your inventory!
STR_EXPANSION_MARKET_FILTER_OPTIONS = FILTER OPTIONS
STR_EXPANSION_MARKET_ITEM_CANT_BUY = CAN'T BUY
STR_EXPANSION_MARKET_ITEM_CANT_SELL = CAN'T SELL
STR_EXPANSION_MARKET_ITEM_DESTROY = %1 megsemmisítése.
STR_EXPANSION_MARKET_ITEM_INSTOCK = KÉSZLETEN
STR_EXPANSION_MARKET_ITEM_NOTINSTOCK = NINCS KÉSZLETEN!
STR_EXPANSION_MARKET_ITEM_NOT_ENOUGH = NOT ENOUGH
STR_EXPANSION_MARKET_ITEM_NOT_SELL = Nem történt eladás!
STR_EXPANSION_MARKET_ITEM_ONPLAYER = JÁTÉKOS INVENTORY:
STR_EXPANSION_MARKET_ITEM_SPAWN = %1 Spawnolása folyamatban.
STR_EXPANSION_MARKET_ITEM_REP = NOT ENOUGH REPUTATION
STR_EXPANSION_MARKET_ITEM_TOOLTIP_ATTACHED_ITEM = You have this item attached on %1.
STR_EXPANSION_MARKET_ITEM_TOOLTIP_ATTACHED_WEAPON = You have this item attached on a %1 weapon.
STR_EXPANSION_MARKET_ITEM_TOOLTIP_ATTACHMENTS = You have %1 different other attachments on this item.
STR_EXPANSION_MARKET_ITEM_TOOLTIP_BULLETS = You have %1 bullets in one magazine of this type.
STR_EXPANSION_MARKET_ITEM_TOOLTIP_ONSLOT = You have this item equipped on a inventory slot!
STR_EXPANSION_MARKET_ITEM_TOOLTIP_OTHERITEMS = You have %1 different other items in this item.
STR_EXPANSION_MARKET_ITEM_TOOLTIP_TEXT = Már van egy olyan tárgyad ami más tárgyakat tartalmaz. Kérlek távolítsd el, hogy az eladni kívánt tárgyat eladhasd!
STR_EXPANSION_MARKET_ITEM_TOOLTIP_TITLE = Figyelem
STR_EXPANSION_MARKET_ITEM_TOOLTIP_WARNING_SELL_ATT = WARNING: The following attachments will also get sold to the trader:
STR_EXPANSION_MARKET_ITEM_TOOLTIP_WARNING_SELL_WEAPONATT = WARNING: The following weapon attachments will also get sold to the trader:
STR_EXPANSION_MARKET_LOADING = Kereskedő betöltése...
STR_EXPANSION_MARKET_NOT_ENOUGH_MONEY = Nincs elég pénzed!
STR_EXPANSION_MARKET_OPTION_ATTACHMENTS = Buy with Attachments
STR_EXPANSION_MARKET_OPTION_FILTER_ATTACHMENTS = Attachments
STR_EXPANSION_MARKET_OPTION_FILTER_BULLETS = Bullets
STR_EXPANSION_MARKET_OPTION_FILTER_MAGAZINES = Magazines
STR_EXPANSION_MARKET_OPTION_FILTER_PURCHASABLES = Purchasable
STR_EXPANSION_MARKET_OPTION_FILTER_SELLABLES = Sellable
STR_EXPANSION_MARKET_P2P_ACTION_OPENP2PMARKETMENU = Trade - P2P Market
STR_EXPANSION_MARKET_P2P_ATTACHMENTS_LABEL = Attachments:
STR_EXPANSION_MARKET_P2P_BACK_BUTTON_LABEL = Back
STR_EXPANSION_MARKET_P2P_BROWSE_LABEL = Browse
STR_EXPANSION_MARKET_P2P_BROWSE_NAME_LABEL = Name:
STR_EXPANSION_MARKET_P2P_BROWSE_OWNER_LABEL = Owner:
STR_EXPANSION_MARKET_P2P_BROWSE_PRICE_LABEL = Price:
STR_EXPANSION_MARKET_P2P_BROWSE_TIME_LABEL = Time Left:
STR_EXPANSION_MARKET_P2P_CARGO_LABEL = Cargo:
STR_EXPANSION_MARKET_P2P_CONFIRM_BUTTON_BUY_LABEL = Are you sure you want to purchase %1 for %2?
STR_EXPANSION_MARKET_P2P_CONFIRM_BUTTON_SELL_LABEL = Are you sure you want to list %1 for %2? You will need to pay a fee of %3 to create the listing.
STR_EXPANSION_MARKET_P2P_CREATESALE_BUTTON_LABEL = Put on sale
STR_EXPANSION_MARKET_P2P_DISCOUNT = %1%% Discount
STR_EXPANSION_MARKET_P2P_EXIT_BUTTON_LABEL = Exit
STR_EXPANSION_MARKET_P2P_FILTER_ALL_LABEL = All
STR_EXPANSION_MARKET_P2P_FILTER_YOURLISTING_LABEL = Your listings
STR_EXPANSION_MARKET_P2P_HIGHESTPRICE_LABEL = HIGHEST PRICE:
STR_EXPANSION_MARKET_P2P_INFOBOX_EXPIREDLISTING_DESC = If your listing does not sell within %1 days, it gets deleted.
STR_EXPANSION_MARKET_P2P_INFOBOX_EXPIREDLISTING_TITLE = NO COMPENSATION FOR EXPIRED LISTINGS
STR_EXPANSION_MARKET_P2P_INFOBOX_EXPIREDSALES_DESC = All offers will be stored at the trader and can be retrieved within %1 days in the "Browse" tab before they are lost. You will receive a message upon sale of an item.
STR_EXPANSION_MARKET_P2P_INFOBOX_EXPIREDSALES_TITLE = NO COMPENSATION FOR EXPIRED SALES
STR_EXPANSION_MARKET_P2P_INFOBOX_GENERALWARNING_DESC = Vehicle cargo, any attachments or container items of the selected item to list will also be listed upon creating your listing.
STR_EXPANSION_MARKET_P2P_INFOBOX_LISTINGFEE_DESC = You will need to pay %1%% of the listing price as a fee to create your listing.
STR_EXPANSION_MARKET_P2P_INFOBOX_LISTINGFEE_TITLE = FEE FOR LISTINGS
STR_EXPANSION_MARKET_P2P_INFOBOX_WARNING_TITLE = WARNING
STR_EXPANSION_MARKET_P2P_INFORMATION_LABEL = PREVIEW
STR_EXPANSION_MARKET_P2P_ITEMDETAILS_LABEL = ITEM DETAILS
STR_EXPANSION_MARKET_P2P_ITEMINFO_ATTACHMENTS_LABEL = Attachments count:
STR_EXPANSION_MARKET_P2P_ITEMINFO_CARGO_LABEL = Cargo Items count:
STR_EXPANSION_MARKET_P2P_ITEMINFO_FOOD_LABEL = Food state:
STR_EXPANSION_MARKET_P2P_ITEMINFO_HEALTH_LABEL = Health Level:
STR_EXPANSION_MARKET_P2P_ITEMINFO_ISOLATIONLABEL = Heat-Insulation:
STR_EXPANSION_MARKET_P2P_ITEMINFO_LIQUID_LABEL = Liquid type:
STR_EXPANSION_MARKET_P2P_ITEMINFO_QUANTITY_LABEL = Quantity:
STR_EXPANSION_MARKET_P2P_ITEMINFO_RARITY_LABEL = Rarity:
STR_EXPANSION_MARKET_P2P_ITEMNAME = Item Name
STR_EXPANSION_MARKET_P2P_LISTINGCOST_LABEL = LISTING COST:
STR_EXPANSION_MARKET_P2P_LOWESTPRICE_LABEL = LOWEST PRICE:
STR_EXPANSION_MARKET_P2P_MARKETPRICE_LABEL = MARKET PRICE:
STR_EXPANSION_MARKET_P2P_MARKET_TOOLTIP_DESC = You need to interact with a normal market trader first to see the market price.
STR_EXPANSION_MARKET_P2P_MSG_ITEM_GOT_SOLD_NOTIFIER = Your listing of %1 has been sold for %2. Return to the trader anytime to retrieve your sales!
STR_EXPANSION_MARKET_P2P_MSG_TOTAL_SOLD_NOTIFIER = You have a total of %1 to retrieve from %2 sales. Return to the traders anytime to retrieve your sales!
STR_EXPANSION_MARKET_P2P_NAN = N/A
STR_EXPANSION_MARKET_P2P_NOTIF_BLOCKED_VEH_SPAWN_DESC = Could not process purchase for the vehicle %1. A player/object %2 is blocking the spawn position %3.
STR_EXPANSION_MARKET_P2P_NOTIF_CANT_REMOVE_MONEY_DESC = Could not remove money from character! Desync?!
STR_EXPANSION_MARKET_P2P_NOTIF_CANT_RESTORE_ITEM_DESC = Could not restore items for listing %1.
STR_EXPANSION_MARKET_P2P_NOTIF_ERROR_ONLYNUMBERS_DESC = Only numbers are allowed for prices!
STR_EXPANSION_MARKET_P2P_NOTIF_ERROR_TITLE = ERROR P2P Market
STR_EXPANSION_MARKET_P2P_NOTIF_LISTING_ERROR_TITLE = Listing failed!
STR_EXPANSION_MARKET_P2P_NOTIF_LISTING_PRICE_LOW_DESC = The price for the listing is too low to calculate the fee. Please set a higher listing price!
STR_EXPANSION_MARKET_P2P_NOTIF_LISTING_PRICE_LOW_TITLE = Listing price too low!
STR_EXPANSION_MARKET_P2P_NOTIF_LISTING_RUINED_ATT_ERROR_DESC = Listing for %1 failed. One or more attachments on the vehicle are ruined!
STR_EXPANSION_MARKET_P2P_NOTIF_LISTING_VEH_MISSING_ATT_ERROR_DESC = Listing for %1 failed. Only vehicles with all vital attachments and fuel can be listed!
STR_EXPANSION_MARKET_P2P_NOTIF_MAX_LISTING_DESC = You already have %1 listed items in total. Limit is %2.
STR_EXPANSION_MARKET_P2P_NOTIF_MAX_LISTING_TITLE = Max listings reached!
STR_EXPANSION_MARKET_P2P_NOTIF_NOT_ENOUGH_MONEY_DESC = You have not enough money to list the item %1 for %2. The list price is %3.
STR_EXPANSION_MARKET_P2P_NOTIF_NOT_ENOUGH_MONEY_TITLE = You are broke!
STR_EXPANSION_MARKET_P2P_NOTIF_NO_VEH_SPAWN_DESC = There is no valid spawn position defined for vehicles of the type %1.
STR_EXPANSION_MARKET_P2P_NOTIF_PLACED_SALE_DESC = You have listed %1 for %2
STR_EXPANSION_MARKET_P2P_NOTIF_PLACED_SALE_TITLE = It's on the Market!
STR_EXPANSION_MARKET_P2P_NOTIF_PURCHASED_DESC = You have purchased a %1 for %2
STR_EXPANSION_MARKET_P2P_NOTIF_PURCHASE_FAILED_TITLE = Purchase failed!