messages.moreEventsPopover.eventsLabelString(default: "Events")

The accessible label for the event list in the Month view overflow popover. The message is consumed only when the Month view has moreEventsPopover set to true.

Example - set the Month view popover events label

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2026/8/3"),
  views: [{ type: "month", selected: true, eventsPerDay: 1, moreEventsPopover: true }],
  messages: { moreEventsPopover: { eventsLabel: "Appointments" } },
  dataSource: [
    { id: 1, title: "Inspection", start: new Date("2026/8/3 09:00"), end: new Date("2026/8/3 10:00") },
    { id: 2, title: "Delivery", start: new Date("2026/8/3 11:00"), end: new Date("2026/8/3 12:00") }
  ]
});
</script>