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

16 lines
369 B
Lua

local Translations = {
ui = {
last_location = "Última ubicación",
confirm = "Confirmar",
where_would_you_like_to_start = "¿Por dónde te gustaría empezar?",
}
}
if GetConvar('qb_locale', 'en') == 'es' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end