jaraco / inflect

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

Plural form of acronyms #193

Open lukasz-r opened 1 year ago

lukasz-r commented 1 year ago

The plural form of acronyms is formed by adding S to the acronym, e.g. PPI -> PPIS, however, the proper way is to add s, e.g. PPI -> PPIs: https://editorsmanual.com/articles/plurals-of-abbreviations/

jaraco commented 1 year ago

I agree with your instinct. Also, thanks for providing a reference. Would you be interested and willing to work on an implementation?