mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 17:28:56 +00:00
26 lines
883 B
Lua
26 lines
883 B
Lua
local Translations = {
|
|
error = {
|
|
not_online = 'Spelaren är inte online',
|
|
wrong_format = 'Felaktigt format',
|
|
missing_args = 'Alla argument har inte angetts (x, y, z)',
|
|
missing_args2 = 'Alla argument måste fyllas i!',
|
|
no_access = 'Du har inte tillgång till detta kommando',
|
|
company_too_poor = 'Din arbetsgivare är pank',
|
|
item_not_exist = 'Objektet finns inte',
|
|
too_heavy = 'Din inventory är full!'
|
|
},
|
|
success = {},
|
|
info = {
|
|
received_paycheck = 'Du fick din lönecheck på SEK%{value}',
|
|
job_info = 'Jobb: %{value} | Grad: %{value2} | Tjänst: %{value3}',
|
|
gang_info = 'Gäng: %{value} | Grad: %{value2}',
|
|
on_duty = 'Du är nu i tjänst!',
|
|
off_duty = 'Du har gått ur tjänst!'
|
|
}
|
|
}
|
|
|
|
Lang = Locale:new({
|
|
phrases = Translations,
|
|
warnOnMissing = true
|
|
})
|