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

22 lines
612 B
Lua
Raw Normal View History

2024-12-29 20:03:28 +00:00
local Translations = {
error = {
["missing_something"] = "Birşeyleri kaçırıyormuşsun gibi görünüyor...",
["not_enough_police"] = "Yeterli polis yok..",
["door_open"] = "Kapı zaten açık..",
["process_cancelled"] = "İşlem iptal edildi..",
["didnt_work"] = "İşe yaramadı..",
["emty_box"] = "Kutu boş..",
},
success = {
["worked"] = "İşe yaradı!",
}
}
if GetConvar('qb_locale', 'en') == 'tr' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end