about summary refs log tree commit diff
path: root/src/locale/i18n.web.ts
diff options
context:
space:
mode:
authorAnsh <anshnanda10@gmail.com>2023-12-22 03:30:24 +0530
committerGitHub <noreply@github.com>2023-12-22 03:30:24 +0530
commitdf73f835381b267f3e5741a4eff50fcb86b59c53 (patch)
tree4e4dc3fbdfe144a7d16f906b0860138c21dd5b7b /src/locale/i18n.web.ts
parentd068cb19392965f9b96e113ca2ba0fceb8326db5 (diff)
downloadvoidsky-df73f835381b267f3e5741a4eff50fcb86b59c53.tar.zst
Add French localization (#2265)
Diffstat (limited to 'src/locale/i18n.web.ts')
-rw-r--r--src/locale/i18n.web.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/locale/i18n.web.ts b/src/locale/i18n.web.ts
index 6edf23e05..4172ad47b 100644
--- a/src/locale/i18n.web.ts
+++ b/src/locale/i18n.web.ts
@@ -20,6 +20,10 @@ export async function dynamicActivate(locale: AppLanguage) {
       mod = await import(`./locales/ja/messages`)
       break
     }
+    case AppLanguage.fr: {
+      mod = await import(`./locales/fr/messages`)
+      break
+    }
     default: {
       mod = await import(`./locales/en/messages`)
       break