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
0
votes
1 answer

Installing NHunspell in Visual Studio 2010

I'm hoping someone can give me some guidance on installing NHunspell in VS 2010. Maybe it's just me but there seems to be very little about the installation of this spell checker. I've downloaded different projects, with different sizes, and this…
Craig
  • 175
  • 1
  • 3
  • 18
0
votes
1 answer

Pyhunspell installation in virtualnev

I have a problem with installation of pyhunspell bindings for hunspell library in python 3.2 virtualenv. I downloaded hunspell from here. I issued ./configure and make and it run all right. I avoided however to do make install because my purpose is…
Sventimir
  • 1,996
  • 3
  • 14
  • 25
0
votes
1 answer

hunspell from java with personal dictionary

I have two options to use hunspell from java: Hunspell JNA or Hunspell BridJ Both of them works fine, but I would like to use the "personal dictionary" feature of hunspell (when calling hunspell from command line, the -p parameter). Is there a way…
krisy
  • 1,508
  • 1
  • 14
  • 32
0
votes
1 answer

replacing umbraco TinyMCE spellchecker causing log4net issues

There is a known issue with the TinyMCE spellchecker in umbraco which I am trying to resolve: http://issues.umbraco.org/issue/U4-2060 While attempting to install the recommended replacement solution…
lathomas64
  • 1,612
  • 5
  • 21
  • 47
0
votes
1 answer

Unable to import NHunspell.dll using ctypes in Python

I'm required to import a certain dll called 'NHunspell.dll' which is used for Spell Checking purposes. I am using Python for the software. Although I checked out several websites to properly use ctypes, I have been unable to load the dll properly.…
0
votes
1 answer

Hunspell returns bool instead words

help please with Hunspell problem, can\t make this stuff works well. Here is my code, it returns bool value TRUE unstead the suggestion of word. int main(array ^args) { char *aff = "c:\\en_US.aff"; char *dic =…
Daniil
  • 31
  • 2
0
votes
1 answer

Working with system-level dictionaries

I've been working on a Qt-based C++ program called RoboJournal. It uses Hunspell for spell-checking purposes. Right now, it automatically installs its own dictionary files (en_US.dic) into the user's home folder (i.e. ~/.robojournal/en_US.dic). This…
Will Kraft
  • 553
  • 1
  • 8
  • 23
0
votes
1 answer

Hunspell code not working in Visual Studio 2010

I have to include spellcheck functionality for one of my projects and I decided on hunspell as it's an excellent spellchecker (lots of free and proprietary software's use it). I downloaded the source code and added the project libhunspell to the…
0
votes
2 answers

Handling Hunspell suggestions with special characters

I've integrated Hunspell in an unmanaged C++ app on Windows 7 using Visual Studio 2010. I've got spell checking and suggestions working for English, but now I'm trying to get things working for Spanish and hitting some snags. Whenever I get…
Jacob
  • 3,629
  • 3
  • 36
  • 44
-1
votes
1 answer

conflict in check compound pattern

I have this dictionary and affix file for the word भानूत्सवः and it is working correctly. # cat dicts/sa.dic 2 भानु/x उत्सवः/x # cat dicts/sa.aff SET UTF-8 COMPOUNDMIN 1 COMPOUNDFLAG x CHECKCOMPOUNDPATTERN 1 CHECKCOMPOUNDPATTERN ु उ ू But the…
shantanuo
  • 31,689
  • 78
  • 245
  • 403
-1
votes
1 answer

Unable to install hunspell on windows 10

i am unable to install hunspell on windows 10 whenever i try to install it using pip it throws the following error. Building wheel for hunspell (setup.py) ... error ERROR: Command errored out with exit status 1: command: Complete output…
-1
votes
1 answer

I am getting a 'LookupError' when using hunspell.spell("my_word")

I am importing spell successfully, but getting a LookupError when using it. from hunspell import spell print(spell('Heello')) --------------------------------------------------------------------------- LookupError …
Samir Ahmane
  • 830
  • 7
  • 22
-2
votes
1 answer

Location of custom dict

I followed all instructions mentioned here: https://forum.openoffice.org/en/forum/viewtopic.php?f=7&t=33297 The file "dict-en_US_private.zip" is working as expected. But custom dict "en_US_private" does not show up anywhere in spelling options. Is…
shantanuo
  • 31,689
  • 78
  • 245
  • 403
1 2 3
15
16