Questions tagged [hunspell]

An open source spell checker, used by OpenOffice, Firefox, Google Chrome and Mac OS X.

Hunspell is a spell checker and morphological analyzer designed for languages with rich morphology and complex word compounding and character encoding, originally designed for the Hungarian language.

http://en.wikipedia.org/wiki/Hunspell

238 questions
1
vote
1 answer

Adding custom Dict to spell check extension of Libre office

I am trying to create and distribute a custom dictionary along with the primary one. I tried the steps mentioned here... https://forum.openoffice.org/en/forum/viewtopic.php?f=7&t=33297 A user franx has provided step-by-step guide of ho to create a…
shantanuo
  • 31,689
  • 78
  • 245
  • 403
1
vote
1 answer

Problem with spell checking packages in R

I'm trying to check spelling some words in Russian using "hunspell" library in R. bad_words <- hunspell("Язвенная болзень", dict='ru_RU.dic') I have installed Russian dictionary, from here: https://code.google.com/archive/p/hunspell-ru/ It has…
1
vote
1 answer

Correct way of using forbidden word tag

I am planning to add this tag to hunspell affix file. FORBIDDENWORD z But I am not sure how it will work in this case... test/sz The s flag is already generating a few words in this case (for e.g. tests) Will "test" and "tests" both words will be…
shantanuo
  • 31,689
  • 78
  • 245
  • 403
1
vote
0 answers

hunspell third party library throws run time error causing JVM fatal error

Friends, our project uses hunspell to get suggestion for words, below is the git hub link of the hunspell library. https://github.com/dren-dk/HunspellJNA/blob/master/src/dk/dren/hunspell/HunspellLibrary.java Each word is iterated to get sugggestion…
user593029
  • 511
  • 7
  • 18
1
vote
1 answer

How to add dictionary path in search path for hunspell on windows?

The following link states the cygwin method to install hunspell on windows: https://github.com/hunspell/hunspell The executable installed has unix like dictionary search path as follows: $ hunspell.exe -D SEARCH PATH: …
NmN
  • 31
  • 2
1
vote
1 answer

how to use hunspell (or other package maybe) to correct words using my own "dictionary"?

I would like to correct some misspelled names based on another list, where the names are correct. For example, I have this text: ff Kazaroy, Sengir Pureblood S aE Didcono Ungido Ae yf Soldado do Bispo Ue ra Lamina Celeste daLegiao L and I have this…
1
vote
0 answers

Add custom words manually in Hunspell dictionary in R

I need to add custom words in hunspell dictionary so that the next time I use it it won't show an error for the same word. I went through code mentioned this question The following code is storing the dict in a variable but I want to write the…
1
vote
1 answer

Failed to load hunspell dictionary for locale

I'm trying to set up elastic dictionary for Slovak support, but elastic cannot find hunspell files. Using Ubuntu 19.04 Service status Query Uploaded dictionary I cannot move from this problem. Help appreciated :)
1
vote
0 answers

How to prevent Python Hunspell Stemmer from stemming certain words

I'm using the Hunspell Stemmer in python. Some of the stemming is not what I want and I want Hunspell to ignore certain words when stemming. In particular, it converts ABS to AB and table to t. In the aff file, I saw ABS and AB in the list and I…
1
vote
1 answer

Problem with adding custom words to hunspell dictionary in R

I was able to figure out how to add custom words into the hunspell dictionary in R. However, I'm not sure why it's not being used in spell checking. Here is what I used: library(hunspell) #adding custom words into hunspell…
cheklapkok
  • 439
  • 1
  • 5
  • 11
1
vote
0 answers

How to install spacy-hunspell on MacOS

When I run pip3 install hunspell==0.5.0, it seemingly installs without a hitch. Collecting hunspell==0.5.0 Installing collected packages: hunspell Successfully installed hunspell-0.5.0 Now, once I run pip3 install spacy-hunspell it seemingly…
user479947
1
vote
1 answer

Right Click with word suggestions(Hunspell)

I have a richtextbox and ContextMenuStrip which have cut, copy, past and select all they all work with no probelm but now I tried to add word suggestion like if the user select a word and right click on the richtextbox it should show him\her: word…
H.Kathiri
  • 35
  • 4
1
vote
2 answers

Combine lists of strings of different lengths to a data frame

I have a text data that need correcting of English mistakes. I want an output of a table, first column are the mistakes, and all suggestions for correction in the second column. For example: sentence <- "This is a word but thhis isn't and this onne…
Yeshyyy
  • 669
  • 6
  • 21
1
vote
0 answers

hunspell to handle common english verbs contractions for -ing

Hunspell does not handle by defaults common English Verb contractions of -ing like goin, givin, doin, etc. These verb contractions it seems not to be handled. Let's take an example I'm going to surfin' and livin' on my own and maybe givin' up This…
loretoparisi
  • 15,724
  • 11
  • 102
  • 146
1
vote
2 answers

Dynamically linked DLL is loaded immediately after starting the application

I've dynamically linked libhunspell.dll (HunSpell) to my application. It works, but there is a dumb problem which I don't know why it happens. Even before I use LoadLibrary("path\\to\\libhunspell.dll"); to load it and use it, on the start of the…
Coder12345
  • 3,431
  • 3
  • 33
  • 73