messages Object

Defines the text of the checked and unchecked labels that are displayed within the Switch. All labels support localization.

Example

<input id="switch" />

<script>
    $("#switch").kendoSwitch({
        messages: {
            checked: "on",
            unchecked: "off"
        }
    });
</script>
In this article