pluralize/singularize with quantity doesn't work at all
miikeat opened this issue · 0 comments
miikeat commented
"test".pluralize(2)
res2: kotlin.String = test
"tests".pluralize(2)
res3: kotlin.String = tests
"tests".pluralize(1)
res4: kotlin.String = tests
"people".pluralize(1)
res6: kotlin.String = peoples
"people".pluralize(2)
res7: kotlin.String = people
"person".pluralize(1)
res8: kotlin.String = people
"person".pluralize(2)
res9: kotlin.String = person
I might have some time on the weekend to have a look at the implementation and send a PR.