The Calendar control has been updated for the next release: https://feedback.objo.dev/feature/390
The week and day scheduler views now localise their built-in text instead of hard-coding English labels. This fixes the all-day strip showing "All day" in a French calendar view.
There is also a new Calendar.Locale property. Set it to a Locale value when you want the Calendar to use a specific language/region for month names, day names, time labels, and built-in scheduler text:
Calendar1.Locale = Locale.FromIdentifier("fr-FR")
Apps can override the built-in Calendar strings through their localisation tables:
Objo.System.Calendar.AllDay
Objo.System.Calendar.MoreItems
Objo.System.Calendar.MoreItems supports a {count} token, for example +{count} en plus.
If no project localisation entry is provided, Calendar falls back to the built-in English text.