I have a form in a Zend-based site which has a required "Terms and Conditions" checkbox.  

I have set a custom message which says "you must agree with terms and conditions".

however, because the checkbox is "presence='required'", it returns 

   <b>Field 'terms' is required by rule 'terms', but the field is missing</b>

which is this constant defined in the Zend framework:

    self::MISSING_MESSAGE     => "Field '%field%' is required by rule '%rule%', but the field is missing",

I could edit this constant, but this would change the error reporting for all required checkboxes.

How can I affect the error reporting for this specific case?