I need to display to user a list of localized day names (like 'Monday', 'Tuesday', ...) in a form. I know ho to get day name of any date. But is there a particular and fail-proof way to get all day names in an array.
Edit: I could add names of days to my translation file but that is hard to maintain.
The "usual" way is to start with a given
last day
and count up a day on each iteration.