-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathenglish.ini
1843 lines (1843 loc) · 132 KB
/
english.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 = Aircraft Battery
STR_EXPANSION_AIRCRAFT_TRADER_SIGN = Aircraft Trader Sign
STR_EXPANSION_AIRDROP = Airdrop
STR_EXPANSION_AIRDROP_SYSTEM_EVENT = There is an airdrop heading towards %1
STR_EXPANSION_AIRDROP_SYSTEM_EVENT_CLOSE = The airdrop plane is closing in on %1
STR_EXPANSION_AIRDROP_SYSTEM_EVENT_DROP = The supplies have been dropped around %1
STR_EXPANSION_AIRDROP_SYSTEM_TITLE = Airdrop
STR_EXPANSION_AIRDROP_TOO_MANY_PLANES = There are too many planes flying, cannot spawn another!
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 red 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 = Withdrawal 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 = Code Lock
STR_EXPANSION_BB_CODE_LOCK_CHANGE = Change Code
STR_EXPANSION_BB_CODE_LOCK_DESC = A combination lock is a type of locking device in which a sequence of symbols, usually numbers, is used to open the lock.
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 = Concrete Base
STR_EXPANSION_BB_CONCRETE_DOOR_FINISHED = Concrete Door
STR_EXPANSION_BB_CONCRETE_DOOR_FRAME = Concrete Door Frame
STR_EXPANSION_BB_CONCRETE_FLOOR_FINISHED = Concrete Floor
STR_EXPANSION_BB_CONCRETE_FLOOR_FRAME = Concrete Floor Frame
STR_EXPANSION_BB_CONCRETE_GATE_FINISHED = Concrete Gate
STR_EXPANSION_BB_CONCRETE_GATE_FRAME = Concrete Gate Frame
STR_EXPANSION_BB_CONCRETE_HATCH_FINISHED = Concrete Hatch
STR_EXPANSION_BB_CONCRETE_HATCH_FRAME = Concrete Hatch Frame
STR_EXPANSION_BB_CONCRETE_PILLAR = Concrete Pillar
STR_EXPANSION_BB_CONCRETE_RAMP_FINISHED = Concrete Ramp
STR_EXPANSION_BB_CONCRETE_RAMP_FRAME = Concrete Ramp Frame
STR_EXPANSION_BB_CONCRETE_WALL_FINISHED = Concrete Wall
STR_EXPANSION_BB_CONCRETE_WALL_FRAME = Concrete Wall Frame
STR_EXPANSION_BB_CONCRETE_WINDOW_FINISHED = Concrete Window
STR_EXPANSION_BB_CONCRETE_WINDOW_FRAME = Concrete Window Frame
STR_EXPANSION_BB_DOOR = Door
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 = Floor Base
STR_EXPANSION_BB_FLOOR_KIT = Floor Kit
STR_EXPANSION_BB_FLOOR_KIT_DESC = Used to plot the position of a floor and its layout
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 = Gate
STR_EXPANSION_BB_METAL_BASE = Metal Base
STR_EXPANSION_BB_METAL_DOOR_FINISHED = Metal Door
STR_EXPANSION_BB_METAL_DOOR_FRAME = Metal Door Frame
STR_EXPANSION_BB_METAL_FLOOR_FINISHED = Metal Floor
STR_EXPANSION_BB_METAL_FLOOR_FRAME = Metal Floor Frame
STR_EXPANSION_BB_METAL_GATE_FINISHED = Metal Gate
STR_EXPANSION_BB_METAL_GATE_FRAME = Metal Gate Frame
STR_EXPANSION_BB_METAL_HATCH_FINISHED = Metal Hatch
STR_EXPANSION_BB_METAL_HATCH_FRAME = Metal Hatch Frame
STR_EXPANSION_BB_METAL_PILLAR = Metal Pillar
STR_EXPANSION_BB_METAL_RAMP_FINISHED = Metal Ramp
STR_EXPANSION_BB_METAL_RAMP_FRAME = Metal Ramp Frame
STR_EXPANSION_BB_METAL_WALL_FINISHED = Metal Wall
STR_EXPANSION_BB_METAL_WALL_FRAME = Metal Wall Frame
STR_EXPANSION_BB_METAL_WINDOW_FINISHED = Metal Window
STR_EXPANSION_BB_METAL_WINDOW_FRAME = Metal Window Frame
STR_EXPANSION_BB_PILLAR_KIT = Pillar Kit
STR_EXPANSION_BB_PILLAR_KIT_DESC = Used to plot the position of a pillar and its layout
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 = Ramp Base
STR_EXPANSION_BB_RAMP_KIT = Ramp Kit
STR_EXPANSION_BB_RAMP_KIT_DESC = Used to plot the position of a ramp and its layout
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 = Stair Base
STR_EXPANSION_BB_STAIR_KIT = Stair Kit
STR_EXPANSION_BB_STAIR_KIT_DESC = Used to plot the position of a stairs and its layout
STR_EXPANSION_BB_WALL = Wall
STR_EXPANSION_BB_WALL_BASE = Wall Base
STR_EXPANSION_BB_WALL_KIT = Wall Kit
STR_EXPANSION_BB_WALL_KIT_DESC = Used to plot the position of a wall and its layout
STR_EXPANSION_BB_WINDOW = Window
STR_EXPANSION_BB_WOOD_BASE = Wood Base
STR_EXPANSION_BB_WOOD_DOOR_FINISHED = Wood Door
STR_EXPANSION_BB_WOOD_DOOR_FRAME = Wood Door Frame
STR_EXPANSION_BB_WOOD_FLOOR_BASE = Wood Floor Base
STR_EXPANSION_BB_WOOD_FLOOR_FINISHED = Wood Floor
STR_EXPANSION_BB_WOOD_FLOOR_FRAME = Wood Floor Frame
STR_EXPANSION_BB_WOOD_GATE_FINISHED = Wood Gate
STR_EXPANSION_BB_WOOD_GATE_FRAME = Wood Gate Frame
STR_EXPANSION_BB_WOOD_HATCH_FINISHED = Wood Hatch
STR_EXPANSION_BB_WOOD_HATCH_FRAME = Wood Hatch Frame
STR_EXPANSION_BB_WOOD_PILLAR = Wood Pillar
STR_EXPANSION_BB_WOOD_RAMP_BASE = Wood Ramp Base
STR_EXPANSION_BB_WOOD_RAMP_FINISHED = Wood Ramp
STR_EXPANSION_BB_WOOD_RAMP_FRAME = Wood Ramp Frame
STR_EXPANSION_BB_WOOD_ROOF_FINISHED = Wood Roof
STR_EXPANSION_BB_WOOD_STAIR_BASE = Wood Stair Base
STR_EXPANSION_BB_WOOD_STAIR_FINISHED = Wood Stair
STR_EXPANSION_BB_WOOD_STAIR_FRAME = Wood Stairs Frame
STR_EXPANSION_BB_WOOD_STAIR_HANDRAIL = Wood Stair Handrail
STR_EXPANSION_BB_WOOD_STAIR_SUPPORT = Wood Stair Support
STR_EXPANSION_BB_WOOD_STAIR_TREAD = Wood Stair Tread
STR_EXPANSION_BB_WOOD_WALL_BASE = Wood Wall Base (3 m)
STR_EXPANSION_BB_WOOD_WALL_BASE_HALF = Wood Wall Base (1.5 m)
STR_EXPANSION_BB_WOOD_WALL_BASE_THIRD = Wood Wall Base (1 m)
STR_EXPANSION_BB_WOOD_WALL_FINISHED = Wood Wall
STR_EXPANSION_BB_WOOD_WALL_FRAME = Wood Wall Frame
STR_EXPANSION_BB_WOOD_WINDOW_FINISHED = Wood Window
STR_EXPANSION_BB_WOOD_WINDOW_FRAME = Wood Window Frame
STR_EXPANSION_BENELLI_M4 = Benelli M4
STR_EXPANSION_BENELLI_M4_DESC = The Benelli M4 is an Italian semi-automatic shotgun with a high rate of fire. It was designed for use under the US Military and was used by the Marine Corps under the designation M1014.
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 = Boat Move Backward
STR_EXPANSION_BOAT_MOVEFORWARD = Boat Move Forward
STR_EXPANSION_BOAT_ROTATE_LEFT = Boat Rotate Left
STR_EXPANSION_BOAT_ROTATE_RIGHT = Boat Rotate Right
STR_EXPANSION_BOAT_TURBO = Boat Turbo
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 = The Bravo4 is a 4x magnifcation scope known for its high field of view compared to other similar scopes. It features a rail on top with the ability to affix a backup sight.
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 box
STR_EXPANSION_CAMO_BOX_DESC = Camo box tent
STR_EXPANSION_CAMO_TENT = Camo Tent
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 = You have disabled the chat visibility
STR_EXPANSION_CHATTOGGLE_ON = You have enabled the chat visibility
STR_EXPANSION_CHATTOGGLE_TITLE = Chat Toggle
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 = Chemical Poisoning
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 = Cholera
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 - Artists
STR_EXPANSION_CREDITS_COMMUNITY_MANAGER = Community Manager
STR_EXPANSION_CREDITS_LEAD = Project Lead
STR_EXPANSION_CREDITS_MAPPING = Enviroment Design
STR_EXPANSION_CREDITS_MOVIES = Film & Trailer Producer
STR_EXPANSION_CREDITS_PROGRAMMERS = Programmers
STR_EXPANSION_CREDITS_SCRIPTERS = Scripters
STR_EXPANSION_CREDITS_SPECIAL_THANKS = Special Thanks
STR_EXPANSION_CREDITS_SUPPORTERS = Project Supporters
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 = Delete Map Marker
STR_EXPANSION_DELTAPOINT = Leupold Deltapoint Reflex Sight
STR_EXPANSION_DELTAPOINT_DESC = The Deltapoint has a wide range of use, and can be mounted on several shotguns, pistols, and the HAMR sight.
STR_EXPANSION_DIRECT_CONNECT_DIALOG_TITLE = Direct Connection
STR_EXPANSION_DIRECT_CONNECT_ERROR = You need to enter a valid IP address and port for a direct connection to a server.
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 Scope
STR_EXPANSION_ELCAN_DESC = The SpecterDR, "Dual Role" is a variable scope offering both a 1.5x and 6x magnification level.
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 = The EOTech XPS3 Holo sight is a compact and lightweight holographic sight, allowing for quick target acquisition.
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 = Flag Kit
STR_EXPANSION_FLAG_KIT_AUS = Flag Kit - Australia
STR_EXPANSION_FLAG_KIT_CANADA = Flag Kit - Canada
STR_EXPANSION_FLAG_KIT_CHERNARUS = Flag Kit - Chernarus
STR_EXPANSION_FLAG_KIT_DESC = Used to plot the position of a flag and its layout
STR_EXPANSION_FLAG_KIT_DESC_2 = Flag pole, deploy it to claim your territory
STR_EXPANSION_FLAG_KIT_EXPANSION = Flag Kit - Expansion
STR_EXPANSION_FLAG_KIT_FRANCE = Flag Kit - France
STR_EXPANSION_FLAG_KIT_GERMANY = Flag Kit - Germany
STR_EXPANSION_FLAG_KIT_LATVIA = Flag Kit - Latvia
STR_EXPANSION_FLAG_KIT_LUXEMBOURG = Flag Kit - Luxembourg
STR_EXPANSION_FLAG_KIT_MEXICO = Flag Kit - Mexico
STR_EXPANSION_FLAG_KIT_NETHERLANDS = Flag Kit - Netherlands
STR_EXPANSION_FLAG_KIT_NORWAY = Flag Kit - Norway
STR_EXPANSION_FLAG_KIT_NZ = Flag Kit - New Zealand
STR_EXPANSION_FLAG_KIT_POLAND = Flag Kit - Poland
STR_EXPANSION_FLAG_KIT_RUSSIA = Flag Kit - Russia
STR_EXPANSION_FLAG_KIT_UK = Flag Kit - UK
STR_EXPANSION_FLAG_KIT_USA = Flag Kit - USA
STR_EXPANSION_FLAG_KIT_WHITE = Flag Kit - White
STR_EXPANSION_FLAG_POLE = Flag Pole
STR_EXPANSION_FLAG_POLE_AUS = Flag Pole - Australia
STR_EXPANSION_FLAG_POLE_BASE = Flag Pole Base
STR_EXPANSION_FLAG_POLE_CANADA = Flag Pole - Canada
STR_EXPANSION_FLAG_POLE_CHERNARUS = Flag Pole - Chernarus
STR_EXPANSION_FLAG_POLE_DESC = Flag Pole
STR_EXPANSION_FLAG_POLE_EXPANSION = Flag Pole - Expansion
STR_EXPANSION_FLAG_POLE_FRANCE = Flag Pole - France
STR_EXPANSION_FLAG_POLE_GERMANY = Flag Pole - Germany
STR_EXPANSION_FLAG_POLE_LATVIA = Flag Pole - Latvia
STR_EXPANSION_FLAG_POLE_LUXEMBOURG = Flag Pole - Luxembourg
STR_EXPANSION_FLAG_POLE_MEXICO = Flag Pole - Mexico
STR_EXPANSION_FLAG_POLE_NETHERLANDS = Flag Pole - Netherlands
STR_EXPANSION_FLAG_POLE_NORWAY = Flag Pole - Norway
STR_EXPANSION_FLAG_POLE_NZ = Flag Pole - New Zealand
STR_EXPANSION_FLAG_POLE_POLAND = Flag Pole - Poland
STR_EXPANSION_FLAG_POLE_RUSSIA = Flag Pole - Russia
STR_EXPANSION_FLAG_POLE_UK = Flag Pole - UK
STR_EXPANSION_FLAG_POLE_USA = Flag Pole - USA
STR_EXPANSION_FLAG_POLE_WHITE = Flag Pole - White
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 = Flare
STR_EXPANSION_FLARE_DESC = The Flare round is a type of ammunition, it is used via the Flaregun to create a light source. When fired from the flare gun it makes a very bright area when it's in the air, as well as when it lands. Can be used to call an Airdrop supply.
STR_EXPANSION_FLARE_GUN = Flaregun
STR_EXPANSION_FLARE_GUN_DESC = This gun is used to fire flares to create a source of light. Once fired, a flare will hang in the air for a short time and light up the area around it in a red glow. Once it reaches the ground, it extinguishes and the light source goes out shortly after.
STR_EXPANSION_FOOD_POISON = Food Poisoning
STR_EXPANSION_FORUMS = FORUMS
STR_EXPANSION_G36C = G36C
STR_EXPANSION_G36C_DESC = The G36C is a compact variant of the G36, produced by German manufacturer Heckler & Koch in 2001. It features a shorter barrel and a picatinny rail, along with detachable ironsights.
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 = Gunrack
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 Scope
STR_EXPANSION_HAMR_DESC = The HAMR is a scope offering 4x magnification, with the option to mount a Deltapoint optic on the top for close quarters combat.
STR_EXPANSION_HANDMADE_EXPLOSIVE = Handmade Explosive
STR_EXPANSION_HANDMADE_EXPLOSIVE_DESC = A handmade explosive device.
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 = Helicopter Battery
STR_EXPANSION_HELICOPTER_BATTERY_DESC = A rechargeable battery, storage battery, secondary cell, or accumulator is a type of electrical battery which can be charged, discharged into a load, and recharged many times, as opposed to a disposable or primary battery, which is supplied fully charged and discarded after use.
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 = Free Look
STR_EXPANSION_HELICOPTER_TOGGLE_AUTOHOVER = Toggle Auto-Hover
STR_EXPANSION_HELIPAD = Helipad
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 = Survivor
STR_EXPANSION_KILLFEED_PLAYER_AI_NOWEAPON = %1 got beaten to a pulp by %2 NPC with bare hands.
STR_EXPANSION_KILLFEED_PLAYER_AI_WEAPON = %1 got killed by %2 NPC with %3.
STR_EXPANSION_KILLFEED_PLAYER_BARBED_WIRE = %1 got caught in barbed wire and died.
STR_EXPANSION_KILLFEED_PLAYER_CRASHED_CAR = %1 didn't survive driving their %2.
STR_EXPANSION_KILLFEED_PLAYER_CRASHED_CAR_CREW = %1 and passengers %3 didn't survive driving in their %2.
STR_EXPANSION_KILLFEED_PLAYER_CRASHED_HELI = %1 didn't survive flying their %2.
STR_EXPANSION_KILLFEED_PLAYER_CRASHED_HELI_CREW = %1 and passengers %3 didn't survive flying in their %2.
STR_EXPANSION_KILLFEED_PLAYER_DIED_BLEEDING = %1 bled out.
STR_EXPANSION_KILLFEED_PLAYER_DIED_DEHYDRATION = %1 died because of dehydration.
STR_EXPANSION_KILLFEED_PLAYER_DIED_EXPLOSION = %1 was killed by an explosion caused by %2.
STR_EXPANSION_KILLFEED_PLAYER_DIED_EXPLOSION_VEHICLE = %1 blew up in their %2.
STR_EXPANSION_KILLFEED_PLAYER_DIED_EXPLOSION_WEAPON = %1 was killed by an explosion caused by %2. Well done, %3.
STR_EXPANSION_KILLFEED_PLAYER_DIED_EXPLOSION_WEAPON_SUICIDE = %1 blew themself up with %2.
STR_EXPANSION_KILLFEED_PLAYER_DIED_FALLING = %1 fell to their death.
STR_EXPANSION_KILLFEED_PLAYER_DIED_FIRE = %1 burned to death.
STR_EXPANSION_KILLFEED_PLAYER_DIED_STARVATION = %1 starved to death.
STR_EXPANSION_KILLFEED_PLAYER_DIED_STATUSEFFECT = %1 died from %2.
STR_EXPANSION_KILLFEED_PLAYER_DIED_SUICIDE = %1 commited suicide with %2.
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 got mauled to death by a %2.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_CRASH_CAR = %1 got run over by %3 with a %2.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_CRASH_CAR_NODRIVER = %1 got run over with a %2.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_CRASH_HELI = %1 was flattened by %3 with a %2.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_CRASH_HELI_NODRIVER = %1 was flattened with a %2.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_PLAYER_MELEE = %1 got killed by %2 with %3.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_PLAYER_WEAPON = %1 got killed by %2 with %3 from a distance of %4 m.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_PLAYER_WEAPON_NODISTANCE = %1 got killed by %2 with %3.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_PLAYE_BAREHANDS = %1 got beaten to a pulp by %2 with bare hands.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_UNKNOWN = %1 got killed by %2.
STR_EXPANSION_KILLFEED_PLAYER_KILLED_ZOMBIE = %1 got killed by an Infected.
STR_EXPANSION_KILLFEED_PLAYER_TRIPWIRE = %1 tripped over a tripwire.
STR_EXPANSION_KILLFEED_TITLE = Killfeed
STR_EXPANSION_KILLFEED_UNKNOWN_KILLED_PLAYER = %1 got killed with a %2.
STR_EXPANSION_KILLFEED_UNKNOWN_KILLED_PLAYER_DISTANCE = %1 got killed with a %2 from a distance of %3 m.
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 = Large Safe
STR_EXPANSION_LATEST_MOD = Latest Mod Version
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 = Loaded Mod Version
STR_EXPANSION_LOADING_MSG_SUBMITTEDBY = Submitted by
STR_EXPANSION_LUMBER_BIG = Lumber (1.5m)
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 = Lumber (3m)
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 = Lumber (1m)
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 = Lumber (0.5m)
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 = In 1964, the M16 entered U.S. military service and the following year was deployed for jungle warfare operations during the Vietnam War.The M16A4 is the fourth generation of the M16 series. It is equipped with a removable carry handle and a full length quad Picatinny rail for mounting optics and other ancillary devices. The FN M16A4, using safe/semi/burst selective fire, became standard issue for the U.S. Marine Corps.
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 = The Beretta M9 is the United States designation for the Beretta 92F. The M9 was adopted by the US Military as their service pistol in 1985, replacing the M1911, and is still in use today.
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 TRANSPARENCY
STR_EXPANSION_MAP_MARKER_ARROW_COLOR_TITLE = POSITION ARROW COLOR
STR_EXPANSION_MAP_MARKER_CANCEL_BUTTON_LABLE = CANCEL
STR_EXPANSION_MAP_MARKER_CANCEL_EDIT_BUTTON_LABLE = CANCEL EDIT
STR_EXPANSION_MAP_MARKER_COLOR_LABLE = MARKER COLOR
STR_EXPANSION_MAP_MARKER_COLOR_TITLE = MARKER COLOR
STR_EXPANSION_MAP_MARKER_CREATE_BUTTON_LABLE = CREATE
STR_EXPANSION_MAP_MARKER_CREATION_TITLE = MARKER CREATION
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 = EDIT
STR_EXPANSION_MAP_MARKER_EDIT_TITLE = EDIT MARKER
STR_EXPANSION_MAP_MARKER_ICON_TITLE = MARKER ICON
STR_EXPANSION_MAP_MARKER_LIST_TITLE = MARKER LIST
STR_EXPANSION_MAP_MARKER_NAME_LABLE = MARKER NAME
STR_EXPANSION_MAP_MARKER_OPTIONS_TITLE = MARKER OPTIONS
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 = PARTY MARKER
STR_EXPANSION_MAP_MARKER_PLAYERMARKER = (You) %1
STR_EXPANSION_MAP_MARKER_PLAYERMARKER_STREAMERMODE = (You)
STR_EXPANSION_MAP_MARKER_PREVIEW_TITLE = MARKER PREVIEW
STR_EXPANSION_MAP_MARKER_UPDATE_TITLE = UPDATE
STR_EXPANSION_MAP_TOOLTIP_TEXT = Click on the map to determine a position for the marker. You can then set the type, color, icon and name of the marker. To change an existing marker, you can start the editing mode by clicking on the marker. To define a new position for the marker, you can either drag it to the new position or redefine it with a double click on the map.
STR_EXPANSION_MAP_TOOLTIP_TITLE = Expansion Map
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 = Current marker transparency saved!
STR_EXPANSION_MARKER_EDITED_MARKER = Marker edited!
STR_EXPANSION_MARKER_NO_MARKER_SELECTED = You need to select a marker icon first!
STR_EXPANSION_MARKER_NO_POSITION_SELECTED = No position selected! Double click at a location on the map to select one.
STR_EXPANSION_MARKER_SAVED_PLAYER_POSITION_COLOR = Saved player position arrow color!
STR_EXPANSION_MARKER_SYSTEM_ADDED_MARKER = Map Marker %1 created!
STR_EXPANSION_MARKER_SYSTEM_EDITING_CANCELLED = Marker edit mode cancelled!
STR_EXPANSION_MARKER_SYSTEM_EDITING_MARKER = Marker edit mode active!
STR_EXPANSION_MARKER_SYSTEM_ILLEGAL_CHARACTER = Your marker name contains an illegal character!
STR_EXPANSION_MARKER_SYSTEM_MARKER_NAME_ALREADY_EXIST = There is already a Map Marker named %1. Please use a different one.
STR_EXPANSION_MARKER_SYSTEM_NAME_LENGHT = Your marker name must contain between 3 and 32 characters!
STR_EXPANSION_MARKER_SYSTEM_REMOVED_MARKER = You have successfully removed a marker!
STR_EXPANSION_MARKER_SYSTEM_TITLE = Marker System
STR_EXPANSION_MARKET_BOUGHT_ITEM = Item bought!
STR_EXPANSION_MARKET_BOUGHT_VEHICLE = Vehicle bought!
STR_EXPANSION_MARKET_BUY = BUY
STR_EXPANSION_MARKET_CATEGORY_AMMO = AMMO
STR_EXPANSION_MARKET_CATEGORY_AMMOBOXES = AMMO BOXES
STR_EXPANSION_MARKET_CATEGORY_ARMBANDS = ARMBANDS
STR_EXPANSION_MARKET_CATEGORY_ASSAULT_RIFLES = ASSAULT RIFLES
STR_EXPANSION_MARKET_CATEGORY_BACKPACKS = BACKPACKS
STR_EXPANSION_MARKET_CATEGORY_BANDANAS = BANDANAS
STR_EXPANSION_MARKET_CATEGORY_BATTERIES = BATTERIES
STR_EXPANSION_MARKET_CATEGORY_BAYONETS = BAYONETS
STR_EXPANSION_MARKET_CATEGORY_BELTS = BELTS
STR_EXPANSION_MARKET_CATEGORY_BLOUSES = BLOUSES
STR_EXPANSION_MARKET_CATEGORY_BOATS = BOATS
STR_EXPANSION_MARKET_CATEGORY_BOOTS = BOOTS
STR_EXPANSION_MARKET_CATEGORY_BUTTSTOCKS = BUTTSTOCKS
STR_EXPANSION_MARKET_CATEGORY_CAPS = CAPS
STR_EXPANSION_MARKET_CATEGORY_CARS = CARS
STR_EXPANSION_MARKET_CATEGORY_COATS = COATS
STR_EXPANSION_MARKET_CATEGORY_CONTAINERS = CONTAINERS
STR_EXPANSION_MARKET_CATEGORY_CROSSBOWS = CROSSBOWS
STR_EXPANSION_MARKET_CATEGORY_DRESSES = DRESSES
STR_EXPANSION_MARKET_CATEGORY_DRINKS = DRINKS
STR_EXPANSION_MARKET_CATEGORY_ELECTRONICS = ELECTRONICS
STR_EXPANSION_MARKET_CATEGORY_EXCHANGE = EXCHANGE
STR_EXPANSION_MARKET_CATEGORY_EXPLOSIVES = EXPLOSIVES
STR_EXPANSION_MARKET_CATEGORY_EYEWEAR = EYEWEAR
STR_EXPANSION_MARKET_CATEGORY_FISH = FISH
STR_EXPANSION_MARKET_CATEGORY_FISHING = FISHING EQUIPMENT
STR_EXPANSION_MARKET_CATEGORY_FLAGS = FLAGS
STR_EXPANSION_MARKET_CATEGORY_FOOD = FOOD
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 = GLOVES
STR_EXPANSION_MARKET_CATEGORY_GRENADES = GRENADES
STR_EXPANSION_MARKET_CATEGORY_HANDGUARDS = HANDGUARDS
STR_EXPANSION_MARKET_CATEGORY_HATS = HATS
STR_EXPANSION_MARKET_CATEGORY_HELICOPTER = HELICOPTER
STR_EXPANSION_MARKET_CATEGORY_HELMETS = HELMETS
STR_EXPANSION_MARKET_CATEGORY_HOLSTERS = HOLSTERS & POUCHES
STR_EXPANSION_MARKET_CATEGORY_HOODIES = HOODIES
STR_EXPANSION_MARKET_CATEGORY_HOODS = HOODS
STR_EXPANSION_MARKET_CATEGORY_JACKETS = JACKETS
STR_EXPANSION_MARKET_CATEGORY_KITS = KITS
STR_EXPANSION_MARKET_CATEGORY_KNIFES = KNIFES
STR_EXPANSION_MARKET_CATEGORY_LAUNCHERS = LAUNCHERS
STR_EXPANSION_MARKET_CATEGORY_LIGHTS = LIGHTS
STR_EXPANSION_MARKET_CATEGORY_LIQUIDS = LIQUIDS
STR_EXPANSION_MARKET_CATEGORY_LOCKS = LOCKS
STR_EXPANSION_MARKET_CATEGORY_MAGAZINES = MAGAZINES
STR_EXPANSION_MARKET_CATEGORY_MASKS = MASKS
STR_EXPANSION_MARKET_CATEGORY_MEAT = MEAT
STR_EXPANSION_MARKET_CATEGORY_MEDICALS = MEDICALS
STR_EXPANSION_MARKET_CATEGORY_MEELE_WEAPONS = MELEE WEAPONS
STR_EXPANSION_MARKET_CATEGORY_MUZZLES = MUZZLES
STR_EXPANSION_MARKET_CATEGORY_NAVIGATION = NAVIGATION
STR_EXPANSION_MARKET_CATEGORY_OPTICS = OPTICS
STR_EXPANSION_MARKET_CATEGORY_PANTS = PANTS
STR_EXPANSION_MARKET_CATEGORY_PISTOLS = PISTOLS
STR_EXPANSION_MARKET_CATEGORY_RIFLES = RIFLES
STR_EXPANSION_MARKET_CATEGORY_SHIRTS = SHIRTS
STR_EXPANSION_MARKET_CATEGORY_SHOES = SHOES
STR_EXPANSION_MARKET_CATEGORY_SHORTS = SHORTS
STR_EXPANSION_MARKET_CATEGORY_SHOTGUNS = SHOTGUNS
STR_EXPANSION_MARKET_CATEGORY_SKIRTS = SKIRTS
STR_EXPANSION_MARKET_CATEGORY_SNIPER_RIFLES = SNIPER RIFLES
STR_EXPANSION_MARKET_CATEGORY_SPRAYCANS = SPRAY CANS
STR_EXPANSION_MARKET_CATEGORY_SUBMACHINE_GUNS = SUBMACHINE GUNS
STR_EXPANSION_MARKET_CATEGORY_SUITS = SUITS
STR_EXPANSION_MARKET_CATEGORY_SUPPLIES = SUPPLIES
STR_EXPANSION_MARKET_CATEGORY_SWEATERS = SWEATERS
STR_EXPANSION_MARKET_CATEGORY_TENTS = TENTS
STR_EXPANSION_MARKET_CATEGORY_TOOLS = TOOLS
STR_EXPANSION_MARKET_CATEGORY_TSHIRTS = T-SHIRTS
STR_EXPANSION_MARKET_CATEGORY_VEHICLE_PARTS = VEHICLE PARTS
STR_EXPANSION_MARKET_CATEGORY_VESTS = VESTS
STR_EXPANSION_MARKET_CLOSE_MENU = Close Menu
STR_EXPANSION_MARKET_CURRENCY_DENOMS = Currency denominations:
STR_EXPANSION_MARKET_CURRENCY_TITLE = Currency:
STR_EXPANSION_MARKET_CURRENCY_TOTAL = Total
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 = Destroying %1
STR_EXPANSION_MARKET_ITEM_INSTOCK = IN STOCK
STR_EXPANSION_MARKET_ITEM_NOTINSTOCK = NOT IN STOCK
STR_EXPANSION_MARKET_ITEM_NOT_ENOUGH = NOT ENOUGH
STR_EXPANSION_MARKET_ITEM_NOT_SELL = Did not sell!
STR_EXPANSION_MARKET_ITEM_ONPLAYER = ON YOU
STR_EXPANSION_MARKET_ITEM_SPAWN = Spawning %1
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 = You have an item of this type in inventory that contains other items! You must first remove these items to sell this item.
STR_EXPANSION_MARKET_ITEM_TOOLTIP_TITLE = Caution
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 = Loading Trader...
STR_EXPANSION_MARKET_NOT_ENOUGH_MONEY = Not enough money!
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!