messages.recurrenceEditor.monthlyObject

The configuration of the scheduler recurrence editor monthly messages. Use this option to customize or localize the scheduler recurrence editor monthly messages.

Example

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
    date: new Date("2022/6/13"),
    startTime: new Date("2022/6/13 07:00 AM"),
    height: 600,
    views: ["day", "week"],
    timezone: "Etc/UTC",
    dataSource: [
        {
            id: 1,
            start: new Date("2022/6/13 10:00 AM"),
            end: new Date("2022/6/13 11:00 AM"),
            title: "Monthly Meeting",
            recurrenceRule: "FREQ=MONTHLY"
        }
    ],
    messages: {
        recurrenceEditor: {
            monthly: {
                day: "Day ",
                interval: " month(s)",
                of: " of ",
                repeatEvery: "Repeat every: ",
                repeatOn: "Repeat on: "
            }
        }
    }
});
</script>

messages.recurrenceEditor.monthly.dayString

The text similar to "Day " displayed in the scheduler recurrence editor.

Example - set the "day" scheduler recurrence editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    recurrenceEditor: {
        monthly: {
            day: "day "
        }
    }
  },
  dataSource: [
    {
      id: 1,
      start: new Date("2013/6/6 08:00 AM"),
      end: new Date("2013/6/6 09:00 AM"),
      title: "Interview"
    }
  ]
});
</script>

messages.recurrenceEditor.monthly.dateString

The text similar to "Date " displayed in the scheduler recurrence editor. Also used for titles of the appropriate inputs.

Example - set the "date" scheduler recurrence editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    recurrenceEditor: {
        monthly: {
            date: "Exact date "
        }
    }
  },
  dataSource: [
    {
      id: 1,
      start: new Date("2013/6/6 08:00 AM"),
      end: new Date("2013/6/6 09:00 AM"),
      title: "Interview"
    }
  ]
});
</script>

messages.recurrenceEditor.monthly.intervalString

The text similar to " month(s)" displayed in the scheduler recurrence editor.

Example - set the "interval" scheduler recurrence editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    recurrenceEditor: {
        monthly: {
            interval: " month(s)."
        }
    }
  },
  dataSource: [
    {
      id: 1,
      start: new Date("2013/6/6 08:00 AM"),
      end: new Date("2013/6/6 09:00 AM"),
      title: "Interview"
    }
  ]
});
</script>

messages.recurrenceEditor.monthly.repeatEveryString

The text similar to "Repeat every: " displayed in the scheduler recurrence editor.

Example - set the "repeatEvery" scheduler recurrence editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    recurrenceEditor: {
        monthly: {
            repeatEvery: "Repeat each: "
        }
    }
  },
  dataSource: [
    {
      id: 1,
      start: new Date("2013/6/6 08:00 AM"),
      end: new Date("2013/6/6 09:00 AM"),
      title: "Interview"
    }
  ]
});
</script>

messages.recurrenceEditor.monthly.repeatOnString

The text similar to "Repeat on: " displayed in the scheduler recurrence editor.

Example - set the "repeatOn" scheduler recurrence editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    recurrenceEditor: {
        monthly: {
            repeatOn: "repeat on: "
        }
    }
  },
  dataSource: [
    {
      id: 1,
      start: new Date("2013/6/6 08:00 AM"),
      end: new Date("2013/6/6 09:00 AM"),
      title: "Interview"
    }
  ]
});
</script>