A long time ago I was developing this project and now I'm back on it. The internationalization was working fine, getting the translations from the folder C:\...\cake\app\locale\por\LC_MESSAGES
where I have 2 files:
default.mo
default.po
I edited the po file, inserted manually some new keywords, for instance:
msgid "id"
msgstr "Código"
Then, I opened the Poedit, validate everything, and than clicked "save", so Poedit create the .mo file automatically.
After that I restarted WAMP, and cleared my cache.
I did all that a lot of times, but the result is allways the same: the old words are being translated fine, but the new words I added recently, do not translate.
The old ones and the new ones, I'm use in my CakePHP 1.3 project in this way:
<?php __('id'); ?>
Am I missing something here?