New to Kendo UI for jQuery? Start a free 30-day trial

Messages

configuration

Contains the localizable text strings used by the widget.

messages

Object
<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>

The accessible label for the next source navigation button in the popover.

Default: "Next source"

<span id="citation"></span>
<script>
$("#citation").kendoCitation({
    sources: [
        { url: "https://example.com", title: "A" },
        { url: "https://example.org", title: "B" }
    ],
    messages: {
        nextSourceAction: "Forward"
    }
});
</script>

The accessible label for the previous source navigation button in the popover.

Default: "Previous source"

<span id="citation"></span>
<script>
$("#citation").kendoCitation({
    sources: [
        { url: "https://example.com", title: "A" },
        { url: "https://example.org", title: "B" }
    ],
    messages: {
        previousSourceAction: "Back"
    }
});
</script>