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 @@