messagesObject
Contains the localizable text strings used by the widget.
Example - set messages
<span id="citation"></span>
<script>
$("#citation").kendoCitation({
sources: [
{ url: "https://example.com", title: "A" },
{ url: "https://example.org", title: "B" }
],
messages: {
previousSourceAction: "Prev",
nextSourceAction: "Next"
}
});
</script>