Skip to content

Commit

Permalink
feat(locales): czech (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepanvalic authored Nov 6, 2023
1 parent 5b92c5d commit 752c78b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions locales/cs.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
local Translations = {
not_on_channel = 'Nejsi připojen k žádnému kanálu',
on_channel = 'Již jsi připojen k tomuto kanálu',
joined_radio = 'Připojil jsi se k: ',
restricted_channel = 'Nemůžeš se připojit k tomuto kanálu',
invalid_channel = 'Tato frekvence není k dispozici',
left_channel = 'Odešel jsi z kanálu',
min_volume = 'Rádio je již nastaveno na nejnižší hlasitost',
max_volume = 'Rádio je již nastaveno na maximální hlasitost',
new_volume = 'Nová hlasitost: ',
new_channel = 'Nový kanál: '
}

if GetConvar('qb_locale', 'en') == 'cs' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end
--translate by stepan_valic

0 comments on commit 752c78b

Please sign in to comment.