[2.4.1] Add Persian (Farsi) Language

This commit is contained in:
Amruth Pillai
2020-12-20 20:04:58 +05:30
parent 7a0403f9d6
commit 72b68e060c
5 changed files with 10 additions and 1 deletions

View File

@ -58,6 +58,7 @@ For those of you familiar with the Crowdin Platform, you could do that too and j
- Japanese (日本人) - Japanese (日本人)
- Kannada (ಕನ್ನಡ) - Kannada (ಕನ್ನಡ)
- Norwegian (Norsk) - Norwegian (Norsk)
- Persian (Farsi)
- Polish (Polskie) - Polish (Polskie)
- Portuguese (Brazilian) - Portuguese (Brazilian)
- Portuguese (Portugal) - Portuguese (Portugal)
@ -65,6 +66,7 @@ For those of you familiar with the Crowdin Platform, you could do that too and j
- Spanish (Español) - Spanish (Español)
- Swedish (Svenska) - Swedish (Svenska)
- Turkish (Türkçe) - Turkish (Türkçe)
- Ukrainian (Українська)
Thank you to all the amazing people who have contributed to Reactive Resume by translating it into their native language. Thank you to all the amazing people who have contributed to Reactive Resume by translating it into their native language.

View File

@ -6,7 +6,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.4', version: '2.4.1',
}, },
plugins: [ plugins: [
'gatsby-plugin-react-helmet', 'gatsby-plugin-react-helmet',

View File

@ -55,6 +55,10 @@ const languages = [
code: 'nb', code: 'nb',
name: 'Norwegian (Norsk)', name: 'Norwegian (Norsk)',
}, },
{
code: 'fa',
name: 'Persian (Farsi)',
},
{ {
code: 'pl', code: 'pl',
name: 'Polish (Polskie)', name: 'Polish (Polskie)',

View File

@ -3,6 +3,7 @@ import da from './da.json';
import de from './de.json'; import de from './de.json';
import en from './en.json'; import en from './en.json';
import es from './es.json'; import es from './es.json';
import fa from './fa.json';
import fi from './fi.json'; import fi from './fi.json';
import fr from './fr.json'; import fr from './fr.json';
import hi from './hi.json'; import hi from './hi.json';
@ -26,6 +27,7 @@ export default {
de: { translation: de }, de: { translation: de },
en: { translation: en }, en: { translation: en },
es: { translation: es }, es: { translation: es },
fa: { translation: fa },
fi: { translation: fi }, fi: { translation: fi },
fr: { translation: fr }, fr: { translation: fr },
hi: { translation: hi }, hi: { translation: hi },

View File

@ -5,6 +5,7 @@ import 'dayjs/locale/da';
import 'dayjs/locale/de'; import 'dayjs/locale/de';
import 'dayjs/locale/en'; import 'dayjs/locale/en';
import 'dayjs/locale/es'; import 'dayjs/locale/es';
import 'dayjs/locale/fa';
import 'dayjs/locale/fi'; import 'dayjs/locale/fi';
import 'dayjs/locale/fr'; import 'dayjs/locale/fr';
import 'dayjs/locale/it'; import 'dayjs/locale/it';