Added Turkish translation

This commit is contained in:
Chris Kankiewicz
2021-10-21 14:47:04 -07:00
parent 0173075717
commit 878b969ea9
2 changed files with 21 additions and 0 deletions

20
app/translations/tr.yaml Normal file
View File

@@ -0,0 +1,20 @@
home: Anasayfa
download: Bu Dizini İndir
search: Arama
file:
name: Dosya Adı
size: Boyut
date: Tarih
info: Dosya Bilgisi
powered_by: Yapımcı
scroll_to_top: Yukarı Kaydır
toggle_theme: ık/Koyu Modu Değiştir
error:
directory_not_found: Dizin yok
file_not_found: Dosya bulunamadı
file_size_exceeded: Dosya boyutu çok büyük
no_results_found: Sonuç bulunamadı
unexpected: Beklenmedik bir hata oluştu
enable_debugging: Ek bilgi için hata ayıklamayı etkinleştirin

View File

@@ -30,6 +30,7 @@ class TranslationFactoryTest extends TestCase
$this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('pt-BR'));
$this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('ro'));
$this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('ru'));
$this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('tr'));
$this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('zh-CN'));
$this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('zh-TW'));
}