Add French localization (#2265)

This commit is contained in:
Ansh 2023-12-22 03:30:24 +05:30 committed by GitHub
parent d068cb1939
commit df73f83538
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 2559 additions and 84 deletions

View file

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