Open vanboom opened 3 months ago
If the user hard codes a human_name, we should prefer it over the default translation method.
human_name
class MyClass state_machine :state, initial: :pending do state :pending, human_name: "To Do" state :in_progress, human_name: "In Progress" end end
If the user hard codes a
human_name
, we should prefer it over the default translation method.