-
Notifications
You must be signed in to change notification settings - Fork 11
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
5b92c5d
commit 752c78b
Showing
1 changed file
with
21 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,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 |