v2.7.4 - Added Hebrew (עִברִית) Language

This commit is contained in:
Amruth Pillai
2021-06-17 09:22:59 +05:30
parent 45042050ee
commit 9084a2803e
4 changed files with 7 additions and 1 deletions

View File

@ -56,6 +56,7 @@ For those of you familiar with the Crowdin Platform, you could do that too and j
- French (Français) - French (Français)
- German (Deutsche) - German (Deutsche)
- Greek (Ελληνικά) - Greek (Ελληνικά)
- Hebrew (עִברִית)
- Hindi (हिंदी) - Hindi (हिंदी)
- Italian (Italiano) - Italian (Italiano)
- Japanese (日本人) - Japanese (日本人)

View File

@ -5,7 +5,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.7.3', version: '2.7.4',
}, },
flags: { PRESERVE_WEBPACK_CACHE: true }, flags: { PRESERVE_WEBPACK_CACHE: true },
plugins: [ plugins: [

View File

@ -47,6 +47,10 @@ const languages = [
code: 'el', code: 'el',
name: 'Greek (Ελληνικά)', name: 'Greek (Ελληνικά)',
}, },
{
code: 'he',
name: 'Hebrew (עִברִית)',
},
{ {
code: 'hi', code: 'hi',
name: 'Hindi (हिंदी)', name: 'Hindi (हिंदी)',

View File

@ -9,6 +9,7 @@ import 'dayjs/locale/es';
import 'dayjs/locale/fa'; import 'dayjs/locale/fa';
import 'dayjs/locale/fi'; import 'dayjs/locale/fi';
import 'dayjs/locale/fr'; import 'dayjs/locale/fr';
import 'dayjs/locale/he';
import 'dayjs/locale/hi'; import 'dayjs/locale/hi';
import 'dayjs/locale/it'; import 'dayjs/locale/it';
import 'dayjs/locale/ja'; import 'dayjs/locale/ja';