Page 1 of 1
Modifying date
Posted: Fri Sep 30, 2005 1:20 pm
by pierre
How to modify the date, I mean for instance I just want the day and hour not year, and how to localize the calendar ?
Re: Modifying date
Posted: Fri Sep 30, 2005 4:32 pm
by garvinhicking
Either edit the language constant strings in your lang/serendipity_lang_fr.inc.php file, or edit the *.tpl files of your template to change the date format function.
Like in the default entries.tpl you can find this:
Code: Select all
{$dategroup.date|@formatTime:DATE_FORMAT_ENTRY}
You can change this to:
Code: Select all
{$dategroup.date|@formatTime:'%H:%i'}
Regards,
Garvin
ok, but...
Posted: Fri Sep 30, 2005 5:38 pm
by pierre
I've seen the format in the _lan_fr file, thx it works.
But despite the fact I HAVE fr language taken in account by S9Y, the plugin calendar don't work in fr, still in en_EN ...
What have I missed ?
Re: ok, but...
Posted: Fri Sep 30, 2005 5:48 pm
by garvinhicking
If the calendar dates are in english, your server does not have the french locale installed. You need to check with your server admin and ask him to install either one of the locales mentioned in the DATE_LOCALES constant of your language file.
Regards,
Garvin