Date format: "After xxxx-mm" with unknown day is replaced by "mm 1st"
I've checked the Wiki docs on Date and Time Formats:
We need to enter the information that something was done after a certain month in a year:
After 1970-03
It somewhat works, but CA replaces it with "After March 1st 1970
" - which is incorrect.
"After YYYY" works, but that's too inexact.
Grateful for any suggestions.
Comments
That's the expected behavior of the parser actually although I can see how some might expect it so use the last date of the month. You might want to try
After 1970-03-31
. If this is not satisfactory to you, it would not be difficult to modify the parser to make this behavior configurable.Since no day is specified (because not known), it would be great if no day would be required or filled in.
Would that be possible?
Yes. We'll add that.
Wow! Thanks
These changes have been made in the develop (1.8) branch as well as master branch (1.7.9), and will be in the next releases.
Thanks a lot!