From 9ddba69ff033767bc8898607d409cccb3c22ee88 Mon Sep 17 00:00:00 2001 From: AmruthPillai Date: Sun, 31 Jan 2021 10:59:41 +0530 Subject: [PATCH] - Added Greek Language --- README.md | 1 + src/i18n/index.js | 4 ++++ src/i18n/locales/index.js | 2 ++ src/utils/dayjs.js | 1 + 4 files changed, 8 insertions(+) diff --git a/README.md b/README.md index 47d4fe93..ceca2f5e 100644 --- a/README.md +++ b/README.md @@ -54,6 +54,7 @@ For those of you familiar with the Crowdin Platform, you could do that too and j - Finnish (Suomalainen) - French (Français) - German (Deutsche) +- Greek (Ελληνικά) - Hindi (हिंदी) - Italian (Italiano) - Japanese (日本人) diff --git a/src/i18n/index.js b/src/i18n/index.js index 4b103cfa..9cf213d9 100644 --- a/src/i18n/index.js +++ b/src/i18n/index.js @@ -39,6 +39,10 @@ const languages = [ code: 'de', name: 'German (Deutsche)', }, + { + code: 'el', + name: 'Greek (Ελληνικά)', + }, { code: 'hi', name: 'Hindi (हिंदी)', diff --git a/src/i18n/locales/index.js b/src/i18n/locales/index.js index fd087ddc..2822cad1 100644 --- a/src/i18n/locales/index.js +++ b/src/i18n/locales/index.js @@ -2,6 +2,7 @@ import ar from './ar.json'; import cs from './cs.json'; import da from './da.json'; import de from './de.json'; +import el from './el.json'; import en from './en.json'; import es from './es.json'; import fa from './fa.json'; @@ -27,6 +28,7 @@ export default { cs: { translation: cs }, da: { translation: da }, de: { translation: de }, + el: { translation: el }, en: { translation: en }, es: { translation: es }, fa: { translation: fa }, diff --git a/src/utils/dayjs.js b/src/utils/dayjs.js index 00d820ea..fc51a8db 100644 --- a/src/utils/dayjs.js +++ b/src/utils/dayjs.js @@ -4,6 +4,7 @@ import 'dayjs/locale/cs'; import 'dayjs/locale/da'; import 'dayjs/locale/de'; import 'dayjs/locale/en'; +import 'dayjs/locale/el'; import 'dayjs/locale/es'; import 'dayjs/locale/fa'; import 'dayjs/locale/fi';