messages.dateInput Object
The messages that DateInput uses. Use it to customize or localize the placeholders of each date/time part.
Example - customize column menu messages
<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
messages:{
dateInput:{
"year": "year",
"month": "month",
"day": "day",
"weekday": "day of the week",
"hour": "hours",
"minute": "minutes",
"second": "seconds",
"dayperiod": "AM/PM"
}
}
});
</script>