From a9e70069c824884e0ac3d25d99f0fcb10742efdd Mon Sep 17 00:00:00 2001 From: Shuwn Hsu <20023822+shuwn@users.noreply.github.com> Date: Wed, 29 Apr 2026 00:29:24 +0800 Subject: [PATCH] feat(i18n): Fix locale tags --- src/components/launch/LaunchWindow.tsx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/components/launch/LaunchWindow.tsx b/src/components/launch/LaunchWindow.tsx index 4344b7c5..9c300475 100644 --- a/src/components/launch/LaunchWindow.tsx +++ b/src/components/launch/LaunchWindow.tsx @@ -61,11 +61,14 @@ interface DesktopSource { } const LOCALE_LABELS: Record = { - en: "EN", - es: "ES", - nl: "NL", - "zh-CN": "中文", + en: "English", + es: "Español", + fr: "Français", + nl: "Nederlands", ko: "한국어", + "pt-BR": "Português", + "zh-CN": "簡體中文", + "zh-TW": "繁體中文", }; const COUNTDOWN_OPTIONS = [0, 3, 5, 10];