From ca826e1499256354bf203cc46d53fc72a348fbf0 Mon Sep 17 00:00:00 2001 From: Muhammed Developer <56224780+muhammed10100@users.noreply.github.com> Date: Sat, 19 Feb 2022 09:34:01 +0300 Subject: [PATCH] feat (locale/tr): Added turkish locale. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Türkçe Karakter Yer Almakta --- locale/tr.lua | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 locale/tr.lua diff --git a/locale/tr.lua b/locale/tr.lua new file mode 100644 index 0000000..b66ab2c --- /dev/null +++ b/locale/tr.lua @@ -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 +})