Get a human-readable label for an entity type with count.
The OcfEntityType
The count (determines singular vs plural)
Human-readable string like "3 Stock Classes" or "1 Stakeholder"
getEntityTypeLabel('stockClass', 1); // "1 Stock Class"getEntityTypeLabel('stockClass', 3); // "3 Stock Classes"getEntityTypeLabel('stakeholder', 0); // "0 Stakeholders" Copy
getEntityTypeLabel('stockClass', 1); // "1 Stock Class"getEntityTypeLabel('stockClass', 3); // "3 Stock Classes"getEntityTypeLabel('stakeholder', 0); // "0 Stakeholders"
Get a human-readable label for an entity type with count.