I can't see it stated anywhere, but I think en_GB-ize is supposed to
let me have something close to Oxford spelling (en-GB-oed). When I
tried it, it didn't work for me.
$ cat test.txt
The group analysed labour statistics published by the organization
$ aspell dump dicts |
while read dict;
do printf %s' ' "$dict";
aspell list -l "$dict" < test.txt | fmt;
done | column -t
en analysed
en-variant_0 analysed
en-variant_1 analysed
en-variant_2 analysed
en-w_accents analysed
en-wo_accents analysed
en_CA analysed
en_CA-variant_0 analysed
en_CA-variant_1 analysed
en_CA-w_accents analysed
en_CA-wo_accents analysed
en_GB organization
en_GB-ise organization
en_GB-ise-w_accents organization
en_GB-ise-wo_accents organization
en_GB-ize organization
en_GB-ize-w_accents organization
en_GB-ize-wo_accents organization
en_GB-variant_0 organization
en_GB-variant_1 organization
en_GB-w_accents organization
en_GB-wo_accents organization
en_US analysed labour
en_US-variant_0 analysed labour
en_US-variant_1 analysed labour
en_US-w_accents analysed labour
en_US-wo_accents analysed labour
Hello all, FWIW, for me the same invocation now yields | en en-variant_0 en-variant_1 en-variant_2 en-w_accents en-wo_accents en_AU organization | en_AU-variant_0 organization | en_AU-variant_1 organization | en_AU-w_accents organization | en_AU-wo_accents organization | en_CA analysed | en_CA-variant_0 analysed | en_CA-variant_1 analysed | en_CA-w_accents analysed | en_CA-wo_accents analysed | en_GB organization | en_GB-ise organization | en_GB-ise-w_accents organization | en_GB-ise-wo_accents organization | en_GB-ize organization | en_GB-ize-w_accents organization | en_GB-ize-wo_accents organization | en_GB-variant_0 organization | en_GB-variant_1 organization | en_GB-w_accents organization | en_GB-wo_accents organization | en_US analysed labour | en_US-variant_0 analysed labour | en_US-variant_1 analysed labour | en_US-w_accents analysed labour | en_US-wo_accents analysed labour which to me (yes, I not a native speaker) looks OK. Maybe I'm missing something here, though ... Cheers, Flo
I am the upstream maintainer. To choose a dictionary you need to use the `-d` option. The `list` currently ignores positional arguments, which is why it didn't return an error. Kevin