messages.set String
(default: "")
Allows customization of the Set button text in the TimePicker.
Example
<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
value: new Date(),
format: "hh:mm",
componentType:"modern",
messages: {
set: "My Set"
}
});
</script>