- added French translations

This commit is contained in:
Amruth Pillai
2020-07-19 18:58:05 +05:30
parent 84dfdbca8a
commit 0265eea7bf
3 changed files with 16 additions and 9 deletions

View File

@ -46,10 +46,11 @@ For those of you familiar with the Crowdin Platform, you could do that too and j
##### Languages Currently Supported ##### Languages Currently Supported
- English - English
- Kannada (ಕನ್ನಡ)
- Spanish (Español) (by [@jrgonzalezrios](https://github.com/jrgonzalezrios))
- Portuguese (Brazilian) (by [Felipe CG](https://github.com/felcg))
- Finnish (Suomalainen) (by Ari Pikkarainen) - Finnish (Suomalainen) (by Ari Pikkarainen)
- French (Français) (by [MeisterLLD](https://github.com/MeisterLLD))
- Kannada (ಕನ್ನಡ)
- Portuguese (Brazilian) (by [Felipe CG](https://github.com/felcg))
- Spanish (Español) (by [@jrgonzalezrios](https://github.com/jrgonzalezrios))
### Building from Source ### Building from Source

View File

@ -8,20 +8,24 @@ const languages = [
name: 'English (US)', name: 'English (US)',
}, },
{ {
code: 'kn', code: 'fi',
name: 'Kannada (ಕನ್ನಡ)', name: 'Finnish (Suomalainen)',
}, },
{ {
code: 'es', code: 'fr',
name: 'Spanish (Español)', name: 'French (Français)',
},
{
code: 'kn',
name: 'Kannada (ಕನ್ನಡ)',
}, },
{ {
code: 'ptBr', code: 'ptBr',
name: 'Portuguese (Brazilian)', name: 'Portuguese (Brazilian)',
}, },
{ {
code: 'fi', code: 'es',
name: 'Finnish (Suomalainen)', name: 'Spanish (Español)',
}, },
]; ];

View File

@ -3,6 +3,7 @@ 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'; import fi from './fi.json';
import fr from './fr.json';
export default { export default {
en: { translation: en }, en: { translation: en },
@ -10,4 +11,5 @@ export default {
es: { translation: es }, es: { translation: es },
ptBr: { translation: ptBr }, ptBr: { translation: ptBr },
fi: { translation: fi }, fi: { translation: fi },
fr: { translation: fr },
}; };