Translation cakephp not working -
i'm trying implement translation in cakephp isn't working , don't show me erros.
i have html
in 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 folder locale/eng/lc_messages/default.po
have this:
msgid "o que fazemos" msgstr "what do"
but isn't working... thanks
i think you're forgot "echo"
<?php echo __('o que fazemos'); ?>
Comments
Post a Comment