2025-04-05 22:25:06 +00:00

15 lines
357 B
Lua

local Translations = {
ui = {
last_location = "Seneste Placering",
confirm = "Bekræft",
where_would_you_like_to_start = "Hvor vil du gerne starte?",
}
}
if GetConvar('qb_locale', 'en') == 'da' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end