messages Object
Provides configuration options for the messages present in the Wizard widget.
Example
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
messages: {
done: "Custom done",
next: "Custom next",
of: "Custom of",
previous: "Custom previous",
reset: "Custom reset",
step: "Custom step"
},
steps: ["Initial step", "Second step", "Third step"]
});
</script>