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

21 lines
634 B
Lua
Raw Permalink Normal View History

2024-12-29 20:03:28 +00:00
local Translations = {
error = {
["missing_something"] = "Se pare ca-ti lipseste ceva...",
["not_enough_police"] = "Insuficiente forte de ordine disponibile..",
["door_open"] = "Usa este deja deschisa..",
["process_cancelled"] = "Actiune anulata..",
["didnt_work"] = "Se pare ca nu a functionat..",
["emty_box"] = "Nu am gasit nimic, cutia e goala..",
},
success = {
["worked"] = "Excelent, a functionat!",
},
}
if GetConvar('qb_locale', 'en') == 'ro' then
Lang = Lang or Locale:new({
phrases = Translations,
warnOnMissing = true
})
end