feat(lang): add support for Italian, Portuguese (Brazil) and Serbian

This commit is contained in:
sct
2020-12-19 21:51:05 +09:00
parent 6f2de8577e
commit 108dfc4afd
3 changed files with 22 additions and 1 deletions

View File

@@ -8,7 +8,10 @@ export type AvailableLocales =
| 'de'
| 'ru'
| 'nl'
| 'es';
| 'es'
| 'it'
| 'pt-BR'
| 'sr';
interface LanguageContextProps {
locale: AvailableLocales;