enum_help
enum_help copied to clipboard
Translation for enums in model concerns
I use enum in model concern because of using it in multiple models:
module Sizeable
extend ActiveSupport::Concern
included do
enum pizza_size: { d22: 22, d33: 33, d38: 38 }
end
end
How should I write translations in .yml file? I can write duplicated translations for each model used concern, but this isn't DRY