messagesObject
Defines the text of the labels that are shown within the dialog. Used primarily for localization.
Example
<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
  title: "Kendo Dialog Component",
  content: "This is your Kendo Dialog.",
  messages:{
    close: "Close Me!"
  }
});
</script>messages.closeString(default: "Close")
The title of the close button.
Example
<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
  title: "Kendo Dialog Component",
  content: "This is your Kendo Dialog.",
  messages:{
    close: "Close Me!"
  }
});
</script>messages.promptInputString(default: "Input")
The title of the prompt input.
Example
<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
  title: "Kendo Dialog Component",
  content: "This is your Kendo Dialog.",
  messages:{
    promptInput: "Input!"
  }
});
</script>In this article