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-12-25 01:54:05 +0900
committerGitHub <noreply@github.com>2024-12-24 16:54:05 +0000
commitf05962a4928e5102e6abe773e938ae8ab941a2c4 (patch)
tree736b03b3049028481c92751bff45bff65b45a489 /src/locale/i18n.web.ts
parent2b28c85b43c81ab89a3e7df0c46baa9130c6f2d1 (diff)
downloadvoidsky-f05962a4928e5102e6abe773e938ae8ab941a2c4.tar.zst
Fix Nepali language code (#7265)
* Replace `np` with `ne`

* Reorder
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 83e4acce0..ac32a5472 100644
--- a/src/locale/i18n.web.ts
+++ b/src/locale/i18n.web.ts
@@ -80,12 +80,12 @@ export async function dynamicActivate(locale: AppLanguage) {
       mod = await import(`./locales/ko/messages`)
       break
     }
-    case AppLanguage.nl: {
-      mod = await import(`./locales/nl/messages`)
+    case AppLanguage.ne: {
+      mod = await import(`./locales/ne/messages`)
       break
     }
-    case AppLanguage.np: {
-      mod = await import(`./locales/np/messages`)
+    case AppLanguage.nl: {
+      mod = await import(`./locales/nl/messages`)
       break
     }
     case AppLanguage.pl: {