-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranslation.lua
More file actions
50 lines (42 loc) · 1.98 KB
/
translation.lua
File metadata and controls
50 lines (42 loc) · 1.98 KB
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
Translation = {}
----------------------------------------------------------------
Translation = {
['de'] = {
['open_crafting'] = 'Drücke ~g~E~s~ um ~b~%s~s~ zu betreten',
['open_crafting_textui'] = 'Drücke E um %s zu betreten',
['not_enough_items'] = 'Du hast nicht genug davon dabei!',
['money'] = 'Bargeld',
['bank'] = 'Bankkonto',
['license'] = '',
['license_desc'] = 'Du benötigst diese Lizenz um das kaufen zu können',
['bought_license'] = 'Du hast eine ~b~%s~s~ gekauft.',
['not_enough_money'] = 'Du hast nicht genügend Geld dabei!',
['not_enough_money_bank'] = 'Du hast nicht genügend Geld auf dem Konto!',
['needed_Item'] = '~r~Benötigt:~s~ ',
['has_items'] = '~b~Du hast:~s~ ',
['craft'] = '~g~Herstellen: ',
['crafting'] = 'Stelle %s her...',
['not_inDistance'] = 'Wieso läufst du weg? So lange Arme hast du nicht.',
['full_space'] = 'Du kannst das nicht mehr tragen.',
['no_number'] = 'Bitte gib eine gültige Zahl an.',
},
['en'] = {
['open_crafting'] = 'Press ~g~E~s~ to open %s',
['open_crafting_textui'] = 'Press E to open %s',
['not_enough_items'] = "You don't have enough with you!",
['money'] = 'Cash',
['bank'] = 'Bankaccount',
['license'] = '',
['license_desc'] = 'You need to buy this license first',
['bought_license'] = 'You have bought a ~b~%s~s~.',
['not_enough_money'] = "You don't have enough money with you!",
['not_enough_money_bank'] = "You don't have enough money on your Bankaccount!",
['needed_Item'] = '~r~Needed:~s~ ',
['has_items'] = '~b~You have:~s~ ',
['craft'] = '~g~Craft: ',
['crafting'] = 'Crafting %s...',
['not_inDistance'] = "Why are you running away? Your arms aren't that long.",
['full_space'] = "You can't carry that",
['no_number'] = 'Please insert a valid number.',
},
}