pattern icon indicating copy to clipboard operation
pattern copied to clipboard

Incorrect plural of quiz (gives quizs not quizzes)

Open tringham opened this issue 6 years ago • 1 comments

In [2]: pattern.en.pluralize("quiz") Out[2]: 'quizs'

Should be quizzes - as the singularize method does know

In [3]: pattern.en.singularize("quizzes") Out[3]: 'quiz'

tringham avatar Apr 12 '19 13:04 tringham

The same issue is happening with the word "bus".

>>> pluralize('bus')
buss
>>> singularize('buses')
bus

dsaw avatar Apr 13 '19 06:04 dsaw