From 58e8109856754ca05672f86a933aabe0c43d2e6b Mon Sep 17 00:00:00 2001 From: KillahBee Date: Fri, 3 Feb 2023 15:51:52 -0500 Subject: [PATCH 01/74] adding working mylar --- public/locales/en/common.json | 5 +++++ src/widgets/components.js | 1 + src/widgets/mylar/component.jsx | 40 +++++++++++++++++++++++++++++++++ src/widgets/mylar/widget.js | 20 +++++++++++++++++ src/widgets/widgets.js | 2 ++ 5 files changed, 68 insertions(+) create mode 100644 src/widgets/mylar/component.jsx create mode 100644 src/widgets/mylar/widget.js diff --git a/public/locales/en/common.json b/public/locales/en/common.json index f144182f..77912d46 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -454,5 +454,10 @@ "uptime": "Uptime", "incident": "Incident", "m": "m" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } \ No newline at end of file diff --git a/src/widgets/components.js b/src/widgets/components.js index 505807c4..11f7812b 100644 --- a/src/widgets/components.js +++ b/src/widgets/components.js @@ -27,6 +27,7 @@ const components = { miniflux: dynamic(() => import("./miniflux/component")), mikrotik: dynamic(() => import("./mikrotik/component")), moonraker: dynamic(() => import("./moonraker/component")), + mylar: dynamic(() => import("./mylar/component")), navidrome: dynamic(() => import("./navidrome/component")), nextdns: dynamic(() => import("./nextdns/component")), npm: dynamic(() => import("./npm/component")), diff --git a/src/widgets/mylar/component.jsx b/src/widgets/mylar/component.jsx new file mode 100644 index 00000000..e284c93f --- /dev/null +++ b/src/widgets/mylar/component.jsx @@ -0,0 +1,40 @@ +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: seriesData, error: seriesError } = useWidgetAPI(widget, "series"); + const { data: issuesData, error: issuesError } = useWidgetAPI(widget, "issues"); + const { data: wantedData, error: wantedError } = useWidgetAPI(widget, "wanted"); + + if (seriesError || issuesError || wantedError) { + const finalError = seriesError ?? issuesError ?? wantedError; + return ; + } + + if (!seriesData || !issuesData || !wantedData) { + return ( + + + + + + ); + } + + const totalIssues = issuesData.data.reduce((acc, series) => acc + series.totalIssues, 0); + + return ( + + + + + + ); +} \ No newline at end of file diff --git a/src/widgets/mylar/widget.js b/src/widgets/mylar/widget.js new file mode 100644 index 00000000..031d43d6 --- /dev/null +++ b/src/widgets/mylar/widget.js @@ -0,0 +1,20 @@ +import genericProxyHandler from "utils/proxy/handlers/generic"; + +const widget = { + api: "{url}/api?cmd={endpoint}&apikey={key}", + proxyHandler: genericProxyHandler, + + mappings: { + issues: { + endpoint: "getIndex" + }, + series: { + endpoint: "seriesjsonListing" + }, + wanted: { + endpoint: "getWanted" + }, + }, +}; + +export default widget; \ No newline at end of file diff --git a/src/widgets/widgets.js b/src/widgets/widgets.js index 7da77a0a..4abed3dd 100644 --- a/src/widgets/widgets.js +++ b/src/widgets/widgets.js @@ -21,6 +21,7 @@ import medusa from "./medusa/widget"; import miniflux from "./miniflux/widget"; import mikrotik from "./mikrotik/widget"; import moonraker from "./moonraker/widget"; +import mylar from "./mylar/widget"; import navidrome from "./navidrome/widget"; import nextdns from "./nextdns/widget"; import npm from "./npm/widget"; @@ -85,6 +86,7 @@ const widgets = { miniflux, mikrotik, moonraker, + mylar, navidrome, nextdns, npm, From ea6c4ab0c2fbb324ee4671fc0e45a21c4a266c90 Mon Sep 17 00:00:00 2001 From: ryanxu Date: Mon, 6 Feb 2023 04:50:16 +0000 Subject: [PATCH 02/74] Translated using Weblate (Chinese (Simplified)) Currently translated at 97.5% (312 of 320 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hans/ --- public/locales/zh-CN/common.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/locales/zh-CN/common.json b/public/locales/zh-CN/common.json index fb6d8766..2262e35a 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -204,7 +204,7 @@ "devices": "设备", "lan_devices": "局域网设备", "wlan_devices": "无线局域网设备", - "empty_data": "Subsystem status unknown" + "empty_data": "子系统状态未知" }, "plex": { "streams": "活动流", From cbc496c81f6e9a34270d1a2419eb1c98860c705f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:37 +0000 Subject: [PATCH 03/74] Translated using Weblate (German) Currently translated at 70.5% (228 of 323 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 f700d34c..6614f13a 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From e297caf516a471456e178b12361b204b30d7142c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:37 +0000 Subject: [PATCH 04/74] Translated using Weblate (Spanish) Currently translated at 99.0% (320 of 323 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 f1864972..f5036b79 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -451,5 +451,10 @@ "libraries": "Librerías", "series": "Series", "books": "Libros" + }, + "mylar": { + "issues": "Issues", + "series": "Series", + "wanted": "Wanted" } } From ecddc5e1c8ce95213747572d5924343352500b9f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:38 +0000 Subject: [PATCH 05/74] Translated using Weblate (French) Currently translated at 99.0% (320 of 323 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 b27e5e66..bc10244e 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -451,5 +451,10 @@ "libraries": "Librairies", "series": "Séries", "books": "Livres" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 8f58132da14a30edc0f956ad509f70619b4536c0 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:40 +0000 Subject: [PATCH 06/74] Translated using Weblate (Portuguese) Currently translated at 79.2% (256 of 323 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 a6337ee0..314f7d8a 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -460,5 +460,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 490e88a34a8a36507417cb937068062ea0392dbe Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:36 +0000 Subject: [PATCH 07/74] Translated using Weblate (Russian) Currently translated at 14.8% (48 of 323 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 ad81e13c..ab16df35 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 02becf7dcf30d0fa8ec7b601d8c003bbb7f7bb08 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:37 +0000 Subject: [PATCH 08/74] Translated using Weblate (Chinese (Simplified)) Currently translated at 96.5% (312 of 323 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 2262e35a..7dbeec4e 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 405b00fbd86a790466fadf391995a3854c0c13cb Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:39 +0000 Subject: [PATCH 09/74] Translated using Weblate (Italian) Currently translated at 89.1% (288 of 323 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 6e54b5ab..d2696da5 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 9a47a8517cef3da378b97226da3ab8b5683302ff Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:39 +0000 Subject: [PATCH 10/74] =?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 24.4% (79 of 323 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 20090c4a..b342d33f 100644 --- a/public/locales/nb-NO/common.json +++ b/public/locales/nb-NO/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 08b9b52f0990b6eed109c3759a9b768dce5ab083 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:41 +0000 Subject: [PATCH 11/74] Translated using Weblate (Vietnamese) Currently translated at 13.6% (44 of 323 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 b3f33f10..2a85e2f9 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From a15a264912c71aa5106cb5f7bd3d9b9ca0d9f019 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:39 +0000 Subject: [PATCH 12/74] Translated using Weblate (Dutch) Currently translated at 27.2% (88 of 323 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 5132e27e..2ae95687 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "wanted": "Wanted", + "series": "Series", + "issues": "Issues" } } From 63c1a8e4095ad79fc1312dc9ae90bcd1cd3f9ac5 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:41 +0000 Subject: [PATCH 13/74] Translated using Weblate (Chinese (Traditional)) Currently translated at 97.2% (314 of 323 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 708626d3..0af34857 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -451,5 +451,10 @@ "libraries": "文庫", "series": "叢刊", "books": "書刊" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From d737c5727893e9fc431505072d466948a7104c4c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:37 +0000 Subject: [PATCH 14/74] Translated using Weblate (Catalan) Currently translated at 79.8% (258 of 323 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 b85e5377..1b1a6d0a 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From e91efab94037e1007bd2a00e297d3600a3843c5e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:39 +0000 Subject: [PATCH 15/74] Translated using Weblate (Polish) Currently translated at 88.2% (285 of 323 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 5d287c8d..1ab2dcee 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 6f434bbedd4b8871d94d40f5b066dd2f61abb237 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:41 +0000 Subject: [PATCH 16/74] Translated using Weblate (Swedish) Currently translated at 40.8% (132 of 323 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 7e8ac3e6..7550ce8f 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 0b75d07a2bcc7fd51fa91832a6b5276209395891 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:38 +0000 Subject: [PATCH 17/74] Translated using Weblate (Croatian) Currently translated at 88.5% (286 of 323 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 6fbe0278..b3ac109c 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 397a340c47ed9cca1c47de63f5e6131392c0426a Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:38 +0000 Subject: [PATCH 18/74] Translated using Weblate (Hungarian) Currently translated at 33.4% (108 of 323 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 d1b8baf6..9ce0e601 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 5addfc6ea840018caf19d5feded6471a26d9f95d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:38 +0000 Subject: [PATCH 19/74] Translated using Weblate (Hebrew) Currently translated at 31.2% (101 of 323 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 3539c91d..d103599b 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From ff385b462a82ba5f12211b7ece632220f6b8ef2c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:40 +0000 Subject: [PATCH 20/74] Translated using Weblate (Romanian) Currently translated at 42.4% (137 of 323 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 225ae3ba..0bc46b31 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 5dd7094815d490fa75d36c6bb0096248ad2ed65e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:40 +0000 Subject: [PATCH 21/74] Translated using Weblate (Portuguese (Brazil)) Currently translated at 53.5% (173 of 323 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 e1a4f53b..e20636a4 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 9314ac4760da075e69d08806b3a7556a52a2deac Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:41 +0000 Subject: [PATCH 22/74] Translated using Weblate (Yue) Currently translated at 36.5% (118 of 323 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/yue/ --- 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 270b9706..b2c1fc03 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 4b9f3c1e151f154800739da8c2056c11613cad4a Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:42 +0000 Subject: [PATCH 23/74] Translated using Weblate (Finnish) Currently translated at 55.1% (178 of 323 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 d0ea0f45..0b99a1d0 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 5e917822c9b00fc4e7dc03e770c7f56f26c21f41 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:42 +0000 Subject: [PATCH 24/74] Translated using Weblate (Telugu) Currently translated at 67.1% (217 of 323 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 ef020175..4e24a647 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 701b97c1f81336e5c86fa06117dbba9eed595612 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:42 +0000 Subject: [PATCH 25/74] Translated using Weblate (Bulgarian) Currently translated at 14.2% (46 of 323 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 ce929cab..8b2cfb18 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 2acceff22e886f0995d2670cca159beb79fc0f31 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:43 +0000 Subject: [PATCH 26/74] Translated using Weblate (Turkish) Currently translated at 71.5% (231 of 323 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 c393e601..4714a1dc 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From b953c1089ac4b9f6cc575da6837b3fa1ba2bbdf6 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:43 +0000 Subject: [PATCH 27/74] Translated using Weblate (Serbian) Currently translated at 2.7% (9 of 323 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 e624b14b..7856cb08 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 9477dd1f3c1393964b2e019678e217e20d094ca3 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:43 +0000 Subject: [PATCH 28/74] Translated using Weblate (Arabic) Currently translated at 81.1% (262 of 323 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 7a4633a2..cf10048c 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From dec63583c8295aa0f40b339a1c20274e8f95547d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:43 +0000 Subject: [PATCH 29/74] Translated using Weblate (Czech) Currently translated at 69.6% (225 of 323 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 bf6bbed8..5972fd84 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 6987f96d1d2d4731af89c8116d29ef2ffb4ddec0 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:44 +0000 Subject: [PATCH 30/74] Translated using Weblate (Danish) Currently translated at 61.3% (198 of 323 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 af3cf514..66825ffb 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 91017fe71c01deadaf79cebf1d0812e20ab87c04 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:44 +0000 Subject: [PATCH 31/74] Translated using Weblate (Malay) Currently translated at 78.3% (253 of 323 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 4522de97..3b047f41 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From eaada4a406a91169cd2c8fe533452d150c7a9574 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:44 +0000 Subject: [PATCH 32/74] Translated using Weblate (Hindi) Currently translated at 2.7% (9 of 323 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 c7eb9ea9..4ba4ec65 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 876ddc830206510bdb750bc704a2d3c775122f5a Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:44 +0000 Subject: [PATCH 33/74] Translated using Weblate (Esperanto) Currently translated at 31.8% (103 of 323 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 215b5a7d..859df079 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 5aa88fcf062ef0d4e805ab681be2d696c673f366 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:45 +0000 Subject: [PATCH 34/74] Translated using Weblate (Ukrainian) Currently translated at 99.0% (320 of 323 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 f4761972..30f35fee 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -451,5 +451,10 @@ "libraries": "Бібліотеки", "series": "Серії", "books": "Книжки" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From be5f1dd8e101aa9a5559db14d4b9702bcfdf3bc0 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:45 +0000 Subject: [PATCH 35/74] Translated using Weblate (Japanese) Currently translated at 4.6% (15 of 323 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 fc1a1a26..16d362be 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From b96045eb8cf9f997f1d5668ee3a7b055674eea95 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 05:37:45 +0000 Subject: [PATCH 36/74] Translated using Weblate (Latvian) Currently translated at 36.8% (119 of 323 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 967dbc14..a9c360e8 100644 --- a/public/locales/lv/common.json +++ b/public/locales/lv/common.json @@ -451,5 +451,10 @@ "libraries": "Libraries", "series": "Series", "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" } } From 551f521edd361e25b68831be20d80c2e54935e22 Mon Sep 17 00:00:00 2001 From: geckoflume <6378002+geckoflume@users.noreply.github.com> Date: Sat, 4 Feb 2023 18:58:26 +0100 Subject: [PATCH 37/74] Add PhotoPrism widget --- public/locales/en/common.json | 6 ++++ src/widgets/components.js | 1 + src/widgets/photoprism/component.jsx | 37 +++++++++++++++++++++ src/widgets/photoprism/proxy.js | 48 ++++++++++++++++++++++++++++ src/widgets/photoprism/widget.js | 7 ++++ src/widgets/widgets.js | 2 ++ 6 files changed, 101 insertions(+) create mode 100644 src/widgets/photoprism/component.jsx create mode 100644 src/widgets/photoprism/proxy.js create mode 100644 src/widgets/photoprism/widget.js diff --git a/public/locales/en/common.json b/public/locales/en/common.json index a653b41f..2c0e1dfc 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -465,5 +465,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } \ No newline at end of file diff --git a/src/widgets/components.js b/src/widgets/components.js index d28a28c0..4948d002 100644 --- a/src/widgets/components.js +++ b/src/widgets/components.js @@ -39,6 +39,7 @@ const components = { opnsense: dynamic(() => import("./opnsense/component")), overseerr: dynamic(() => import("./overseerr/component")), paperlessngx: dynamic(() => import("./paperlessngx/component")), + photoprism: dynamic(() => import("./photoprism/component")), proxmoxbackupserver: dynamic(() => import("./proxmoxbackupserver/component")), pihole: dynamic(() => import("./pihole/component")), plex: dynamic(() => import("./plex/component")), diff --git a/src/widgets/photoprism/component.jsx b/src/widgets/photoprism/component.jsx new file mode 100644 index 00000000..1a679cd9 --- /dev/null +++ b/src/widgets/photoprism/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: photoprismData, error: photoprismError } = useWidgetAPI(widget); + + if (photoprismError) { + return ; + } + + if (!photoprismData) { + return ( + + + + + + + ); + } + + return ( + + + + + + + ); +} diff --git a/src/widgets/photoprism/proxy.js b/src/widgets/photoprism/proxy.js new file mode 100644 index 00000000..af133044 --- /dev/null +++ b/src/widgets/photoprism/proxy.js @@ -0,0 +1,48 @@ +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"; + +const logger = createLogger("photoprismProxyHandler"); + +export default async function photoprismProxyHandler(req, res) { + const { group, service, endpoint } = req.query; + + if (!group || !service) { + logger.debug("Invalid or missing service '%s' or group '%s'", service, group); + return res.status(400).json({ error: "Invalid proxy service type" }); + } + + const widget = await getServiceWidget(group, service); + + if (!widget) { + logger.debug("Invalid or missing widget for service '%s' in group '%s'", service, group); + return res.status(400).json({ error: "Invalid proxy service type" }); + } + + const url = new URL(formatApiCall("{url}/api/v1/session", { endpoint, ...widget })); + const params = { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: null + }; + + if (widget.username && widget.password) { + params.body = JSON.stringify({ + "username": widget.username, + "password": widget.password + }); + } + + let [status, contentType, data] = await httpProxy(url, params); + + if (status !== 200) { + logger.error("HTTP %d getting data from PhotoPrism. Data: %s", status, data); + return res.status(status).json({error: {message: `HTTP Error ${status}`, url, data}}); + } + + const json = JSON.parse(data.toString()) + + if (contentType) res.setHeader("Content-Type", contentType); + return res.status(200).send(json?.config?.count); +} diff --git a/src/widgets/photoprism/widget.js b/src/widgets/photoprism/widget.js new file mode 100644 index 00000000..eaddbcc9 --- /dev/null +++ b/src/widgets/photoprism/widget.js @@ -0,0 +1,7 @@ +import photoprismProxyHandler from "./proxy"; + +const widget = { + proxyHandler: photoprismProxyHandler, +}; + +export default widget; diff --git a/src/widgets/widgets.js b/src/widgets/widgets.js index 47b5e988..2e244331 100644 --- a/src/widgets/widgets.js +++ b/src/widgets/widgets.js @@ -33,6 +33,7 @@ import ombi from "./ombi/widget"; import opnsense from "./opnsense/widget"; import overseerr from "./overseerr/widget"; import paperlessngx from "./paperlessngx/widget"; +import photoprism from "./photoprism/widget"; import proxmoxbackupserver from "./proxmoxbackupserver/widget"; import pihole from "./pihole/widget"; import plex from "./plex/widget"; @@ -99,6 +100,7 @@ const widgets = { opnsense, overseerr, paperlessngx, + photoprism, proxmoxbackupserver, pihole, plex, From a226f9de1217ee94bfabad30c16609c7784ca5a8 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 5 Feb 2023 22:01:12 -0800 Subject: [PATCH 38/74] remove folders, unused vars --- src/widgets/photoprism/component.jsx | 2 +- src/widgets/photoprism/proxy.js | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/widgets/photoprism/component.jsx b/src/widgets/photoprism/component.jsx index 1a679cd9..ee489d35 100644 --- a/src/widgets/photoprism/component.jsx +++ b/src/widgets/photoprism/component.jsx @@ -28,7 +28,7 @@ export default function Component({ service }) { return ( - + diff --git a/src/widgets/photoprism/proxy.js b/src/widgets/photoprism/proxy.js index af133044..eba398dc 100644 --- a/src/widgets/photoprism/proxy.js +++ b/src/widgets/photoprism/proxy.js @@ -6,7 +6,7 @@ import createLogger from "utils/logger"; const logger = createLogger("photoprismProxyHandler"); export default async function photoprismProxyHandler(req, res) { - const { group, service, endpoint } = req.query; + const { group, service } = req.query; if (!group || !service) { logger.debug("Invalid or missing service '%s' or group '%s'", service, group); @@ -20,7 +20,7 @@ export default async function photoprismProxyHandler(req, res) { return res.status(400).json({ error: "Invalid proxy service type" }); } - const url = new URL(formatApiCall("{url}/api/v1/session", { endpoint, ...widget })); + const url = new URL(formatApiCall("{url}/api/v1/session", { ...widget })); const params = { method: "POST", headers: { "Content-Type": "application/json" }, @@ -37,7 +37,7 @@ export default async function photoprismProxyHandler(req, res) { let [status, contentType, data] = await httpProxy(url, params); if (status !== 200) { - logger.error("HTTP %d getting data from PhotoPrism. Data: %s", status, data); + logger.error("HTTP %d getting data from PhotoPrism. Data: %s", status, data); return res.status(status).json({error: {message: `HTTP Error ${status}`, url, data}}); } From 3bb18a746b3befb09c3dacb406c77297222c02a6 Mon Sep 17 00:00:00 2001 From: Nonoss117 Date: Mon, 6 Feb 2023 06:02:09 +0000 Subject: [PATCH 39/74] Translated using Weblate (French) Currently translated at 100.0% (323 of 323 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/ --- public/locales/fr/common.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index bc10244e..9215847c 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -453,8 +453,8 @@ "books": "Livres" }, "mylar": { - "series": "Series", + "series": "Séries", "issues": "Issues", - "wanted": "Wanted" + "wanted": "Demande" } } From bc2492c7731ab6957a8c350afe4ff9d55ec688be Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:53 +0000 Subject: [PATCH 40/74] Translated using Weblate (German) Currently translated at 69.7% (228 of 327 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 6614f13a..3ad21697 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 1830b7f2775543d3ceca59d512498e53f3e8433d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:54 +0000 Subject: [PATCH 41/74] Translated using Weblate (Spanish) Currently translated at 97.8% (320 of 327 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 f5036b79..a020c4b1 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -456,5 +456,11 @@ "issues": "Issues", "series": "Series", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 43c4effc4209bee92abf1581b1ee19532003eed8 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:54 +0000 Subject: [PATCH 42/74] Translated using Weblate (French) Currently translated at 98.7% (323 of 327 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 9215847c..172e4019 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -456,5 +456,11 @@ "series": "Séries", "issues": "Issues", "wanted": "Demande" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 3d6821a463bd750622566c75ec5c45efd9dfa424 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:57 +0000 Subject: [PATCH 43/74] Translated using Weblate (Portuguese) Currently translated at 78.2% (256 of 327 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 314f7d8a..bbd7a52d 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -465,5 +465,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 9f67e82817de231fdc6d4fb697fa56eea03511ee Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:52 +0000 Subject: [PATCH 44/74] Translated using Weblate (Russian) Currently translated at 14.6% (48 of 327 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 ab16df35..467e3697 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 7b2fb0279ad414263ab514caad2fc6f67aa84dca Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:53 +0000 Subject: [PATCH 45/74] Translated using Weblate (Chinese (Simplified)) Currently translated at 95.4% (312 of 327 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 7dbeec4e..a221c984 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 9f2348ad3907e8c3f563212416084f4a4258f473 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:55 +0000 Subject: [PATCH 46/74] Translated using Weblate (Italian) Currently translated at 88.0% (288 of 327 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 d2696da5..423d3807 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 093c523ae628760ef665fcdad3ef6d0f517167c6 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:56 +0000 Subject: [PATCH 47/74] =?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 24.1% (79 of 327 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 b342d33f..fceaa779 100644 --- a/public/locales/nb-NO/common.json +++ b/public/locales/nb-NO/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From ff1129ecd764ee12b9fc259df7abc4fa7ccf1a73 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:58 +0000 Subject: [PATCH 48/74] Translated using Weblate (Vietnamese) Currently translated at 13.4% (44 of 327 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 2a85e2f9..9044deab 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "photos": "Photos", + "videos": "Videos", + "people": "People", + "albums": "Albums" } } From 8ae54777f6a13196500a4509bcd9d1873153612b Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:56 +0000 Subject: [PATCH 49/74] Translated using Weblate (Dutch) Currently translated at 26.9% (88 of 327 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 2ae95687..0e2d31fb 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -456,5 +456,11 @@ "wanted": "Wanted", "series": "Series", "issues": "Issues" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 80834b6f30c2a08ee31a637898e52519dfb33a5f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:59 +0000 Subject: [PATCH 50/74] Translated using Weblate (Chinese (Traditional)) Currently translated at 96.0% (314 of 327 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 0af34857..b88f754d 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 098eec96e2de750ec51095675a0f75f05d742682 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:53 +0000 Subject: [PATCH 51/74] Translated using Weblate (Catalan) Currently translated at 78.8% (258 of 327 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 1b1a6d0a..a0315c2d 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 4dfb1a1c5e7c346afcb00c177f6cbcc0ed18c4ec Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:56 +0000 Subject: [PATCH 52/74] Translated using Weblate (Polish) Currently translated at 87.1% (285 of 327 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 1ab2dcee..13237fb7 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 292f7a64d82328e36dad9f26f588e75c01336351 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:58 +0000 Subject: [PATCH 53/74] Translated using Weblate (Swedish) Currently translated at 40.3% (132 of 327 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 7550ce8f..7dcfff55 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From cf54837d053b810bdad09614896be6bd094ae65e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:55 +0000 Subject: [PATCH 54/74] Translated using Weblate (Croatian) Currently translated at 87.4% (286 of 327 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 b3ac109c..b8274e88 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "videos": "Videos", + "albums": "Albums", + "photos": "Photos", + "people": "People" } } From 409e481b8cde2517b97592a301c9b1c66e8036ff Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:55 +0000 Subject: [PATCH 55/74] Translated using Weblate (Hungarian) Currently translated at 33.0% (108 of 327 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 9ce0e601..0fb1f273 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From d51fbc5f6d60b3a89fc6354cd9439f4598c14447 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:54 +0000 Subject: [PATCH 56/74] Translated using Weblate (Hebrew) Currently translated at 30.8% (101 of 327 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 d103599b..56bc65e8 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 4af9a611a308a673ce003d34421621995d298c2b Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:58 +0000 Subject: [PATCH 57/74] Translated using Weblate (Romanian) Currently translated at 41.8% (137 of 327 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 0bc46b31..d5a99b64 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 9f4965141d5f4fa910219bce200ee4afb2a3d426 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:57 +0000 Subject: [PATCH 58/74] Translated using Weblate (Portuguese (Brazil)) Currently translated at 52.9% (173 of 327 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 e20636a4..fc27cf7c 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "videos": "Videos", + "albums": "Albums", + "photos": "Photos", + "people": "People" } } From ba53edd1b7ad1984b94e6e6665dcf8e7aa61932b Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:12:59 +0000 Subject: [PATCH 59/74] Translated using Weblate (Yue) Currently translated at 36.0% (118 of 327 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/yue/ --- 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 b2c1fc03..9f035377 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 73cc4f9b5fdd134a5188ab2d7bc9c06087452d84 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:13:00 +0000 Subject: [PATCH 60/74] Translated using Weblate (Finnish) Currently translated at 54.4% (178 of 327 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 0b99a1d0..1e168b4a 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 14044aa64e8f24de9d7846f430ff7b28bcdee2b9 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:13:00 +0000 Subject: [PATCH 61/74] Translated using Weblate (Telugu) Currently translated at 66.3% (217 of 327 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 4e24a647..6049527d 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 19d329c53fd05a2d73cfdbacb66ab20d589b2099 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:13:00 +0000 Subject: [PATCH 62/74] Translated using Weblate (Bulgarian) Currently translated at 14.0% (46 of 327 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 8b2cfb18..1f8ee314 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 773b8ba7f4c4dbe8265b2416c2504468f35cbc80 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:13:01 +0000 Subject: [PATCH 63/74] Translated using Weblate (Turkish) Currently translated at 70.6% (231 of 327 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 4714a1dc..680ced37 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 1ef7cb90e82988860945f2fdde2631fe57c0fa2d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:13:01 +0000 Subject: [PATCH 64/74] Translated using Weblate (Serbian) Currently translated at 2.7% (9 of 327 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 7856cb08..80dec787 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 20a78af1f677a6dd842b76e7412f02174d0735dc Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:13:01 +0000 Subject: [PATCH 65/74] Translated using Weblate (Arabic) Currently translated at 80.1% (262 of 327 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 cf10048c..4547995f 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 1c4814f7bf9d4f3ada40ffa2f71686b5b0cdcb0e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:13:02 +0000 Subject: [PATCH 66/74] Translated using Weblate (Czech) Currently translated at 68.8% (225 of 327 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 5972fd84..00d37dd5 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 7c31c891a5ad19a39547f1574f37f84602b0524c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:13:02 +0000 Subject: [PATCH 67/74] Translated using Weblate (Danish) Currently translated at 60.5% (198 of 327 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 66825ffb..e521791b 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From a035ff2181ee227839313973d7ef0d5be8c3474c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:13:02 +0000 Subject: [PATCH 68/74] Translated using Weblate (Malay) Currently translated at 77.3% (253 of 327 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 3b047f41..ed5113dc 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 120566e22a35515a935d64def5f3bc972bf9336a Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:13:03 +0000 Subject: [PATCH 69/74] Translated using Weblate (Hindi) Currently translated at 2.7% (9 of 327 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 4ba4ec65..a1731ffb 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 2f2efb224ffd9070a08ec9261b9d7e6872dce53f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:13:03 +0000 Subject: [PATCH 70/74] Translated using Weblate (Esperanto) Currently translated at 31.4% (103 of 327 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 859df079..5b7b4c41 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 2da96f86101621ad20e75d19f771e52006e6471f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:13:03 +0000 Subject: [PATCH 71/74] Translated using Weblate (Ukrainian) Currently translated at 97.8% (320 of 327 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 30f35fee..be2aada0 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 3f0dcaff68a8962d0ca11d614f68582f45b98e3d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:13:04 +0000 Subject: [PATCH 72/74] Translated using Weblate (Japanese) Currently translated at 4.5% (15 of 327 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 16d362be..fdf13ebc 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 95b416c243bd957eb74dda7d378720a0fe18fb72 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 6 Feb 2023 06:13:04 +0000 Subject: [PATCH 73/74] Translated using Weblate (Latvian) Currently translated at 36.3% (119 of 327 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 a9c360e8..079f1e93 100644 --- a/public/locales/lv/common.json +++ b/public/locales/lv/common.json @@ -456,5 +456,11 @@ "series": "Series", "issues": "Issues", "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" } } From 10097ab4fca68640ac638a237a35fc47dc3ae61e Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 5 Feb 2023 22:14:54 -0800 Subject: [PATCH 74/74] lint photoprism --- src/widgets/photoprism/proxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/photoprism/proxy.js b/src/widgets/photoprism/proxy.js index eba398dc..b7ee0bf9 100644 --- a/src/widgets/photoprism/proxy.js +++ b/src/widgets/photoprism/proxy.js @@ -34,7 +34,7 @@ export default async function photoprismProxyHandler(req, res) { }); } - let [status, contentType, data] = await httpProxy(url, params); + const [status, contentType, data] = await httpProxy(url, params); if (status !== 200) { logger.error("HTTP %d getting data from PhotoPrism. Data: %s", status, data);