mirror of
https://github.com/qbcore-fivem/qb-core.git
synced 2026-08-29 17:28:56 +00:00
35 lines
1.4 KiB
Lua
35 lines
1.4 KiB
Lua
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
|