Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Time Stamp Language
Hej there.
Where can i change the definitions for the months etc?
in the moment it says "Oct 18th 2007"
i want it look somehow like this "18. Oktober 2007"
Where can i change the definitions for the months etc?
in the moment it says "Oct 18th 2007"
i want it look somehow like this "18. Oktober 2007"
0
This discussion has been closed.
Comments
You will have to edit library/framework/Framework.Functions.php, inside the TimeDiff function, change the line like so: Then in your conf/language.php file, add these lines (I'm assuming that Oktober is German):
setlocale(LC_TIME, "de_DE"); $Context->Dictionary['OldPostDateFormatCode'] = '%d. %B %Y';
More info on setlocale and strftime.
at the moment it looks like that: what do i have to do? ._.
edit: ah, well i got it. i think my server doesn't support %B or something. an the % signs are not necessary.
changed the B to m, now this seems to work fine. thank you