Hi,
How can be form field names translated when they generate by Zend_Form?
if we have:
<label>Phone</label>
in zend label can be translated by:
<label><?php echo $this->translate('Phone'); ?></label>
but when the label created by Zend_Form:
$phone = new Zend_Form_Element('phone');
$phone->setLabel('Phone');
How can be label translated?
Thanks