2
Yes, it is in /language/YOUR LANGUAGE/global.php file
You have to adjust those options to mach what you want:
define("_DATESTRING","d/m/Y G:i");
define("_MEDIUMDATESTRING","j/n/Y G:i");
define("_SHORTDATESTRING","d/m/Y");
Profiles probably is using shortdatestring. To have what you want, I think it shuld be something like:
define("_SHORTDATESTRING","M/jS/Y");
There is a description for different values in that file too.