From fee2560faebe7f19309eda2c5b1bd274cfd15918 Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Sun, 15 Feb 2026 16:58:18 +0100 Subject: [PATCH] make i18next shut up --- src/api/middlewares/Translation.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api/middlewares/Translation.ts b/src/api/middlewares/Translation.ts index 3ca204b65..5e698c406 100644 --- a/src/api/middlewares/Translation.ts +++ b/src/api/middlewares/Translation.ts @@ -42,6 +42,7 @@ export async function initTranslation(router: Router) { loadPath: path.join(ASSET_FOLDER_PATH, "locales") + "/{{lng}}/{{ns}}.json", }, load: "all", + showSupportNotice: false, }); router.use(i18nextMiddleware.handle(i18next, {}));