mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 01:01:24 +00:00
43b74b7778
Just another one for the translations
26 lines
891 B
Lua
26 lines
891 B
Lua
local Translations = {
|
|
error = {
|
|
not_online = 'Spiller ikke online',
|
|
wrong_format = 'ugyldigt format',
|
|
missing_args = 'Ikke alle argumenter er udfyldt (x, y, z)',
|
|
missing_args2 = 'Alle argumenter skal være udfyldt!',
|
|
no_access = 'Ingen adgang til denne command',
|
|
company_too_poor = 'Din ansat er fattig',
|
|
item_not_exist = 'Enheden eksistere ikke',
|
|
too_heavy = 'Dit inventory er for fyldt'
|
|
},
|
|
success = {},
|
|
info = {
|
|
received_paycheck = 'Du modtog din lønseddel på %{value} DKK',
|
|
job_info = 'Arbejde: %{value} | Grad: %{value2} | Job: %{value3}',
|
|
gang_info = 'Bande: %{value} | Grad: %{value2}',
|
|
on_duty = 'Du er nu på arbejde, god arbejdslyst!',
|
|
off_duty = 'Du er gået af arbejde!'
|
|
}
|
|
}
|
|
|
|
Lang = Locale:new({
|
|
phrases = Translations,
|
|
warnOnMissing = true
|
|
})
|