diff options
author | Yiannis Mertzanis <imertz@protonmail.com> | 2024-12-31 22:28:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-31 12:28:17 -0800 |
commit | 2300410b4d02daa7970b39bf7ec10acbffa785ae (patch) | |
tree | d92d39e2cc7ab491d45aa567477dbd70d81578b9 /src/locale/__tests__ | |
parent | 30d110dbcdcbf527ebd7dbafdbf1cac0ae6e55ee (diff) | |
download | voidsky-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/__tests__')
-rw-r--r-- | src/locale/__tests__/helpers.test.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/locale/__tests__/helpers.test.ts b/src/locale/__tests__/helpers.test.ts index f4a3d1b5f..44f0901f1 100644 --- a/src/locale/__tests__/helpers.test.ts +++ b/src/locale/__tests__/helpers.test.ts @@ -5,6 +5,7 @@ import {AppLanguage} from '#/locale/languages' test('sanitizeAppLanguageSetting', () => { expect(sanitizeAppLanguageSetting('en')).toBe(AppLanguage.en) + expect(sanitizeAppLanguageSetting('el')).toBe(AppLanguage.el) expect(sanitizeAppLanguageSetting('pt-BR')).toBe(AppLanguage.pt_BR) expect(sanitizeAppLanguageSetting('hi')).toBe(AppLanguage.hi) expect(sanitizeAppLanguageSetting('id')).toBe(AppLanguage.id) |