From 76c7be50636afdcee264d7a6bd9bfdc4479a531a Mon Sep 17 00:00:00 2001 From: Symon Baikov Date: Mon, 7 Jul 2025 12:47:21 +0300 Subject: [PATCH] fix: Update German translation (#1235) --- server/config/i18n.js | 2 +- server/config/locales/de-DE.json | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 server/config/locales/de-DE.json diff --git a/server/config/i18n.js b/server/config/i18n.js index dab3b812..22c4c5fd 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: ['de-DE', 'en-GB', 'en-US', 'es-ES', 'it-IT', 'ru-RU'], /** * diff --git a/server/config/locales/de-DE.json b/server/config/locales/de-DE.json new file mode 100644 index 00000000..ceb546df --- /dev/null +++ b/server/config/locales/de-DE.json @@ -0,0 +1,16 @@ +{ + "Card Created": "Karte erstellt", + "Card Moved": "Karte verschoben", + "New Comment": "Neuer Kommentar", + "Test Title": "Testtitel", + "This is a test text message!": "Dies ist eine Test-Textnachricht!", + "This is a *test* **markdown** `message`!": "Dies ist eine *Test*-**Markdown**-`Nachricht`!", + "This is a test html message": "Dies ist eine Test-HTML-Nachricht", + "You Were Added to Card": "Sie wurden zur Karte hinzugefügt", + "You Were Mentioned in Comment": "Sie wurden in einem Kommentar erwähnt", + "%s added you to %s on %s": "%s hat Sie zu %s am %s hinzugefügt", + "%s created %s in %s on %s": "%s hat %s in %s am %s erstellt", + "%s left a new comment to %s on %s": "%s hat einen neuen Kommentar zu %s am %s hinterlassen", + "%s mentioned you in %s on %s": "%s hat Sie in %s am %s erwähnt", + "%s moved %s from %s to %s on %s": "%s hat %s von %s nach %s am %s verschoben" +}