inflector icon indicating copy to clipboard operation
inflector copied to clipboard

Incorrect singular and plural for addendum and addenda

Open robertmylne opened this issue 1 year ago • 3 comments

Using Laravel for this, but it uses Inflector under the hood.

> Str::plural('addendum')
= "addendums" // should be `addenda`

> Str::singular('addenda')                                                                                                                                                                                 
= "addenda" // should be `addendum`

robertmylne avatar Oct 20 '23 13:10 robertmylne

addendums is correct pluralization according to https://en.wiktionary.org/wiki/addendum

malarzm avatar Oct 23 '23 20:10 malarzm

@malarzm Wiktionary lists both as valid. This is one of those weird cases where the true Latin form has largely fallen out of favor, so -ums may indeed be the preferred plural form now. (Another weird case like this is "data" -- where we don't commonly use the true Latin singular form "datum" anymore.)

garrettw avatar Oct 31 '23 20:10 garrettw

Well you would have to go with the one that people use the most in the real world, which is addenda, for most people addendums seems incorrect.

Google graphs the usage of words in literature, and you can see the comparison here: https://books.google.com/ngrams/graph?content=addenda%2Caddendums&year_start=1800&year_end=2019&corpus=en-2019&smoothing=3

Screenshot 2023-11-01 121544

robertmylne avatar Nov 01 '23 02:11 robertmylne