From 55aaab36727487aa5de8edf2a2508e057dc619c5 Mon Sep 17 00:00:00 2001 From: Cindy Chang Date: Mon, 3 Jun 2024 15:10:17 +0800 Subject: [PATCH] compare page locale continue --- src/i18n/en.json | 15 ++++++++- src/views/Compare/Dashboard/index.vue | 47 +++++++++++++++------------ 2 files changed, 40 insertions(+), 22 deletions(-) diff --git a/src/i18n/en.json b/src/i18n/en.json index 07f9408..6259e66 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -1,6 +1,16 @@ { "Compare": { + "timeUsage": "Time Usage", + "frequency": "Frequency", + "cycleEfficiency": "Cycle Efficiency", "avgCycleTimeTitle": "Average Cycle Time", + "schedule": "schedule", + "info": "info", + "ProcessingTime": "Processing Time", + "WaitingTime": "Waiting Time", + "NoWaitingTime": "No waiting time.", + "moving": "moving", + "NumberOfCases": "Number of Cases", "labelDateX": "Date", "avgCycleTimeY": "Cycle time", "labelActivityY": "Activity", @@ -18,6 +28,9 @@ "freqTitle": "New Cases", "freqY": "Count", "casesByTaskTitle": "Number of Cases by Activity", - "casesByTaskX": "Times" + "casesByTaskX": "Times", + "avgCycleEfficiency": "Cycle Efficiency: The ratio of the total productive time to the total cycle time of a process. Productive time refers to the time during which value-adding activities are performed, while cycle time is the total time from the start to the end of the process, including both productive and non-productive periods.", + "avgWaitingTime": "Average Waiting Time: The average duration during which a task or an item (like a work order, a product, or a piece of information) is on hold or idle before the next step in the process can begin. This time does not contribute to the active progression of the task but is instead a period of inactivity.", + "avgWaitingTimeByEdge": "Average Waiting Time Between Activities: The average duration during which a task or an item (like a work order, a product, or a piece of information) is on hold or idle before the next step in the process can begin. This time does not contribute to the active progression of the task but is instead a period of inactivity." } } \ No newline at end of file diff --git a/src/views/Compare/Dashboard/index.vue b/src/views/Compare/Dashboard/index.vue index 947b193..cd2ab19 100644 --- a/src/views/Compare/Dashboard/index.vue +++ b/src/views/Compare/Dashboard/index.vue @@ -6,7 +6,7 @@