Dutch month names

Permalink
Hey everybody,

I'm having issues with getting the names of the months in a different language... I tried several things that were advised here, but none of them actually work.

I'd like to set it to Dutch. The site.php in config is already edited, but I can't find out how to edit view.php in the page_list block.

Could someone please help me out?

Thanks

sombetzki
 
PatrickHeck replied on at Permalink Reply
PatrickHeck
Hi somebetzki,

put this at the top of view.php
$dh = Loader::helper('date');


and then change:
//$date = date('F j, Y', strtotime($page->getCollectionDatePublic()));

to:
$date = $dh->date(DATE_APP_GENERIC_MDY_FULL, strtotime($page->getCollectionDatePublic()));


Best
Patrick