diff --git a/README.md b/README.md index 89daf6d3..741c71e1 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ For those of you familiar with the Crowdin Platform, you could do that too and j - Kannada (ಕನ್ನಡ) - Spanish (Español) (by [@jrgonzalezrios](https://github.com/jrgonzalezrios)) - Portuguese (Brazilian) (by [Felipe CG](https://github.com/felcg)) +- Finnish (Suomalainen) (by Ari Pikkarainen) ### Building from Source diff --git a/src/i18n/index.js b/src/i18n/index.js index f8fff037..0a24620c 100644 --- a/src/i18n/index.js +++ b/src/i18n/index.js @@ -19,6 +19,10 @@ const languages = [ code: 'ptBr', name: 'Portuguese (Brazilian)', }, + { + code: 'fi', + name: 'Finnish (Suomalainen)', + }, ]; i18n.use(initReactI18next).init({ diff --git a/src/i18n/locales/index.js b/src/i18n/locales/index.js index da303416..9e669fcd 100644 --- a/src/i18n/locales/index.js +++ b/src/i18n/locales/index.js @@ -2,10 +2,12 @@ import en from './en.json'; import kn from './kn.json'; import es from './es.json'; import ptBr from './pt-br.json'; +import fi from './fi.json'; export default { en: { translation: en }, kn: { translation: kn }, es: { translation: es }, ptBr: { translation: ptBr }, + fi: { translation: fi }, };