messages.editor Object

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

messages.editor.allDayEvent String

The text similar to "All day event" displayed in the scheduler event editor.

Example - set the "allDayEvent" scheduler editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    editor: {
        allDayEvent: "Full 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.editor.description String

The text similar to "Description" displayed in the scheduler event editor.

Example - set the "description" scheduler editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    editor: {
        description: "Message"
    }
  },
  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.editor.editorTitle String

The text similar to "Event" displayed as title of the scheduler event editor.

Example - set the "editorTitle" scheduler editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    editor: {
        editorTitle: "Edit event"
    }
  },
  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.editor.end String

The text similar to "End" displayed in the scheduler event editor.

Example - set the "end" scheduler editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    editor: {
        end: "End of the event"
    }
  },
  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.editor.endTimezone String

The text similar to "End timezone" displayed in the scheduler event editor.

Example - set the "endTimezone" scheduler editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    editor: {
        endTimezone: "End date timezone"
    }
  },
  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.editor.repeat String

The text similar to "Repeat" displayed in the scheduler event editor.

Example - set the "repeat" scheduler editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    editor: {
        repeat: "Repeat the event"
    }
  },
  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.editor.separateTimezones String

The text similar to "Use separate start and end time zones" displayed in the scheduler event editor.

Example - set the "separateTimezones" scheduler editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    editor: {
        separateTimezones: "Set different start and end time zones"
    }
  },
  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.editor.start String

The text similar to "Start" displayed in the scheduler event editor.

Example - set the "start" scheduler editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    editor: {
        start: "Start of the event"
    }
  },
  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.editor.startTimezone String

The text similar to "Start timezone" displayed in the scheduler event editor.

Example - set the "startTimezone" scheduler editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    editor: {
        startTimezone: "Start date timezone"
    }
  },
  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.editor.timezone String

The text similar to "Timezone" displayed in the scheduler event editor.

Example - set the "timezone" scheduler editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    editor: {
        timezone: "Event timezone"
    }
  },
  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.editor.timezoneEditorButton String

The text similar to "Time zone" displayed as text of timezone editor button in the scheduler event editor.

Example - set the "timezoneEditorButton" scheduler editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    editor: {
        timezoneEditorButton: "Time zone"
    }
  },
  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.editor.timezoneEditorTitle String

The text similar to "Timezones" displayed as title of timezone editor in the scheduler event editor.

Example - set the "timezoneEditorTitle" scheduler editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    editor: {
        timezoneEditorTitle: "Timezones"
    }
  },
  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.editor.title String

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

Example - set the "title" scheduler editor message

<div id="scheduler"></div>
<script>
$("#scheduler").kendoScheduler({
  date: new Date("2013/6/6"),
  messages: {
    editor: {
        title: "Title of the event"
    }
  },
  dataSource: [
    {
      id: 1,
      start: new Date("2013/6/6 08:00 AM"),
      end: new Date("2013/6/6 09:00 AM"),
      title: "Interview"
    }
  ]
});
</script>
In this article