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 = _("You must have at least one option.")

  QUESTION_TEXT_PRESENCE_MESSAGE = _("for 'Question text' can't be blank.")

end
