- bumped version to 2.3.3

- fixed text alignment issues
- updated dependencies
- added ukranian language
This commit is contained in:
Amruth Pillai
2020-12-09 10:40:27 +05:30
parent 88a3fe5148
commit df71b86028
32 changed files with 942 additions and 1021 deletions

View File

@@ -83,6 +83,10 @@ const languages = [
code: 'tr',
name: 'Turkish (Türkçe)',
},
{
code: 'uk',
name: 'Ukrainian (Українська)',
},
];
i18n.use(initReactI18next).init({

View File

@@ -17,6 +17,7 @@ import ptPt from './pt-pt.json';
import ru from './ru.json';
import sv from './sv.json';
import tr from './tr.json';
import uk from './uk.json';
import zh from './zh.json';
export default {
@@ -39,5 +40,6 @@ export default {
ru: { translation: ru },
sv: { translation: sv },
tr: { translation: tr },
uk: { translation: uk },
zh: { translation: zh },
};