@wandelbots/wandelbots-js-react-components 2.29.0-pr.feature-add-cycle-timer.368.cb225d2 → 2.29.0-pr.feature-add-cycle-timer.368.3937cdc

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wandelbots/wandelbots-js-react-components",
3
- "version": "2.29.0-pr.feature-add-cycle-timer.368.cb225d2",
3
+ "version": "2.29.0-pr.feature-add-cycle-timer.368.3937cdc",
4
4
  "description": "React UI toolkit for building applications on top of the Wandelbots platform",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -268,7 +268,7 @@ export const CycleTimer = externalizeComponent(
268
268
  ? // Compact mode: show only remaining time
269
269
  formatTime(remainingTime)
270
270
  : // Full mode: show "remaining / of total min." format
271
- `${formatTime(remainingTime)} / ${t("CycleTimer.OfTime.lb", { time: formatTime(maxTime) })}`}
271
+ `${formatTime(remainingTime)} / ${t("CycleTimer.Time.lb", { time: formatTime(maxTime) })}`}
272
272
  </Typography>
273
273
  </Box>
274
274
  )
@@ -46,6 +46,7 @@
46
46
  "Jogging.Velocity.bt": "Geschwindigkeit",
47
47
  "CycleTimer.RemainingTime.lb": "Verbleibende Zeit",
48
48
  "CycleTimer.OfTime.lb": "von {{time}} min.",
49
+ "CycleTimer.Time.lb": "{{time}} min.",
49
50
  "ProgramControl.Start.bt": "Start",
50
51
  "ProgramControl.Resume.bt": "Weiter",
51
52
  "ProgramControl.Pause.bt": "Pause",
@@ -47,6 +47,7 @@
47
47
  "Jogging.Velocity.bt": "Velocity",
48
48
  "CycleTimer.RemainingTime.lb": "Time remaining",
49
49
  "CycleTimer.OfTime.lb": "of {{time}} min.",
50
+ "CycleTimer.Time.lb": "{{time}} min.",
50
51
  "ProgramControl.Start.bt": "Start",
51
52
  "ProgramControl.Resume.bt": "Resume",
52
53
  "ProgramControl.Pause.bt": "Pause",