From 23ba45729eec7ed8998f66825f30b47eb3f06326 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 22 Dec 2022 10:54:03 -0800 Subject: [PATCH 01/75] Rename diskstation to downloadstation --- public/locales/en/common.json | 2 +- src/widgets/components.js | 2 +- .../component.jsx | 16 ++++++++-------- .../{diskstation => downloadstation}/proxy.js | 6 +++--- .../{diskstation => downloadstation}/widget.js | 4 ++-- src/widgets/widgets.js | 5 +++-- 6 files changed, 18 insertions(+), 17 deletions(-) rename src/widgets/{diskstation => downloadstation}/component.jsx (64%) rename src/widgets/{diskstation => downloadstation}/proxy.js (92%) rename src/widgets/{diskstation => downloadstation}/widget.js (71%) diff --git a/public/locales/en/common.json b/public/locales/en/common.json index d8bfb039..ecfaec1c 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -126,7 +126,7 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { + "downloadstation": { "download": "Download", "upload": "Upload", "leech": "Leech", diff --git a/src/widgets/components.js b/src/widgets/components.js index eb7c686f..2146fb79 100644 --- a/src/widgets/components.js +++ b/src/widgets/components.js @@ -8,7 +8,7 @@ const components = { changedetectionio: dynamic(() => import("./changedetectionio/component")), coinmarketcap: dynamic(() => import("./coinmarketcap/component")), deluge: dynamic(() => import("./deluge/component")), - diskstation: dynamic(() => import("./diskstation/component")), + downloadstation: dynamic(() => import("./downloadstation/component")), docker: dynamic(() => import("./docker/component")), emby: dynamic(() => import("./emby/component")), flood: dynamic(() => import("./flood/component")), diff --git a/src/widgets/diskstation/component.jsx b/src/widgets/downloadstation/component.jsx similarity index 64% rename from src/widgets/diskstation/component.jsx rename to src/widgets/downloadstation/component.jsx index 3a87eebc..a91d1891 100644 --- a/src/widgets/diskstation/component.jsx +++ b/src/widgets/downloadstation/component.jsx @@ -17,10 +17,10 @@ export default function Component({ service }) { if (!tasks) { return ( - - - - + + + + ); } @@ -32,10 +32,10 @@ export default function Component({ service }) { return ( - - - - + + + + ); } diff --git a/src/widgets/diskstation/proxy.js b/src/widgets/downloadstation/proxy.js similarity index 92% rename from src/widgets/diskstation/proxy.js rename to src/widgets/downloadstation/proxy.js index af767815..dc76a3cb 100644 --- a/src/widgets/diskstation/proxy.js +++ b/src/widgets/downloadstation/proxy.js @@ -4,7 +4,7 @@ import createLogger from "utils/logger"; import widgets from "widgets/widgets"; import getServiceWidget from "utils/config/service-helpers"; -const logger = createLogger("diskstationProxyHandler"); +const logger = createLogger("downloadstationProxyHandler"); const authApi = "{url}/webapi/auth.cgi?api=SYNO.API.Auth&version=2&method=login&account={username}&passwd={password}&session=DownloadStation&format=cookie" async function login(widget) { @@ -34,7 +34,7 @@ async function login(widget) { return [status, contentType, data]; } -export default async function diskstationProxyHandler(req, res) { +export default async function downloadstationProxyHandler(req, res) { const { group, service, endpoint } = req.query; if (!group || !service) { @@ -56,7 +56,7 @@ export default async function diskstationProxyHandler(req, res) { const json = JSON.parse(data.toString()); if (json?.success !== true) { - logger.debug("Logging in to DiskStation"); + logger.debug("Logging in to DownloadStation"); [status, contentType, data] = await login(widget); if (status !== 200) { return res.status(status).end(data) diff --git a/src/widgets/diskstation/widget.js b/src/widgets/downloadstation/widget.js similarity index 71% rename from src/widgets/diskstation/widget.js rename to src/widgets/downloadstation/widget.js index 71187425..38245adf 100644 --- a/src/widgets/diskstation/widget.js +++ b/src/widgets/downloadstation/widget.js @@ -1,8 +1,8 @@ -import diskstationProxyHandler from "./proxy"; +import downloadstationProxyHandler from "./proxy"; const widget = { api: "{url}/webapi/DownloadStation/task.cgi?api=SYNO.DownloadStation.Task&version=1&method={endpoint}", - proxyHandler: diskstationProxyHandler, + proxyHandler: downloadstationProxyHandler, mappings: { "list": { diff --git a/src/widgets/widgets.js b/src/widgets/widgets.js index 2b45e55a..d7d7c253 100644 --- a/src/widgets/widgets.js +++ b/src/widgets/widgets.js @@ -5,7 +5,7 @@ import bazarr from "./bazarr/widget"; import changedetectionio from "./changedetectionio/widget"; import coinmarketcap from "./coinmarketcap/widget"; import deluge from "./deluge/widget"; -import diskstation from "./diskstation/widget"; +import downloadstation from "./downloadstation/widget"; import emby from "./emby/widget"; import flood from "./flood/widget"; import gluetun from "./gluetun/widget"; @@ -56,7 +56,8 @@ const widgets = { changedetectionio, coinmarketcap, deluge, - diskstation, + diskstation: downloadstation, + downloadstation, emby, flood, gluetun, From c8ea72c21783e851ea7ff85bb832b6080cc8044f Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 23 Dec 2022 08:38:52 -0800 Subject: [PATCH 02/75] lint --- src/widgets/prowlarr/component.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/widgets/prowlarr/component.jsx b/src/widgets/prowlarr/component.jsx index b4948a49..c5840e24 100644 --- a/src/widgets/prowlarr/component.jsx +++ b/src/widgets/prowlarr/component.jsx @@ -1,7 +1,8 @@ +import { useTranslation } from "react-i18next"; + import Container from "components/services/widget/container"; import Block from "components/services/widget/block"; import useWidgetAPI from "utils/proxy/use-widget-api"; -import { useTranslation } from "react-i18next"; export default function Component({ service }) { const { t } = useTranslation(); From 79176852b87bd85fe587030d11bd01ca0e254bfe Mon Sep 17 00:00:00 2001 From: gallegonovato Date: Fri, 23 Dec 2022 10:33:07 +0000 Subject: [PATCH 03/75] Translated using Weblate (Spanish) Currently translated at 100.0% (277 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/ --- public/locales/es/common.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/locales/es/common.json b/public/locales/es/common.json index d5c35c1f..36216a8d 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -381,10 +381,10 @@ "bibitrate": "{{value, rate(bits: true; binary: true)}}" }, "omada": { - "connectedAp": "Connected APs", - "activeUser": "Active devices", - "alerts": "Alerts", - "connectedGateway": "Connected gateways", - "connectedSwitches": "Connected switches" + "connectedAp": "AP conectados", + "activeUser": "Dispositivos activos", + "alerts": "Alertas", + "connectedGateway": "Pasarelas conectadas", + "connectedSwitches": "Interruptores conectados" } } From d1dce8b6058f99c4b5c62ff1b1f3c8a5f314efee Mon Sep 17 00:00:00 2001 From: Nonoss117 Date: Fri, 23 Dec 2022 06:03:34 +0000 Subject: [PATCH 04/75] Translated using Weblate (French) Currently translated at 100.0% (277 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/ --- public/locales/fr/common.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index 37c888ee..b88c733b 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -381,10 +381,10 @@ "bibyterate": "{{value, rate(bits: false; binary: true)}}" }, "omada": { - "connectedAp": "Connected APs", - "activeUser": "Active devices", - "alerts": "Alerts", - "connectedGateway": "Connected gateways", - "connectedSwitches": "Connected switches" + "connectedAp": "APs connectées", + "activeUser": "Équipts actifs", + "alerts": "Alertes", + "connectedGateway": "Passerelles connectées", + "connectedSwitches": "Switches connectés" } } From da32e54a4b7f40d1399c6e202251699f126f93c9 Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Fri, 23 Dec 2022 17:46:43 +0100 Subject: [PATCH 05/75] Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ --- public/locales/ar/common.json | 2 -- public/locales/bg/common.json | 2 -- public/locales/ca/common.json | 2 -- public/locales/cs/common.json | 2 -- public/locales/da/common.json | 2 -- public/locales/de/common.json | 2 -- public/locales/eo/common.json | 2 -- public/locales/es/common.json | 2 -- public/locales/fi/common.json | 2 -- public/locales/fr/common.json | 2 -- public/locales/he/common.json | 2 -- public/locales/hi/common.json | 2 -- public/locales/hr/common.json | 2 -- public/locales/hu/common.json | 2 -- public/locales/it/common.json | 2 -- public/locales/ms/common.json | 2 -- public/locales/nb-NO/common.json | 2 -- public/locales/nl/common.json | 2 -- public/locales/pl/common.json | 2 -- public/locales/pt-BR/common.json | 2 -- public/locales/pt/common.json | 2 -- public/locales/ro/common.json | 2 -- public/locales/ru/common.json | 2 -- public/locales/sr/common.json | 2 -- public/locales/sv/common.json | 2 -- public/locales/te/common.json | 2 -- public/locales/tr/common.json | 2 -- public/locales/vi/common.json | 2 -- public/locales/yue/common.json | 2 -- public/locales/zh-CN/common.json | 2 -- public/locales/zh-Hant/common.json | 2 -- 31 files changed, 62 deletions(-) diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json index 021e70bd..02e65184 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "leech": "Leech", "seed": "Seed", - "download": "Download", "upload": "Upload" }, "flood": { diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json index 051cdc8b..2a46dfcd 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "seed": "Seed", "download": "Download", - "upload": "Upload", "leech": "Leech" }, "flood": { diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json index 0e1f6b46..6b2e8af6 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -351,9 +351,7 @@ "leech": "Company" }, "diskstation": { - "download": "Descàrrega", "upload": "Pujada", - "leech": "Company", "seed": "Llavor" }, "flood": { diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index 0e172cba..58ae8f6b 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -351,9 +351,7 @@ "download": "Download" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/da/common.json b/public/locales/da/common.json index a5d12ce3..41e70f5a 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/de/common.json b/public/locales/de/common.json index 6e6cf025..fda26589 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json index 3a982a6b..3802774e 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -351,9 +351,7 @@ "total": "Totalo" }, "diskstation": { - "download": "Download", "leech": "Leech", - "upload": "Upload", "seed": "Seed" }, "flood": { diff --git a/public/locales/es/common.json b/public/locales/es/common.json index 36216a8d..ec400f49 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -351,9 +351,7 @@ "seed": "Semilla" }, "diskstation": { - "download": "Descargar", "upload": "Cargar", - "leech": "Leech", "seed": "Semilla" }, "flood": { diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json index 79ac054e..571b4017 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -351,9 +351,7 @@ "download": "Download" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index b88c733b..10f35247 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Réception", "upload": "Envoi", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/he/common.json b/public/locales/he/common.json index 8acd1f91..20d489ee 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "leech": "Leech", - "download": "Download", "seed": "Seed" }, "flood": { diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json index 6e00b9fc..d5529fd5 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json index 9e182adb..9301e3ec 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Preuzimanje", "upload": "Prijenos", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json index 2654cd0c..bb0993ef 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -351,9 +351,7 @@ "leech": "Leech" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/it/common.json b/public/locales/it/common.json index 3379bebb..034c90bd 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json index d667fd32..1394876f 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "download": "Download", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/nb-NO/common.json b/public/locales/nb-NO/common.json index c81aac82..180dcff6 100644 --- a/public/locales/nb-NO/common.json +++ b/public/locales/nb-NO/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "leech": "Leech", "download": "Download", - "upload": "Upload", "seed": "Seed" }, "flood": { diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json index 2fba03fa..746a0152 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json index d9dd34a6..dd24de57 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Pobieranie", "upload": "Wysyłanie", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/pt-BR/common.json b/public/locales/pt-BR/common.json index ec062c3e..a146cb10 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index ee78fc0c..b39310eb 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -364,9 +364,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json index 007b3331..abe6d5fc 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json index 7e265c07..dda739a5 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "seed": "Seed", "leech": "Leech" }, "flood": { diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json index b39ec6c7..d4f9cc5c 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json index 98b477bc..9458adfe 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/te/common.json b/public/locales/te/common.json index 0ba47a56..3999045e 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -351,9 +351,7 @@ "leech": "Leech" }, "diskstation": { - "leech": "Leech", "download": "Download", - "upload": "Upload", "seed": "Seed" }, "flood": { diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json index b7e18d3a..0d436900 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json index db36cef2..9a9c65c8 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json index 719aea6b..4d07768c 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/zh-CN/common.json b/public/locales/zh-CN/common.json index 6196a4e9..4a81ef4a 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json index 97d711cb..2018a46e 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -351,9 +351,7 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "upload": "Upload", - "leech": "Leech", "seed": "Seed" }, "flood": { From 3e86920b95959d49047ef23dd310308224d6e059 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:58 +0000 Subject: [PATCH 06/75] Translated using Weblate (German) Currently translated at 82.3% (228 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/de/ --- public/locales/de/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/de/common.json b/public/locales/de/common.json index fda26589..cfc7b19d 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 805d57bf31193e6efe751fbceed30071dfa3ffb8 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:59 +0000 Subject: [PATCH 07/75] Translated using Weblate (Spanish) Currently translated at 98.5% (273 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/ --- public/locales/es/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/es/common.json b/public/locales/es/common.json index ec400f49..9af87af9 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -351,7 +351,6 @@ "seed": "Semilla" }, "diskstation": { - "upload": "Cargar", "seed": "Semilla" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alertas", "connectedGateway": "Pasarelas conectadas", "connectedSwitches": "Interruptores conectados" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From caa97f774eecc4ae7b24ed4aa2aeb6521cb9fc01 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:59 +0000 Subject: [PATCH 08/75] Translated using Weblate (French) Currently translated at 98.5% (273 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/ --- public/locales/fr/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index 10f35247..ca058bec 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Envoi", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alertes", "connectedGateway": "Passerelles connectées", "connectedSwitches": "Switches connectés" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 4a747f1f93895dc0bdcac316e17a8b676130bb41 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:59 +0000 Subject: [PATCH 09/75] Translated using Weblate (Portuguese) Currently translated at 59.2% (164 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt/ --- public/locales/pt/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index b39310eb..d3ecf7d4 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -364,7 +364,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -393,5 +392,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 303acc24f625b62d15a3fa59cb12b85a1e3f4dec Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:59 +0000 Subject: [PATCH 10/75] Translated using Weblate (Russian) Currently translated at 17.3% (48 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ru/ --- public/locales/ru/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json index dda739a5..ebd447cf 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "leech": "Leech" }, "flood": { @@ -384,5 +383,11 @@ "activeUser": "Active devices", "alerts": "Alerts", "connectedGateway": "Connected gateways" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 3722caee73838d4cdee8087baa6c88d5a73ab1e9 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:47:00 +0000 Subject: [PATCH 11/75] Translated using Weblate (Chinese (Simplified)) Currently translated at 60.6% (168 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hans/ --- public/locales/zh-CN/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/zh-CN/common.json b/public/locales/zh-CN/common.json index 4a81ef4a..218d35e6 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 05c0f393545b0f685ab3b2724636c7dc5a49e597 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:47:00 +0000 Subject: [PATCH 12/75] Translated using Weblate (Italian) Currently translated at 96.7% (268 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/it/ --- public/locales/it/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/it/common.json b/public/locales/it/common.json index 034c90bd..1fc7eac4 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From efe763fff892e2c5c86fd197961000e6aefc28eb Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:58 +0000 Subject: [PATCH 13/75] =?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 28.5% (79 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nb_NO/ --- public/locales/nb-NO/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/nb-NO/common.json b/public/locales/nb-NO/common.json index 180dcff6..3cae63da 100644 --- a/public/locales/nb-NO/common.json +++ b/public/locales/nb-NO/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 874a51f56c5d7d1d731cc847654277387cd91125 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:47:00 +0000 Subject: [PATCH 14/75] Translated using Weblate (Vietnamese) Currently translated at 15.8% (44 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/vi/ --- public/locales/vi/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json index 9a9c65c8..3abc6512 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 3f523111b3b86326c5ca807a39c67d9a0f18d059 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:47:00 +0000 Subject: [PATCH 15/75] Translated using Weblate (Dutch) Currently translated at 22.7% (63 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nl/ --- public/locales/nl/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json index 746a0152..c4698aa7 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From b7e58ae07be7020a80c08bdefefa29ca6bdc7b9c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:47:01 +0000 Subject: [PATCH 16/75] Translated using Weblate (Chinese (Traditional)) Currently translated at 3.2% (9 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hant/ --- public/locales/zh-Hant/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json index 2018a46e..edadf493 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 2400357666ae31d133bdedcf676db5e1a641dc28 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:54 +0000 Subject: [PATCH 17/75] Translated using Weblate (Catalan) Currently translated at 93.1% (258 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ca/ --- public/locales/ca/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json index 6b2e8af6..b202a699 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -351,7 +351,6 @@ "leech": "Company" }, "diskstation": { - "upload": "Pujada", "seed": "Llavor" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 5c8b82173270a51683eddec5ab636aaeda6b80b6 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:57 +0000 Subject: [PATCH 18/75] Translated using Weblate (Polish) Currently translated at 91.6% (254 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pl/ --- public/locales/pl/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json index dd24de57..af3f5ccd 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Wysyłanie", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "activeUser": "Active devices", "alerts": "Alerts", "connectedGateway": "Connected gateways" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From ecccab9ebffc52eb73f8c544acaba6d629e0c8c9 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:53 +0000 Subject: [PATCH 19/75] Translated using Weblate (Swedish) Currently translated at 46.9% (130 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sv/ --- public/locales/sv/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json index 9458adfe..82255f2e 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 406267146660824f3949d3d686d9aef3df45bc03 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:54 +0000 Subject: [PATCH 20/75] Translated using Weblate (Croatian) Currently translated at 91.6% (254 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hr/ --- public/locales/hr/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json index 9301e3ec..87f71bda 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Prijenos", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From b4ca67190240cb11ac44a9a7191950eefd592d85 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:55 +0000 Subject: [PATCH 21/75] Translated using Weblate (Hungarian) Currently translated at 38.9% (108 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hu/ --- public/locales/hu/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json index bb0993ef..92aff4fc 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -351,7 +351,6 @@ "leech": "Leech" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "connectedAp": "Connected APs", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 207bd04489213cbf537d5ba8df5943fd640d8f01 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:54 +0000 Subject: [PATCH 22/75] Translated using Weblate (Hebrew) Currently translated at 36.4% (101 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/he/ --- public/locales/he/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/he/common.json b/public/locales/he/common.json index 20d489ee..37a4c601 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "leech": "Leech", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From bf1b874368fba5fc3c0ddf6a969709b508d95ccc Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:55 +0000 Subject: [PATCH 23/75] Translated using Weblate (Romanian) Currently translated at 49.4% (137 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ro/ --- public/locales/ro/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json index abe6d5fc..2e90c111 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 0c8fe35af1a3860d10728ea3f79eeeb72da19a8c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:56 +0000 Subject: [PATCH 24/75] Translated using Weblate (Portuguese (Brazil)) Currently translated at 42.2% (117 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt_BR/ --- public/locales/pt-BR/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/pt-BR/common.json b/public/locales/pt-BR/common.json index a146cb10..6a7919df 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 40657049a665d870124b9062f1bcf2d0fe3a35d4 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:54 +0000 Subject: [PATCH 25/75] Translated using Weblate (Yue) Currently translated at 42.5% (118 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/yue/ --- public/locales/yue/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json index 4d07768c..3bf3652c 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 4c646c660be1f372d5af83c3a3b32cbbc684dda4 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:57 +0000 Subject: [PATCH 26/75] Translated using Weblate (Finnish) Currently translated at 44.4% (123 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fi/ --- public/locales/fi/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json index 571b4017..f98179cd 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -351,7 +351,6 @@ "download": "Download" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedSwitches": "Connected switches", "connectedGateway": "Connected gateways" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 1452d846e48cb7f8f9fdc5a9731b58428abc8c79 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:57 +0000 Subject: [PATCH 27/75] Translated using Weblate (Telugu) Currently translated at 78.3% (217 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/te/ --- public/locales/te/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/te/common.json b/public/locales/te/common.json index 3999045e..f135d928 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -351,7 +351,6 @@ "leech": "Leech" }, "diskstation": { - "download": "Download", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 450babf95d7800af0e02c4106a48d1f232579644 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:57 +0000 Subject: [PATCH 28/75] Translated using Weblate (Bulgarian) Currently translated at 16.6% (46 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/bg/ --- public/locales/bg/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json index 2a46dfcd..ea997138 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "leech": "Leech" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From efa35b4bd47d4c9deaecf795b1a05840f9b3abf5 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:55 +0000 Subject: [PATCH 29/75] Translated using Weblate (Turkish) Currently translated at 83.3% (231 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/tr/ --- public/locales/tr/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json index 0d436900..21f9497a 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From bb422179e5ef9e77c59c045a687bf87efc812bac Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:56 +0000 Subject: [PATCH 30/75] Translated using Weblate (Serbian) Currently translated at 3.2% (9 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sr/ --- public/locales/sr/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json index d4f9cc5c..338ff27b 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From b419ddde2d8b4b020b36cdfbfcbd437eb8efd9a6 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:55 +0000 Subject: [PATCH 31/75] Translated using Weblate (Arabic) Currently translated at 15.8% (44 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ar/ --- public/locales/ar/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json index 02e65184..c5d20fcc 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "seed": "Seed", "upload": "Upload" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From a834d2a4e4aaa780a252907732c401075a09aafd Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:58 +0000 Subject: [PATCH 32/75] Translated using Weblate (Czech) Currently translated at 81.2% (225 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/cs/ --- public/locales/cs/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index 58ae8f6b..7fe7b910 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -351,7 +351,6 @@ "download": "Download" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 953ade7506e3bc28a96f1bf58146934ec195e6b3 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:58 +0000 Subject: [PATCH 33/75] Translated using Weblate (Danish) Currently translated at 71.4% (198 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/da/ --- public/locales/da/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/da/common.json b/public/locales/da/common.json index 41e70f5a..4a7465f4 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 817e5b630ed097f4f7346b82bd13d545fcf60a08 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:47:00 +0000 Subject: [PATCH 34/75] Translated using Weblate (Malay) Currently translated at 91.3% (253 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ms/ --- public/locales/ms/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json index 1394876f..5d6525d7 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "download": "Download", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 3249e03bf63c8221821c37571cfaf33b3f4a365b Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:56 +0000 Subject: [PATCH 35/75] Translated using Weblate (Hindi) Currently translated at 3.2% (9 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hi/ --- public/locales/hi/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json index d5529fd5..8ba69571 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -351,7 +351,6 @@ "seed": "Seed" }, "diskstation": { - "upload": "Upload", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 17e7d449b0ab0d38cfe6fcf10079e25958d5a618 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 16:46:56 +0000 Subject: [PATCH 36/75] Translated using Weblate (Esperanto) Currently translated at 37.1% (103 of 277 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/eo/ --- public/locales/eo/common.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json index 3802774e..b12490d5 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -351,7 +351,6 @@ "total": "Totalo" }, "diskstation": { - "leech": "Leech", "seed": "Seed" }, "flood": { @@ -384,5 +383,11 @@ "alerts": "Alerts", "connectedGateway": "Connected gateways", "connectedSwitches": "Connected switches" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" } } From 38d81b654e7e238c4d2a7f5335328c0eed8a95d9 Mon Sep 17 00:00:00 2001 From: Benoit SERRA Date: Fri, 23 Dec 2022 18:12:06 +0100 Subject: [PATCH 37/75] Mikrotik widget (#720) --- .gitignore | 5 ++++ public/locales/en/common.json | 8 +++++- src/widgets/components.js | 1 + src/widgets/mikrotik/component.jsx | 43 ++++++++++++++++++++++++++++++ src/widgets/mikrotik/widget.js | 24 +++++++++++++++++ src/widgets/widgets.js | 2 ++ 6 files changed, 82 insertions(+), 1 deletion(-) create mode 100644 src/widgets/mikrotik/component.jsx create mode 100644 src/widgets/mikrotik/widget.js diff --git a/.gitignore b/.gitignore index 7ab221f9..5649354a 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,8 @@ next-env.d.ts # homepage /config + +# IDEs +/.idea/ + + diff --git a/public/locales/en/common.json b/public/locales/en/common.json index d8a4d383..a1f9df9c 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -206,7 +206,7 @@ "processed": "Processed", "errored": "Errored", "saved": "Saved" - }, + }, "traefik": { "routers": "Routers", "services": "Services", @@ -395,5 +395,11 @@ "nextdns": { "wait": "Please Wait", "no_devices": "No Device Data Received" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } diff --git a/src/widgets/components.js b/src/widgets/components.js index 6468e841..a2a26332 100644 --- a/src/widgets/components.js +++ b/src/widgets/components.js @@ -22,6 +22,7 @@ const components = { lidarr: dynamic(() => import("./lidarr/component")), mastodon: dynamic(() => import("./mastodon/component")), miniflux: dynamic(() => import("./miniflux/component")), + mikrotik: dynamic(() => import("./mikrotik/component")), navidrome: dynamic(() => import("./navidrome/component")), nextdns: dynamic(() => import("./nextdns/component")), npm: dynamic(() => import("./npm/component")), diff --git a/src/widgets/mikrotik/component.jsx b/src/widgets/mikrotik/component.jsx new file mode 100644 index 00000000..37a8f706 --- /dev/null +++ b/src/widgets/mikrotik/component.jsx @@ -0,0 +1,43 @@ +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: statsData, error: statsError } = useWidgetAPI(widget, "system"); + const { data: leasesData, error: leasesError } = useWidgetAPI(widget, "leases"); + + if (statsError || leasesError) { + const finalError = statsError ?? leasesError; + return ; + } + + if (!statsData || !leasesData) { + return ( + + + + + + + ); + } + + const memoryUsed = 100 - (statsData['free-memory'] / statsData['total-memory'])*100 + + const numberOfLeases = leasesData.length + + return ( + + + + + + + ); +} diff --git a/src/widgets/mikrotik/widget.js b/src/widgets/mikrotik/widget.js new file mode 100644 index 00000000..dfb5f626 --- /dev/null +++ b/src/widgets/mikrotik/widget.js @@ -0,0 +1,24 @@ + +import genericProxyHandler from "utils/proxy/handlers/generic"; + +const widget = { + api: "{url}/rest/{endpoint}", + proxyHandler: genericProxyHandler, + + mappings: { + system: { + endpoint: "system/resource", + validate: [ + "cpu-load", + "free-memory", + "total-memory", + "uptime" + ] + }, + leases: { + endpoint: "ip/dhcp-server/lease", + } + }, +}; + +export default widget; diff --git a/src/widgets/widgets.js b/src/widgets/widgets.js index ab5f8bba..523ba9c2 100644 --- a/src/widgets/widgets.js +++ b/src/widgets/widgets.js @@ -17,6 +17,7 @@ import jellyseerr from "./jellyseerr/widget"; import lidarr from "./lidarr/widget"; import mastodon from "./mastodon/widget"; import miniflux from "./miniflux/widget"; +import mikrotik from "./mikrotik/widget"; import navidrome from "./navidrome/widget"; import nextdns from "./nextdns/widget"; import npm from "./npm/widget"; @@ -71,6 +72,7 @@ const widgets = { lidarr, mastodon, miniflux, + mikrotik, navidrome, nextdns, npm, From 31fec3cead6f4e54b6d75d646ea941cbb6d6a2ea Mon Sep 17 00:00:00 2001 From: Hosted Weblate Date: Fri, 23 Dec 2022 18:12:11 +0100 Subject: [PATCH 38/75] Update translation files Updated by "Cleanup translation files" hook in Weblate. Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ --- public/locales/ar/common.json | 3 --- public/locales/bg/common.json | 3 --- public/locales/ca/common.json | 3 --- public/locales/cs/common.json | 3 --- public/locales/da/common.json | 3 --- public/locales/de/common.json | 3 --- public/locales/eo/common.json | 3 --- public/locales/es/common.json | 3 --- public/locales/fi/common.json | 3 --- public/locales/fr/common.json | 3 --- public/locales/he/common.json | 3 --- public/locales/hi/common.json | 3 --- public/locales/hr/common.json | 3 --- public/locales/hu/common.json | 3 --- public/locales/it/common.json | 3 --- public/locales/ms/common.json | 3 --- public/locales/nb-NO/common.json | 3 --- public/locales/nl/common.json | 3 --- public/locales/pl/common.json | 3 --- public/locales/pt-BR/common.json | 3 --- public/locales/pt/common.json | 3 --- public/locales/ro/common.json | 3 --- public/locales/ru/common.json | 3 --- public/locales/sr/common.json | 3 --- public/locales/sv/common.json | 3 --- public/locales/te/common.json | 3 --- public/locales/tr/common.json | 3 --- public/locales/vi/common.json | 3 --- public/locales/yue/common.json | 3 --- public/locales/zh-CN/common.json | 3 --- public/locales/zh-Hant/common.json | 3 --- 31 files changed, 93 deletions(-) diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json index c5d20fcc..c817bcd3 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "upload": "Upload" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json index ea997138..376a8e08 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "leech": "Leech" - }, "flood": { "leech": "Leech", "seed": "Seed", diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json index b202a699..20251bbd 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -350,9 +350,6 @@ "upload": "Pujada", "leech": "Company" }, - "diskstation": { - "seed": "Llavor" - }, "flood": { "download": "Descarregar", "upload": "Pujada", diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index 7fe7b910..22a822e5 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -350,9 +350,6 @@ "seed": "Seed", "download": "Download" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/da/common.json b/public/locales/da/common.json index 4a7465f4..56f95325 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "leech": "Leech", "download": "Download", diff --git a/public/locales/de/common.json b/public/locales/de/common.json index cfc7b19d..445174dc 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json index b12490d5..6a1a3d2a 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -350,9 +350,6 @@ "inbox": "Inbox", "total": "Totalo" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/es/common.json b/public/locales/es/common.json index 9af87af9..9f812887 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Semilla" }, - "diskstation": { - "seed": "Semilla" - }, "flood": { "download": "Descargar", "upload": "Subir", diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json index f98179cd..51f7e343 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -350,9 +350,6 @@ "seed": "Seed", "download": "Download" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index ca058bec..983a8774 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Récep.", "upload": "Envoi", diff --git a/public/locales/he/common.json b/public/locales/he/common.json index 37a4c601..a681fec8 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json index 8ba69571..0e7ced70 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json index 87f71bda..99eaa4ae 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Preuzimanje", "upload": "Prijenos", diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json index 92aff4fc..bd2be55c 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -350,9 +350,6 @@ "upload": "Upload", "leech": "Leech" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/it/common.json b/public/locales/it/common.json index 1fc7eac4..a84c5a2b 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json index 5d6525d7..13b23b88 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/nb-NO/common.json b/public/locales/nb-NO/common.json index 3cae63da..6c749737 100644 --- a/public/locales/nb-NO/common.json +++ b/public/locales/nb-NO/common.json @@ -350,9 +350,6 @@ "upload": "Upload", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json index c4698aa7..e70bd7e7 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json index af3f5ccd..53ac88f7 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Pobieranie", "upload": "Wysyłanie", diff --git a/public/locales/pt-BR/common.json b/public/locales/pt-BR/common.json index 6a7919df..871942ef 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index d3ecf7d4..9c8435ce 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -363,9 +363,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Descarregar", "upload": "Carregar", diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json index 2e90c111..3add90d1 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json index ebd447cf..96a6da1d 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "leech": "Leech" - }, "flood": { "upload": "Upload", "download": "Download", diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json index 338ff27b..8081d7c4 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "seed": "Seed", diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json index 82255f2e..0f574d1a 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -350,9 +350,6 @@ "upload": "Upload", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/te/common.json b/public/locales/te/common.json index f135d928..b364d5af 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -350,9 +350,6 @@ "upload": "Upload", "leech": "Leech" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json index 21f9497a..088bce8c 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json index 3abc6512..f8e8e79e 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json index 3bf3652c..edf17b40 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", diff --git a/public/locales/zh-CN/common.json b/public/locales/zh-CN/common.json index 218d35e6..e7bc9369 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "leech": "Leech", "download": "Download", diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json index edadf493..28bb2096 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -350,9 +350,6 @@ "leech": "Leech", "seed": "Seed" }, - "diskstation": { - "seed": "Seed" - }, "flood": { "download": "Download", "upload": "Upload", From e9610f7c34f35d06950350ec87fb500a6510d4d6 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:26 +0000 Subject: [PATCH 39/75] Translated using Weblate (German) Currently translated at 81.1% (228 of 281 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 445174dc..b0a67d8e 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From cbded542f99168fd12a6720195066e17a7a7e8c1 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:26 +0000 Subject: [PATCH 40/75] Translated using Weblate (Spanish) Currently translated at 97.1% (273 of 281 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 9f812887..c2727026 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 3b0e2797ca7380438c8d7b492bb206b688d2228d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:27 +0000 Subject: [PATCH 41/75] Translated using Weblate (French) Currently translated at 97.1% (273 of 281 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 983a8774..4b78d108 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 667b88a450ae57361f0d9123e485f9ddc37090bb Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:27 +0000 Subject: [PATCH 42/75] Translated using Weblate (Portuguese) Currently translated at 58.3% (164 of 281 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 9c8435ce..6b41a411 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -395,5 +395,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From f363f90da57e7da0daecd10c099cf4713238b2e3 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:27 +0000 Subject: [PATCH 43/75] Translated using Weblate (Russian) Currently translated at 17.0% (48 of 281 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 96a6da1d..7b0d512d 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 195ebf20676ba34a5c09a9e4c81941ef06b10071 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:27 +0000 Subject: [PATCH 44/75] Translated using Weblate (Chinese (Simplified)) Currently translated at 59.7% (168 of 281 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 e7bc9369..cc05eecf 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 922df3288b5c17c18cb99023cf406a2c8cf00ae7 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:28 +0000 Subject: [PATCH 45/75] Translated using Weblate (Italian) Currently translated at 95.3% (268 of 281 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 a84c5a2b..3f531e4a 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 644014419cc0115b2323640159a52d8be7a8dfe0 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:26 +0000 Subject: [PATCH 46/75] =?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 28.1% (79 of 281 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 6c749737..069bb58a 100644 --- a/public/locales/nb-NO/common.json +++ b/public/locales/nb-NO/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "uptime": "Uptime", + "numberOfLeases": "Leases", + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used" } } From cf4c8885a1ee214c7bcafffb8f20080897914f2d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:28 +0000 Subject: [PATCH 47/75] Translated using Weblate (Vietnamese) Currently translated at 15.6% (44 of 281 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 f8e8e79e..eff1581b 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "uptime": "Uptime", + "numberOfLeases": "Leases", + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used" } } From 7602ec8479c60919ac9cf07f4b78e53d25cb71ca Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:28 +0000 Subject: [PATCH 48/75] Translated using Weblate (Dutch) Currently translated at 22.4% (63 of 281 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 e70bd7e7..39d9854f 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From ca6065d42849f3c007e66986d00d00621f399d60 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:29 +0000 Subject: [PATCH 49/75] Translated using Weblate (Chinese (Traditional)) Currently translated at 3.2% (9 of 281 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 28bb2096..a66e55a2 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From f5f6c57ba8b5133956f3043e735d5e7a0eaa278c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:22 +0000 Subject: [PATCH 50/75] Translated using Weblate (Catalan) Currently translated at 91.8% (258 of 281 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 20251bbd..eee5828c 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From ae781a942e95bfd31a41a0ab70f993a59d4b7bfd Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:24 +0000 Subject: [PATCH 51/75] Translated using Weblate (Polish) Currently translated at 90.3% (254 of 281 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 53ac88f7..d51e5a1c 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 1662302b134ea6246aa0455b3c7e8014fb7140f8 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:20 +0000 Subject: [PATCH 52/75] Translated using Weblate (Swedish) Currently translated at 46.2% (130 of 281 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 0f574d1a..55411e9d 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From b0b5d8b381c83465ad458729e7b317d213de762d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:20 +0000 Subject: [PATCH 53/75] Translated using Weblate (Croatian) Currently translated at 90.3% (254 of 281 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 99eaa4ae..828f8ed1 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From d69dda762abad24fd7bb4dbd39c3334532fe76c8 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:22 +0000 Subject: [PATCH 54/75] Translated using Weblate (Hungarian) Currently translated at 38.4% (108 of 281 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 bd2be55c..8eb18b02 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 8dff267305640d3417cc967996f76cf9c5c3fefc Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:21 +0000 Subject: [PATCH 55/75] Translated using Weblate (Hebrew) Currently translated at 35.9% (101 of 281 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 a681fec8..a0bd66f9 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 4c658cf717e87699da7a7a62c3476239c68c8175 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:22 +0000 Subject: [PATCH 56/75] Translated using Weblate (Romanian) Currently translated at 48.7% (137 of 281 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 3add90d1..5328837f 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "numberOfLeases": "Leases", + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime" } } From 458d376ce50c4258144173b13cd013348220b425 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:23 +0000 Subject: [PATCH 57/75] Translated using Weblate (Portuguese (Brazil)) Currently translated at 41.6% (117 of 281 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 871942ef..0ce1cc1d 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From a8084e9e80c4e26dc4f423e399f68ad95d6e1a3b Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:21 +0000 Subject: [PATCH 58/75] Translated using Weblate (Yue) Currently translated at 41.9% (118 of 281 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 edf17b40..8791c97f 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From d650d1cae5d35f5ab1ea19379b5ddcea7d4808dc Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:25 +0000 Subject: [PATCH 59/75] Translated using Weblate (Finnish) Currently translated at 43.7% (123 of 281 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 51f7e343..f52627d6 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 6722c3712d1544b1f2ddeab20718c6444da2cb68 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:24 +0000 Subject: [PATCH 60/75] Translated using Weblate (Telugu) Currently translated at 77.2% (217 of 281 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 b364d5af..b988642d 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "uptime": "Uptime", + "numberOfLeases": "Leases", + "memoryUsed": "Memory Used" } } From b4602a2e4bdcf01abc79586754d693bd4f30fda0 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:25 +0000 Subject: [PATCH 61/75] Translated using Weblate (Bulgarian) Currently translated at 16.3% (46 of 281 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 376a8e08..5a01d758 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 789831ff57f72195ec288f874ca7065ad52b194e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:22 +0000 Subject: [PATCH 62/75] Translated using Weblate (Turkish) Currently translated at 82.2% (231 of 281 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 088bce8c..08a9992e 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 4ff2799c0ec40f88861a1bf97429eaf4eab3b3a7 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:24 +0000 Subject: [PATCH 63/75] Translated using Weblate (Serbian) Currently translated at 3.2% (9 of 281 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 8081d7c4..230033c3 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 59e966c6dd9e52e836a579499538d72330723216 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:23 +0000 Subject: [PATCH 64/75] Translated using Weblate (Arabic) Currently translated at 15.6% (44 of 281 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 c817bcd3..c1610adc 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 5a8ae8a62690a95b458e6c147659672b1a793f18 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:26 +0000 Subject: [PATCH 65/75] Translated using Weblate (Czech) Currently translated at 80.0% (225 of 281 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 22a822e5..9487646d 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From b1a0b4ebcf87d65349f737c3268f125ff661d97e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:25 +0000 Subject: [PATCH 66/75] Translated using Weblate (Danish) Currently translated at 70.4% (198 of 281 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 56f95325..72e366b2 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 2b41121a800268415ed173dff936a6a306da44e6 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:28 +0000 Subject: [PATCH 67/75] Translated using Weblate (Malay) Currently translated at 90.0% (253 of 281 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 13b23b88..0da9b6d3 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 4417161e0cee7ea5ff10d430ac31547613a9c94c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:23 +0000 Subject: [PATCH 68/75] Translated using Weblate (Hindi) Currently translated at 3.2% (9 of 281 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 0e7ced70..e2a7dcca 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 82c290d5d818ab33764642f633c10308a4f55999 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Fri, 23 Dec 2022 17:12:24 +0000 Subject: [PATCH 69/75] Translated using Weblate (Esperanto) Currently translated at 36.6% (103 of 281 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 6a1a3d2a..e0b1e3d8 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -386,5 +386,11 @@ "upload": "Upload", "leech": "Leech", "seed": "Seed" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" } } From 4017997448ff736337e47e49290c8b9f05bad037 Mon Sep 17 00:00:00 2001 From: gallegonovato Date: Sat, 24 Dec 2022 12:52:49 +0000 Subject: [PATCH 70/75] Translated using Weblate (Spanish) Currently translated at 100.0% (281 of 281 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/ --- public/locales/es/common.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/public/locales/es/common.json b/public/locales/es/common.json index c2727026..539e173c 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -382,15 +382,15 @@ "connectedSwitches": "Interruptores conectados" }, "downloadstation": { - "download": "Download", - "upload": "Upload", - "leech": "Leech", - "seed": "Seed" + "download": "Descargar", + "upload": "Subir", + "leech": "Sanguijuela", + "seed": "Semilla" }, "mikrotik": { - "cpuLoad": "CPU Load", - "memoryUsed": "Memory Used", - "uptime": "Uptime", - "numberOfLeases": "Leases" + "cpuLoad": "Carga de la CPU", + "memoryUsed": "Memoria utilizada", + "uptime": "Tiempo en funcionamiento", + "numberOfLeases": "Alquileres" } } From 6f34aaefa4f94c475ebe03284c197a946648b6a1 Mon Sep 17 00:00:00 2001 From: Nonoss117 Date: Fri, 23 Dec 2022 18:53:54 +0000 Subject: [PATCH 71/75] Translated using Weblate (French) Currently translated at 100.0% (281 of 281 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/ --- public/locales/fr/common.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index 4b78d108..e34fd67b 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -382,15 +382,15 @@ "connectedSwitches": "Switches connectés" }, "downloadstation": { - "download": "Download", - "upload": "Upload", + "download": "Récep.", + "upload": "Envoi", "leech": "Leech", "seed": "Seed" }, "mikrotik": { - "cpuLoad": "CPU Load", - "memoryUsed": "Memory Used", - "uptime": "Uptime", - "numberOfLeases": "Leases" + "cpuLoad": "Charge CPU", + "memoryUsed": "Mém. Utilisée", + "uptime": "Disponibilité", + "numberOfLeases": "Baux" } } From 8bdd03a63280f72a31da0a8e2b9e94826fce58ae Mon Sep 17 00:00:00 2001 From: Paolo Casellati Date: Sat, 24 Dec 2022 16:10:45 +0000 Subject: [PATCH 72/75] Translated using Weblate (Italian) Currently translated at 99.6% (280 of 281 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/it/ --- public/locales/it/common.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/public/locales/it/common.json b/public/locales/it/common.json index 3f531e4a..6bf614b1 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -375,11 +375,11 @@ "bibitrate": "{{value, rate(bits: true; binary: true)}}" }, "omada": { - "connectedAp": "Connected APs", - "activeUser": "Active devices", - "alerts": "Alerts", - "connectedGateway": "Connected gateways", - "connectedSwitches": "Connected switches" + "connectedAp": "AP Connessi", + "activeUser": "Dispositivi attivi", + "alerts": "Allarmi", + "connectedGateway": "Gateway connessi", + "connectedSwitches": "Switch connessi" }, "downloadstation": { "download": "Download", @@ -388,9 +388,9 @@ "seed": "Seed" }, "mikrotik": { - "cpuLoad": "CPU Load", - "memoryUsed": "Memory Used", - "uptime": "Uptime", + "cpuLoad": "Carico della CPU", + "memoryUsed": "Memoria Utilizzata", + "uptime": "Tempo di attività", "numberOfLeases": "Leases" } } From 977c65f911e3fcf2203f3953eb569389ea129456 Mon Sep 17 00:00:00 2001 From: retmas-gh Date: Fri, 23 Dec 2022 21:08:41 +0000 Subject: [PATCH 73/75] Translated using Weblate (Polish) Currently translated at 97.8% (275 of 281 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pl/ --- public/locales/pl/common.json | 38 +++++++++++++++++------------------ 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json index d51e5a1c..209db63a 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -357,40 +357,40 @@ "seed": "Seed" }, "tdarr": { - "queue": "Queue", - "processed": "Processed", - "errored": "Errored", - "saved": "Saved" + "queue": "Kolejka", + "processed": "Przetworzone", + "errored": "Błędne", + "saved": "Zapisane" }, "miniflux": { - "read": "Read", - "unread": "Unread" + "read": "Przeczytane", + "unread": "Nieprzeczytane" }, "nextdns": { - "wait": "Please Wait", - "no_devices": "No Device Data Received" + "wait": "Proszę czekać", + "no_devices": "Nie otrzymano danych urządzenia" }, "common": { "bibyterate": "{{value, rate(bits: false; binary: true)}}", "bibitrate": "{{value, rate(bits: true; binary: true)}}" }, "omada": { - "connectedSwitches": "Connected switches", - "connectedAp": "Connected APs", - "activeUser": "Active devices", - "alerts": "Alerts", - "connectedGateway": "Connected gateways" + "connectedSwitches": "Połączone przełączniki", + "connectedAp": "Połączone punkty dostępowe", + "activeUser": "Aktywne urządzenia", + "alerts": "Alarmy", + "connectedGateway": "Połączone bramy" }, "downloadstation": { - "download": "Download", - "upload": "Upload", + "download": "Pobieranie", + "upload": "Wysyłanie", "leech": "Leech", "seed": "Seed" }, "mikrotik": { - "cpuLoad": "CPU Load", - "memoryUsed": "Memory Used", - "uptime": "Uptime", - "numberOfLeases": "Leases" + "cpuLoad": "Obciążenie procesora", + "memoryUsed": "Zuyżyta pamięć", + "uptime": "Czas działania", + "numberOfLeases": "Dzierżawy" } } From 54fb2018744f5ab6fc34e074e6e133854f75f34b Mon Sep 17 00:00:00 2001 From: Dan Date: Sun, 25 Dec 2022 23:02:49 +0100 Subject: [PATCH 74/75] Added translation using Weblate (Ukrainian) --- public/locales/uk/common.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 public/locales/uk/common.json diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/public/locales/uk/common.json @@ -0,0 +1 @@ +{} From 3a27486c34747e951cdc23ad9ccf27357ca527c9 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Sun, 25 Dec 2022 22:02:52 +0000 Subject: [PATCH 75/75] Translated using Weblate (Ukrainian) Currently translated at 100.0% (0 of 0 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/uk/ --- public/locales/uk/common.json | 397 +++++++++++++++++++++++++++++++++- 1 file changed, 396 insertions(+), 1 deletion(-) diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json index 0967ef42..a09497f1 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -1 +1,396 @@ -{} +{ + "common": { + "bibyterate": "{{value, rate(bits: false; binary: true)}}", + "bibitrate": "{{value, rate(bits: true; binary: true)}}" + }, + "omada": { + "alerts": "Alerts", + "connectedGateway": "Connected gateways", + "connectedSwitches": "Connected switches", + "connectedAp": "Connected APs", + "activeUser": "Active devices" + }, + "sabnzbd": { + "rate": "Rate", + "queue": "Queue", + "timeleft": "Time Left" + }, + "rutorrent": { + "active": "Active", + "upload": "Upload", + "download": "Download" + }, + "deluge": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "readarr": { + "wanted": "Wanted", + "queued": "Queued", + "books": "Books" + }, + "wmo": { + "55-day": "Heavy Drizzle", + "55-night": "Heavy Drizzle", + "56-day": "Light Freezing Drizzle", + "56-night": "Light Freezing Drizzle", + "0-day": "Sunny", + "0-night": "Clear", + "1-day": "Mainly Sunny", + "1-night": "Mainly Clear", + "2-day": "Partly Cloudy", + "2-night": "Partly Cloudy", + "3-day": "Cloudy", + "3-night": "Cloudy", + "53-day": "Drizzle", + "45-day": "Foggy", + "45-night": "Foggy", + "48-day": "Foggy", + "48-night": "Foggy", + "51-day": "Light Drizzle", + "51-night": "Light Drizzle", + "53-night": "Drizzle", + "57-day": "Freezing Drizzle", + "57-night": "Freezing Drizzle", + "61-day": "Light Rain", + "61-night": "Light Rain", + "63-day": "Rain", + "63-night": "Rain", + "65-day": "Heavy Rain", + "65-night": "Heavy Rain", + "66-day": "Freezing Rain", + "66-night": "Freezing Rain", + "67-day": "Freezing Rain", + "67-night": "Freezing Rain", + "71-day": "Light Snow", + "71-night": "Light Snow", + "73-day": "Snow", + "73-night": "Snow", + "75-day": "Heavy Snow", + "75-night": "Heavy Snow", + "77-day": "Snow Grains", + "77-night": "Snow Grains", + "80-day": "Light Showers", + "80-night": "Light Showers", + "81-day": "Showers", + "82-day": "Heavy Showers", + "82-night": "Heavy Showers", + "81-night": "Showers", + "85-day": "Snow Showers", + "85-night": "Snow Showers", + "86-day": "Snow Showers", + "86-night": "Snow Showers", + "95-day": "Thunderstorm", + "95-night": "Thunderstorm", + "96-day": "Thunderstorm With Hail", + "96-night": "Thunderstorm With Hail", + "99-day": "Thunderstorm With Hail", + "99-night": "Thunderstorm With Hail" + }, + "pyload": { + "speed": "Speed", + "active": "Active", + "queue": "Queue", + "total": "Total" + }, + "gluetun": { + "country": "Country", + "public_ip": "Public IP", + "region": "Region" + }, + "hdhomerun": { + "channels": "Channels", + "hd": "HD" + }, + "widget": { + "missing_type": "Missing Widget Type: {{type}}", + "api_error": "API Error", + "information": "Information", + "status": "Status", + "url": "URL", + "raw_error": "Raw Error", + "response_data": "Response Data" + }, + "weather": { + "current": "Current Location", + "allow": "Click to allow", + "updating": "Updating", + "wait": "Please wait" + }, + "search": { + "placeholder": "Search…" + }, + "resources": { + "cpu": "CPU", + "total": "Total", + "free": "Free", + "used": "Used", + "load": "Load" + }, + "unifi": { + "users": "Users", + "uptime": "System Uptime", + "days": "Days", + "wan": "WAN", + "lan": "LAN", + "wlan": "WLAN", + "devices": "Devices", + "lan_devices": "LAN Devices", + "wlan_devices": "WLAN Devices", + "lan_users": "LAN Users", + "wlan_users": "WLAN Users", + "up": "UP", + "down": "DOWN", + "wait": "Please wait" + }, + "docker": { + "rx": "RX", + "tx": "TX", + "mem": "MEM", + "cpu": "CPU", + "offline": "Offline", + "error": "Error", + "unknown": "Unknown" + }, + "ping": { + "error": "Error", + "ping": "Ping" + }, + "emby": { + "playing": "Playing", + "transcoding": "Transcoding", + "bitrate": "Bitrate", + "no_active": "No Active Streams" + }, + "flood": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "changedetectionio": { + "totalObserved": "Total Observed", + "diffsDetected": "Diffs Detected" + }, + "tautulli": { + "playing": "Playing", + "transcoding": "Transcoding", + "bitrate": "Bitrate", + "no_active": "No Active Streams" + }, + "nzbget": { + "rate": "Rate", + "downloaded": "Downloaded", + "remaining": "Remaining" + }, + "plex": { + "streams": "Active Streams", + "movies": "Movies", + "tv": "TV Shows" + }, + "transmission": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "qbittorrent": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "sonarr": { + "wanted": "Wanted", + "queued": "Queued", + "series": "Series" + }, + "radarr": { + "wanted": "Wanted", + "missing": "Missing", + "queued": "Queued", + "movies": "Movies" + }, + "lidarr": { + "wanted": "Wanted", + "queued": "Queued", + "albums": "Albums" + }, + "traefik": { + "middleware": "Middleware", + "routers": "Routers", + "services": "Services" + }, + "navidrome": { + "nothing_streaming": "No Active Streams", + "please_wait": "Please Wait" + }, + "bazarr": { + "missingEpisodes": "Missing Episodes", + "missingMovies": "Missing Movies" + }, + "ombi": { + "pending": "Pending", + "approved": "Approved", + "available": "Available" + }, + "jellyseerr": { + "pending": "Pending", + "approved": "Approved", + "available": "Available" + }, + "overseerr": { + "pending": "Pending", + "processing": "Processing", + "approved": "Approved", + "available": "Available" + }, + "pihole": { + "queries": "Queries", + "blocked": "Blocked", + "gravity": "Gravity" + }, + "adguard": { + "queries": "Queries", + "blocked": "Blocked", + "filtered": "Filtered", + "latency": "Latency" + }, + "speedtest": { + "upload": "Upload", + "download": "Download", + "ping": "Ping" + }, + "portainer": { + "running": "Running", + "stopped": "Stopped", + "total": "Total" + }, + "tdarr": { + "queue": "Queue", + "processed": "Processed", + "errored": "Errored", + "saved": "Saved" + }, + "npm": { + "enabled": "Enabled", + "disabled": "Disabled", + "total": "Total" + }, + "coinmarketcap": { + "configure": "Configure one or more crypto currencies to track", + "1hour": "1 Hour", + "1day": "1 Day", + "7days": "7 Days", + "30days": "30 Days" + }, + "mastodon": { + "domain_count": "Domains", + "user_count": "Users", + "status_count": "Posts" + }, + "miniflux": { + "read": "Read", + "unread": "Unread" + }, + "gotify": { + "apps": "Applications", + "clients": "Clients", + "messages": "Messages" + }, + "prowlarr": { + "enableIndexers": "Indexers", + "numberOfGrabs": "Grabs", + "numberOfQueries": "Queries", + "numberOfFailGrabs": "Fail Grabs", + "numberOfFailQueries": "Fail Queries" + }, + "jackett": { + "configured": "Configured", + "errored": "Errored" + }, + "strelaysrv": { + "numActiveSessions": "Sessions", + "numConnections": "Connections", + "dataRelayed": "Relayed", + "transferRate": "Rate" + }, + "authentik": { + "users": "Users", + "loginsLast24H": "Logins (24h)", + "failedLoginsLast24H": "Failed Logins (24h)" + }, + "proxmox": { + "mem": "MEM", + "cpu": "CPU", + "vms": "VMs", + "lxc": "LXC" + }, + "glances": { + "cpu": "CPU", + "mem": "MEM", + "wait": "Please wait" + }, + "quicklaunch": { + "bookmark": "Bookmark", + "service": "Service" + }, + "homebridge": { + "available_update": "System", + "updates": "Updates", + "child_bridges_status": "{{ok}}/{{total}}", + "update_available": "Update Available", + "up_to_date": "Up to Date", + "child_bridges": "Child Bridges" + }, + "watchtower": { + "containers_scanned": "Scanned", + "containers_updated": "Updated", + "containers_failed": "Failed" + }, + "autobrr": { + "approvedPushes": "Approved", + "rejectedPushes": "Rejected", + "filters": "Filters", + "indexers": "Indexers" + }, + "tubearchivist": { + "downloads": "Queue", + "videos": "Videos", + "channels": "Channels", + "playlists": "Playlists" + }, + "truenas": { + "load": "System Load", + "uptime": "Uptime", + "alerts": "Alerts", + "time": "{{value, number(style: unit; unitDisplay: long;)}}" + }, + "scrutiny": { + "passed": "Passed", + "failed": "Failed", + "unknown": "Unknown" + }, + "paperlessngx": { + "inbox": "Inbox", + "total": "Total" + }, + "nextdns": { + "wait": "Please Wait", + "no_devices": "No Device Data Received" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" + } +}