Skip to content

Commit

Permalink
Added cs.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
JsemMarney authored Jul 22, 2024
1 parent 8620a07 commit c20ca20
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions locales/cs.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
local Translations = {
success = {
withdraw = 'Výběr byl úspěšný',
deposit = 'Deposit byl úspěšný',
transfer = 'Převod byl úspěšný',
account = 'Účet vytvořen',
rename = 'Účet přejmenován',
delete = 'Účet smazán',
userAdd = 'Uživatel přidán',
userRemove = 'Uživatel odstraněn',
card = 'Karta vytvořena',
give = '$%s peníze dány',
receive = '$%s peníze získány',
},
error = {
error = 'Došlo k chybě',
access = 'Neautorizováno',
account = 'Účet nebyl nalezen',
accounts = 'Max. počet vytvořených účtů',
user = 'Uživatel již přidán',
noUser = 'Uživatel nenalezen',
money = 'Nedostatek peněz',
pin = 'Neplatný PIN',
card = 'Nenalezena žádná bankovní karta',
amount = 'Neplatná částka',
toofar = 'Jsi příliš daleko',
},
progress = {
atm = 'Zadávaš PIN do bankomatu',
}
}

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

0 comments on commit c20ca20

Please sign in to comment.