This is the bug tracker for Photo Organizer.
FS#258 - Date format in German translation
Attached to Project:
Photo Organizer
Opened by Marcus Hinz (marcus) - Tuesday, 14 August 2007, 20:42 GMT
Last edited by Solomon Peachy (pizza) - Tuesday, 14 August 2007, 21:33 GMT
Opened by Marcus Hinz (marcus) - Tuesday, 14 August 2007, 20:42 GMT
Last edited by Solomon Peachy (pizza) - Tuesday, 14 August 2007, 21:33 GMT
|
DetailsIs it possible to show the date in the German translation in the format "day. month year"(14. August 2007)?
|
This task depends upon
Closed by Solomon Peachy (pizza)
Tuesday, 14 August 2007, 21:33 GMT
Reason for closing: Fixed
Additional comments about closing: ...
Tuesday, 14 August 2007, 21:33 GMT
Reason for closing: Fixed
Additional comments about closing: ...
$strings['formats']['full_date'] = "F j, Y H:i";
$strings['formats']['jscal_full_date'] = "%A, %B %d, %Y @ %k:%M:%S";
$strings['formats']['date'] = "F j, Y";
$strings['formats']['short_date'] = "M j, Y";
$strings['formats']['time'] = "H:i";
For the meaning of all but the jscal date, see: http://us.php.net/date
From what you described, you'd want "j. F Y" as the date, and 'j. M y' as the short date.
There are places where we're using hardcoded formats (especially in the calendar/event code..) but we have to start somewhere.
"j. M y" as short date is possible but better is "j.m.y" (14.08.07)