diff options
author | Ankit Bhandari <85058931+whoisanku@users.noreply.github.com> | 2024-12-19 05:19:50 +0545 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-18 15:34:50 -0800 |
commit | bdae89b67b5f50e0eda5caf851c7942434ec52f4 (patch) | |
tree | 2ba48968fd436a9927492fdad5f4d1f6e0e43113 /src/locale/i18n.web.ts | |
parent | 0e7ad198303b1cf7bfd86cd83f6c8eebfa09cfce (diff) | |
download | voidsky-bdae89b67b5f50e0eda5caf851c7942434ec52f4.tar.zst |
Nepali Translation (divyaswormakai's reviewed & some changes) (#7033)
* feat: prepare necesaary files * fix: message file for nepali translation * feat: language file update * feat: add missing pieces * feat: one and other updates * additional changes --------- Co-authored-by: Divyaswor Makai <makaidivya@gmail.com>
Diffstat (limited to 'src/locale/i18n.web.ts')
-rw-r--r-- | src/locale/i18n.web.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/locale/i18n.web.ts b/src/locale/i18n.web.ts index 4ffd00fd0..83e4acce0 100644 --- a/src/locale/i18n.web.ts +++ b/src/locale/i18n.web.ts @@ -84,6 +84,10 @@ export async function dynamicActivate(locale: AppLanguage) { mod = await import(`./locales/nl/messages`) break } + case AppLanguage.np: { + mod = await import(`./locales/np/messages`) + break + } case AppLanguage.pl: { mod = await import(`./locales/pl/messages`) break |