about summary refs log tree commit diff
path: root/src/locale/i18n.web.ts
diff options
context:
space:
mode:
authorYiannis Mertzanis <imertz@protonmail.com>2024-12-31 22:28:17 +0200
committerGitHub <noreply@github.com>2024-12-31 12:28:17 -0800
commit2300410b4d02daa7970b39bf7ec10acbffa785ae (patch)
treed92d39e2cc7ab491d45aa567477dbd70d81578b9 /src/locale/i18n.web.ts
parent30d110dbcdcbf527ebd7dbafdbf1cac0ae6e55ee (diff)
downloadvoidsky-2300410b4d02daa7970b39bf7ec10acbffa785ae.tar.zst
Add Greek Language ('el') Support and Internationalization (#6677)
* Add Greek language support to the application

* Add support for Greek language in date handling and tests

* Update Greek locale file with translator and team information

* Add support for Greek language in date handling and tests

* Add support for Greek language in app configuration, and updated translation from the reviewers' comments

* Update src/locale/i18n.ts

Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>

* Update src/locale/i18n.ts

Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>

---------

Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com>
Diffstat (limited to 'src/locale/i18n.web.ts')
-rw-r--r--src/locale/i18n.web.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/locale/i18n.web.ts b/src/locale/i18n.web.ts
index ac32a5472..5e795e85f 100644
--- a/src/locale/i18n.web.ts
+++ b/src/locale/i18n.web.ts
@@ -28,6 +28,10 @@ export async function dynamicActivate(locale: AppLanguage) {
       mod = await import(`./locales/de/messages`)
       break
     }
+    case AppLanguage.el: {
+      mod = await import(`./locales/el/messages`)
+      break
+    }
     case AppLanguage.en_GB: {
       mod = await import(`./locales/en-GB/messages`)
       break