You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bundled date and time Data Source should be transformed into an Data Source interface: this way the language settings will no longer have to reside in the config but will be stored in a Data Source file that can be tracked with Git and shared via the workspace folder.
In this context, the starting weekday can be made configurable – this would fix #129.
Also, the month and week names should be provided by the PHP DateTime class – this potentially fixes #127.
The text was updated successfully, but these errors were encountered:
@PascalPiche came across this bug while displaying the weekday name: The DS formats the weekday with 'N', which uses ISO-8601 (first date of the week is then Monday as in the US, not Sunday).
There were multiple places where a fix could be applied, but the best solutions we found was to apply the fix in the data-source for two reasons:
1. Field ouput won't change, so less risk to break things
2. The xsl template is agnostic to this change since it was doing string matches
The bundled date and time Data Source should be transformed into an Data Source interface: this way the language settings will no longer have to reside in the config but will be stored in a Data Source file that can be tracked with Git and shared via the workspace folder.
In this context, the starting weekday can be made configurable – this would fix #129.
Also, the month and week names should be provided by the PHP
DateTime
class – this potentially fixes #127.The text was updated successfully, but these errors were encountered: