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

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -