Scripts/resources/[qb]/[qb_crimes]/qb-houserobbery/locales/tr.lua
2024-12-29 21:03:28 +01:00

22 lines
612 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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