I inherited from an application created by a developer company, and I need to get the .mo and .po files generated for my site.
Here is what I have in bootstrap:
$translate = new Zend_Translate ('gettext', ROOT_PATH.'/languages/en/default.mo', 'en', array('disableNotices' => true)); $translate->setLocale($locale);
I use the translation assistant wherever I need to customize the text on my website, but my .mo and .po files do not contain all the lines that are configured in my application.
Is there any command I need to run for gettext files to be populated?
Thanks!
source share