forked from Lythinca/extinction-translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen.lua
1432 lines (1372 loc) · 45 KB
/
en.lua
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
local my_language = {
give_vehicle = "You added ~b~%s~w~ to your inventory.",
store_vehicle_command = "Store the vehicle you are driving",
no_entity_vehicle = "~r~The vehicle does not exist or is too far from you.",
no_entity_vehicle_id = "~r~The vehicle is not binded to any id, you can't store it.",
store_vehicle = "~b~You stored your car.",
teleported_former_position = "~g~You have been teleported to your latest saved position.",
not_enough_of = "~r~You don't have enough %s.",
max_storage_chest = "~r~The storage box is full.",
cant_carry_more_items = "~r~Your inventory can't store more items (full).",
put_item = "You put ~g~x%s~w~ %s~w~.",
take_item = "You took ~g~x%s~w~ %s~w~.",
delete_item = "You removed ~r~x%s~w~ %s~w~.",
you_equiped_item = "You have equipped your ~g~%s~w~.",
bind_weapon_command = "Shortcut for weapon slot %s",
kevlar_broke = "~r~AHH!~n~~w~Your armor broke.",
inventory_command = "Toggle inventory",
press_enter_to_join = "Press ~g~ENTER~w~ to start playing.",
new_character = "New character",
survivor = "Survivor",
right = "Right",
left = "Left",
male = "Male",
female = "Female",
ped = "Ped",
name = "Name",
sex = "Sex",
title = "Title",
select_this_character = "Select this character",
no_entity_zombie = "The zombie does not exist or is too far from you.",
you_found = "You found ~g~%sx %s~w~.",
you_found_nothing = "You found ~g~nothing~w~.",
press_e_to_loot = "Press ~b~[E]~w~ to loot",
full_for_item = "~r~There is not enough room for this item.",
put_item_container = "You put ~g~x%s~w~ %s~w~ in your container.",
take_item_container = "You took ~g~x%s~w~ %s~w~ from your container.",
not_allowed_here = "~r~You are not allowed to do that here.",
cant_store_moving_veh = "~r~You can't store a moving vehicle.",
use_repair_tool = "use the repair tool",
please_get_closer = "~b~Please get closer, no entity in range.",
you_cancel_action = "~r~You canceled the action.",
selected_target_message = "Selected target:~n~%s~n~~r~Press ~b~Y~r~ to cancel~n~~r~Press ~g~X~r~ to continue.",
target_you = "~b~YOU",
target_screen = "~g~Displayed",
take_this_path = "take this path",
-- hud
default_hud = "Default HUD",
cinema_hud = "Cinema HUD",
no_hud = "No HUD",
-- perms
kick_member = "Kick members",
invite_someone = "Invitation",
edit_member = "Edit members",
edit_rank = "Edit ranks",
create_rank = "Create ranks",
delete_rank = "Delete ranks",
edit_structure = "Edit crew info",
edit_permissions = "Edit permissions",
permission_level = "Permission grant",
red_delete = "Delete",
rank = "Rank",
red_kick = "Kick",
crew_name = "Crew name",
slogan = "Catchphrase",
information = "information",
boss_rank = "Boss rank name",
member_rank = "Newbie rank name",
member = "Member",
permissions_manager = "permissions manager",
members_manager = "members manager",
ranks_manager = "ranks manager",
ranks_list = "ranks list",
members_list = "members list",
create_a_rank = "create a rank",
invite_someone = "invite someone",
stats = "Stats",
total_ranks = "Rank count",
total_members = "Member count",
level = "Level",
actions = "actions",
crew_manager = "crew manager",
you_created_a_new_crew = "You created a new crew: %s",
you_deleted_your_crew = "You deleted your crew.",
you_are_not_in_a_crew = "You are not in a crew",
you_joined_the_crew = "You joined a new Crew '%s'",
kick_failed = "The kick failed, reason: %s",
already_in_crew = "You are already in a crew",
no_invitation = "You haven't received any invitation.",
left_crew = "You left your crew.",
permission_updated = "The permissions of <C>~g~%s</C>~w~ have been updated.",
incorrect_name = "~r~The name format is incorrect",
incorrect_rank_perm = "~r~Error\n~w~The rank name or the permission level is invalid.",
warn_rank_limit = "~r~You reached the ranks limit.",
create_rank_success = "~g~Success\n~w~You created a new rank <C>~b~%s</C>~w~ with a permission level of <C>~b~%s</C>~w~.",
crew_grant_warn = "~HUD_COLOUR_DEGEN_RED~You cannot interact with a member that have a permission level above yours.",
you_sent_an_invitation = "You sent an invitation to <C>~g~%s</C>~w~ to join your crew.",
you_received_an_invitation = "You received an invitation to join a crew.\n~b~/%s to accept.",
invitation_expired = "The invitation expired",
crew_kick_success = "You kicked <C>~b~%s</C>~w~ from your crew.",
first_rank_warning = "The first rank is the 'default' rank.",
you_updated_this = "You updated %s to ~g~<C>%s</C>~w~.",
changes_saved_on = "The changes made on <C>~g~%s</C>~w~ have been saved.",
yes = "yes",
no = "no",
none = "None",
character_id = "Character ID",
server_id = "Server ID",
report = "Report",
rename = "Rename",
trade_with = "Trade",
please_wait_x_before = "~r~Please wait %s seconds before doing that.",
-- cloth
take_outfit = "Buy this outfit",
wardrobe_options = "wardrobe options",
wardrobe = "wardrobe",
manual_options = "manual options",
manual_mode = "manual mode",
save_outfit = "Save this outfit",
variation = "variation",
outfits = "outfits",
cloth_shop = "Cloth shop",
ped_cloth_shop = "Ped cloth shop",
manual_props = "manual props",
manuel = "manual",
new_name = "New name",
outfit_name = "Outfit name",
variations_saved = "~g~Success.~n~~w~Your character variations have been saved.",
equipped_new_outfit = "You equipped your new outfit: ~b~%s",
warning_limit_outfits = "You reached the limit of saved outfits. ~g~(%s)",
saved_new_outfit = "You saved a new outfit: ~b~%s~w~.",
rename_outfit = "Your outfit ~b~%s~w~ has been renamed to ~g~%s~w~.",
delete_outfit = "Your outfit: ~b~%s~w~ has been deleted.",
torso = "Torso",
props = "Props",
top = "Top",
tops = "Tops",
badge = "Badge",
pants = "Pants",
pant = "Pant",
shoes = "Shoes",
bags = "Bags",
undershirt = "undershirt",
neck = "neck",
bracelets = "bracelets",
montres = "watches",
earrings = "earrings",
glasses = "glasses",
hats = "hats",
graphiques = "decorations",
-- health
inconscious = "Unconscious",
doing_something = "Doing something",
time_before_respawn = "Time before respawning",
you_died = "~r~Vous died.",
healing_wounds = "Healing wounds",
already_doing_something = "~r~You are already doing something.",
you_have_been_healed = "~g~You have been healed.",
you_respawned = "~g~You respawned.",
player_too_far_to_interact = "~r~The player you want to interact with is too far from you.",
send_trade_invitation_to = "You sent an invitation to exchange to ~b~%s~w~.\n~b~Wait for the other player to accept it.",
receive_invitation_from = "You received an invitation to exchange from ~b~%s~w~.\n~b~Type ~w~/trade accept %s~b~ to start the trade.",
invalid_command_args = "Invalid command arguments: %s",
start_trade_command_help = "Start a trade with another player",
accept_trade_command_help = "Accept a trade invitation",
deny_trade_command_help = "Deny a trade invitation",
invalid_invitation = "The invitation is invalid or no longer exists",
name_accepted_your_trade_invitation = "~b~%s~w~ accepted your trade invitation",
you_accepted_trade_invitation_of_name = "You accepted the trade invitation of %s",
name_denied_your_trade_invitation = "~b~%s~w~ denied your trade invitation",
you_denied_trade_invitation_of_name = "You denied the trade invitation of %s",
you_already_trading = "You are already trading",
other_already_trading = "The other player is already trading",
other_player_not_enough_money = "~r~The trade failed. The other player did not have enough money.",
you_player_not_enough_money = "~r~The trade failed. You did not have enough money.",
other_player_not_enough_item = "~r~The trade failed. The other player did not have enough of some item.",
you_player_not_enough_item = "~r~The trade failed. You did not have enough of some item.",
success_trade = "~g~The trade has been confirmed.",
fail_trade_other_player = "~r~The trade failed, the other player left.",
trade_other_full_item = "~r~The trade failed, the other player has not enough storage.",
trade_full_for_item = "~r~The trade failed, you do not have enough storage.",
press_e_to_loot_inv = "Press ~INPUT_CONTEXT~ to loot the inventory.",
press_e_to_interact_with = "~HUD_COLOUR_NET_PLAYER27~Press ~INPUT_CONTEXT~ to interact with ~b~%s~HUD_COLOUR_NET_PLAYER27~.",
press_e_to = "Press ~INPUT_CONTEXT~ to ~b~%s~w~.",
press_e_to_open_catalog = "Press ~b~E~w~ to read the ~g~catalog~w~.",
this_person = "this person",
the_shop = "this shop",
you_are_not_allowed_to_do_that = "~HUD_COLOUR_DEGEN_RED~You are not allowed to do that.",
no_weapon = "~r~You do not have any weapon equipped.",
no_need_ammo = "~r~You do not need to use any ammo with this weapon.",
not_right_ammo = "~r~You are not using the right ammo, you need ~b~%s~w~.",
you_used_ammo = "You loaded your ~b~%s~w~ with ~b~x%s~w~ of ~b~%s~w~.",
choose_a_destination = "choose a ~b~destination",
open_your_chest = "open your chest",
no_enough_money = "~r~You can't afford that.",
you_paid = "You paid ~g~$%s~w~ for ~b~%s~w~.",
you_paid_basket = "You paid ~g~$%s~w~ for your basket.",
you_sell_basket = "You received ~g~$%s~w~ for selling ~b~x%s~w~ item(s).",
you_repaired_your_vehicle = "~g~You repaired your vehicle.",
repairing_your_vehicle = "Repairing your vehicle",
wheels_are_fine = "~r~The vehicle wheels are already fine.",
changing_wheel = "Changing the wheel",
you_repaired_the_wheels = "~g~You repaired the vehicle's wheels.",
front_post_ls = "Front post Los Santos",
front_post_ls_2 = "Front post Los Santos 2",
front_post_bc = "Front post Blaine County",
front_post_bc_2 = "Front post Blaine County 2",
main_post_ls = "Safe City Los Santos",
main_post_bc = "Safe City Blaine County",
random_zone = "Random zone (landing)",
this_item_is_equipped = "~r~This item is equipped, remove it from your shortcuts.",
only_in_safezone = "~r~You cannot do that outside a safe-zone.",
-- commerce stuff
feature_gold_only = "This feature is only for ~y~gold members~w~.",
feature_diamond_only = "This feature is only for ~b~diamond members~w~.",
you_turned_into = "You turned into a ~g~%s~w~.",
wait_between_transformation = "~r~Please wait a moment before using the Morph Mode again.",
wait_between = "~r~Please wait a moment before doing that again.",
available_morphs = "Available morphs",
animal_models = "Animal models",
zombie_models = "Zombie models",
success_update_name = "You changed your character's name to ~b~%s~w~.",
success_reset_stats = "~g~You successfuly reset your stats. (Leaderboards will be updated later)",
-- animals
boar = "Boar",
cat = "Cat",
chop = "Rottweiler (Chop)",
rottweiler = "Rottweiler",
cow = "Cow",
coyote = "Coyote",
deer = "Deer",
hen = "Hen",
husky = "Husky",
mtlion = "Lion",
pig = "Pig",
poodle = "Poodle",
pug = "Pug",
rabbit = "Rabbit",
rat = "Rat",
retriever = "Retriever",
shepherd = "Shepherd",
westy = "Westy",
player_id = "ID of the player",
bounty = "Bounty",
reason = "Reason",
id_player_not_found = "~r~No player is binded to this id.",
ammo_dealer = "Ammo dealer",
misc_dealer = "Equipment shop",
veh_dealer = "Vehicle shop",
custom_dealer = "LS Custom",
gun_dealer = "Gun shop",
bounty_created = "You paid ~g~$%s~w~ to create a bounty contract on ~b~%s~w~.",
contract_success = "The bounty you created on ~r~%s~w~ has been sent to ~b~%s~w~.",
a_contract_on_your_head = "~r~You had a bounty on your head. Your killer received the bounty.",
reward_for_contract = "Bounty Hunter! You got rewarded ~g~$%s~w~ for killing ~b~%s~w~.",
hey_can_help_you = "Hey, how can I help you?",
i_want_to_buy_items = "I want to buy items",
i_want_to_sell_items = "I want to sell items",
press_context_or_jump_to_get_up = "Press ~INPUT_CONTEXT~ or ~INPUT_JUMP~ to ~b~get up~w~.",
server_restart_warning = "The server is going to restart..",
auto_restart_in = "Automatic restart in %s seconds.",
not_allowed_create_character = "You are not allowed to create a new character.",
character_not_yours = "This character is not yours.",
character_does_not_exist = "This character does not exist or does not longer exist.",
loading_character = "Loading your character...",
playtime_is = "~b~Your playtime on Extinction:\n~w~%s",
dont_spam = "^1Do not spam!",
babygod_warning = "~b~You left the safe-zone, you are invincible for some time find a safe place!",
-- LS Custom
modifications_classiques = "Classic modifications",
modifications_custom = "Special modifications",
modifications_benny = "Benny's modifications",
paint = "paint",
custom_your_car = "Custom your car",
wheels_modifications = "Wheels modifications",
performances = "Performances",
neons = "Neons",
extra = "Extra",
klaxon = "Horn",
teinte_fenetre = "Windows tint",
phares_xenons = "Xenon headlights",
modele_plaque = "Plate model",
livery = "Livery",
headlight_color = "Headlights color",
wheel_type = "Wheel type",
primary_wheel_type = "Primary wheel type",
back_wheel_type = "Back wheel type",
wheel_color = "Wheel color",
tire_smoke = "Tire smoke",
custom_color = "Custom color",
custom_wheel = "Custom wheel",
custom_back_wheel = "Custom back wheel",
suspension = "Suspension",
transmission = "Transmission",
moteur = "Engine",
frein = "Brake",
turbo = "Turbo",
primary_color = "Primary color",
secondary_color = "Secondary color",
interior_color = "Interior color",
dashboard_color = "Dashboard color",
color_effect = "Color effect",
left_neon = "Left neon",
right_neon = "Right neon",
front_neon = "Front neon",
back_neon = "Back neon",
aileron = "Spoiler",
pc_front = "Front bumper",
pc_back = "Rear bumper",
carroserie = "Side skirt",
exhaust = "Exhaust",
cadre = "Frame",
calandre = "Grille",
capot = "Hood",
gb_left = "Left fender",
gb_right = "Right fender",
roof = "Roof",
plate_support = "Plate holders",
front_plate = "Front plate",
interior_style = "Interior style",
figurine = "Figurine",
motif_dashboard = "Dashboard style",
cadran = "Dial design",
haut_parleur_portes = "Speaker doors",
motif_sieges = "Seat style",
volant = "Steering wheel",
levier = "Shifter leavers",
logo_custom = "Logo",
ice = "ICE",
haut_parleur_coffre = "Speaker back doors",
hydrolique = "Hydraulics",
moteur = "Engine",
filtres_air = "Air filter",
entretoises = "Spacers",
arc_couverture = "Arch",
antenne = "Antenna",
motif_exterieur = "Exterior style",
reservoir = "Tank",
window = "Window",
style = "Style",
default = "Default",
type = "Type",
normal = "Normal",
black = "Black",
black_smoke = "Black smoke",
simple_smoke = "Simple smoke",
stock = "Stock",
limo = "Limousine",
sa_black = "San Andreas black",
sa_blue = "San Andreas blue",
sa_white = "San Andreas white",
simple_white = "Simple white",
ny_white = "North Yankton white",
race = "Race",
sport = "Sport",
stock = "Stock",
street = "Street",
discount = "Discount",
select_your_car = "Select your car",
select_car_custom = "Select the vehicle you want to customize. The number between arrows is the item key.",
loading_vehicle = "Creating vehicle",
invalid_vehicle = "~r~Invalid vehicle entity.",
invalid_vehicle_please_spawn = "~r~Invalid vehicle item. Please spawn it one time before trying to do anything.",
free_take_and_validate = "Everything is free. Take what you want and confirm!",
car_custom_saved = "~g~You car modifications have been saved.",
-- Character creation
character_creation = "Character creation",
confirm = "confirm",
start_playing = "Start playing",
appearance = "appearance",
character_list = "character list",
face_features = "face features",
parents = "parents",
parent = "parent",
mix = "mix",
skin = "skin",
desc_mix = "Select if the shape of your face is more influenced by your father / mother.",
desc_skin = "Select if your skin is more influenced by your father / mother.",
identity = "identity",
player_name = "player name",
new_character = "new character",
warning_headblend = "~r~You have not selected your character's parents.",
warning_overlays = "~r~You have not selected hairs, eyebrows or beard.",
warning_identity = "~r~Warning.~n~~w~You forgot to fill the identity tab.",
-- kits
kit_does_not_exist = "~r~This kit does not exist.",
kit_needs_rank = "You do not have the ~r~%s~w~ rank.",
wait_before_using_kit = "Please wait ~r~%s~w~ before using this kit.",
received_kit = "You received your kit ~b~%s~w~.",
no_kit = "You do not have any kit.",
unable_to_find_booster = "Unable to find a booster with this id.",
wait_already_player_boost = "Please wait a moment before using this booster. There is already one player booster active.",
wait_already_crew_boost = "Please wait a moment before using this booster. There is already one crew booster active.",
wait_already_server_boost = "Please wait a moment before using this booster. There is already one server booster active.",
booster_activated = "Booster activated for ~g~%s minutes~w~! ~b~XP +%s%%",
server_booster_activated = "~b~%s~w~ activated a server booster for ~g~%s minutes~z~! ~b~XP +%s%%",
crew_booster_activated = "~b~%s~w~ activated a crew booster for ~g~%s minutes~z~! ~b~XP +%s%%",
no_booster = "You do not have any booster.",
rank_expired = "~r~Your supporter role expired.",
supporter_role = "~g~Supporter role:~w~ %s",
no_rank_warning = "You do not have any supporter role.\n~r~If you've purchased something link your fivem account.",
no_fivem_id = "Your FiveM is not linked with the game.\n~r~Verify that you have a FiveM account and that it is linked to the game.",
no_queue_warning = "You do not have any package in queue.\n~r~Wait a moment or try /getRank if you're looking for your rank.",
package_sync_success = "~g~Your packages have correctly been synced, enjoy!\n~w~Useful commands: /getRank, /booster",
level_required = "You need to be level %s.",
rank_required = "You need to have the %s rank.",
level_required_2 = "~r~You need to be level %s.",
updated_deathmessage = "~g~You updated your death message.",
updated_deatheffect = "~g~You updated your kill effect.",
use = "Use",
test = "Test",
-- zombie
you_bitten = "~r~You have been bitten.",
infection_rate = "Infection rate: ~r~%s%%",
-- ranks
thug = "Thug",
hustler = "Hustler",
soldier = "Soldier",
trigger = "Trigger",
enforcer = "Enforcer",
facilitator = "Facilitator",
public_enemy = "Public Enemy",
shot_caller = "Shot Caller",
street_boss = "Street Boss",
kingpin = "Kingpin",
-- Tattoo
tattoo = "tattoo",
tattoos = "tattoos",
torso = "torso",
head = "head",
left_arm = "left arm",
right_arm = "right arm",
left_leg = "left leg",
right_leg = "right leg",
unknown = "unknown",
other = "other",
remove_tattoo = "Remove all tattoos",
-- Hairdress
haircuts = "Haircuts",
makeup = "Make up",
face = "Face",
eyebrows = "Eyebrows",
facial_hair = "Facial hair",
body_hair = "Body hair",
barber_shop = "Barber shop",
face_makeup = "Face make up",
lipstick = "Lipstick",
face_foundation = "Face foundation",
skin_blemishes = "Skin blemishes",
skin_ageing = "Skin ageing",
moles_freckles = "Moles & Freckles",
sun_damage = "Skin damage",
skin_complexion = "Skin complexion",
body_blemishes = "Body blemishes",
body_blemishes_2 = "Body blemishes 2",
opacity = "Alpha",
variations = "Variations",
filter = "Filter",
eyes_color = "Eyes color",
-- Mask
masks = "Masks",
-- Items
money = "Money",
-- Ammo
["9mm"] = "9mm",
["300_mag"] = ".300 Magnum",
["7_62mm"] = "7.62mm",
["calibre_12"] = "Calibre 12",
["45_acp"] = ".45 ACP",
["5_56mm"] = "5.56mm",
-- Food
["fish_1"] = "Largemouth Bass",
["fish_2"] = "Rainbow Trout",
["fish_3"] = "Kokanee",
["fish_4"] = "Arctic Grayling",
["fish_5"] = "Rock Bass",
["fish_6"] = "Smallmouth Bass",
["fish_7"] = "Paddlefish",
["fish_8"] = "Bull Trout",
["fish_9"] = "Lake Trout",
["fish_10"] = "Chinook",
["fish_11"] = "Pallid Sturgeon",
["fish_12"] = "Salmon",
misc_meat = "Raw meat",
rabbit_meat = "Raw rabbit",
lion_meat = "Raw lion",
rare_plume = "Rare feather",
dog_meat = "Raw dog",
cat_meat = "Raw cat",
rare_fish = "Rare fish",
mask = "Mask",
malette = "Suitcase",
malette_metal = "Metal suitcase",
ciseaux = "Scissors",
clean_kit = "Clean kit",
fishing_rod = "Fishing rod",
meuble = "Furniture",
tissu = "Cloth",
accessory = "Accessory",
radio = "Radio",
recyclor = "Recycler",
medkit = "Medkit",
kevlar = "Kevlar",
gps = "GPS",
repair_tool = "Repair kit",
jvn = "JVN",
engine_veh = "Engine",
wheel_veh = "Wheel",
vetement = "Top",
bloc_note = "Notepad",
paint_spray = "Paint spray",
spike = "Spike strip",
paracetamol = "Paracetamol",
bandage = "Bandage",
gaz_mask = "Gaz mask",
filter = "Filter",
tattoo_tool = "Tattoo tool",
drug_med = "Drug",
antizin = "Antizin",
pickup_spikestrip = "pickup the spike strip",
you_dropped_spikestrip = "You dropped a ~g~spike strip~w~.",
you_pickup_spikestrip = "You picked up a ~g~spike strip~w~.",
you_have_been_killed_by = "You have been killed by ~r~%s (%s)",
kill_notif = "~m~Killed",
you_killed = "You killed ~r~%s~w~",
already_used_reset_only = "~r~You already have reset your character.\n~w~Only %s~w~ members can redo their character more than one time.",
already_used_reset_only2 = "~r~You already did that.\n~w~Only %s~w~ members can do that more than one time.",
hud_options = "HUD options",
advanced_hud = "Display advanced HUD",
players = "Players",
health = "Health",
player_menu = "Player menu",
you_are_now_zombie = "~r~You are now a zombie.",
my_weapons = "my weapons",
customize_weapons = "customize my weapon",
weapon_skin = "Tint",
-- camo
skin_classic = "Default",
skin_green = "Green",
skin_yellow = "Yellow",
skin_pink = "Pink",
skin_gold = "Gold",
skin_blue = "Blue",
skin_orange = "Orange",
weapon_katana = "Katana",
-- The field below does not need to be translated.
weapon_advancedrifle = GetLabelText("WT_RIFLE_ADV"),
weapon_appistol = GetLabelText("WT_PIST_AP"),
weapon_assaultrifle = GetLabelText("WT_RIFLE_ASL"),
weapon_assaultrifle_mk2 = GetLabelText("WT_RIFLE_ASL2"),
weapon_assaultshotgun = GetLabelText("WT_SG_ASL"),
weapon_assaultsmg = GetLabelText("WT_SMG_ASL"),
weapon_autoshotgun = GetLabelText("WT_AUTOSHGN"),
weapon_bat = GetLabelText("WT_BAT"),
weapon_ball = GetLabelText("WT_BALL"),
weapon_battleaxe = GetLabelText("WT_BATTLEAXE"),
weapon_bottle = GetLabelText("WT_BOTTLE"),
weapon_bullpuprifle = GetLabelText("WT_BULLRIFLE"),
weapon_bullpuprifle_mk2 = GetLabelText("WT_BULLRIFLE2"),
weapon_bullpupshotgun = GetLabelText("WT_SG_BLP"),
weapon_bzgas = GetLabelText("WT_BZGAS"),
weapon_carbinerifle = GetLabelText("WT_RIFLE_CBN"),
weapon_carbinerifle_mk2 = GetLabelText("WT_RIFLE_CBN2"),
weapon_combatmg = "M60",
weapon_combatmg_mk2 = "M60 MK II",
weapon_combatpdw = GetLabelText("WT_COMBATPDW"),
weapon_combatpistol = GetLabelText("WT_PIST_CBT"),
weapon_compactlauncher = GetLabelText("WT_CMPGL"),
weapon_compactrifle = GetLabelText("WT_CMPRIFLE"),
weapon_crowbar = GetLabelText("WT_CROWBAR"),
weapon_dagger = "Dagger",
weapon_dbshotgun = GetLabelText("WT_DBSHGN"),
weapon_doubleaction = GetLabelText("WT_REV_DA"),
weapon_fireextinguisher = GetLabelText("WT_FIRE"),
weapon_firework = GetLabelText("WT_FWRKLNCHR"),
weapon_flare = GetLabelText("WT_FLARE"),
weapon_flaregun = GetLabelText("WT_FLAREGUN"),
weapon_flashlight = GetLabelText("WT_FLASHLIGHT"),
weapon_golfclub = GetLabelText("WT_GOLFCLUB"),
weapon_grenade = GetLabelText("WT_GNADE"),
weapon_grenadelauncher = GetLabelText("WT_GL"),
weapon_gusenberg = GetLabelText("WT_GUSENBERG"),
weapon_hammer = GetLabelText("WT_HAMMER"),
weapon_hatchet = GetLabelText("WT_HATCHET"),
weapon_heavypistol = GetLabelText("WT_HEAVYPSTL"),
weapon_heavyshotgun = GetLabelText("WT_HVYSHOT"),
weapon_heavysniper = "AWP",
weapon_heavysniper_mk2 = "AWP MK II",
weapon_hominglauncher = GetLabelText("WT_HOMLNCH"),
weapon_knife = GetLabelText("WT_KNIFE"),
weapon_knuckle = GetLabelText("WT_KNUCKLE"),
weapon_machete = GetLabelText("WT_MACHETE"),
weapon_machinepistol = GetLabelText("WT_MCHPIST"),
weapon_marksmanpistol = GetLabelText("WT_MKPISTOL"),
weapon_marksmanrifle = GetLabelText("WT_MKRIFLE"),
weapon_marksmanrifle_mk2 = GetLabelText("WT_MKRIFLE2"),
weapon_mg = GetLabelText("WT_MG"),
weapon_microsmg = GetLabelText("WT_SMG_MCR"),
weapon_minigun = GetLabelText("WT_MINIGUN"),
weapon_minismg = GetLabelText("WT_MINISMG"),
weapon_molotov = GetLabelText("WT_MOLOTOV"),
weapon_musket = GetLabelText("WT_MUSKET"),
weapon_nightstick = GetLabelText("WT_NGTSTK"),
weapon_petrolcan = GetLabelText("WT_PETROL"),
weapon_pipebomb = GetLabelText("WT_PIPEBOMB"),
weapon_pistol = GetLabelText("WT_PIST"),
weapon_pistol50 = GetLabelText("WT_PIST_50"),
weapon_pistol_mk2 = GetLabelText("WT_PIST2"),
weapon_poolcue = GetLabelText("WT_POOLCUE"),
weapon_proxmine = GetLabelText("WT_PRXMINE"),
weapon_pumpshotgun = GetLabelText("WT_SG_PMP"),
weapon_pumpshotgun_mk2 = GetLabelText("WT_SG_PMP2"),
weapon_railgun = GetLabelText("WT_RAILGUN"),
weapon_revolver = GetLabelText("WT_REVOLVER"),
weapon_revolver_mk2 = GetLabelText("WT_REVOLVER2"),
weapon_rpg = GetLabelText("WT_RPG"),
weapon_sawnoffshotgun = GetLabelText("WT_SG_SOF"),
weapon_smg = GetLabelText("WT_SMG"),
weapon_smg_mk2 = GetLabelText("WT_SMG2"),
weapon_smokegrenade = GetLabelText("WT_GNADE_SMK"),
weapon_sniperrifle = GetLabelText("WT_SNIP_RIF"),
weapon_snowball = GetLabelText("WT_SNWBALL"),
weapon_snspistol = GetLabelText("WT_SNSPISTOL"),
weapon_snspistol_mk2 = GetLabelText("WT_SNSPISTOL2"),
weapon_specialcarbine = GetLabelText("WT_RIFLE_SCBN"),
weapon_specialcarbine_mk2 = GetLabelText("WT_SPCARBINE2"),
weapon_stickybomb = GetLabelText("WT_GNADE_STK"),
weapon_stungun = GetLabelText("WT_STUN"),
weapon_switchblade = GetLabelText("WT_SWBLADE"),
weapon_unarmed = GetLabelText("WT_UNARMED"),
weapon_vintagepistol = GetLabelText("WT_VPISTOL"),
weapon_wrench = GetLabelText("WT_WRENCH"),
weapon_raypistol = GetLabelText("WT_RAYPISTOL"),
weapon_raycarbine = GetLabelText("WT_RAYCARBINE"),
weapon_rayminigun = GetLabelText("WT_RAYMINIGUN"),
weapon_stone_hatchet = GetLabelText("WT_SHATCHET"),
bifta = "Bifta",
speeder = "Speeder",
kalahari = "Kalahari",
paradise = "Paradise",
ninef = "9F",
ninef2 = "9F Cabrio",
asea = "Asea",
boxville2 = "Boxville",
bulldozer = "Dozer",
cheetah = "Cheetah",
cogcabrio = "Cognoscenti Cabrio",
dubsta = "Dubsta",
dubsta2 = "Dubsta",
emperor = "Emperor",
entityxf = "Entity XF",
firetruk = "Fire Truck",
fq2 = "FQ 2",
infernus = "Infernus",
jackal = "Jackal",
journey = "Journey",
jb700 = "JB 700",
oracle = "Oracle XS",
patriot = "Patriot",
radi = "Radius",
romero = "Romero Hearse",
stinger = "Stinger",
stockade = "Stockade",
superd = "Super Diamond",
tailgater = "Tailgater",
tornado = "Tornado",
utillitruck = "Utility Truck",
utillitruck2 = "Utility Truck",
voodoo2 = "Voodoo",
scorcher = "Scorcher",
policeb = "Police Bike",
hexer = "Hexer",
buzzard = "Buzzard Attack Chopper",
polmav = "Police Maverick",
cuban800 = "Cuban 800",
jet = "Jet",
titan = "Titan",
squalo = "Squalo",
marquis = "Marquis",
freightcar = "Freight Train",
freight = "Freight Train",
freightcont1 = "Freight Train",
freightcont2 = "Freight Train",
freightgrain = "Freight Train",
tankercar = "Freight Train",
metrotrain = "Freight Train",
trailers = "Trailer",
tanker = "Trailer",
trailerlogs = "Trailer",
tr2 = "Trailer",
tr3 = "Trailer",
picador = "Picador",
policeold1 = "Police Rancher",
policeold2 = "Police Roadcruiser",
asterope = "Asterope",
banshee = "Banshee",
buffalo = "Buffalo",
bullet = "Bullet",
f620 = "F620",
handler = "Dock Handler",
gburrito = "Gang Burrito",
tractor2 = "Fieldmaster",
penumbra = "Penumbra",
submersible = "Submersible",
docktug = "Docktug",
sultan = "Sultan",
dilettante = "Dilettante",
futo = "Futo",
habanero = "Habanero",
intruder = "Intruder",
landstalker = "Landstalker",
minivan = "Minivan",
schafter2 = "Schafter",
serrano = "Serrano",
manana = "Manana",
seashark2 = "Seashark",
youga = "Youga",
premier = "Premier",
speedo = "Speedo",
washington = "Washington",
annihilator = "Annihilator",
blazer2 = "Blazer Lifeguard",
cruiser = "Cruiser",
raketrailer = "Trailer",
cargoplane = "Cargo Plane",
dump = "Dump",
pony = "Pony",
lguard = "Lifeguard",
sentinel = "Sentinel XS",
sentinel2 = "Sentinel",
comet2 = "Comet",
stingergt = "Stinger GT",
ingot = "Ingot",
peyote = "Peyote",
stanier = "Stanier",
stratum = "Stratum",
akuma = "Akuma",
bati = "Bati 801",
bati2 = "Bati 801RR",
pcj = "PCJ 600",
dloader = "Duneloader",
prairie = "Prairie",
duster = "Duster",
issi2 = "Issi",
trailers2 = "Trailer",
tvtrailer = "Trailer",
cutter = "Cutter",
trflat = "Trailer",
tornado2 = "Tornado",
tornado3 = "Tornado",
tribike = "Whippet Race Bike",
tribike2 = "Endurex Race Bike",
tribike3 = "Tri-Cycles Race Bike",
burrito2 = "Bugstars Burrito",
dune = "Dune Buggy",
feltzer2 = "Feltzer",
blista = "Blista",
bagger = "Bagger",
voltic = "Voltic",
fugitive = "Fugitive",
felon = "Felon",
pbus = "Police Prison Bus",
armytrailer = "Army Trailer",
policet = "Police Transporter",
speedo2 = "Clown Van",
felon2 = "Felon GT",
BMX = "BMX",
exemplar = "Exemplar",
fusilade = "Fusilade",
boattrailer = "Boat Trailer",
cavalcade = "Cavalcade",
surge = "Surge",
buccaneer = "Buccaneer",
nemesis = "Nemesis",
armytanker = "Army Trailer",
rocoto = "Rocoto",
stockade3 = "Stockade",
rebel2 = "Rebel",
schwarzer = "Schwartzer",
scrap = "Scrap Truck",
sandking = "Sandking XL",
sandking2 = "Sandking SWB",
carbonizzare = "Carbonizzare",
rumpo = "Rumpo",
primo = "Primo",
sabregt = "Sabre Turbo",
regina = "Regina",
jetmax = "Jetmax",
tropic = "Tropic",
vigero = "Vigero",
police2 = "Police Cruiser",
stretch = "Stretch",
dinghy2 = "Dinghy",
boxville = "Boxville",
luxor = "Luxor",
police3 = "Police Cruiser",
trailers3 = "Trailer",
double = "Double-T",
TRACTOR = "Tractor",
Biff = "Biff",
Dominator = "Dominator",
Hauler = "Hauler",
Packer = "Packer",
Phoenix = "Phoenix",
Sadler = "Sadler",
sadler2 = "Sadler",
daemon = "Daemon",
coach = "Dashound",
tornado4 = "Tornado",
ratloader = "Rat-Loader",
RapidGT = "Rapid GT",
RapidGT2 = "Rapid GT",
Surano = "Surano",
BfInjection = "Injection",
Bison2 = "Bison",
Bison3 = "Bison",
Bodhi2 = "Bodhi",
Burrito = "Burrito",
Burrito4 = "Burrito",
Rubble = "Rubble",
TipTruck = "Tipper",
TipTruck2 = "Tipper",
Mixer = "Mixer",
Mixer2 = "Mixer",
Phantom = "Phantom",
Pounder = "Pounder",
Buzzard2 = "Buzzard",
Frogger = "Frogger",
Airtug = "Airtug",
Benson = "Benson",
Ripley = "Ripley",
AMBULANCE = "Ambulance",
FORKLIFT = "Forklift",
GRANGER = "Granger",
pRanger = "Park Ranger",
trailersmall = "Trailer",
BARRACKS = "Barracks",
BARRACKS2 = "Barracks Semi",
CRUSADER = "Crusader",
Utillitruck3 = "Utility Truck",
SHERIFF = "Sheriff Cruiser",
monroe = "Monroe",
Mule = "Mule",
Taco = "Taco Van",
Trash = "Trashmaster",
Dinghy = "Dinghy",
blazer = "Blazer",
maverick = "Maverick",
Cargobob = "Cargobob",
Cargobob3 = "Cargobob",
Stunt = "Mallard",
emperor3 = "Emperor",
caddy = "Caddy",
Emperor2 = "Emperor",
Surfer2 = "Surfer",
TOWTRUCK = "Towtruck",
Towtruck2 = "Towtruck",
Baller = "Baller",
SURFER = "Surfer",
mammatus = "Mammatus",
RIOT = "Police Riot",
velum = "Velum",
rancherxl2 = "Rancher XL",
Caddy2 = "Caddy",
Airbus = "Airport Bus",
Rentalbus = "Rental Shuttle Bus",
gresley = "Gresley",
zion = "Zion",
zion2 = "Zion Cabrio",
ruffian = "Ruffian",
adder = "Adder",
vacca = "Vacca",
boxville3 = "Boxville",
Suntrap = "Suntrap",
bobcatXL = "Bobcat XL",
burrito3 = "Burrito",
police4 = "Unmarked Cruiser",
cablecar = "Cable Car",
BLIMP = "Atomic Blimp",
BUS = "Bus",
dilettante2 = "Dilettante",
Rebel = "Rusty Rebel",
skylift = "Skylift",
Shamal = "Shamal",
graintrailer = "Graintrailer",
Vader = "Vader",
sheriff2 = "Sheriff SUV",
baletrailer = "Baletrailer",
TOURBUS = "Tourbus",
fixter = "Fixter",
oracle2 = "Oracle",
baller2 = "Baller",
buffalo2 = "Buffalo S",
cavalcade2 = "Cavalcade",
coquette = "Coquette",
tractor3 = "Fieldmaster",
Gauntlet = "Gauntlet",
MESA = "Mesa",
police = "Police Cruiser",
cargobob2 = "Cargobob",
taxi = "Taxi",
Sanchez = "Sanchez (livery)",
FLATBED = "Flatbed",
Seminole = "Seminole",
Mower = "Lawn Mower",
Ztype = "Z-Type",
Predator = "Police Predator",
rumpo2 = "Rumpo",
pony2 = "Pony",
BjXL = "BeeJay XL",
CAMPER = "Camper",
RancherXL = "Rancher XL",
faggio2 = "Faggio",
Lazer = "P-996 LAZER",
seashark = "Seashark",
bison = "Bison",
FBI = "FIB",
FBI2 = "FIB",
Mule2 = "Mule",
RHINO = "Rhino Tank",
burrito5 = "Burrito",
asea2 = "Asea",
mesa2 = "Mesa",
MESA3 = "Mesa",
frogger2 = "Frogger",
hotknife = "Hotknife",
elegy2 = "Elegy RH8",
khamelion = "Khamelion",
carbonrs = "Carbon RS",
dune2 = "Space Docker",
armytrailer2 = "Army Trailer",
tr4 = "Trailer",
blazer3 = "Hot Rod Blazer",
sanchez2 = "Sanchez",
submersible2 = "Kraken",
dodo = "Dodo",
marshall = "Marshall",
BLIMP2 = "Xero Blimp",
dukes = "Dukes",
dukes2 = "Duke O'Death",
buffalo3 = "Sprunk Buffalo",
dominator2 = "Pisswasser Dominator",
gauntlet2 = "Redwood Gauntlet",
stalion = "Stallion",
stalion2 = "Burger Shot Stallion",
blista2 = "Blista Compact",
blista3 = "Go Go Monkey Blista",
gargoyle = "Gargoyle",
omnis = "Omnis",
sheava = "ETR1",
tyrus = "Tyrus",
le7b = "RE-7B",
lynx = "Lynx",
tropos = "Tropos Rallye",