3 Answers, 1 is accepted
The widgets support localization. However, have in mind that not all languages are currently available. Please check out the following article for additional information on localizing the widgets and also the available localized resources.
Regards,
Viktor Tachev
Telerik

Polish messages are available and there is still an English version when choosing the date.
I also set ..
kendo.culture("pl-PL");
$("#Dod").kendoDatePicker( { culture:"pl-PL", format: "yyyy-MM-dd", width: "90px" , dateInput: true , min: new Date ( 2010,1,1 ) });
$("#Ddo").kendoDatePicker( { culture:"pl-PL", format: "yyyy-MM-dd", width: "90px" , dateInput: true , min: new Date ( 2010,1,1 ) });
Paweł
Hi Paweł,
The names of the days and months are defined in the respective kendo.culture file. Please make sure that it is included as well and see how the behavior changes.
Regards,
Viktor Tachev
Progress Telerik
Our thoughts here at Progress are with those affected by the outbreak.
I got the same problem in fr-CA, the dateInput is display as 'year-month-day' when it should be 'année-mois-jour'
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Kendo UI Snippet</title>
<link rel="stylesheet" href="https://kendo.cdn.telerik.com/2022.1.301/styles/kendo.default-v2.min.css"/>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2022.1.301/js/kendo.all.min.js"></script>
</head>
<body>
<script src="https://kendo.cdn.telerik.com/2022.1.301/js/cultures/kendo.culture.fr-CA.min.js"></script>
<script src="https://kendo.cdn.telerik.com/2022.1.301/js/messages/kendo.messages.fr-CA.min.js"></script>
<script>
kendo.culture("fr-CA");
</script>
<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
dateInput: true
});
</script>
</body>
</html>
Hi Jean-Francois,
The messages of the DateInput need to be configured by using the setOptions method of the DateTimePicker.
$("#datetimepicker").kendoDateTimePicker({
dateInput: true
});
var datetimepicker = $("#datetimepicker").data("kendoDateTimePicker");
datetimepicker._dateInput.setOptions({
messages:{
"year": "custom year",
"month": "custom mm",
"day": "custom dd",
"hour": "custom hh",
"minute": " custom mm",
"second": "custom ss",
"dayperiod": "custom am/pm",
}
});
Updated Dojo: https://dojo.telerik.com/aYAmucOz
here is an article describing the above: https://docs.telerik.com/kendo-ui/knowledge-base/datetimepicker-messages-dateinput-change-text
Regards,
Nikolay