From d5bb5e96dabb18ebb927cb052e97d71a79abefc5 Mon Sep 17 00:00:00 2001 From: sunguangming Date: Thu, 26 Dec 2024 03:03:10 +0000 Subject: [PATCH] * [bug#58642,done,0.2h] fix bug. --- extension/lite/execution/ext/ui/kanban.html.php | 2 ++ extension/lite/execution/ext/ui/task.html.php | 1 + 2 files changed, 3 insertions(+) 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);