diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-02-13 10:01:59 -0800 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2024-02-13 10:01:59 -0800 |
commit | aaba84f214fc308b3baabb66e19bc1cd64f07714 (patch) | |
tree | ccebc0af871422263d5304af680d14d36e979a85 /src/locale/helpers.ts | |
parent | b8139db60fde4d3a93258aa0a871ddb93e85dff3 (diff) | |
download | voidsky-aaba84f214fc308b3baabb66e19bc1cd64f07714.tar.zst |
Add italian to app languages
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 c345e8a82..c73242e70 100644 --- a/src/locale/helpers.ts +++ b/src/locale/helpers.ts @@ -140,6 +140,8 @@ export function sanitizeAppLanguageSetting(appLanguage: string): AppLanguage { return AppLanguage.ca case 'zh-CN': return AppLanguage.zh_CN + case 'it': + return AppLanguage.it default: continue } |