feat(lang): add support for Hungarian language

pull/800/head
sct 4 years ago
parent 996bd9f14e
commit cfacb151b5

@ -37,6 +37,10 @@ const availableLanguages: AvailableLanguageObject = {
code: 'it',
display: 'Italiano',
},
hu: {
code: 'hu',
display: 'Magyar',
},
nl: {
code: 'nl',
display: 'Nederlands',

@ -7,6 +7,7 @@ export type AvailableLocales =
| 'it'
| 'ja'
| 'fr'
| 'hu'
| 'nb-NO'
| 'nl'
| 'pt-BR'

@ -30,6 +30,8 @@ const loadLocaleData = (locale: AvailableLocales): Promise<any> => {
return import('../i18n/locale/it.json');
case 'ja':
return import('../i18n/locale/ja.json');
case 'hu':
return import('../i18n/locale/hu.json');
case 'nb-NO':
return import('../i18n/locale/nb_NO.json');
case 'nl':

Loading…
Cancel
Save