Quote:
Originally Posted by mamyte03
Oh.. Thanks. I saw this tutorial but not looked i comments. Thanks a lot.
|
As an alternative to Zend_Translate:
Code:
$element = new Zend_Form_Element(array(
'validators' => array(
array('NotEmpty', false, array(
'messages' => array('isEmpty' => 'This is a custom message')
)),
)
);
Stolen from:
Nabble - Zend_Form
The i18n-section of the docs (
Zend Framework: Documentation)
may help further.
/friedhelm