diff --git a/README.md b/README.md index 4807610e..fcd7845e 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/gatsby-config.js b/gatsby-config.js index 7b239466..19fe6441 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -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', diff --git a/src/i18n/index.js b/src/i18n/index.js index 4dd81060..ab4d8ad5 100644 --- a/src/i18n/index.js +++ b/src/i18n/index.js @@ -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 (русский)', diff --git a/src/i18n/locales/index.js b/src/i18n/locales/index.js index ae4f89b2..1aff2e2f 100644 --- a/src/i18n/locales/index.js +++ b/src/i18n/locales/index.js @@ -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 }, diff --git a/src/utils/dayjs.js b/src/utils/dayjs.js index b9fc6501..3798207c 100644 --- a/src/utils/dayjs.js +++ b/src/utils/dayjs.js @@ -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';