I have managed to singularize/pluralize an English word using Humanizer, but when I set the CultureInfo to Italian, it just adds an extra 's' to the word.
For example:
"Man".Pluralize() => "Men"
----- correct, It works as expected
"Spaghetto".Pluralize() => "Spaghettos"
----- wrong, It should be "Spaghetti"
I'm afraid it can't find the italian package Humanizer.Core.it
, even though I have correctly installed everything!
Is this a bug or am I missing out something? If not, should I be writing my own set of rules and dictionary or is there another library I can use?
I'm currently working with .NET 4.x .
Thank you in advance, cheers!