messages.dateInput.dayString(default: "day")
The placeholder for the day of the month part.
Example
<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
dateInput: true,
messages: {
dateInput: {
day: "dd"
}
}
});
</script>
In this article