From b7c7a62049899b6007e05c47ccceb1cd28b10aa5 Mon Sep 17 00:00:00 2001 From: woobs Date: Thu, 12 Mar 2026 13:10:54 -0500 Subject: [PATCH] Suppress i18next support notice in terminal output (#7702) * Update i18next version to 25.8.3 This is the minimum i18next version that supports the showSupportNotice option * Suppress i18next support notice --- package.json | 2 +- src/node/i18n/index.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 4be33a777..a64d736d3 100644 --- a/package.json +++ b/package.json @@ -76,7 +76,7 @@ "express": "^5.0.1", "http-proxy": "^1.18.1", "httpolyglot": "^0.1.2", - "i18next": "^25.3.0", + "i18next": "^25.8.3", "js-yaml": "^4.1.0", "limiter": "^2.1.0", "pem": "^1.14.8", diff --git a/src/node/i18n/index.ts b/src/node/i18n/index.ts index e8186067b..a7f9f17bc 100644 --- a/src/node/i18n/index.ts +++ b/src/node/i18n/index.ts @@ -54,6 +54,7 @@ init({ lowerCaseLng: true, debug: process.env.NODE_ENV === "development", resources: defaultResources, + showSupportNotice: false, }) export default i18next