Re: [fw-general] Zend_View_Helper_Translate Usage

2009-04-21 Thread Alesso
Can no one help me? What does the typical usage of Zend_Translate and the Front Controller look like? -- View this message in context: http://www.nabble.com/Zend_View_Helper_Translate-Usage-tp23111363p23164912.html Sent from the Zend Framework mailing list archive at Nabble.com.

Re: [fw-general] Zend_View_Helper_Translate Usage

2009-04-21 Thread keith Pope
So you are passing translate as an invoke argument on the Front Controller? You already have the translate object instantiated so adding a reference has no real overhead. I dont believe there is an easy way to achieve what the registry achieves with translate. 2009/4/21 Alesso

Re: [fw-general] Zend_View_Helper_Translate Usage

2009-04-21 Thread Alesso
I've passed the Zend_translate object to the front controller's registry with $front-setParam('Zend_Translate', $translate); I don't want to pass this $translate object to another registry, wich is necessary to use the object in the Zend_View_Helper_Translate class. To make everything work

[fw-general] Zend_View_Helper_Translate Usage

2009-04-18 Thread Alesso
Hi, i've got a question regarding to the Translate View Helper: I know that it is possible to register the Zend_Translate object using Zend_Register, but I'm already using the registry of the front controller. Is it possible to tell the helper that it can find the Zend_Translate object in the