I'm seeing the english date format in my catalog...
where have i to change it ?..
thanks...
I'm seeing the english date format in my catalog...
where have i to change it ?..
thanks...
if i remember correctly this is in /catalog/includes/languages/english.php . Someone correct me if im wrong. Should look something like this:
define('DATE_FORMAT_SHORT', '%m/%d/%Y'); // this is used for strftime()
define('DATE_FORMAT_LONG', '%A %d %B, %Y'); // this is used for strftime()
define('DATE_FORMAT', 'm/d/Y'); // this is used for date()
define('DATE_TIME_FORMAT', DATE_FORMAT_SHORT . ' %H:%M:%S');
and be right near the top.
Also if you DON'T want DATE_FORMAT_LONG default english names (ie MONTH WEEK loke "May" or "Tuesday") - you have to make sure your server support/installs the ISO language you want (it's an OS language settings where it pulls the TEXT for these)
Good Luck!
Bookmarks