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

22 lines
646 B
Lua
Raw Normal View History

2024-12-29 20:03:28 +00:00
local Translations = {
error = {
["missing_something"] = "يبدو أنك تفتقد شيئًا ما",
["not_enough_police"] = "لا يوجد ما يكفي من الشرطة",
["door_open"] = "الباب مفتوح بالفعل",
["process_cancelled"] = "تم الالغاء",
["didnt_work"] = "إنها لا تعمل",
["emty_box"] = "الصندوق فارغ",
},
success = {
["worked"] = "تم",
}
}
if GetConvar('qb_locale', 'en') == 'ar' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end