feat (locale/tr): Added turkish locale.

Türkçe Karakter Yer Almakta
This commit is contained in:
Muhammed Developer
2022-02-19 09:34:01 +03:00
committed by GitHub
parent 3cb435b737
commit ca826e1499
+25
View File
@@ -0,0 +1,25 @@
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
})