diff options
author | Minseo Lee <itoupluk427@gmail.com> | 2024-12-25 01:54:05 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-24 16:54:05 +0000 |
commit | f05962a4928e5102e6abe773e938ae8ab941a2c4 (patch) | |
tree | 736b03b3049028481c92751bff45bff65b45a489 /src/locale/i18n.web.ts | |
parent | 2b28c85b43c81ab89a3e7df0c46baa9130c6f2d1 (diff) | |
download | voidsky-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.ts | 8 |
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: { |