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