messages Object

Allows localization of the strings that are used in the widget.

Example

<input id="timepicker" />

<script>
  $("#timepicker").kendoTimePicker({
    value: new Date(),
    format: "hh:mm",
    componentType:"modern",
    messages: {
      now: "My Now",
      hour: "My Hour",
      minute:"My Minute",
      second:"My Second",
      millisecond: "My Millisecond",
      cancel: "My Cancel",
      set:"My Set",
    }
  });
</script>
In this article