-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen.lua
1338 lines (1316 loc) · 64.8 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
Locales ['en'] = {
['cloakroom'] = 'Umkleide',
['job_wear'] = 'Arbeitskleidung',
['citizen_wear'] = 'Zivilkleidung',
['vehiclespawner'] = 'Wähle einen LKW',
['already_have_truck'] = 'Du hast bereits einen LKW bekommen!',
['collection'] = 'Drücke ~INPUT_PICKUP~ um die Luke zu öffnen',
['return_depot'] = 'Fahr zurück zum Depot',
['blip_job'] = ' Logistics', --'Garbage company',
['blip_delivery'] = ' Logistics : Pick-up Point', --'Garbage company : Delivery',
['blip_goal'] = ' Logistics : Return Point', --'Garbage company : Delivery point',
['cancel_mission'] = 'Drücke ~INPUT_PICKUP~ um den Job zu beenden',
['collect_bags'] = 'Drücke ~INPUT_PICKUP~ um einen Müllsack zu nehmen (%s übrig)',
['not_near_truck'] = 'Es ist kein LKW in der nähe zum reinwerfen',
['need_work_truck'] = 'Du musst in einem LKW sitzen zum arbeiten!',
['toss_bag'] = 'Drücke ~INPUT_PICKUP~ um den Sack in den LKW zu werfen',
['drive_to_collection'] = 'Fahr zur Abholstelle',
['no_trash_aviable'] = 'Es ist kein Müll mehr hier in der Umgebung',
-- PANIDBUTTON
["MenuTitle"] = "Panic Button",
["ConfirmPanicButton"] = "Auslösen",
["PanicButtonUsed"] = "Es wurde ein Panicbutton ausgelöst!",
["PanicButton"] = "Panic Button",
["NeedItem"] = "Du benötigst einen Panicbutton!",
["PanicButtonWait"] = "Du musst warten, bevor du den Panic Button erneut verwenden kannst!",
-- PANIDBUTTON
-- Givecar
['gived_car'] = 'Fahrzeug %s mit dem Nummernschild %s wurde in %s\'s Garage gestellt.',
['received_car'] = 'Dein Fahrzeug mit dem Nummernschild %s wurde in Deine Garage gestellt.',
['del_car'] = 'Fahrzeug mit dem Kennzeichen %s gelöscht.',
['none_plate'] = 'Nummernschild Angabe fehlt.',
['unknown_car'] = 'Unbekanntes Fahrzeug',
['plate_already_have'] = 'Nummernschild bereits vergeben.',
-- Givecar
['valid_purchase'] = 'Einkauf bestätigen?',
['yes'] = 'ja',
['no'] = 'nein',
['helmet'] = 'helmet / Hat',
['glasses'] = 'glasses',
['mask'] = 'mask',
['ears'] = 'ears accessories',
['shop'] = '%s shop',
['set_unset'] = 'put on / Take off',
['not_enough_money'] = 'du hast nicht genug Geld',
['press_access'] = 'Drücke E um das Menü zu öffnen',
['accessories_blip'] = 'accessories',
['barber_blip'] = 'Friseur',
['no_ears'] = 'you do not have ears accessories',
['no_glasses'] = 'you do not have glasses',
['no_helmet'] = 'you do not have a helmet',
['no_mask'] = 'you do not have a mask',
['you_paid'] = 'du bezahlst €%s',
['cloakroom'] = 'Umkleide',
['ems_clothes_civil'] = 'Zivil',
['ems_clothes_ems'] = 'Uniform',
['ambulance'] = 'Rettungsdienst',
['helicopter_prompt'] = 'Drücke ~INPUT_CONTEXT~ um auf das Helikopter-Menü zuzugreifen.',
['garage_prompt'] = 'Drücke ~INPUT_CONTEXT~ um auf das Fahrzeug-Menü zuzugreifen.',
['garage_title'] = 'Fahrzeugmenü',
['garage_stored'] = 'gelagert',
['garage_notstored'] = 'nicht in der Garage',
['garage_storing'] = 'Wir versuchen das Fahrzeug einzulagern. Bitte stelle sicher, dass sich kein Spieler in der Nähe des Fahrzeugs befindet.',
['garage_has_stored'] = 'Das Fahrzeug wurde in deiner Garage eingelagert.',
['garage_has_notstored'] = 'Es wurde kein Fahrzeug in der Nähe gefunden, dass dir gehört.',
['garage_notavailable'] = 'Dein Fahrzeug ist nicht in der Garage.',
['garage_blocked'] = 'Es existieren keine verfügbaren Spawnpoints!',
['garage_empty'] = 'Du hast keine Fahrzeuge in deiner Garage.',
['garage_released'] = 'Dein Fahrzeug wurde aus der Garage gefahren.',
['garage_store_nearby'] = 'Es sind keine Fahrzeuge in der Nähe.',
['garage_storeditem'] = 'Öffne Garage',
['garage_storeitem'] = 'Fahrzeug in der Garage einlagern',
['garage_buyitem'] = 'Fahrzeug-Shop',
['shop_item'] = '€%s',
['vehicleshop_title'] = 'Fahrzeug-Shop',
['vehicleshop_confirm'] = 'Du möchstest dieses Fahrzeug kaufen?',
['vehicleshop_bought'] = 'Du hast dir einen %s für €%s gekauft!',
['vehicleshop_money'] = 'Du kannst dir dieses Fahrzeug nicht leisten!',
['vehicleshop_awaiting_model'] = 'Dieses Fahrzeug LÄDT bitte warte',
['confirm_no'] = 'Nein',
['confirm_yes'] = 'Ja',
['revive_inprogress'] = 'Eine Wiederbelebung findet statt!',
['revive_complete'] = 'Du hast %s wiederbelebt',
['revive_complete_award'] = 'Du hast %s wiederbelebt und dabei €%s erhalten!',
['revive_fail_offline'] = 'Dieser Spieler ist nicht länger online',
['heal_inprogress'] = 'Du heilst!',
['heal_complete'] = 'yDu hast %s geheilt!',
['no_players'] = 'Keine Spieler in der Nähe',
['player_not_unconscious'] = 'Diese Spieler ist nicht bewusstlos!',
['player_not_conscious'] = 'Dieser Spieler ist nicht bei Bewusstsein!',
['boss_actions'] = 'Chef-Aktionen',
['invalid_amount'] = 'Ungültige Menge',
['actions_prompt'] = 'Drücke ~INPUT_CONTEXT~ um das Rettungsdienst-Menü zu öffnen.',
['deposit_amount'] = 'Menge deponieren',
['money_withdraw'] = 'Menge abheben',
['fast_travel'] = 'Drücke ~INPUT_CONTEXT~ zu schnellreisen.',
['open_pharmacy'] = 'Drücke ~INPUT_CONTEXT~ um die Apotheke zu öffnen.',
['pharmacy_menu_title'] = 'Apotheke',
['pharmacy_take'] = 'Nimm <span style="color:blue;">%s</span>',
['medikit'] = 'Medikit',
['bandage'] = 'Verbände',
['max_item'] = 'Du trägst bereits genug.',
['ems_menu'] = 'Rettungsdienst-Menü',
['ems_menu_title'] = 'Rettungsdienst-Menü',
['ems_menu_revive'] = 'Spieler wiederbeleben',
['ems_menu_putincar'] = 'In Fahrzeug stecken',
['ems_menu_small'] = 'Kleine Wunden behandeln',
['ems_menu_big'] = 'Ernsthafte Verletzungen behandeln',
['alert_ambulance'] = 'Rettungsdienst alarmieren',
['respawn_available_in'] = 'Respawn in %s Minuten %s Sekunden verfügbar',
['respawn_bleedout_in'] = 'Du wirst in %s Minuten %s Sekunden ausbluten\n',
['respawn_bleedout_prompt'] = 'Drücke [E] um zu respawnen',
['respawn_bleedout_fine'] = 'Drücke [E] um für €%s zu respawnen',
['respawn_bleedout_fine_msg'] = 'Du hast €%s bezahlt, um zu respawnen.',
['distress_send'] = 'Drücke [G] um ein Notsignal zu senden',
['distress_sent'] = 'Notsignal wurde an den Rettungsdienst übermittelt!',
['revive_help'] = 'Belebe einen Spieler wieder',
['used_medikit'] = 'Du hast ein Medikit verwendet',
['used_bandage'] = 'Du hast einen Verband verwendet',
['not_enough_medikit'] = 'Du hast keine Medikits.',
['not_enough_bandage'] = 'Du hast keine Verbände.',
['healed'] = 'Du wurdest behandelt.',
['blip_hospital'] = 'Krankenhaus',
['blip_dead'] = 'Bewusstloser Spieler',
['invoices'] = 'Rechnungen',
['invoices_item'] = '€%s',
['received_invoice'] = 'Sie haben eine Rechnung erhalten.',
['paid_invoice'] = 'Sie bezahlen eine Rechnung von €%s.',
['no_invoices'] = 'Sie haben keine offenen Rechnungen.',
['received_payment'] = 'Sie erhalten eine Zahlung von €%s.',
['player_not_online'] = 'Die Person ist nicht erreichbar.',
['no_money'] = 'Sie haben nicht genug Geld, um diese Rechnung zu bezahlen.',
['target_no_money'] = 'Die Person kann die Rechnung nicht bezahlen.',
['keymap_showbills'] = 'Rechnungen anzeigen',
['valid_this_purchase'] = 'einkauf bestätigen?',
['press_menu'] = 'Drücke E um das Menü zu öffnen',
['clothes'] = 'kleidung',
['save_in_dressing'] = 'Willst du das Outfit speichern?',
['name_outfit'] = 'name des outfits?',
['saved_outfit'] = 'Erfolgreich gespeichert',
['by_default'] = 'Standard',
['installed'] = 'installed',
['already_own'] = 'Sie besitzen bereits: %s',
['purchased'] = 'Du hast diese Mod gekauft!',
['press_custom'] = 'Drücke ~INPUT_PICKUP~ um dein Fahrzeug auf zu Tunen',
['level'] = 'level %s',
['neon'] = 'Neon',
['blip_name'] = 'Tuning',
['black'] = 'black',
['graphite'] = 'graphite',
['black_metallic'] = 'black Metallic',
['caststeel'] = 'cast Steel',
['black_anth'] = 'black Anthracite',
['matteblack'] = 'matte Black',
['darknight'] = 'dark Night',
['deepblack'] = 'deep Black',
['oil'] = 'oil',
['carbon'] = 'carbon',
['white'] = 'white',
['vanilla'] = 'vanilla',
['creme'] = 'creme',
['polarwhite'] = 'polar White',
['beige'] = 'beige',
['mattewhite'] = 'matte White',
['snow'] = 'snow',
['cotton'] = 'cotton',
['alabaster'] = 'alabaster',
['purewhite'] = 'pure White',
['grey'] = 'grey',
['silver'] = 'silver',
['metallicgrey'] = 'metallic Grey',
['laminatedsteel'] = 'laminated Steel',
['darkgray'] = 'dark Grey',
['rockygray'] = 'rocky Grey',
['graynight'] = 'gray Night',
['aluminum'] = 'aluminum',
['graymat'] = 'matte Grey',
['lightgrey'] = 'light Grey',
['asphaltgray'] = 'asphalt Grey',
['grayconcrete'] = 'concrete Grey',
['darksilver'] = 'dark Silver',
['magnesite'] = 'magnesite',
['nickel'] = 'nickel',
['zinc'] = 'zinc',
['dolomite'] = 'dolomite',
['bluesilver'] = 'blue Silver',
['titanium'] = 'titanium',
['steelblue'] = 'steel Blue',
['champagne'] = 'champagne',
['grayhunter'] = 'grey Hunter',
['red'] = 'red',
['torino_red'] = 'torino Red',
['poppy'] = 'poppy',
['copper_red'] = 'copper Red',
['cardinal'] = 'cardinal Red',
['brick'] = 'brick Red',
['garnet'] = 'Garnet',
['cabernet'] = 'cabernet Red',
['candy'] = 'candy Red',
['matte_red'] = 'matte Red',
['dark_red'] = 'dark Red',
['red_pulp'] = 'red Pulp',
['bril_red'] = 'brilliant Red',
['pale_red'] = 'pale Red',
['wine_red'] = 'wine Red',
['volcano'] = 'Volcano',
['pink'] = 'pink',
['electricpink'] = 'electric Pink',
['brightpink'] = 'bright Pink',
['salmon'] = 'salmon',
['sugarplum'] = 'sugar Plum',
['blue'] = 'blue',
['topaz'] = 'topaz',
['light_blue'] = 'light Blue',
['galaxy_blue'] = 'galaxy Blue',
['dark_blue'] = 'dark Blue',
['azure'] = 'azure',
['navy_blue'] = 'navy Blue',
['lapis'] = 'lapis Lazuli',
['blue_diamond'] = 'blue Diamond',
['surfer'] = 'surfer',
['pastel_blue'] = 'pastel Blue',
['celeste_blue'] = 'celeste Blue',
['rally_blue'] = 'rally Blue',
['blue_paradise'] = 'blue Paradise',
['blue_night'] = 'blue Night',
['cyan_blue'] = 'cyan Blue',
['cobalt'] = 'cobalt',
['electric_blue'] = 'electric Blue',
['horizon_blue'] = 'horizon Blue',
['metallic_blue'] = 'metallic Blue',
['aquamarine'] = 'aquamarine',
['blue_agathe'] = 'blue Agathe',
['zirconium'] = 'zirconium',
['spinel'] = 'spinel',
['tourmaline'] = 'tourmaline',
['paradise'] = 'paradise',
['bubble_gum'] = 'bubble Gum',
['midnight_blue'] = 'midnight Blue',
['forbidden_blue'] = 'forbidden Blue',
['glacier_blue'] = 'glacier Blue',
['yellow'] = 'yellow',
['wheat'] = 'wheat',
['raceyellow'] = 'race Yellow',
['paleyellow'] = 'pale Yellow',
['lightyellow'] = 'light Yellow',
['green'] = 'green',
['met_dark_green'] = 'metallic Dark Green',
['rally_green'] = 'Rally Green',
['pine_green'] = 'pine Green',
['olive_green'] = 'olive Green',
['light_green'] = 'Light Green',
['lime_green'] = 'lime green',
['forest_green'] = 'forest Green',
['lawn_green'] = 'lawn Green',
['imperial_green'] = 'imperial Green',
['green_bottle'] = 'breen Bottle',
['citrus_green'] = 'citrus Green',
['green_anis'] = 'green Anis',
['khaki'] = 'Khaki',
['army_green'] = 'army Green',
['dark_green'] = 'dark Green',
['hunter_green'] = 'hunter Green',
['matte_foilage_green'] = 'matte Foilage Green',
['orange'] = 'orange',
['tangerine'] = 'Tangerine',
['matteorange'] = 'Matte Orange',
['lightorange'] = 'Light Orange',
['peach'] = 'Peach',
['pumpkin'] = 'Pumpkin',
['orangelambo'] = 'Orange Lambo',
['brown'] = 'brown',
['copper'] = 'Copper',
['lightbrown'] = 'Light Brown',
['darkbrown'] = 'Dark Brown',
['bronze'] = 'Bronze',
['brownmetallic'] = 'Brown Metallic',
['expresso'] = 'Expresso',
['chocolate'] = 'Chocolate',
['terracotta'] = 'Terracotta',
['marble'] = 'Marble',
['sand'] = 'Sand',
['sepia'] = 'Sepia',
['bison'] = 'Bison',
['palm'] = 'Palm',
['caramel'] = 'Caramel',
['rust'] = 'Rust',
['chestnut'] = 'Chestnut',
['hazelnut'] = 'Hazelnut',
['shell'] = 'Shell',
['mahogany'] = 'Mahogany',
['cauldron'] = 'Cauldron',
['blond'] = 'Blond',
['gravel'] = 'Gravel',
['darkearth'] = 'Dark Earth',
['desert'] = 'Desert',
['purple'] = 'purple',
['indigo'] = 'Indigo',
['deeppurple'] = 'Deep Purple',
['darkviolet'] = 'Dark Violet',
['amethyst'] = 'Amethyst',
['mysticalviolet'] = 'Mystic Violet',
['purplemetallic'] = 'Purple Metallic',
['matteviolet'] = 'Matte Violet',
['mattedeeppurple'] = 'Matte Deep Purple',
['chrome'] = 'chrome',
['brushedchrome'] = 'brushed Chrome',
['blackchrome'] = 'black Chrome',
['brushedaluminum'] = 'brushed Aluminum',
['gold'] = 'gold',
['puregold'] = 'pure Gold',
['brushedgold'] = 'brushed Gold',
['lightgold'] = 'light Gold',
['blue_on_white_1'] = 'blau auf weiß 1',
['yellow_on_black'] = 'gelb auf schwarz',
['yellow_blue'] = 'gelb auf blau',
['blue_on_white_2'] = 'blau auf weiß 2',
['blue_on_white_3'] = 'blau auf weiß 3',
['upgrades'] = 'Upgrades',
['engine'] = 'Motor',
['brakes'] = 'bremsen',
['transmission'] = 'Getriebe',
['suspension'] = 'Suspension',
['armor'] = 'Panzerung',
['turbo'] = 'Turbo',
['no_turbo'] = 'kein Turbo',
['cosmetics'] = 'Zubehör',
['bodyparts'] = 'Karroserie Teile',
['leftfender'] = 'linker Kotflügel',
['rightfender'] = 'rechter Kotflügel',
['spoilers'] = 'Spoiler',
['sideskirt'] = 'Seitenschweller',
['cage'] = 'Käfig',
['hood'] = 'Motorhaube',
['grille'] = 'Gitter',
['rearbumper'] = 'hintere Stoßstange',
['frontbumper'] = 'Frontstoßstange',
['exhaust'] = 'Auspuff',
['roof'] = 'Dach',
['respray'] = 'Lackierung',
['primary'] = 'Primär',
['secondary'] = 'Sekundär',
['pearlescent'] = 'Perlglanz',
['headlights'] = 'Scheinwerfer',
['licenseplates'] = 'Nummernschild',
['windowtint'] = 'Fenstertönung',
['horns'] = 'Hörner',
['neons'] = 'neons',
['wheels'] = 'Räder',
['tiresmoke'] = 'Reifenrauch',
['wheel_type'] = 'Rad-Typ',
['wheel_color'] = 'Radfarbe',
['sport'] = 'Sport',
['muscle'] = 'Muskel',
['lowrider'] = 'Lowrider',
['suv'] = 'SUV',
['allterrain'] = 'alles Gelände',
['tuning'] = 'tuning',
['motorcycle'] = 'Motorrad',
['highend'] = 'High End',
['modplateholder'] = 'Platte - Zurück',
['modvanityplate'] = 'Platte - Vorne',
['interior'] = 'interior',
['trim'] = 'trim',
['dashboard'] = 'dashboard',
['speedometer'] = 'Tachometer',
['door_speakers'] = 'Türlautsprecher',
['seats'] = 'Sitze',
['steering_wheel'] = 'Lenkrad',
['gear_lever'] = 'Schalthebel',
['quarter_deck'] = 'Achterdeck',
['speakers'] = 'Lautsprecher',
['trunk'] = 'Kofferraum',
['hydraulic'] = 'hydraulisch',
['engine_block'] = 'Motorblock',
['air_filter'] = 'air filter',
['struts'] = 'Streben',
['arch_cover'] = 'Bogenabdeckung',
['aerials'] = 'Antennen',
['wings'] = 'Flügel',
['fuel_tank'] = 'Treibstofftank',
['windows'] = 'Fenster',
['stickers'] = 'Designs',
['mechanic'] = 'mechanic',
['drive_to_indicated'] = 'Drive to the indicated location.',
['mission_canceled'] = 'Mission canceled',
['vehicle_list'] = 'vehicle List',
['work_wear'] = 'workwear',
['civ_wear'] = 'civilian clothes',
['deposit_stock'] = 'deposit Stock',
['withdraw_stock'] = 'withdraw Stock',
['service_vehicle'] = 'service Vehicle',
['flat_bed'] = 'flatbed',
['tow_truck'] = 'tow Truck',
['service_full'] = 'service full: ',
['open_actions'] = 'Press ~INPUT_CONTEXT~ to access the menu.',
['harvest'] = 'harvest',
['harvest_menu'] = 'press ~INPUT_CONTEXT~ to access the harvest menu.',
['not_experienced_enough'] = 'you are not experienced enough to perform this action.',
['gas_can'] = 'gas Can',
['repair_tools'] = 'repair Tools',
['body_work_tools'] = 'bodywork Tools',
['blowtorch'] = 'blowtorch',
['repair_kit'] = 'repair Kit',
['body_kit'] = 'body Kit',
['craft'] = 'craft',
['craft_menu'] = 'press ~INPUT_CONTEXT~ to access the crafting menu.',
['hijack'] = 'hijack',
['repair'] = 'repair',
['clean'] = 'clean',
['imp_veh'] = 'impound',
['place_objects'] = 'place Objects',
['invoice_amount'] = 'invoice Amount',
['no_players_nearby'] = 'there is no nearby player',
['no_vehicle_nearby'] = 'there is no nearby vehicle',
['inside_vehicle'] = 'you can\'t do this from inside the vehicle!',
['vehicle_unlocked'] = 'the vehicle has been unlocked',
['vehicle_repaired'] = 'the vehicle has been repaired',
['vehicle_cleaned'] = 'the vehicle has been cleaned',
['vehicle_impounded'] = 'the vehicle has been impounded',
['must_seat_driver'] = 'you must be in the driver seat!',
['must_near'] = 'you must be near a vehicle to impound it.',
['vehicle_success_attached'] = 'vehicle successfully attached',
['please_drop_off'] = 'please drop off the vehicle at the garage',
['cant_attach_own_tt'] = 'you can\'t attach own tow truck',
['no_veh_att'] = 'there is no vehicle to be attached',
['not_right_veh'] = 'this is not the right vehicle',
['veh_det_succ'] = 'vehicle successfully dettached!',
['imp_flatbed'] = 'Action impossible! You need a Flatbed to load a vehicle',
['objects'] = 'objects',
['roadcone'] = 'roadcone',
['toolbox'] = 'toolbox',
['mechanic_stock'] = 'mechanic Stock',
['veh_unlocked'] = 'Vehicle Unlocked',
['hijack_failed'] = 'Hijack Failed',
['body_repaired'] = 'Body repaired',
['veh_repaired'] = 'Vehicle Repaired',
['veh_stored'] = 'press ~INPUT_CONTEXT~ to store the vehicle.',
['press_remove_obj'] = 'press ~INPUT_CONTEXT~ to remove the object',
['please_tow'] = 'please tow the vehicle',
['wait_five'] = 'you must wait 5 mintes',
['must_in_flatbed'] = 'you must be in a flatbed to being the mission',
['mechanic_customer'] = 'mechanic Customer',
['you_do_not_room'] = 'You do not have more room',
['recovery_gas_can'] = 'Gas Can Retrieval...',
['recovery_repair_tools'] = 'Repair Tools Retrieval...',
['recovery_body_tools'] = 'Body Tools Retrieval...',
['not_enough_gas_can'] = 'You do not have enough gas cans.',
['assembling_blowtorch'] = 'Assembling Blowtorch...',
['not_enough_repair_tools'] = 'You do not have enough repair tools.',
['assembling_repair_kit'] = 'Assembling Repair Kit...',
['not_enough_body_tools'] = 'You do not have enough body tools.',
['assembling_body_kit'] = 'Assembling Body Kit...',
['your_comp_earned'] = 'your company has earned €',
['you_used_blowtorch'] = 'you used a blowtorch',
['you_used_repair_kit'] = 'Du hast ein Werkzeugkasten benutzt',
['you_used_body_kit'] = 'you used a Body Kit',
['citizen_wear'] = 'Zivilkleidung',
['police_wear'] = 'Arbeitskleidung',
['gilet_wear'] = 'orange reflective jacket',
['bullet_wear'] = 'bulletproof vest',
['no_outfit'] = 'there\'s no uniform that fits you!',
['open_cloackroom'] = 'Drücke ~INPUT_CONTEXT~ um dich umzuziehen',
['get_weapon'] = 'Waffen holen',
['put_weapon'] = 'Waffen bringen',
['buy_weapons'] = 'Waffen kaufen',
['armory'] = 'Waffenkammer',
['open_armory'] = 'Drücke ~INPUT_CONTEXT~ um die Waffenkammer zu öffnen',
['armory_owned'] = 'owned',
['armory_free'] = 'free',
['armory_item'] = '€%s',
['armory_weapontitle'] = 'armory - Buy weapon',
['armory_componenttitle'] = 'armory - Weapon attatchments',
['armory_bought'] = 'you bought an %s for €%s',
['armory_money'] = 'you cannot afford that weapon',
['armory_hascomponent'] = 'you have that attatchment equiped!',
['get_weapon_menu'] = 'armory - Withdraw Weapon',
['put_weapon_menu'] = 'armory - Store Weapon',
['vehicle_menu'] = 'vehicle',
['vehicle_blocked'] = 'all available spawn points are currently blocked!',
['garage_prompt'] = 'press ~INPUT_CONTEXT~ to access the Vehicle Actions.',
['garage_title'] = 'vehicle Actions',
['garage_stored'] = 'stored',
['garage_notstored'] = 'not in garage',
['garage_storing'] = 'we\'re attempting to remove the vehicle, make sure no players are around it.',
['garage_has_stored'] = 'the vehicle has been stored in your garage',
['garage_has_notstored'] = 'no nearby owned vehicles were found',
['garage_notavailable'] = 'your vehicle is not stored in the garage.',
['garage_blocked'] = 'there\'s no available spawn points!',
['garage_empty'] = 'you dont have any vehicles in your garage.',
['garage_released'] = 'your vehicle has been released from the garage.',
['garage_store_nearby'] = 'there is no nearby vehicles.',
['garage_storeditem'] = 'open garage',
['garage_storeitem'] = 'store vehicle in garage',
['garage_buyitem'] = 'vehicle shop',
['garage_notauthorized'] = 'you\'re not authorized to buy this kind of vehicles.',
['helicopter_prompt'] = 'press ~INPUT_CONTEXT~ to access the Helicopter Actions.',
['shop_item'] = '€%s',
['vehicleshop_title'] = 'vehicle Shop',
['vehicleshop_confirm'] = 'do you want to buy this vehicle?',
['vehicleshop_bought'] = 'you have bought %s for €%s',
['vehicleshop_money'] = 'you cannot afford that vehicle',
['vehicleshop_awaiting_model'] = 'the vehicle is currently DOWNLOADING & LOADING please wait',
['service_max'] = 'you cannot enter service, max officers in service: %s/%s',
['service_not'] = 'you have not entered service! You\'ll have to get changed first.',
['service_anonunce'] = 'service information',
['service_in'] = 'you\'ve entered service, welcome!',
['service_in_announce'] = 'operator %s has entered service!',
['service_out'] = 'you have left service.',
['service_out_announce'] = 'operator %s has left their service.',
['citizen_interaction'] = 'Zivilistenaktionen',
['vehicle_interaction'] = 'Fahrzeuginteraktionen',
['object_spawner'] = 'Objekt Spawner',
['id_card'] = 'ID Karte',
['search'] = 'Suche',
['handcuff'] = 'Festnehmen / Freilassen',
['drag'] = 'drag',
['put_in_vehicle'] = 'In Fahrzeug setzen',
['out_the_vehicle'] = 'take out of vehicle',
['fine'] = 'Strafe',
['unpaid_bills'] = 'manage unpaid bills',
['license_check'] = 'manage license',
['license_revoke'] = 'revoke license',
['license_revoked'] = 'your %s has been revoked!',
['licence_you_revoked'] = 'you revoked a %s which belonged to %s',
['no_players_nearby'] = 'keine Spieler in der Nähe',
['being_searched'] = 'you are being searched by the Police',
['vehicle_info'] = 'Fahrzeug Info',
['pick_lock'] = 'Fahrzeug öffnen',
['vehicle_unlocked'] = 'Fahrzeug offen',
['no_vehicles_nearby'] = 'Keine Fahrzeuge in der Nähe',
['impound'] = 'impound vehicle',
['impound_prompt'] = 'press ~INPUT_CONTEXT~ to cancel the impound',
['impound_canceled'] = 'you canceled the impound',
['impound_canceled_moved'] = 'the impound has been canceled because the vehicle moved',
['impound_successful'] = 'you have impounded the vehicle',
['search_database'] = 'vehicle information',
['search_database_title'] = 'vehicle information - search with registration number',
['search_database_error_invalid'] = 'that is not a valid registration number',
['traffic_interaction'] = 'Straßeninteraktionen',
['cone'] = 'Hütchen',
['barrier'] = 'Barriere',
['spikestrips'] = 'Nagelband',
['box'] = 'Box',
['cash'] = 'Box mit Geld',
['name'] = 'name: %s',
['job'] = 'job: %s',
['sex'] = 'sex: %s',
['dob'] = 'DOB: %s',
['height'] = 'height: %s',
['bac'] = 'BAC: %s',
['unknown'] = 'unknown',
['male'] = 'male',
['female'] = 'female',
['guns_label'] = '--- Waffen ---',
['inventory_label'] = '--- Inventar ---',
['license_label'] = ' --- Licenses ---',
['confiscate'] = 'konfeszieren %s',
['confiscate_weapon'] = 'confiscate %s with %s bullets',
['confiscate_inv'] = 'konfeziere %sx %s',
['confiscate_dirty'] = 'schwarzgeld konfesziert: <span style="color:red;">€%s</span>',
['you_confiscated'] = 'you confiscated %sx %s from %s',
['got_confiscated'] = '%sx %s were confiscated by %s',
['you_confiscated_account'] = 'you confiscated €%s (%s) from %s',
['got_confiscated_account'] = '€%s (%s) was confiscated by %s',
['you_confiscated_weapon'] = 'you confiscated %s from %s with ~o~%s bullets',
['got_confiscated_weapon'] = 'your %s with ~o~%s bullets was confiscated by %s',
['traffic_offense'] = 'Verkehrs vergehen',
['minor_offense'] = 'Geringes vergehen',
['average_offense'] = 'Normales vergehen',
['major_offense'] = 'Hohes vergehen',
['fine_total'] = 'strafe: %s',
['plate'] = 'plate: %s',
['owner_unknown'] = 'besitzer: Unbekannt',
['owner'] = 'besitzer: %s',
['open_bossmenu'] = 'Drücke E um das Menü zu öffnen',
['police_stock'] = 'police Stock',
['remove_prop'] = 'Drücke ~INPUT_CONTEXT~ um das Objekt zu entfernen',
['map_blip'] = 'Polizeistation',
['unrestrained_timer'] = 'you feel your handcuffs slowly losing grip and fading away.',
['alert_police'] = 'Polizei alamieren',
['phone_police'] = 'police',
['have_withdrawn'] = 'you have withdrawn x%s %s',
['have_deposited'] = 'you have deposited x%s %s',
['free_prop'] = 'Kostenlose Immobilie',
['property'] = 'Immobilie',
['enter'] = 'Eintreten',
['move_out'] = 'move out from property',
['move_out_sold'] = 'sell property for <span style="color:green;">€%s</span>',
['moved_out'] = 'you moved out and do no longer rent the property.',
['moved_out_sold'] = 'you have sold the property for €%s',
['buy'] = 'buy property for <span style="color:green;">€%s</span>',
['buy_for'] = 'you purchased a property for €%s',
['rent'] = 'rent property for <span style="color:green;">€%s</span> / week',
['rent_for'] = 'you rented a property for €%s / week, payment is automatic',
['press_to_menu'] = 'Drücke E um das Menü zu öffnen',
['owned_properties'] = 'Gekaufte Immobilien',
['available_properties'] = 'Verfügbare Immobilien',
['invite_player'] = 'Spieler einladen',
['you_invited'] = 'Du hast %s eingeladen',
['player_clothes'] = 'Kleidung',
['remove_cloth'] = 'remove clothing',
['removed_cloth'] = 'the outfit has been removed from your wardrobe!',
['remove_object'] = 'Objekt nehmen',
['deposit_object'] = 'Objekt deponieren',
['invite'] = 'Einladen',
['dirty_money'] = 'Schwarzgeld: <span style="color:red;">€%s</span>',
['inventory'] = 'Inventar',
['amount'] = 'Anzahl?',
['amount_invalid'] = 'Ungültiger Wert',
['press_to_exit'] = 'Drücke ~INPUT_CONTEXT~ um die Immobilie zu verlassen',
['not_enough'] = 'du hast nicht genug Geld',
['invalid_quantity'] = 'Ungültiger Betrag',
['paid_rent'] = 'you paid your rent at €%s for %s',
['paid_rent_evicted'] = 'you have been ~o~evicted from %s for not affording rent at €%s',
['not_enough_in_property'] = 'there\'s not enough of that item in the property!',
['player_cannot_hold'] = 'you do not have enough free space in your inventory!',
['skin_menu'] = 'Skin Menü',
['use_rotate_view'] = 'Nutze ~INPUT_VEH_FLY_ROLL_LEFT_ONLY~ und ~INPUT_VEH_FLY_ROLL_RIGHT_ONLY~ um dich umzuschauen.',
['skin'] = 'Skin ändern',
['saveskin'] = 'Skin in Datei speichern',
['actions'] = 'actions',
['boss_menu'] = 'boss menu',
['money_generic'] = '€%s',
['deposit_society_money'] = 'deposit society money',
['do_you_want_to_recruit'] = 'do you want to recruit %s?',
['employee'] = 'employee',
['employee_list'] = 'employee list',
['employee_management'] = 'employee management',
['fire'] = 'fire',
['grade'] = 'grade',
['invalid_amount_max'] = 'that salary is not allowed',
['promote'] = 'promote',
['promote_employee'] = 'promote %s',
['recruit'] = 'recruit',
['recruiting'] = 'recruiting',
['salary_amount'] = 'salary amount',
['salary_management'] = 'salary management',
['wash_money'] = 'wash money',
['wash_money_amount'] = 'amount to wash',
['withdraw_amount'] = 'witdraw amount',
['withdraw_society_money'] = 'withdraw society money',
['you_have'] = 'you have €%s waiting in money laundering (24h).',
['you_have_laundered'] = 'you have laundered your money: €%s',
['you_have_hired'] = 'you have recruited %s',
['you_have_been_hired'] = 'you have been hired by %s',
['you_have_fired'] = 'you have fired %s',
['you_have_been_fired'] = 'you have been fired from %s',
['you_have_promoted'] = 'you have promoted %s as %s',
['you_have_been_promoted'] = 'you have been promoted!',
['cloakroom_menu'] = 'cloakroom',
['cloakroom_prompt'] = 'press ~INPUT_CONTEXT~ to open the cloakroom.',
['wear_citizen'] = 'citizen wear',
['wear_work'] = 'taxi wear',
['spawner_prompt'] = 'press ~INPUT_CONTEXT~ to open the garage.',
['store_veh'] = 'Drücke ~INPUT_CONTEXT~ um das Fahrzeug zu parken',
['spawn_veh'] = 'Fahrzeug spawnen',
['spawnpoint_blocked'] = 'there is a vehicle blocking the spawnpoint!',
['only_taxi'] = 'Du kannst nur Taxis parken.',
['taking_service'] = 'Service annehmen: Taxi/Uber',
['full_service'] = 'Voller Service: ',
['press_to_open'] = 'Drücke E um das Menü zu öffnen',
['billing'] = 'Rechnung',
['billing_sent'] = 'the bill has been registered!',
['no_players_near'] = 'Kein Spieler in der Nähe',
['start_job'] = 'start / stop driving NPC jobs',
['drive_search_pass'] = 'Auf der Suche nach Passagieren',
['customer_found'] = 'du hast einen Passagier gefunden , Fahre in zum Ziel',
['client_unconcious'] = 'dein Passagier ist bewusstlos. Suche nach einem anderen.',
['arrive_dest'] = 'du bist an deinem Ziel angekommen',
['take_me_to_near'] = 'Bring mich nach %s, in der Nähe von %s',
['take_me_to'] = 'Bring mich nach %s',
['close_to_client'] = 'du bist nahe an dem Passagier, du musst noch näher ran',
['return_to_veh'] = 'bitte kehre zu deinem Fahezeug zurück umd die Mission fortzuführen',
['must_in_taxi'] = 'Du musst in einem Taxis sein umd die Mission starten zu können',
['must_in_vehicle'] = 'Du musst in einem Fahrzeug sein um die Mission starten zu können',
['not_in_taxi'] = 'You left the taxi while on mission!',
['have_earned'] = 'verdient €%s',
['comp_earned'] = '- Die Firma verdient €\n- Verdient €%s',
['take_stock'] = 'take Stock',
['mission_complete'] = 'mission Completed',
['quantity'] = 'quantity',
['quantity_invalid'] = 'that is an invalid quantity!',
['taxi_client'] = 'taxi Client',
['blip_taxi'] = 'taxi',
['phone_taxi'] = 'taxi',
['taxi'] = 'taxi',
['taxi_stock'] = 'taxi Stock',
['not_enough_in_society'] = 'there\'s not enough of that item in the society!',
['vehicle_belongs'] = 'a vehicle with plate %s now belongs to you',
['broke_company'] = 'you do not have enough money in the company account',
['license_missing'] = 'you don\'t have a driver\'s license!',
['buy_vehicle_shop'] = 'do you want to purchase %s for €%s?',
['buy_vehicle'] = 'buy vehicle',
['car_dealer'] = 'car Dealership',
['shop_awaiting_model'] = 'the vehicle is currently loading, please wait',
['create_bill'] = 'create bill',
['dealer_boss'] = 'car Dealer - Boss',
['delivered'] = 'the vehicle has been delivered to the dealer',
['depop_vehicle'] = 'return vehicle to garage',
['return_provider'] = 'return vehicle to provider',
['get_rented_vehicles'] = 'vehicles for rent',
['no_current_vehicle'] = 'you do not currently have a vehicle on display',
['not_rental'] = 'this is not a rental vehicle',
['not_yours'] = 'this vehicle does not belong to you',
['paid_rental'] = 'you have paid €%s for renting a vehicle with plate %s',
['paid_rental_evicted'] = 'you could not afford to pay €%s for your rented vehicle with plate %s, it has been returned to the dealership',
['pop_vehicle'] = 'put out vehicle for sale',
['rent_vehicle'] = 'car Dealer - Vehicles for rent',
['return_provider_menu'] = 'car Dealer - Return vehicle to provider',
['rental_amount'] = 'rental amount',
['sell_menu'] = 'press ~INPUT_CONTEXT~ to sell your %s for €%s',
['set_vehicle_owner_rent'] = 'rent vehicle',
['set_vehicle_owner_sell'] = 'sell vehicle',
['shop_menu'] = 'press ~INPUT_CONTEXT~ to access the menu',
['generic_shopitem'] = '€%s',
['vehicle_dealer'] = 'vehicle - Car Dealer',
['vehicle_purchased'] = 'you bought a vehicle',
['vehicle_set_owned'] = 'vehicle %s has been assigned to %s',
['vehicle_set_rented'] = 'vehicle %s has been rented to %s',
['vehicle_sold_for'] = 'the %s has been sold for €%s',
['vehicle_sold_to'] = 'the vehicle with plate %s has been sold to %s',
['dealership_stock'] = 'dealership Stock',
['dealership'] = 'car Dealer',
['dealer_customers'] = 'dealer customers',
['invalid_vehicle'] = 'Invalid vehicle',
['boss_sold'] = 'list of sold vehicles',
['customer_client'] = 'customer name',
['customer_model'] = 'car model',
['customer_plate'] = 'car plate',
['customer_soldby'] = 'sold by',
['customer_date'] = 'date',
['left_instance'] = 'you have left the instance',
['invite_expired'] = 'invite expired',
['entered_instance'] = 'you entered the instance',
['entered_into'] = '%s entered the instance',
['left_out'] = '%s left the instance',
['face'] = 'gesicht',
['wrinkles'] = 'falten',
['wrinkle_thickness'] = 'faltendicke',
['beard_type'] = 'bart Typ',
['beard_size'] = 'bartdichte',
['beard_color_1'] = 'bartfarbe 1',
['beard_color_2'] = 'bartfarbe 2',
['hair_1'] = 'haare 1',
['hair_2'] = 'haare 2',
['hair_color_1'] = 'haarfarbe 1',
['hair_color_2'] = 'haarfarbe 2',
['eye_color'] = 'eye color',
['eyebrow_type'] = 'augenbrauen Typ',
['eyebrow_size'] = 'augenbrauen Größe',
['eyebrow_color_1'] = 'augenbrauenfarbe 1',
['eyebrow_color_2'] = 'augenbrauenfarbe 2',
['makeup_type'] = 'makeup Typ',
['makeup_thickness'] = 'makeup dicke',
['makeup_color_1'] = 'makeupfarbe 1',
['makeup_color_2'] = 'makeupfarbe 2',
['lipstick_type'] = 'lippenstift Typ',
['lipstick_thickness'] = 'lippenstift dicke',
['lipstick_color_1'] = 'lippenstiffarbe 1',
['lipstick_color_2'] = 'lippenstiftfarbe 2',
['ear_accessories'] = 'ohr Accessories',
['ear_accessories_color'] = 'ohr Accessories Farbe',
['tshirt_1'] = 't-Shirt 1',
['tshirt_2'] = 't-Shirt 2',
['torso_1'] = 'torso 1',
['torso_2'] = 'torso 2',
['decals_1'] = 'tattoos 1',
['decals_2'] = 'tattoos 2',
['arms'] = 'arme',
['arms_2'] = 'arme 2',
['pants_1'] = 'hosen 1',
['pants_2'] = 'hosen 2',
['shoes_1'] = 'schuhe 1',
['shoes_2'] = 'schuhe 2',
['mask_1'] = 'maske 1',
['mask_2'] = 'maske 2',
['bproof_1'] = 'schusssichere Weste 1',
['bproof_2'] = 'schusssichere Weste 2',
['chain_1'] = 'kette 1',
['chain_2'] = 'kette 2',
['helmet_1'] = 'helm 1',
['helmet_2'] = 'helm 2',
['watches_1'] = 'watches 1',
['watches_2'] = 'watches 2',
['bracelets_1'] = 'bracelets 1',
['bracelets_2'] = 'bracelets 2',
['glasses_1'] = 'brille 1',
['glasses_2'] = 'brille 2',
['bag'] = 'rucksack',
['bag_color'] = 'rucksackfarbe',
['blemishes'] = 'blemishes',
['blemishes_size']= 'blemishes thickness',
['ageing'] = 'ageing',
['ageing_1'] = 'ageing thickness',
['blush'] = 'blush',
['blush_1'] = 'blush thickness',
['blush_color'] = 'blush color',
['complexion'] = 'complexion',
['complexion_1'] = 'complexion thickness',
['sun'] = 'sun',
['sun_1'] = 'sun thickness',
['freckles'] = 'freckles',
['freckles_1'] = 'freckles thickness',
['chest_hair'] = 'chest hair',
['chest_hair_1'] = 'chest hair thickness',
['chest_color'] = 'chest hair color',
['bodyb'] = 'body blemishes',
['bodyb_size'] = 'body blemishes thickness',
['gived_car'] = 'Fahrzeug %s mit dem Nummernschild %s wurde in %s\'s Garage gestellt.',
['received_car'] = 'Dein Fahrzeug mit dem Nummernschild %s wurde in Deine Garage gestellt.',
['del_car'] = 'Fahrzeug mit dem Kennzeichen %s gelöscht.',
['none_plate'] = 'Nummernschild Angabe fehlt.',
['unknown_car'] = 'Unbekanntes Fahrzeug',
['blip_plastic_surgery'] = 'Schönheitsklinik',
['plate_already_have'] = 'Nummernschild bereits vergeben.',
['prompt_wash'] = 'Drücke ~INPUT_CONTEXT~, um dieses Fahrzeug zu waschen',
['prompt_wash_paid'] = 'Drücke ~INPUT_CONTEXT~, um dieses Fahrzeug für €%s zu waschen',
['wash_failed'] = 'Du kannst dir keine Autowäsche leisten',
['wash_failed_clean'] = 'Dein Fahrzeug braucht keine Waschanlage.',
['wash_successful'] = 'Dein Fahrzeug wurde gewaschen',
['wash_successful_paid'] = 'Dein Fahrzeug wurde €%s gewaschen',
['blip_carwash'] = 'Autowäsche',
['shop_clothes'] = 'Kleidungsladen',
['player_clothes'] = 'Kleider wechseln - Ankleideraum',
['shop_main_menu'] = 'willkommen ! Was möchten Sie tun ?',
['loaded_outfit'] = 'Sie haben die Ausstattung Ihres Ankleidezimmers wiedererlangt. Danke für Ihren Besuch !',
['suppr_cloth'] = 'Outfit löschen - Ankleidezimmer',
['supprimed_cloth'] = 'dieses Outfit wurde aus Ihrem Ankleidezimmer gelöscht',
['custom_kick'] = 'INPUT CUSTOM KICK MESSAGE',
['blip_garage'] = 'Garage',
['blip_garage_private'] = 'Private Garage',
['blip_pound'] = 'Abschlepphof',
['blip_police_pound'] = 'Polizei Abschlepphof',
['blip_ambulance_pound'] = 'Garage | Krankenhaus Abgeschlepphof',
['garage'] = 'Garage',
['loc_garage'] = 'In der Garage geparkt',
['loc_pound'] = 'Abgeschleppt',
['return'] = 'Zurück',
['store_vehicles'] = 'Auto einparken.',
['press_to_enter'] = 'Drücke E um um die Aktion durchzuführen',
['press_to_delete'] = 'Drücke E um das Fahrzeug einzuparken.',
['press_to_impound'] = 'Drücke E um auf den Abschlepphof zuzugreifen.',
['spacer1'] = ' ',
['spacer2'] = '| Nummernschild | Fahrzeug Name | Ort |',
['spacer3'] = '| Nummernschild | Fahrzeug Name |',
['return_vehicle'] = 'Fahrzeug einparken.',
['see_mechanic'] = 'Mechaniker besuchen.',
['damaged_vehicle'] = 'Fahrzeug beschädigt!',
['visit_mechanic'] = 'Repariere es selber oder rufe einen Mechaniker.',
['cannot_store_vehicle'] = 'Du kannst das Fahrzeug nicht einparken!',
['no_vehicle_to_enter'] = 'Es ist kein Fahrzeug in deiner Garage.',
['vehicle_in_garage'] = 'Dein Fahrzeug wurde eingeparkt.',
['garage_cars'] = 'Fahrzeug Garage',
['pound_cars'] = 'Abschlepphof',
['list_owned_cars'] = 'Liste von deinen Fahrzeug.',
['store_owned_cars'] = 'Fahrzeug einparken',
['return_owned_cars'] = 'Fahrzeug ausparken',
['garage_nocars'] = 'Du hast keine Fahrzeuge!',
['car_is_impounded'] = 'Dein Fahrzeug wurde abgeschleppt.',
['garage_boats'] = 'Boot Garage',
['pound_boats'] = 'Boot Abschlepphof',
['list_owned_boats'] = 'Liste von deinen Booten.',
['store_owned_boats'] = 'Boot einparken.',
['return_owned_boats'] = 'Boot ausparken.',
['garage_noboats'] = 'Du hast keine Boote!',
['boat_is_impounded'] = 'Dein Boot wurde abgeschleppt',
['garage_aircrafts'] = 'Flugzeug Garage',
['pound_aircrafts'] = 'Flugzeug Abgeschlepphof',
['list_owned_aircrafts'] = 'Liste von Flugzeugen.',
['store_owned_aircrafts'] = 'Eingeparkte Fahrzeuge in deiner Garage',
['return_owned_aircrafts'] = 'Fahrzeuge ausparken.',
['garage_noaircrafts'] = 'Du hast keine Flugzeuge!',
['aircraft_is_impounded'] = 'Dein Flugzeug wurde abgeschleppt.',
['pound_police'] = 'Polizei Abschlepphof',
['pound_ambulance'] = 'Medics Abgeschlepphof',
['return_owned_policing'] = 'Polizei fahrzeuge ausparken.',
['return_owned_ambulance'] = 'Medic fahrzeuge ausparken.',
['shop_robbery'] = '%s',
['press_to_rob'] = 'Drücke E um die %s auszurauben',
-- ['robbery_timer'] = '%s - Raubüberfall: %s verbleibende Sekunden',
['recently_robbed'] = 'Die %s wurde vor kurzem ausgeraubt. Bitte warte %s Sekunden bist du die %s erneut ausrauben kannst.',
['rob_in_prog'] = 'Raubüberfall im Gange bei %s',
['started_to_rob'] = 'Du hast angefangen %s auszurauben',
['alarm_triggered'] = 'Der Alarm wurde ausgelöst. Die Staatliche Exekutive ist nun unterwegs.',
['robbery_complete'] = 'Der Raubüberfall ist abgeschlossen, du hast %s gestohlen',
['robbery_complete_at'] = 'Raubüberfall erfolgreich in %s',
['robbery_cancelled'] = 'Der Raubüberfall wurde abgebrochen!',
['robbery_cancelled_at'] = 'Der Raubüberfall in %s wurde abgebrochen!',
['min_police'] = 'Es müssen mindestens %s Polizei Mitarbeiter in Dienst sein, um die %s auszurauben.',
['robbery_already'] = 'Die %s wird bereits ausgeraubt.',
['no_threat'] = 'Du musst eine Waffe benutzen, um den Raubüberfall zu starten.',
-- Inventory
-- ['inventory'] = 'inventar %s / %s',
['use'] = 'benutzen',
['give'] = 'geben',
['remove'] = 'entfernen',
-- ['return'] = 'zurück',
['give_to'] = 'geben an',
-- ['amount'] = 'betrag',
['giveammo'] = 'munition geben',
['amountammo'] = 'anzahl der munition',
['noammo'] = 'du hast keine munition!',
['gave_item'] = 'du gibst %sx %s an %s',
['received_item'] = 'du empfängst %sx %s von %s',
['gave_weapon'] = 'du gibst %s an %s',
['gave_weapon_ammo'] = 'du gibst ~o~%sx %s von %s an %s',
['gave_weapon_withammo'] = 'du gibst %s mit ~o~%sx %s an %s',
['gave_weapon_hasalready'] = '%s hat bereits eine(n) %s',
['gave_weapon_noweapon'] = '%s hat diese Waffe nicht',
['received_weapon'] = 'du erhälst %s von %s',
['received_weapon_ammo'] = 'du erhälst ~o~%sx %s für dein %s von %s',
['received_weapon_withammo'] = 'du erhälst %s mit ~o~%sx %s von %s',
['received_weapon_hasalready'] = '%s hat versucht dir eine(n) %s zu geben, aber du hast bereits eine(n)',
['received_weapon_noweapon'] = '%s ahat versucht dir Munition für eine(n) %s, aber du besitzt diese Waffe nicht',
['gave_account_money'] = 'du gibst €%s (%s) an %s',
['received_account_money'] = 'du empfängst €%s (%s) von %s',
-- ['amount_invalid'] = 'ungültiger Betrag',
['players_nearby'] = 'keine Spieler in der Nähe',
['ex_inv_lim'] = 'aktion nicht möglich, Inventarlimit überschritten für %s',
['imp_invalid_quantity'] = 'aktion nicht möglich, ungültige Anzahl',
['imp_invalid_amount'] = 'aktion nicht möglich, ungültiger Betrag',
['threw_standard'] = 'you threw %sx %s',
['threw_account'] = 'du wirfst €%s %s weg',
['threw_weapon'] = 'du wirfst %s weg',
['threw_weapon_ammo'] = 'du wirfst %s mit ~o~%sx %s weg',
['threw_weapon_already'] = 'Du hast bereits diese Waffe',
['threw_cannot_pickup'] = 'Du kannst das nicht aufheben, da dein Inventar voll ist',
['threw_pickup_prompt'] = 'drücke E um aufzuheben',
-- Key mapping
['keymap_showinventory'] = 'inventar anzeigen',
-- Salary related
['received_salary'] = 'du hast dein Gehalt erhalten: €%s',
['received_help'] = 'du hast deine Sozialhilfe erhalten: €%s',
['company_nomoney'] = 'die Firma in der du angestellt bist, ist zu arm um dein Gehalt zu zahlen',
['received_paycheck'] = 'erhaltener Gehaltsscheck',
['bank'] = 'bank',
['account_bank'] = 'bank',
['account_black_money'] = 'dirty Money',
['account_money'] = 'cash',
['act_imp'] = 'Aktion nicht möglich',
['in_vehicle'] = 'du kannst keine Items in einem Fahrzeug weitergeben',
-- Commands
['command_car'] = 'spawn an vehicle',
['command_car_car'] = 'vehicle spawn name or hash',
['command_cardel'] = 'delete vehicle in proximity',
['command_cardel_radius'] = 'optional, delete every vehicle within the specified radius',
['command_clear'] = 'clear chat',
['command_clearall'] = 'clear chat for all players',
['command_clearinventory'] = 'clear player inventory',
['command_clearloadout'] = 'clear a player loadout',
['command_giveaccountmoney'] = 'give account money',
['command_giveaccountmoney_account'] = 'valid account name',
['command_giveaccountmoney_amount'] = 'amount to add',
['command_giveaccountmoney_invalid'] = 'invalid account name',
['command_giveitem'] = 'give an item to a player',
['command_giveitem_item'] = 'item name',
['command_giveitem_count'] = 'item count',
['command_giveweapon'] = 'give a weapon to a player',
['command_giveweapon_weapon'] = 'weapon name',
['command_giveweapon_ammo'] = 'ammo count',
['command_giveweapon_hasalready'] = 'player already has that weapon',
['command_giveweaponcomponent'] = 'give weapon component',
['command_giveweaponcomponent_component'] = 'component name',
['command_giveweaponcomponent_invalid'] = 'invalid weapon component',
['command_giveweaponcomponent_hasalready'] = 'player already has that weapon component',
['command_giveweaponcomponent_missingweapon'] = 'player does not have that weapon',
['command_save'] = 'save a player to database',
['command_saveall'] = 'save all players to database',
['command_setaccountmoney'] = 'set account money for a player',
['command_setaccountmoney_amount'] = 'amount of money to set',
['command_setcoords'] = 'teleport to coordinates',
['command_setcoords_x'] = 'x axis',
['command_setcoords_y'] = 'y axis',
['command_setcoords_z'] = 'z axis',
['command_setjob'] = 'set job for a player',
['command_setjob_job'] = 'job name',
['command_setjob_grade'] = 'job grade',
['command_setjob_invalid'] = 'the job, grade or both are invalid',
['command_setgroup'] = 'set player group',
['command_setgroup_group'] = 'group name',
['commanderror_argumentmismatch'] = 'argument count mismatch (passed %s, wanted %s)',
['commanderror_argumentmismatch_number'] = 'argument #%s type mismatch (passed string, wanted number)',
['commanderror_invaliditem'] = 'invalid item name',
['commanderror_invalidweapon'] = 'invalid weapon',
['commanderror_console'] = 'that command can not be run from console',
['commanderror_invalidcommand'] = '/%s is not an valid command!',
['commanderror_invalidplayerid'] = 'there is no player online matching that server id',
['commandgeneric_playerid'] = 'player id',
-- Locale settings