|
Posted by <talthen.z-serwera.o2 on 08/28/05 18:12
"Jochem" <jdonkers@gmail.com>
> The main issue is to translate things like "Tuesday, 11 October 2005"
> into Danish (or any other language for that matter).
Prepare tables like:
Day array=(DanishNameOfDay1, DanishNameOfDay2...)
Month array=(DanishNameofMonth1...)
then get the date in format 01-28-08-2005 exploded into 4 variables:
daynum,day, month,year.
Then get the proper values from the arrays:
DanishDate=$Day[$daynum]."-".$day."-".$Month[$month]...
Regards,
Talthen
[Back to original message]
|