Question about how English dialects are handled #961
-
I've only ever written American English so maybe my understanding of this is wrong, but from how I get it, when I want to write, say, "flavor" in British English, it's supposed to be spelled as "flavour". Now, when I was working on #960, I noticed that when I set |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I haven't dug into it yet but I have looked. For these to work properly, each variant of a word needs to be annotated. So at the moment probably one variant is annotated and the other isn't. I plan to attack this kind of thing after my one outstanding dictionary curation PR is merged, which I think is no longer blocked by anything. You might think these should all be boolean if one is on the other should be off, but this way is better because for some spelling rules only one is valid in a given region, but for others both may be valid in some regions. The main case of this is with -ize vs -ise and ization vs isation. Many British and Australian people believe only -ise and -isation are correct in their regions, but depending on which dictionary or style guide you prefer, both might be listed and -ize and ization might even be listed before -ise and -isation. If you do a Google search, you'll find all these are in use: colorize, colourise, colourize (and maybe even colorise?) This way gives us maximum flexibility at the cost of more curation. |
Beta Was this translation helpful? Give feedback.
I haven't dug into it yet but I have looked. For these to work properly, each variant of a word needs to be annotated. So at the moment probably one variant is annotated and the other isn't. I plan to attack this kind of thing after my one outstanding dictionary curation PR is merged, which I think is no longer blocked by anything.
You might think these should all be boolean if one is on the other should be off, but this way is better because for some spelling rules only one is valid in a given region, but for others both may be valid in some regions. The main case of this is with -ize vs -ise and ization vs isation. Many British and Australian people believe only -ise and -isation are co…