I'm trying to implement a translation in Cakephp but isn't working and don't show me any erros.
I have this HTML
in a element
<a href="/sites/pages/servicos" target="_blank">
<span class="title">Serviços</span>
<div class="description"><?php __('o que fazemos') ?></div>
</a>
In App Controller inside beforeFilter()
:
Configure::write('Config.language', 'eng');
In my folder locale/eng/LC_MESSAGES/default.po
I have this:
msgid "o que fazemos"
msgstr "What we do"
But isn't working... Thanks