about summary refs log tree commit diff
path: root/src/locale/i18n.web.ts
diff options
context:
space:
mode:
authorMinseo Lee <itoupluk427@gmail.com>2024-01-11 16:07:47 +0900
committerGitHub <noreply@github.com>2024-01-10 23:07:47 -0800
commit5cc46241d75ecbd462f1b69a42d6d923dadf6d28 (patch)
tree8555b2bf682fd5132d227bb4c53446e910abe5cc /src/locale/i18n.web.ts
parent0b2daa787cc6ee7c9fe597aee8ccf9168bada7e7 (diff)
downloadvoidsky-5cc46241d75ecbd462f1b69a42d6d923dadf6d28.tar.zst
Reorder the locales alphabetically and correct the name for Indonesian (#2483)
Diffstat (limited to 'src/locale/i18n.web.ts')
-rw-r--r--src/locale/i18n.web.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/locale/i18n.web.ts b/src/locale/i18n.web.ts
index ec7ae824a..819f58eb7 100644
--- a/src/locale/i18n.web.ts
+++ b/src/locale/i18n.web.ts
@@ -17,10 +17,6 @@ export async function dynamicActivate(locale: AppLanguage) {
     //   mod = await import(`./locales/de/messages`)
     //   break
     // }
-    case AppLanguage.id: {
-      mod = await import(`./locales/id/messages`)
-      break
-    }
     case AppLanguage.es: {
       mod = await import(`./locales/es/messages`)
       break
@@ -33,6 +29,10 @@ export async function dynamicActivate(locale: AppLanguage) {
       mod = await import(`./locales/hi/messages`)
       break
     }
+    case AppLanguage.id: {
+      mod = await import(`./locales/id/messages`)
+      break
+    }
     case AppLanguage.ja: {
       mod = await import(`./locales/ja/messages`)
       break