From 9084a2803ed21293b86638f976c2c957f81b3adb Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Thu, 17 Jun 2021 09:22:59 +0530 Subject: [PATCH] =?UTF-8?q?v2.7.4=20-=20Added=20Hebrew=20(=D7=A2=D6=B4?= =?UTF-8?q?=D7=91=D7=A8=D6=B4=D7=99=D7=AA)=20Language?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 1 + gatsby-config.js | 2 +- src/i18n/index.js | 4 ++++ src/utils/dayjs.js | 1 + 4 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 83048996..bccc22b3 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ For those of you familiar with the Crowdin Platform, you could do that too and j - French (Français) - German (Deutsche) - Greek (Ελληνικά) +- Hebrew (עִברִית) - Hindi (हिंदी) - Italian (Italiano) - Japanese (日本人) diff --git a/gatsby-config.js b/gatsby-config.js index 87077c63..74a7d238 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -5,7 +5,7 @@ module.exports = { title: 'Reactive Resume', siteUrl: 'https://rxresu.me', description: 'A free and open source resume builder.', - version: '2.7.3', + version: '2.7.4', }, flags: { PRESERVE_WEBPACK_CACHE: true }, plugins: [ diff --git a/src/i18n/index.js b/src/i18n/index.js index 15eb87f8..0dbe972b 100644 --- a/src/i18n/index.js +++ b/src/i18n/index.js @@ -47,6 +47,10 @@ const languages = [ code: 'el', name: 'Greek (Ελληνικά)', }, + { + code: 'he', + name: 'Hebrew (עִברִית)', + }, { code: 'hi', name: 'Hindi (हिंदी)', diff --git a/src/utils/dayjs.js b/src/utils/dayjs.js index a13d01f6..167636b8 100644 --- a/src/utils/dayjs.js +++ b/src/utils/dayjs.js @@ -9,6 +9,7 @@ import 'dayjs/locale/es'; import 'dayjs/locale/fa'; import 'dayjs/locale/fi'; import 'dayjs/locale/fr'; +import 'dayjs/locale/he'; import 'dayjs/locale/hi'; import 'dayjs/locale/it'; import 'dayjs/locale/ja';