From 24abf7f0ed7339fa1db181451d3f5df58e6c6f84 Mon Sep 17 00:00:00 2001 From: Sky Swimmer <85841243+SkySwimmer@users.noreply.github.com> Date: Sun, 24 Aug 2025 23:22:24 +0200 Subject: [PATCH] Update i18n.ts Another casing error throwing off tests --- packages/commons/src/lib/i18n.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/commons/src/lib/i18n.ts b/packages/commons/src/lib/i18n.ts index 24d775658..5f2470aa3 100644 --- a/packages/commons/src/lib/i18n.ts +++ b/packages/commons/src/lib/i18n.ts @@ -16,7 +16,7 @@ const UNSORTED_LOCALES: Locale[] = [ { id: "es", name: "Español", electronLocale: "es" }, { id: "fr", name: "Français", electronLocale: "fr" }, { id: "ja", name: "日本語", electronLocale: "ja" }, - { id: "pt_BR", name: "Português (Brasil)", electronLocale: "pt-BR" }, + { id: "pt_br", name: "Português (Brasil)", electronLocale: "pt-BR" }, { id: "ro", name: "Română", electronLocale: "ro" }, { id: "ru", name: "Русский", electronLocale: "ru" }, { id: "tw", name: "繁體中文", electronLocale: "zh_TW" },