zend-translate

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...

Multilingual Site in Zend Framework

Hi, i am working on a site to include Multilingual Support. I can translate strings using Zend_Translate but what about the content?? For example do i have to add multiple records for same product's for each language? Or is there any other way? I am new to multilingual please help. Thanks in advance. --- Addition -----------------------...