mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-12 15:52:56 +10:00
- add Turkish language
- update dependencies - increment version
This commit is contained in:
@ -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))
|
||||
- Kannada (ಕನ್ನಡ)
|
||||
- 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
|
||||
|
||||
|
||||
@ -5,7 +5,7 @@ module.exports = {
|
||||
title: 'Reactive Resume',
|
||||
siteUrl: 'https://rxresu.me',
|
||||
description: 'A free and open source resume builder.',
|
||||
version: '2.0.2',
|
||||
version: '2.0.3',
|
||||
},
|
||||
plugins: [
|
||||
'gatsby-plugin-react-helmet',
|
||||
|
||||
6
package-lock.json
generated
6
package-lock.json
generated
@ -17540,9 +17540,9 @@
|
||||
}
|
||||
},
|
||||
"short-unique-id": {
|
||||
"version": "3.0.3",
|
||||
"resolved": "https://registry.npmjs.org/short-unique-id/-/short-unique-id-3.0.3.tgz",
|
||||
"integrity": "sha512-g8StBeiZN4bAtJlZIZQ3C7RNRjtTdJhwgq4WRHC30+z2dbuE/A0Z51CafHsgpwJHYllW4lyH17EKiyBe4W/AeA=="
|
||||
"version": "3.0.4",
|
||||
"resolved": "https://registry.npmjs.org/short-unique-id/-/short-unique-id-3.0.4.tgz",
|
||||
"integrity": "sha512-M2VEyhMf5H+GUkImMTM5cJMJanm/jgJJf6NSWdNzkIx5oMtQvGm9k6oom3OV77m/RyIe1+MXPkxGqdaipzCRcw=="
|
||||
},
|
||||
"side-channel": {
|
||||
"version": "1.0.2",
|
||||
|
||||
@ -56,7 +56,7 @@
|
||||
"react-markdown": "^4.3.1",
|
||||
"react-scroll": "^1.8.0",
|
||||
"react-toastify": "^6.0.8",
|
||||
"short-unique-id": "^3.0.3",
|
||||
"short-unique-id": "^3.0.4",
|
||||
"typeit-react": "^0.1.3",
|
||||
"uuid": "^8.2.0",
|
||||
"yup": "^0.29.1"
|
||||
|
||||
@ -27,6 +27,10 @@ const languages = [
|
||||
code: 'es',
|
||||
name: 'Spanish (Español)',
|
||||
},
|
||||
{
|
||||
code: 'tr',
|
||||
name: 'Turkish (Türkçe)',
|
||||
},
|
||||
];
|
||||
|
||||
i18n.use(initReactI18next).init({
|
||||
|
||||
@ -4,6 +4,7 @@ import fi from './fi.json';
|
||||
import fr from './fr.json';
|
||||
import kn from './kn.json';
|
||||
import ptBr from './pt-br.json';
|
||||
import tr from './tr.json';
|
||||
|
||||
export default {
|
||||
en: { translation: en },
|
||||
@ -12,4 +13,5 @@ export default {
|
||||
fr: { translation: fr },
|
||||
kn: { translation: kn },
|
||||
ptBr: { translation: ptBr },
|
||||
tr: { translation: tr },
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user