> F is the month, j is the day without the leading zero, Y is the four-
> digit year (March 07, 2008). You have to substitute 'F j, Y' with the
> letters listed in http://www.php.net/manual/en/function.date.php that
> match the Danish format. For instance, l (lowercase L) is the day of
> the week. Words are in English, you need localisation to translate
> them to Danish, but localization is not implemented yet.
As a quick workaround, you can call setlocale(LC_TIME, 'dk_DK'); in your
theme's index.php or in your config.php. That should give you localized
month names, provided the danish locale is insalled on your system.
-Matt