thanks. dateutils uses "EEEE". i could have used "EEEE", but i used "EEEEE". according to the documentation it should have worked. this is the documentation:
Text:For formatting, if the number of pattern letters is 4 or more, the full form is used; otherwise a short or abbreviated form is used if available. For parsing, both forms are accepted, independent of the number of pattern letters.
4 or more "E"'s is supposed to spell out in full (and, presumably, in "your" language) the day of the week. so:
EEE gets you "Mon"
EEEE gets you "Monday"
EEEEE (on my devices, at least) gets you "M"
EEEEEE gets you "Mon" (on lemonisdead's device or emulator)
the last 2 cases don't follow the documentation as i read it. am i reading it wrong? or has there been a change? or are the only 2 options "EEE" and "EEEE"?