diff --git a/frappe/public/js/frappe/views/calendar/calendar.js b/frappe/public/js/frappe/views/calendar/calendar.js index 4dde6f92f3..ffbc2d00b8 100644 --- a/frappe/public/js/frappe/views/calendar/calendar.js +++ b/frappe/public/js/frappe/views/calendar/calendar.js @@ -250,8 +250,13 @@ frappe.views.Calendar = class Calendar { setup_options(defaults) { var me = this; defaults.meridiem = "false"; + let lang = frappe.boot.lang; + if (lang == "ar") { + // arabic doesn't work with fullcalendar - doesn't show anything. + lang = "en"; + } this.cal_options = { - locale: frappe.boot.lang, + locale: lang, header: { left: "prev, title, next", right: "today, month, agendaWeek, agendaDay",