Zendesk has a default translation file located at app/locale/lang_code/Zendesk_Zendesk.csv
The translations work perfectly in the admin section but not in the frontend.
In the frontend I'm using the same code as they use in the default adminhtml code example:
<?php echo Mage::helper('zendesk')->__('Open Ticket') ?>
In the file app/code/community/Zendesk/Zendesk/etc/config.xml
I copied the following code
<translate>
<modules>
<translations>
<files>
<default>Zendesk_Zendesk.csv</default>
</files>
</translations>
</modules>
</translate>
from the adminhtml tag and pasted it inside the frontend tag. But even after reindexing and clearing the cache the translations do not show up. But many online tutorials mention this as being sufficient. What am I doing wrong to translate the zendesk module frontend as well? (Feels like this should be a default feature anyway.)
\Mage_Core_Model_Translate::_loadModuleTranslation– Fabian Blechschmidt Oct 02 '15 at 14:50