We’re trying in Vaadin 23.3.12 to set the language in the Datepicker.
When a date is selected the language is set to Dutch which is what we want. But once the date is choosen, the date box itself shows 23 May 2023 instead of 23 Mei 2023.
How can we change this?
At the moment we have already setup the following:
setDateFormats(“d MMM yyyy”, “dd-MM-yyyy”, “ddMMyyyy”, “dmmyyyy”, “dmmyy”);
setMonthNames(Arrays.asList(Constants.MONTHS_FULL_NAME_NL));
setWeekdays(Arrays.asList(Constants.WEEKDAYS_FULL_NL));
setWeekdaysShort(Arrays.asList(Constants.WEEKDAYS_SHORT_NL));
setFirstDayOfWeek(1);
setToday(“Vandaag”);
setCancel(“Annuleren”);