From 28e4ade009b373090357ba1fcf93df705e32c3ba Mon Sep 17 00:00:00 2001 From: Steven Date: Thu, 25 Dec 2025 08:52:51 +0800 Subject: [PATCH] fix: register Catalan and Galician locales in i18n configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The translation files ca.json and gl.json existed but weren't registered in the locales array, preventing users from selecting these languages. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- web/src/i18n.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/web/src/i18n.ts b/web/src/i18n.ts index 9fcc51d5b..0a540d7bb 100644 --- a/web/src/i18n.ts +++ b/web/src/i18n.ts @@ -5,6 +5,7 @@ import { findNearestMatchedLanguage } from "./utils/i18n"; export const locales = orderBy([ "ar", + "ca", "cs", "de", "en", @@ -12,6 +13,7 @@ export const locales = orderBy([ "es", "fa", "fr", + "gl", "hi", "hr", "hu",