16 lines
382 B
Lua
16 lines
382 B
Lua
local Translations = {
|
|
ui = {
|
|
last_location = "Dernière position",
|
|
confirm = "Confirmer",
|
|
where_would_you_like_to_start = "Où souhaiteriez-vous commencer?",
|
|
}
|
|
}
|
|
|
|
if GetConvar('qb_locale', 'en') == 'fr' then
|
|
Lang = Locale:new({
|
|
phrases = Translations,
|
|
warnOnMissing = true,
|
|
fallbackLang = Lang,
|
|
})
|
|
end
|