Newer
Older
dmpopidor / app / models / concerns / validation_messages.rb
module ValidationMessages
  # frozen_string_literal: true

  PRESENCE_MESSAGE = _("can't be blank")

  UNIQUENESS_MESSAGE = _("must be unique")

  INCLUSION_MESSAGE = _("isn't a valid value")
  
  OPTION_PRESENCE_MESSAGE = _("must have at least one option.")

end