atteo / evo-inflector

Singular to plural english word converter
Apache License 2.0
341 stars 44 forks source link

Pluralization of verbs #15

Open aldwindelgado opened 6 years ago

aldwindelgado commented 6 years ago

The plural form for word "is" is "ises" instead of "are".

sentinelt commented 6 years ago

After giving this some thought I believe the current behavior should be left as is. My reasoning is that there is an undocumented assumption that English.plural() method works with nouns only. This can be seen in the implementation of the test (https://github.com/atteo/evo-inflector/blob/master/src/test/java/org/atteo/evo/inflector/EnglishInflectorTest.java#L60).

This is also what people usually expect. If you have "one is" then you have "multiple ises". "Multiple are" does not sound right.

That said I would consider adding English.pluralOfVerb() if that turns out feasible.

aldwindelgado commented 6 years ago

Sure, that's fine for me. :+1:

unk1911 commented 6 years ago

adding English.pluralOfVerb() would be superb, i ran into the same problem with the "ises"