Best way to implement multi-language in Zend Framework

php, zend-framework

Solution

I've done it several times with Zend_Translate and poedit.

Check this links:

string-localization-with-gettext-and-zend-framework

internationalization-i18n-localization-l10n-15/using-poedit

Problem

What is the best way to implement multi-language support in the Zend Framework? I plan to use a separate language file for each language. Are there any other good approaches that I could look into?

Original source