Add italian to app languages

This commit is contained in:
Paul Frazee 2024-02-13 10:01:59 -08:00
parent b8139db60f
commit aaba84f214
5 changed files with 15 additions and 0 deletions

View file

@ -56,6 +56,10 @@ export async function dynamicActivate(locale: AppLanguage) {
mod = await import(`./locales/zh-CN/messages`)
break
}
case AppLanguage.it: {
mod = await import(`./locales/it/messages`)
break
}
default: {
mod = await import(`./locales/en/messages`)
break