diff options
author | Guido Leenders <guido.leenders@invantive.com> | 2024-11-12 09:45:10 +0100 |
---|---|---|
committer | Guido Leenders <guido.leenders@invantive.com> | 2024-11-12 09:45:10 +0100 |
commit | b6fdde2f044cecef0a16d2b4f3a86ef5e77ce068 (patch) | |
tree | 51b7b8c1225133becc7496dc1129fac3fdad46df /src/locale/helpers.ts | |
parent | 5ee809e4213b57693fc6767c86d66d73382064db (diff) | |
download | voidsky-b6fdde2f044cecef0a16d2b4f3a86ef5e77ce068.tar.zst |
Allow use of Dutch translations [ER].
Diffstat (limited to 'src/locale/helpers.ts')
-rw-r--r-- | src/locale/helpers.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/locale/helpers.ts b/src/locale/helpers.ts index 4613533ab..976bcf613 100644 --- a/src/locale/helpers.ts +++ b/src/locale/helpers.ts @@ -145,6 +145,8 @@ export function sanitizeAppLanguageSetting(appLanguage: string): AppLanguage { return AppLanguage.ja case 'ko': return AppLanguage.ko + case 'nl': + return AppLanguage.nl case 'pt-BR': return AppLanguage.pt_BR case 'ru': |