feat: add Greek language option to spell checker options (#10793)

feat: add Greek language option to GeneralSettings component

- Added support for Greek (Ελληνικά) language in the language selection dropdown of the GeneralSettings component.
This commit is contained in:
beyondkmp 2025-10-17 17:19:16 +08:00 committed by GitHub
parent 0e5ebcfd00
commit d1a9dfa3e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -147,7 +147,8 @@ const GeneralSettings: FC = () => {
{ value: 'pt', label: 'Português', flag: '🇵🇹' },
{ value: 'ru', label: 'Русский', flag: '🇷🇺' },
{ value: 'nl', label: 'Nederlands', flag: '🇳🇱' },
{ value: 'pl', label: 'Polski', flag: '🇵🇱' }
{ value: 'pl', label: 'Polski', flag: '🇵🇱' },
{ value: 'el', label: 'Ελληνικά', flag: '🇬🇷' }
]
const handleSpellCheckLanguagesChange = (selectedLanguages: string[]) => {