messages.seconds String (default: "Seconds")

Sets the title of the seconds column in the popup

Example

<input id="timedurationpicker" />
<script>
$("#timedurationpicker").kendoTimeDurationPicker({
    columns: [ "seconds", "minutes" ],
    "messages": {
        "seconds": "The seconds"
    }
 })
</script>
In this article