Reorder the locales alphabetically and correct the name for Indonesian (#2483)
This commit is contained in:
parent
0b2daa787c
commit
5cc46241d7
5 changed files with 13 additions and 13 deletions
|
@ -17,10 +17,6 @@ export async function dynamicActivate(locale: AppLanguage) {
|
|||
// mod = await import(`./locales/de/messages`)
|
||||
// break
|
||||
// }
|
||||
case AppLanguage.id: {
|
||||
mod = await import(`./locales/id/messages`)
|
||||
break
|
||||
}
|
||||
case AppLanguage.es: {
|
||||
mod = await import(`./locales/es/messages`)
|
||||
break
|
||||
|
@ -33,6 +29,10 @@ export async function dynamicActivate(locale: AppLanguage) {
|
|||
mod = await import(`./locales/hi/messages`)
|
||||
break
|
||||
}
|
||||
case AppLanguage.id: {
|
||||
mod = await import(`./locales/id/messages`)
|
||||
break
|
||||
}
|
||||
case AppLanguage.ja: {
|
||||
mod = await import(`./locales/ja/messages`)
|
||||
break
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue