From 8d8463ae413f8feb86ae4af397ee07192490e94c Mon Sep 17 00:00:00 2001 From: angioletto Date: Thu, 13 Nov 2025 20:57:52 +0100 Subject: [PATCH] Add Italian language support to HelpDoc --- frontend/src/locale/src/HelpDoc/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/locale/src/HelpDoc/index.ts b/frontend/src/locale/src/HelpDoc/index.ts index ad11af16..339b8b4c 100644 --- a/frontend/src/locale/src/HelpDoc/index.ts +++ b/frontend/src/locale/src/HelpDoc/index.ts @@ -4,8 +4,9 @@ import * as ja from "./ja/index"; import * as sk from "./sk/index"; import * as zh from "./zh/index"; import * as pl from "./pl/index"; +import * as it from "./it/index"; -const items: any = { en, de, ja, sk, zh, pl }; +const items: any = { en, de, ja, sk, zh, pl, it }; const fallbackLang = "en";