From ed203e4653488ab0d12e22d3518affd99dca8a16 Mon Sep 17 00:00:00 2001 From: Pedro Date: Fri, 30 May 2025 11:45:34 +0200 Subject: [PATCH] locales: added italian keys for notifications --- server/config/i18n.js | 2 +- server/config/locales/it-IT.json | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 server/config/locales/it-IT.json diff --git a/server/config/i18n.js b/server/config/i18n.js index 40d448f1..65ac402d 100644 --- a/server/config/i18n.js +++ b/server/config/i18n.js @@ -19,7 +19,7 @@ module.exports.i18n = { * */ - locales: ['en-GB', 'en-US', 'ru-RU'], + locales: ['en-GB', 'en-US', 'ru-RU', 'it-IT'], /** * diff --git a/server/config/locales/it-IT.json b/server/config/locales/it-IT.json new file mode 100644 index 00000000..13167262 --- /dev/null +++ b/server/config/locales/it-IT.json @@ -0,0 +1,13 @@ +{ + "Card Created": "Nuova task creata", + "Card Moved": "Task spostata", + "New Comment": "Nuovo commento", + "Test Title": "Titolo di test", + "This is a test text message!": "Questo è un messaggio di testo di test!", + "This is a *test* **markdown** `message`!": "Questo è un *test* **markdown** `messaggio`!", + "This is a test html message": "Questo è un test html messaggio", + "You Were Added to Card": "Sei stato aggiunto alla task", + "%s created %s in %s on %s": "%s ha creato %s in %s in %s", + "%s left a new comment to %s on %s": "%s ha commentato %s in %s", + "%s moved %s from %s to %s on %s": "%s ha spostato %s da %s a %s in %s" +}