View Single Post
  #4 (permalink)  
Old 03-28-2008, 04:22 PM
friedhelm friedhelm is offline
Junior Member
 
Join Date: Mar 2008
Posts: 12
Default Alternative for Zend_Translate

Quote:
Originally Posted by mamyte03 View Post
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
Reply With Quote