Does exist a way to do something like this:
Model.human_attribute_name :attr
but with errors?
Something like this...
Model.human_error_name :attr, :error
For example:
Ticket.human_error_name :ticket_type_id, :no_tickets_left
I want to avoid this on my views:
I18n.t("activerecord.errors.models.ticket.attributes.ticket_type_id.no_tickets_left")