calendar

the default locale months and days names

object calendar;

Example

webix.i18n.calendar = {
    monthFull:["January", "February", "March", "April", "May", "June", 
      "July", "August", "September", "October", "November", "December"],
    monthShort:["Jan", "Feb", "Mar", "Apr", "May", "Jun", 
       "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
    dayFull:["Sunday", "Monday", "Tuesday", "Wednesday", 
       "Thursday", "Friday", "Saturday"],
    dayShort:["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]
}
webix.i18n.setLocale();

Related samples

Details
  • monthFull - the full names of months starting from January.
  • monthShort - the short names of months starting from January.
  • dayFull - the full names of week days starting from Sunday.
  • dayShort - the short names of week days starting from Sunday.

You need to call setLocale to apply the new format settings

See also
Back to top