diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 1952e334..f90980dc 100755 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -498,7 +498,8 @@ }, "kopia": { "status": "Status", - "backupsize": "Backup Size", - "backuptime": "Backup Time" + "size": "Size", + "executiontime": "Execution Time", + "failed": "Failed" } } \ No newline at end of file diff --git a/src/widgets/kopia/component.jsx b/src/widgets/kopia/component.jsx index 1e22ba86..1e6560f3 100755 --- a/src/widgets/kopia/component.jsx +++ b/src/widgets/kopia/component.jsx @@ -18,8 +18,9 @@ export default function Component({ service }) { return ( - - + + + ); } @@ -30,13 +31,15 @@ export default function Component({ service }) { const hours = duration.getUTCHours().toString().padStart(2, '0'); const minutes = duration.getUTCMinutes().toString().padStart(2, '0'); const seconds = duration.getSeconds().toString().padStart(2, '0'); - const time = (hours + minutes + seconds).split(':'); + const split = ":"; + const time = (hours + split + minutes + split+ seconds); return ( - - + + + ); } \ No newline at end of file