mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 16:01:29 +00:00
29 lines
1009 B
Lua
29 lines
1009 B
Lua
local Translations = {
|
|
error = {
|
|
not_online = 'Pelaaja ei ole paikalla',
|
|
wrong_format = 'Virheellinen muoto',
|
|
missing_args = 'Kaikkia argumentteja ei ole syötetty (x, y, z)',
|
|
missing_args2 = 'Kaikkia argumentteja ei ole syötetty!',
|
|
no_access = 'Sinulla ei ole oikeuksia kyseiseen komentoon',
|
|
company_too_poor = 'Sinun firmasi on liian köyhä',
|
|
item_not_exist = 'Tätä itemiä ei ole olemassa',
|
|
too_heavy = 'Reppusi on liian täynnä'
|
|
},
|
|
success = {},
|
|
info = {
|
|
received_paycheck = 'Sinä sait palkan $%{value}',
|
|
job_info = 'Työ: %{value} | Arvo: %{value2} | Vuorossa: %{value3}',
|
|
gang_info = 'Jengi: %{value} | Arvo: %{value2}',
|
|
on_duty = 'Sinä olet nyt vuorossa!',
|
|
off_duty = 'Sinä poistuit vuorosta!'
|
|
}
|
|
}
|
|
|
|
if GetConvar('qb_locale', 'en') == 'fi' then
|
|
Lang = Locale:new({
|
|
phrases = Translations,
|
|
warnOnMissing = true,
|
|
fallbackLang = Lang,
|
|
})
|
|
end
|