Files
qb-core/locale/tr.lua
T
Muhammed Developer ca826e1499 feat (locale/tr): Added turkish locale.
Türkçe Karakter Yer Almakta
2022-02-19 17:34:01 +11:00

26 lines
859 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 = {
not_online = 'Oyuncu çevrimiçi değil',
wrong_format = 'Yanlış birim',
missing_args = 'Her argüman girilmedi (x, y, z)',
missing_args2 = 'Tüm argümanlar doldurulmalıdır!',
no_access = 'Bu komuta erişim yok',
company_too_poor = 'İşvereniniz bozuk',
item_not_exist = 'Öğe mevcut değil',
too_heavy = 'Envanter çok dolu'
},
success = {},
info = {
received_paycheck = 'Maaş çekinizi aldınız $%{value}',
job_info = 'İş: %{value} | Seviye: %{value2} | Görev: %{value3}',
gang_info = 'Çete: %{value} | Seviye: %{value2}',
on_duty = 'Şimdi görev başındasın!',
off_duty = 'Şimdi görevden alındın!'
}
}
Lang = Locale:new({
phrases = Translations,
warnOnMissing = true
})