Include calibre-web categories

This commit is contained in:
shamoon 2023-08-25 23:23:57 -07:00
parent dfff28c237
commit b38296ac25
2 changed files with 3 additions and 0 deletions

View File

@ -664,6 +664,7 @@
"calibreweb": {
"books": "Books",
"authors": "Authors",
"categories": "Categories",
"series": "Series"
},
"jdownloader": {

View File

@ -19,6 +19,7 @@ export default function Component({ service }) {
<Container service={service}>
<Block label="calibreweb.books" />
<Block label="calibreweb.authors" />
<Block label="calibreweb.categories" />
<Block label="calibreweb.series" />
</Container>
);
@ -28,6 +29,7 @@ export default function Component({ service }) {
<Container service={service}>
<Block label="calibreweb.books" value={t("common.number", { value: data.books })} />
<Block label="calibreweb.authors" value={t("common.number", { value: data.authors })} />
<Block label="calibreweb.categories" value={t("common.number", { value: data.categories })} />
<Block label="calibreweb.series" value={t("common.number", { value: data.series })} />
</Container>
);