]> git.donarmstrong.com Git - deb_pkgs/scowl.git/blob - speller/README_en.txt.sh
Imported Upstream version 2015.08.24
[deb_pkgs/scowl.git] / speller / README_en.txt.sh
1 : ${SCOWL:=..}
2
3 echo $WHAT
4
5 if [ "$SCOWL_VERSION" ] && [ -e $SCOWL/../.git ] > /dev/null; then
6   echo "Version $SCOWL_VERSION"
7   ( cd $SCOWL/speller && git log --pretty=format:'%cd [%h]' -n 1 -- .. )
8   echo
9 elif [ -e $SCOWL/../.git ] > /dev/null; then
10   ( cd $SCOWL/speller && git log --pretty=format:'%cd [%h]' -n 1 -- .. )
11   echo
12 elif [ -e $SCOWL/VERSION ]; then
13   echo "Generated from SCOWL Version `cat $SCOWL/VERSION`"
14   date
15   echo
16 else
17   echo "Unknown Version"
18   date
19   echo
20 fi
21
22 cat <<EOF
23 http://wordlist.sourceforge.net
24
25 README file for English Hunspell dictionaries derived from SCOWL.
26
27 These dictionaries are created using the speller/make-hunspell-dict
28 script in SCOWL.
29
30 The following dictionaries are available:
31
32   en_US (American)
33   en_CA (Canadian)
34   en_GB-ise (British with "ise" spelling)
35   en_GB-ize (British with "ize" spelling)
36
37   en_US-large
38   en_CA-large
39   en_GB-large (with both "ise" and "ize" spelling)
40
41 The normal (non-large) dictionaries correspond to SCOWL size 60 and,
42 to encourage consistent spelling, generally only include one spelling
43 variant for a word.  The large dictionaries correspond to SCOWL size
44 70 and may include multiple spelling for a word when both variants are
45 considered almost equal.  Also, the general quality of the larger
46 dictionaries may also be less as they are not as carefully checked for
47 errors as the normal dictionaries.
48
49 To get an idea of the difference in size, here are 25 random words
50 only found in the large dictionary for American English:
51
52   Bermejo Freyr's Guenevere Hatshepsut Nottinghamshire arrestment
53   crassitudes crural dogwatches errorless fetial flaxseeds godroon
54   incretion jalapeño's kelpie kishkes neuroglias pietisms pullulation
55   stemwinder stenoses syce thalassic zees
56
57 The en_US and en_CA are the official dictionaries for Hunspell.  The
58 en_GB and large dictionaries are made available on an experimental
59 basis.  If you find them useful please send me a quick email at
60 kevina@gnu.org.
61
62 If none of these dictionaries suite you (for example, maybe you want
63 the larger dictionary but only use spelling of a word) additional
64 dictionaries can be generated at http://app.aspell.net/create or by
65 modifying speller/make-hunspell-dict in SCOWL.  Please do let me know
66 if you end up publishing a customized dictionary.
67
68 If a word is not found in the dictionary or a word is there you think
69 shouldn't be, you can lookup the word up at http://app.aspell.net/lookup
70 to help determine why that is.
71
72 General comments on these list can be sent directly to me at
73 kevina@gnu.org or to the wordlist-devel mailing lists
74 (https://lists.sourceforge.net/lists/listinfo/wordlist-devel).  If you
75 have specific issues with any of these dictionaries please file a bug
76 report at https://github.com/kevina/wordlist/issues.
77
78 IMPORTANT CHANGES FROM 2015.02.15:
79
80 The dictionaries are now in UTF-8 format instead of ISO-8859-1.  This
81 was required to handle smart quotes correctly.
82
83 ADDITIONAL NOTES:
84
85 The NOSUGGEST flag was added to certain taboo words.  While I made an
86 honest attempt to flag the strongest taboo words with the NOSUGGEST
87 flag, I MAKE NO GUARANTEE THAT I FLAGGED EVERY POSSIBLE TABOO WORD.
88 The list was originally derived from Németh László, however I removed
89 some words which, while being considered taboo by some dictionaries,
90 are not really considered swear words in today's society.
91
92 COPYRIGHT, SOURCES, and CREDITS:
93
94 The English dictionaries come directly from SCOWL $LEVEL
95 and is thus under the same copyright of SCOWL.  The affix file is
96 a heavily modified version of the original english.aff file which was
97 released as part of Geoff Kuenning's Ispell and as such is covered by
98 his BSD license.  Part of SCOWL is also based on Ispell thus the
99 Ispell copyright is included with the SCOWL copyright.
100
101 EOF
102
103 cat $SCOWL/Copyright
104 echo
105 echo "Build Date: `date`"