jaraco / inflect

Correctly generate plurals, ordinals, indefinite articles; convert numbers to words
https://pypi.org/project/inflect
MIT License
960 stars 107 forks source link

-ware suffixed nouns not pluralized correctly #152

Open edwardhpe opened 2 years ago

edwardhpe commented 2 years ago

Version 5.5.2

>>> e = inflect.engine()
>>> e.plural('firmware')
'firmwares'
>>> e.plural('software')
'softwares'
>>> e.plural('hardware')
'hardwares'

And so on.

jaraco commented 2 years ago

Seems reasonable. Would you be willing to develop a fix (with tests)?