Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(i18n): turkish language added #306

Merged
merged 1 commit into from
May 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/client/i18n.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
locales: ["en", "da", "de", "es", "fr", "no", "pt", "se", "tl", "it", "he"],
locales: ["en", "da", "de", "es", "fr", "no", "pt", "se", "tl", "it", "he", "tr"],
defaultLocale: "en",
pages: {
"*": ["peppermint"],
Expand Down
86 changes: 86 additions & 0 deletions apps/client/locales/tr/peppermint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{
"hello_good": "",
"hello_morning": "Günaydın",
"hello_afternoon": "Tünaydın",
"sl_dashboard": "Özet Tablo",
"sl_tickets": "Destek Biletleri",
"sl_history": "Geçmiş",
"sl_notebook": "Kişisel Not Defteri",
"sl_users": "Kullanıcılar",
"sl_clients": "Müşteriler",
"sl_settings": "Ayarlar",
"open_tickets": "Açık Destek Biletleri",
"completed_tickets": "Tamamlanan Destek Biletleri",
"account_status": "Hesap Durumu",
"todo_list": "Yapılacaklar Listesi",
"personal_files": "Kişisel Dosyalar",
"create_ticket": "Destek Bileti Oluştur",
"ticket_new": "Yeni Destek Bileti",
"ticket_name_here": "İsim",
"ticket_email_here": "E-posta",
"ticket_details": "Başlık",
"ticket_select_client": "Müşteri Seç",
"ticket_select_eng": "Mühendis Seç",
"ticket_extra_details": "Buraya ekstra detayları yazınız... markdown desteklenir",
"cancel": "İptal",
"create": "Oluştur",
"low": "Düşük",
"normal": "Normal",
"high": "Yüksek",
"edit-btn": "Düzenle",
"reset_password": "Parola Sıfırla",
"internal_users": "Dahili Kullanıcılar",
"clients": "Müşteriler",
"new_user": "Yeni Kullanıcı",
"new_client": "Yeni Müşteri",
"previous": "Önceki",
"next": "Sonraki",
"show": "Göster",
"name": "İsim",
"email": "E-posta",
"settings": "Ayarlar",
"webhooks": "Web Kancaları",
"version": "Versiyon",
"v_profile": "Profili Görüntüle",
"reminders": "Hatırlatıcılar",
"title": "Başlık",
"priority": "Öncelik",
"status": "Durum",
"created": "Oluşturuldu",
"assigned_to": "Atanan Kişi",
"enter_todo": "Yapılacak Ekle",
"notebooks": "Not Defterleri",
"notebooks_description": "Bu kişisel bir not defteridir. Burada notları, bağlantıları, kod parçacıklarını vb. kaydedebilirsiniz.",
"create_notebook": "Not Defteri Oluştur",
"open": "Açık",
"assigned_to_me": "Bana Ata",
"unassigned": "Atanmamış",
"closed": "Kapalı",
"description": "Açıklama",
"comments": "Yorumlar",
"leave_comment": "Yorum Yap",
"close_issue": "Bileti Kapat",
"comment": "Yorum",
"save": "Kaydet",
"labels": "Etiketler",
"created_at": "Oluşturulma Tarihi",
"updated_at": "Güncellenme Tarihi",
"hide_ticket": "Destek Biletini Gizli Yap",
"show_ticket": "Destek Biletini Görünür Yap",
"open_issue": "Açık Bilet",
"closed_issue": "Kapalı Bilet",
"recent_tickets": "Son Destek Biletileri",
"notebook_title": "Not Defteri Başlığı",
"admin_settings": "Yönetici Ayarları",
"profile": "Profil",
"logout": "Çıkış Yap",
"unassigned_tickets": "Atanmamış Destek Biletileri",
"profile_desc": "Bu bilgiler herkese açık olarak görüntülenecektir, bu nedenle ne paylaştığınıza dikkat edin.",
"language": "Dil",
"notifications": "Bildirimler",
"save_and_reload": "Kaydet ve Yenile",
"select_a_client": "Bir müşteri seç",
"select_an_engineer": "Bir mühendis seç",
"ticket_create": "Destek Bileti Oluştur",
"internallycommented_at": "Dahili Yorum Yapan"
}
1 change: 1 addition & 0 deletions apps/client/pages/admin/users/internal/new.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ export default function CreateUser() {
<option value="pt">Portuguese</option>
<option value="it">Italiano</option>
<option value="he">Hebrew</option>
<option value="tr">Turkish</option>
</select>
</div>
<div>
Expand Down
1 change: 1 addition & 0 deletions apps/client/pages/auth/register.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ export default function Login({}) {
<option value="pt">Portuguese</option>
<option value="it">Italiano</option>
<option value="he">Hebrew</option>
<option value="tr">Turkish</option>
</select>
</div>
</div>
Expand Down
1 change: 1 addition & 0 deletions apps/client/pages/settings/profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ export default function UserProfile() {
<option value="pt">Portuguese</option>
<option value="it">Italiano</option>
<option value="he">Hebrew</option>
<option value="tr">Turkish</option>
</select>
</div>
</div>
Expand Down