messages Object
Allows localization of the strings that are used in the widget.
Example
<button id="splitbutton" type="button">Cancel</button>
<script>
$("#splitbutton").kendoSplitButton({
items:[
{ text: "item 1" },
{ text: "item 2" }
],
messages: {
labelSuffix: "Button"
}
});
</script>