Turkish language implementation for i18n (#576)
* turkish language support implemented * tr as string in module declaration * missing key Plugin Keys implementation * synonyms is used to get rid of confusion and to avoid repetition. The word “synonym” is derived from the Greek word “syn” meaning “together” and “onym” meaning “name” while in Turkish name and noun can be translated as both "ad" and "isim" * //
This commit is contained in:
parent
9e4c5ca4ff
commit
5f0d1cb7ca
|
@ -21,6 +21,7 @@ module.exports = {
|
|||
"vi",
|
||||
"zh",
|
||||
"ar",
|
||||
"tr",
|
||||
],
|
||||
},
|
||||
localePath:
|
||||
|
|
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"OpenAI API Key Required": "OpenAI API Anahtarı Gerekli",
|
||||
"Please set your OpenAI API key in the bottom left of the sidebar.": "Lütfen OpenAI API anahtarınızı yan çubuğun sol altınan'dan ayarlayın.",
|
||||
"Stop Generating": "Durdur",
|
||||
"Prompt limit is {{maxLength}} characters": "Prompt sınırı {{maxLength}} karakterdir",
|
||||
"System Prompt": "Sistem Prompt",
|
||||
"You are ChatGPT, a large language model trained by OpenAI. Follow the user's instructions carefully. Respond using markdown.": "Sen ChatGPT'sin, OpenAI tarafından eğitilmiş büyük bir dil modelisin. Kullanıcının talimatlarını dikkatlice takip et. Yanıtını markdown kullanarak ver.",
|
||||
"Enter a prompt": "Bir prompt girin",
|
||||
"Regenerate response": "Yanıtı Yeniden Oluştur",
|
||||
"Sorry, there was an error.": "Üzgünüm, bir hata oluştu.",
|
||||
"Model": "Model",
|
||||
"Conversation": "Sohbet",
|
||||
"OR": "VEYA",
|
||||
"Loading...": "Yükleniyor...",
|
||||
"Type a message...": "Bir mesaj yazın...",
|
||||
"Error fetching models.": "Modeller getirilirken hata oluştu.",
|
||||
"AI": "Yapay Zeka",
|
||||
"You": "Sen",
|
||||
"Cancel": "İptal",
|
||||
"Save & Submit": "Kaydet ve Gönder",
|
||||
"Make sure your OpenAI API key is set in the bottom left of the sidebar.": "OpenAI API anahtarınızın yan çubuğun sol altında ayarlandığından emin ol.",
|
||||
"If you completed this step, OpenAI may be experiencing issues.": "Bu adımı tamamladıysanız, OpenAI sorun yaşıyor olabilir.",
|
||||
"click if using a .env.local file": "Eğer .env.local dosyası kullanıyorsanız tıklayın",
|
||||
"Message limit is {{maxLength}} characters. You have entered {{valueLength}} characters.": "Mesaj sınırı {{maxLength}} karakterdir. {{valueLength}} karakter girdiniz.",
|
||||
"Please enter a message": "Lütfen bir mesaj girin",
|
||||
"Chatbot UI is an advanced chatbot kit for OpenAI's chat models aiming to mimic ChatGPT's interface and functionality.": "Chatbot UI, ChatGPT'nin arayüz ve işlevselliğini taklit etmeyi amaçlayan OpenAI'in sohbet modelleri için gelişmiş bir sohbetbot kitidir.",
|
||||
"Are you sure you want to clear all messages?": "Tüm mesajları temizlemek istediğinize emin misiniz?"
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
{}
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"Copy code": "Kodu kopyala",
|
||||
"Copied!": "Kopyalandi!",
|
||||
"Enter file name": "Dosya ismi gir"
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"New prompt": "Yeni prompt",
|
||||
"New folder": "Yeni klasör",
|
||||
"No prompts.": "Prompt yok.",
|
||||
"Search prompts...": "Prompt'ları ara...",
|
||||
"Name": "İsim",
|
||||
"Description": "Açıklama",
|
||||
"A description for your prompt.": "Prompt'unuz için bir açıklama.",
|
||||
"Prompt": "Prompt",
|
||||
"Prompt content. Use {{}} to denote a variable. Ex: {{name}} is a {{adjective}} {{noun}}": "Prompt içeriği. Değişken belirtmek için {{}} kullanın. Örn: {{ad}} bir {{sıfat}} {{isim}}",
|
||||
"Save": "Kaydet"
|
||||
}
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"New folder": "Yeni klasör",
|
||||
"New chat": "Yeni sohbet",
|
||||
"No conversations.": "Hiçbir konuşma yok.",
|
||||
"Search conversations...": "Sohbetleri ara...",
|
||||
"OpenAI API Key": "OpenAI API Anahtarı",
|
||||
"Import data": "Veri içe aktar",
|
||||
"Are you sure?": "Emin misiniz?",
|
||||
"Clear conversations": "Konuşmaları temizle",
|
||||
"Export data": "Veri dışa aktar",
|
||||
"Dark mode": "Karanlık mod",
|
||||
"Light mode": "Aydınlık mod",
|
||||
"Plugin Keys": "Plugin Anahtarları"
|
||||
}
|
Loading…
Reference in New Issue