From f1fcf9d7ebc16451c1565c3e04c31ad3c9a6a1f4 Mon Sep 17 00:00:00 2001 From: symonbaikov Date: Sat, 12 Jul 2025 23:53:07 +0300 Subject: [PATCH] Add Greek translations for notification messages and update i18n config --- server/config/i18n.js | 13 ++++++++++++- server/config/locales/el-GR.json | 16 ++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 server/config/locales/el-GR.json diff --git a/server/config/i18n.js b/server/config/i18n.js index 6cf4bb17..af5fed63 100644 --- a/server/config/i18n.js +++ b/server/config/i18n.js @@ -19,7 +19,18 @@ module.exports.i18n = { * */ - locales: ['de-DE', 'en-GB', 'en-US', 'es-ES', 'fr-FR', 'it-IT', 'ru-RU', 'tr-TR', 'fi-FI'], + locales: [ + 'de-DE', + 'el-GR', + 'en-GB', + 'en-US', + 'es-ES', + 'fr-FR', + 'it-IT', + 'ru-RU', + 'tr-TR', + 'fi-FI', + ], /** * diff --git a/server/config/locales/el-GR.json b/server/config/locales/el-GR.json new file mode 100644 index 00000000..1293356b --- /dev/null +++ b/server/config/locales/el-GR.json @@ -0,0 +1,16 @@ +{ + "Card Created": "Η κάρτα δημιουργήθηκε", + "Card Moved": "Η κάρτα μετακινήθηκε", + "New Comment": "Νέο σχόλιο", + "Test Title": "Τίτλος δοκιμής", + "This is a test text message!": "Αυτό είναι ένα δοκιμαστικό μήνυμα!", + "This is a *test* **markdown** `message`!": "Αυτό είναι ένα *δοκιμαστικό* **markdown** `μήνυμα`!", + "This is a test html message": "Αυτό είναι ένα δοκιμαστικό html μήνυμα", + "You Were Added to Card": "Προστέθηκες στην κάρτα", + "You Were Mentioned in Comment": "Αναφέρθηκες σε σχόλιο", + "%s added you to %s on %s": "%s σε πρόσθεσε στο %s στο %s", + "%s created %s in %s on %s": "%s δημιούργησε το %s στο %s στο %s", + "%s left a new comment to %s on %s": "%s άφησε νέο σχόλιο στο %s στο %s", + "%s mentioned you in %s on %s": "%s σε ανέφερε στο %s στο %s", + "%s moved %s from %s to %s on %s": "%s μετακίνησε το %s από το %s στο %s στο %s" +}