-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtranslation.lua
100 lines (90 loc) · 4.82 KB
/
translation.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
Translate = function(locale, ...)
if ... then
return Translation[Config.Locale][locale]:format(...)
end
return Translation[Config.Locale][locale]
end
Translation = {
['de'] = {
-- General
['no_permission'] = 'Du hast keine Berechtigung diesen Befehl zu nutzen!',
['not_inside_vehicle'] = 'Du musst in einem Fahrzeug sitzen!',
['not_enough_money'] = 'Du hast nicht gennug Geld dabei!',
['cannot_carry_petrolcan'] = 'Du hast nicht genug Platz um den Kanister zu tragen!',
['petrolcan_not_enough_fuel'] = 'Dein Kanister hat nicht genug Sprit!',
-- Main Thread
['vehicle_does_not_exist'] = 'Das Fahrzeug existiert nicht mehr, tanken wurde abgebrochen.',
['vehicle_too_far_away_from_station'] = 'Das Fahrzeug ist zu weit von der Zapfsäule entfernt, tanken wurde abgebrochen.',
['too_far_away_from_vehicle'] = 'Du bist zu weit vom Fahrzeug entfernt, tanken wurde abgebrochen.',
['too_far_away_from_station'] = 'Du bist zu weit von der Zapfsäule entfernt, tanken wurde abgebrochen.',
-- Vehicle
['vehicle_get_fuel_type'] = 'Prüfe Spritart',
['vehicle_fuel_type'] = 'Dein Fahrzeug benötigt %s',
['fuel_vehicle'] = 'Tanke das Fahrzeug',
['fuel_vehicle_type'] = 'Tanke das Fahrzeug mit %s...',
['vehicle_tank_full'] = 'Der Tank des Fahrzeugs ist voll.',
['wrong_fuel'] = 'Dein Fahrzeug benötigt %s!',
['vehicle_fuel_success'] = 'Du hast das Fahrzeug auf %sL für $%s aufgetankt.',
['fuel_not_compatible'] = 'Du kannst dein Fahrzeug nicht mit Strom tanken!',
['fuel_electric_not_compatible'] = 'Du kannst dein Elektrofahrzeug nicht mit %s tanken!',
-- Fuel Station
['fuel_station_blip'] = 'Tankstelle',
['fuel_gas'] = 'Zapfpistole - Benzin',
['fuel_diesel'] = 'Zapfpistole - Diesel',
['fuel_electric'] = 'Zapfpistole - Elektro',
['fuel_kerosin'] = 'Zapfpistole - Kerosin',
['petrolcan_refill'] = 'Kanister auffüllen',
['petrolcan_buy'] = 'Kanister kaufen',
['take_nozzle'] = 'Zapfpistole nehmen',
['return_nozzle'] = 'Zapfpistole zurück stecken',
['bought_petrolcan'] = 'Du hast einen Kanister für $%s gekauft.',
['refilled_petrolcan'] = 'Du hast deinen Kanister für $%s aufgefüllt.',
-- Fuel Types
['gas'] = 'Benzin',
['diesel'] = 'Diesel',
['electric'] = 'Elektro',
['kerosin'] = 'Kerosin',
['petrolcan'] = 'Kanister',
},
['en'] = {
-- General
['no_permission'] = 'Du hast keine Berechtigung diesen Befehl zu nutzen!',
['not_inside_vehicle'] = 'Du musst in einem Fahrzeug sitzen!',
['not_enough_money'] = 'Du hast nicht gennug Geld dabei!',
['cannot_carry_petrolcan'] = 'Du hast nicht genug Platz um den Kanister zu tragen!',
['petrolcan_not_enough_fuel'] = 'Dein Kanister hat nicht genug Sprit!',
-- Main Thread
['vehicle_does_not_exist'] = 'Das Fahrzeug existiert nicht mehr, tanken wurde abgebrochen.',
['vehicle_too_far_away_from_station'] = 'Das Fahrzeug ist zu weit von der Zapfsäule entfernt, tanken wurde abgebrochen.',
['too_far_away_from_vehicle'] = 'Du bist zu weit vom Fahrzeug entfernt, tanken wurde abgebrochen.',
['too_far_away_from_station'] = 'Du bist zu weit von der Zapfsäule entfernt, tanken wurde abgebrochen.',
-- Vehicle
['vehicle_get_fuel_type'] = 'Prüfe Spritart',
['vehicle_fuel_type'] = 'Dein Fahrzeug benötigt %s',
['fuel_vehicle'] = 'Tanke das Fahrzeug',
['fuel_vehicle_type'] = 'Tanke das Fahrzeug mit %s...',
['vehicle_tank_full'] = 'Der Tank des Fahrzeugs ist voll.',
['wrong_fuel'] = 'Dein Fahrzeug benötigt %s!',
['vehicle_fuel_success'] = 'Du hast das Fahrzeug auf %sL für $%s aufgetankt.',
['fuel_not_compatible'] = 'Du kannst dein Fahrzeug nicht mit Strom tanken!',
['fuel_electric_not_compatible'] = 'Du kannst dein Elektrofahrzeug nicht mit %s tanken!',
-- Fuel Station
['fuel_station_blip'] = 'Fuel Station',
['fuel_gas'] = 'Nozzle - Gas',
['fuel_diesel'] = 'Nozzle - Diesel',
['fuel_electric'] = 'Nozzle - Electric',
['fuel_kerosin'] = 'Nozzle - Kerosin',
['petrolcan_refill'] = 'Refill Petrolcan',
['petrolcan_buy'] = 'Buy Petrolcan',
['take_nozzle'] = 'Take Nozzle',
['return_nozzle'] = 'Return Nozzle',
['bought_petrolcan'] = 'Du hast einen Kanister für $%s gekauft.',
['refilled_petrolcan'] = 'Du hast deinen Kanister für $%s aufgefüllt.',
-- Fuel Types
['gas'] = 'Gas',
['diesel'] = 'Diesel',
['electric'] = 'Electric',
['kerosin'] = 'Kerosin',
['petrolcan'] = 'Petrolcan',
},
}