I would like to see a Dutch translation of the CakePHP 2.3.7 formhelper months. See this link: http://dev4.west-dyke.com/verhuur/reserveren.
However I can't seem to get it working. I also saw another post about this problem, but it still didn't solve the problem.
I created a folder named app/Locale/nl_NL/LC_MESSAGES/cake.po. The PO file was generated with poedit from cake.pot in the app/Locale directory.
I added these lines to cake.po:
msgid "January"
msgstr "Januari"
msgid "February"
msgstr "Februari"
msgid "March"
msgstr "Maart"
msgid "April"
msgstr "April"
msgid "May"
msgstr "Mei"
msgid "June"
msgstr "Juni"
msgid "July"
msgstr "Juli"
msgid "August"
msgstr "Augustus"
msgid "September"
msgstr "September"
msgid "October"
msgstr "Oktober"
msgid "November"
msgstr "November"
msgid "December"
msgstr "December"
I added the following line to the bottom of my bootstrap.php file:
Configure::write('Config.language','nl_NL');
Does anybody have an idea of what's going wrong?