messagesObject
Contains the localizable text strings used by the widget.
Example - set messages
<div id="toolcall"></div>
<script>
$("#toolcall").kendoToolCall({
label: "fetch_data",
state: "awaitingApproval",
expandable: true,
expanded: true,
messages: {
approve: "Allow",
reject: "Deny"
}
});
</script>