Scripts/resources/[qb]/[qb_crimes]/qb-houserobbery/locales/fi.lua

22 lines
608 B
Lua
Raw Permalink Normal View History

2024-12-29 20:03:28 +00:00
local Translations = {
error = {
["missing_something"] = "Näyttää siltä että sinulta puuttuu jotain...",
["not_enough_police"] = "Ei tarpeaksi poliiseita..",
["door_open"] = "Tämä ovi on jo avattu..",
["process_cancelled"] = "Peruttu..",
["didnt_work"] = "Eipä toiminut..",
["emty_box"] = "The Box Is Empty..",
},
success = {
["worked"] = "Se toimi!",
}
}
if GetConvar('qb_locale', 'en') == 'fi' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end