I have inherited from an application made a developement company, and i need to get the .mo and .po files generated for my website.
Here's what i have in the bootstrap :
$translate = new Zend_Translate ('gettext', ROOT_PATH.'/languages/en/default.mo', 'en', array('disableNotices' => true));
$translate->setLocale($locale);
I'm using the translate helper everywhere i have to set up text on my website but my .mo and .po files do not contain all the strings that are set up in my application.
Is there some command that i need to run for the gettext files to be populated?
Thanks !