- add Turkish language

- update dependencies
- increment version
This commit is contained in:
Amruth Pillai
2020-07-20 07:57:40 +05:30
parent cee9c7f35b
commit b696c71152
6 changed files with 13 additions and 6 deletions

View File

@ -50,7 +50,8 @@ For those of you familiar with the Crowdin Platform, you could do that too and j
- French (Français) (by [MeisterLLD](https://github.com/MeisterLLD)) - French (Français) (by [MeisterLLD](https://github.com/MeisterLLD))
- Kannada (ಕನ್ನಡ) - Kannada (ಕನ್ನಡ)
- Portuguese (Brazilian) (by [Felipe CG](https://github.com/felcg)) - Portuguese (Brazilian) (by [Felipe CG](https://github.com/felcg))
- Spanish (Español) (by [@jrgonzalezrios](https://github.com/jrgonzalezrios)) - Spanish (Español) (by [jrgonzalezrios](https://github.com/jrgonzalezrios))
- Turkish (Türkçe) (by [Emirhan Avcı](https://github.com/AtlasFontaine))
### Building from Source ### Building from Source

View File

@ -5,7 +5,7 @@ module.exports = {
title: 'Reactive Resume', title: 'Reactive Resume',
siteUrl: 'https://rxresu.me', siteUrl: 'https://rxresu.me',
description: 'A free and open source resume builder.', description: 'A free and open source resume builder.',
version: '2.0.2', version: '2.0.3',
}, },
plugins: [ plugins: [
'gatsby-plugin-react-helmet', 'gatsby-plugin-react-helmet',

6
package-lock.json generated
View File

@ -17540,9 +17540,9 @@
} }
}, },
"short-unique-id": { "short-unique-id": {
"version": "3.0.3", "version": "3.0.4",
"resolved": "https://registry.npmjs.org/short-unique-id/-/short-unique-id-3.0.3.tgz", "resolved": "https://registry.npmjs.org/short-unique-id/-/short-unique-id-3.0.4.tgz",
"integrity": "sha512-g8StBeiZN4bAtJlZIZQ3C7RNRjtTdJhwgq4WRHC30+z2dbuE/A0Z51CafHsgpwJHYllW4lyH17EKiyBe4W/AeA==" "integrity": "sha512-M2VEyhMf5H+GUkImMTM5cJMJanm/jgJJf6NSWdNzkIx5oMtQvGm9k6oom3OV77m/RyIe1+MXPkxGqdaipzCRcw=="
}, },
"side-channel": { "side-channel": {
"version": "1.0.2", "version": "1.0.2",

View File

@ -56,7 +56,7 @@
"react-markdown": "^4.3.1", "react-markdown": "^4.3.1",
"react-scroll": "^1.8.0", "react-scroll": "^1.8.0",
"react-toastify": "^6.0.8", "react-toastify": "^6.0.8",
"short-unique-id": "^3.0.3", "short-unique-id": "^3.0.4",
"typeit-react": "^0.1.3", "typeit-react": "^0.1.3",
"uuid": "^8.2.0", "uuid": "^8.2.0",
"yup": "^0.29.1" "yup": "^0.29.1"

View File

@ -27,6 +27,10 @@ const languages = [
code: 'es', code: 'es',
name: 'Spanish (Español)', name: 'Spanish (Español)',
}, },
{
code: 'tr',
name: 'Turkish (Türkçe)',
},
]; ];
i18n.use(initReactI18next).init({ i18n.use(initReactI18next).init({

View File

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