culture String
(default: "en-US")
Specifies the culture info used by the widget.
Example - specify German culture internationalization
<!--
List of available cultures - https://github.com/telerik/kendo-ui-core/tree/master/src/cultures
For more information check this help topic:
https://docs.telerik.com/kendo-ui/framework/globalization/overview
-->
<script src="https://kendo.cdn.telerik.com/2024.4.1112/js/cultures/kendo.culture.de-DE.min.js"></script>
<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
culture: "de-DE"
});
</script>