-
Notifications
You must be signed in to change notification settings - Fork 705
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Spell check automatically set to English #535
Comments
right mousekey -> Spelling languages. |
Having it to default to user language would be good though. |
Hi Gabriel, how do I add another language for spell checking? |
@localguru At the moment dictionaries are built into the app, and we only have a few. To get it working now you will have to add your language and rebuild the app. Probably the best way to resolve this issue is to download the users language automatically. |
Hello! I have started to work on this. I have added a method to the SpellCheck module that downloads the dictionary files from LibreOffice if we don't have them available, but it seems smelly to add to the SpellCheck module and do this download at runtime. Is there somewhere else that would be better to check which dictionaries we have available and download the needed one? Perhaps during installation? |
Hey @damon-myers, awesome to hear that. Maybe we could add an option in the menu to search for the dictionary files? This would mean the user would know and would be willing to download it. |
@gdelavald, Sorry for the delay! Pull request has been created. |
@gdelavald Hi Damon, just copied
but this does not work with german umlauts, like ö ä ü ß, e.g does not know König (= eng. king) Do I need to download de_DE.aff and de_DE.dic somewhere else? |
Solved the umlauts problem with converting
Dictionary was downloaded from https://extensions.libreoffice.org/extensions/german-de-de-frami-dictionaries |
Awesome, great work Marcus!
…On Thu, Nov 22, 2018, 3:56 PM Marcus Schopen ***@***.*** wrote:
Solved the umlauts problem with converting
iconv -f ISO-8859-1 -t UTF-8 de_DE_frami.aff | sed 's/^SET ISO8859-1$/SET UTF-8/g' > de_DE_frami_neu.aff
iconv -f ISO-8859-1 -t UTF-8 de_DE_frami.dic > de_DE_frami_neu.dic
Dictionary was downloaded from
https://extensions.libreoffice.org/extensions/german-de-de-frami-dictionaries
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#535 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AGWUYtNExLkBd7bXoAYgDy2o19aVMuqIks5uxzmxgaJpZM4PST76>
.
|
My Setup
client side:
Description
spell check is automatically set to English. My RC Profile is set to Geman. In Firefox the spell check works very well on German, but in my Electron client it's English so everything I type is red underlined.
Current Behavior
spell check is automatically set to English.
Expected Behavior
spell check should be the language in RC Profile or disabled.
The text was updated successfully, but these errors were encountered: