module ValidationMessages
  # frozen_string_literal: true

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

  UNIQUENESS_MESSAGE = _("must be unique")

  INCLUSION_MESSAGE = _("isn't a valid value")

end
