├── .gitignore ├── .travis.yml ├── ABOUT-NLS ├── AUTHORS ├── COPYING ├── COPYING.LESSER ├── COPYING.MPL ├── ChangeLog ├── ChangeLog.O ├── Makefile.am ├── NEWS ├── README ├── README.md ├── THANKS ├── appveyor.yml ├── config.rpath ├── configure.ac ├── hunspell.pc.in ├── js-output ├── loader-en-us.js └── loader-vi.js ├── license.hunspell ├── license.myspell ├── m4 ├── ChangeLog ├── README ├── gettext.m4 ├── iconv.m4 ├── lib-ld.m4 ├── lib-link.m4 ├── lib-prefix.m4 ├── nls.m4 ├── po.m4 ├── progtest.m4 └── visibility.m4 ├── man ├── Makefile.am ├── hu │ ├── Makefile.am │ ├── hunspell.1 │ └── hunspell.5 ├── hunspell.1 ├── hunspell.3 ├── hunspell.5 ├── hunzip.1 └── hzip.1 ├── msvc ├── .gitignore ├── Hunspell.rc ├── Hunspell.sln ├── config.h ├── hunspell.vcxproj ├── libhunspell.vcxproj └── testparser.vcxproj ├── po ├── .gitignore ├── ChangeLog ├── LINGUAS ├── Makefile.in.in ├── Makevars ├── POTFILES.in ├── Rules-quot ├── boldquot.sed ├── ca.po ├── de.po ├── en@boldquot.header ├── en@quot.header ├── es.po ├── hu.po ├── hunspell.pot ├── insert-header.sin ├── it.po ├── pl.po ├── pt_BR.po ├── quot.sed ├── remove-potcdate.sin ├── stamp-po └── tg.po ├── scripts ├── dic-package.sh └── hunspell.sh ├── src ├── Makefile.am ├── hunspell │ ├── Makefile.am │ ├── affentry.cxx │ ├── affentry.hxx │ ├── affixmgr.cxx │ ├── affixmgr.hxx │ ├── atypes.hxx │ ├── baseaffix.hxx │ ├── csutil.cxx │ ├── csutil.hxx │ ├── filemgr.cxx │ ├── filemgr.hxx │ ├── hashmgr.cxx │ ├── hashmgr.hxx │ ├── htypes.hxx │ ├── hunspell.cxx │ ├── hunspell.h │ ├── hunspell.hxx │ ├── hunvisapi.h │ ├── hunvisapi.h.in │ ├── hunzip.cxx │ ├── hunzip.hxx │ ├── langnum.hxx │ ├── phonet.cxx │ ├── phonet.hxx │ ├── replist.cxx │ ├── replist.hxx │ ├── suggestmgr.cxx │ ├── suggestmgr.hxx │ ├── test.js │ ├── utf_info.hxx │ └── w_char.hxx ├── parsers │ ├── .gitignore │ ├── Makefile.am │ ├── firstparser.cxx │ ├── firstparser.hxx │ ├── htmlparser.cxx │ ├── htmlparser.hxx │ ├── latexparser.cxx │ ├── latexparser.hxx │ ├── manparser.cxx │ ├── manparser.hxx │ ├── odfparser.cxx │ ├── odfparser.hxx │ ├── testparser.cxx │ ├── textparser.cxx │ ├── textparser.hxx │ ├── xmlparser.cxx │ └── xmlparser.hxx └── tools │ ├── .gitignore │ ├── Makefile.am │ ├── affixcompress │ ├── analyze.cxx │ ├── build.sh │ ├── chmorph.cxx │ ├── example.cxx │ ├── fuzzer.cxx │ ├── hunspell.cxx │ ├── hunzip.cxx │ ├── hzip.cxx │ ├── inputs │ └── file.txt │ ├── ispellaff2myspell │ ├── makealias │ ├── munch.cxx │ ├── munch.h │ ├── unmunch.cxx │ ├── unmunch.h │ ├── wordforms │ └── wordlist2hunspell └── tests ├── .gitattributes ├── .gitignore ├── 1463589.aff ├── 1463589.dic ├── 1463589.sug ├── 1463589.wrong ├── 1463589_utf.aff ├── 1463589_utf.dic ├── 1463589_utf.sug ├── 1463589_utf.wrong ├── 1592880.aff ├── 1592880.dic ├── 1592880.good ├── 1695964.aff ├── 1695964.dic ├── 1695964.sug ├── 1695964.wrong ├── 1706659.aff ├── 1706659.dic ├── 1706659.wrong ├── 1975530.aff ├── 1975530.dic ├── 1975530.good ├── 1975530.wrong ├── 2970240.aff ├── 2970240.dic ├── 2970240.good ├── 2970240.wrong ├── 2970242.aff ├── 2970242.dic ├── 2970242.good ├── 2970242.wrong ├── 2999225.aff ├── 2999225.dic ├── 2999225.good ├── IJ.aff ├── IJ.dic ├── IJ.good ├── IJ.sug ├── IJ.wrong ├── Makefile.am ├── affixes.aff ├── affixes.dic ├── affixes.good ├── alias.aff ├── alias.dic ├── alias.good ├── alias2.aff ├── alias2.dic ├── alias2.good ├── alias2.morph ├── alias3.aff ├── alias3.dic ├── alias3.good ├── alias3.morph ├── allcaps.aff ├── allcaps.dic ├── allcaps.good ├── allcaps.sug ├── allcaps.wrong ├── allcaps2.aff ├── allcaps2.dic ├── allcaps2.good ├── allcaps2.sug ├── allcaps2.wrong ├── allcaps3.aff ├── allcaps3.dic ├── allcaps3.good ├── allcaps3.wrong ├── allcaps_utf.aff ├── allcaps_utf.dic ├── allcaps_utf.good ├── allcaps_utf.sug ├── allcaps_utf.wrong ├── arabic.aff ├── arabic.dic ├── arabic.wrong ├── base.aff ├── base.dic ├── base.good ├── base.sug ├── base.wrong ├── base_utf.aff ├── base_utf.dic ├── base_utf.good ├── base_utf.sug ├── base_utf.wrong ├── break.aff ├── break.dic ├── break.good ├── break.wrong ├── breakdefault.aff ├── breakdefault.dic ├── breakdefault.good ├── breakdefault.sug ├── breakdefault.wrong ├── breakoff.aff ├── breakoff.dic ├── breakoff.good ├── breakoff.wrong ├── checkcompoundcase.aff ├── checkcompoundcase.dic ├── checkcompoundcase.good ├── checkcompoundcase.wrong ├── checkcompoundcase2.aff ├── checkcompoundcase2.dic ├── checkcompoundcase2.good ├── checkcompoundcase2.wrong ├── checkcompoundcaseutf.aff ├── checkcompoundcaseutf.dic ├── checkcompoundcaseutf.good ├── checkcompoundcaseutf.wrong ├── checkcompounddup.aff ├── checkcompounddup.dic ├── checkcompounddup.good ├── checkcompounddup.wrong ├── checkcompoundpattern.aff ├── checkcompoundpattern.dic ├── checkcompoundpattern.good ├── checkcompoundpattern.wrong ├── checkcompoundpattern2.aff ├── checkcompoundpattern2.dic ├── checkcompoundpattern2.good ├── checkcompoundpattern2.wrong ├── checkcompoundpattern3.aff ├── checkcompoundpattern3.dic ├── checkcompoundpattern3.good ├── checkcompoundpattern3.wrong ├── checkcompoundpattern4.aff ├── checkcompoundpattern4.dic ├── checkcompoundpattern4.good ├── checkcompoundpattern4.wrong ├── checkcompoundrep.aff ├── checkcompoundrep.dic ├── checkcompoundrep.good ├── checkcompoundrep.wrong ├── checkcompoundtriple.aff ├── checkcompoundtriple.dic ├── checkcompoundtriple.good ├── checkcompoundtriple.wrong ├── checksharps.aff ├── checksharps.dic ├── checksharps.good ├── checksharps.sug ├── checksharps.wrong ├── checksharpsutf.aff ├── checksharpsutf.dic ├── checksharpsutf.good ├── checksharpsutf.sug ├── checksharpsutf.wrong ├── circumfix.aff ├── circumfix.dic ├── circumfix.good ├── circumfix.morph ├── circumfix.wrong ├── colons_in_words.aff ├── colons_in_words.dic ├── complexprefixes.aff ├── complexprefixes.dic ├── complexprefixes.good ├── complexprefixes.wrong ├── complexprefixes2.aff ├── complexprefixes2.dic ├── complexprefixes2.good ├── complexprefixesutf.aff ├── complexprefixesutf.dic ├── complexprefixesutf.good ├── complexprefixesutf.wrong ├── compoundaffix.aff ├── compoundaffix.dic ├── compoundaffix.good ├── compoundaffix.wrong ├── compoundaffix2.aff ├── compoundaffix2.dic ├── compoundaffix2.good ├── compoundaffix3.aff ├── compoundaffix3.dic ├── compoundaffix3.good ├── compoundaffix3.wrong ├── compoundflag.aff ├── compoundflag.dic ├── compoundflag.good ├── compoundflag.wrong ├── compoundforbid.aff ├── compoundforbid.dic ├── compoundforbid.good ├── compoundforbid.wrong ├── compoundrule.aff ├── compoundrule.dic ├── compoundrule.good ├── compoundrule.wrong ├── compoundrule2.aff ├── compoundrule2.dic ├── compoundrule2.good ├── compoundrule2.wrong ├── compoundrule3.aff ├── compoundrule3.dic ├── compoundrule3.good ├── compoundrule3.wrong ├── compoundrule4.aff ├── compoundrule4.dic ├── compoundrule4.good ├── compoundrule4.wrong ├── compoundrule5.aff ├── compoundrule5.dic ├── compoundrule5.good ├── compoundrule5.morph ├── compoundrule5.wrong ├── compoundrule6.aff ├── compoundrule6.dic ├── compoundrule6.good ├── compoundrule6.wrong ├── compoundrule7.aff ├── compoundrule7.dic ├── compoundrule7.good ├── compoundrule7.wrong ├── compoundrule8.aff ├── compoundrule8.dic ├── compoundrule8.good ├── compoundrule8.wrong ├── condition.aff ├── condition.dic ├── condition.good ├── condition.wrong ├── condition_utf.aff ├── condition_utf.dic ├── condition_utf.good ├── condition_utf.wrong ├── conditionalprefix.aff ├── conditionalprefix.dic ├── conditionalprefix.good ├── conditionalprefix.morph ├── conditionalprefix.wrong ├── digits_in_words.aff ├── digits_in_words.dic ├── digits_in_words.wrong ├── dotless_i.aff ├── dotless_i.dic ├── dotless_i.good ├── dotless_i.wrong ├── encoding.aff ├── encoding.dic ├── encoding.good ├── flag.aff ├── flag.dic ├── flag.good ├── flaglong.aff ├── flaglong.dic ├── flaglong.good ├── flagnum.aff ├── flagnum.dic ├── flagnum.good ├── flagutf8.aff ├── flagutf8.dic ├── flagutf8.good ├── fogemorpheme.aff ├── fogemorpheme.dic ├── fogemorpheme.good ├── fogemorpheme.wrong ├── forbiddenword.aff ├── forbiddenword.dic ├── forbiddenword.good ├── forbiddenword.wrong ├── forceucase.aff ├── forceucase.dic ├── forceucase.good ├── forceucase.sug ├── forceucase.wrong ├── fullstrip.aff ├── fullstrip.dic ├── fullstrip.good ├── germancompounding.aff ├── germancompounding.dic ├── germancompounding.good ├── germancompounding.wrong ├── germancompoundingold.aff ├── germancompoundingold.dic ├── germancompoundingold.good ├── germancompoundingold.wrong ├── hu.aff ├── hu.dic ├── hu.good ├── hu.wrong ├── i35725.aff ├── i35725.dic ├── i35725.good ├── i35725.sug ├── i35725.wrong ├── i53643.aff ├── i53643.dic ├── i53643.good ├── i53643.wrong ├── i54633.aff ├── i54633.dic ├── i54633.good ├── i54633.sug ├── i54633.wrong ├── i54980.aff ├── i54980.dic ├── i54980.good ├── i58202.aff ├── i58202.dic ├── i58202.good ├── i58202.sug ├── i58202.wrong ├── i68568.aff ├── i68568.dic ├── i68568.wrong ├── i68568utf.aff ├── i68568utf.dic ├── i68568utf.wrong ├── iconv.aff ├── iconv.dic ├── iconv.good ├── iconv2.aff ├── iconv2.dic ├── iconv2.good ├── ignore.aff ├── ignore.dic ├── ignore.good ├── ignoresug.aff ├── ignoresug.dic ├── ignoresug.good ├── ignoresug.morph ├── ignoreutf.aff ├── ignoreutf.dic ├── ignoreutf.good ├── keepcase.aff ├── keepcase.dic ├── keepcase.good ├── keepcase.sug ├── keepcase.wrong ├── korean.aff ├── korean.dic ├── korean.good ├── korean.wrong ├── map.aff ├── map.dic ├── map.sug ├── map.wrong ├── maputf.aff ├── maputf.dic ├── maputf.sug ├── maputf.wrong ├── morph.aff ├── morph.dic ├── morph.good ├── morph.morph ├── needaffix.aff ├── needaffix.dic ├── needaffix.good ├── needaffix.wrong ├── needaffix2.aff ├── needaffix2.dic ├── needaffix2.good ├── needaffix2.morph ├── needaffix3.aff ├── needaffix3.dic ├── needaffix3.good ├── needaffix3.wrong ├── needaffix4.aff ├── needaffix4.dic ├── needaffix4.good ├── needaffix5.aff ├── needaffix5.dic ├── needaffix5.good ├── needaffix5.wrong ├── nepali.aff ├── nepali.dic ├── nepali.good ├── nepali.wrong ├── ngram_utf_fix.aff ├── ngram_utf_fix.dic ├── ngram_utf_fix.good ├── ngram_utf_fix.sug ├── ngram_utf_fix.wrong ├── nosuggest.aff ├── nosuggest.dic ├── nosuggest.good ├── nosuggest.sug ├── nosuggest.wrong ├── oconv.aff ├── oconv.dic ├── oconv.good ├── oconv.sug ├── oconv.wrong ├── oconv2.aff ├── oconv2.dic ├── oconv2.good ├── oconv2.morph ├── oconv2.root ├── oconv2.test ├── onlyincompound.aff ├── onlyincompound.dic ├── onlyincompound.good ├── onlyincompound.sug ├── onlyincompound.wrong ├── onlyincompound2.aff ├── onlyincompound2.dic ├── onlyincompound2.good ├── onlyincompound2.wrong ├── opentaal_cpdpat.aff ├── opentaal_cpdpat.dic ├── opentaal_cpdpat.good ├── opentaal_cpdpat.wrong ├── opentaal_cpdpat2.aff ├── opentaal_cpdpat2.dic ├── opentaal_cpdpat2.good ├── opentaal_cpdpat2.wrong ├── opentaal_forbiddenword1.aff ├── opentaal_forbiddenword1.dic ├── opentaal_forbiddenword1.good ├── opentaal_forbiddenword1.sug ├── opentaal_forbiddenword1.wrong ├── opentaal_forbiddenword2.aff ├── opentaal_forbiddenword2.dic ├── opentaal_forbiddenword2.good ├── opentaal_forbiddenword2.sug ├── opentaal_forbiddenword2.wrong ├── opentaal_keepcase.aff ├── opentaal_keepcase.dic ├── opentaal_keepcase.good ├── opentaal_keepcase.sug ├── opentaal_keepcase.wrong ├── ph.aff ├── ph.dic ├── ph.sug ├── ph.wrong ├── ph2.aff ├── ph2.dic ├── ph2.good ├── ph2.sug ├── ph2.wrong ├── phone.aff ├── phone.dic ├── phone.sug ├── phone.wrong ├── rep.aff ├── rep.dic ├── rep.sug ├── rep.wrong ├── reputf.aff ├── reputf.dic ├── reputf.sug ├── reputf.wrong ├── simplifiedtriple.aff ├── simplifiedtriple.dic ├── simplifiedtriple.good ├── simplifiedtriple.wrong ├── slash.aff ├── slash.dic ├── slash.good ├── sug.aff ├── sug.dic ├── sug.sug ├── sug.wrong ├── sug2.aff ├── sug2.dic ├── sug2.sug ├── sug2.wrong ├── suggestiontest ├── .gitignore ├── List_of_common_misspellings.txt ├── Makefile.am ├── Makefile.orig ├── README ├── prepare ├── prepare2 └── test ├── sugutf.aff ├── sugutf.dic ├── sugutf.sug ├── sugutf.wrong ├── test.sh ├── timelimit.aff ├── timelimit.dic ├── timelimit.good ├── timelimit.wrong ├── utf8.aff ├── utf8.dic ├── utf8.good ├── utf8_bom.aff ├── utf8_bom.dic ├── utf8_bom.good ├── utf8_bom2.aff ├── utf8_bom2.dic ├── utf8_bom2.good ├── utf8_nonbmp.aff ├── utf8_nonbmp.dic ├── utf8_nonbmp.good ├── utf8_nonbmp.sug ├── utf8_nonbmp.test ├── utf8_nonbmp.wrong ├── utfcompound.aff ├── utfcompound.dic ├── utfcompound.good ├── utfcompound.wrong ├── warn.aff ├── warn.dic ├── warn.good ├── wordpair.aff ├── wordpair.dic ├── wordpair.good ├── wordpair.wrong ├── zeroaffix.aff ├── zeroaffix.dic ├── zeroaffix.good └── zeroaffix.morph /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/.travis.yml -------------------------------------------------------------------------------- /ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/ABOUT-NLS -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /COPYING.MPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/COPYING.MPL -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/ChangeLog -------------------------------------------------------------------------------- /ChangeLog.O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/ChangeLog.O -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/README.md -------------------------------------------------------------------------------- /THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/THANKS -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/appveyor.yml -------------------------------------------------------------------------------- /config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/config.rpath -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/configure.ac -------------------------------------------------------------------------------- /hunspell.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/hunspell.pc.in -------------------------------------------------------------------------------- /js-output/loader-en-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/js-output/loader-en-us.js -------------------------------------------------------------------------------- /js-output/loader-vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/js-output/loader-vi.js -------------------------------------------------------------------------------- /license.hunspell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/license.hunspell -------------------------------------------------------------------------------- /license.myspell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/license.myspell -------------------------------------------------------------------------------- /m4/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/m4/ChangeLog -------------------------------------------------------------------------------- /m4/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/m4/README -------------------------------------------------------------------------------- /m4/gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/m4/gettext.m4 -------------------------------------------------------------------------------- /m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/m4/iconv.m4 -------------------------------------------------------------------------------- /m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/m4/lib-ld.m4 -------------------------------------------------------------------------------- /m4/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/m4/lib-link.m4 -------------------------------------------------------------------------------- /m4/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/m4/lib-prefix.m4 -------------------------------------------------------------------------------- /m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/m4/nls.m4 -------------------------------------------------------------------------------- /m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/m4/po.m4 -------------------------------------------------------------------------------- /m4/progtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/m4/progtest.m4 -------------------------------------------------------------------------------- /m4/visibility.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/m4/visibility.m4 -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/hu/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/man/hu/Makefile.am -------------------------------------------------------------------------------- /man/hu/hunspell.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/man/hu/hunspell.1 -------------------------------------------------------------------------------- /man/hu/hunspell.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/man/hu/hunspell.5 -------------------------------------------------------------------------------- /man/hunspell.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/man/hunspell.1 -------------------------------------------------------------------------------- /man/hunspell.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/man/hunspell.3 -------------------------------------------------------------------------------- /man/hunspell.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/man/hunspell.5 -------------------------------------------------------------------------------- /man/hunzip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/man/hunzip.1 -------------------------------------------------------------------------------- /man/hzip.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/man/hzip.1 -------------------------------------------------------------------------------- /msvc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/msvc/.gitignore -------------------------------------------------------------------------------- /msvc/Hunspell.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/msvc/Hunspell.rc -------------------------------------------------------------------------------- /msvc/Hunspell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/msvc/Hunspell.sln -------------------------------------------------------------------------------- /msvc/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/msvc/config.h -------------------------------------------------------------------------------- /msvc/hunspell.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/msvc/hunspell.vcxproj -------------------------------------------------------------------------------- /msvc/libhunspell.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/msvc/libhunspell.vcxproj -------------------------------------------------------------------------------- /msvc/testparser.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/msvc/testparser.vcxproj -------------------------------------------------------------------------------- /po/.gitignore: -------------------------------------------------------------------------------- 1 | POTFILES 2 | remove-potcdate.sed 3 | *.gmo 4 | -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | # Set of available languages. 2 | ca 3 | de 4 | es 5 | hu 6 | it 7 | pl 8 | pt_BR 9 | tg 10 | -------------------------------------------------------------------------------- /po/Makefile.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/Makefile.in.in -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/Makevars -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/Rules-quot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/Rules-quot -------------------------------------------------------------------------------- /po/boldquot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/boldquot.sed -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/de.po -------------------------------------------------------------------------------- /po/en@boldquot.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/en@boldquot.header -------------------------------------------------------------------------------- /po/en@quot.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/en@quot.header -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/es.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/hunspell.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/hunspell.pot -------------------------------------------------------------------------------- /po/insert-header.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/insert-header.sin -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/it.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/quot.sed -------------------------------------------------------------------------------- /po/remove-potcdate.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/remove-potcdate.sin -------------------------------------------------------------------------------- /po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /po/tg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/po/tg.po -------------------------------------------------------------------------------- /scripts/dic-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/scripts/dic-package.sh -------------------------------------------------------------------------------- /scripts/hunspell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/scripts/hunspell.sh -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS=hunspell parsers tools 2 | -------------------------------------------------------------------------------- /src/hunspell/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/Makefile.am -------------------------------------------------------------------------------- /src/hunspell/affentry.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/affentry.cxx -------------------------------------------------------------------------------- /src/hunspell/affentry.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/affentry.hxx -------------------------------------------------------------------------------- /src/hunspell/affixmgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/affixmgr.cxx -------------------------------------------------------------------------------- /src/hunspell/affixmgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/affixmgr.hxx -------------------------------------------------------------------------------- /src/hunspell/atypes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/atypes.hxx -------------------------------------------------------------------------------- /src/hunspell/baseaffix.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/baseaffix.hxx -------------------------------------------------------------------------------- /src/hunspell/csutil.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/csutil.cxx -------------------------------------------------------------------------------- /src/hunspell/csutil.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/csutil.hxx -------------------------------------------------------------------------------- /src/hunspell/filemgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/filemgr.cxx -------------------------------------------------------------------------------- /src/hunspell/filemgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/filemgr.hxx -------------------------------------------------------------------------------- /src/hunspell/hashmgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/hashmgr.cxx -------------------------------------------------------------------------------- /src/hunspell/hashmgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/hashmgr.hxx -------------------------------------------------------------------------------- /src/hunspell/htypes.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/htypes.hxx -------------------------------------------------------------------------------- /src/hunspell/hunspell.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/hunspell.cxx -------------------------------------------------------------------------------- /src/hunspell/hunspell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/hunspell.h -------------------------------------------------------------------------------- /src/hunspell/hunspell.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/hunspell.hxx -------------------------------------------------------------------------------- /src/hunspell/hunvisapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/hunvisapi.h -------------------------------------------------------------------------------- /src/hunspell/hunvisapi.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/hunvisapi.h.in -------------------------------------------------------------------------------- /src/hunspell/hunzip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/hunzip.cxx -------------------------------------------------------------------------------- /src/hunspell/hunzip.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/hunzip.hxx -------------------------------------------------------------------------------- /src/hunspell/langnum.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/langnum.hxx -------------------------------------------------------------------------------- /src/hunspell/phonet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/phonet.cxx -------------------------------------------------------------------------------- /src/hunspell/phonet.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/phonet.hxx -------------------------------------------------------------------------------- /src/hunspell/replist.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/replist.cxx -------------------------------------------------------------------------------- /src/hunspell/replist.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/replist.hxx -------------------------------------------------------------------------------- /src/hunspell/suggestmgr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/suggestmgr.cxx -------------------------------------------------------------------------------- /src/hunspell/suggestmgr.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/suggestmgr.hxx -------------------------------------------------------------------------------- /src/hunspell/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/test.js -------------------------------------------------------------------------------- /src/hunspell/utf_info.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/utf_info.hxx -------------------------------------------------------------------------------- /src/hunspell/w_char.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/hunspell/w_char.hxx -------------------------------------------------------------------------------- /src/parsers/.gitignore: -------------------------------------------------------------------------------- 1 | testparser 2 | -------------------------------------------------------------------------------- /src/parsers/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/Makefile.am -------------------------------------------------------------------------------- /src/parsers/firstparser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/firstparser.cxx -------------------------------------------------------------------------------- /src/parsers/firstparser.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/firstparser.hxx -------------------------------------------------------------------------------- /src/parsers/htmlparser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/htmlparser.cxx -------------------------------------------------------------------------------- /src/parsers/htmlparser.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/htmlparser.hxx -------------------------------------------------------------------------------- /src/parsers/latexparser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/latexparser.cxx -------------------------------------------------------------------------------- /src/parsers/latexparser.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/latexparser.hxx -------------------------------------------------------------------------------- /src/parsers/manparser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/manparser.cxx -------------------------------------------------------------------------------- /src/parsers/manparser.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/manparser.hxx -------------------------------------------------------------------------------- /src/parsers/odfparser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/odfparser.cxx -------------------------------------------------------------------------------- /src/parsers/odfparser.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/odfparser.hxx -------------------------------------------------------------------------------- /src/parsers/testparser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/testparser.cxx -------------------------------------------------------------------------------- /src/parsers/textparser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/textparser.cxx -------------------------------------------------------------------------------- /src/parsers/textparser.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/textparser.hxx -------------------------------------------------------------------------------- /src/parsers/xmlparser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/xmlparser.cxx -------------------------------------------------------------------------------- /src/parsers/xmlparser.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/parsers/xmlparser.hxx -------------------------------------------------------------------------------- /src/tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/.gitignore -------------------------------------------------------------------------------- /src/tools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/Makefile.am -------------------------------------------------------------------------------- /src/tools/affixcompress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/affixcompress -------------------------------------------------------------------------------- /src/tools/analyze.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/analyze.cxx -------------------------------------------------------------------------------- /src/tools/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/build.sh -------------------------------------------------------------------------------- /src/tools/chmorph.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/chmorph.cxx -------------------------------------------------------------------------------- /src/tools/example.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/example.cxx -------------------------------------------------------------------------------- /src/tools/fuzzer.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/fuzzer.cxx -------------------------------------------------------------------------------- /src/tools/hunspell.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/hunspell.cxx -------------------------------------------------------------------------------- /src/tools/hunzip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/hunzip.cxx -------------------------------------------------------------------------------- /src/tools/hzip.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/hzip.cxx -------------------------------------------------------------------------------- /src/tools/inputs/file.txt: -------------------------------------------------------------------------------- 1 | this is my applications Nha phai ko thi -------------------------------------------------------------------------------- /src/tools/ispellaff2myspell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/ispellaff2myspell -------------------------------------------------------------------------------- /src/tools/makealias: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/makealias -------------------------------------------------------------------------------- /src/tools/munch.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/munch.cxx -------------------------------------------------------------------------------- /src/tools/munch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/munch.h -------------------------------------------------------------------------------- /src/tools/unmunch.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/unmunch.cxx -------------------------------------------------------------------------------- /src/tools/unmunch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/unmunch.h -------------------------------------------------------------------------------- /src/tools/wordforms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/wordforms -------------------------------------------------------------------------------- /src/tools/wordlist2hunspell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/src/tools/wordlist2hunspell -------------------------------------------------------------------------------- /tests/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/.gitattributes -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | testSubDir 2 | *.log 3 | *.trs 4 | -------------------------------------------------------------------------------- /tests/1463589.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1463589.aff -------------------------------------------------------------------------------- /tests/1463589.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1463589.dic -------------------------------------------------------------------------------- /tests/1463589.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1463589.sug -------------------------------------------------------------------------------- /tests/1463589.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1463589.wrong -------------------------------------------------------------------------------- /tests/1463589_utf.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1463589_utf.aff -------------------------------------------------------------------------------- /tests/1463589_utf.dic: -------------------------------------------------------------------------------- 1 | 1 2 | Kühlschrank 3 | -------------------------------------------------------------------------------- /tests/1463589_utf.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1463589_utf.sug -------------------------------------------------------------------------------- /tests/1463589_utf.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1463589_utf.wrong -------------------------------------------------------------------------------- /tests/1592880.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1592880.aff -------------------------------------------------------------------------------- /tests/1592880.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1592880.dic -------------------------------------------------------------------------------- /tests/1592880.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1592880.good -------------------------------------------------------------------------------- /tests/1695964.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1695964.aff -------------------------------------------------------------------------------- /tests/1695964.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1695964.dic -------------------------------------------------------------------------------- /tests/1695964.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1695964.sug -------------------------------------------------------------------------------- /tests/1695964.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1695964.wrong -------------------------------------------------------------------------------- /tests/1706659.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1706659.aff -------------------------------------------------------------------------------- /tests/1706659.dic: -------------------------------------------------------------------------------- 1 | 3 2 | arbeits/v 3 | scheu/Aw 4 | farbig/A 5 | -------------------------------------------------------------------------------- /tests/1706659.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1706659.wrong -------------------------------------------------------------------------------- /tests/1975530.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/1975530.aff -------------------------------------------------------------------------------- /tests/1975530.dic: -------------------------------------------------------------------------------- 1 | 2 2 | أرى/x 3 | أيار/x 4 | -------------------------------------------------------------------------------- /tests/1975530.good: -------------------------------------------------------------------------------- 1 | أرى 2 | أيار 3 | ترى 4 | -------------------------------------------------------------------------------- /tests/1975530.wrong: -------------------------------------------------------------------------------- 1 | تيار 2 | -------------------------------------------------------------------------------- /tests/2970240.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/2970240.aff -------------------------------------------------------------------------------- /tests/2970240.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/2970240.dic -------------------------------------------------------------------------------- /tests/2970240.good: -------------------------------------------------------------------------------- 1 | firstmiddlelast 2 | -------------------------------------------------------------------------------- /tests/2970240.wrong: -------------------------------------------------------------------------------- 1 | lastmiddlefirst 2 | -------------------------------------------------------------------------------- /tests/2970242.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/2970242.aff -------------------------------------------------------------------------------- /tests/2970242.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/2970242.dic -------------------------------------------------------------------------------- /tests/2970242.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/2970242.good -------------------------------------------------------------------------------- /tests/2970242.wrong: -------------------------------------------------------------------------------- 1 | foobaz 2 | -------------------------------------------------------------------------------- /tests/2999225.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/2999225.aff -------------------------------------------------------------------------------- /tests/2999225.dic: -------------------------------------------------------------------------------- 1 | 3 2 | foo/aA 3 | bar/b 4 | baz/B 5 | -------------------------------------------------------------------------------- /tests/2999225.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/2999225.good -------------------------------------------------------------------------------- /tests/IJ.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/IJ.aff -------------------------------------------------------------------------------- /tests/IJ.dic: -------------------------------------------------------------------------------- 1 | 1 2 | ijs/i 3 | Ijs/* 4 | -------------------------------------------------------------------------------- /tests/IJ.good: -------------------------------------------------------------------------------- 1 | ijs 2 | IJs 3 | -------------------------------------------------------------------------------- /tests/IJ.sug: -------------------------------------------------------------------------------- 1 | IJs, ijs 2 | -------------------------------------------------------------------------------- /tests/IJ.wrong: -------------------------------------------------------------------------------- 1 | Ijs 2 | -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/affixes.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/affixes.aff -------------------------------------------------------------------------------- /tests/affixes.dic: -------------------------------------------------------------------------------- 1 | 3 2 | hello 3 | try/B 4 | work/AB 5 | -------------------------------------------------------------------------------- /tests/affixes.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/affixes.good -------------------------------------------------------------------------------- /tests/alias.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/alias.aff -------------------------------------------------------------------------------- /tests/alias.dic: -------------------------------------------------------------------------------- 1 | 1 2 | foo/1 3 | -------------------------------------------------------------------------------- /tests/alias.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/alias.good -------------------------------------------------------------------------------- /tests/alias2.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/alias2.aff -------------------------------------------------------------------------------- /tests/alias2.dic: -------------------------------------------------------------------------------- 1 | 1 2 | foo/1 3 3 | -------------------------------------------------------------------------------- /tests/alias2.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/alias2.good -------------------------------------------------------------------------------- /tests/alias2.morph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/alias2.morph -------------------------------------------------------------------------------- /tests/alias3.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/alias3.aff -------------------------------------------------------------------------------- /tests/alias3.dic: -------------------------------------------------------------------------------- 1 | 1 2 | ouro/BC 4 3 | -------------------------------------------------------------------------------- /tests/alias3.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/alias3.good -------------------------------------------------------------------------------- /tests/alias3.morph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/alias3.morph -------------------------------------------------------------------------------- /tests/allcaps.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps.aff -------------------------------------------------------------------------------- /tests/allcaps.dic: -------------------------------------------------------------------------------- 1 | 2 2 | OpenOffice.org 3 | UNICEF/S 4 | -------------------------------------------------------------------------------- /tests/allcaps.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps.good -------------------------------------------------------------------------------- /tests/allcaps.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps.sug -------------------------------------------------------------------------------- /tests/allcaps.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps.wrong -------------------------------------------------------------------------------- /tests/allcaps2.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps2.aff -------------------------------------------------------------------------------- /tests/allcaps2.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps2.dic -------------------------------------------------------------------------------- /tests/allcaps2.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps2.good -------------------------------------------------------------------------------- /tests/allcaps2.sug: -------------------------------------------------------------------------------- 1 | iPod 2 | ipodos 3 | -------------------------------------------------------------------------------- /tests/allcaps2.wrong: -------------------------------------------------------------------------------- 1 | ipod 2 | iPodos 3 | -------------------------------------------------------------------------------- /tests/allcaps3.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps3.aff -------------------------------------------------------------------------------- /tests/allcaps3.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps3.dic -------------------------------------------------------------------------------- /tests/allcaps3.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps3.good -------------------------------------------------------------------------------- /tests/allcaps3.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps3.wrong -------------------------------------------------------------------------------- /tests/allcaps_utf.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps_utf.aff -------------------------------------------------------------------------------- /tests/allcaps_utf.dic: -------------------------------------------------------------------------------- 1 | 2 2 | OpenOffice.org 3 | UNICEF/S 4 | -------------------------------------------------------------------------------- /tests/allcaps_utf.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps_utf.good -------------------------------------------------------------------------------- /tests/allcaps_utf.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps_utf.sug -------------------------------------------------------------------------------- /tests/allcaps_utf.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/allcaps_utf.wrong -------------------------------------------------------------------------------- /tests/arabic.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/arabic.aff -------------------------------------------------------------------------------- /tests/arabic.dic: -------------------------------------------------------------------------------- 1 | 1 2 | ب 3 | -------------------------------------------------------------------------------- /tests/arabic.wrong: -------------------------------------------------------------------------------- 1 | ـ 2 | -------------------------------------------------------------------------------- /tests/base.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/base.aff -------------------------------------------------------------------------------- /tests/base.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/base.dic -------------------------------------------------------------------------------- /tests/base.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/base.good -------------------------------------------------------------------------------- /tests/base.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/base.sug -------------------------------------------------------------------------------- /tests/base.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/base.wrong -------------------------------------------------------------------------------- /tests/base_utf.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/base_utf.aff -------------------------------------------------------------------------------- /tests/base_utf.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/base_utf.dic -------------------------------------------------------------------------------- /tests/base_utf.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/base_utf.good -------------------------------------------------------------------------------- /tests/base_utf.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/base_utf.sug -------------------------------------------------------------------------------- /tests/base_utf.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/base_utf.wrong -------------------------------------------------------------------------------- /tests/break.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/break.aff -------------------------------------------------------------------------------- /tests/break.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/break.dic -------------------------------------------------------------------------------- /tests/break.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/break.good -------------------------------------------------------------------------------- /tests/break.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/break.wrong -------------------------------------------------------------------------------- /tests/breakdefault.aff: -------------------------------------------------------------------------------- 1 | # default word break at hyphens and n-dashes 2 | 3 | SET UTF-8 4 | MAXNGRAMSUGS 0 5 | WORDCHARS - 6 | TRY ot 7 | -------------------------------------------------------------------------------- /tests/breakdefault.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/breakdefault.dic -------------------------------------------------------------------------------- /tests/breakdefault.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/breakdefault.good -------------------------------------------------------------------------------- /tests/breakdefault.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/breakdefault.sug -------------------------------------------------------------------------------- /tests/breakdefault.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/breakdefault.wrong -------------------------------------------------------------------------------- /tests/breakoff.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/breakoff.aff -------------------------------------------------------------------------------- /tests/breakoff.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/breakoff.dic -------------------------------------------------------------------------------- /tests/breakoff.good: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | scot-free 4 | -------------------------------------------------------------------------------- /tests/breakoff.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/breakoff.wrong -------------------------------------------------------------------------------- /tests/checkcompoundcase.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundcase.aff -------------------------------------------------------------------------------- /tests/checkcompoundcase.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundcase.dic -------------------------------------------------------------------------------- /tests/checkcompoundcase.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundcase.good -------------------------------------------------------------------------------- /tests/checkcompoundcase.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundcase.wrong -------------------------------------------------------------------------------- /tests/checkcompoundcase2.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundcase2.aff -------------------------------------------------------------------------------- /tests/checkcompoundcase2.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundcase2.dic -------------------------------------------------------------------------------- /tests/checkcompoundcase2.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundcase2.good -------------------------------------------------------------------------------- /tests/checkcompoundcase2.wrong: -------------------------------------------------------------------------------- 1 | áoóÓoá 2 | -------------------------------------------------------------------------------- /tests/checkcompoundcaseutf.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundcaseutf.aff -------------------------------------------------------------------------------- /tests/checkcompoundcaseutf.dic: -------------------------------------------------------------------------------- 1 | 2 2 | áoó/A 3 | Óoá/A 4 | -------------------------------------------------------------------------------- /tests/checkcompoundcaseutf.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundcaseutf.good -------------------------------------------------------------------------------- /tests/checkcompoundcaseutf.wrong: -------------------------------------------------------------------------------- 1 | áoóÓoá 2 | -------------------------------------------------------------------------------- /tests/checkcompounddup.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompounddup.aff -------------------------------------------------------------------------------- /tests/checkcompounddup.dic: -------------------------------------------------------------------------------- 1 | 2 2 | foo/A 3 | bar/A 4 | -------------------------------------------------------------------------------- /tests/checkcompounddup.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompounddup.good -------------------------------------------------------------------------------- /tests/checkcompounddup.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompounddup.wrong -------------------------------------------------------------------------------- /tests/checkcompoundpattern.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundpattern.aff -------------------------------------------------------------------------------- /tests/checkcompoundpattern.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundpattern.dic -------------------------------------------------------------------------------- /tests/checkcompoundpattern.good: -------------------------------------------------------------------------------- 1 | könnyszámítás 2 | hossznyelés 3 | -------------------------------------------------------------------------------- /tests/checkcompoundpattern.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundpattern.wrong -------------------------------------------------------------------------------- /tests/checkcompoundpattern2.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundpattern2.aff -------------------------------------------------------------------------------- /tests/checkcompoundpattern2.dic: -------------------------------------------------------------------------------- 1 | 2 2 | foo/A 3 | bar/A 4 | -------------------------------------------------------------------------------- /tests/checkcompoundpattern2.good: -------------------------------------------------------------------------------- 1 | barfoo 2 | fozar 3 | fur 4 | -------------------------------------------------------------------------------- /tests/checkcompoundpattern2.wrong: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /tests/checkcompoundpattern3.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundpattern3.aff -------------------------------------------------------------------------------- /tests/checkcompoundpattern3.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundpattern3.dic -------------------------------------------------------------------------------- /tests/checkcompoundpattern3.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundpattern3.good -------------------------------------------------------------------------------- /tests/checkcompoundpattern3.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundpattern3.wrong -------------------------------------------------------------------------------- /tests/checkcompoundpattern4.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundpattern4.aff -------------------------------------------------------------------------------- /tests/checkcompoundpattern4.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundpattern4.dic -------------------------------------------------------------------------------- /tests/checkcompoundpattern4.good: -------------------------------------------------------------------------------- 1 | sUryOdayaM 2 | pErunna 3 | -------------------------------------------------------------------------------- /tests/checkcompoundpattern4.wrong: -------------------------------------------------------------------------------- 1 | sUryaudayaM 2 | pEruunna 3 | -------------------------------------------------------------------------------- /tests/checkcompoundrep.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundrep.aff -------------------------------------------------------------------------------- /tests/checkcompoundrep.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundrep.dic -------------------------------------------------------------------------------- /tests/checkcompoundrep.good: -------------------------------------------------------------------------------- 1 | vízszer 2 | szerkocsi 3 | -------------------------------------------------------------------------------- /tests/checkcompoundrep.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundrep.wrong -------------------------------------------------------------------------------- /tests/checkcompoundtriple.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundtriple.aff -------------------------------------------------------------------------------- /tests/checkcompoundtriple.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundtriple.dic -------------------------------------------------------------------------------- /tests/checkcompoundtriple.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checkcompoundtriple.good -------------------------------------------------------------------------------- /tests/checkcompoundtriple.wrong: -------------------------------------------------------------------------------- 1 | fooopera 2 | bareeel 3 | -------------------------------------------------------------------------------- /tests/checksharps.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checksharps.aff -------------------------------------------------------------------------------- /tests/checksharps.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checksharps.dic -------------------------------------------------------------------------------- /tests/checksharps.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checksharps.good -------------------------------------------------------------------------------- /tests/checksharps.sug: -------------------------------------------------------------------------------- 1 | MÜSSIG, müßig 2 | -------------------------------------------------------------------------------- /tests/checksharps.wrong: -------------------------------------------------------------------------------- 1 | MÜßIG 2 | -------------------------------------------------------------------------------- /tests/checksharpsutf.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checksharpsutf.aff -------------------------------------------------------------------------------- /tests/checksharpsutf.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checksharpsutf.dic -------------------------------------------------------------------------------- /tests/checksharpsutf.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/checksharpsutf.good -------------------------------------------------------------------------------- /tests/checksharpsutf.sug: -------------------------------------------------------------------------------- 1 | MÜSSIG, müßig 2 | -------------------------------------------------------------------------------- /tests/checksharpsutf.wrong: -------------------------------------------------------------------------------- 1 | MÜßIG 2 | -------------------------------------------------------------------------------- /tests/circumfix.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/circumfix.aff -------------------------------------------------------------------------------- /tests/circumfix.dic: -------------------------------------------------------------------------------- 1 | 1 2 | nagy/C po:adj 3 | -------------------------------------------------------------------------------- /tests/circumfix.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/circumfix.good -------------------------------------------------------------------------------- /tests/circumfix.morph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/circumfix.morph -------------------------------------------------------------------------------- /tests/circumfix.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/circumfix.wrong -------------------------------------------------------------------------------- /tests/colons_in_words.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/colons_in_words.aff -------------------------------------------------------------------------------- /tests/colons_in_words.dic: -------------------------------------------------------------------------------- 1 | 2 2 | c:a 3 | S:t 4 | foo 5 | -------------------------------------------------------------------------------- /tests/complexprefixes.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/complexprefixes.aff -------------------------------------------------------------------------------- /tests/complexprefixes.dic: -------------------------------------------------------------------------------- 1 | 1 2 | ouro/B 3 | 4 | -------------------------------------------------------------------------------- /tests/complexprefixes.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/complexprefixes.good -------------------------------------------------------------------------------- /tests/complexprefixes.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/complexprefixes.wrong -------------------------------------------------------------------------------- /tests/complexprefixes2.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/complexprefixes2.aff -------------------------------------------------------------------------------- /tests/complexprefixes2.dic: -------------------------------------------------------------------------------- 1 | 1 2 | ouro/BC [stem_1] 3 | 4 | -------------------------------------------------------------------------------- /tests/complexprefixes2.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/complexprefixes2.good -------------------------------------------------------------------------------- /tests/complexprefixesutf.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/complexprefixesutf.aff -------------------------------------------------------------------------------- /tests/complexprefixesutf.dic: -------------------------------------------------------------------------------- 1 | 1 2 | ⲟⲩⲣⲟ/B 3 | -------------------------------------------------------------------------------- /tests/complexprefixesutf.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/complexprefixesutf.good -------------------------------------------------------------------------------- /tests/complexprefixesutf.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/complexprefixesutf.wrong -------------------------------------------------------------------------------- /tests/compoundaffix.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundaffix.aff -------------------------------------------------------------------------------- /tests/compoundaffix.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundaffix.dic -------------------------------------------------------------------------------- /tests/compoundaffix.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundaffix.good -------------------------------------------------------------------------------- /tests/compoundaffix.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundaffix.wrong -------------------------------------------------------------------------------- /tests/compoundaffix2.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundaffix2.aff -------------------------------------------------------------------------------- /tests/compoundaffix2.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundaffix2.dic -------------------------------------------------------------------------------- /tests/compoundaffix2.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundaffix2.good -------------------------------------------------------------------------------- /tests/compoundaffix3.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundaffix3.aff -------------------------------------------------------------------------------- /tests/compoundaffix3.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundaffix3.dic -------------------------------------------------------------------------------- /tests/compoundaffix3.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundaffix3.good -------------------------------------------------------------------------------- /tests/compoundaffix3.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundaffix3.wrong -------------------------------------------------------------------------------- /tests/compoundflag.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundflag.aff -------------------------------------------------------------------------------- /tests/compoundflag.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundflag.dic -------------------------------------------------------------------------------- /tests/compoundflag.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundflag.good -------------------------------------------------------------------------------- /tests/compoundflag.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundflag.wrong -------------------------------------------------------------------------------- /tests/compoundforbid.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundforbid.aff -------------------------------------------------------------------------------- /tests/compoundforbid.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundforbid.dic -------------------------------------------------------------------------------- /tests/compoundforbid.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundforbid.good -------------------------------------------------------------------------------- /tests/compoundforbid.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundforbid.wrong -------------------------------------------------------------------------------- /tests/compoundrule.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule.aff -------------------------------------------------------------------------------- /tests/compoundrule.dic: -------------------------------------------------------------------------------- 1 | 3 2 | a/A 3 | b/B 4 | c/BC 5 | 6 | -------------------------------------------------------------------------------- /tests/compoundrule.good: -------------------------------------------------------------------------------- 1 | abc 2 | acc 3 | -------------------------------------------------------------------------------- /tests/compoundrule.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule.wrong -------------------------------------------------------------------------------- /tests/compoundrule2.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule2.aff -------------------------------------------------------------------------------- /tests/compoundrule2.dic: -------------------------------------------------------------------------------- 1 | 3 2 | a/A 3 | b/B 4 | c/C 5 | 6 | -------------------------------------------------------------------------------- /tests/compoundrule2.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule2.good -------------------------------------------------------------------------------- /tests/compoundrule2.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule2.wrong -------------------------------------------------------------------------------- /tests/compoundrule3.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule3.aff -------------------------------------------------------------------------------- /tests/compoundrule3.dic: -------------------------------------------------------------------------------- 1 | 3 2 | a/A 3 | b/B 4 | c/C 5 | 6 | -------------------------------------------------------------------------------- /tests/compoundrule3.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule3.good -------------------------------------------------------------------------------- /tests/compoundrule3.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule3.wrong -------------------------------------------------------------------------------- /tests/compoundrule4.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule4.aff -------------------------------------------------------------------------------- /tests/compoundrule4.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule4.dic -------------------------------------------------------------------------------- /tests/compoundrule4.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule4.good -------------------------------------------------------------------------------- /tests/compoundrule4.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule4.wrong -------------------------------------------------------------------------------- /tests/compoundrule5.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule5.aff -------------------------------------------------------------------------------- /tests/compoundrule5.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule5.dic -------------------------------------------------------------------------------- /tests/compoundrule5.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule5.good -------------------------------------------------------------------------------- /tests/compoundrule5.morph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule5.morph -------------------------------------------------------------------------------- /tests/compoundrule5.wrong: -------------------------------------------------------------------------------- 1 | .25 2 | -------------------------------------------------------------------------------- /tests/compoundrule6.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule6.aff -------------------------------------------------------------------------------- /tests/compoundrule6.dic: -------------------------------------------------------------------------------- 1 | 3 2 | a/A 3 | b/B 4 | c/C 5 | 6 | -------------------------------------------------------------------------------- /tests/compoundrule6.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule6.good -------------------------------------------------------------------------------- /tests/compoundrule6.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule6.wrong -------------------------------------------------------------------------------- /tests/compoundrule7.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule7.aff -------------------------------------------------------------------------------- /tests/compoundrule7.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule7.dic -------------------------------------------------------------------------------- /tests/compoundrule7.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule7.good -------------------------------------------------------------------------------- /tests/compoundrule7.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule7.wrong -------------------------------------------------------------------------------- /tests/compoundrule8.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule8.aff -------------------------------------------------------------------------------- /tests/compoundrule8.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule8.dic -------------------------------------------------------------------------------- /tests/compoundrule8.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule8.good -------------------------------------------------------------------------------- /tests/compoundrule8.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/compoundrule8.wrong -------------------------------------------------------------------------------- /tests/condition.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/condition.aff -------------------------------------------------------------------------------- /tests/condition.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/condition.dic -------------------------------------------------------------------------------- /tests/condition.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/condition.good -------------------------------------------------------------------------------- /tests/condition.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/condition.wrong -------------------------------------------------------------------------------- /tests/condition_utf.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/condition_utf.aff -------------------------------------------------------------------------------- /tests/condition_utf.dic: -------------------------------------------------------------------------------- 1 | 1 2 | óőó/SP 3 | -------------------------------------------------------------------------------- /tests/condition_utf.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/condition_utf.good -------------------------------------------------------------------------------- /tests/condition_utf.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/condition_utf.wrong -------------------------------------------------------------------------------- /tests/conditionalprefix.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/conditionalprefix.aff -------------------------------------------------------------------------------- /tests/conditionalprefix.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/conditionalprefix.dic -------------------------------------------------------------------------------- /tests/conditionalprefix.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/conditionalprefix.good -------------------------------------------------------------------------------- /tests/conditionalprefix.morph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/conditionalprefix.morph -------------------------------------------------------------------------------- /tests/conditionalprefix.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/conditionalprefix.wrong -------------------------------------------------------------------------------- /tests/digits_in_words.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/digits_in_words.aff -------------------------------------------------------------------------------- /tests/digits_in_words.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/digits_in_words.dic -------------------------------------------------------------------------------- /tests/digits_in_words.wrong: -------------------------------------------------------------------------------- 1 | -jährig 2 | -------------------------------------------------------------------------------- /tests/dotless_i.aff: -------------------------------------------------------------------------------- 1 | SET UTF-8 2 | LANG tr 3 | -------------------------------------------------------------------------------- /tests/dotless_i.dic: -------------------------------------------------------------------------------- 1 | 3 2 | iç 3 | ışık 4 | Diyarbakır 5 | -------------------------------------------------------------------------------- /tests/dotless_i.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/dotless_i.good -------------------------------------------------------------------------------- /tests/dotless_i.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/dotless_i.wrong -------------------------------------------------------------------------------- /tests/encoding.aff: -------------------------------------------------------------------------------- 1 | SET ISO-8859-15 2 | -------------------------------------------------------------------------------- /tests/encoding.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/encoding.dic -------------------------------------------------------------------------------- /tests/encoding.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/encoding.good -------------------------------------------------------------------------------- /tests/flag.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/flag.aff -------------------------------------------------------------------------------- /tests/flag.dic: -------------------------------------------------------------------------------- 1 | 1 2 | foo/A3 3 | -------------------------------------------------------------------------------- /tests/flag.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/flag.good -------------------------------------------------------------------------------- /tests/flaglong.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/flaglong.aff -------------------------------------------------------------------------------- /tests/flaglong.dic: -------------------------------------------------------------------------------- 1 | 1 2 | foo/zx09 3 | -------------------------------------------------------------------------------- /tests/flaglong.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/flaglong.good -------------------------------------------------------------------------------- /tests/flagnum.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/flagnum.aff -------------------------------------------------------------------------------- /tests/flagnum.dic: -------------------------------------------------------------------------------- 1 | 1 2 | foo/999,54321 3 | -------------------------------------------------------------------------------- /tests/flagnum.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/flagnum.good -------------------------------------------------------------------------------- /tests/flagutf8.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/flagutf8.aff -------------------------------------------------------------------------------- /tests/flagutf8.dic: -------------------------------------------------------------------------------- 1 | 1 2 | foo/AÜ 3 | -------------------------------------------------------------------------------- /tests/flagutf8.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/flagutf8.good -------------------------------------------------------------------------------- /tests/fogemorpheme.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/fogemorpheme.aff -------------------------------------------------------------------------------- /tests/fogemorpheme.dic: -------------------------------------------------------------------------------- 1 | 2 2 | gata/A 3 | kontoret/X 4 | -------------------------------------------------------------------------------- /tests/fogemorpheme.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/fogemorpheme.good -------------------------------------------------------------------------------- /tests/fogemorpheme.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/fogemorpheme.wrong -------------------------------------------------------------------------------- /tests/forbiddenword.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/forbiddenword.aff -------------------------------------------------------------------------------- /tests/forbiddenword.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/forbiddenword.dic -------------------------------------------------------------------------------- /tests/forbiddenword.good: -------------------------------------------------------------------------------- 1 | foo 2 | bar 3 | 4 | -------------------------------------------------------------------------------- /tests/forbiddenword.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/forbiddenword.wrong -------------------------------------------------------------------------------- /tests/forceucase.aff: -------------------------------------------------------------------------------- 1 | # force capitalized compound 2 | TRY F 3 | FORCEUCASE A 4 | COMPOUNDFLAG C 5 | -------------------------------------------------------------------------------- /tests/forceucase.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/forceucase.dic -------------------------------------------------------------------------------- /tests/forceucase.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/forceucase.good -------------------------------------------------------------------------------- /tests/forceucase.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/forceucase.sug -------------------------------------------------------------------------------- /tests/forceucase.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/forceucase.wrong -------------------------------------------------------------------------------- /tests/fullstrip.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/fullstrip.aff -------------------------------------------------------------------------------- /tests/fullstrip.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/fullstrip.dic -------------------------------------------------------------------------------- /tests/fullstrip.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/fullstrip.good -------------------------------------------------------------------------------- /tests/germancompounding.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/germancompounding.aff -------------------------------------------------------------------------------- /tests/germancompounding.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/germancompounding.dic -------------------------------------------------------------------------------- /tests/germancompounding.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/germancompounding.good -------------------------------------------------------------------------------- /tests/germancompounding.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/germancompounding.wrong -------------------------------------------------------------------------------- /tests/germancompoundingold.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/germancompoundingold.aff -------------------------------------------------------------------------------- /tests/germancompoundingold.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/germancompoundingold.dic -------------------------------------------------------------------------------- /tests/germancompoundingold.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/germancompoundingold.good -------------------------------------------------------------------------------- /tests/germancompoundingold.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/germancompoundingold.wrong -------------------------------------------------------------------------------- /tests/hu.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/hu.aff -------------------------------------------------------------------------------- /tests/hu.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/hu.dic -------------------------------------------------------------------------------- /tests/hu.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/hu.good -------------------------------------------------------------------------------- /tests/hu.wrong: -------------------------------------------------------------------------------- 1 | majomkenyérfavirág 2 | iskolatejakció 3 | devonkor 4 | forróvíz 5 | -------------------------------------------------------------------------------- /tests/i35725.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i35725.aff -------------------------------------------------------------------------------- /tests/i35725.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i35725.dic -------------------------------------------------------------------------------- /tests/i35725.good: -------------------------------------------------------------------------------- 1 | permanent 2 | -------------------------------------------------------------------------------- /tests/i35725.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i35725.sug -------------------------------------------------------------------------------- /tests/i35725.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i35725.wrong -------------------------------------------------------------------------------- /tests/i53643.aff: -------------------------------------------------------------------------------- 1 | # check numbers with separators 2 | WORDCHARS 0123456789.-, 3 | -------------------------------------------------------------------------------- /tests/i53643.dic: -------------------------------------------------------------------------------- 1 | 1 2 | foo 3 | -------------------------------------------------------------------------------- /tests/i53643.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i53643.good -------------------------------------------------------------------------------- /tests/i53643.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i53643.wrong -------------------------------------------------------------------------------- /tests/i54633.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i54633.aff -------------------------------------------------------------------------------- /tests/i54633.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i54633.dic -------------------------------------------------------------------------------- /tests/i54633.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i54633.good -------------------------------------------------------------------------------- /tests/i54633.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i54633.sug -------------------------------------------------------------------------------- /tests/i54633.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i54633.wrong -------------------------------------------------------------------------------- /tests/i54980.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i54980.aff -------------------------------------------------------------------------------- /tests/i54980.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i54980.dic -------------------------------------------------------------------------------- /tests/i54980.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i54980.good -------------------------------------------------------------------------------- /tests/i58202.aff: -------------------------------------------------------------------------------- 1 | # case suggestions 2 | MAXNGRAMSUGS 0 3 | # capitalise baz->Baz 4 | TRY B 5 | -------------------------------------------------------------------------------- /tests/i58202.dic: -------------------------------------------------------------------------------- 1 | 4 2 | foo 3 | bar 4 | Baz 5 | Boo 6 | -------------------------------------------------------------------------------- /tests/i58202.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i58202.good -------------------------------------------------------------------------------- /tests/i58202.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i58202.sug -------------------------------------------------------------------------------- /tests/i58202.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i58202.wrong -------------------------------------------------------------------------------- /tests/i68568.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i68568.aff -------------------------------------------------------------------------------- /tests/i68568.dic: -------------------------------------------------------------------------------- 1 | 1 2 | Elia/a 3 | -------------------------------------------------------------------------------- /tests/i68568.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i68568.wrong -------------------------------------------------------------------------------- /tests/i68568utf.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i68568utf.aff -------------------------------------------------------------------------------- /tests/i68568utf.dic: -------------------------------------------------------------------------------- 1 | 1 2 | Bár/a 3 | -------------------------------------------------------------------------------- /tests/i68568utf.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/i68568utf.wrong -------------------------------------------------------------------------------- /tests/iconv.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/iconv.aff -------------------------------------------------------------------------------- /tests/iconv.dic: -------------------------------------------------------------------------------- 1 | 4 2 | Chișinău 3 | Țepes 4 | ț 5 | Ș 6 | -------------------------------------------------------------------------------- /tests/iconv.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/iconv.good -------------------------------------------------------------------------------- /tests/iconv2.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/iconv2.aff -------------------------------------------------------------------------------- /tests/iconv2.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/iconv2.dic -------------------------------------------------------------------------------- /tests/iconv2.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/iconv2.good -------------------------------------------------------------------------------- /tests/ignore.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ignore.aff -------------------------------------------------------------------------------- /tests/ignore.dic: -------------------------------------------------------------------------------- 1 | 2 2 | xmpl 3 | expression/A 4 | -------------------------------------------------------------------------------- /tests/ignore.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ignore.good -------------------------------------------------------------------------------- /tests/ignoresug.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ignoresug.aff -------------------------------------------------------------------------------- /tests/ignoresug.dic: -------------------------------------------------------------------------------- 1 | 3 2 | ինչ 3 | մնաս 4 | որտեղ 5 | -------------------------------------------------------------------------------- /tests/ignoresug.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ignoresug.good -------------------------------------------------------------------------------- /tests/ignoresug.morph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ignoresug.morph -------------------------------------------------------------------------------- /tests/ignoreutf.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ignoreutf.aff -------------------------------------------------------------------------------- /tests/ignoreutf.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ignoreutf.dic -------------------------------------------------------------------------------- /tests/ignoreutf.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ignoreutf.good -------------------------------------------------------------------------------- /tests/keepcase.aff: -------------------------------------------------------------------------------- 1 | # keep case in signed words 2 | KEEPCASE A 3 | WORDCHARS . 4 | -------------------------------------------------------------------------------- /tests/keepcase.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/keepcase.dic -------------------------------------------------------------------------------- /tests/keepcase.good: -------------------------------------------------------------------------------- 1 | foo 2 | Bar 3 | baz. 4 | Quux. 5 | -------------------------------------------------------------------------------- /tests/keepcase.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/keepcase.sug -------------------------------------------------------------------------------- /tests/keepcase.wrong: -------------------------------------------------------------------------------- 1 | Foo 2 | FOO 3 | BAR 4 | bar 5 | Baz. 6 | BAZ. 7 | quux. 8 | QUUX. 9 | -------------------------------------------------------------------------------- /tests/korean.aff: -------------------------------------------------------------------------------- 1 | SET UTF-8 2 | -------------------------------------------------------------------------------- /tests/korean.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/korean.dic -------------------------------------------------------------------------------- /tests/korean.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/korean.good -------------------------------------------------------------------------------- /tests/korean.wrong: -------------------------------------------------------------------------------- 1 | 들어오세 2 | -------------------------------------------------------------------------------- /tests/map.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/map.aff -------------------------------------------------------------------------------- /tests/map.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/map.dic -------------------------------------------------------------------------------- /tests/map.sug: -------------------------------------------------------------------------------- 1 | Frühstück 2 | tükörfúró 3 | groß 4 | -------------------------------------------------------------------------------- /tests/map.wrong: -------------------------------------------------------------------------------- 1 | Fruhstuck 2 | tukorfuro 3 | gross 4 | -------------------------------------------------------------------------------- /tests/maputf.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/maputf.aff -------------------------------------------------------------------------------- /tests/maputf.dic: -------------------------------------------------------------------------------- 1 | 3 2 | Frühstück 3 | tükörfúró 4 | groß 5 | -------------------------------------------------------------------------------- /tests/maputf.sug: -------------------------------------------------------------------------------- 1 | Frühstück 2 | tükörfúró 3 | groß 4 | -------------------------------------------------------------------------------- /tests/maputf.wrong: -------------------------------------------------------------------------------- 1 | Fruhstuck 2 | tukorfuro 3 | gross 4 | -------------------------------------------------------------------------------- /tests/morph.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/morph.aff -------------------------------------------------------------------------------- /tests/morph.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/morph.dic -------------------------------------------------------------------------------- /tests/morph.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/morph.good -------------------------------------------------------------------------------- /tests/morph.morph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/morph.morph -------------------------------------------------------------------------------- /tests/needaffix.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/needaffix.aff -------------------------------------------------------------------------------- /tests/needaffix.dic: -------------------------------------------------------------------------------- 1 | 2 2 | foo/YXA 3 | bar/Y 4 | -------------------------------------------------------------------------------- /tests/needaffix.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/needaffix.good -------------------------------------------------------------------------------- /tests/needaffix.wrong: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /tests/needaffix2.aff: -------------------------------------------------------------------------------- 1 | NEEDAFFIX X 2 | COMPOUNDFLAG Y 3 | -------------------------------------------------------------------------------- /tests/needaffix2.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/needaffix2.dic -------------------------------------------------------------------------------- /tests/needaffix2.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/needaffix2.good -------------------------------------------------------------------------------- /tests/needaffix2.morph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/needaffix2.morph -------------------------------------------------------------------------------- /tests/needaffix3.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/needaffix3.aff -------------------------------------------------------------------------------- /tests/needaffix3.dic: -------------------------------------------------------------------------------- 1 | 2 2 | foo/A 3 | -------------------------------------------------------------------------------- /tests/needaffix3.good: -------------------------------------------------------------------------------- 1 | foo 2 | foosbaz 3 | -------------------------------------------------------------------------------- /tests/needaffix3.wrong: -------------------------------------------------------------------------------- 1 | foos 2 | -------------------------------------------------------------------------------- /tests/needaffix4.aff: -------------------------------------------------------------------------------- 1 | NEEDAFFIX X 2 | COMPOUNDFLAG Y 3 | -------------------------------------------------------------------------------- /tests/needaffix4.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/needaffix4.dic -------------------------------------------------------------------------------- /tests/needaffix4.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/needaffix4.good -------------------------------------------------------------------------------- /tests/needaffix5.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/needaffix5.aff -------------------------------------------------------------------------------- /tests/needaffix5.dic: -------------------------------------------------------------------------------- 1 | 1 2 | foo/AC 3 | -------------------------------------------------------------------------------- /tests/needaffix5.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/needaffix5.good -------------------------------------------------------------------------------- /tests/needaffix5.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/needaffix5.wrong -------------------------------------------------------------------------------- /tests/nepali.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/nepali.aff -------------------------------------------------------------------------------- /tests/nepali.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/nepali.dic -------------------------------------------------------------------------------- /tests/nepali.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/nepali.good -------------------------------------------------------------------------------- /tests/nepali.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/nepali.wrong -------------------------------------------------------------------------------- /tests/ngram_utf_fix.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ngram_utf_fix.aff -------------------------------------------------------------------------------- /tests/ngram_utf_fix.dic: -------------------------------------------------------------------------------- 1 | 1 2 | человек/2022,2000,101 3 | -------------------------------------------------------------------------------- /tests/ngram_utf_fix.good: -------------------------------------------------------------------------------- 1 | человек 2 | -------------------------------------------------------------------------------- /tests/ngram_utf_fix.sug: -------------------------------------------------------------------------------- 1 | человек 2 | -------------------------------------------------------------------------------- /tests/ngram_utf_fix.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ngram_utf_fix.wrong -------------------------------------------------------------------------------- /tests/nosuggest.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/nosuggest.aff -------------------------------------------------------------------------------- /tests/nosuggest.dic: -------------------------------------------------------------------------------- 1 | 1 2 | foo/AB 3 | bar/B 4 | -------------------------------------------------------------------------------- /tests/nosuggest.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/nosuggest.good -------------------------------------------------------------------------------- /tests/nosuggest.sug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/nosuggest.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/nosuggest.wrong -------------------------------------------------------------------------------- /tests/oconv.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/oconv.aff -------------------------------------------------------------------------------- /tests/oconv.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/oconv.dic -------------------------------------------------------------------------------- /tests/oconv.good: -------------------------------------------------------------------------------- 1 | bébé 2 | dádá 3 | -------------------------------------------------------------------------------- /tests/oconv.sug: -------------------------------------------------------------------------------- 1 | BÉBÉ 2 | DÁDÁ 3 | AÁBCDEÉ 4 | -------------------------------------------------------------------------------- /tests/oconv.wrong: -------------------------------------------------------------------------------- 1 | béb 2 | dád 3 | aábcde 4 | -------------------------------------------------------------------------------- /tests/oconv2.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/oconv2.aff -------------------------------------------------------------------------------- /tests/oconv2.dic: -------------------------------------------------------------------------------- 1 | 1 2 | eiei/A 3 | -------------------------------------------------------------------------------- /tests/oconv2.good: -------------------------------------------------------------------------------- 1 | aas 2 | -------------------------------------------------------------------------------- /tests/oconv2.morph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/oconv2.morph -------------------------------------------------------------------------------- /tests/oconv2.root: -------------------------------------------------------------------------------- 1 | aa 2 | -------------------------------------------------------------------------------- /tests/oconv2.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/oconv2.test -------------------------------------------------------------------------------- /tests/onlyincompound.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/onlyincompound.aff -------------------------------------------------------------------------------- /tests/onlyincompound.dic: -------------------------------------------------------------------------------- 1 | 2 2 | foo/A 3 | pseudo/OAB 4 | -------------------------------------------------------------------------------- /tests/onlyincompound.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/onlyincompound.good -------------------------------------------------------------------------------- /tests/onlyincompound.sug: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/onlyincompound.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/onlyincompound.wrong -------------------------------------------------------------------------------- /tests/onlyincompound2.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/onlyincompound2.aff -------------------------------------------------------------------------------- /tests/onlyincompound2.dic: -------------------------------------------------------------------------------- 1 | 2 2 | foo/A 3 | pseudo/AB 4 | -------------------------------------------------------------------------------- /tests/onlyincompound2.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/onlyincompound2.good -------------------------------------------------------------------------------- /tests/onlyincompound2.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/onlyincompound2.wrong -------------------------------------------------------------------------------- /tests/opentaal_cpdpat.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_cpdpat.aff -------------------------------------------------------------------------------- /tests/opentaal_cpdpat.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_cpdpat.dic -------------------------------------------------------------------------------- /tests/opentaal_cpdpat.good: -------------------------------------------------------------------------------- 1 | schoonheidssport 2 | -------------------------------------------------------------------------------- /tests/opentaal_cpdpat.wrong: -------------------------------------------------------------------------------- 1 | schoonheidsport 2 | -------------------------------------------------------------------------------- /tests/opentaal_cpdpat2.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_cpdpat2.aff -------------------------------------------------------------------------------- /tests/opentaal_cpdpat2.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_cpdpat2.dic -------------------------------------------------------------------------------- /tests/opentaal_cpdpat2.good: -------------------------------------------------------------------------------- 1 | zout-suikertest 2 | -------------------------------------------------------------------------------- /tests/opentaal_cpdpat2.wrong: -------------------------------------------------------------------------------- 1 | zoutsuikertest 2 | -------------------------------------------------------------------------------- /tests/opentaal_forbiddenword1.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_forbiddenword1.aff -------------------------------------------------------------------------------- /tests/opentaal_forbiddenword1.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_forbiddenword1.dic -------------------------------------------------------------------------------- /tests/opentaal_forbiddenword1.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_forbiddenword1.good -------------------------------------------------------------------------------- /tests/opentaal_forbiddenword1.sug: -------------------------------------------------------------------------------- 1 | barwordfoo 2 | -------------------------------------------------------------------------------- /tests/opentaal_forbiddenword1.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_forbiddenword1.wrong -------------------------------------------------------------------------------- /tests/opentaal_forbiddenword2.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_forbiddenword2.aff -------------------------------------------------------------------------------- /tests/opentaal_forbiddenword2.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_forbiddenword2.dic -------------------------------------------------------------------------------- /tests/opentaal_forbiddenword2.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_forbiddenword2.good -------------------------------------------------------------------------------- /tests/opentaal_forbiddenword2.sug: -------------------------------------------------------------------------------- 1 | barwordfoo 2 | -------------------------------------------------------------------------------- /tests/opentaal_forbiddenword2.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_forbiddenword2.wrong -------------------------------------------------------------------------------- /tests/opentaal_keepcase.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_keepcase.aff -------------------------------------------------------------------------------- /tests/opentaal_keepcase.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_keepcase.dic -------------------------------------------------------------------------------- /tests/opentaal_keepcase.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_keepcase.good -------------------------------------------------------------------------------- /tests/opentaal_keepcase.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_keepcase.sug -------------------------------------------------------------------------------- /tests/opentaal_keepcase.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/opentaal_keepcase.wrong -------------------------------------------------------------------------------- /tests/ph.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ph.aff -------------------------------------------------------------------------------- /tests/ph.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ph.dic -------------------------------------------------------------------------------- /tests/ph.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ph.sug -------------------------------------------------------------------------------- /tests/ph.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ph.wrong -------------------------------------------------------------------------------- /tests/ph2.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ph2.aff -------------------------------------------------------------------------------- /tests/ph2.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ph2.dic -------------------------------------------------------------------------------- /tests/ph2.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ph2.good -------------------------------------------------------------------------------- /tests/ph2.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ph2.sug -------------------------------------------------------------------------------- /tests/ph2.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/ph2.wrong -------------------------------------------------------------------------------- /tests/phone.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/phone.aff -------------------------------------------------------------------------------- /tests/phone.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/phone.dic -------------------------------------------------------------------------------- /tests/phone.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/phone.sug -------------------------------------------------------------------------------- /tests/phone.wrong: -------------------------------------------------------------------------------- 1 | Brasillian 2 | -------------------------------------------------------------------------------- /tests/rep.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/rep.aff -------------------------------------------------------------------------------- /tests/rep.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/rep.dic -------------------------------------------------------------------------------- /tests/rep.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/rep.sug -------------------------------------------------------------------------------- /tests/rep.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/rep.wrong -------------------------------------------------------------------------------- /tests/reputf.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/reputf.aff -------------------------------------------------------------------------------- /tests/reputf.dic: -------------------------------------------------------------------------------- 1 | 1 2 | főő 3 | -------------------------------------------------------------------------------- /tests/reputf.sug: -------------------------------------------------------------------------------- 1 | főő 2 | -------------------------------------------------------------------------------- /tests/reputf.wrong: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /tests/simplifiedtriple.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/simplifiedtriple.aff -------------------------------------------------------------------------------- /tests/simplifiedtriple.dic: -------------------------------------------------------------------------------- 1 | 2 2 | glass/A 3 | sko/A 4 | -------------------------------------------------------------------------------- /tests/simplifiedtriple.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/simplifiedtriple.good -------------------------------------------------------------------------------- /tests/simplifiedtriple.wrong: -------------------------------------------------------------------------------- 1 | glasssko 2 | -------------------------------------------------------------------------------- /tests/slash.aff: -------------------------------------------------------------------------------- 1 | # slashes in words (\/) 2 | 3 | # (only for tokenization) 4 | WORDCHARS /: 5 | -------------------------------------------------------------------------------- /tests/slash.dic: -------------------------------------------------------------------------------- 1 | 4 2 | / 3 | 1\/2 4 | http:\/\/ 5 | \/usr\/share\/myspell\/ 6 | -------------------------------------------------------------------------------- /tests/slash.good: -------------------------------------------------------------------------------- 1 | / 2 | 1/2 3 | http:// 4 | /usr/share/myspell/ 5 | -------------------------------------------------------------------------------- /tests/sug.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/sug.aff -------------------------------------------------------------------------------- /tests/sug.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/sug.dic -------------------------------------------------------------------------------- /tests/sug.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/sug.sug -------------------------------------------------------------------------------- /tests/sug.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/sug.wrong -------------------------------------------------------------------------------- /tests/sug2.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/sug2.aff -------------------------------------------------------------------------------- /tests/sug2.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/sug2.dic -------------------------------------------------------------------------------- /tests/sug2.sug: -------------------------------------------------------------------------------- 1 | a lot 2 | in spite 3 | scot-free 4 | -------------------------------------------------------------------------------- /tests/sug2.wrong: -------------------------------------------------------------------------------- 1 | alot 2 | inspite 3 | scotfree 4 | -------------------------------------------------------------------------------- /tests/suggestiontest/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/suggestiontest/.gitignore -------------------------------------------------------------------------------- /tests/suggestiontest/List_of_common_misspellings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/suggestiontest/List_of_common_misspellings.txt -------------------------------------------------------------------------------- /tests/suggestiontest/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/suggestiontest/Makefile.am -------------------------------------------------------------------------------- /tests/suggestiontest/Makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/suggestiontest/Makefile.orig -------------------------------------------------------------------------------- /tests/suggestiontest/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/suggestiontest/README -------------------------------------------------------------------------------- /tests/suggestiontest/prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/suggestiontest/prepare -------------------------------------------------------------------------------- /tests/suggestiontest/prepare2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/suggestiontest/prepare2 -------------------------------------------------------------------------------- /tests/suggestiontest/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/suggestiontest/test -------------------------------------------------------------------------------- /tests/sugutf.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/sugutf.aff -------------------------------------------------------------------------------- /tests/sugutf.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/sugutf.dic -------------------------------------------------------------------------------- /tests/sugutf.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/sugutf.sug -------------------------------------------------------------------------------- /tests/sugutf.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/sugutf.wrong -------------------------------------------------------------------------------- /tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/test.sh -------------------------------------------------------------------------------- /tests/timelimit.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/timelimit.aff -------------------------------------------------------------------------------- /tests/timelimit.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/timelimit.dic -------------------------------------------------------------------------------- /tests/timelimit.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/timelimit.good -------------------------------------------------------------------------------- /tests/timelimit.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/timelimit.wrong -------------------------------------------------------------------------------- /tests/utf8.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/utf8.aff -------------------------------------------------------------------------------- /tests/utf8.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/utf8.dic -------------------------------------------------------------------------------- /tests/utf8.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/utf8.good -------------------------------------------------------------------------------- /tests/utf8_bom.aff: -------------------------------------------------------------------------------- 1 | SET UTF-8 2 | 3 | # removing byte order mark from affix file 4 | -------------------------------------------------------------------------------- /tests/utf8_bom.dic: -------------------------------------------------------------------------------- 1 | 1 2 | apéritif 3 | -------------------------------------------------------------------------------- /tests/utf8_bom.good: -------------------------------------------------------------------------------- 1 | apéritif 2 | APÉRITIF 3 | -------------------------------------------------------------------------------- /tests/utf8_bom2.aff: -------------------------------------------------------------------------------- 1 | SET UTF-8 2 | 3 | # removing byte order mark from dic file 4 | -------------------------------------------------------------------------------- /tests/utf8_bom2.dic: -------------------------------------------------------------------------------- 1 | 1 2 | apéritif 3 | -------------------------------------------------------------------------------- /tests/utf8_bom2.good: -------------------------------------------------------------------------------- 1 | apéritif 2 | APÉRITIF 3 | -------------------------------------------------------------------------------- /tests/utf8_nonbmp.aff: -------------------------------------------------------------------------------- 1 | SET UTF-8 2 | -------------------------------------------------------------------------------- /tests/utf8_nonbmp.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/utf8_nonbmp.dic -------------------------------------------------------------------------------- /tests/utf8_nonbmp.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/utf8_nonbmp.good -------------------------------------------------------------------------------- /tests/utf8_nonbmp.sug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/utf8_nonbmp.sug -------------------------------------------------------------------------------- /tests/utf8_nonbmp.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/utf8_nonbmp.test -------------------------------------------------------------------------------- /tests/utf8_nonbmp.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/utf8_nonbmp.wrong -------------------------------------------------------------------------------- /tests/utfcompound.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/utfcompound.aff -------------------------------------------------------------------------------- /tests/utfcompound.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/utfcompound.dic -------------------------------------------------------------------------------- /tests/utfcompound.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/utfcompound.good -------------------------------------------------------------------------------- /tests/utfcompound.wrong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/utfcompound.wrong -------------------------------------------------------------------------------- /tests/warn.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/warn.aff -------------------------------------------------------------------------------- /tests/warn.dic: -------------------------------------------------------------------------------- 1 | 1 2 | foo/WA 3 | bar 4 | -------------------------------------------------------------------------------- /tests/warn.good: -------------------------------------------------------------------------------- 1 | foo 2 | foos 3 | -------------------------------------------------------------------------------- /tests/wordpair.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/wordpair.aff -------------------------------------------------------------------------------- /tests/wordpair.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/wordpair.dic -------------------------------------------------------------------------------- /tests/wordpair.good: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/wordpair.good -------------------------------------------------------------------------------- /tests/wordpair.wrong: -------------------------------------------------------------------------------- 1 | compoundword 2 | -------------------------------------------------------------------------------- /tests/zeroaffix.aff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhabuiduc/hunspell/HEAD/tests/zeroaffix.aff -------------------------------------------------------------------------------- /tests/zeroaffix.dic: -------------------------------------------------------------------------------- 1 | 2 2 | foo/XA