Files
qb-core/locale/tr.lua
T
2022-09-04 00:46:21 +03:00

35 lines
1.4 KiB
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 = {
not_online = 'Oyuncu çevrimiçi değil.',
wrong_format = 'Yanlış format.',
missing_args = 'Hiçbir argüman girilmedi. (x, y, z)',
missing_args2 = 'Tüm argümanlar doldurulmalıdır.',
no_access = 'Bu komuta erişimin yok.',
company_too_poor = 'Şirketin hiç parası yok.',
item_not_exist = 'Eşya mevcut değil.',
too_heavy = 'Envanter çok dolu',
duplicate_license = 'Aynı rockstar lisansı zaten şu an sunucuda!',
no_valid_license = 'Geçerli bir rockstar lisans bulunamadı.',
not_whitelisted = 'Bu sunucuda whitelistin yok.'
},
success = {},
info = {
received_paycheck = '$%{value} tutarında bir maaş çeki aldın.',
job_info = 'İş: %{value} | Seviye: %{value2} | Görev: %{value3}',
gang_info = 'Çete: %{value} | Seviye: %{value2}',
on_duty = 'Mesaiye girdin.',
off_duty = 'Mesaiden çıktın.',
checking_ban = 'Merhaba %s. Banlı mısın diye kontrol ediyoruz.',
join_server = 'Merhaba %s. {Server Name} adlı sunucumuza hoş geldin.',
checking_whitelisted = 'Merhaba %s. Whitelist\'in var mı diye kontrol ediyoruz.'
}
}
if GetConvar('qb_locale', 'en') == 'tr' then
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true,
fallbackLang = Lang,
})
end