But i would also like to tranlate the Weekday's in the script the day's are called like this:
Code: Select all
[strftime %A $lut]
I thought doing something like:
Code: Select all
[TDoDay [strftime %A $lut]]
proc TDoDay {} {
Sunday { return Zondag }
Monday { return Maandag }
Tuesday { return Dinsdag }
Wednesday { return Woensdag }
Thursday { return Donderdag }
Friday { return Vrijdag }
Saturday { return Zaterdag }
}
Does anyone have a suggestion on how to make this work?
Thank you