Collection Types List does not list collectionName
API name is not "collection name" instead it is "Display Name" of Created collection type.
pluralize.plural('irregular') //=> "irregulars"
I can not create content types other than English. It just adds it's own suffix, it makes i18n impossible.
Steps to reproduce the behavior
Expected behavior
IT SHOULD BE "arabalar" not "arabas" which was entered as collection name
Screenshots
System
It's not possible to disable pluralization, but there is a workaround:
"info": {
"name": "Araba",
"displayName": "arabalar"
},
<LeftMenuLink
location={location}
key={index}
iconName={link.icon}
label={link.label}
destination={getLinkDestination(link)}
/>
to this
<LeftMenuLink
location={location}
key={index}
iconName={link.icon}
label={link.schema && link.schema.info.displayName ? link.schema.info.displayName : link.label}
destination={getLinkDestination(link)}
/>
and yarn strapi build