diff --git a/locales/cs.lua b/locales/cs.lua new file mode 100644 index 0000000..a5cfbbf --- /dev/null +++ b/locales/cs.lua @@ -0,0 +1,15 @@ +local Translations = { + ui = { + last_location = "Poslední pozice", + confirm = "Potvrdit", + where_would_you_like_to_start = "Kde chcete začít?", + } +} + +if GetConvar('qb_locale', 'en') == 'cs' then + Lang = Locale:new({ + phrases = Translations, + warnOnMissing = true, + fallbackLang = Lang, + }) +end