feat(lang): add Croatian display language (#3041)
This commit is contained in:
@@ -10,6 +10,7 @@ export type AvailableLocale =
|
|||||||
| 'el'
|
| 'el'
|
||||||
| 'es'
|
| 'es'
|
||||||
| 'fr'
|
| 'fr'
|
||||||
|
| 'hr'
|
||||||
| 'hu'
|
| 'hu'
|
||||||
| 'it'
|
| 'it'
|
||||||
| 'ja'
|
| 'ja'
|
||||||
@@ -60,6 +61,10 @@ export const availableLanguages: AvailableLanguageObject = {
|
|||||||
code: 'fr',
|
code: 'fr',
|
||||||
display: 'Français',
|
display: 'Français',
|
||||||
},
|
},
|
||||||
|
hr: {
|
||||||
|
code: 'hr',
|
||||||
|
display: 'Hrvatski',
|
||||||
|
},
|
||||||
it: {
|
it: {
|
||||||
code: 'it',
|
code: 'it',
|
||||||
display: 'Italiano',
|
display: 'Italiano',
|
||||||
|
|||||||
@@ -42,6 +42,8 @@ const loadLocaleData = (locale: AvailableLocale): Promise<any> => {
|
|||||||
return import('../i18n/locale/es.json');
|
return import('../i18n/locale/es.json');
|
||||||
case 'fr':
|
case 'fr':
|
||||||
return import('../i18n/locale/fr.json');
|
return import('../i18n/locale/fr.json');
|
||||||
|
case 'hr':
|
||||||
|
return import('../i18n/locale/hr.json');
|
||||||
case 'hu':
|
case 'hu':
|
||||||
return import('../i18n/locale/hu.json');
|
return import('../i18n/locale/hu.json');
|
||||||
case 'it':
|
case 'it':
|
||||||
|
|||||||
Reference in New Issue
Block a user