forked from kac5a/k5_shops
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocale.lua
16 lines (16 loc) · 865 Bytes
/
locale.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Config.Locales['en'] = {
['IncorrectJob'] = 'You are not in the correct job to access this shop',
['AlreadyOpen'] = 'The shop you are trying to access is already open',
['NotEnoughCash'] = "You don't have enough cash on you",
['NotEnoughBank'] = "You don't have enough money on your bank account",
['NotEnoughBlackMoney'] = "You don't have enough black money on you",
['CantCarry'] = "You couldn't carry some of the items",
}
Config.Locales['hu'] = {
['IncorrectJob'] = 'Nem vagy megfelelő munkában, hogy hozzáférj a bolthoz',
['AlreadyOpen'] = 'Valaki más már használja a boltot',
['NotEnoughCash'] = "Nincs nálad elég készpénz",
['NotEnoughBank'] = "Nincs elég pénz a bankszámládon",
['NotEnoughBlackMoney'] = "Nincs nálad elég piszkos pénz",
['CantCarry'] = "Néhány tárgyat nem bírtál el",
}