Merge branch 'benphelps:main' into main
This commit is contained in:
commit
8f2d5b7bf9
2 changed files with 4 additions and 4 deletions
|
@ -44,9 +44,9 @@ export default function Component({ service }) {
|
|||
return (
|
||||
<Container service={service}>
|
||||
<Block label="deluge.leech" value={t("common.number", { value: leech })} />
|
||||
<Block label="deluge.download" value={t("common.bitrate", { value: rateDl })} />
|
||||
<Block label="deluge.download" value={t("common.byterate", { value: rateDl })} />
|
||||
<Block label="deluge.seed" value={t("common.number", { value: completed })} />
|
||||
<Block label="deluge.upload" value={t("common.bitrate", { value: rateUl })} />
|
||||
<Block label="deluge.upload" value={t("common.byterate", { value: rateUl })} />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -34,8 +34,8 @@ export default function Component({ service }) {
|
|||
return (
|
||||
<Container service={service}>
|
||||
<Block label="rutorrent.active" value={active.length} />
|
||||
<Block label="rutorrent.upload" value={t("common.bitrate", { value: upload })} />
|
||||
<Block label="rutorrent.download" value={t("common.bitrate", { value: download })} />
|
||||
<Block label="rutorrent.upload" value={t("common.byterate", { value: upload })} />
|
||||
<Block label="rutorrent.download" value={t("common.byterate", { value: download })} />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue