messagesObject
Defines the text of the checked and unchecked labels that are displayed within the Switch. All labels support localization.
The
messagesproperty is applicable only for theDefaultandClassicthemes. All other themes, by design, do not showcheckedanduncheckedmessages.
Example
<input id="switch" />
<script>
    $("#switch").kendoSwitch({
        messages: {
            checked: "on",
            unchecked: "off"
        }
    });
</script>In this article