diff --git a/locale/cs.lua b/locale/cs.lua index 31f9780..199faac 100644 --- a/locale/cs.lua +++ b/locale/cs.lua @@ -12,7 +12,11 @@ local Translations = { no_valid_license = 'Nebyla nalezena žádná platná Rockstar licence', not_whitelisted = 'Nejste na whitelistu' }, - success = {}, + success = { + server_opened = 'Server byl otevřen', + server_closed = 'Server byl uzavřen', + teleported_waypoint = 'Teleportováno na Waypoint.', + }, info = { received_paycheck = 'Obdrželi jste výplatu v hodnotě $%{value}', job_info = 'Práce: %{value} | Pozice: %{value2} | Ve službě: %{value3}', @@ -22,7 +26,88 @@ local Translations = { checking_ban = 'Ahoj %s. Kontrolujeme zda nejste zabanováni.', join_server = 'Vítejte %s na {Server Name}.', checking_whitelisted = 'Ahoj %s. Kontrolujeme zda máte přístup.' - } + }, + command = { + tp = { + help = 'Teleport k hráči nebo na souřadnice (Pouze Admin)', + params = { + x = { name = 'id/x', help = 'ID hráče nebo X pozice'}, + y = { name = 'y', help = 'Y pozice'}, + z = { name = 'z', help = 'Z pozice'}, + }, + }, + tpm = { help = 'TP Na Marker (pouze Admin)' }, + togglepvp = { help = 'Přepnutí PVP na serveru (Pouze Admin)' }, + addpermission = { + help = 'Udělení hráči oprávnění (God Pouze)', + params = { + id = { name = 'id', help = 'ID hráče' }, + permission = { name = 'permission', help = 'Úroveň oprávnění' }, + }, + }, + removepermission = { + help = 'Odeber hráči oprávnění (God Pouze)', + params = { + id = { name = 'id', help = 'ID hráče' }, + permission = { name = 'permission', help = 'Úroveň oprávnění' }, + }, + }, + openserver = { help = 'Otevři server pro všechny (Pouze Admin)' }, + closeserver = { + help = 'Uzavři server pro všechny bez práv (Pouze Admin)', + params = { + reason = { name = 'reason', help = 'Důdov pro uzavření (optimální)' }, + }, + }, + car = { + help = 'Spawn Vozidla (Pouze Admin)', + params = { + model = { name = 'model', help = 'Jméno modelu vozidla' }, + }, + }, + dv = { help = 'Odstraň vozidlo (Pouze Admin)' }, + givemoney = { + help = 'Dej hráči peníze (Pouze Admin)', + params = { + id = { name = 'id', help = 'ID hráče' }, + moneytype = { name = 'moneytype', help = 'Typ (hotovost, banka, krypto)' }, + amount = { name = 'amount', help = 'Počet peněz' }, + }, + }, + setmoney = { + help = 'Nastav hráči peníze (Pouze Admin)', + params = { + id = { name = 'id', help = 'ID hráče' }, + moneytype = { name = 'moneytype', help = 'Typ (hotovost, banka, krypto)' }, + amount = { name = 'amount', help = 'Počet peněz' }, + }, + }, + job = { help = 'Zkontroluj si práci' }, + setjob = { + help = 'Nastav hráči práci (Pouze Admin)', + params = { + id = { name = 'id', help = 'ID hráče' }, + job = { name = 'job', help = 'Jméno práce' }, + grade = { name = 'grade', help = 'Jméno hodnosti' }, + }, + }, + gang = { help = 'Zkontroluj si gang' }, + setgang = { + help = 'Nastav hráči gang (Pouze Admin)', + params = { + id = { name = 'id', help = 'ID hráče' }, + gang = { name = 'gang', help = 'Jméno gangu' }, + grade = { name = 'grade', help = 'Pozice v gangu' }, + }, + }, + ooc = { help = 'OOC Chat' }, + me = { + help = 'Ukaž zprávu', + params = { + message = { name = 'message', help = 'Zpráva k odeslání' } + }, + }, + }, } if GetConvar('qb_locale', 'en') == 'cs' then diff --git a/shared/items.lua b/shared/items.lua index 3c5cee1..747de2c 100644 --- a/shared/items.lua +++ b/shared/items.lua @@ -379,7 +379,8 @@ QBShared.Items = { ['dendrogyra_coral'] = {['name'] = 'dendrogyra_coral', ['label'] = 'Dendrogyra', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'dendrogyra_coral.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Its also known as pillar coral'}, ['antipatharia_coral'] = {['name'] = 'antipatharia_coral', ['label'] = 'Antipatharia', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'antipatharia_coral.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Its also known as black corals or thorn corals'}, ['diving_gear'] = {['name'] = 'diving_gear', ['label'] = 'Diving Gear', ['weight'] = 30000, ['type'] = 'item', ['image'] = 'diving_gear.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'An oxygen tank and a rebreather'}, - + ['diving_fill'] = {['name'] = 'diving_fill', ['label'] = 'Diving Tube', ['weight'] = 3000, ['type'] = 'item', ['image'] = 'diving_tube.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['discription'] = 'An oxygen tube and a rebreather'}, + -- Other Tools ['casinochips'] = {['name'] = 'casinochips', ['label'] = 'Casino Chips', ['weight'] = 0, ['type'] = 'item', ['image'] = 'casinochips.png', ['unique'] = false, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Chips For Casino Gambling'}, ['stickynote'] = {['name'] = 'stickynote', ['label'] = 'Sticky note', ['weight'] = 0, ['type'] = 'item', ['image'] = 'stickynote.png', ['unique'] = true, ['useable'] = false, ['shouldClose'] = false, ['combinable'] = nil, ['description'] = 'Sometimes handy to remember something :)'},