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

22 lines
603 B
Lua
Raw Permalink Normal View History

2024-12-29 20:03:28 +00:00
local Translations = {
error = {
["missing_something"] = "Het lijkt erop dat je iets mist...",
["not_enough_police"] = "Niet genoeg politie..",
["door_open"] = "De deur is al open..",
["process_cancelled"] = "Proces geannuleerd..",
["didnt_work"] = "Het is niet gelukt..",
["emty_box"] = "De doos is leeg..",
},
success = {
["worked"] = "Het is gelukt!",
}
}
if GetConvar('qb_locale', 'en') == 'nl' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end