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/helpers.ts | |
parent | 2b28c85b43c81ab89a3e7df0c46baa9130c6f2d1 (diff) | |
download | voidsky-f05962a4928e5102e6abe773e938ae8ab941a2c4.tar.zst |
Fix Nepali language code (#7265)
* Replace `np` with `ne` * Reorder
Diffstat (limited to 'src/locale/helpers.ts')
-rw-r--r-- | src/locale/helpers.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/locale/helpers.ts b/src/locale/helpers.ts index ed31faa49..9c57268fd 100644 --- a/src/locale/helpers.ts +++ b/src/locale/helpers.ts @@ -153,10 +153,10 @@ export function sanitizeAppLanguageSetting(appLanguage: string): AppLanguage { return AppLanguage.km case 'ko': return AppLanguage.ko + case 'ne': + return AppLanguage.ne case 'nl': return AppLanguage.nl - case 'np': - return AppLanguage.np case 'pl': return AppLanguage.pl case 'pt-BR': |