Self sign-up has been disabled due to increased spam activity. If you want to get access, please send an email to a project owner (preferred) or at gitlab(at)nic(dot)cz. We apologize for the inconvenience.
* Different date format for each of the two languages can be used via `locale_date_format` function from `common.R`. It returns the formatting string according to current `LC_TIME` locale (`%-d. %B %Y` for `cs`, `%B %-d %Y` for `en` and as a fallback):
```R
>Sys.getlocale("LC_TIME")
[1]"en_US.UTF-8"
>format(Sys.Date(),locale_date_format())
[1]"September 30 2020"
```
```R
>Sys.getlocale("LC_TIME")
[1]"cs_CZ.UTF-8"
>format(Sys.Date(),locale_date_format())
[1]"30. září 2020"
```
`%c` works as well, but it includes abbreviated day name and time: