mirror of
https://github.com/karl0ss/homepage.git
synced 2025-04-29 12:03:41 +01:00
fix fileflows widget labels
This commit is contained in:
parent
2e54f586a2
commit
ebe58769f6
@ -477,5 +477,11 @@
|
|||||||
"photos": "Photos",
|
"photos": "Photos",
|
||||||
"videos": "Videos",
|
"videos": "Videos",
|
||||||
"people": "People"
|
"people": "People"
|
||||||
|
},
|
||||||
|
"fileflows": {
|
||||||
|
"queue": "Queue",
|
||||||
|
"processing": "Processing",
|
||||||
|
"processed": "Processed",
|
||||||
|
"time": "Time"
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -28,10 +28,10 @@ export default function Component({ service }) {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Container service={service}>
|
<Container service={service}>
|
||||||
<Block label="queue" value={t("common.number", { value: fileflowsData.queue })} />
|
<Block label="fileflows.queue" value={t("common.number", { value: fileflowsData.queue })} />
|
||||||
<Block label="processing" value={t("common.number", { value: fileflowsData.processing })} />
|
<Block label="fileflows.processing" value={t("common.number", { value: fileflowsData.processing })} />
|
||||||
<Block label="processed" value={t("common.number", { value: fileflowsData.processed })} />
|
<Block label="fileflows.processed" value={t("common.number", { value: fileflowsData.processed })} />
|
||||||
<Block label="time" value={fileflowsData.time?.length ? fileflowsData.time : "0:00"} />
|
<Block label="fileflows.time" value={fileflowsData.time?.length ? fileflowsData.time : "0:00"} />
|
||||||
</Container>
|
</Container>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user