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 can I get a translation of a string in another language than the current locale?