I see lots of examples of people doing marvellous things starting with:
$locale = $this->getResource('locale');
in their bootstrap. But though I have
resources.locale.default = "nl_NL"
resources.locale.force = true
in my application.ini and
protected function _initLocale()
{
$locale = $this->getResource('locale');
// more code
}
var_dump($locale) still returns NULL and the locale applied elsewhere in my application is the zend default of "en(_US)".
What should I do to access (or initialise) the application wide locale set in my application.ini?