- 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
- 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)
- 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

View File

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

View File

@ -3,6 +3,7 @@ import kn from './kn.json';
import es from './es.json';
import ptBr from './pt-br.json';
import fi from './fi.json';
import fr from './fr.json';
export default {
en: { translation: en },
@ -10,4 +11,5 @@ export default {
es: { translation: es },
ptBr: { translation: ptBr },
fi: { translation: fi },
fr: { translation: fr },
};