If you create the zend_translate object at boot time, you can set it to Zend_Registry for later use:
Zend_Registry::set('translate', $translate);
and then use it in the controller:
$translate = Zend_Registry::get('translate'); $translate->translate("hello");
As far as I know, Zend_Controller does not include native support for zend_translate.
aporat
source share