Código PHP:
<? $fech=$row['fecha'];
setlocale(LC_TIME,'SP');
$fecha=strftime('%a %e de %b del %Y - %H:%M hs',strtotime($fech));
echo ucfirst($fecha);
?>
pon esto, cambia SP por es_ES
Código PHP:
<? $fech=$row['fecha'];
setlocale(LC_TIME,'es_ES');
$fecha=strftime('%a %e de %b del %Y - %H:%M hs',strtotime($fech));
echo ucfirst($fecha);
?>