show/hide this revision's text 2 added 6 characters in body

You can override the default message like this:

$options = array(
                'missingMessage' => "Field '%field%' is required by rule '%rule%', dawg!"
            );

And then:

$input = new Zend_Filter_Input($filters, $validators, $myData);

Or

$input = new Zend_Filter_Input($filters, $validators, $myData);
$input->setOptions($options);

...and finally:

if ($input->hasInvalid() || $input->hasMissing()) {
  $messages = $input->getMessages();
}

It's mentioned on the Zend_Filter_Input manual page.

show/hide this revision's text 1

You can override the default message like this:

$options = array(
                'missingMessage' => "Field '%field%' is required by rule '%rule%', dawg!"
            );
$input = new Zend_Filter_Input($filters, $validators, $myData);

It's mentioned on the Zend_Filter_Input manual page.