-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtranslation.lua
More file actions
64 lines (56 loc) · 2.77 KB
/
translation.lua
File metadata and controls
64 lines (56 loc) · 2.77 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
Translation = {}
----------------------------------------------------------------
Translation = {
['de'] = {
['open_shop'] = 'Drücke ~g~E~s~ um ~b~%s~s~ zu betreten',
['open_shop_textui'] = 'Drücke E um %s zu betreten',
['buy'] = '~g~Kaufen',
['sell'] = '~r~Verkaufen',
['amount'] = 'Anzahl',
['license'] = '',
['license_desc'] = '~b~Du benötigst diese Lizenz um ~y~%s~b~ 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!',
['not_enough_money_black'] = 'Du hast nicht genügend Geld Schwarzgeld!',
['money'] = 'Bargeld',
['bank'] = 'Bankkonto',
['black_money'] = 'Schwarzgeld',
['bought_item'] = 'Du hast ~b~%s %s~s~ für ~b~%s$~s~ gekauft.',
['not_enough_items'] = 'Du hast nicht genug davon dabei!',
['storage'] = '~b~Auf Lager: ',
['storage_sold_out'] = '~r~Es sind nicht mehr genügend Artikel im Lager!',
['sold_item'] = 'Du hast ~b~%s %s~s~ für ~b~%s$~s~ verkauft.',
['sold_out'] = '~r~Dieses Item ist leider ausverkauft',
['not_has_license'] = 'Du hast keine ~g~',
['not_has_license2'] = '~s~ um den Shop zu öffnen.',
['already_has_weapon'] = 'Du hast diese Waffe bereits!',
['not_has_weapon'] = 'Du hast diese Waffe nicht!',
},
['en'] = {
['open_shop'] = 'Press ~g~E~s~ to open %s',
['open_shop_textui'] = 'Press E to open %s',
['buy'] = '~g~Buy',
['sell'] = '~r~Sell',
['amount'] = 'Amount',
['license'] = '',
['license_desc'] = '~b~You need to buy this license to buy ~y~%s~b~.',
['bought_license'] = 'You have bought a ~b~%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!",
['not_enough_money_black'] = "You don't have enough Blackmoney with you!",
['money'] = 'Cash',
['bank'] = 'Bankaccount',
['black_money'] = 'Blackmoney',
['bought_item'] = 'You have bought ~b~%s %s~s~ for ~b~%s.',
['not_enough_items'] = "You don't have enough with you!",
['storage'] = '~b~In Stock: ',
['storage_sold_out'] = '~r~There are not enough items in stock!',
['sold_item'] = 'You have sold ~b~%s %s~s~ for ~b~%s.',
['sold_out'] = '~r~This item is sold out',
['not_has_license'] = "You don't have a ~g~",
['not_has_license2'] = "~s~ to open this Shop.",
['already_has_weapon'] = 'You already have this weapon!',
['not_has_weapon'] = 'You do not have this Wepaon!',
},
}