From 0d0199f627662ae805dd9e21d9055055aec2d673 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Dias?= Date: Fri, 31 Oct 2025 14:11:57 -0300 Subject: [PATCH] :wrench: chore(i18n/intl.ts): remove debugging code elgemp4 forgot to remove debugging code :P --- src/i18n/intl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/intl.ts b/src/i18n/intl.ts index 643d471..227f1a8 100644 --- a/src/i18n/intl.ts +++ b/src/i18n/intl.ts @@ -10,7 +10,7 @@ const i18nKeys = { const languages: Array = Object.keys(i18nKeys); let language: string = getSystemLanguage(); -console.log(language); + export function getSystemLanguage(): string { const sysLanguage: string | null | undefined = GLib.getenv("LANG") ?? GLib.getenv("LANGUAGE"),