mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
feat(lang): add support for Italian, Portuguese (Brazil) and Serbian
This commit is contained in:
@@ -31,6 +31,12 @@ const loadLocaleData = (locale: string): Promise<any> => {
|
||||
return import('../i18n/locale/nl.json');
|
||||
case 'es':
|
||||
return import('../i18n/locale/es.json');
|
||||
case 'it':
|
||||
return import('../i18n/locale/it.json');
|
||||
case 'pt-BR':
|
||||
return import('../i18n/locale/pt_BR.json');
|
||||
case 'sr':
|
||||
return import('../i18n/locale/sr.json');
|
||||
default:
|
||||
return import('../i18n/locale/en.json');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user