I am working with SocialEngine4 with Zend. Translator of this application working fine. But we want some different date format for German language so we implemented new code. But it is not translating "March" properly. It is showing "21. M�rz 2015" date instead of "21. März 2015".
I used following code for this change
setlocale(LC_TIME, 'de_DE', 'deu_deu');
$date = strftime ("%d. %B %Y",strtotime($date));
setlocale(LC_ALL,NULL);
echo $date;
Please let me know whats the wrong here.