init commit

This commit is contained in:
unknown
2023-11-08 17:52:35 -08:00
parent 2e903cb642
commit 5173547b24
14 changed files with 553 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
local Translations = {
error = {
["canceled"] = "تم الالغاء",
["take_off"] = "/divingsuit لنزع بدلة الغوص الخاصة بك",
["not_wearing"] = "أنت لا ترتدي معدات الغوص",
["not_standing_up"] = "الوقوف لاستخدام خزان الأكسجين",
},
success = {
["took_out"] = "جاري اخد لباس الغوض",
},
info = {
["put_suit"] = "وضعت بدلة الغوص",
["pullout_suit"] = "ترك بدلة الغوص",
},
warning = {
["oxygen_one_minute"] = "لديك أقل من ستين ثانية متبقية",
["oxygen_running_out"] = "الأكسجين ينفد منك",
},
}
if GetConvar('qb_locale', 'en') == 'ar' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end