messages.recurrenceEditor.yearlyObject

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

messages.recurrenceEditor.yearly.dayString

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

Example - set the "day" scheduler recurrence editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    recurrenceEditor: {
        yearly: {
            day: "on 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.yearly.monthString

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

Example - set the "month" scheduler recurrence editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    recurrenceEditor: {
        yearly: {
            day: "exact month"
        }
    }
  },
  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.yearly.ofString

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

Example - set the "of" scheduler recurrence editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    recurrenceEditor: {
        yearly: {
            of: " of "
        }
    }
  },
  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.yearly.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: {
        yearly: {
            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.yearly.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: {
        yearly: {
            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>

messages.recurrenceEditor.yearly.intervalString

The text similar to " year(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: {
        yearly: {
            interval: " year(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>