added Finnish language

This commit is contained in:
Amruth Pillai
2020-07-19 15:20:46 +05:30
parent c0ae8f3e4f
commit 44bf41e60a
3 changed files with 7 additions and 0 deletions

View File

@ -49,6 +49,7 @@ For those of you familiar with the Crowdin Platform, you could do that too and j
- Kannada (ಕನ್ನಡ) - Kannada (ಕನ್ನಡ)
- Spanish (Español) (by [@jrgonzalezrios](https://github.com/jrgonzalezrios)) - Spanish (Español) (by [@jrgonzalezrios](https://github.com/jrgonzalezrios))
- Portuguese (Brazilian) (by [Felipe CG](https://github.com/felcg)) - Portuguese (Brazilian) (by [Felipe CG](https://github.com/felcg))
- Finnish (Suomalainen) (by Ari Pikkarainen)
### Building from Source ### Building from Source

View File

@ -19,6 +19,10 @@ const languages = [
code: 'ptBr', code: 'ptBr',
name: 'Portuguese (Brazilian)', name: 'Portuguese (Brazilian)',
}, },
{
code: 'fi',
name: 'Finnish (Suomalainen)',
},
]; ];
i18n.use(initReactI18next).init({ i18n.use(initReactI18next).init({

View File

@ -2,10 +2,12 @@ import en from './en.json';
import kn from './kn.json'; import kn from './kn.json';
import es from './es.json'; import es from './es.json';
import ptBr from './pt-br.json'; import ptBr from './pt-br.json';
import fi from './fi.json';
export default { export default {
en: { translation: en }, en: { translation: en },
kn: { translation: kn }, kn: { translation: kn },
es: { translation: es }, es: { translation: es },
ptBr: { translation: ptBr }, ptBr: { translation: ptBr },
fi: { translation: fi },
}; };