http://groups.google.com/group/cake-php/b
And a better one here: http://aaronthies.com/wp/2007/08/03/cake
INTERNATIONALIZATION
- at top of controller: uses('L10n');
- create /app/locale/eng/LC_MESSAGES/default.po (French is fre/fra)
http://www.loc.gov/standards/iso639-2/p
- create entries in default.po as such:
msgid "close_window"
msgstr "Close"
msgid "where_pin"
msgstr "Where is my PIN?"
- call translations in view: ) ("close_window"
is msgid from default.po)
this is going to echo out the msgstr for the given msgid, else it
wil display the msgid given
use __("button_submit", true) to return the value as opposed to
echoing it
