From 70b4f4e1e6aece4809acfd9f9ff08c29a402264e Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 21 Aug 2023 08:51:35 -0700 Subject: [PATCH 01/86] Apply cardBlur to header boxed / boxedWidgets --- src/components/widgets/widget/container.jsx | 4 ++++ src/pages/index.jsx | 9 +++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/components/widgets/widget/container.jsx b/src/components/widgets/widget/container.jsx index 59ea5684..6e7eb92d 100644 --- a/src/components/widgets/widget/container.jsx +++ b/src/components/widgets/widget/container.jsx @@ -7,6 +7,10 @@ import Raw from "./raw"; export function getAllClasses(options, additionalClassNames = '') { if (options?.style?.header === "boxedWidgets") { + if (options?.style?.cardBlur !== undefined) { + additionalClassNames = additionalClassNames.concat(additionalClassNames, ` backdrop-blur${options.style.cardBlur.length ? '-' : ""}${options.style.cardBlur}`) + } + return classNames( "flex flex-col justify-center first:ml-0 ml-2 mr-2", "mt-2 m:mb-0 rounded-md shadow-md shadow-theme-900/10 dark:shadow-theme-900/20 bg-theme-100/20 dark:bg-white/5 p-2 pl-3 pr-3", diff --git a/src/pages/index.jsx b/src/pages/index.jsx index a2993b1a..9b9890e9 100644 --- a/src/pages/index.jsx +++ b/src/pages/index.jsx @@ -257,8 +257,9 @@ function Home({ initialSettings }) {
!rightAlignedWidgets.includes(widget.type)) .map((widget, i) => ( - + ))}
rightAlignedWidgets.includes(widget.type)) .map((widget, i) => ( - + ))}
From bb8ad4747c8bef49cfdbfff24c4153222dc3e8fe Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 21 Aug 2023 09:14:05 -0700 Subject: [PATCH 02/86] Update container.jsx --- src/components/widgets/widget/container.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/widgets/widget/container.jsx b/src/components/widgets/widget/container.jsx index 6e7eb92d..42d04948 100644 --- a/src/components/widgets/widget/container.jsx +++ b/src/components/widgets/widget/container.jsx @@ -8,6 +8,7 @@ import Raw from "./raw"; export function getAllClasses(options, additionalClassNames = '') { if (options?.style?.header === "boxedWidgets") { if (options?.style?.cardBlur !== undefined) { + // eslint-disable-next-line no-param-reassign additionalClassNames = additionalClassNames.concat(additionalClassNames, ` backdrop-blur${options.style.cardBlur.length ? '-' : ""}${options.style.cardBlur}`) } From 4c49767a0fd4df8f212efacc803d9b3b1601bf71 Mon Sep 17 00:00:00 2001 From: Georges-Antoine Assi Date: Mon, 21 Aug 2023 12:22:15 -0400 Subject: [PATCH 03/86] Calibre web widget (#1829) * Add widget for calibre-web with reverse-proxy auth --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- public/locales/en/common.json | 5 ++ src/widgets/calibreweb/component.jsx | 37 ++++++++++++++ src/widgets/calibreweb/proxy.js | 73 ++++++++++++++++++++++++++++ src/widgets/calibreweb/widget.js | 20 ++++++++ src/widgets/components.js | 1 + src/widgets/widgets.js | 2 + 6 files changed, 138 insertions(+) create mode 100644 src/widgets/calibreweb/component.jsx create mode 100644 src/widgets/calibreweb/proxy.js create mode 100644 src/widgets/calibreweb/widget.js diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 2cf3f1ba..2d86809f 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -661,6 +661,11 @@ "monitoring": "Monitoring", "updates": "Updates" }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" + }, "jdownloader": { "downloadCount": "Queue", "downloadBytesRemaining": "Remaining", diff --git a/src/widgets/calibreweb/component.jsx b/src/widgets/calibreweb/component.jsx new file mode 100644 index 00000000..450297af --- /dev/null +++ b/src/widgets/calibreweb/component.jsx @@ -0,0 +1,37 @@ +import { useTranslation } from "next-i18next"; + +import Container from "components/services/widget/container"; +import Block from "components/services/widget/block"; +import useWidgetAPI from "utils/proxy/use-widget-api"; + +export default function Component({ service }) { + const { t } = useTranslation(); + + const { widget } = service; + const { data: booksData, error: booksError } = useWidgetAPI(widget, "books"); + const { data: authorsData, error: authorsError } = useWidgetAPI(widget, "authors"); + const { data: seriesData, error: seriesError } = useWidgetAPI(widget, "series"); + + if (booksError || authorsError || seriesError) { + const finalError = booksError ?? authorsError ?? seriesError; + return ; + } + + if (!booksData || !authorsData || !seriesData) { + return ( + + + + + + ); + } + + return ( + + + + + + ); +} diff --git a/src/widgets/calibreweb/proxy.js b/src/widgets/calibreweb/proxy.js new file mode 100644 index 00000000..4328e43c --- /dev/null +++ b/src/widgets/calibreweb/proxy.js @@ -0,0 +1,73 @@ +import { xml2json } from "xml-js"; + +import { formatApiCall } from "utils/proxy/api-helpers"; +import { httpProxy } from "utils/proxy/http"; +import getServiceWidget from "utils/config/service-helpers"; +import createLogger from "utils/logger"; +import widgets from "widgets/widgets"; + +const proxyName = "calibreWebProxyHandler"; +const logger = createLogger(proxyName); + +async function getWidget(req) { + const { group, service } = req.query; + + if (!group || !service) { + logger.debug("Invalid or missing service '%s' or group '%s'", service, group); + return null; + } + + const widget = await getServiceWidget(group, service); + + if (!widget) { + logger.debug("Invalid or missing widget for service '%s' in group '%s'", service, group); + return null; + } + + return widget; +} + +async function apiCall(widget, endpoint) { + const { api } = widgets[widget.type]; + const apiUrl = new URL(formatApiCall(api, { endpoint, ...widget })); + const headers = { + Authorization: `Basic ${Buffer.from(`${widget.username}:${widget.password}`).toString("base64")}` + }; + + const [status, contentType, data] = await httpProxy(apiUrl, { + withCredentials: true, + credentials: "include", + headers, + }); + + if (status !== 200) { + logger.error("Error getting data from CalibreWeb: %s status %d. Data: %s", apiUrl, status, data); + return { status, contentType, data: null }; + } + + try { + const dataDecoded = xml2json(data.toString(), { compact: true }); + return {status, data: JSON.parse(dataDecoded), contentType}; + } catch (e) { + logger.error("Error decoding CalibreWeb API data. Data: %s", data.toString()); + return {status, data: null, contentType}; + } +} + +export default async function calibreWebProxyHandler(req, res) { + const widget = await getWidget(req); + + const { endpoint } = req.query; + + if (!widget) { + return res.status(400).json({ error: "Invalid proxy service type" }); + } + + const { status, data } = await apiCall(widget, endpoint); + + if (status !== 200) { + return res.status(status).json({error: {message: "HTTP error communicating with CalibreWeb API", data: Buffer.from(data).toString()}}); + } + + return res.status(status).json(data); +} diff --git a/src/widgets/calibreweb/widget.js b/src/widgets/calibreweb/widget.js new file mode 100644 index 00000000..ea898dd1 --- /dev/null +++ b/src/widgets/calibreweb/widget.js @@ -0,0 +1,20 @@ +import calibreWebProxyHandler from "./proxy"; + +const widget = { + api: "{url}/{endpoint}", + proxyHandler: calibreWebProxyHandler, + + mappings: { + books: { + endpoint: "opds/books/letter/00", + }, + authors: { + endpoint: "opds/author/letter/00", + }, + series: { + endpoint: "opds/series/letter/00", + }, + }, +}; + +export default widget; diff --git a/src/widgets/components.js b/src/widgets/components.js index f3242ce4..5c9155c3 100644 --- a/src/widgets/components.js +++ b/src/widgets/components.js @@ -8,6 +8,7 @@ const components = { azuredevops: dynamic(() => import("./azuredevops/component")), bazarr: dynamic(() => import("./bazarr/component")), caddy: dynamic(() => import("./caddy/component")), + calibreweb: dynamic(() => import("./calibreweb/component")), changedetectionio: dynamic(() => import("./changedetectionio/component")), channelsdvrserver: dynamic(() => import("./channelsdvrserver/component")), cloudflared: dynamic(() => import("./cloudflared/component")), diff --git a/src/widgets/widgets.js b/src/widgets/widgets.js index 1b7d9f1b..3af06123 100644 --- a/src/widgets/widgets.js +++ b/src/widgets/widgets.js @@ -5,6 +5,7 @@ import autobrr from "./autobrr/widget"; import azuredevops from "./azuredevops/widget"; import bazarr from "./bazarr/widget"; import caddy from "./caddy/widget"; +import calibreweb from "./calibreweb/widget"; import changedetectionio from "./changedetectionio/widget"; import channelsdvrserver from "./channelsdvrserver/widget"; import cloudflared from "./cloudflared/widget"; @@ -101,6 +102,7 @@ const widgets = { azuredevops, bazarr, caddy, + calibreweb, changedetectionio, channelsdvrserver, cloudflared, From 25672a01471dd9173446bf5948ac364e20a3d371 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:04 +0000 Subject: [PATCH 04/86] Translated using Weblate (German) Currently translated at 88.5% (457 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/de/ --- public/locales/de/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/de/common.json b/public/locales/de/common.json index db017c20..e5ac798c 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 6744ef49c93ef2eca0eb79a5df3c1711fbca47f6 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:04 +0000 Subject: [PATCH 05/86] Translated using Weblate (Spanish) Currently translated at 99.4% (513 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/ --- public/locales/es/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/es/common.json b/public/locales/es/common.json index 904aba10..59e9afab 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -706,5 +706,10 @@ "users": "Usuarios", "categories": "Categorías", "tags": "Etiquetas" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From b07fd98fc67d4e16b1445d4a33d715ae4dc99163 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:05 +0000 Subject: [PATCH 06/86] Translated using Weblate (French) Currently translated at 99.4% (513 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/ --- public/locales/fr/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index 64512796..678e2a7f 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -706,5 +706,10 @@ "users": "Utilisateurs", "categories": "Catégories", "tags": "Étiquettes" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 56bd321f03df31c0a89351f74f818d6e20a51546 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:05 +0000 Subject: [PATCH 07/86] Translated using Weblate (Portuguese) Currently translated at 80.4% (415 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt/ --- public/locales/pt/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index ac143fda..a385bc1b 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -715,5 +715,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 375011bbea245b6cb485e56be20f92596dc2b4f2 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:59 +0000 Subject: [PATCH 08/86] Translated using Weblate (Russian) Currently translated at 81.9% (423 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ru/ --- public/locales/ru/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json index 579f748f..e216066f 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 3d2905b63cdaafd6f2af46f0125befd8a0e2ddb0 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:59 +0000 Subject: [PATCH 09/86] Translated using Weblate (Chinese (Simplified)) Currently translated at 86.0% (444 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hans/ --- public/locales/zh-CN/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/zh-CN/common.json b/public/locales/zh-CN/common.json index d820aa96..26764899 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 36b95e68cef4947faed9d934021c8e0a08106dec Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:56 +0000 Subject: [PATCH 10/86] Translated using Weblate (Italian) Currently translated at 91.0% (470 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/it/ --- public/locales/it/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/it/common.json b/public/locales/it/common.json index 27a93aaf..828ce902 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 96e887fa25079fc4af8ab7e867bd67aa21f871af Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:00 +0000 Subject: [PATCH 11/86] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegian?= =?UTF-8?q?=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 15.5% (80 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nb_NO/ --- public/locales/nb-NO/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/nb-NO/common.json b/public/locales/nb-NO/common.json index 6b75aa23..418c8d31 100644 --- a/public/locales/nb-NO/common.json +++ b/public/locales/nb-NO/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 0913ef74c299a32441d977fe7ecb15769f7382eb Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:07 +0000 Subject: [PATCH 12/86] Translated using Weblate (Vietnamese) Currently translated at 8.5% (44 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/vi/ --- public/locales/vi/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json index c3d393d0..65f7fd69 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From a201e0fb7f8f671c6e19ef717fe62e89d57250b3 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:00 +0000 Subject: [PATCH 13/86] Translated using Weblate (Dutch) Currently translated at 46.7% (241 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nl/ --- public/locales/nl/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json index 9ce33db9..c065ba52 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 9a7a2f25f2e2706164357105b82451e7f7053598 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:02 +0000 Subject: [PATCH 14/86] Translated using Weblate (Chinese (Traditional)) Currently translated at 96.7% (499 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hant/ --- public/locales/zh-Hant/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json index c8ce9caf..36b9db51 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 1cb0012a5ad45c5fea5c8b99aad979dd2d01aa0a Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:58 +0000 Subject: [PATCH 15/86] Translated using Weblate (Catalan) Currently translated at 50.3% (260 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ca/ --- public/locales/ca/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json index 525e533d..9dd192dc 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From aa319226815bfff4344fc3074b0949813bbea313 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:00 +0000 Subject: [PATCH 16/86] Translated using Weblate (Polish) Currently translated at 72.4% (374 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pl/ --- public/locales/pl/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json index 52d04e0f..fdac7457 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 6410fcbaa237a0f8c6732de51866653b8749ea86 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:59 +0000 Subject: [PATCH 17/86] Translated using Weblate (Swedish) Currently translated at 25.5% (132 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sv/ --- public/locales/sv/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json index 0a86dca6..2a65ad77 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From a650f7689daeedb7b376a85edeed17efa6255d50 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:01 +0000 Subject: [PATCH 18/86] Translated using Weblate (Croatian) Currently translated at 91.0% (470 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hr/ --- public/locales/hr/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json index 5b0f7e4f..7b781188 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 4906d21c8449b3c58c02d5b45991413bb00e6c1c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:03 +0000 Subject: [PATCH 19/86] Translated using Weblate (Hungarian) Currently translated at 91.2% (471 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hu/ --- public/locales/hu/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json index a2cff3ab..cfd9c1d7 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From c405cfe57413c2c303fd71cebc1f7acc8c66502a Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:02 +0000 Subject: [PATCH 20/86] Translated using Weblate (Hebrew) Currently translated at 19.3% (100 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/he/ --- public/locales/he/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/he/common.json b/public/locales/he/common.json index 4690d1bc..ca98ff62 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 3ee96372fd5ac01f02176d8e3d9c5e284682593f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:01 +0000 Subject: [PATCH 21/86] Translated using Weblate (Romanian) Currently translated at 29.0% (150 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ro/ --- public/locales/ro/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json index a52232e8..c34161a1 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 702b8683c0a1c231fcece05b95fbb1d9146581f2 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:57 +0000 Subject: [PATCH 22/86] Translated using Weblate (Portuguese (Brazil)) Currently translated at 89.3% (461 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt_BR/ --- public/locales/pt-BR/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/pt-BR/common.json b/public/locales/pt-BR/common.json index 1e188fda..46975a2b 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From b1e8bbfb5682022407375689689947f0f7d89335 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:07 +0000 Subject: [PATCH 23/86] Translated using Weblate (Yue (Traditional)) Currently translated at 22.6% (117 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/yue_Hant/ --- public/locales/yue/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json index ed609cff..5848cb18 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 727a4f41f11ad9e189f7ceecbcc0073dec248620 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:06 +0000 Subject: [PATCH 24/86] Translated using Weblate (Finnish) Currently translated at 34.3% (177 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fi/ --- public/locales/fi/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json index 050db077..2f182cdd 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 24ed90f3a6fc8cffe41dedb8f8dd3dd6577ca309 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:07 +0000 Subject: [PATCH 25/86] Translated using Weblate (Telugu) Currently translated at 41.6% (215 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/te/ --- public/locales/te/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/te/common.json b/public/locales/te/common.json index 4212b34d..112d5e11 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From f93d66dc44481cde418588587d23abe347bff615 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:57 +0000 Subject: [PATCH 26/86] Translated using Weblate (Bulgarian) Currently translated at 8.9% (46 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/bg/ --- public/locales/bg/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json index 5a6ecc71..8d0c898c 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From de064fd88316d8e1ab105dadec3304a5d63af277 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:58 +0000 Subject: [PATCH 27/86] Translated using Weblate (Turkish) Currently translated at 76.1% (393 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/tr/ --- public/locales/tr/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json index ac88b616..0c89fb4e 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 0065311f33a3a2c9fca35690a0e71dc4604e84d7 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:02 +0000 Subject: [PATCH 28/86] Translated using Weblate (Serbian) Currently translated at 1.7% (9 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sr/ --- public/locales/sr/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json index 32562c75..4aecf2c8 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 861f726079c0f773b630694f87d3818a95eb71bd Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:02 +0000 Subject: [PATCH 29/86] Translated using Weblate (Arabic) Currently translated at 50.7% (262 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ar/ --- public/locales/ar/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json index 088ae2f0..9817598c 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 8229d28c41c71d3d35334dd1171b6ed8eec35d1d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:56 +0000 Subject: [PATCH 30/86] Translated using Weblate (Czech) Currently translated at 86.0% (444 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/cs/ --- public/locales/cs/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index 1d48f636..f6029798 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From c4cbd870d13fc1c2a3524bccea6e7db3bc4bd3f6 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:54 +0000 Subject: [PATCH 31/86] Translated using Weblate (Danish) Currently translated at 38.1% (197 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/da/ --- public/locales/da/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/da/common.json b/public/locales/da/common.json index 9c6533f0..418bd234 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From d54230745b089fea5970b9016bd937721c538dc6 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:55 +0000 Subject: [PATCH 32/86] Translated using Weblate (Malay) Currently translated at 48.6% (251 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ms/ --- public/locales/ms/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json index c1616367..10618cf2 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 0dc473909e830d280f8845e504589a08c342b865 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:55 +0000 Subject: [PATCH 33/86] Translated using Weblate (Hindi) Currently translated at 1.7% (9 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hi/ --- public/locales/hi/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json index 99295197..e6b1dbc2 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 7d66b5c8957e3af5511ae847a9767975b24b6b7b Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:56 +0000 Subject: [PATCH 34/86] Translated using Weblate (Esperanto) Currently translated at 28.1% (145 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/eo/ --- public/locales/eo/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json index aebc9dc2..e54acda4 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From f25f834809b912f06f5d42c04da7ebd561d1a399 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:01 +0000 Subject: [PATCH 35/86] Translated using Weblate (Ukrainian) Currently translated at 97.2% (502 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/uk/ --- public/locales/uk/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json index a7804865..ad407e9f 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From ea1435cd87506324b588854b3802d3779055fcea Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:55 +0000 Subject: [PATCH 36/86] Translated using Weblate (Japanese) Currently translated at 74.6% (385 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ja/ --- public/locales/ja/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json index e8c607d7..96c87a6e 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 491bf0f3a920c200b80c79fcbe01473fa2b535d9 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:58 +0000 Subject: [PATCH 37/86] Translated using Weblate (Latvian) Currently translated at 22.8% (118 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/lv/ --- public/locales/lv/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/lv/common.json b/public/locales/lv/common.json index a968d4fa..c8b8f55f 100644 --- a/public/locales/lv/common.json +++ b/public/locales/lv/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 78622d368e21cbb652c21429066fab5869a458a1 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:53 +0000 Subject: [PATCH 38/86] Translated using Weblate (Thai) Currently translated at 9.1% (47 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/th/ --- public/locales/th/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/th/common.json b/public/locales/th/common.json index 57a9ae62..e3fb2527 100644 --- a/public/locales/th/common.json +++ b/public/locales/th/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 6bc9c4d86120b0cf32db7f5ae8a65503a3b6bbb8 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:03 +0000 Subject: [PATCH 39/86] Translated using Weblate (Slovak) Currently translated at 1.9% (10 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sk/ --- public/locales/sk/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/sk/common.json b/public/locales/sk/common.json index b46615b5..d4052ffe 100644 --- a/public/locales/sk/common.json +++ b/public/locales/sk/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From b56de26a2f7d7945865f25950fdf1f2f6d9b1a7b Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:03 +0000 Subject: [PATCH 40/86] Translated using Weblate (Korean) Currently translated at 33.5% (173 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ko/ --- public/locales/ko/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/ko/common.json b/public/locales/ko/common.json index 0c2b6420..ede8233c 100644 --- a/public/locales/ko/common.json +++ b/public/locales/ko/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From b0338693455a30bd0c4ff9bf32ea4862e9ba6690 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:54 +0000 Subject: [PATCH 41/86] Translated using Weblate (Greek) Currently translated at 34.8% (180 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/el/ --- public/locales/el/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/el/common.json b/public/locales/el/common.json index ba94bf9e..2b6b86d0 100644 --- a/public/locales/el/common.json +++ b/public/locales/el/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 2e4808db63ed42515c9a09fc4ac4f5eb3d005782 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:56 +0000 Subject: [PATCH 42/86] Translated using Weblate (Slovenian) Currently translated at 91.2% (471 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sl/ --- public/locales/sl/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/sl/common.json b/public/locales/sl/common.json index 258852c1..fe38968e 100644 --- a/public/locales/sl/common.json +++ b/public/locales/sl/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From deaacc3b05bca28ebae9f5c4374f30b4c0ea8f4b Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:23:54 +0000 Subject: [PATCH 43/86] Translated using Weblate (Indonesian) Currently translated at 4.6% (24 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/id/ --- public/locales/id/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/id/common.json b/public/locales/id/common.json index 26c4e251..80d254af 100644 --- a/public/locales/id/common.json +++ b/public/locales/id/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series" } } From 7bd433922f775a484ac48bc201afaebdae673e5d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:24:08 +0000 Subject: [PATCH 44/86] Translated using Weblate (Basque) Currently translated at 6.3% (33 of 516 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/eu/ --- public/locales/eu/common.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/public/locales/eu/common.json b/public/locales/eu/common.json index 4fa20c75..0108cc1c 100644 --- a/public/locales/eu/common.json +++ b/public/locales/eu/common.json @@ -706,5 +706,10 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "calibreweb": { + "authors": "Authors", + "books": "Books", + "series": "Series" } } From a6dac34b2432ec433fe928c6d0329b48985d995f Mon Sep 17 00:00:00 2001 From: AtsumeruDev <119543708+AtsumeruDev@users.noreply.github.com> Date: Mon, 21 Aug 2023 19:30:22 +0300 Subject: [PATCH 45/86] Add widget for Atsumeru self-hosted media server (#1839) * Add widget for Atsumeru self-hosted media server * Revert localization * Update widget.js --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- public/locales/en/common.json | 6 +++++ src/widgets/atsumeru/component.jsx | 36 ++++++++++++++++++++++++++++++ src/widgets/atsumeru/widget.js | 14 ++++++++++++ src/widgets/components.js | 1 + src/widgets/widgets.js | 2 ++ 5 files changed, 59 insertions(+) create mode 100644 src/widgets/atsumeru/component.jsx create mode 100644 src/widgets/atsumeru/widget.js diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 2d86809f..373a9bea 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -579,6 +579,12 @@ "incident": "Incident", "m": "m" }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, "komga": { "libraries": "Libraries", "series": "Series", diff --git a/src/widgets/atsumeru/component.jsx b/src/widgets/atsumeru/component.jsx new file mode 100644 index 00000000..85e78182 --- /dev/null +++ b/src/widgets/atsumeru/component.jsx @@ -0,0 +1,36 @@ +import { useTranslation } from "next-i18next"; + +import Container from "components/services/widget/container"; +import Block from "components/services/widget/block"; +import useWidgetAPI from "utils/proxy/use-widget-api"; + +export default function Component({ service }) { + const { t } = useTranslation(); + const { widget } = service; + + const { data: infoData, error: infoError } = useWidgetAPI(widget, "info"); + + if (infoError) { + return ; + } + + if (!infoData) { + return ( + + + + + + + ); + } + + return ( + + + + + + + ); +} diff --git a/src/widgets/atsumeru/widget.js b/src/widgets/atsumeru/widget.js new file mode 100644 index 00000000..3934f6f4 --- /dev/null +++ b/src/widgets/atsumeru/widget.js @@ -0,0 +1,14 @@ +import genericProxyHandler from "utils/proxy/handlers/generic"; + +const widget = { + api: "{url}/api/server/{endpoint}", + proxyHandler: genericProxyHandler, + + mappings: { + info: { + endpoint: "info" + } + }, +}; + +export default widget; \ No newline at end of file diff --git a/src/widgets/components.js b/src/widgets/components.js index 5c9155c3..4662a8c3 100644 --- a/src/widgets/components.js +++ b/src/widgets/components.js @@ -2,6 +2,7 @@ import dynamic from "next/dynamic"; const components = { adguard: dynamic(() => import("./adguard/component")), + atsumeru: dynamic(() => import("./atsumeru/component")), audiobookshelf: dynamic(() => import("./audiobookshelf/component")), authentik: dynamic(() => import("./authentik/component")), autobrr: dynamic(() => import("./autobrr/component")), diff --git a/src/widgets/widgets.js b/src/widgets/widgets.js index 3af06123..f17a4767 100644 --- a/src/widgets/widgets.js +++ b/src/widgets/widgets.js @@ -1,4 +1,5 @@ import adguard from "./adguard/widget"; +import atsumeru from "./atsumeru/widget"; import audiobookshelf from "./audiobookshelf/widget"; import authentik from "./authentik/widget"; import autobrr from "./autobrr/widget"; @@ -96,6 +97,7 @@ import urbackup from "./urbackup/widget"; const widgets = { adguard, + atsumeru, audiobookshelf, authentik, autobrr, From da3541cafe5974fc002c360de77c07a1e24c9b0d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:27 +0000 Subject: [PATCH 46/86] Translated using Weblate (German) Currently translated at 87.8% (457 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/de/ --- public/locales/de/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/de/common.json b/public/locales/de/common.json index e5ac798c..8646b2dd 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From f7f1aa88b1ebb9fe3140ed4eab3fe94433b0328b Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:28 +0000 Subject: [PATCH 47/86] Translated using Weblate (Spanish) Currently translated at 98.6% (513 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/ --- public/locales/es/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/es/common.json b/public/locales/es/common.json index 59e9afab..027fb5ea 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From bc9e331ac58c4b939b08021f8bca6e3f6a476457 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:28 +0000 Subject: [PATCH 48/86] Translated using Weblate (French) Currently translated at 98.6% (513 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/ --- public/locales/fr/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index 678e2a7f..9405b390 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 1e27da0024255696502d207e1b795416349c6612 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:29 +0000 Subject: [PATCH 49/86] Translated using Weblate (Portuguese) Currently translated at 79.8% (415 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt/ --- public/locales/pt/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index a385bc1b..790290b6 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -720,5 +720,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From f463f99cbe5dbb78cdb43c59908e74383b5658e5 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:23 +0000 Subject: [PATCH 50/86] Translated using Weblate (Russian) Currently translated at 81.3% (423 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ru/ --- public/locales/ru/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json index e216066f..d1415929 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 59c22820c076e5e609a18375c617f28d7c0cab7b Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:16 +0000 Subject: [PATCH 51/86] Translated using Weblate (Chinese (Simplified)) Currently translated at 85.3% (444 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hans/ --- public/locales/zh-CN/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/zh-CN/common.json b/public/locales/zh-CN/common.json index 26764899..70c4c93f 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 04ac922cfedaf20717cf676ea25ba4f33fe1f725 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:20 +0000 Subject: [PATCH 52/86] Translated using Weblate (Italian) Currently translated at 90.3% (470 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/it/ --- public/locales/it/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/it/common.json b/public/locales/it/common.json index 828ce902..85e6d192 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 4e230fb76a7ffc860feff65bad808bed9c32437e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:21 +0000 Subject: [PATCH 53/86] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegian?= =?UTF-8?q?=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 15.3% (80 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nb_NO/ --- public/locales/nb-NO/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/nb-NO/common.json b/public/locales/nb-NO/common.json index 418c8d31..46f8f048 100644 --- a/public/locales/nb-NO/common.json +++ b/public/locales/nb-NO/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 33d4b4d43dbc4d9702a3d8a7f293d7d8b67c6c7b Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:30 +0000 Subject: [PATCH 54/86] Translated using Weblate (Vietnamese) Currently translated at 8.4% (44 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/vi/ --- public/locales/vi/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json index 65f7fd69..862cd26c 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 37b6aba1d48834599fee6c50185df2d7fdb4e42e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:22 +0000 Subject: [PATCH 55/86] Translated using Weblate (Dutch) Currently translated at 46.3% (241 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nl/ --- public/locales/nl/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json index c065ba52..7a2b502a 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 83e27aa41a9e1f79a22d992d8b09cb9b063cc91d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:24 +0000 Subject: [PATCH 56/86] Translated using Weblate (Chinese (Traditional)) Currently translated at 95.9% (499 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hant/ --- public/locales/zh-Hant/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json index 36b9db51..17c217fd 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 69e187f574a7b1e2351cb677dd6bd5cadcdd7222 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:19 +0000 Subject: [PATCH 57/86] Translated using Weblate (Catalan) Currently translated at 50.0% (260 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ca/ --- public/locales/ca/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json index 9dd192dc..64f4d76d 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 67d64264bc82b2e6f826d05b9e8ef60fea9bfc44 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:22 +0000 Subject: [PATCH 58/86] Translated using Weblate (Polish) Currently translated at 71.9% (374 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pl/ --- public/locales/pl/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json index fdac7457..cf21a545 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 3fd83f9f2d033dbd9021d9f8f18f66527d7fa90f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:24 +0000 Subject: [PATCH 59/86] Translated using Weblate (Swedish) Currently translated at 25.3% (132 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sv/ --- public/locales/sv/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json index 2a65ad77..4db3f9f8 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From ebf036c24177530d3c2c4987ef4db094cf0ffe5d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:24 +0000 Subject: [PATCH 60/86] Translated using Weblate (Croatian) Currently translated at 90.3% (470 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hr/ --- public/locales/hr/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json index 7b781188..9fd3d809 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 0d1a7f1717702ebb0517fdf60b3c35ca51e8a67c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:26 +0000 Subject: [PATCH 61/86] Translated using Weblate (Hungarian) Currently translated at 90.5% (471 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hu/ --- public/locales/hu/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json index cfd9c1d7..1edd712e 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From a755a0ae838ac9dc446de1344977bef44c24eb23 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:26 +0000 Subject: [PATCH 62/86] Translated using Weblate (Hebrew) Currently translated at 19.2% (100 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/he/ --- public/locales/he/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/he/common.json b/public/locales/he/common.json index ca98ff62..199c5530 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From f27f7b3fa6fb488d62b6b33b765af6676f8d6854 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:23 +0000 Subject: [PATCH 63/86] Translated using Weblate (Romanian) Currently translated at 28.8% (150 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ro/ --- public/locales/ro/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json index c34161a1..99a94592 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 529927bc8bda3a53bb177298e7d18e681db5789f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:22 +0000 Subject: [PATCH 64/86] Translated using Weblate (Portuguese (Brazil)) Currently translated at 88.6% (461 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt_BR/ --- public/locales/pt-BR/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/pt-BR/common.json b/public/locales/pt-BR/common.json index 46975a2b..27e339a8 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 8907a9cecf20f5c6c749dbc60e58a99dd833e80d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:30 +0000 Subject: [PATCH 65/86] Translated using Weblate (Yue (Traditional)) Currently translated at 22.5% (117 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/yue_Hant/ --- public/locales/yue/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json index 5848cb18..a91d652b 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From c7c600b47dd2eb7ee99413cc76e5ecf38cd53492 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:29 +0000 Subject: [PATCH 66/86] Translated using Weblate (Finnish) Currently translated at 34.0% (177 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fi/ --- public/locales/fi/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json index 2f182cdd..6f098f7f 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories", + "series": "Series" } } From 5d81b56189c9d52867b83e5e148e02ee2bcd6df1 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:29 +0000 Subject: [PATCH 67/86] Translated using Weblate (Telugu) Currently translated at 41.3% (215 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/te/ --- public/locales/te/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/te/common.json b/public/locales/te/common.json index 112d5e11..4a76f97f 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From b5ae79e1d3c0c31ed66f873d68b2e8206e81cd40 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:18 +0000 Subject: [PATCH 68/86] Translated using Weblate (Bulgarian) Currently translated at 8.8% (46 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/bg/ --- public/locales/bg/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json index 8d0c898c..120ee063 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 651243cd9fe62bb4c9c1e9a5cd5550ccac2bd3d9 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:17 +0000 Subject: [PATCH 69/86] Translated using Weblate (Turkish) Currently translated at 75.5% (393 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/tr/ --- public/locales/tr/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json index 0c89fb4e..3496426e 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 749d039896ee9ec1e5d32122b0a6a983c789c896 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:25 +0000 Subject: [PATCH 70/86] Translated using Weblate (Serbian) Currently translated at 1.7% (9 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sr/ --- public/locales/sr/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json index 4aecf2c8..0bcd08dd 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From a7d73828e686e35af6cfc9b3052435ca4e9d24d3 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:25 +0000 Subject: [PATCH 71/86] Translated using Weblate (Arabic) Currently translated at 50.3% (262 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ar/ --- public/locales/ar/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json index 9817598c..8370883a 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories", + "series": "Series" } } From 15d30abc9359687ed23689069c155e16c27cfc3e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:15 +0000 Subject: [PATCH 72/86] Translated using Weblate (Czech) Currently translated at 85.3% (444 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/cs/ --- public/locales/cs/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index f6029798..b591dde2 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 63b59c3964a3d1c8c81e9d6faa0c9141581d7111 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:19 +0000 Subject: [PATCH 73/86] Translated using Weblate (Danish) Currently translated at 37.8% (197 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/da/ --- public/locales/da/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/da/common.json b/public/locales/da/common.json index 418bd234..f71c12bd 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 5b5fc60a0cb7d0191f9e95b07c06a2e1f4ac223f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:21 +0000 Subject: [PATCH 74/86] Translated using Weblate (Malay) Currently translated at 48.2% (251 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ms/ --- public/locales/ms/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json index 10618cf2..38c5fde3 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 9abdcc56a017f9b4180fd00b103132ccfe623f9f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:20 +0000 Subject: [PATCH 75/86] Translated using Weblate (Hindi) Currently translated at 1.7% (9 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hi/ --- public/locales/hi/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json index e6b1dbc2..98f3608a 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "chapters": "Chapters", + "categories": "Categories", + "series": "Series", + "archives": "Archives" } } From 4dc84201a00ca92bc4b112ec6573ffad62f284ab Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:16 +0000 Subject: [PATCH 76/86] Translated using Weblate (Esperanto) Currently translated at 27.8% (145 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/eo/ --- public/locales/eo/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json index e54acda4..efec21cc 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 7cec116b11a46a2e20f97772b0ff04e1e0f00cc5 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:17 +0000 Subject: [PATCH 77/86] Translated using Weblate (Ukrainian) Currently translated at 96.5% (502 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/uk/ --- public/locales/uk/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json index ad407e9f..bc57de81 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From ff81233772f2ed36f77c72fe26d3281394d07f5e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:20 +0000 Subject: [PATCH 78/86] Translated using Weblate (Japanese) Currently translated at 74.0% (385 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ja/ --- public/locales/ja/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json index 96c87a6e..3bcacf61 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From a11df88d8a9a72e4de1c534534bd22678a826632 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:18 +0000 Subject: [PATCH 79/86] Translated using Weblate (Latvian) Currently translated at 22.6% (118 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/lv/ --- public/locales/lv/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/lv/common.json b/public/locales/lv/common.json index c8b8f55f..21bc0bff 100644 --- a/public/locales/lv/common.json +++ b/public/locales/lv/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "chapters": "Chapters", + "series": "Series", + "archives": "Archives", + "categories": "Categories" } } From 9f57f4581625c469a4d42e3c949cc7a0db60c65f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:14 +0000 Subject: [PATCH 80/86] Translated using Weblate (Thai) Currently translated at 9.0% (47 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/th/ --- public/locales/th/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/th/common.json b/public/locales/th/common.json index e3fb2527..f6c2a79a 100644 --- a/public/locales/th/common.json +++ b/public/locales/th/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 8cc19daf24e9ccefc56c7f66d32798cd9af27119 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:26 +0000 Subject: [PATCH 81/86] Translated using Weblate (Slovak) Currently translated at 1.9% (10 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sk/ --- public/locales/sk/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/sk/common.json b/public/locales/sk/common.json index d4052ffe..255ef944 100644 --- a/public/locales/sk/common.json +++ b/public/locales/sk/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From f8586a9df6785ad11a6038933be58fa89f3803c1 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:27 +0000 Subject: [PATCH 82/86] Translated using Weblate (Korean) Currently translated at 33.2% (173 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ko/ --- public/locales/ko/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/ko/common.json b/public/locales/ko/common.json index ede8233c..331e13c1 100644 --- a/public/locales/ko/common.json +++ b/public/locales/ko/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "chapters": "Chapters", + "categories": "Categories", + "series": "Series", + "archives": "Archives" } } From c0af877e912e936eac16bc0f1c6fa1b132b370a1 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:14 +0000 Subject: [PATCH 83/86] Translated using Weblate (Greek) Currently translated at 34.6% (180 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/el/ --- public/locales/el/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/el/common.json b/public/locales/el/common.json index 2b6b86d0..1599d066 100644 --- a/public/locales/el/common.json +++ b/public/locales/el/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From d00d9ffee30cd98d95a73ef4da3018bd1b0cba56 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:16 +0000 Subject: [PATCH 84/86] Translated using Weblate (Slovenian) Currently translated at 90.5% (471 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sl/ --- public/locales/sl/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/sl/common.json b/public/locales/sl/common.json index fe38968e..507259fd 100644 --- a/public/locales/sl/common.json +++ b/public/locales/sl/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From 4a80b32bb6f9de88719a98860e38c3cc4d1766a1 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:15 +0000 Subject: [PATCH 85/86] Translated using Weblate (Indonesian) Currently translated at 4.6% (24 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/id/ --- public/locales/id/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/id/common.json b/public/locales/id/common.json index 80d254af..957d13f1 100644 --- a/public/locales/id/common.json +++ b/public/locales/id/common.json @@ -711,5 +711,11 @@ "books": "Books", "authors": "Authors", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } } From fb0497270135abcf0c0ad5954d0e1b5e3903439d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 21 Aug 2023 16:31:31 +0000 Subject: [PATCH 86/86] Translated using Weblate (Basque) Currently translated at 6.3% (33 of 520 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/eu/ --- public/locales/eu/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/eu/common.json b/public/locales/eu/common.json index 0108cc1c..1c647c19 100644 --- a/public/locales/eu/common.json +++ b/public/locales/eu/common.json @@ -711,5 +711,11 @@ "authors": "Authors", "books": "Books", "series": "Series" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" } }