From f2d2bd850737c903a963a01fbe122be0365d4971 Mon Sep 17 00:00:00 2001 From: symonbaikov Date: Sun, 6 Jul 2025 19:55:14 +0300 Subject: [PATCH] feat: Add Turkish localization support Added 'tr-TR' locale to the i18n configuration and created the corresponding translation file for Turkish. --- server/config/i18n.js | 2 +- server/config/locales/tr-TR.json | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 server/config/locales/tr-TR.json diff --git a/server/config/i18n.js b/server/config/i18n.js index dab3b812..07395457 100644 --- a/server/config/i18n.js +++ b/server/config/i18n.js @@ -19,7 +19,7 @@ module.exports.i18n = { * */ - locales: ['en-GB', 'en-US', 'es-ES', 'it-IT', 'ru-RU'], + locales: ['en-GB', 'en-US', 'es-ES', 'it-IT', 'ru-RU', 'tr-TR'], /** * diff --git a/server/config/locales/tr-TR.json b/server/config/locales/tr-TR.json new file mode 100644 index 00000000..53999cf9 --- /dev/null +++ b/server/config/locales/tr-TR.json @@ -0,0 +1,16 @@ +{ + "Card Created": "Kart oluşturuldu", + "Card Moved": "Kart taşındı", + "New Comment": "Yeni yorum", + "Test Title": "Test başlığı", + "This is a test text message!": "Bu bir test metin mesajıdır!", + "This is a *test* **markdown** `message`!": "Bu bir *test* **markdown** `mesajı`!", + "This is a test html message": "Bu bir test html mesajı", + "You Were Added to Card": "Karta eklendiniz", + "You Were Mentioned in Comment": "Bir yorumda bahsedildiniz", + "%s added you to %s on %s": "%s sizi %s'ye %s tarihinde ekledi", + "%s created %s in %s on %s": "%s, %s'i %s içinde %s tarihinde oluşturdu", + "%s left a new comment to %s on %s": "%s, %s'ye %s tarihinde yeni bir yorum bıraktı", + "%s mentioned you in %s on %s": "%s, %s içinde %s tarihinde sizden bahsetti", + "%s moved %s from %s to %s on %s": "%s, %s'yi %s'den %s'ye %s tarihinde taşıdı" +}