feat: enable new language vietnamese

This commit is contained in:
Nicolas Meienberger 2023-06-18 18:19:35 +02:00
parent bea4268aaf
commit 89e7bd337c

View file

@ -8,6 +8,7 @@ const APP_LOCALES = {
'sv-SE': 'Svenska',
'ro-RO': 'Română',
'ru-RU': 'Русский',
'vi-VN': 'Tiếng Việt',
'zh-CN': '简体中文',
'zh-TW': '繁體中文',
} as const;
@ -23,6 +24,7 @@ const FALLBACK_LOCALES: { from: BaseLang<keyof typeof APP_LOCALES>; to: keyof ty
{ from: 'sv', to: 'sv-SE' },
{ from: 'ro', to: 'ro-RO' },
{ from: 'ru', to: 'ru-RU' },
{ from: 'vi', to: 'vi-VN' },
{ from: 'zh', to: 'zh-CN' },
];