[2.6.6] Added Romanian Language

This commit is contained in:
AmruthPillai 2021-03-07 09:41:39 +05:30
parent b06e9b3ef0
commit 9ed97c8b6c
5 changed files with 10 additions and 2 deletions

View File

@ -65,6 +65,7 @@ For those of you familiar with the Crowdin Platform, you could do that too and j
- Polish (Polskie)
- Portuguese (Brazilian)
- Portuguese (Portugal)
- Romanian (Română)
- Russian (русский)
- Spanish (Español)
- Swedish (Svenska)

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.6.5',
version: '2.6.6',
},
plugins: [
'gatsby-plugin-react-helmet',

View File

@ -61,7 +61,7 @@ const languages = [
},
{
code: 'lt',
name: 'Lithuanian (Lietuvių)'
name: 'Lithuanian (Lietuvių)',
},
{
code: 'nb',
@ -83,6 +83,10 @@ const languages = [
code: 'ptPt',
name: 'Portuguese (Portugal)',
},
{
code: 'ro',
name: 'Romanian (Română)',
},
{
code: 'ru',
name: 'Russian (русский)',

View File

@ -18,6 +18,7 @@ import nb from './nb.json';
import pl from './pl.json';
import ptBr from './pt-br.json';
import ptPt from './pt-pt.json';
import ro from './ro.json';
import ru from './ru.json';
import sv from './sv.json';
import tr from './tr.json';
@ -45,6 +46,7 @@ export default {
pl: { translation: pl },
ptBr: { translation: ptBr },
ptPt: { translation: ptPt },
ro: { translation: ro },
ru: { translation: ru },
sv: { translation: sv },
tr: { translation: tr },

View File

@ -18,6 +18,7 @@ import 'dayjs/locale/nb';
import 'dayjs/locale/nl';
import 'dayjs/locale/pl';
import 'dayjs/locale/pt';
import 'dayjs/locale/ro';
import 'dayjs/locale/ru';
import 'dayjs/locale/sv';
import 'dayjs/locale/tr';