-
Notifications
You must be signed in to change notification settings - Fork 383
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
118126b
commit 30828cc
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
local Translations = { | ||
progress = { | ||
['snowballs'] = 'Sbíráš sněhové koule..', | ||
}, | ||
notify = { | ||
['failed'] = 'Nepovedlo se', | ||
['canceled'] = 'Zrušeno', | ||
['vlocked'] = 'Vozidlo uzamčeno', | ||
['notowned'] = 'Tento předmět nevlastníš!', | ||
['missitem'] = 'Nemáš tento předmět!', | ||
['nonb'] = 'Nikdo v okolí není!', | ||
['noaccess'] = 'Nepřístupné', | ||
['nosell'] = 'Tento předmět nemůžeš prodat.', | ||
['itemexist'] = 'Předmět neexistuje', | ||
['notencash'] = 'Nemáš dost hotovosti..', | ||
['noitem'] = 'Nemáš správné předměty..', | ||
['gsitem'] = 'Nemůžeš si dát předmět sám sobě?', | ||
['tftgitem'] = 'Jsi příliš daleko na to, aby sis dal předmět!', | ||
['infound'] = 'Předmět, který se snažíš dát, nebyl nalezen!', | ||
['iifound'] = 'Nalezen nesprávný předmět, zkus to znovu!', | ||
['gitemrec'] = 'Dostal jsi ', | ||
['gitemfrom'] = ' Od ', | ||
['gitemyg'] = 'Dal jsi ', | ||
['gitinvfull'] = 'Inventář druhého hráče je plný!', | ||
['giymif'] = 'Tvůj inventář je plný!', | ||
['gitydhei'] = 'Nemáš dost tohoto předmětu', | ||
['gitydhitt'] = 'Nemáš dost předmětů na přenos', | ||
['navt'] = 'Neplatný typ..', | ||
['anfoc'] = 'Argumenty nejsou správně vyplněny..', | ||
['yhg'] = 'Dal jsi ', | ||
['cgitem'] = 'Nelze dát předmět!', | ||
['idne'] = 'Předmět neexistuje', | ||
['pdne'] = 'Hráč není online', | ||
}, | ||
inf_mapping = { | ||
['opn_inv'] = 'Otevři inventář', | ||
['tog_slots'] = 'Přepíná sloty klávesových zkratek', | ||
['use_item'] = 'Používá předmět ve slotu ', | ||
}, | ||
menu = { | ||
['vending'] = 'Automat', | ||
['bin'] = 'Otevři kontejner', | ||
['craft'] = 'Craft', | ||
['o_bag'] = 'Otevři tašku', | ||
}, | ||
interaction = { | ||
['craft'] = '~g~E~w~ - Craft', | ||
}, | ||
} | ||
|
||
if GetConvar('qb_locale', 'en') == 'cs' then | ||
Lang = Locale:new({ | ||
phrases = Translations, | ||
warnOnMissing = true, | ||
fallbackLang = Lang, | ||
}) | ||
end |