How to get an ad hoc translation with Zend_Translate
Hi, I'm using Zend_Translated to translated all my strings $translator->_('hello') If my locale is in french this code will print "Bonjour". When browsing the french version of the site i'd like to output some german text. $translator->_('hello', array(locale=>'en')) This will still output "Bonjour" but i'd like "Guten Tag" How...