feat(lang): add Albanian display language (#2605)

pull/2606/head^2
TheCatLady 3 years ago committed by GitHub
parent 4549ed389e
commit 3d32462f50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -18,6 +18,7 @@ export type AvailableLocale =
| 'pt-BR'
| 'pt-PT'
| 'ru'
| 'sq'
| 'sr'
| 'sv'
| 'zh-CN'
@ -85,6 +86,10 @@ export const availableLanguages: AvailableLanguageObject = {
code: 'pt-PT',
display: 'Português (Portugal)',
},
sq: {
code: 'sq',
display: 'Shqip',
},
sv: {
code: 'sv',
display: 'Svenska',

@ -55,6 +55,8 @@ const loadLocaleData = (locale: AvailableLocale): Promise<any> => {
return import('../i18n/locale/pt_PT.json');
case 'ru':
return import('../i18n/locale/ru.json');
case 'sq':
return import('../i18n/locale/sq.json');
case 'sr':
return import('../i18n/locale/sr.json');
case 'sv':

Loading…
Cancel
Save