Hi
In my Bootstrap I have the following
// Setup the Language element
$translate = new Zend_Translate('gettext', 'locale/en/en.mo', 'en');
Zend::register('translate', $translate);
Then in each controller action I need to do
// Add items required from the registry
$translate = Zend::registry('translate');
Now I just wanted to make sure that this is the best way to do this or if
there are other methods to assign an object through the framework, or other
better ways to optimize.
Lastly is it possible to stack the translation files and what in the opinion
of the developers is the best and fastest way to do this.
I have read the Internationalisation thread with interest and think I will
take the zone.domain.com/:lang/:module/:controller... options.
Cheers
Ian