From a15039a4bbfbea54f7eb9ecd8a6137b05d2db370 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sat, 28 Mar 2026 15:12:18 +0200 Subject: [PATCH] Add Cantonese as a language option --- app/modules/i18n/config.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/modules/i18n/config.ts b/app/modules/i18n/config.ts index d03aedaa7..347ab47b4 100644 --- a/app/modules/i18n/config.ts +++ b/app/modules/i18n/config.ts @@ -122,7 +122,11 @@ export const languagesUnified = [ }, { code: "zh", - name: "中文", + name: "中文(普通话)", + }, + { + code: "yue", + name: "中文(廣東話)", }, ] as const;