diff --git a/extension/lite/execution/ext/ui/kanban.html.php b/extension/lite/execution/ext/ui/kanban.html.php index b130a08f5e..b2c8f7b15e 100644 --- a/extension/lite/execution/ext/ui/kanban.html.php +++ b/extension/lite/execution/ext/ui/kanban.html.php @@ -111,6 +111,8 @@ if($canBatchCreateTask) $createMenu[] = array('text' => $lang->execution->batchC jsVar('laneCount', $laneCount); jsVar('taskToOpen', $taskToOpen); jsVar('isLimited', $isLimited); +jsVar('childrenAB', $lang->task->childrenAB); +jsVar('parentAB', $lang->task->parentAB); jsVar('kanbanLang', $lang->kanban); jsVar('storyLang', $lang->story); jsVar('executionLang', $lang->execution); diff --git a/extension/lite/execution/ext/ui/task.html.php b/extension/lite/execution/ext/ui/task.html.php index e37cb3c886..fd61563e79 100644 --- a/extension/lite/execution/ext/ui/task.html.php +++ b/extension/lite/execution/ext/ui/task.html.php @@ -171,6 +171,7 @@ jsVar('+pageSummary', $lang->execution->pageSummary); jsVar('checkedSummary', $lang->execution->checkedSummary); jsVar('multipleAB', $lang->task->multipleAB); jsVar('childrenAB', $lang->task->childrenAB); +jsVar('parentAB', $lang->task->parentAB); jsVar('todayLabel', $lang->today); jsVar('yesterdayLabel', $lang->yesterday); jsVar('teamLang', $lang->task->team);