I am using the Java Inflector library to convert singular forms to plurals, example : 2 boat => 2 boats. However, it fails when the inputs are already plural. 1 boats => boats, butterflies => butterflieses
Is there any other Java utility that - 1. Converts plurals to singular when necessary, example : 1 boat => boat 2. Retains plural as it is, if the plural form is required.
Thanks!