From 70a31d54020240db0d3343b14be93ffd3367e58a Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Fri, 19 Sep 2014 11:18:10 +0530 Subject: [PATCH] Gantt view fix for translations --- erpnext/projects/doctype/task/task_calendar.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/erpnext/projects/doctype/task/task_calendar.js b/erpnext/projects/doctype/task/task_calendar.js index a9d3d6b566..f372184205 100644 --- a/erpnext/projects/doctype/task/task_calendar.js +++ b/erpnext/projects/doctype/task/task_calendar.js @@ -6,17 +6,17 @@ frappe.views.calendar["Task"] = { "start": "exp_start_date", "end": "exp_end_date", "id": "name", - "title": __("subject"), + "title": "subject", "allDay": "allDay" }, gantt: true, filters: [ { - "fieldtype": "Link", - "fieldname": "project", - "options": "Project", + "fieldtype": "Link", + "fieldname": "project", + "options": "Project", "label": __("Project") } ], get_events_method: "erpnext.projects.doctype.task.task.get_events" -} \ No newline at end of file +}