jvcllaz: Add TJvSpellChecker incl demo and sample dictionaries

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6237 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2018-03-12 08:51:28 +00:00
parent 7df733f676
commit 6eb42439cf
16 changed files with 211307 additions and 5 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
Dictionary file format:
The words are compressed.
Each word is prefixed with a digit letter.
The digit gives the number of chars the word shares with the previous uncompressed word.
The digit letters range from '0' to '9'. Longer shared stems are not handled.
The words are sorted ascending according to their uncompressed text per TStringList.Sort.
The lineends are CR only to save space (TStringList.LoadFromFile reads that without problems).