[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 (日本人)
- Kannada (ಕನ್ನಡ)
- Norwegian (Norsk)
- Persian (Farsi)
- Polish (Polskie)
- Portuguese (Brazilian)
- 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)
- Swedish (Svenska)
- 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.

View File

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

View File

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

View File

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

View File

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