From d49a06efd983c36b37af941ec1574048d0fee10f Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 6 Apr 2024 17:35:12 -0700 Subject: [PATCH 01/38] Fix: rename pialert to netalertx (#3253) --- docs/widgets/services/netalertx.md | 16 +++++++++ docs/widgets/services/pialert.md | 16 --------- public/locales/en/common.json | 2 +- src/widgets/components.js | 3 +- src/widgets/netalertx/component.jsx | 37 ++++++++++++++++++++ src/widgets/{pialert => netalertx}/widget.js | 0 src/widgets/pialert/component.jsx | 37 -------------------- src/widgets/widgets.js | 5 +-- 8 files changed, 59 insertions(+), 57 deletions(-) create mode 100644 docs/widgets/services/netalertx.md delete mode 100644 docs/widgets/services/pialert.md create mode 100644 src/widgets/netalertx/component.jsx rename src/widgets/{pialert => netalertx}/widget.js (100%) delete mode 100644 src/widgets/pialert/component.jsx diff --git a/docs/widgets/services/netalertx.md b/docs/widgets/services/netalertx.md new file mode 100644 index 00000000..4579d74c --- /dev/null +++ b/docs/widgets/services/netalertx.md @@ -0,0 +1,16 @@ +--- +title: NetAlertX +description: NetAlertX (formerly PiAlert) Widget Configuration +--- + +Learn more about [NetAlertX](https://github.com/jokob-sk/NetAlertX). + +_Note that the project was renamed from PiAlert to NetAlertX._ + +Allowed fields: `["total", "connected", "new_devices", "down_alerts"]`. + +```yaml +widget: + type: netalertx + url: http://ip:port +``` diff --git a/docs/widgets/services/pialert.md b/docs/widgets/services/pialert.md deleted file mode 100644 index ab8fb1e9..00000000 --- a/docs/widgets/services/pialert.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -title: PiAlert -description: PiAlert Widget Configuration ---- - -Learn more about [PiAlert](https://github.com/jokob-sk/Pi.Alert). - -Note that [pucherot/PiAlert](https://github.com/pucherot/Pi.Alert) has been abandoned and might not work properly. - -Allowed fields: `["total", "connected", "new_devices", "down_alerts"]`. - -```yaml -widget: - type: pialert - url: http://ip:port -``` diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 98daae9e..3ac3ed0d 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -277,7 +277,7 @@ "approved": "Approved", "available": "Available" }, - "pialert": { + "netalertx": { "total": "Total", "connected": "Connected", "new_devices": "New Devices", diff --git a/src/widgets/components.js b/src/widgets/components.js index 8c85bd77..500fe0ce 100644 --- a/src/widgets/components.js +++ b/src/widgets/components.js @@ -63,6 +63,7 @@ const components = { moonraker: dynamic(() => import("./moonraker/component")), mylar: dynamic(() => import("./mylar/component")), navidrome: dynamic(() => import("./navidrome/component")), + netalertx: dynamic(() => import("./netalertx/component")), netdata: dynamic(() => import("./netdata/component")), nextcloud: dynamic(() => import("./nextcloud/component")), nextdns: dynamic(() => import("./nextdns/component")), @@ -80,7 +81,7 @@ const components = { pfsense: dynamic(() => import("./pfsense/component")), photoprism: dynamic(() => import("./photoprism/component")), proxmoxbackupserver: dynamic(() => import("./proxmoxbackupserver/component")), - pialert: dynamic(() => import("./pialert/component")), + pialert: dynamic(() => import("./netalertx/component")), pihole: dynamic(() => import("./pihole/component")), plantit: dynamic(() => import("./plantit/component")), plex: dynamic(() => import("./plex/component")), diff --git a/src/widgets/netalertx/component.jsx b/src/widgets/netalertx/component.jsx new file mode 100644 index 00000000..5172121e --- /dev/null +++ b/src/widgets/netalertx/component.jsx @@ -0,0 +1,37 @@ +import { useTranslation } from "next-i18next"; + +import Container from "components/services/widget/container"; +import Block from "components/services/widget/block"; +import useWidgetAPI from "utils/proxy/use-widget-api"; + +export default function Component({ service }) { + const { t } = useTranslation(); + + const { widget } = service; + + const { data: netalertxData, error: netalertxError } = useWidgetAPI(widget, "data"); + + if (netalertxError) { + return ; + } + + if (!netalertxData) { + return ( + + + + + + + ); + } + + return ( + + + + + + + ); +} diff --git a/src/widgets/pialert/widget.js b/src/widgets/netalertx/widget.js similarity index 100% rename from src/widgets/pialert/widget.js rename to src/widgets/netalertx/widget.js diff --git a/src/widgets/pialert/component.jsx b/src/widgets/pialert/component.jsx deleted file mode 100644 index 49bef897..00000000 --- a/src/widgets/pialert/component.jsx +++ /dev/null @@ -1,37 +0,0 @@ -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: pialertData, error: pialertError } = useWidgetAPI(widget, "data"); - - if (pialertError) { - return ; - } - - if (!pialertData) { - return ( - - - - - - - ); - } - - return ( - - - - - - - ); -} diff --git a/src/widgets/widgets.js b/src/widgets/widgets.js index 6e02d932..7ed98bfb 100644 --- a/src/widgets/widgets.js +++ b/src/widgets/widgets.js @@ -55,6 +55,7 @@ import mjpeg from "./mjpeg/widget"; import moonraker from "./moonraker/widget"; import mylar from "./mylar/widget"; import navidrome from "./navidrome/widget"; +import netalertx from "./netalertx/widget"; import netdata from "./netdata/widget"; import nextcloud from "./nextcloud/widget"; import nextdns from "./nextdns/widget"; @@ -73,7 +74,6 @@ import peanut from "./peanut/widget"; import pfsense from "./pfsense/widget"; import photoprism from "./photoprism/widget"; import proxmoxbackupserver from "./proxmoxbackupserver/widget"; -import pialert from "./pialert/widget"; import pihole from "./pihole/widget"; import plantit from "./plantit/widget"; import plex from "./plex/widget"; @@ -171,6 +171,7 @@ const widgets = { moonraker, mylar, navidrome, + netalertx, netdata, nextcloud, nextdns, @@ -189,7 +190,7 @@ const widgets = { pfsense, photoprism, proxmoxbackupserver, - pialert, + pialert: netalertx, pihole, plantit, plex, From f82a122e26ce843075269ae380dd71b9af516423 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 6 Apr 2024 20:00:16 -0700 Subject: [PATCH 02/38] Fix site monitor with error --- src/components/services/site-monitor.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/services/site-monitor.jsx b/src/components/services/site-monitor.jsx index 4e70c80a..3d5ef79e 100644 --- a/src/components/services/site-monitor.jsx +++ b/src/components/services/site-monitor.jsx @@ -12,7 +12,7 @@ export default function SiteMonitor({ group, service, style }) { let statusTitle = t("siteMonitor.http_status"); let statusText = ""; - if (error) { + if (error || (data && data.error)) { colorClass = "text-rose-500"; statusText = t("siteMonitor.error"); statusTitle += ` ${t("siteMonitor.error")}`; From 4239e8fe97ef064ed5ea2fd89cd65106032f73f7 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 8 Apr 2024 07:58:41 -0700 Subject: [PATCH 03/38] Update contributing / development guidelines --- CONTRIBUTING.md | 6 +++++- docs/more/development.md | 5 +++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 48f2818d..d3b07697 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -48,11 +48,15 @@ Please see information in the docs regarding [code formatting with pre-commit ho By contributing, you agree that your contributions will be licensed under its GNU General Public License. +## Use of AI for pull requests + +In general, homepage does not accept "AI-generated" PRs. If you choose to use something like that to aid the development process to generate a significant proportion of the pull request, please make sure this is explicitly stated in the PR itself. + ## References This document was adapted from the open-source contribution guidelines for [Facebook's Draft](https://github.com/facebook/draft-js/blob/main/CONTRIBUTING.md) -# Automatic Respository Maintenance +## Automatic Respository Maintenance The homepage team appreciates all effort and interest from the community in filing bug reports, creating feature requests, sharing ideas and helping other community members. That said, in an effort to keep the repository organized and managebale the project uses automatic handling of certain areas: diff --git a/docs/more/development.md b/docs/more/development.md index 8e3fac13..ec580cff 100644 --- a/docs/more/development.md +++ b/docs/more/development.md @@ -39,6 +39,11 @@ Once installed, hooks will run when you commit. If the formatting isn't quite ri See the [pre-commit documentation](https://pre-commit.com/#install) to get started. +## Preferring self-hosted open-source software + +In general, homepage is meant to be a dashboard for 'self-hosted' services and we believe it is a small way we can help showcase this kind of software. While exceptions are made, mostly when there is no viable +self-hosted / open-source alternative, we ask that any widgets, etc. are developed primarily for a self-hosted tool. + ## New Feature Guidelines - New features should be linked to an existing feature request with at least 10 'up-votes'. The purpose of this requirement is to avoid the addition (and maintenance) of features that might only benefit a small number of users. From ffad2b890ee3bccf9ac40c4b9dc2e941d733d806 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 8 Apr 2024 10:20:52 -0700 Subject: [PATCH 04/38] New Crowdin translations by GitHub Action (#3199) Co-authored-by: Crowdin Bot --- public/locales/af/common.json | 6 +- public/locales/ar/common.json | 14 +- public/locales/bg/common.json | 12 +- public/locales/ca/common.json | 6 +- public/locales/cs/common.json | 12 +- public/locales/da/common.json | 14 +- public/locales/de/common.json | 6 +- public/locales/el/common.json | 6 +- public/locales/eo/common.json | 6 +- public/locales/es/common.json | 48 +- public/locales/eu/common.json | 6 +- public/locales/fi/common.json | 6 +- public/locales/fr/common.json | 14 +- public/locales/he/common.json | 6 +- public/locales/hi/common.json | 6 +- public/locales/hr/common.json | 14 +- public/locales/hu/common.json | 14 +- public/locales/id/common.json | 14 +- public/locales/it/common.json | 14 +- public/locales/ja/common.json | 14 +- public/locales/ko/common.json | 6 +- public/locales/lv/common.json | 6 +- public/locales/ms/common.json | 6 +- public/locales/nl/common.json | 14 +- public/locales/no/common.json | 848 +++++++++++++++-------------- public/locales/pl/common.json | 178 +++--- public/locales/pt/common.json | 14 +- public/locales/pt_BR/common.json | 84 +-- public/locales/ro/common.json | 6 +- public/locales/ru/common.json | 14 +- public/locales/sk/common.json | 14 +- public/locales/sl/common.json | 14 +- public/locales/sr/common.json | 6 +- public/locales/sv/common.json | 6 +- public/locales/te/common.json | 6 +- public/locales/th/common.json | 6 +- public/locales/tr/common.json | 14 +- public/locales/uk/common.json | 14 +- public/locales/vi/common.json | 6 +- public/locales/yue/common.json | 18 +- public/locales/zh-Hans/common.json | 36 +- public/locales/zh-Hant/common.json | 18 +- 42 files changed, 870 insertions(+), 702 deletions(-) diff --git a/public/locales/af/common.json b/public/locales/af/common.json index 654130bb..1aab2d89 100644 --- a/public/locales/af/common.json +++ b/public/locales/af/common.json @@ -277,7 +277,7 @@ "approved": "Goedgekeur", "available": "Beskikbaar" }, - "pialert": { + "netalertx": { "total": "Totaal", "connected": "Gekoppel", "new_devices": "Nuwe Toestelle", @@ -872,5 +872,9 @@ "labels": "Etikette", "users": "Gebruikers", "totalValue": "Totale Waarde" + }, + "crowdsec": { + "alerts": "Waarskuwings", + "bans": "Verbanne" } } diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json index 28497fd4..b66a97a8 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "في انتظار قطع الاتصال", "connectionStatusDisconnecting": "جار قطع الاتصال", "connectionStatusDisconnected": "غير متصل", - "connectionStatusConnected": "متصل", + "connectionStatusConnected": "Connected", "uptime": "مدة التشغيل", "maxDown": "أقصى حد للتنزيل", "maxUp": "أقصى حد للتحميل", @@ -277,11 +277,11 @@ "approved": "مصدق", "available": "متاح" }, - "pialert": { + "netalertx": { "total": "المجموع", - "connected": "متصل", - "new_devices": "أجهزة جديدة", - "down_alerts": "تنبيهات تعطل الخوادم" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "الاستعلامات", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "المستخدمون", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "تنبيهات", + "bans": "Bans" } } diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json index 3fc1676b..0d232fc1 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Pending Disconnect", "connectionStatusDisconnecting": "Disconnecting", "connectionStatusDisconnected": "Disconnected", - "connectionStatusConnected": "Свързано", + "connectionStatusConnected": "Connected", "uptime": "Uptime", "maxDown": "Max. Down", "maxUp": "Max. Up", @@ -277,10 +277,10 @@ "approved": "Одобрен", "available": "Наличен" }, - "pialert": { + "netalertx": { "total": "Общо", - "connected": "Свързано", - "new_devices": "Нови устройства", + "connected": "Connected", + "new_devices": "New Devices", "down_alerts": "Down Alerts" }, "pihole": { @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Потребители", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Предупреждения", + "bans": "Bans" } } diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json index 4c7796ff..382f5237 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -277,7 +277,7 @@ "approved": "Aprovat", "available": "Disponible" }, - "pialert": { + "netalertx": { "total": "Total", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Usuaris", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alerts", + "bans": "Bans" } } diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index 81043207..f1540dd7 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Čeká na odpojení", "connectionStatusDisconnecting": "Odpojování", "connectionStatusDisconnected": "Odpojeno", - "connectionStatusConnected": "Připojeno", + "connectionStatusConnected": "Connected", "uptime": "Doba spuštění", "maxDown": "Max. Down", "maxUp": "Max. Up", @@ -277,10 +277,10 @@ "approved": "Schváleno", "available": "Dostupné" }, - "pialert": { + "netalertx": { "total": "Celkem", - "connected": "Připojeno", - "new_devices": "Nová zařízení", + "connected": "Connected", + "new_devices": "New Devices", "down_alerts": "Down Alerts" }, "pihole": { @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Uživatelé", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Upozornění", + "bans": "Bans" } } diff --git a/public/locales/da/common.json b/public/locales/da/common.json index 390cb1f6..661032bc 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Pending Disconnect", "connectionStatusDisconnecting": "Disconnecting", "connectionStatusDisconnected": "Disconnected", - "connectionStatusConnected": "Forbundet", + "connectionStatusConnected": "Connected", "uptime": "Oppetid", "maxDown": "Max. Down", "maxUp": "Max. Up", @@ -277,11 +277,11 @@ "approved": "Godkendt", "available": "Tilgængelig" }, - "pialert": { + "netalertx": { "total": "Total", - "connected": "Forbundet", - "new_devices": "Nye Enheder", - "down_alerts": "Nedadvarsler" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Forespørgsler", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Brugere", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Advarsler", + "bans": "Bans" } } diff --git a/public/locales/de/common.json b/public/locales/de/common.json index 529c5ea5..82212c69 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -277,7 +277,7 @@ "approved": "Genehmigt", "available": "Verfügbar" }, - "pialert": { + "netalertx": { "total": "Gesamt", "connected": "Verbunden", "new_devices": "Neue Geräte", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Benutzer", "totalValue": "Gesamtwert" + }, + "crowdsec": { + "alerts": "Warnungen", + "bans": "Bans" } } diff --git a/public/locales/el/common.json b/public/locales/el/common.json index d006f1cc..d4f55f98 100644 --- a/public/locales/el/common.json +++ b/public/locales/el/common.json @@ -277,7 +277,7 @@ "approved": "Εγκρίθηκε", "available": "Διαθέσιμο" }, - "pialert": { + "netalertx": { "total": "Σύνολο", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Χρήστες", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Ειδοποιήσεις", + "bans": "Bans" } } diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json index 3b1fa0f5..4fa17c47 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -277,7 +277,7 @@ "approved": "Aprobita", "available": "Havebla" }, - "pialert": { + "netalertx": { "total": "Totalo", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Uzantoj", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alerts", + "bans": "Bans" } } diff --git a/public/locales/es/common.json b/public/locales/es/common.json index c65cff84..10aa7c6c 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -12,7 +12,7 @@ "number": "{{value, number}}", "ms": "{{value, number}}", "date": "{{value, date}}", - "relativeDate": "{{value, relativeDate}}", + "relativeDate": "{{valor, relativaFecha}}", "uptime": "{{value, uptime}}", "months": "me", "days": "d", @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Desconexión pendiente", "connectionStatusDisconnecting": "Desconectando", "connectionStatusDisconnected": "Desconectado", - "connectionStatusConnected": "Conectado", + "connectionStatusConnected": "Connected", "uptime": "Tiempo activo", "maxDown": "Descarga máxima", "maxUp": "Subida máxima", @@ -277,11 +277,11 @@ "approved": "Aprobado", "available": "Disponible" }, - "pialert": { + "netalertx": { "total": "Total", - "connected": "Conectado", - "new_devices": "Nuevos dispositivos", - "down_alerts": "Alertas de caídas" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Consultas", @@ -427,7 +427,7 @@ "custom": "Personalizado", "visit": "Visitar", "url": "Enlace", - "searchsuggestion": "Suggestion" + "searchsuggestion": "Sugerencia" }, "wmo": { "0-day": "Soleado", @@ -546,12 +546,12 @@ "hd": "Alta definición", "tunerCount": "Tuners", "channelNumber": "Canal", - "channelNetwork": "Network", - "signalStrength": "Strength", - "signalQuality": "Quality", - "symbolQuality": "Quality", + "channelNetwork": "Red", + "signalStrength": "Intensidad", + "signalQuality": "Calidad", + "symbolQuality": "Calidad", "networkRate": "Tasa de bits", - "clientIP": "Client" + "clientIP": "Cliente" }, "scrutiny": { "passed": "Aprobado", @@ -798,10 +798,10 @@ }, "openwrt": { "uptime": "Tiempo activo", - "cpuLoad": "CPU Load Avg (5m)", + "cpuLoad": "Carga promedio del CPU (5m)", "up": "Activo", "down": "Inactivo", - "bytesTx": "Transmitted", + "bytesTx": "Transmitido", "bytesRx": "Recibido" }, "uptimerobot": { @@ -826,21 +826,21 @@ "noEventsFound": "No se encontraron eventos" }, "romm": { - "platforms": "Platforms", + "platforms": "Plataformas", "totalRoms": "Total ROMs" }, "netdata": { - "warnings": "Warnings", - "criticals": "Criticals" + "warnings": "Advertencias", + "criticals": "Críticos" }, "plantit": { - "events": "Events", + "events": "Eventos", "plants": "Plants", "photos": "Fotos", "species": "Species" }, "gitea": { - "notifications": "Notifications", + "notifications": "Notificaciones", "issues": "Números", "pulls": "Pull Requests" }, @@ -852,7 +852,7 @@ "sceneSize": "Scenes Size", "sceneDuration": "Scenes Duration", "images": "Imágenes", - "imageSize": "Images Size", + "imageSize": "Tamaño de imagen", "galleries": "Galerías", "performers": "Performers", "studios": "Studios", @@ -869,8 +869,12 @@ "items": "Items", "totalWithWarranty": "Con Garantía", "locations": "Ubicaciones", - "labels": "Labels", + "labels": "Etiquetas", "users": "Usuarios", - "totalValue": "Total Value" + "totalValue": "Valor total" + }, + "crowdsec": { + "alerts": "Alertas", + "bans": "Bans" } } diff --git a/public/locales/eu/common.json b/public/locales/eu/common.json index 0748eab0..6625148c 100644 --- a/public/locales/eu/common.json +++ b/public/locales/eu/common.json @@ -277,7 +277,7 @@ "approved": "Approved", "available": "Available" }, - "pialert": { + "netalertx": { "total": "Guztira", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Users", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alerts", + "bans": "Bans" } } diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json index ec4c11b7..b775e970 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -277,7 +277,7 @@ "approved": "Hyväksytty", "available": "Saatavilla" }, - "pialert": { + "netalertx": { "total": "Yhteensä", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Users", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alerts", + "bans": "Bans" } } diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index d2cd1a5c..17975096 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Déconnexion en attente", "connectionStatusDisconnecting": "Déconnexion en cours", "connectionStatusDisconnected": "Déconnecté", - "connectionStatusConnected": "Connecté", + "connectionStatusConnected": "Connected", "uptime": "Démarré depuis", "maxDown": "Max. Bas", "maxUp": "Max. Haut", @@ -277,11 +277,11 @@ "approved": "Validé", "available": "Disponible" }, - "pialert": { + "netalertx": { "total": "Total", - "connected": "Connecté", - "new_devices": "Nouvel Appareil", - "down_alerts": "Alertes" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Requêtes", @@ -872,5 +872,9 @@ "labels": "Étiquettes", "users": "Utilisateurs", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alertes", + "bans": "Bans" } } diff --git a/public/locales/he/common.json b/public/locales/he/common.json index d18f9856..a420823e 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -277,7 +277,7 @@ "approved": "מאושר", "available": "זמין" }, - "pialert": { + "netalertx": { "total": "סה\"כ", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Users", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alerts", + "bans": "Bans" } } diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json index f05d60e0..866a1280 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -277,7 +277,7 @@ "approved": "Approved", "available": "Available" }, - "pialert": { + "netalertx": { "total": "Total", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Users", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alerts", + "bans": "Bans" } } diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json index 03cc8919..4b323b40 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Odspajanje u tijeku", "connectionStatusDisconnecting": "Odspajanje", "connectionStatusDisconnected": "Odspojeno", - "connectionStatusConnected": "Povezano", + "connectionStatusConnected": "Connected", "uptime": "Vrijeme rada", "maxDown": "Maksimum preuzimanja", "maxUp": "Maksimum prijenosa", @@ -277,11 +277,11 @@ "approved": "Odobreno", "available": "Dostupno" }, - "pialert": { + "netalertx": { "total": "Ukupno", - "connected": "Povezano", - "new_devices": "Novi uređaji", - "down_alerts": "Obavijesti o nedostupnosti" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Upiti", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Korisnici", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Upozorenja", + "bans": "Bans" } } diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json index d1ac7035..735de467 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Szétkapcsolás függőben", "connectionStatusDisconnecting": "Kapcsolat bontása", "connectionStatusDisconnected": "Kapcsolat bontva", - "connectionStatusConnected": "Csatlakoztatott", + "connectionStatusConnected": "Connected", "uptime": "Üzemidő", "maxDown": "Max let.", "maxUp": "Max felt.", @@ -277,11 +277,11 @@ "approved": "Engedélyezett", "available": "Elérhető" }, - "pialert": { + "netalertx": { "total": "Összes", - "connected": "Csatlakoztatott", - "new_devices": "Új Eszközök", - "down_alerts": "Leállási Figyelmeztetések" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Lekérdezések", @@ -872,5 +872,9 @@ "labels": "Címkék", "users": "Felhasználók", "totalValue": "Teljes érték" + }, + "crowdsec": { + "alerts": "Riasztások", + "bans": "Bans" } } diff --git a/public/locales/id/common.json b/public/locales/id/common.json index 38d44f4b..c1ca4450 100644 --- a/public/locales/id/common.json +++ b/public/locales/id/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Menunggu Terputus", "connectionStatusDisconnecting": "Sedan Memutus", "connectionStatusDisconnected": "Terputus", - "connectionStatusConnected": "Tersambung", + "connectionStatusConnected": "Connected", "uptime": "Waktu Aktif", "maxDown": "Maks Unduh", "maxUp": "Maks Unggah", @@ -277,11 +277,11 @@ "approved": "Tersetujui", "available": "Tersedia" }, - "pialert": { + "netalertx": { "total": "Total", - "connected": "Tersambung", - "new_devices": "Perangkat Baru", - "down_alerts": "Alert Mati" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Kueri", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Pengguna", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Peringatan", + "bans": "Bans" } } diff --git a/public/locales/it/common.json b/public/locales/it/common.json index 421807f2..a795bc57 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "In attesa di disconnessione", "connectionStatusDisconnecting": "Disconnessione in corso", "connectionStatusDisconnected": "Disconnesso", - "connectionStatusConnected": "Connesso", + "connectionStatusConnected": "Connected", "uptime": "Tempo di attività", "maxDown": "Max. Down", "maxUp": "Max. Up", @@ -277,11 +277,11 @@ "approved": "Approvati", "available": "Disponibili" }, - "pialert": { + "netalertx": { "total": "Totale", - "connected": "Connesso", - "new_devices": "Nuovi Dispositivi", - "down_alerts": "Avvisi di Disservizio" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Richieste", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Utenti", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Allarmi", + "bans": "Bans" } } diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json index a4507bf4..e2f6a57b 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "接続を切断する", "connectionStatusDisconnecting": "接続を切断中", "connectionStatusDisconnected": "切断されました", - "connectionStatusConnected": "接続済み", + "connectionStatusConnected": "Connected", "uptime": "稼働時間", "maxDown": "最大ダウン", "maxUp": "最大アップ", @@ -277,11 +277,11 @@ "approved": "承認済", "available": "利用可" }, - "pialert": { + "netalertx": { "total": "合計", - "connected": "接続済み", - "new_devices": "新しいデバイス", - "down_alerts": "ダウンアラート" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "クエリ", @@ -872,5 +872,9 @@ "labels": "ラベル", "users": "ユーザ", "totalValue": "合計値" + }, + "crowdsec": { + "alerts": "アラート", + "bans": "Bans" } } diff --git a/public/locales/ko/common.json b/public/locales/ko/common.json index da8aa492..5e7a90e1 100644 --- a/public/locales/ko/common.json +++ b/public/locales/ko/common.json @@ -277,7 +277,7 @@ "approved": "승인됨", "available": "이용 가능" }, - "pialert": { + "netalertx": { "total": "총합", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "사용자", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "경고", + "bans": "Bans" } } diff --git a/public/locales/lv/common.json b/public/locales/lv/common.json index 8211b753..1a46c862 100644 --- a/public/locales/lv/common.json +++ b/public/locales/lv/common.json @@ -277,7 +277,7 @@ "approved": "Approved", "available": "Available" }, - "pialert": { + "netalertx": { "total": "Kopā", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Lietotāji", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Paziņojumi", + "bans": "Bans" } } diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json index 46f08be8..f9583148 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -277,7 +277,7 @@ "approved": "Lulus", "available": "Sudah Ada" }, - "pialert": { + "netalertx": { "total": "Jumlah", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Pengguna", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alerts", + "bans": "Bans" } } diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json index f1cd7aac..8aff253e 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -277,7 +277,7 @@ "approved": "Goedgekeurd", "available": "Beschikbaar" }, - "pialert": { + "netalertx": { "total": "Totaal", "connected": "Verbonden", "new_devices": "Nieuwe Apparaten", @@ -826,8 +826,8 @@ "noEventsFound": "Geen gebeurtenissen gevonden" }, "romm": { - "platforms": "Platforms", - "totalRoms": "Total ROMs" + "platforms": "Platformen", + "totalRoms": "Totale ROM's" }, "netdata": { "warnings": "Waarschuwingen", @@ -840,7 +840,7 @@ "species": "Soorten" }, "gitea": { - "notifications": "Notifications", + "notifications": "Notificaties", "issues": "Problemen", "pulls": "Pull Requests" }, @@ -863,7 +863,7 @@ "tandoor": { "users": "Gebruikers", "recipes": "Recepten", - "keywords": "Keywords" + "keywords": "Trefwoorden" }, "homebox": { "items": "Items", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Gebruikers", "totalValue": "Totale waarde" + }, + "crowdsec": { + "alerts": "Meldingen", + "bans": "Bans" } } diff --git a/public/locales/no/common.json b/public/locales/no/common.json index 86d6b20b..bfc335c9 100644 --- a/public/locales/no/common.json +++ b/public/locales/no/common.json @@ -14,76 +14,76 @@ "date": "{{value, date}}", "relativeDate": "{{value, relativeDate}}", "uptime": "{{value, uptime}}", - "months": "mo", + "months": "mnd", "days": "d", - "hours": "h", + "hours": "t", "minutes": "m", "seconds": "s" }, "widget": { - "missing_type": "Missing Widget Type: {{type}}", - "api_error": "API Error", - "information": "Information", + "missing_type": "Manglende Widget Type: {{type}}", + "api_error": "API-feil", + "information": "Informasjon", "status": "Status", - "url": "URL", - "raw_error": "Raw Error", - "response_data": "Response Data" + "url": "Nettadresse", + "raw_error": "Rå feil", + "response_data": "Responsdata" }, "weather": { - "current": "Current Location", - "allow": "Click to allow", - "updating": "Updating", - "wait": "Please wait" + "current": "Gjeldende posisjon", + "allow": "Trykk for å tillate", + "updating": "Oppdaterer", + "wait": "Vennligst vent" }, "search": { - "placeholder": "Search…" + "placeholder": "Søk…" }, "resources": { "cpu": "CPU", "mem": "MEM", - "total": "Total", - "free": "Free", - "used": "Used", - "load": "Load", + "total": "Totalt", + "free": "Ledig", + "used": "Brukt", + "load": "Last", "temp": "TEMP", - "max": "Max", - "uptime": "UP" + "max": "Maks", + "uptime": "OPP" }, "unifi": { - "users": "Users", - "uptime": "Uptime", - "days": "Days", + "users": "Brukere", + "uptime": "Oppetid", + "days": "Dager", "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", - "empty_data": "Subsystem status unknown" + "devices": "Enheter", + "lan_devices": "LAN-enheter", + "wlan_devices": "WLAN-enheter", + "lan_users": "LAN Brukere", + "wlan_users": "WLAN Brukere", + "up": "OPP", + "down": "NEDE", + "wait": "Vennligst vent", + "empty_data": "Ukjent undersystemstatus" }, "docker": { "rx": "RX", "tx": "TX", "mem": "MEM", "cpu": "CPU", - "running": "Running", - "offline": "Offline", - "error": "Error", - "unknown": "Unknown", - "healthy": "Healthy", - "starting": "Starting", - "unhealthy": "Unhealthy", + "running": "Kjører", + "offline": "Frakoblet", + "error": "Feil", + "unknown": "Ukjent", + "healthy": "Friskt", + "starting": "Starter", + "unhealthy": "Usunn", "not_found": "Not Found", "exited": "Exited", "partial": "Partial" }, "ping": { - "error": "Error", + "error": "Feil", "ping": "Ping", "down": "Down", "up": "Up", @@ -91,226 +91,226 @@ }, "siteMonitor": { "http_status": "HTTP status", - "error": "Error", - "response": "Response", + "error": "Feil", + "response": "Svar", "down": "Down", "up": "Up", "not_available": "Not Available" }, "emby": { - "playing": "Playing", - "transcoding": "Transcoding", + "playing": "Spiller", + "transcoding": "Transkoding", "bitrate": "Bitrate", - "no_active": "No Active Streams", - "movies": "Movies", - "series": "Series", - "episodes": "Episodes", - "songs": "Songs" + "no_active": "Ingen aktive strømminger", + "movies": "Film", + "series": "Serie", + "episodes": "Episoder", + "songs": "Sanger" }, "esphome": { - "offline": "Offline", - "offline_alt": "Offline", + "offline": "Frakoblet", + "offline_alt": "Frakoblet", "online": "Online", - "total": "Total", - "unknown": "Unknown" + "total": "Totalt", + "unknown": "Ukjent" }, "evcc": { - "pv_power": "Production", - "battery_soc": "Battery", - "grid_power": "Grid", - "home_power": "Consumption", - "charge_power": "Charger", - "watt_hour": "Wh" + "pv_power": "Produksjon", + "battery_soc": "Batteri", + "grid_power": "Nett", + "home_power": "Forbruk", + "charge_power": "Lader", + "watt_hour": "W/t" }, "flood": { - "download": "Download", - "upload": "Upload", + "download": "Last ned", + "upload": "Opplastning", "leech": "Leech", "seed": "Seed" }, "freshrss": { - "subscriptions": "Subscriptions", - "unread": "Unread" + "subscriptions": "Abonnementer", + "unread": "Ulest" }, "fritzbox": { "connectionStatus": "Status", - "connectionStatusUnconfigured": "Unconfigured", - "connectionStatusConnecting": "Connecting", - "connectionStatusAuthenticating": "Authenticating", - "connectionStatusPendingDisconnect": "Pending Disconnect", - "connectionStatusDisconnecting": "Disconnecting", - "connectionStatusDisconnected": "Disconnected", + "connectionStatusUnconfigured": "Ikke konfigurert", + "connectionStatusConnecting": "Kobler til", + "connectionStatusAuthenticating": "Autentisering", + "connectionStatusPendingDisconnect": "Venter på frakobling", + "connectionStatusDisconnecting": "Kobler fra", + "connectionStatusDisconnected": "Frakoblet", "connectionStatusConnected": "Connected", - "uptime": "Uptime", - "maxDown": "Max. Down", - "maxUp": "Max. Up", + "uptime": "Oppetid", + "maxDown": "Maks. Ned", + "maxUp": "Max. Opp", "down": "Down", "up": "Up", - "received": "Received", - "sent": "Sent", - "externalIPAddress": "Ext. IP" + "received": "Mottatt", + "sent": "Sendt", + "externalIPAddress": "Ekstern IP" }, "caddy": { - "upstreams": "Upstreams", - "requests": "Current requests", - "requests_failed": "Failed requests" + "upstreams": "Oppstrøms", + "requests": "Aktuelle forespørsler", + "requests_failed": "Mislykkede forespørsler" }, "changedetectionio": { - "totalObserved": "Total Observed", - "diffsDetected": "Diffs Detected" + "totalObserved": "Totalt sett", + "diffsDetected": "Diffs oppdaget" }, "channelsdvrserver": { "shows": "Shows", - "recordings": "Recordings", - "scheduled": "Scheduled", - "passes": "Passes" + "recordings": "Opptak", + "scheduled": "Tidsplan", + "passes": "Pasninger" }, "tautulli": { - "playing": "Playing", - "transcoding": "Transcoding", + "playing": "Spiller", + "transcoding": "Transkoding", "bitrate": "Bitrate", - "no_active": "No Active Streams", - "plex_connection_error": "Check Plex Connection" + "no_active": "Ingen aktive strømminger", + "plex_connection_error": "Kontroller Plex tilkoblingen" }, "omada": { - "connectedAp": "Connected APs", - "activeUser": "Active devices", - "alerts": "Alerts", - "connectedGateway": "Connected gateways", - "connectedSwitches": "Connected switches" + "connectedAp": "Tilkoblede AP'er", + "activeUser": "Aktive enheter", + "alerts": "Varsler", + "connectedGateway": "Tilkoblede gateways", + "connectedSwitches": "Tilkoblede switcher" }, "nzbget": { - "rate": "Rate", - "remaining": "Remaining", - "downloaded": "Downloaded" + "rate": "Ranger", + "remaining": "Gjenstående", + "downloaded": "Nedlastede" }, "plex": { - "streams": "Active Streams", - "albums": "Albums", - "movies": "Movies", - "tv": "TV Shows" + "streams": "Aktive strømmninger", + "albums": "Album", + "movies": "Film", + "tv": "TV serier" }, "sabnzbd": { - "rate": "Rate", - "queue": "Queue", - "timeleft": "Time Left" + "rate": "Ranger", + "queue": "Kø", + "timeleft": "Gjenstående tid" }, "rutorrent": { - "active": "Active", - "upload": "Upload", - "download": "Download" + "active": "Aktiv", + "upload": "Opplastning", + "download": "Last ned" }, "transmission": { - "download": "Download", - "upload": "Upload", + "download": "Last ned", + "upload": "Opplastning", "leech": "Leech", "seed": "Seed" }, "qbittorrent": { - "download": "Download", - "upload": "Upload", + "download": "Last ned", + "upload": "Opplastning", "leech": "Leech", "seed": "Seed" }, "qnap": { - "cpuUsage": "CPU Usage", - "memUsage": "MEM Usage", - "systemTempC": "System Temp", - "poolUsage": "Pool Usage", - "volumeUsage": "Volume Usage", - "invalid": "Invalid" + "cpuUsage": "CPU Bruk", + "memUsage": "Minnebruk", + "systemTempC": "System temp", + "poolUsage": "Pool Bruk", + "volumeUsage": "Volumbruk", + "invalid": "Ugyldig" }, "deluge": { - "download": "Download", - "upload": "Upload", + "download": "Last ned", + "upload": "Opplastning", "leech": "Leech", "seed": "Seed" }, "downloadstation": { - "download": "Download", - "upload": "Upload", + "download": "Last ned", + "upload": "Opplastning", "leech": "Leech", "seed": "Seed" }, "sonarr": { - "wanted": "Wanted", - "queued": "Queued", - "series": "Series", - "queue": "Queue", - "unknown": "Unknown" + "wanted": "Ønsket", + "queued": "Ventende", + "series": "Serie", + "queue": "Kø", + "unknown": "Ukjent" }, "radarr": { - "wanted": "Wanted", - "missing": "Missing", - "queued": "Queued", - "movies": "Movies", - "queue": "Queue", - "unknown": "Unknown" + "wanted": "Ønsket", + "missing": "Mangler", + "queued": "Ventende", + "movies": "Film", + "queue": "Kø", + "unknown": "Ukjent" }, "lidarr": { - "wanted": "Wanted", - "queued": "Queued", - "artists": "Artists" + "wanted": "Ønsket", + "queued": "Ventende", + "artists": "Artister" }, "readarr": { - "wanted": "Wanted", - "queued": "Queued", - "books": "Books" + "wanted": "Ønsket", + "queued": "Ventende", + "books": "Bøker" }, "bazarr": { - "missingEpisodes": "Missing Episodes", - "missingMovies": "Missing Movies" + "missingEpisodes": "Manglende episoder", + "missingMovies": "Manglende filmer" }, "ombi": { - "pending": "Pending", - "approved": "Approved", - "available": "Available" + "pending": "Ventende", + "approved": "Godkjent", + "available": "Tilgjengelig" }, "jellyseerr": { - "pending": "Pending", - "approved": "Approved", - "available": "Available" + "pending": "Ventende", + "approved": "Godkjent", + "available": "Tilgjengelig" }, "overseerr": { - "pending": "Pending", - "processing": "Processing", - "approved": "Approved", - "available": "Available" + "pending": "Ventende", + "processing": "Behandler", + "approved": "Godkjent", + "available": "Tilgjengelig" }, - "pialert": { - "total": "Total", + "netalertx": { + "total": "Totalt", "connected": "Connected", "new_devices": "New Devices", "down_alerts": "Down Alerts" }, "pihole": { - "queries": "Queries", - "blocked": "Blocked", - "blocked_percent": "Blocked %", - "gravity": "Gravity" + "queries": "Spørringer", + "blocked": "Blokkert", + "blocked_percent": "Blokkert %", + "gravity": "Gravitasjon" }, "adguard": { - "queries": "Queries", - "blocked": "Blocked", - "filtered": "Filtered", - "latency": "Latency" + "queries": "Spørringer", + "blocked": "Blokkert", + "filtered": "Filtrert", + "latency": "Responstid" }, "speedtest": { - "upload": "Upload", - "download": "Download", + "upload": "Opplastning", + "download": "Last ned", "ping": "Ping" }, "portainer": { - "running": "Running", - "stopped": "Stopped", - "total": "Total" + "running": "Kjører", + "stopped": "Stoppet", + "total": "Totalt" }, "tailscale": { - "address": "Address", - "expires": "Expires", - "never": "Never", - "last_seen": "Last Seen", - "now": "Now", + "address": "Adresse", + "expires": "Utgår", + "never": "Aldri", + "last_seen": "Sist sett", + "now": "Nå", "years": "{{number}}y", "weeks": "{{number}}w", "days": "{{number}}d", @@ -320,7 +320,7 @@ "ago": "{{value}} Ago" }, "tdarr": { - "queue": "Queue", + "queue": "Kø", "processed": "Processed", "errored": "Errored", "saved": "Saved" @@ -331,13 +331,13 @@ "middleware": "Middleware" }, "navidrome": { - "nothing_streaming": "No Active Streams", + "nothing_streaming": "Ingen aktive strømminger", "please_wait": "Please Wait" }, "npm": { "enabled": "Enabled", "disabled": "Disabled", - "total": "Total" + "total": "Totalt" }, "coinmarketcap": { "configure": "Configure one or more crypto currencies to track", @@ -354,7 +354,7 @@ "prowlarr": { "enableIndexers": "Indexers", "numberOfGrabs": "Grabs", - "numberOfQueries": "Queries", + "numberOfQueries": "Spørringer", "numberOfFailGrabs": "Fail Grabs", "numberOfFailQueries": "Fail Queries" }, @@ -366,33 +366,33 @@ "numActiveSessions": "Sessions", "numConnections": "Connections", "dataRelayed": "Relayed", - "transferRate": "Rate" + "transferRate": "Ranger" }, "mastodon": { - "user_count": "Users", + "user_count": "Brukere", "status_count": "Posts", "domain_count": "Domains" }, "medusa": { - "wanted": "Wanted", - "queued": "Queued", - "series": "Series" + "wanted": "Ønsket", + "queued": "Ventende", + "series": "Serie" }, "minecraft": { "players": "Players", - "version": "Version", + "version": "Versjon", "status": "Status", "up": "Online", - "down": "Offline" + "down": "Frakoblet" }, "miniflux": { "read": "Read", - "unread": "Unread" + "unread": "Ulest" }, "authentik": { - "users": "Users", + "users": "Brukere", "loginsLast24H": "Logins (24h)", - "failedLoginsLast24H": "Failed Logins (24h)" + "failedLoginsLast24H": "Mislykket innlogginger (24t)" }, "proxmox": { "mem": "MEM", @@ -402,211 +402,211 @@ }, "glances": { "cpu": "CPU", - "load": "Load", - "wait": "Please wait", + "load": "Last", + "wait": "Vennligst vent", "temp": "TEMP", "_temp": "Temp", - "warn": "Warn", - "uptime": "UP", - "total": "Total", - "free": "Free", - "used": "Used", + "warn": "Advarsel", + "uptime": "OPP", + "total": "Totalt", + "free": "Ledig", + "used": "Brukt", "days": "d", - "hours": "h", + "hours": "t", "crit": "Crit", "read": "Read", - "write": "Write", + "write": "Skriv", "gpu": "GPU", "mem": "Mem", "swap": "Swap" }, "quicklaunch": { - "bookmark": "Bookmark", - "service": "Service", - "search": "Search", - "custom": "Custom", - "visit": "Visit", - "url": "URL", - "searchsuggestion": "Suggestion" + "bookmark": "Bokmerke", + "service": "Tjeneste", + "search": "Søk", + "custom": "Egendefinert", + "visit": "Besøk", + "url": "Nettadresse", + "searchsuggestion": "Forslag" }, "wmo": { - "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", - "45-day": "Foggy", - "45-night": "Foggy", - "48-day": "Foggy", - "48-night": "Foggy", - "51-day": "Light Drizzle", - "51-night": "Light Drizzle", - "53-day": "Drizzle", - "53-night": "Drizzle", - "55-day": "Heavy Drizzle", - "55-night": "Heavy Drizzle", - "56-day": "Light Freezing Drizzle", - "56-night": "Light Freezing 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", - "81-night": "Showers", - "82-day": "Heavy Showers", - "82-night": "Heavy 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" + "0-day": "Solfylt", + "0-night": "Klart", + "1-day": "Lettskyet", + "1-night": "Lettskyet", + "2-day": "Delvis skyet", + "2-night": "Delvis skyet", + "3-day": "Skyet", + "3-night": "Skyet", + "45-day": "Tåke", + "45-night": "Tåke", + "48-day": "Tåke", + "48-night": "Tåke", + "51-day": "Lett yr", + "51-night": "Lett yr", + "53-day": "Yr", + "53-night": "Yr", + "55-day": "Tungt Regn", + "55-night": "Tungt Regn", + "56-day": "Lett underkjølt regn", + "56-night": "Lett underkjølt regn", + "57-day": "Underkjølt Regn", + "57-night": "Underkjølt Regn", + "61-day": "Lett regn", + "61-night": "Lett regn", + "63-day": "Regn", + "63-night": "Regn", + "65-day": "Kraftig regn", + "65-night": "Kraftig regn", + "66-day": "Underkjølt regn", + "66-night": "Underkjølt regn", + "67-day": "Underkjølt regn", + "67-night": "Underkjølt regn", + "71-day": "Lett snøvær", + "71-night": "Lett snøvær", + "73-day": "Snø", + "73-night": "Snø", + "75-day": "Tett snø", + "75-night": "Tett snø", + "77-day": "Snøkorn", + "77-night": "Snøkorn", + "80-day": "Lette Regnbyger", + "80-night": "Lette Regnbyger", + "81-day": "Regnbyger", + "81-night": "Regnbyger", + "82-day": "Tunge regnbyger", + "82-night": "Tunge regnbyger", + "85-day": "Snøbyger", + "85-night": "Snøbyger", + "86-day": "Snøbyger", + "86-night": "Snøbyger", + "95-day": "Tordenbyger", + "95-night": "Tordenbyger", + "96-day": "Tordenvær med hagl", + "96-night": "Tordenvær med hagl", + "99-day": "Tordenvær med hagl", + "99-night": "Tordenvær med hagl" }, "homebridge": { "available_update": "System", - "updates": "Updates", - "update_available": "Update Available", - "up_to_date": "Up to Date", + "updates": "Oppdateringer", + "update_available": "Oppdatering tilgjengelig", + "up_to_date": "Oppdatert", "child_bridges": "Child Bridges", "child_bridges_status": "{{ok}}/{{total}}", "up": "Up", - "pending": "Pending", + "pending": "Ventende", "down": "Down" }, "healthchecks": { - "new": "New", + "new": "Ny", "up": "Up", - "grace": "In Grace Period", + "grace": "I rammeperiode", "down": "Down", - "paused": "Paused", + "paused": "Pauset", "status": "Status", - "last_ping": "Last Ping", - "never": "No pings yet" + "last_ping": "Siste Ping", + "never": "Ingen ping ennå" }, "watchtower": { - "containers_scanned": "Scanned", - "containers_updated": "Updated", - "containers_failed": "Failed" + "containers_scanned": "Skannet", + "containers_updated": "Oppdatert", + "containers_failed": "Mislyktes" }, "autobrr": { - "approvedPushes": "Approved", - "rejectedPushes": "Rejected", - "filters": "Filters", + "approvedPushes": "Godkjent", + "rejectedPushes": "Avvist", + "filters": "Filtre", "indexers": "Indexers" }, "tubearchivist": { - "downloads": "Queue", - "videos": "Videos", - "channels": "Channels", - "playlists": "Playlists" + "downloads": "Kø", + "videos": "Videoer", + "channels": "Kanal", + "playlists": "Spillelister" }, "truenas": { - "load": "System Load", - "uptime": "Uptime", - "alerts": "Alerts" + "load": "Last på systemet", + "uptime": "Oppetid", + "alerts": "Varsler" }, "pyload": { - "speed": "Speed", - "active": "Active", - "queue": "Queue", - "total": "Total" + "speed": "Hastighet", + "active": "Aktiv", + "queue": "Kø", + "total": "Totalt" }, "gluetun": { - "public_ip": "Public IP", + "public_ip": "Offentlig IP", "region": "Region", - "country": "Country" + "country": "Land" }, "hdhomerun": { - "channels": "Channels", + "channels": "Kanal", "hd": "HD", - "tunerCount": "Tuners", - "channelNumber": "Channel", - "channelNetwork": "Network", - "signalStrength": "Strength", - "signalQuality": "Quality", - "symbolQuality": "Quality", + "tunerCount": "Tunere", + "channelNumber": "Kanal", + "channelNetwork": "Nettverk", + "signalStrength": "Styrke", + "signalQuality": "Kvalitet", + "symbolQuality": "Kvalitet", "networkRate": "Bitrate", - "clientIP": "Client" + "clientIP": "Klient" }, "scrutiny": { - "passed": "Passed", - "failed": "Failed", - "unknown": "Unknown" + "passed": "Bestått", + "failed": "Mislyktes", + "unknown": "Ukjent" }, "paperlessngx": { - "inbox": "Inbox", - "total": "Total" + "inbox": "Innboks", + "total": "Totalt" }, "peanut": { - "battery_charge": "Battery Charge", - "ups_load": "UPS Load", - "ups_status": "UPS Status", + "battery_charge": "Batteriladning", + "ups_load": "UPS last", + "ups_status": "UPS status", "online": "Online", - "on_battery": "On Battery", - "low_battery": "Low Battery" + "on_battery": "På batteri", + "low_battery": "Lavt batterinivå" }, "nextdns": { "wait": "Please Wait", - "no_devices": "No Device Data Received" + "no_devices": "Ingen enhetsdata mottatt" }, "mikrotik": { - "cpuLoad": "CPU Load", - "memoryUsed": "Memory Used", - "uptime": "Uptime", + "cpuLoad": "Prosessorbelastning", + "memoryUsed": "Minne brukt", + "uptime": "Oppetid", "numberOfLeases": "Leases" }, "xteve": { - "streams_all": "All Streams", - "streams_active": "Active Streams", - "streams_xepg": "XEPG Channels" + "streams_all": "Alle strømminger", + "streams_active": "Aktive strømmninger", + "streams_xepg": "XEPG Kanaler" }, "opendtu": { - "yieldDay": "Today", - "absolutePower": "Power", - "relativePower": "Power %", - "limit": "Limit" + "yieldDay": "Idag", + "absolutePower": "Effekt", + "relativePower": "Effekt %", + "limit": "Grense" }, "opnsense": { - "cpu": "CPU Load", - "memory": "Active Memory", - "wanUpload": "WAN Upload", - "wanDownload": "WAN Download" + "cpu": "Prosessorbelastning", + "memory": "Aktiv minne", + "wanUpload": "WAN Opplasting", + "wanDownload": "WAN Nedlasting" }, "moonraker": { - "printer_state": "Printer State", + "printer_state": "Skriver tilstand", "print_status": "Print Status", - "print_progress": "Progress", - "layers": "Layers" + "print_progress": "Progresjon", + "layers": "Lag" }, "octoprint": { "printer_state": "Status", - "temp_tool": "Tool temp", - "temp_bed": "Bed temp", + "temp_tool": "Verktøy temperatur", + "temp_bed": "Seng temperatur", "job_completion": "Completion" }, "cloudflared": { @@ -630,48 +630,48 @@ "memory_usage": "Memory" }, "immich": { - "users": "Users", + "users": "Brukere", "photos": "Photos", - "videos": "Videos", - "storage": "Storage" + "videos": "Videoer", + "storage": "Lagring" }, "uptimekuma": { - "up": "Sites Up", + "up": "Nettsteder opp", "down": "Sites Down", - "uptime": "Uptime", + "uptime": "Oppetid", "incident": "Incident", "m": "m" }, "atsumeru": { - "series": "Series", + "series": "Serie", "archives": "Archives", "chapters": "Chapters", "categories": "Categories" }, "komga": { "libraries": "Libraries", - "series": "Series", - "books": "Books" + "series": "Serie", + "books": "Bøker" }, "diskstation": { - "days": "Days", - "uptime": "Uptime", - "volumeAvailable": "Available" + "days": "Dager", + "uptime": "Oppetid", + "volumeAvailable": "Tilgjengelig" }, "mylar": { - "series": "Series", + "series": "Serie", "issues": "Issues", - "wanted": "Wanted" + "wanted": "Ønsket" }, "photoprism": { - "albums": "Albums", + "albums": "Album", "photos": "Photos", - "videos": "Videos", + "videos": "Videoer", "people": "People" }, "fileflows": { - "queue": "Queue", - "processing": "Processing", + "queue": "Kø", + "processing": "Behandler", "processed": "Processed", "time": "Time" }, @@ -694,7 +694,7 @@ "size": "Size", "lastrun": "Last Run", "nextrun": "Next Run", - "failed": "Failed" + "failed": "Mislyktes" }, "unmanic": { "active_workers": "Active Workers", @@ -711,18 +711,18 @@ "targets_total": "Total Targets" }, "gatus": { - "up": "Sites Up", + "up": "Nettsteder opp", "down": "Sites Down", - "uptime": "Uptime" + "uptime": "Oppetid" }, "ghostfolio": { - "gross_percent_today": "Today", + "gross_percent_today": "Idag", "gross_percent_1y": "One year", "gross_percent_max": "All time" }, "audiobookshelf": { "podcasts": "Podcasts", - "books": "Books", + "books": "Bøker", "podcastsDuration": "Duration", "booksDuration": "Duration" }, @@ -733,144 +733,148 @@ }, "whatsupdocker": { "monitoring": "Monitoring", - "updates": "Updates" + "updates": "Oppdateringer" }, "calibreweb": { - "books": "Books", + "books": "Bøker", "authors": "Authors", "categories": "Categories", - "series": "Series" + "series": "Serie" }, "jdownloader": { - "downloadCount": "Queue", - "downloadBytesRemaining": "Remaining", + "downloadCount": "Kø", + "downloadBytesRemaining": "Gjenstående", "downloadTotalBytes": "Size", - "downloadSpeed": "Speed" + "downloadSpeed": "Hastighet" }, "kavita": { - "seriesCount": "Series", + "seriesCount": "Serie", "totalFiles": "Files" }, "azuredevops": { - "result": "Result", + "result": "Resultat", "status": "Status", - "buildId": "Build ID", - "succeeded": "Succeeded", - "notStarted": "Not Started", - "failed": "Failed", - "canceled": "Canceled", - "inProgress": "In Progress", - "totalPrs": "Total PRs", - "myPrs": "My PRs", - "approved": "Approved" + "buildId": "Produksjons ID", + "succeeded": "Vellykket", + "notStarted": "Ikke startet", + "failed": "Mislyktes", + "canceled": "Avbrutt", + "inProgress": "Pågående", + "totalPrs": "Totalt PR-er", + "myPrs": "Mine PR'er", + "approved": "Godkjent" }, "gamedig": { "status": "Status", "online": "Online", - "offline": "Offline", - "name": "Name", - "map": "Map", - "currentPlayers": "Current players", + "offline": "Frakoblet", + "name": "Navn", + "map": "Kart", + "currentPlayers": "Aktuelle spillere", "players": "Players", - "maxPlayers": "Max players", + "maxPlayers": "Maks spillere", "bots": "Bots", "ping": "Ping" }, "urbackup": { "ok": "Ok", - "errored": "Errors", - "noRecent": "Out of Date", - "totalUsed": "Used Storage" + "errored": "Feil", + "noRecent": "Utdatert", + "totalUsed": "Brukt lagringsplass" }, "mealie": { - "recipes": "Recipes", - "users": "Users", + "recipes": "Oppskrifter", + "users": "Brukere", "categories": "Categories", - "tags": "Tags" + "tags": "Stikkord" }, "openmediavault": { - "downloading": "Downloading", - "total": "Total", - "running": "Running", - "stopped": "Stopped", - "passed": "Passed", - "failed": "Failed" + "downloading": "Nedlaster", + "total": "Totalt", + "running": "Kjører", + "stopped": "Stoppet", + "passed": "Bestått", + "failed": "Mislyktes" }, "openwrt": { - "uptime": "Uptime", - "cpuLoad": "CPU Load Avg (5m)", + "uptime": "Oppetid", + "cpuLoad": "CPU-belastning snitt (5m)", "up": "Up", "down": "Down", - "bytesTx": "Transmitted", - "bytesRx": "Received" + "bytesTx": "Sendt", + "bytesRx": "Mottatt" }, "uptimerobot": { "status": "Status", - "uptime": "Uptime", - "lastDown": "Last Downtime", - "downDuration": "Downtime Duration", - "sitesUp": "Sites Up", + "uptime": "Oppetid", + "lastDown": "Siste nedetid", + "downDuration": "Varighet på nedetid", + "sitesUp": "Nettsteder opp", "sitesDown": "Sites Down", - "paused": "Paused", - "notyetchecked": "Not Yet Checked", + "paused": "Pauset", + "notyetchecked": "Ikke sjekket enda", "up": "Up", - "seemsdown": "Seems Down", + "seemsdown": "Virker nede", "down": "Down", - "unknown": "Unknown" + "unknown": "Ukjent" }, "calendar": { - "inCinemas": "In cinemas", - "physicalRelease": "Physical release", - "digitalRelease": "Digital release", - "noEventsToday": "No events for today!", - "noEventsFound": "No events found" + "inCinemas": "På Kino", + "physicalRelease": "Fysisk utslipp", + "digitalRelease": "Digital utgivelse", + "noEventsToday": "Ingen hendelser for i dag!", + "noEventsFound": "Ingen hendelser funnet" }, "romm": { - "platforms": "Platforms", - "totalRoms": "Total ROMs" + "platforms": "Plattformer", + "totalRoms": "Totale ROM-er" }, "netdata": { - "warnings": "Warnings", - "criticals": "Criticals" + "warnings": "Advarsler", + "criticals": "Kritiske" }, "plantit": { - "events": "Events", - "plants": "Plants", + "events": "Begivenheter", + "plants": "Planter", "photos": "Photos", - "species": "Species" + "species": "Arter" }, "gitea": { - "notifications": "Notifications", + "notifications": "Varslinger", "issues": "Issues", "pulls": "Pull Requests" }, "stash": { - "scenes": "Scenes", - "scenesPlayed": "Scenes Played", - "playCount": "Total Plays", - "playDuration": "Time Watched", - "sceneSize": "Scenes Size", - "sceneDuration": "Scenes Duration", - "images": "Images", - "imageSize": "Images Size", - "galleries": "Galleries", - "performers": "Performers", + "scenes": "Scener", + "scenesPlayed": "Scener avspilt", + "playCount": "Totalt Spillt", + "playDuration": "Tid Sett", + "sceneSize": "Scenesstørrelse", + "sceneDuration": "Scener Varighet", + "images": "Bilder", + "imageSize": "Bildestørrelse", + "galleries": "Gallerier", + "performers": "Utøvere", "studios": "Studios", - "movies": "Movies", - "tags": "Tags", - "oCount": "O Count" + "movies": "Film", + "tags": "Stikkord", + "oCount": "O antall" }, "tandoor": { - "users": "Users", - "recipes": "Recipes", - "keywords": "Keywords" + "users": "Brukere", + "recipes": "Oppskrifter", + "keywords": "Nøkkelord" }, "homebox": { - "items": "Items", - "totalWithWarranty": "With Warranty", - "locations": "Locations", - "labels": "Labels", - "users": "Users", - "totalValue": "Total Value" + "items": "Enheter", + "totalWithWarranty": "Med garanti", + "locations": "Posisjon", + "labels": "Etiketter", + "users": "Brukere", + "totalValue": "Totalverdi" + }, + "crowdsec": { + "alerts": "Varsler", + "bans": "Utestengelse" } } diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json index 80b2d9ce..5c64296e 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -40,7 +40,7 @@ }, "resources": { "cpu": "Procesor", - "mem": "PAM", + "mem": "RAM", "total": "Całkowite", "free": "Wolne", "used": "Użyte", @@ -53,9 +53,9 @@ "users": "Użytkownicy", "uptime": "Czas działania", "days": "Dni", - "wan": "Sieć WAN", - "lan": "Sieć LAN", - "wlan": "Sieć WLAN", + "wan": "WAN", + "lan": "LAN", + "wlan": "WLAN", "devices": "Urządzenia", "lan_devices": "Urządzenia LAN", "wlan_devices": "Urządzenia WLAN", @@ -64,23 +64,23 @@ "up": "CZAS", "down": "Pobieranie", "wait": "Proszę czekać", - "empty_data": "Nieznany stan" + "empty_data": "Status podsystemu nieznany" }, "docker": { "rx": "Rx", "tx": "Tx", - "mem": "PAM", + "mem": "RAM", "cpu": "Procesor", "running": "Działa", "offline": "Nieosiągalny", "error": "Błąd", "unknown": "Nieznany", "healthy": "Zdrowy", - "starting": "Rozpoczynanie", - "unhealthy": "Niezdrowe", + "starting": "Uruchamianie", + "unhealthy": "Niezdrowy", "not_found": "Nie znaleziono", - "exited": "Zakończone", - "partial": "Częściowe" + "exited": "Zakończony", + "partial": "Częściowy" }, "ping": { "error": "Błąd", @@ -137,18 +137,18 @@ "connectionStatusUnconfigured": "Nieskonfigurowane", "connectionStatusConnecting": "Łączenie", "connectionStatusAuthenticating": "Uwierzytelnianie", - "connectionStatusPendingDisconnect": "Pending Disconnect", + "connectionStatusPendingDisconnect": "Oczekujące rozłączenie", "connectionStatusDisconnecting": "Rozłączanie", "connectionStatusDisconnected": "Rozłączono", - "connectionStatusConnected": "Połączony", + "connectionStatusConnected": "Connected", "uptime": "Czas działania", - "maxDown": "Max. Down", - "maxUp": "Max. Up", + "maxDown": "Maks. Pobieranie", + "maxUp": "Maks. Wysyłanie", "down": "Niedostępny", "up": "Dostępny", "received": "Odebrane", "sent": "Wysłane", - "externalIPAddress": "Ext. IP" + "externalIPAddress": "Pub. IP" }, "caddy": { "upstreams": "Upstreams", @@ -156,12 +156,12 @@ "requests_failed": "Nieudane zapytania" }, "changedetectionio": { - "totalObserved": "Obserwowanych ogółem", - "diffsDetected": "Wykryto różnic" + "totalObserved": "Łącznie obserwowanych", + "diffsDetected": "Wykrytych różnic" }, "channelsdvrserver": { "shows": "Seriale", - "recordings": "Nagrywanie", + "recordings": "Nagrania", "scheduled": "W kolejce", "passes": "Przebiegi" }, @@ -277,11 +277,11 @@ "approved": "Zaakceptowane", "available": "Dostępne" }, - "pialert": { + "netalertx": { "total": "Całkowite", - "connected": "Połączony", - "new_devices": "Nowe urządzenia", - "down_alerts": "Powiadomienia o niedostępności" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Zapytania", @@ -395,7 +395,7 @@ "failedLoginsLast24H": "Nieudane logowania (24h)" }, "proxmox": { - "mem": "PAM", + "mem": "RAM", "cpu": "Procesor", "lxc": "Kontenery LXC", "vms": "Maszyn wirtualnych" @@ -413,7 +413,7 @@ "used": "Użyte", "days": "d", "hours": "g", - "crit": "Crit", + "crit": "Krytyczyny", "read": "Przeczytane", "write": "Zapis", "gpu": "Karta graficzna", @@ -492,7 +492,7 @@ "updates": "Aktualizacje", "update_available": "Dostępna aktualizacja", "up_to_date": "Aktualny", - "child_bridges": "Child Bridges", + "child_bridges": "Mostki podrzędne", "child_bridges_status": "{{ok}}/{{total}}", "up": "Dostępny", "pending": "Oczekiwane", @@ -501,12 +501,12 @@ "healthchecks": { "new": "Nowy", "up": "Dostępny", - "grace": "In Grace Period", + "grace": "W okresie karencji", "down": "Niedostępny", "paused": "Zatrzymane", "status": "Stan", "last_ping": "Ostatni ping", - "never": "No pings yet" + "never": "Brak pingów" }, "watchtower": { "containers_scanned": "Zeskanowane", @@ -544,7 +544,7 @@ "hdhomerun": { "channels": "Kanały", "hd": "HD", - "tunerCount": "Tuners", + "tunerCount": "Tunery", "channelNumber": "Kanał", "channelNetwork": "Sieć", "signalStrength": "Siła", @@ -563,7 +563,7 @@ "total": "Całkowite" }, "peanut": { - "battery_charge": "Battery Charge", + "battery_charge": "Stan baterii", "ups_load": "Obciążenie UPS", "ups_status": "Status UPS", "online": "Dostępny", @@ -576,7 +576,7 @@ }, "mikrotik": { "cpuLoad": "Obciążenie procesora", - "memoryUsed": "Zuyżyta pamięć", + "memoryUsed": "Zużyta pamięć", "uptime": "Czas działania", "numberOfLeases": "Dzierżawy" }, @@ -587,8 +587,8 @@ }, "opendtu": { "yieldDay": "Dzisiaj", - "absolutePower": "Power", - "relativePower": "Power %", + "absolutePower": "Zasilanie", + "relativePower": "Moc %", "limit": "Limit" }, "opnsense": { @@ -605,16 +605,16 @@ }, "octoprint": { "printer_state": "Stan", - "temp_tool": "Tool temp", - "temp_bed": "Bed temp", + "temp_tool": "Temperatura narzędzia", + "temp_bed": "Temp. łóżka", "job_completion": "Ukończono" }, "cloudflared": { - "origin_ip": "Origin IP", + "origin_ip": "IP Źródła", "status": "Stan" }, "pfsense": { - "load": "Load Avg", + "load": "Śr. Obciążenie", "memory": "Użycie pamięci", "wanStatus": "Status WAN", "up": "Dostępny", @@ -624,8 +624,8 @@ "wanIP": "WAN IP" }, "proxmoxbackupserver": { - "datastore_usage": "Datastore", - "failed_tasks_24h": "Failed Tasks 24h", + "datastore_usage": "Magazyn danych", + "failed_tasks_24h": "Nieudane zadania 24h", "cpu_usage": "Procesor", "memory_usage": "Pamięć" }, @@ -679,7 +679,7 @@ "dashboards": "Panel główny", "datasources": "Źródła danych", "totalalerts": "Wszystkie alerty", - "alertstriggered": "Alerts Triggered" + "alertstriggered": "Wywołane alerty" }, "nextcloud": { "cpuload": "Obciążenie CPU", @@ -687,7 +687,7 @@ "freespace": "Wolna przestrzeń", "activeusers": "Aktywni użytkownicy", "numfiles": "Pliki", - "numshares": "Shared Items" + "numshares": "Udostępnione elementy" }, "kopia": { "status": "Stan", @@ -698,7 +698,7 @@ }, "unmanic": { "active_workers": "Aktywni pracownicy", - "total_workers": "Total Workers", + "total_workers": "Wszyscy pracownicy", "records_total": "Długość kolejki" }, "pterodactyl": { @@ -706,9 +706,9 @@ "nodes": "Węzły" }, "prometheus": { - "targets_up": "Targets Up", - "targets_down": "Targets Down", - "targets_total": "Total Targets" + "targets_up": "Cele włączone", + "targets_down": "Cele wyłączone", + "targets_total": "Wszystkich Celi" }, "gatus": { "up": "Działające", @@ -727,9 +727,9 @@ "booksDuration": "Czas trwania" }, "homeassistant": { - "people_home": "People Home", - "lights_on": "Lights On", - "switches_on": "Switches On" + "people_home": "Dom ludzi", + "lights_on": "Światła włączone", + "switches_on": "Przełączniki włączone" }, "whatsupdocker": { "monitoring": "Monitoring", @@ -756,12 +756,12 @@ "status": "Stan", "buildId": "ID kompilacji", "succeeded": "Ukończono", - "notStarted": "Not Started", + "notStarted": "Nierozpoczęte", "failed": "Niepowodzenie", "canceled": "Anulowano", "inProgress": "W trakcie", - "totalPrs": "Total PRs", - "myPrs": "My PRs", + "totalPrs": "Łącznie PRs", + "myPrs": "Moje PRs", "approved": "Zaakceptowane" }, "gamedig": { @@ -770,7 +770,7 @@ "offline": "Nieosiągalny", "name": "Nazwa", "map": "Mapa", - "currentPlayers": "Current players", + "currentPlayers": "Gracze online", "players": "Gracze", "maxPlayers": "Maksymalna ilość graczy", "bots": "Boty", @@ -783,7 +783,7 @@ "totalUsed": "Użyta pamięć" }, "mealie": { - "recipes": "Recipes", + "recipes": "Przepisy", "users": "Użytkownicy", "categories": "Kategorie", "tags": "Tagi" @@ -798,79 +798,83 @@ }, "openwrt": { "uptime": "Czas działania", - "cpuLoad": "CPU Load Avg (5m)", + "cpuLoad": "Śr. obciążenie CPU (5m)", "up": "Dostępny", "down": "Niedostępny", - "bytesTx": "Transmitted", + "bytesTx": "Przesłane", "bytesRx": "Odebrane" }, "uptimerobot": { "status": "Stan", "uptime": "Czas działania", - "lastDown": "Last Downtime", - "downDuration": "Downtime Duration", + "lastDown": "Ostatni downtime", + "downDuration": "Długość downtime'u", "sitesUp": "Działające", "sitesDown": "Niedziałające", "paused": "Zatrzymane", - "notyetchecked": "Not Yet Checked", + "notyetchecked": "Nie sprawdzono", "up": "Dostępny", - "seemsdown": "Seems Down", + "seemsdown": "Możliwe, że wyłączony", "down": "Niedostępny", "unknown": "Nieznany" }, "calendar": { "inCinemas": "W kinach", "physicalRelease": "Wydanie fizyczne", - "digitalRelease": "Digital release", - "noEventsToday": "No events for today!", - "noEventsFound": "No events found" + "digitalRelease": "Wydanie cyfrowe", + "noEventsToday": "Brak wydarzeń na dziś!", + "noEventsFound": "Nie znaleziono wydarzeń" }, "romm": { "platforms": "Platformy", - "totalRoms": "Total ROMs" + "totalRoms": "Łącznie ROM" }, "netdata": { "warnings": "Ostrzeżenia", - "criticals": "Criticals" + "criticals": "Krytyczny" }, "plantit": { - "events": "Events", - "plants": "Plants", + "events": "Wydarzenia", + "plants": "Rośliny", "photos": "Zdjęcia", - "species": "Species" + "species": "Gatunki" }, "gitea": { - "notifications": "Notifications", + "notifications": "Powiadomienia", "issues": "Zgłoszenia", - "pulls": "Pull Requests" + "pulls": "Żądania Pull" }, "stash": { - "scenes": "Scenes", - "scenesPlayed": "Scenes Played", - "playCount": "Total Plays", - "playDuration": "Time Watched", - "sceneSize": "Scenes Size", - "sceneDuration": "Scenes Duration", - "images": "Images", - "imageSize": "Images Size", - "galleries": "Galleries", - "performers": "Performers", - "studios": "Studios", + "scenes": "Sceny", + "scenesPlayed": "Odgrane sceny", + "playCount": "Łącznie odtworzone", + "playDuration": "Łączny czas oglądania", + "sceneSize": "Rozmiar scen", + "sceneDuration": "Czas trwania scen", + "images": "Obrazy", + "imageSize": "Rozmiar obrazów", + "galleries": "Galerie", + "performers": "Artyści", + "studios": "Studia", "movies": "Filmy", "tags": "Tagi", - "oCount": "O Count" + "oCount": "O Licznik" }, "tandoor": { "users": "Użytkownicy", - "recipes": "Recipes", - "keywords": "Keywords" + "recipes": "Przepisy", + "keywords": "Słowa kluczowe" }, "homebox": { - "items": "Items", - "totalWithWarranty": "With Warranty", - "locations": "Locations", - "labels": "Labels", + "items": "Elementy", + "totalWithWarranty": "Z gwarancją", + "locations": "Lokalizacje", + "labels": "Etykiety", "users": "Użytkownicy", - "totalValue": "Total Value" + "totalValue": "Wartość całkowita" + }, + "crowdsec": { + "alerts": "Alarmy", + "bans": "Bany" } } diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index aafdd8e0..74b67f82 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Desconexão pendente", "connectionStatusDisconnecting": "Desconectando", "connectionStatusDisconnected": "Desconectado", - "connectionStatusConnected": "Conectado", + "connectionStatusConnected": "Connected", "uptime": "Ligado", "maxDown": "Máx. de Descarga", "maxUp": "Max. de Envio", @@ -277,11 +277,11 @@ "approved": "Aprovada", "available": "Disponível" }, - "pialert": { + "netalertx": { "total": "Total", - "connected": "Conectado", - "new_devices": "Novos dispositivos", - "down_alerts": "Alertas de Baixo" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Consultas", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Utilizadores", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alertas", + "bans": "Bans" } } diff --git a/public/locales/pt_BR/common.json b/public/locales/pt_BR/common.json index 9cef642f..0de066b7 100644 --- a/public/locales/pt_BR/common.json +++ b/public/locales/pt_BR/common.json @@ -14,7 +14,7 @@ "date": "{{value, date}}", "relativeDate": "{{value, relativeDate}}", "uptime": "{{value, uptime}}", - "months": "mo", + "months": "M", "days": "d", "hours": "h", "minutes": "m", @@ -85,17 +85,17 @@ "ping": { "error": "Erro", "ping": "Tempo de resposta", - "down": "Down", - "up": "Up", - "not_available": "Not Available" + "down": "Inativo", + "up": "Ativo", + "not_available": "Não Disponível" }, "siteMonitor": { - "http_status": "HTTP status", + "http_status": "Estado HTTP", "error": "Erro", - "response": "Response", - "down": "Down", - "up": "Up", - "not_available": "Not Available" + "response": "Resposta", + "down": "Inativo", + "up": "Ativo", + "not_available": "Não Disponível" }, "emby": { "playing": "A reproduzir", @@ -134,21 +134,21 @@ }, "fritzbox": { "connectionStatus": "Estado", - "connectionStatusUnconfigured": "Unconfigured", - "connectionStatusConnecting": "Connecting", - "connectionStatusAuthenticating": "Authenticating", - "connectionStatusPendingDisconnect": "Pending Disconnect", - "connectionStatusDisconnecting": "Disconnecting", - "connectionStatusDisconnected": "Disconnected", + "connectionStatusUnconfigured": "Não configurado", + "connectionStatusConnecting": "Conectando", + "connectionStatusAuthenticating": "Autenticando", + "connectionStatusPendingDisconnect": "Desconexão Pendente", + "connectionStatusDisconnecting": "Desconectando", + "connectionStatusDisconnected": "Desconectado", "connectionStatusConnected": "Connected", "uptime": "Ligado", "maxDown": "Max. Down", "maxUp": "Max. Up", - "down": "Down", - "up": "Up", - "received": "Received", - "sent": "Sent", - "externalIPAddress": "Ext. IP" + "down": "Inativo", + "up": "Ativo", + "received": "Recebido", + "sent": "Enviado", + "externalIPAddress": "IP Externo" }, "caddy": { "upstreams": "Upstreams", @@ -160,9 +160,9 @@ "diffsDetected": "Diferenças Detetadas" }, "channelsdvrserver": { - "shows": "Shows", + "shows": "Programas", "recordings": "Gravações", - "scheduled": "Scheduled", + "scheduled": "Agendado", "passes": "Passes" }, "tautulli": { @@ -170,7 +170,7 @@ "transcoding": "Transcodificação", "bitrate": "Taxa de bits", "no_active": "Sem streams ativas", - "plex_connection_error": "Check Plex Connection" + "plex_connection_error": "Verifique a conexão do Plex" }, "omada": { "connectedAp": "APs Ligados", @@ -186,7 +186,7 @@ }, "plex": { "streams": "Streams Ativas", - "albums": "Albums", + "albums": "Álbuns", "movies": "Filmes", "tv": "Series de TV" }, @@ -213,9 +213,9 @@ "seed": "Semente" }, "qnap": { - "cpuUsage": "CPU Usage", - "memUsage": "MEM Usage", - "systemTempC": "System Temp", + "cpuUsage": "Uso de CPU", + "memUsage": "Uso de Memória", + "systemTempC": "Temp. do Sistema", "poolUsage": "Pool Usage", "volumeUsage": "Volume Usage", "invalid": "Invalid" @@ -277,7 +277,7 @@ "approved": "Aprovada", "available": "Disponível" }, - "pialert": { + "netalertx": { "total": "Total", "connected": "Connected", "new_devices": "New Devices", @@ -494,15 +494,15 @@ "up_to_date": "Atualizado", "child_bridges": "Pontes Filhas", "child_bridges_status": "{{ok}}/{{total}}", - "up": "Up", + "up": "Ativo", "pending": "Pendente", - "down": "Down" + "down": "Inativo" }, "healthchecks": { "new": "Novo", - "up": "Up", + "up": "Ativo", "grace": "Em Período Gratuito", - "down": "Down", + "down": "Inativo", "paused": "Pausado", "status": "Estado", "last_ping": "Ultimo Ping", @@ -617,8 +617,8 @@ "load": "Load Avg", "memory": "Mem Usage", "wanStatus": "WAN Status", - "up": "Up", - "down": "Down", + "up": "Ativo", + "down": "Inativo", "temp": "Temp", "disk": "Disk Usage", "wanIP": "WAN IP" @@ -664,7 +664,7 @@ "wanted": "Desejada" }, "photoprism": { - "albums": "Albums", + "albums": "Álbuns", "photos": "Fotos", "videos": "Vídeos", "people": "Pessoa" @@ -799,10 +799,10 @@ "openwrt": { "uptime": "Ligado", "cpuLoad": "CPU Load Avg (5m)", - "up": "Up", - "down": "Down", + "up": "Ativo", + "down": "Inativo", "bytesTx": "Transmitted", - "bytesRx": "Received" + "bytesRx": "Recebido" }, "uptimerobot": { "status": "Estado", @@ -813,9 +813,9 @@ "sitesDown": "Sites Fora do Ar", "paused": "Pausado", "notyetchecked": "Not Yet Checked", - "up": "Up", + "up": "Ativo", "seemsdown": "Seems Down", - "down": "Down", + "down": "Inativo", "unknown": "Desconhecido" }, "calendar": { @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Utilizadores", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alertas", + "bans": "Bans" } } diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json index 987b1197..512904ff 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -277,7 +277,7 @@ "approved": "Aprobate", "available": "Disponibile" }, - "pialert": { + "netalertx": { "total": "Total", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Utilizatori", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alerts", + "bans": "Bans" } } diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json index 81472ced..973c131f 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Ожидает отключения", "connectionStatusDisconnecting": "Отключение", "connectionStatusDisconnected": "Отключено", - "connectionStatusConnected": "Подключено", + "connectionStatusConnected": "Connected", "uptime": "Время работы", "maxDown": "Макс. Загрузка", "maxUp": "Макс. Отдача", @@ -277,11 +277,11 @@ "approved": "Одобрено", "available": "Доступно" }, - "pialert": { + "netalertx": { "total": "Всего", - "connected": "Подключено", - "new_devices": "Новые устройства", - "down_alerts": "Оповещение о недоступности" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Запросы", @@ -872,5 +872,9 @@ "labels": "Ярлыки", "users": "Пользователи", "totalValue": "Общая стоимость" + }, + "crowdsec": { + "alerts": "Предупреждения", + "bans": "Bans" } } diff --git a/public/locales/sk/common.json b/public/locales/sk/common.json index 794bf9c6..b792a425 100644 --- a/public/locales/sk/common.json +++ b/public/locales/sk/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Čakám na odpojenie", "connectionStatusDisconnecting": "Odpájanie", "connectionStatusDisconnected": "Odpojené", - "connectionStatusConnected": "Pripojené", + "connectionStatusConnected": "Connected", "uptime": "Prevádzka", "maxDown": "Max. sťahovanie", "maxUp": "Max. nahrávanie", @@ -277,11 +277,11 @@ "approved": "Schválené", "available": "Dostupné" }, - "pialert": { + "netalertx": { "total": "Celkovo", - "connected": "Pripojené", - "new_devices": "Nové zariadenia", - "down_alerts": "Upozornenia o výpadkoch" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Dopyty", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Používatelia", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Upozornenia", + "bans": "Bans" } } diff --git a/public/locales/sl/common.json b/public/locales/sl/common.json index d48cd753..f732fbe1 100644 --- a/public/locales/sl/common.json +++ b/public/locales/sl/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Čakanje na prekinitev", "connectionStatusDisconnecting": "Prekinitev", "connectionStatusDisconnected": "Prekinjeno", - "connectionStatusConnected": "Povezanih", + "connectionStatusConnected": "Connected", "uptime": "Čas delovanja", "maxDown": "Maks. dol", "maxUp": "Maks. gor", @@ -277,11 +277,11 @@ "approved": "Odobreno", "available": "Na voljo" }, - "pialert": { + "netalertx": { "total": "Skupaj", - "connected": "Povezanih", - "new_devices": "Nove naprave", - "down_alerts": "Izključeno" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Poizvedbe", @@ -872,5 +872,9 @@ "labels": "Oznake", "users": "Uporabniki", "totalValue": "Skupna vrednost" + }, + "crowdsec": { + "alerts": "Opozorila", + "bans": "Prepovedi" } } diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json index 86d6b20b..71ca98db 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -277,7 +277,7 @@ "approved": "Approved", "available": "Available" }, - "pialert": { + "netalertx": { "total": "Total", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Users", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alerts", + "bans": "Bans" } } diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json index 9311ed8d..9918ab64 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -277,7 +277,7 @@ "approved": "Godkända", "available": "Tillgänglig" }, - "pialert": { + "netalertx": { "total": "Total", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Användare", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alerts", + "bans": "Bans" } } diff --git a/public/locales/te/common.json b/public/locales/te/common.json index 90ff4f22..40bd9f7a 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -277,7 +277,7 @@ "approved": "ఆమోదించబడింది", "available": "అందుబాటులో వున్నవి" }, - "pialert": { + "netalertx": { "total": "మొత్తం", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "వినియోగదారులు", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alerts", + "bans": "Bans" } } diff --git a/public/locales/th/common.json b/public/locales/th/common.json index 29b5b8c1..9bb8ee9b 100644 --- a/public/locales/th/common.json +++ b/public/locales/th/common.json @@ -277,7 +277,7 @@ "approved": "Approved", "available": "Available" }, - "pialert": { + "netalertx": { "total": "ทั้งหมด", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "ผู้ใช้", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alerts", + "bans": "Bans" } } diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json index 98960ac1..9d284786 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Bağlantının Kesilmesi Bekleniyor", "connectionStatusDisconnecting": "Bağlantı kesiliyor...", "connectionStatusDisconnected": "Bağlantı kesildi", - "connectionStatusConnected": "Bağlandı", + "connectionStatusConnected": "Connected", "uptime": "Çalışma Süresi", "maxDown": "Max. Indirme", "maxUp": "Max. Gönderme", @@ -277,11 +277,11 @@ "approved": "Onaylı", "available": "Kullanılabilir" }, - "pialert": { + "netalertx": { "total": "Toplam", - "connected": "Bağlandı", - "new_devices": "Yeni Cihazlar", - "down_alerts": "Düşme Uyarıları" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Sorgular", @@ -872,5 +872,9 @@ "labels": "Etiketler", "users": "Kullanıcılar", "totalValue": "Toplam Değer" + }, + "crowdsec": { + "alerts": "Alarmlar", + "bans": "Bans" } } diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json index 1a69825c..55e8c07e 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Pending Disconnect", "connectionStatusDisconnecting": "Disconnecting", "connectionStatusDisconnected": "Disconnected", - "connectionStatusConnected": "Підключено", + "connectionStatusConnected": "Connected", "uptime": "Час роботи", "maxDown": "Max. Down", "maxUp": "Max. Up", @@ -277,11 +277,11 @@ "approved": "Затверджено", "available": "Доступно" }, - "pialert": { + "netalertx": { "total": "Усього", - "connected": "Підключено", - "new_devices": "Нові пристрої", - "down_alerts": "Сповіщення про збій" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Запити", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Користувачі", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Оповіщення", + "bans": "Bans" } } diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json index 23827ddc..5299c54d 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -277,7 +277,7 @@ "approved": "Đã duyệt", "available": "Available" }, - "pialert": { + "netalertx": { "total": "Tổng", "connected": "Connected", "new_devices": "New Devices", @@ -872,5 +872,9 @@ "labels": "Labels", "users": "Users", "totalValue": "Total Value" + }, + "crowdsec": { + "alerts": "Alerts", + "bans": "Bans" } } diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json index 3b32c081..d7a9242c 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "待辦的斷開", "connectionStatusDisconnecting": "正在中斷連線", "connectionStatusDisconnected": "連接已中斷", - "connectionStatusConnected": "已連線", + "connectionStatusConnected": "Connected", "uptime": "運行時間", "maxDown": "最大下載速率", "maxUp": "最大上傳速率", @@ -277,11 +277,11 @@ "approved": "批准", "available": "可用" }, - "pialert": { + "netalertx": { "total": "全部", - "connected": "已連線", - "new_devices": "新裝置", - "down_alerts": "離線警告" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "查詢", @@ -858,7 +858,7 @@ "studios": "工作室", "movies": "電影", "tags": "標籤", - "oCount": "O Count" + "oCount": "0 個" }, "tandoor": { "users": "使用者", @@ -867,10 +867,14 @@ }, "homebox": { "items": "項目", - "totalWithWarranty": "With Warranty", + "totalWithWarranty": "有保証", "locations": "位置", "labels": "標籤", "users": "使用者", "totalValue": "總共" + }, + "crowdsec": { + "alerts": "警示", + "bans": "禁止" } } diff --git a/public/locales/zh-Hans/common.json b/public/locales/zh-Hans/common.json index 3957ccc8..5ae9de40 100644 --- a/public/locales/zh-Hans/common.json +++ b/public/locales/zh-Hans/common.json @@ -54,13 +54,13 @@ "uptime": "运行时间", "days": "天", "wan": "WAN", - "lan": "LAN", - "wlan": "WLAN", + "lan": "局域网", + "wlan": "无线局域网", "devices": "设备", - "lan_devices": "LAN设备", + "lan_devices": "有线设备", "wlan_devices": "WLAN 设备", - "lan_users": "LAN 用户", - "wlan_users": "WLAN 用户", + "lan_users": "有线用户", + "wlan_users": "无线用户", "up": "运行时间", "down": "离线", "wait": "请稍候", @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "等待断开连接", "connectionStatusDisconnecting": "正在断开连接", "connectionStatusDisconnected": "未连接", - "connectionStatusConnected": "已连接", + "connectionStatusConnected": "Connected", "uptime": "运行时间", "maxDown": "最大下载速度", "maxUp": "", @@ -277,11 +277,11 @@ "approved": "已批准", "available": "可用" }, - "pialert": { + "netalertx": { "total": "总计", - "connected": "已连接", - "new_devices": "新设备", - "down_alerts": "离线警报" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "查询", @@ -858,7 +858,7 @@ "studios": "工作室", "movies": "电影", "tags": "标签", - "oCount": "O Count" + "oCount": "O 个" }, "tandoor": { "users": "用户数", @@ -866,11 +866,15 @@ "keywords": "关键词" }, "homebox": { - "items": "Items", - "totalWithWarranty": "With Warranty", - "locations": "Locations", - "labels": "Labels", + "items": "条目", + "totalWithWarranty": "有保证", + "locations": "位置", + "labels": "标签", "users": "用户数", - "totalValue": "Total Value" + "totalValue": "总计" + }, + "crowdsec": { + "alerts": "警告", + "bans": "禁用" } } diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json index 2ee4e831..38b7ea42 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "待辦的斷開", "connectionStatusDisconnecting": "正在中斷連線", "connectionStatusDisconnected": "連接已中斷", - "connectionStatusConnected": "已連線", + "connectionStatusConnected": "Connected", "uptime": "運行時間", "maxDown": "最大下載速率", "maxUp": "最大上傳速率", @@ -277,11 +277,11 @@ "approved": "已核准", "available": "可觀看" }, - "pialert": { + "netalertx": { "total": "全部", - "connected": "已連線", - "new_devices": "新裝置", - "down_alerts": "離線警告" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "查詢", @@ -858,7 +858,7 @@ "studios": "工作室", "movies": "電影", "tags": "標籤", - "oCount": "O Count" + "oCount": "0 個" }, "tandoor": { "users": "用戶", @@ -867,10 +867,14 @@ }, "homebox": { "items": "項目", - "totalWithWarranty": "With Warranty", + "totalWithWarranty": "有保証", "locations": "位置", "labels": "標籤", "users": "用戶", "totalValue": "總共" + }, + "crowdsec": { + "alerts": "警示", + "bans": "禁止" } } From c18fd02c8ec2af0a5224da310a0e5ea6a54830f8 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 8 Apr 2024 15:19:35 -0700 Subject: [PATCH 05/38] Fix typo in crowdsec docs --- docs/widgets/services/crowdsec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/widgets/services/crowdsec.md b/docs/widgets/services/crowdsec.md index 76b8efaa..da15a478 100644 --- a/docs/widgets/services/crowdsec.md +++ b/docs/widgets/services/crowdsec.md @@ -15,5 +15,5 @@ widget: type: crowdsec url: http://crowdsechostorip:port username: localhost # machine_id in crowdsec - passowrd: password + password: password ``` From bfd392026dbf8b4296aa6193d2e99e718e456ece Mon Sep 17 00:00:00 2001 From: brikim Date: Fri, 12 Apr 2024 22:33:40 -0500 Subject: [PATCH 06/38] Enhancement: option to show user for Tautulli and Emby/Jellyfin widgets (#3287) --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- docs/widgets/services/emby.md | 1 + docs/widgets/services/plex-tautulli.md | 1 + src/utils/config/service-helpers.js | 11 +++++++++++ src/widgets/emby/component.jsx | 11 +++++++++-- src/widgets/tautulli/component.jsx | 25 +++++++++++++++++-------- 5 files changed, 39 insertions(+), 10 deletions(-) diff --git a/docs/widgets/services/emby.md b/docs/widgets/services/emby.md index f262bfc6..1d70fdf3 100644 --- a/docs/widgets/services/emby.md +++ b/docs/widgets/services/emby.md @@ -16,4 +16,5 @@ widget: key: apikeyapikeyapikeyapikeyapikey enableBlocks: true # optional, defaults to false enableNowPlaying: true # optional, defaults to true + enableUser: true # optional, defaults to false ``` diff --git a/docs/widgets/services/plex-tautulli.md b/docs/widgets/services/plex-tautulli.md index b88f6eeb..cce45fc3 100644 --- a/docs/widgets/services/plex-tautulli.md +++ b/docs/widgets/services/plex-tautulli.md @@ -14,4 +14,5 @@ widget: type: tautulli url: http://tautulli.host.or.ip key: apikeyapikeyapikeyapikeyapikey + enableUser: true # optional, defaults to false ``` diff --git a/src/utils/config/service-helpers.js b/src/utils/config/service-helpers.js index d6552253..7fb81088 100644 --- a/src/utils/config/service-helpers.js +++ b/src/utils/config/service-helpers.js @@ -393,6 +393,9 @@ export function cleanServiceGroups(groups) { enableBlocks, enableNowPlaying, + // emby, jellyfin, tautulli + enableUser, + // glances, pihole version, @@ -517,6 +520,14 @@ export function cleanServiceGroups(groups) { if (["emby", "jellyfin"].includes(type)) { if (enableBlocks !== undefined) cleanedService.widget.enableBlocks = JSON.parse(enableBlocks); if (enableNowPlaying !== undefined) cleanedService.widget.enableNowPlaying = JSON.parse(enableNowPlaying); + if (enableUser !== undefined) { + cleanedService.widget.enableUser = !!JSON.parse(enableUser); + } + } + if (["tautulli"].includes(type)) { + if (enableUser !== undefined) { + cleanedService.widget.enableUser = !!JSON.parse(enableUser); + } } if (["sonarr", "radarr"].includes(type)) { if (enableQueue !== undefined) cleanedService.widget.enableQueue = JSON.parse(enableQueue); diff --git a/src/widgets/emby/component.jsx b/src/widgets/emby/component.jsx index 89fd44c3..f11a689d 100644 --- a/src/widgets/emby/component.jsx +++ b/src/widgets/emby/component.jsx @@ -27,10 +27,11 @@ function ticksToString(ticks) { return parts.map((part) => part.toString().padStart(2, "0")).join(":"); } -function SingleSessionEntry({ playCommand, session }) { +function SingleSessionEntry({ playCommand, session, enableUser }) { const { NowPlayingItem: { Name, SeriesName }, PlayState: { PositionTicks, IsPaused, IsMuted }, + UserName, } = session; const RunTimeTicks = @@ -49,6 +50,7 @@ function SingleSessionEntry({ playCommand, session }) {
{Name} {SeriesName && ` - ${SeriesName}`} + {enableUser && ` (${UserName})`}
@@ -97,10 +99,11 @@ function SingleSessionEntry({ playCommand, session }) { ); } -function SessionEntry({ playCommand, session }) { +function SessionEntry({ playCommand, session, enableUser }) { const { NowPlayingItem: { Name, SeriesName }, PlayState: { PositionTicks, IsPaused, IsMuted }, + UserName, } = session; const RunTimeTicks = @@ -142,6 +145,7 @@ function SessionEntry({ playCommand, session }) {
{Name} {SeriesName && ` - ${SeriesName}`} + {enableUser && ` (${UserName})`}
{IsMuted && }
@@ -215,6 +219,7 @@ export default function Component({ service }) { const enableBlocks = service.widget?.enableBlocks; const enableNowPlaying = service.widget?.enableNowPlaying ?? true; + const enableUser = !!service.widget?.enableUser; if (!sessionsData || !countData) { return ( @@ -272,6 +277,7 @@ export default function Component({ service }) { handlePlayCommand(currentSession, command)} session={session} + enableUser={enableUser} /> @@ -288,6 +294,7 @@ export default function Component({ service }) { key={session.Id} playCommand={(currentSession, command) => handlePlayCommand(currentSession, command)} session={session} + enableUser={enableUser} /> ))} diff --git a/src/widgets/tautulli/component.jsx b/src/widgets/tautulli/component.jsx index e1a4df00..d224391b 100644 --- a/src/widgets/tautulli/component.jsx +++ b/src/widgets/tautulli/component.jsx @@ -25,14 +25,18 @@ function millisecondsToString(milliseconds) { return parts.map((part) => part.toString().padStart(2, "0")).join(":"); } -function SingleSessionEntry({ session }) { - const { full_title, duration, view_offset, progress_percent, state, video_decision, audio_decision } = session; +function SingleSessionEntry({ session, enableUser }) { + const { full_title, duration, view_offset, progress_percent, state, video_decision, audio_decision, username } = + session; return ( <>
-
{full_title}
+
+ {full_title} + {enableUser && ` (${username})`} +
{video_decision === "direct play" && audio_decision === "direct play" && ( @@ -74,8 +78,8 @@ function SingleSessionEntry({ session }) { ); } -function SessionEntry({ session }) { - const { full_title, view_offset, progress_percent, state, video_decision, audio_decision } = session; +function SessionEntry({ session, enableUser }) { + const { full_title, view_offset, progress_percent, state, video_decision, audio_decision, username } = session; return (
@@ -94,7 +98,10 @@ function SessionEntry({ session }) { )}
-
{full_title}
+
+ {full_title} + {enableUser && ` (${username})`} +
{video_decision === "direct play" && audio_decision === "direct play" && ( @@ -162,11 +169,13 @@ export default function Component({ service }) { ); } + const enableUser = !!service.widget?.enableUser; + if (playing.length === 1) { const session = playing[0]; return (
- +
); } @@ -174,7 +183,7 @@ export default function Component({ service }) { return (
{playing.map((session) => ( - + ))}
); From 2c68f1e7eee3c017add19d1b9279f91bd6654b9a Mon Sep 17 00:00:00 2001 From: Ben Phelps Date: Mon, 15 Apr 2024 15:59:30 +0300 Subject: [PATCH 07/38] place carbon ads in docs (#3296) * place carbon ads in docs * fix lint * keep 4 space tabs --- docs/overrides/main.html | 9 +++++++++ docs/stylesheets/extra.css | 8 ++++++++ mkdocs.yml | 1 + 3 files changed, 18 insertions(+) create mode 100644 docs/overrides/main.html diff --git a/docs/overrides/main.html b/docs/overrides/main.html new file mode 100644 index 00000000..bf62d43a --- /dev/null +++ b/docs/overrides/main.html @@ -0,0 +1,9 @@ +{% extends "base.html" %} + +{% block content %} + {% include "partials/content.html" %} +
+
+ +
+{% endblock %} diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index e6bc9bf0..8ff306a3 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -22,3 +22,11 @@ #glimeRoot * { font-family: var(--md-text-font) !important; } + +#carbon-responsive { + --carbon-padding: 1em; + --carbon-max-char: 20ch; + --carbon-bg-primary: var(--md-default-bg-color) !important; + --carbon-bg-secondary: var(--md-default-fg-color--lightest) !important; + --carbon-text-color: var(--md-typeset-color) !important; +} diff --git a/mkdocs.yml b/mkdocs.yml index e58cb1e4..561e0555 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -166,6 +166,7 @@ nav: theme: name: material + custom_dir: docs/overrides language: en palette: - media: "(prefers-color-scheme)" From 60098d3909408a65a32dd5cc6d4fca63d42b94b5 Mon Sep 17 00:00:00 2001 From: Ben Phelps Date: Mon, 15 Apr 2024 22:20:39 +0300 Subject: [PATCH 08/38] Docs: move Carbon ads to sidebar (#3302) --- docs/overrides/main.html | 50 +++++++++++++++++++++++++++++++++----- docs/stylesheets/extra.css | 4 +++ mkdocs.yml | 4 ++- 3 files changed, 51 insertions(+), 7 deletions(-) diff --git a/docs/overrides/main.html b/docs/overrides/main.html index bf62d43a..e1174193 100644 --- a/docs/overrides/main.html +++ b/docs/overrides/main.html @@ -1,9 +1,47 @@ {% extends "base.html" %} -{% block content %} - {% include "partials/content.html" %} -
-
- -
+{% block site_nav %} + + {% if nav %} + {% if page.meta and page.meta.hide %} + {% set hidden = "hidden" if "navigation" in page.meta.hide %} + {% endif %} + + {% endif %} + + + {% if "toc.integrate" not in features %} + {% if page.meta and page.meta.hide %} + {% set hidden = "hidden" if "toc" in page.meta.hide %} + {% endif %} + + {% endif %} {% endblock %} diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 8ff306a3..56ed77c8 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -23,6 +23,10 @@ font-family: var(--md-text-font) !important; } +#carbonads { + margin-top: 10px; +} + #carbon-responsive { --carbon-padding: 1em; --carbon-max-char: 20ch; diff --git a/mkdocs.yml b/mkdocs.yml index 561e0555..6c666892 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -90,6 +90,7 @@ nav: - widgets/services/mylar.md - widgets/services/navidrome.md - widgets/services/netdata.md + - widgets/services/netalertx.md - widgets/services/nextcloud.md - widgets/services/nextdns.md - widgets/services/nginx-proxy-manager.md @@ -100,12 +101,12 @@ nav: - widgets/services/opendtu.md - widgets/services/openmediavault.md - widgets/services/opnsense.md + - widgets/services/openwrt.md - widgets/services/overseerr.md - widgets/services/paperlessngx.md - widgets/services/peanut.md - widgets/services/pfsense.md - widgets/services/photoprism.md - - widgets/services/pialert.md - widgets/services/pihole.md - widgets/services/plantit.md - widgets/services/plex-tautulli.md @@ -130,6 +131,7 @@ nav: - widgets/services/stash.md - widgets/services/syncthing-relay-server.md - widgets/services/tailscale.md + - widgets/services/tandoor.md - widgets/services/tdarr.md - widgets/services/traefik.md - widgets/services/transmission.md From 034f6d29d683ef023968ca70eaf8bf6f4ee530d0 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 15 Apr 2024 12:53:15 -0700 Subject: [PATCH 09/38] Docs: show carbon ads on more pages too --- docs/overrides/main.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/overrides/main.html b/docs/overrides/main.html index e1174193..0a5f2bc5 100644 --- a/docs/overrides/main.html +++ b/docs/overrides/main.html @@ -15,7 +15,7 @@
{% include "partials/nav.html" %} - {% if 'widgets/' not in page.url %} + {% if 'widgets/' not in page.url and 'more/' not in page.url %} {% endif %}
@@ -34,10 +34,10 @@ data-md-type="toc" {{ hidden }} > -
+
{% include "partials/toc.html" %} - {% if 'widgets/' in page.url %} + {% if 'widgets/' in page.url or 'more/' in page.url %} {% endif %}
From 303a62369f1b48d3380b4ef11b3727cd9264898c Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 16 Apr 2024 15:50:32 -0700 Subject: [PATCH 10/38] Fix: pihole `ads_percentage_today` sometimes returned as string (#3313) --- src/widgets/pihole/component.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widgets/pihole/component.jsx b/src/widgets/pihole/component.jsx index 4d95b4ac..7aa706e4 100644 --- a/src/widgets/pihole/component.jsx +++ b/src/widgets/pihole/component.jsx @@ -32,7 +32,7 @@ export default function Component({ service }) { let blockedValue = `${t("common.number", { value: parseInt(piholeData.ads_blocked_today, 10) })}`; if (!widget.fields.includes("blocked_percent")) { - blockedValue += ` (${t("common.percent", { value: parseFloat(piholeData.ads_percentage_today.toPrecision(3)) })})`; + blockedValue += ` (${t("common.percent", { value: parseFloat(piholeData.ads_percentage_today).toPrecision(3) })})`; } return ( @@ -41,7 +41,7 @@ export default function Component({ service }) { Date: Wed, 17 Apr 2024 01:42:55 -0700 Subject: [PATCH 11/38] New Crowdin translations by GitHub Action (#3270) Co-authored-by: Crowdin Bot --- public/locales/ca/common.json | 562 +++++++++++++++++----------------- public/locales/de/common.json | 2 +- public/locales/it/common.json | 48 +-- public/locales/sl/common.json | 8 +- public/locales/sv/common.json | 4 +- 5 files changed, 312 insertions(+), 312 deletions(-) diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json index 382f5237..a431f9a4 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -14,7 +14,7 @@ "date": "{{value, date}}", "relativeDate": "{{value, relativeDate}}", "uptime": "{{value, uptime}}", - "months": "mo", + "months": "mes", "days": "d", "hours": "h", "minutes": "m", @@ -46,8 +46,8 @@ "used": "Utilitzat", "load": "Càrrega", "temp": "TEMP", - "max": "Max", - "uptime": "UP" + "max": "Màx.", + "uptime": "ACTIU" }, "unifi": { "users": "Usuaris", @@ -61,65 +61,65 @@ "wlan_devices": "Dispositius WLAN", "lan_users": "Usuaris LAN", "wlan_users": "Usuaris WLAN", - "up": "UP", + "up": "ACTIU", "down": "INACTIU", "wait": "Si us plau, espereu", - "empty_data": "Subsystem status unknown" + "empty_data": "Estat del subsistema desconegut" }, "docker": { "rx": "Rebut", "tx": "Transmès", "mem": "MEM", "cpu": "CPU", - "running": "Running", + "running": "En execució", "offline": "Fora de línia", "error": "Error", "unknown": "Desconegut", - "healthy": "Healthy", - "starting": "Starting", - "unhealthy": "Unhealthy", - "not_found": "Not Found", - "exited": "Exited", - "partial": "Partial" + "healthy": "Saludable", + "starting": "Iniciant", + "unhealthy": "No saludable", + "not_found": "No trobat", + "exited": "Tancat", + "partial": "Parcial" }, "ping": { "error": "Error", - "ping": "Ping", - "down": "Down", - "up": "Up", - "not_available": "Not Available" + "ping": "Latència", + "down": "Inactiu", + "up": "Actiu", + "not_available": "No Disponible" }, "siteMonitor": { - "http_status": "HTTP status", + "http_status": "Estat HTTP", "error": "Error", - "response": "Response", - "down": "Down", - "up": "Up", - "not_available": "Not Available" + "response": "Resposta", + "down": "Inactiu", + "up": "Actiu", + "not_available": "No Disponible" }, "emby": { "playing": "Reproduint", "transcoding": "Transcodificant", "bitrate": "Taxa de bits", "no_active": "Sense reproduccions actives", - "movies": "Movies", - "series": "Series", - "episodes": "Episodes", - "songs": "Songs" + "movies": "Pel·lícules", + "series": "Sèries", + "episodes": "Episodis", + "songs": "Cançons" }, "esphome": { "offline": "Fora de línia", "offline_alt": "Fora de línia", - "online": "Online", + "online": "En línia", "total": "Total", "unknown": "Desconegut" }, "evcc": { - "pv_power": "Production", - "battery_soc": "Battery", - "grid_power": "Grid", - "home_power": "Consumption", - "charge_power": "Charger", + "pv_power": "Producció", + "battery_soc": "Bateria", + "grid_power": "Xarxa", + "home_power": "Consum", + "charge_power": "Carregador", "watt_hour": "Wh" }, "flood": { @@ -129,55 +129,55 @@ "seed": "Llavor" }, "freshrss": { - "subscriptions": "Subscriptions", - "unread": "Unread" + "subscriptions": "Subcripcions", + "unread": "Sense llegir" }, "fritzbox": { "connectionStatus": "Estat", - "connectionStatusUnconfigured": "Unconfigured", - "connectionStatusConnecting": "Connecting", - "connectionStatusAuthenticating": "Authenticating", - "connectionStatusPendingDisconnect": "Pending Disconnect", - "connectionStatusDisconnecting": "Disconnecting", - "connectionStatusDisconnected": "Disconnected", - "connectionStatusConnected": "Connected", + "connectionStatusUnconfigured": "Sense configurar", + "connectionStatusConnecting": "Connectant", + "connectionStatusAuthenticating": "Autenticant", + "connectionStatusPendingDisconnect": "Desconnexió pendent", + "connectionStatusDisconnecting": "Desconnectant", + "connectionStatusDisconnected": "Desconnectat", + "connectionStatusConnected": "Connectat", "uptime": "Temps actiu", - "maxDown": "Max. Down", - "maxUp": "Max. Up", - "down": "Down", - "up": "Up", - "received": "Received", - "sent": "Sent", - "externalIPAddress": "Ext. IP" + "maxDown": "Màx. Descàrrega", + "maxUp": "Màx. Càrrega", + "down": "Inactiu", + "up": "Actiu", + "received": "Rebuts", + "sent": "Enviats", + "externalIPAddress": "IP ext." }, "caddy": { "upstreams": "Upstreams", - "requests": "Current requests", - "requests_failed": "Failed requests" + "requests": "Peticions actuals", + "requests_failed": "Peticions fallides" }, "changedetectionio": { "totalObserved": "Total d'observats", "diffsDetected": "Diferències detectades" }, "channelsdvrserver": { - "shows": "Shows", - "recordings": "Recordings", - "scheduled": "Scheduled", - "passes": "Passes" + "shows": "Sèries", + "recordings": "Gravacions", + "scheduled": "Programat", + "passes": "Aprovat" }, "tautulli": { "playing": "Reproduint", "transcoding": "Transcodificant", "bitrate": "Taxa de bits", "no_active": "Sense reproduccions actives", - "plex_connection_error": "Check Plex Connection" + "plex_connection_error": "Comprova la connexió de Plex" }, "omada": { - "connectedAp": "Connected APs", - "activeUser": "Active devices", - "alerts": "Alerts", - "connectedGateway": "Connected gateways", - "connectedSwitches": "Connected switches" + "connectedAp": "AP connectats", + "activeUser": "Dispositius actius", + "alerts": "Alertes", + "connectedGateway": "Pasarel·les connectades", + "connectedSwitches": "Conmutadors connectats" }, "nzbget": { "rate": "Taxa", @@ -187,7 +187,7 @@ "plex": { "streams": "Transmissions actives", "albums": "Àlbums", - "movies": "Movies", + "movies": "Pel·lícules", "tv": "Sèries" }, "sabnzbd": { @@ -213,12 +213,12 @@ "seed": "Llavor" }, "qnap": { - "cpuUsage": "CPU Usage", - "memUsage": "MEM Usage", - "systemTempC": "System Temp", - "poolUsage": "Pool Usage", - "volumeUsage": "Volume Usage", - "invalid": "Invalid" + "cpuUsage": "Ús de CPU", + "memUsage": "Ús de Memòria", + "systemTempC": "Temp. Sistema", + "poolUsage": "Ús de les Reserves", + "volumeUsage": "Ús dels Volums", + "invalid": "No vàlid" }, "deluge": { "download": "Descarregar", @@ -235,7 +235,7 @@ "sonarr": { "wanted": "Volgut", "queued": "En cua", - "series": "Series", + "series": "Sèries", "queue": "Cua", "unknown": "Desconegut" }, @@ -243,14 +243,14 @@ "wanted": "Volgut", "missing": "Faltant", "queued": "En cua", - "movies": "Movies", + "movies": "Pel·lícules", "queue": "Cua", "unknown": "Desconegut" }, "lidarr": { "wanted": "Volgut", "queued": "En cua", - "artists": "Artists" + "artists": "Artistes" }, "readarr": { "wanted": "Volgut", @@ -279,15 +279,15 @@ }, "netalertx": { "total": "Total", - "connected": "Connected", - "new_devices": "New Devices", - "down_alerts": "Down Alerts" + "connected": "Connectat", + "new_devices": "Nous dispositius", + "down_alerts": "Alertes de caigudes" }, "pihole": { "queries": "Consultes", "blocked": "Bloquejat", - "blocked_percent": "Blocked %", - "gravity": "Gravity" + "blocked_percent": "Bloquejat %", + "gravity": "Gravetat" }, "adguard": { "queries": "Consultes", @@ -298,37 +298,37 @@ "speedtest": { "upload": "Pujada", "download": "Descarregar", - "ping": "Ping" + "ping": "Latència" }, "portainer": { - "running": "Running", + "running": "En execució", "stopped": "Aturat", "total": "Total" }, "tailscale": { - "address": "Address", - "expires": "Expires", - "never": "Never", - "last_seen": "Last Seen", - "now": "Now", - "years": "{{number}}y", - "weeks": "{{number}}w", + "address": "Adreça", + "expires": "Caduca", + "never": "Mai", + "last_seen": "Vist per darrer cop", + "now": "Ara", + "years": "{{number}}a", + "weeks": "{{number}}set", "days": "{{number}}d", "hours": "{{number}}h", "minutes": "{{number}}m", "seconds": "{{number}}s", - "ago": "{{value}} Ago" + "ago": "Fa {{value}}" }, "tdarr": { "queue": "Cua", - "processed": "Processed", - "errored": "Errored", - "saved": "Saved" + "processed": "Processat", + "errored": "Error", + "saved": "Desat" }, "traefik": { "routers": "Encaminadors", "services": "Serveis", - "middleware": "Middleware" + "middleware": "Intermediari" }, "navidrome": { "nothing_streaming": "Sense reproduccions actives", @@ -360,7 +360,7 @@ }, "jackett": { "configured": "Configurat", - "errored": "Errored" + "errored": "Error" }, "strelaysrv": { "numActiveSessions": "Sessions", @@ -376,18 +376,18 @@ "medusa": { "wanted": "Volgut", "queued": "En cua", - "series": "Series" + "series": "Sèries" }, "minecraft": { - "players": "Players", - "version": "Version", + "players": "Jugadors", + "version": "Versió", "status": "Estat", - "up": "Online", + "up": "En línia", "down": "Fora de línia" }, "miniflux": { - "read": "Read", - "unread": "Unread" + "read": "Llegir", + "unread": "Sense llegir" }, "authentik": { "users": "Usuaris", @@ -406,28 +406,28 @@ "wait": "Si us plau, espereu", "temp": "TEMP", "_temp": "Temp", - "warn": "Warn", - "uptime": "UP", + "warn": "Avís", + "uptime": "ACTIU", "total": "Total", "free": "Lliure", "used": "Utilitzat", "days": "d", "hours": "h", - "crit": "Crit", - "read": "Read", - "write": "Write", + "crit": "Crític", + "read": "Llegir", + "write": "Escriure", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Intercanvi" }, "quicklaunch": { "bookmark": "Marcador", "service": "Servei", - "search": "Search", - "custom": "Custom", - "visit": "Visit", + "search": "Cercar", + "custom": "Personalitzat", + "visit": "Visitar", "url": "URL", - "searchsuggestion": "Suggestion" + "searchsuggestion": "Suggeriment" }, "wmo": { "0-day": "Assolellat", @@ -492,21 +492,21 @@ "updates": "Actualitzacions", "update_available": "Actualització disponible", "up_to_date": "Actualitzat", - "child_bridges": "Child Bridges", + "child_bridges": "Ponts fills", "child_bridges_status": "{{ok}}/{{total}}", - "up": "Up", + "up": "Actiu", "pending": "Pendent", - "down": "Down" + "down": "Inactiu" }, "healthchecks": { - "new": "New", - "up": "Up", - "grace": "In Grace Period", - "down": "Down", - "paused": "Paused", + "new": "Nou", + "up": "Actiu", + "grace": "En Període de gràcia", + "down": "Inactiu", + "paused": "En pausa", "status": "Estat", - "last_ping": "Last Ping", - "never": "No pings yet" + "last_ping": "Últim ping", + "never": "Sense pings" }, "watchtower": { "containers_scanned": "Escanejat", @@ -528,7 +528,7 @@ "truenas": { "load": "Càrrega del sistema", "uptime": "Temps actiu", - "alerts": "Alerts" + "alerts": "Alertes" }, "pyload": { "speed": "Velocitat", @@ -544,12 +544,12 @@ "hdhomerun": { "channels": "Canals", "hd": "HD", - "tunerCount": "Tuners", - "channelNumber": "Channel", - "channelNetwork": "Network", - "signalStrength": "Strength", - "signalQuality": "Quality", - "symbolQuality": "Quality", + "tunerCount": "Sintonitzadors", + "channelNumber": "Canal", + "channelNetwork": "Xarxa", + "signalStrength": "Intensitat", + "signalQuality": "Qualitat", + "symbolQuality": "Qualitat", "networkRate": "Taxa de bits", "clientIP": "Client" }, @@ -563,94 +563,94 @@ "total": "Total" }, "peanut": { - "battery_charge": "Battery Charge", - "ups_load": "UPS Load", - "ups_status": "UPS Status", - "online": "Online", - "on_battery": "On Battery", - "low_battery": "Low Battery" + "battery_charge": "Càrrega de la bateria", + "ups_load": "Càrrega del SAI", + "ups_status": "Estat del SAI", + "online": "En línia", + "on_battery": "En Bateria", + "low_battery": "Bateria Baixa" }, "nextdns": { "wait": "Espereu si us plau", - "no_devices": "No Device Data Received" + "no_devices": "No s'han rebut dades del Dispositiu" }, "mikrotik": { - "cpuLoad": "CPU Load", - "memoryUsed": "Memory Used", + "cpuLoad": "Càrrega de CPU", + "memoryUsed": "Memoria en ús", "uptime": "Temps actiu", - "numberOfLeases": "Leases" + "numberOfLeases": "IPs assignades" }, "xteve": { - "streams_all": "All Streams", + "streams_all": "Tots els fluxos", "streams_active": "Transmissions actives", - "streams_xepg": "XEPG Channels" + "streams_xepg": "Canals XEPG" }, "opendtu": { - "yieldDay": "Today", - "absolutePower": "Power", - "relativePower": "Power %", - "limit": "Limit" + "yieldDay": "Avui", + "absolutePower": "Potència", + "relativePower": "Potència %", + "limit": "Límit" }, "opnsense": { - "cpu": "CPU Load", - "memory": "Active Memory", - "wanUpload": "WAN Upload", - "wanDownload": "WAN Download" + "cpu": "Càrrega de CPU", + "memory": "Memòria activa", + "wanUpload": "Pujada WAN", + "wanDownload": "Baixada WAN" }, "moonraker": { - "printer_state": "Printer State", - "print_status": "Print Status", + "printer_state": "Estat de l'impressora", + "print_status": "Estat de l'impressió", "print_progress": "Progress", - "layers": "Layers" + "layers": "Capes" }, "octoprint": { "printer_state": "Estat", - "temp_tool": "Tool temp", - "temp_bed": "Bed temp", - "job_completion": "Completion" + "temp_tool": "Temperatura capçal", + "temp_bed": "Temperatura llit", + "job_completion": "Finalització" }, "cloudflared": { - "origin_ip": "Origin IP", + "origin_ip": "IP Origen", "status": "Estat" }, "pfsense": { - "load": "Load Avg", - "memory": "Mem Usage", - "wanStatus": "WAN Status", - "up": "Up", - "down": "Down", + "load": "Promig Càrrega", + "memory": "Ús Memòria", + "wanStatus": "Estat WAN", + "up": "Actiu", + "down": "Inactiu", "temp": "Temp", - "disk": "Disk Usage", + "disk": "Ús Disc", "wanIP": "WAN IP" }, "proxmoxbackupserver": { "datastore_usage": "Datastore", - "failed_tasks_24h": "Failed Tasks 24h", + "failed_tasks_24h": "Tasques fallides (24h)", "cpu_usage": "CPU", - "memory_usage": "Memory" + "memory_usage": "Memòria" }, "immich": { "users": "Usuaris", - "photos": "Photos", + "photos": "Fotos", "videos": "Vídeos", - "storage": "Storage" + "storage": "Emmagatzematge" }, "uptimekuma": { - "up": "Sites Up", - "down": "Sites Down", + "up": "Actius", + "down": "Caiguts", "uptime": "Temps actiu", - "incident": "Incident", + "incident": "Incidència", "m": "m" }, "atsumeru": { - "series": "Series", - "archives": "Archives", - "chapters": "Chapters", + "series": "Sèries", + "archives": "Arxius", + "chapters": "Capítols", "categories": "Categories" }, "komga": { - "libraries": "Libraries", - "series": "Series", + "libraries": "Biblioteques", + "series": "Sèries", "books": "Llibres" }, "diskstation": { @@ -659,77 +659,77 @@ "volumeAvailable": "Disponible" }, "mylar": { - "series": "Series", - "issues": "Issues", + "series": "Sèries", + "issues": "Problemes", "wanted": "Volgut" }, "photoprism": { "albums": "Àlbums", - "photos": "Photos", + "photos": "Fotos", "videos": "Vídeos", - "people": "People" + "people": "Gent" }, "fileflows": { "queue": "Cua", "processing": "Processant", - "processed": "Processed", - "time": "Time" + "processed": "Processat", + "time": "Temps" }, "grafana": { - "dashboards": "Dashboards", - "datasources": "Data Sources", - "totalalerts": "Total Alerts", - "alertstriggered": "Alerts Triggered" + "dashboards": "Taulells", + "datasources": "Origen de dades", + "totalalerts": "Alertes Totals", + "alertstriggered": "Alertes disparades" }, "nextcloud": { - "cpuload": "Cpu Load", - "memoryusage": "Memory Usage", - "freespace": "Free Space", - "activeusers": "Active Users", - "numfiles": "Files", - "numshares": "Shared Items" + "cpuload": "Càrrega de CPU", + "memoryusage": "Ús Memòria", + "freespace": "Espai lliure", + "activeusers": "Usuaris actius", + "numfiles": "Fitxers", + "numshares": "Elements compartits" }, "kopia": { "status": "Estat", - "size": "Size", - "lastrun": "Last Run", - "nextrun": "Next Run", + "size": "Mida", + "lastrun": "Darrera execució", + "nextrun": "Següent execució", "failed": "Error" }, "unmanic": { - "active_workers": "Active Workers", - "total_workers": "Total Workers", - "records_total": "Queue Length" + "active_workers": "Treballadors actius", + "total_workers": "Treballadors Totals", + "records_total": "Llargada de la Cua" }, "pterodactyl": { - "servers": "Servers", + "servers": "Servidors", "nodes": "Nodes" }, "prometheus": { - "targets_up": "Targets Up", - "targets_down": "Targets Down", - "targets_total": "Total Targets" + "targets_up": "Objectius actius", + "targets_down": "Objectius caiguts", + "targets_total": "Objectius Totals" }, "gatus": { - "up": "Sites Up", - "down": "Sites Down", + "up": "Actius", + "down": "Caiguts", "uptime": "Temps actiu" }, "ghostfolio": { - "gross_percent_today": "Today", - "gross_percent_1y": "One year", - "gross_percent_max": "All time" + "gross_percent_today": "Avui", + "gross_percent_1y": "Un any", + "gross_percent_max": "Tot" }, "audiobookshelf": { "podcasts": "Podcasts", "books": "Llibres", - "podcastsDuration": "Duration", - "booksDuration": "Duration" + "podcastsDuration": "Durada", + "booksDuration": "Durada" }, "homeassistant": { - "people_home": "People Home", - "lights_on": "Lights On", - "switches_on": "Switches On" + "people_home": "Gent a casa", + "lights_on": "Llums enceses", + "switches_on": "Endolls activats" }, "whatsupdocker": { "monitoring": "Supervisió", @@ -737,144 +737,144 @@ }, "calibreweb": { "books": "Llibres", - "authors": "Authors", + "authors": "Autors", "categories": "Categories", - "series": "Series" + "series": "Sèries" }, "jdownloader": { "downloadCount": "Cua", "downloadBytesRemaining": "Restant", - "downloadTotalBytes": "Size", + "downloadTotalBytes": "Mida", "downloadSpeed": "Velocitat" }, "kavita": { - "seriesCount": "Series", - "totalFiles": "Files" + "seriesCount": "Sèries", + "totalFiles": "Fitxers" }, "azuredevops": { - "result": "Result", + "result": "Resultat", "status": "Estat", - "buildId": "Build ID", - "succeeded": "Succeeded", - "notStarted": "Not Started", + "buildId": "Id de compilació", + "succeeded": "Amb èxit", + "notStarted": "No Iniciat", "failed": "Error", - "canceled": "Canceled", - "inProgress": "In Progress", - "totalPrs": "Total PRs", - "myPrs": "My PRs", + "canceled": "Cancel·lat", + "inProgress": "En curs", + "totalPrs": "RP Totals", + "myPrs": "Els meus RP", "approved": "Aprovat" }, "gamedig": { "status": "Estat", - "online": "Online", + "online": "En línia", "offline": "Fora de línia", - "name": "Name", - "map": "Map", - "currentPlayers": "Current players", - "players": "Players", - "maxPlayers": "Max players", + "name": "Nom", + "map": "Mapa", + "currentPlayers": "Jugadors actuals", + "players": "Jugadors", + "maxPlayers": "Màxim de jugadors", "bots": "Bots", - "ping": "Ping" + "ping": "Latència" }, "urbackup": { "ok": "Ok", "errored": "Errors", - "noRecent": "Out of Date", - "totalUsed": "Used Storage" + "noRecent": "Obsolet", + "totalUsed": "Emmagatzematge utilitzat" }, "mealie": { - "recipes": "Recipes", + "recipes": "Receptes", "users": "Usuaris", "categories": "Categories", - "tags": "Tags" + "tags": "Etiquetes" }, "openmediavault": { - "downloading": "Downloading", + "downloading": "Descarregant", "total": "Total", - "running": "Running", + "running": "En execució", "stopped": "Aturat", "passed": "Aprobat", "failed": "Error" }, "openwrt": { "uptime": "Temps actiu", - "cpuLoad": "CPU Load Avg (5m)", - "up": "Up", - "down": "Down", - "bytesTx": "Transmitted", - "bytesRx": "Received" + "cpuLoad": "Càrrega promig de CPU (5m)", + "up": "Actiu", + "down": "Inactiu", + "bytesTx": "Enviat", + "bytesRx": "Rebuts" }, "uptimerobot": { "status": "Estat", "uptime": "Temps actiu", - "lastDown": "Last Downtime", - "downDuration": "Downtime Duration", - "sitesUp": "Sites Up", - "sitesDown": "Sites Down", - "paused": "Paused", - "notyetchecked": "Not Yet Checked", - "up": "Up", - "seemsdown": "Seems Down", - "down": "Down", + "lastDown": "Darrera Inactivitat", + "downDuration": "Duració d'Inactivitat", + "sitesUp": "Actius", + "sitesDown": "Caiguts", + "paused": "En pausa", + "notyetchecked": "Sense verificar", + "up": "Actiu", + "seemsdown": "Sembla caigut", + "down": "Inactiu", "unknown": "Desconegut" }, "calendar": { - "inCinemas": "In cinemas", - "physicalRelease": "Physical release", - "digitalRelease": "Digital release", - "noEventsToday": "No events for today!", - "noEventsFound": "No events found" + "inCinemas": "En cines", + "physicalRelease": "Estrena física", + "digitalRelease": "Estrena digital", + "noEventsToday": "Cap esdeveniment per avui!", + "noEventsFound": "No s'han trobat esdeveniments" }, "romm": { - "platforms": "Platforms", - "totalRoms": "Total ROMs" + "platforms": "Plataformes", + "totalRoms": "ROMs totals" }, "netdata": { - "warnings": "Warnings", - "criticals": "Criticals" + "warnings": "Avisos", + "criticals": "Crítics" }, "plantit": { - "events": "Events", - "plants": "Plants", - "photos": "Photos", - "species": "Species" + "events": "Esdeveniments", + "plants": "Plantes", + "photos": "Fotos", + "species": "Espècies" }, "gitea": { - "notifications": "Notifications", - "issues": "Issues", - "pulls": "Pull Requests" + "notifications": "Notificacions", + "issues": "Problemes", + "pulls": "Sol·licitud de Canvis" }, "stash": { - "scenes": "Scenes", - "scenesPlayed": "Scenes Played", - "playCount": "Total Plays", - "playDuration": "Time Watched", - "sceneSize": "Scenes Size", - "sceneDuration": "Scenes Duration", - "images": "Images", - "imageSize": "Images Size", - "galleries": "Galleries", - "performers": "Performers", - "studios": "Studios", - "movies": "Movies", - "tags": "Tags", + "scenes": "Escenes", + "scenesPlayed": "Escenes reproduïdes", + "playCount": "Total reproduccions", + "playDuration": "Temps visionat", + "sceneSize": "Tamany Escena", + "sceneDuration": "Duració Escenes", + "images": "Imatges", + "imageSize": "Mida Imatges", + "galleries": "Biblioteques", + "performers": "Intèrprets", + "studios": "Estudis", + "movies": "Pel·lícules", + "tags": "Etiquetes", "oCount": "O Count" }, "tandoor": { "users": "Usuaris", - "recipes": "Recipes", - "keywords": "Keywords" + "recipes": "Receptes", + "keywords": "Paraules claus" }, "homebox": { - "items": "Items", - "totalWithWarranty": "With Warranty", - "locations": "Locations", - "labels": "Labels", + "items": "Elements", + "totalWithWarranty": "Amb Garantia", + "locations": "Ubicacions", + "labels": "Etiquetes", "users": "Usuaris", - "totalValue": "Total Value" + "totalValue": "Valor total" }, "crowdsec": { - "alerts": "Alerts", - "bans": "Bans" + "alerts": "Alertes", + "bans": "Prohibicions" } } diff --git a/public/locales/de/common.json b/public/locales/de/common.json index 82212c69..78f28c0a 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -875,6 +875,6 @@ }, "crowdsec": { "alerts": "Warnungen", - "bans": "Bans" + "bans": "Banns" } } diff --git a/public/locales/it/common.json b/public/locales/it/common.json index a795bc57..8f583e66 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -15,8 +15,8 @@ "relativeDate": "{{value, relativeDate}}", "uptime": "{{value, uptime}}", "months": "mo", - "days": "d", - "hours": "h", + "days": "g", + "hours": "o", "minutes": "m", "seconds": "s" }, @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "In attesa di disconnessione", "connectionStatusDisconnecting": "Disconnessione in corso", "connectionStatusDisconnected": "Disconnesso", - "connectionStatusConnected": "Connected", + "connectionStatusConnected": "Connesso", "uptime": "Tempo di attività", "maxDown": "Max. Down", "maxUp": "Max. Up", @@ -279,9 +279,9 @@ }, "netalertx": { "total": "Totale", - "connected": "Connected", - "new_devices": "New Devices", - "down_alerts": "Down Alerts" + "connected": "Connesso", + "new_devices": "Nuovi Dispositivi", + "down_alerts": "Avvisi di Disservizio" }, "pihole": { "queries": "Richieste", @@ -411,8 +411,8 @@ "total": "Totale", "free": "Libero", "used": "In utilizzo", - "days": "d", - "hours": "h", + "days": "g", + "hours": "o", "crit": "Critico", "read": "Letti", "write": "Scrittura", @@ -427,7 +427,7 @@ "custom": "Personalizzato", "visit": "Visita", "url": "URL", - "searchsuggestion": "Suggestion" + "searchsuggestion": "Suggerimenti" }, "wmo": { "0-day": "Soleggiato", @@ -546,8 +546,8 @@ "hd": "HD", "tunerCount": "Tuners", "channelNumber": "Channel", - "channelNetwork": "Network", - "signalStrength": "Strength", + "channelNetwork": "Rete", + "signalStrength": "Intensità", "signalQuality": "Quality", "symbolQuality": "Quality", "networkRate": "Bitrate", @@ -830,32 +830,32 @@ "totalRoms": "Total ROMs" }, "netdata": { - "warnings": "Warnings", + "warnings": "Avvisi", "criticals": "Criticals" }, "plantit": { "events": "Events", "plants": "Plants", "photos": "Foto", - "species": "Species" + "species": "Specie" }, "gitea": { - "notifications": "Notifications", + "notifications": "Notifiche", "issues": "Problemi", - "pulls": "Pull Requests" + "pulls": "Richieste di Pull" }, "stash": { - "scenes": "Scenes", - "scenesPlayed": "Scenes Played", - "playCount": "Total Plays", - "playDuration": "Time Watched", - "sceneSize": "Scenes Size", - "sceneDuration": "Scenes Duration", - "images": "Images", + "scenes": "Scene", + "scenesPlayed": "Scene Riprodotte", + "playCount": "Totale Riproduzioni", + "playDuration": "Tempo Guardato", + "sceneSize": "Dimensione Delle Scene", + "sceneDuration": "Durata Delle Scene", + "images": "Immagini", "imageSize": "Images Size", "galleries": "Galleries", - "performers": "Performers", - "studios": "Studios", + "performers": "Esecutori", + "studios": "Studi", "movies": "Film", "tags": "Tag", "oCount": "O Count" diff --git a/public/locales/sl/common.json b/public/locales/sl/common.json index f732fbe1..83691aab 100644 --- a/public/locales/sl/common.json +++ b/public/locales/sl/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Čakanje na prekinitev", "connectionStatusDisconnecting": "Prekinitev", "connectionStatusDisconnected": "Prekinjeno", - "connectionStatusConnected": "Connected", + "connectionStatusConnected": "Povezan", "uptime": "Čas delovanja", "maxDown": "Maks. dol", "maxUp": "Maks. gor", @@ -279,9 +279,9 @@ }, "netalertx": { "total": "Skupaj", - "connected": "Connected", - "new_devices": "New Devices", - "down_alerts": "Down Alerts" + "connected": "Povezan", + "new_devices": "Nova naprave", + "down_alerts": "Alarmi nedelovanja" }, "pihole": { "queries": "Poizvedbe", diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json index 9918ab64..7fc24490 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -104,7 +104,7 @@ "no_active": "Inga aktiva strömmar", "movies": "Movies", "series": "Series", - "episodes": "Episodes", + "episodes": "Avsnitt", "songs": "Songs" }, "esphome": { @@ -423,7 +423,7 @@ "quicklaunch": { "bookmark": "Bookmark", "service": "Service", - "search": "Search", + "search": "Sök", "custom": "Custom", "visit": "Visit", "url": "URL", From 068e664f1662f99033eae37cf4d34fb2e71e02c1 Mon Sep 17 00:00:00 2001 From: lavavex <27239435+lavavex@users.noreply.github.com> Date: Wed, 17 Apr 2024 19:00:37 -0500 Subject: [PATCH 12/38] Documentation: correct Medusa link (#3320) --- docs/widgets/services/medusa.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/widgets/services/medusa.md b/docs/widgets/services/medusa.md index e500d95f..82ec2b53 100644 --- a/docs/widgets/services/medusa.md +++ b/docs/widgets/services/medusa.md @@ -3,7 +3,7 @@ title: Medusa description: Medusa Widget Configuration --- -Learn more about [Medusa](https://github.com/medusajs/medusa). +Learn more about [Medusa](https://github.com/pymedusa/Medusa). Allowed fields: `["wanted", "queued", "series"]`. From c95837f54eb90ba753821c90aaf6f3008f4c6410 Mon Sep 17 00:00:00 2001 From: David Hirsch Date: Sat, 20 Apr 2024 01:32:14 +0200 Subject: [PATCH 13/38] Enhancement: configurable CPU temp scale (#3332) --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- docs/widgets/info/resources.md | 2 ++ src/components/widgets/resources/cputemp.jsx | 11 ++++++++--- src/components/widgets/resources/resources.jsx | 6 ++++-- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/docs/widgets/info/resources.md b/docs/widgets/info/resources.md index b4f85d69..8281cec0 100644 --- a/docs/widgets/info/resources.md +++ b/docs/widgets/info/resources.md @@ -19,6 +19,8 @@ _Note: unfortunately, the package used for getting CPU temp ([systeminformation] memory: true disk: /disk/mount/path cputemp: true + tempmin: 0 # optional, minimum cpu temp + tempmax: 100 # optional, maximum cpu temp uptime: true units: imperial # only used by cpu temp refresh: 3000 # optional, in ms diff --git a/src/components/widgets/resources/cputemp.jsx b/src/components/widgets/resources/cputemp.jsx index 96f98096..ef994c65 100644 --- a/src/components/widgets/resources/cputemp.jsx +++ b/src/components/widgets/resources/cputemp.jsx @@ -9,7 +9,7 @@ function convertToFahrenheit(t) { return (t * 9) / 5 + 32; } -export default function CpuTemp({ expanded, units, refresh = 1500 }) { +export default function CpuTemp({ expanded, units, refresh = 1500, tempmin = 0, tempmax = -1 }) { const { t } = useTranslation(); const { data, error } = useSWR(`/api/widgets/resources?type=cputemp`, { @@ -39,7 +39,12 @@ export default function CpuTemp({ expanded, units, refresh = 1500 }) { } const unit = units === "imperial" ? "fahrenheit" : "celsius"; mainTemp = unit === "celsius" ? mainTemp : convertToFahrenheit(mainTemp); - const maxTemp = unit === "celsius" ? data.cputemp.max : convertToFahrenheit(data.cputemp.max); + + const minTemp = tempmin < mainTemp ? tempmin : mainTemp; + let maxTemp = tempmax; + if (maxTemp < minTemp) { + maxTemp = unit === "celsius" ? data.cputemp.max : convertToFahrenheit(data.cputemp.max); + } return ( ); diff --git a/src/components/widgets/resources/resources.jsx b/src/components/widgets/resources/resources.jsx index e2f2bfb8..634e0ff5 100644 --- a/src/components/widgets/resources/resources.jsx +++ b/src/components/widgets/resources/resources.jsx @@ -8,7 +8,7 @@ import CpuTemp from "./cputemp"; import Uptime from "./uptime"; export default function Resources({ options }) { - const { expanded, units, diskUnits } = options; + const { expanded, units, diskUnits, tempmin, tempmax } = options; let { refresh } = options; if (!refresh) refresh = 1500; refresh = Math.max(refresh, 1000); @@ -23,7 +23,9 @@ export default function Resources({ options }) { )) : options.disk && } - {options.cputemp && } + {options.cputemp && ( + + )} {options.uptime && }
{options.label && ( From 79e3eb9c90428100f5539c8eaa7f81bbd80b290d Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 21 Apr 2024 07:12:49 -0700 Subject: [PATCH 14/38] Documentation: fix docker stats link --- docs/configs/docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configs/docker.md b/docs/configs/docker.md index 4d3026db..bcd0dd61 100644 --- a/docs/configs/docker.md +++ b/docs/configs/docker.md @@ -235,4 +235,4 @@ You can show the docker stats by clicking the status indicator but this can also showStats: true ``` -Also see the settings for [show docker stats](docker.md#show-docker-stats). +Also see the settings for [show docker stats](settings.md#show-docker-stats). From 595049f7fcf792be9a6aba3e0062b4b4cd9c0565 Mon Sep 17 00:00:00 2001 From: Nuno Alexandre <38176824+NuAlex@users.noreply.github.com> Date: Mon, 22 Apr 2024 12:33:35 -0700 Subject: [PATCH 15/38] Documentation: clarify uptime kuma slug (#3345) --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- docs/widgets/services/uptime-kuma.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/widgets/services/uptime-kuma.md b/docs/widgets/services/uptime-kuma.md index 56aa5a57..399a0eee 100644 --- a/docs/widgets/services/uptime-kuma.md +++ b/docs/widgets/services/uptime-kuma.md @@ -5,7 +5,7 @@ description: Uptime Kuma Widget Configuration Learn more about [Uptime Kuma](https://github.com/louislam/uptime-kuma). -As Uptime Kuma does not yet have a full API the widget uses data from a single "status page". As such you will need a status page setup with a group of monitored sites, which is where you get the slug (without the `/status/` portion). +As Uptime Kuma does not yet have a full API the widget uses data from a single "status page". As such you will need a status page setup with a group of monitored sites, which is where you get the slug (the url without the `/status/` portion). E.g. if your status page is URL http://uptimekuma.host/status/statuspageslug, insert `slug: statuspageslug`. Allowed fields: `["up", "down", "uptime", "incident"]`. From f4fc30cd9fe851083910a4076db24523d4a00ff3 Mon Sep 17 00:00:00 2001 From: Liam Dyer Date: Mon, 22 Apr 2024 16:59:23 -0400 Subject: [PATCH 16/38] Documentation: update Authentik suggested permissions (#3349) --- docs/widgets/services/authentik.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/widgets/services/authentik.md b/docs/widgets/services/authentik.md index a92b84ec..8968f4bf 100644 --- a/docs/widgets/services/authentik.md +++ b/docs/widgets/services/authentik.md @@ -12,10 +12,8 @@ Make sure to set Intent to "API Token". The account you made the API token for also needs the following **Assigned global permissions** in Authentik: -- authentik Core - - User -- authentik Events - - Event +- authentik Core -> Can view User (Model: User) +- authentik Events -> Can view Event (Model: Event) Allowed fields: `["users", "loginsLast24H", "failedLoginsLast24H"]`. From 312e97d18b42cad6d764380aea3c9679601edd88 Mon Sep 17 00:00:00 2001 From: Ameer Abdallah Date: Mon, 22 Apr 2024 17:49:19 -0700 Subject: [PATCH 17/38] Enhancement: additional tautulli jellyfin emby configuration options (#3350) --- docs/widgets/services/emby.md | 2 + docs/widgets/services/jellyfin.md | 3 + docs/widgets/services/plex-tautulli.md | 2 + src/utils/config/service-helpers.js | 15 ++-- src/widgets/emby/component.jsx | 96 ++++++++++++++++---------- src/widgets/tautulli/component.jsx | 70 +++++++++++++------ 6 files changed, 121 insertions(+), 67 deletions(-) diff --git a/docs/widgets/services/emby.md b/docs/widgets/services/emby.md index 1d70fdf3..e658d73b 100644 --- a/docs/widgets/services/emby.md +++ b/docs/widgets/services/emby.md @@ -17,4 +17,6 @@ widget: enableBlocks: true # optional, defaults to false enableNowPlaying: true # optional, defaults to true enableUser: true # optional, defaults to false + showEpisodeNumber: true # optional, defaults to false + expandOneStreamToTwoRows: false # optional, defaults to true ``` diff --git a/docs/widgets/services/jellyfin.md b/docs/widgets/services/jellyfin.md index 0428c622..b6724a15 100644 --- a/docs/widgets/services/jellyfin.md +++ b/docs/widgets/services/jellyfin.md @@ -16,4 +16,7 @@ widget: key: apikeyapikeyapikeyapikeyapikey enableBlocks: true # optional, defaults to false enableNowPlaying: true # optional, defaults to true + enableUser: true # optional, defaults to false + showEpisodeNumber: true # optional, defaults to false + expandOneStreamToTwoRows: false # optional, defaults to true ``` diff --git a/docs/widgets/services/plex-tautulli.md b/docs/widgets/services/plex-tautulli.md index cce45fc3..9cacdf05 100644 --- a/docs/widgets/services/plex-tautulli.md +++ b/docs/widgets/services/plex-tautulli.md @@ -15,4 +15,6 @@ widget: url: http://tautulli.host.or.ip key: apikeyapikeyapikeyapikeyapikey enableUser: true # optional, defaults to false + showEpisodeNumber: true # optional, defaults to false + expandOneStreamToTwoRows: false # optional, defaults to true ``` diff --git a/src/utils/config/service-helpers.js b/src/utils/config/service-helpers.js index 7fb81088..fc4d57eb 100644 --- a/src/utils/config/service-helpers.js +++ b/src/utils/config/service-helpers.js @@ -395,6 +395,8 @@ export function cleanServiceGroups(groups) { // emby, jellyfin, tautulli enableUser, + expandOneStreamToTwoRows, + showEpisodeNumber, // glances, pihole version, @@ -520,14 +522,13 @@ export function cleanServiceGroups(groups) { if (["emby", "jellyfin"].includes(type)) { if (enableBlocks !== undefined) cleanedService.widget.enableBlocks = JSON.parse(enableBlocks); if (enableNowPlaying !== undefined) cleanedService.widget.enableNowPlaying = JSON.parse(enableNowPlaying); - if (enableUser !== undefined) { - cleanedService.widget.enableUser = !!JSON.parse(enableUser); - } } - if (["tautulli"].includes(type)) { - if (enableUser !== undefined) { - cleanedService.widget.enableUser = !!JSON.parse(enableUser); - } + if (["emby", "jellyfin", "tautulli"].includes(type)) { + if (expandOneStreamToTwoRows !== undefined) + cleanedService.widget.expandOneStreamToTwoRows = !!JSON.parse(expandOneStreamToTwoRows); + if (showEpisodeNumber !== undefined) + cleanedService.widget.showEpisodeNumber = !!JSON.parse(showEpisodeNumber); + if (enableUser !== undefined) cleanedService.widget.enableUser = !!JSON.parse(enableUser); } if (["sonarr", "radarr"].includes(type)) { if (enableQueue !== undefined) cleanedService.widget.enableQueue = JSON.parse(enableQueue); diff --git a/src/widgets/emby/component.jsx b/src/widgets/emby/component.jsx index f11a689d..9084cbac 100644 --- a/src/widgets/emby/component.jsx +++ b/src/widgets/emby/component.jsx @@ -27,12 +27,28 @@ function ticksToString(ticks) { return parts.map((part) => part.toString().padStart(2, "0")).join(":"); } -function SingleSessionEntry({ playCommand, session, enableUser }) { +function generateStreamTitle(session, enableUser, showEpisodeNumber) { const { - NowPlayingItem: { Name, SeriesName }, - PlayState: { PositionTicks, IsPaused, IsMuted }, + NowPlayingItem: { Name, SeriesName, Type, ParentIndexNumber, IndexNumber }, UserName, } = session; + let streamTitle = ""; + + if (Type === "Episode" && showEpisodeNumber) { + const seasonStr = `S${ParentIndexNumber.toString().padStart(2, "0")}`; + const episodeStr = `E${IndexNumber.toString().padStart(2, "0")}`; + streamTitle = `${SeriesName}: ${seasonStr} · ${episodeStr} - ${Name}`; + } else { + streamTitle = `${Name}${SeriesName ? ` - ${SeriesName}` : ""}`; + } + + return enableUser ? `${streamTitle} (${UserName})` : streamTitle; +} + +function SingleSessionEntry({ playCommand, session, enableUser, showEpisodeNumber }) { + const { + PlayState: { PositionTicks, IsPaused, IsMuted }, + } = session; const RunTimeTicks = session.NowPlayingItem?.RunTimeTicks ?? session.NowPlayingItem?.CurrentProgram?.RunTimeTicks ?? 0; @@ -43,14 +59,13 @@ function SingleSessionEntry({ playCommand, session, enableUser }) { const percent = Math.min(1, PositionTicks / RunTimeTicks) * 100; + const streamTitle = generateStreamTitle(session, enableUser, showEpisodeNumber); return ( <>
-
- {Name} - {SeriesName && ` - ${SeriesName}`} - {enableUser && ` (${UserName})`} +
+ {streamTitle}
@@ -99,11 +114,9 @@ function SingleSessionEntry({ playCommand, session, enableUser }) { ); } -function SessionEntry({ playCommand, session, enableUser }) { +function SessionEntry({ playCommand, session, enableUser, showEpisodeNumber }) { const { - NowPlayingItem: { Name, SeriesName }, PlayState: { PositionTicks, IsPaused, IsMuted }, - UserName, } = session; const RunTimeTicks = @@ -113,6 +126,8 @@ function SessionEntry({ playCommand, session, enableUser }) { IsVideoDirect: true, }; // if no transcodinginfo its videodirect + const streamTitle = generateStreamTitle(session, enableUser, showEpisodeNumber); + const percent = Math.min(1, PositionTicks / RunTimeTicks) * 100; return ( @@ -142,10 +157,8 @@ function SessionEntry({ playCommand, session, enableUser }) { )}
-
- {Name} - {SeriesName && ` - ${SeriesName}`} - {enableUser && ` (${UserName})`} +
+ {streamTitle}
{IsMuted && }
@@ -219,7 +232,9 @@ export default function Component({ service }) { const enableBlocks = service.widget?.enableBlocks; const enableNowPlaying = service.widget?.enableNowPlaying ?? true; - const enableUser = !!service.widget?.enableUser; + const enableUser = !!service.widget?.enableUser; // default is false + const expandOneStreamToTwoRows = service.widget?.expandOneStreamToTwoRows !== false; // default is true + const showEpisodeNumber = !!service.widget?.showEpisodeNumber; // default is false if (!sessionsData || !countData) { return ( @@ -230,9 +245,11 @@ export default function Component({ service }) {
-
-
- - -
+ {expandOneStreamToTwoRows && ( +
+ - +
+ )}
)} @@ -260,15 +277,17 @@ export default function Component({ service }) {
{t("emby.no_active")}
-
- - -
+ {expandOneStreamToTwoRows && ( +
+ - +
+ )}
); } - if (playing.length === 1) { + if (expandOneStreamToTwoRows && playing.length === 1) { const session = playing[0]; return ( <> @@ -278,28 +297,29 @@ export default function Component({ service }) { playCommand={(currentSession, command) => handlePlayCommand(currentSession, command)} session={session} enableUser={enableUser} + showEpisodeNumber={showEpisodeNumber} />
); } - if (playing.length > 0) - return ( - <> - {enableBlocks && } -
- {playing.map((session) => ( - handlePlayCommand(currentSession, command)} - session={session} - enableUser={enableUser} - /> - ))} -
- - ); + return ( + <> + {enableBlocks && } +
+ {playing.map((session) => ( + handlePlayCommand(currentSession, command)} + session={session} + enableUser={enableUser} + showEpisodeNumber={showEpisodeNumber} + /> + ))} +
+ + ); } if (enableBlocks) { diff --git a/src/widgets/tautulli/component.jsx b/src/widgets/tautulli/component.jsx index d224391b..b540c6d7 100644 --- a/src/widgets/tautulli/component.jsx +++ b/src/widgets/tautulli/component.jsx @@ -25,17 +25,31 @@ function millisecondsToString(milliseconds) { return parts.map((part) => part.toString().padStart(2, "0")).join(":"); } -function SingleSessionEntry({ session, enableUser }) { - const { full_title, duration, view_offset, progress_percent, state, video_decision, audio_decision, username } = - session; +function generateStreamTitle(session, enableUser, showEpisodeNumber) { + let stream_title = ""; + const { media_type, parent_media_index, media_index, title, grandparent_title, full_title, friendly_name } = session; + if (media_type === "episode" && showEpisodeNumber) { + const season_str = `S${parent_media_index.toString().padStart(2, "0")}`; + const episode_str = `E${media_index.toString().padStart(2, "0")}`; + stream_title = `${grandparent_title}: ${season_str} · ${episode_str} - ${title}`; + } else { + stream_title = full_title; + } + + return enableUser ? `${stream_title} (${friendly_name})` : stream_title; +} + +function SingleSessionEntry({ session, enableUser, showEpisodeNumber }) { + const { duration, view_offset, progress_percent, state, video_decision, audio_decision } = session; + + const stream_title = generateStreamTitle(session, enableUser, showEpisodeNumber); return ( <>
-
- {full_title} - {enableUser && ` (${username})`} +
+ {stream_title}
@@ -78,8 +92,10 @@ function SingleSessionEntry({ session, enableUser }) { ); } -function SessionEntry({ session, enableUser }) { - const { full_title, view_offset, progress_percent, state, video_decision, audio_decision, username } = session; +function SessionEntry({ session, enableUser, showEpisodeNumber }) { + const { view_offset, progress_percent, state, video_decision, audio_decision } = session; + + const stream_title = generateStreamTitle(session, enableUser, showEpisodeNumber); return (
@@ -98,9 +114,8 @@ function SessionEntry({ session, enableUser }) { )}
-
- {full_title} - {enableUser && ` (${username})`} +
+ {stream_title}
@@ -129,6 +144,10 @@ export default function Component({ service }) { refreshInterval: 5000, }); + const enableUser = !!service.widget?.enableUser; // default is false + const expandOneStreamToTwoRows = service.widget?.expandOneStreamToTwoRows !== false; // default is true + const showEpisodeNumber = !!service.widget?.showEpisodeNumber; // default is false + if (activityError || (activityData && Object.keys(activityData.response.data).length === 0)) { return ; } @@ -139,9 +158,11 @@ export default function Component({ service }) {
-
-
- - -
+ {expandOneStreamToTwoRows && ( +
+ - +
+ )}
); } @@ -162,20 +183,20 @@ export default function Component({ service }) {
{t("tautulli.no_active")}
-
- - -
+ {expandOneStreamToTwoRows && ( +
+ - +
+ )}
); } - const enableUser = !!service.widget?.enableUser; - - if (playing.length === 1) { + if (expandOneStreamToTwoRows && playing.length === 1) { const session = playing[0]; return (
- +
); } @@ -183,7 +204,12 @@ export default function Component({ service }) { return (
{playing.map((session) => ( - + ))}
); From 340424391f0e7e171b362ee82ac8ec8b582b62b0 Mon Sep 17 00:00:00 2001 From: Ameer Abdallah Date: Mon, 22 Apr 2024 21:20:08 -0700 Subject: [PATCH 18/38] Enhancement: add bitrate precision config option for speedtest-tracker (#3354) --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- docs/widgets/services/speedtest-tracker.md | 1 + src/utils/config/service-helpers.js | 8 ++++++++ src/widgets/speedtest/component.jsx | 18 ++++++++++++++++-- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/docs/widgets/services/speedtest-tracker.md b/docs/widgets/services/speedtest-tracker.md index 7e250967..99b5b993 100644 --- a/docs/widgets/services/speedtest-tracker.md +++ b/docs/widgets/services/speedtest-tracker.md @@ -16,4 +16,5 @@ Allowed fields: `["download", "upload", "ping"]`. widget: type: speedtest url: http://speedtest.host.or.ip + bitratePrecision: 3 # optional, default is 0 ``` diff --git a/src/utils/config/service-helpers.js b/src/utils/config/service-helpers.js index fc4d57eb..aaee636c 100644 --- a/src/utils/config/service-helpers.js +++ b/src/utils/config/service-helpers.js @@ -450,6 +450,9 @@ export function cleanServiceGroups(groups) { // proxmox node, + // speedtest + bitratePrecision, + // sonarr, radarr enableQueue, @@ -588,6 +591,11 @@ export function cleanServiceGroups(groups) { if (type === "healthchecks") { if (uuid !== undefined) cleanedService.widget.uuid = uuid; } + if (type === "speedtest") { + if (bitratePrecision !== undefined) { + cleanedService.widget.bitratePrecision = parseInt(bitratePrecision, 10); + } + } } return cleanedService; diff --git a/src/widgets/speedtest/component.jsx b/src/widgets/speedtest/component.jsx index 0102025b..9826f776 100644 --- a/src/widgets/speedtest/component.jsx +++ b/src/widgets/speedtest/component.jsx @@ -11,6 +11,11 @@ export default function Component({ service }) { const { data: speedtestData, error: speedtestError } = useWidgetAPI(widget, "speedtest/latest"); + const bitratePrecision = + !widget?.bitratePrecision || Number.isNaN(widget?.bitratePrecision) || widget?.bitratePrecision < 0 + ? 0 + : widget.bitratePrecision; + if (speedtestError) { return ; } @@ -29,9 +34,18 @@ export default function Component({ service }) { + - Date: Tue, 23 Apr 2024 22:13:53 +0100 Subject: [PATCH 19/38] Fix: format Romm statistics (#3358) --- src/widgets/romm/component.jsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/widgets/romm/component.jsx b/src/widgets/romm/component.jsx index 1cb3033e..44b114b0 100644 --- a/src/widgets/romm/component.jsx +++ b/src/widgets/romm/component.jsx @@ -1,9 +1,12 @@ +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 { widget } = service; + const { t } = useTranslation(); const { data: response, error: responseError } = useWidgetAPI(widget, "statistics"); @@ -24,8 +27,8 @@ export default function Component({ service }) { const totalRoms = response.reduce((total, stat) => total + stat.rom_count, 0); return ( - - + + ); } From ea63716b61fc9af0228e1f910dc960ee8da36664 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 29 Apr 2024 17:18:55 -0700 Subject: [PATCH 20/38] Fix: some error URLs aren't sanitized (#3385) --- src/utils/proxy/api-helpers.js | 2 +- src/utils/proxy/http.js | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/utils/proxy/api-helpers.js b/src/utils/proxy/api-helpers.js index 5fc22e1e..ffd2f63b 100644 --- a/src/utils/proxy/api-helpers.js +++ b/src/utils/proxy/api-helpers.js @@ -57,7 +57,7 @@ export function jsonArrayFilter(data, filter) { export function sanitizeErrorURL(errorURL) { // Dont display sensitive params on frontend const url = new URL(errorURL); - ["apikey", "api_key", "token", "t", "access_token"].forEach((key) => { + ["apikey", "api_key", "token", "t", "access_token", "auth"].forEach((key) => { if (url.searchParams.has(key)) url.searchParams.set(key, "***"); }); return url.toString(); diff --git a/src/utils/proxy/http.js b/src/utils/proxy/http.js index 8a9ce380..875bfb4c 100644 --- a/src/utils/proxy/http.js +++ b/src/utils/proxy/http.js @@ -5,6 +5,7 @@ import { createUnzip, constants as zlibConstants } from "node:zlib"; import { http, https } from "follow-redirects"; import { addCookieToJar, setCookieHeader } from "./cookie-jar"; +import { sanitizeErrorURL } from "./api-helpers"; import createLogger from "utils/logger"; @@ -113,6 +114,11 @@ export async function httpProxy(url, params = {}) { constructedUrl.pathname, ); if (err) logger.error(err); - return [500, "application/json", { error: { message: err?.message ?? "Unknown error", url, rawError: err } }, null]; + return [ + 500, + "application/json", + { error: { message: err?.message ?? "Unknown error", url: sanitizeErrorURL(url), rawError: err } }, + null, + ]; } } From d90bf8079a7ded5637d5094c1e037e65f5f24f9f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 09:24:21 -0700 Subject: [PATCH 21/38] Chore(deps): Bump recharts from 2.12.3 to 2.12.6 (#3397) Bumps [recharts](https://github.com/recharts/recharts) from 2.12.3 to 2.12.6. - [Release notes](https://github.com/recharts/recharts/releases) - [Changelog](https://github.com/recharts/recharts/blob/3.x/CHANGELOG.md) - [Commits](https://github.com/recharts/recharts/compare/v2.12.3...v2.12.6) --- updated-dependencies: - dependency-name: recharts dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 8 ++++---- package.json | 2 +- pnpm-lock.yaml | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 46db054c..97c2186c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -31,7 +31,7 @@ "react-dom": "^18.2.0", "react-i18next": "^11.18.6", "react-icons": "^4.12.0", - "recharts": "^2.12.3", + "recharts": "^2.12.6", "rrule": "^2.8.1", "swr": "^1.3.0", "systeminformation": "^5.22.0", @@ -5772,9 +5772,9 @@ } }, "node_modules/recharts": { - "version": "2.12.3", - "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.12.3.tgz", - "integrity": "sha512-vE/F7wTlokf5mtCqVDJlVKelCjliLSJ+DJxj79XlMREm7gpV7ljwbrwE3CfeaoDlOaLX+6iwHaVRn9587YkwIg==", + "version": "2.12.6", + "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.12.6.tgz", + "integrity": "sha512-D+7j9WI+D0NHauah3fKHuNNcRK8bOypPW7os1DERinogGBGaHI7i6tQKJ0aUF3JXyBZ63dyfKIW2WTOPJDxJ8w==", "dependencies": { "clsx": "^2.0.0", "eventemitter3": "^4.0.1", diff --git a/package.json b/package.json index 53d0e3bb..cc0c87fe 100644 --- a/package.json +++ b/package.json @@ -33,7 +33,7 @@ "react-dom": "^18.2.0", "react-i18next": "^11.18.6", "react-icons": "^4.12.0", - "recharts": "^2.12.3", + "recharts": "^2.12.6", "rrule": "^2.8.1", "swr": "^1.3.0", "systeminformation": "^5.22.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 52ffe17f..d8856387 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -75,8 +75,8 @@ dependencies: specifier: ^4.12.0 version: 4.12.0(react@18.2.0) recharts: - specifier: ^2.12.3 - version: 2.12.3(react-dom@18.2.0)(react@18.2.0) + specifier: ^2.12.6 + version: 2.12.6(react-dom@18.2.0)(react@18.2.0) rrule: specifier: ^2.8.1 version: 2.8.1 @@ -3934,8 +3934,8 @@ packages: decimal.js-light: 2.5.1 dev: false - /recharts@2.12.3(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-vE/F7wTlokf5mtCqVDJlVKelCjliLSJ+DJxj79XlMREm7gpV7ljwbrwE3CfeaoDlOaLX+6iwHaVRn9587YkwIg==} + /recharts@2.12.6(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-D+7j9WI+D0NHauah3fKHuNNcRK8bOypPW7os1DERinogGBGaHI7i6tQKJ0aUF3JXyBZ63dyfKIW2WTOPJDxJ8w==} engines: {node: '>=14'} peerDependencies: react: ^16.0.0 || ^17.0.0 || ^18.0.0 From 4fc70eb1ffe9b052583268e4534f6da117ab7579 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 09:43:52 -0700 Subject: [PATCH 22/38] Chore(deps-dev): Bump typescript from 4.9.5 to 5.4.5 (#3396) Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.9.5 to 5.4.5. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/Microsoft/TypeScript/compare/v4.9.5...v5.4.5) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 10 +++++----- package.json | 2 +- pnpm-lock.yaml | 38 +++++++++++++++++++------------------- 3 files changed, 25 insertions(+), 25 deletions(-) diff --git a/package-lock.json b/package-lock.json index 97c2186c..78918479 100644 --- a/package-lock.json +++ b/package-lock.json @@ -56,7 +56,7 @@ "prettier": "^3.2.5", "tailwind-scrollbar": "^3.0.5", "tailwindcss": "^3.4.3", - "typescript": "^4.9.5" + "typescript": "^5.4.5" }, "optionalDependencies": { "osx-temperature-sensor": "^1.0.8" @@ -7091,16 +7091,16 @@ } }, "node_modules/typescript": { - "version": "4.9.5", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", - "integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", + "version": "5.4.5", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz", + "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==", "dev": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { - "node": ">=4.2.0" + "node": ">=14.17" } }, "node_modules/unbox-primitive": { diff --git a/package.json b/package.json index cc0c87fe..796af378 100644 --- a/package.json +++ b/package.json @@ -58,7 +58,7 @@ "prettier": "^3.2.5", "tailwind-scrollbar": "^3.0.5", "tailwindcss": "^3.4.3", - "typescript": "^4.9.5" + "typescript": "^5.4.5" }, "optionalDependencies": { "osx-temperature-sensor": "^1.0.8" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d8856387..3d120fb3 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -119,7 +119,7 @@ devDependencies: version: 19.0.4(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.34.1)(eslint@8.57.0) eslint-config-next: specifier: ^12.3.4 - version: 12.3.4(eslint@8.57.0)(typescript@4.9.5) + version: 12.3.4(eslint@8.57.0)(typescript@5.4.5) eslint-config-prettier: specifier: ^9.1.0 version: 9.1.0(eslint@8.57.0) @@ -151,8 +151,8 @@ devDependencies: specifier: ^3.4.3 version: 3.4.3 typescript: - specifier: ^4.9.5 - version: 4.9.5 + specifier: ^5.4.5 + version: 5.4.5 packages: @@ -603,7 +603,7 @@ packages: resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==} dev: false - /@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5): + /@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -615,10 +615,10 @@ packages: dependencies: '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5) debug: 4.3.4 eslint: 8.57.0 - typescript: 4.9.5 + typescript: 5.4.5 transitivePeerDependencies: - supports-color dev: true @@ -636,7 +636,7 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5): + /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.5): resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -651,8 +651,8 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 - tsutils: 3.21.0(typescript@4.9.5) - typescript: 4.9.5 + tsutils: 3.21.0(typescript@5.4.5) + typescript: 5.4.5 transitivePeerDependencies: - supports-color dev: true @@ -1834,7 +1834,7 @@ packages: object.entries: 1.1.7 dev: true - /eslint-config-next@12.3.4(eslint@8.57.0)(typescript@4.9.5): + /eslint-config-next@12.3.4(eslint@8.57.0)(typescript@5.4.5): resolution: {integrity: sha512-WuT3gvgi7Bwz00AOmKGhOeqnyA5P29Cdyr0iVjLyfDbk+FANQKcOjFUTZIdyYfe5Tq1x4TGcmoe4CwctGvFjHQ==} peerDependencies: eslint: ^7.23.0 || ^8.0.0 @@ -1845,7 +1845,7 @@ packages: dependencies: '@next/eslint-plugin-next': 12.3.4 '@rushstack/eslint-patch': 1.7.2 - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.29.1)(eslint@8.57.0) @@ -1853,7 +1853,7 @@ packages: eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) eslint-plugin-react: 7.34.1(eslint@8.57.0) eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0) - typescript: 4.9.5 + typescript: 5.4.5 transitivePeerDependencies: - eslint-import-resolver-webpack - supports-color @@ -1917,7 +1917,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5) debug: 3.2.7 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 @@ -1936,7 +1936,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5) + '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5) array-includes: 3.1.7 array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.2 @@ -4675,14 +4675,14 @@ packages: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} dev: false - /tsutils@3.21.0(typescript@4.9.5): + /tsutils@3.21.0(typescript@5.4.5): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 4.9.5 + typescript: 5.4.5 dev: true /tunnel-agent@0.6.0: @@ -4789,9 +4789,9 @@ packages: possible-typed-array-names: 1.0.0 dev: true - /typescript@4.9.5: - resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} - engines: {node: '>=4.2.0'} + /typescript@5.4.5: + resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==} + engines: {node: '>=14.17'} hasBin: true dev: true From 8ca7f422da68aa8ca458ec1494fe13ce7182815e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 09:44:07 -0700 Subject: [PATCH 23/38] Chore(deps): Bump systeminformation from 5.22.0 to 5.22.7 (#3398) Bumps [systeminformation](https://github.com/sebhildebrandt/systeminformation) from 5.22.0 to 5.22.7. - [Changelog](https://github.com/sebhildebrandt/systeminformation/blob/master/CHANGELOG.md) - [Commits](https://github.com/sebhildebrandt/systeminformation/compare/v5.22.0...v5.22.7) --- updated-dependencies: - dependency-name: systeminformation dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 8 ++++---- package.json | 2 +- pnpm-lock.yaml | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/package-lock.json b/package-lock.json index 78918479..51dbbe3a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -34,7 +34,7 @@ "recharts": "^2.12.6", "rrule": "^2.8.1", "swr": "^1.3.0", - "systeminformation": "^5.22.0", + "systeminformation": "^5.22.7", "tough-cookie": "^4.1.3", "urbackup-server-api": "^0.8.9", "winston": "^3.11.0", @@ -6663,9 +6663,9 @@ } }, "node_modules/systeminformation": { - "version": "5.22.0", - "resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.22.0.tgz", - "integrity": "sha512-oAP80ymt8ssrAzjX8k3frbL7ys6AotqC35oikG6/SG15wBw+tG9nCk4oPaXIhEaAOAZ8XngxUv3ORq2IuR3r4Q==", + "version": "5.22.7", + "resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.22.7.tgz", + "integrity": "sha512-AWxlP05KeHbpGdgvZkcudJpsmChc2Y5Eo/GvxG/iUA/Aws5LZKHAMSeAo+V+nD+nxWZaxrwpWcnx4SH3oxNL3A==", "os": [ "darwin", "linux", diff --git a/package.json b/package.json index 796af378..c0fc8e44 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "recharts": "^2.12.6", "rrule": "^2.8.1", "swr": "^1.3.0", - "systeminformation": "^5.22.0", + "systeminformation": "^5.22.7", "tough-cookie": "^4.1.3", "urbackup-server-api": "^0.8.9", "winston": "^3.11.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 3d120fb3..22b6cc3f 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -84,8 +84,8 @@ dependencies: specifier: ^1.3.0 version: 1.3.0(react@18.2.0) systeminformation: - specifier: ^5.22.0 - version: 5.22.0 + specifier: ^5.22.7 + version: 5.22.7 tough-cookie: specifier: ^4.1.3 version: 4.1.3 @@ -4499,8 +4499,8 @@ packages: react: 18.2.0 dev: false - /systeminformation@5.22.0: - resolution: {integrity: sha512-oAP80ymt8ssrAzjX8k3frbL7ys6AotqC35oikG6/SG15wBw+tG9nCk4oPaXIhEaAOAZ8XngxUv3ORq2IuR3r4Q==} + /systeminformation@5.22.7: + resolution: {integrity: sha512-AWxlP05KeHbpGdgvZkcudJpsmChc2Y5Eo/GvxG/iUA/Aws5LZKHAMSeAo+V+nD+nxWZaxrwpWcnx4SH3oxNL3A==} engines: {node: '>=8.0.0'} os: [darwin, linux, win32, freebsd, openbsd, netbsd, sunos, android] hasBin: true From 43e258a58d46b6934bac65d3641573aa87940753 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 09:44:31 -0700 Subject: [PATCH 24/38] Chore(deps): Bump react from 18.2.0 to 18.3.1 (#3400) Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react) from 18.2.0 to 18.3.1. - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v18.3.1/packages/react) --- updated-dependencies: - dependency-name: react dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 8 ++-- package.json | 2 +- pnpm-lock.yaml | 104 +++++++++++++++++++++++----------------------- 3 files changed, 57 insertions(+), 57 deletions(-) diff --git a/package-lock.json b/package-lock.json index 51dbbe3a..df6f838d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -27,7 +27,7 @@ "ping": "^0.4.4", "pretty-bytes": "^6.1.1", "raw-body": "^2.5.2", - "react": "^18.2.0", + "react": "^18.3.1", "react-dom": "^18.2.0", "react-i18next": "^11.18.6", "react-icons": "^4.12.0", @@ -5652,9 +5652,9 @@ } }, "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", "dependencies": { "loose-envify": "^1.1.0" }, diff --git a/package.json b/package.json index c0fc8e44..d07cc3fe 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "ping": "^0.4.4", "pretty-bytes": "^6.1.1", "raw-body": "^2.5.2", - "react": "^18.2.0", + "react": "^18.3.1", "react-dom": "^18.2.0", "react-i18next": "^11.18.6", "react-icons": "^4.12.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 22b6cc3f..eb375259 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,7 +7,7 @@ settings: dependencies: '@headlessui/react': specifier: ^1.7.18 - version: 1.7.18(react-dom@18.2.0)(react@18.2.0) + version: 1.7.18(react-dom@18.2.0)(react@18.3.1) '@kubernetes/client-node': specifier: ^0.17.1 version: 0.17.1 @@ -49,10 +49,10 @@ dependencies: version: 1.0.2 next: specifier: ^12.3.4 - version: 12.3.4(react-dom@18.2.0)(react@18.2.0) + version: 12.3.4(react-dom@18.2.0)(react@18.3.1) next-i18next: specifier: ^12.1.0 - version: 12.1.0(next@12.3.4)(react-dom@18.2.0)(react@18.2.0) + version: 12.1.0(next@12.3.4)(react-dom@18.2.0)(react@18.3.1) ping: specifier: ^0.4.4 version: 0.4.4 @@ -63,26 +63,26 @@ dependencies: specifier: ^2.5.2 version: 2.5.2 react: - specifier: ^18.2.0 - version: 18.2.0 + specifier: ^18.3.1 + version: 18.3.1 react-dom: specifier: ^18.2.0 - version: 18.2.0(react@18.2.0) + version: 18.2.0(react@18.3.1) react-i18next: specifier: ^11.18.6 - version: 11.18.6(i18next@21.10.0)(react-dom@18.2.0)(react@18.2.0) + version: 11.18.6(i18next@21.10.0)(react-dom@18.2.0)(react@18.3.1) react-icons: specifier: ^4.12.0 - version: 4.12.0(react@18.2.0) + version: 4.12.0(react@18.3.1) recharts: specifier: ^2.12.6 - version: 2.12.6(react-dom@18.2.0)(react@18.2.0) + version: 2.12.6(react-dom@18.2.0)(react@18.3.1) rrule: specifier: ^2.8.1 version: 2.8.1 swr: specifier: ^1.3.0 - version: 1.3.0(react@18.2.0) + version: 1.3.0(react@18.3.1) systeminformation: specifier: ^5.22.7 version: 5.22.7 @@ -226,17 +226,17 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@headlessui/react@1.7.18(react-dom@18.2.0)(react@18.2.0): + /@headlessui/react@1.7.18(react-dom@18.2.0)(react@18.3.1): resolution: {integrity: sha512-4i5DOrzwN4qSgNsL4Si61VMkUcWbcSKueUV7sFhpHzQcSShdlHENE5+QBntMSRvHt8NyoFO2AGG8si9lq+w4zQ==} engines: {node: '>=10'} peerDependencies: react: ^16 || ^17 || ^18 react-dom: ^16 || ^17 || ^18 dependencies: - '@tanstack/react-virtual': 3.0.2(react-dom@18.2.0)(react@18.2.0) + '@tanstack/react-virtual': 3.0.2(react-dom@18.2.0)(react@18.3.1) client-only: 0.0.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.2.0(react@18.3.1) dev: false /@humanwhocodes/config-array@0.11.14: @@ -511,15 +511,15 @@ packages: tailwindcss: 3.4.3 dev: true - /@tanstack/react-virtual@3.0.2(react-dom@18.2.0)(react@18.2.0): + /@tanstack/react-virtual@3.0.2(react-dom@18.2.0)(react@18.3.1): resolution: {integrity: sha512-9XbRLPKgnhMwwmuQMnJMv+5a9sitGNCSEtf/AZXzmJdesYk7XsjYHaEDny+IrJzvPNwZliIIDwCRiaUqR3zzCA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: '@tanstack/virtual-core': 3.0.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.2.0(react@18.3.1) dev: false /@tanstack/virtual-core@3.0.0: @@ -3302,7 +3302,7 @@ packages: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} dev: true - /next-i18next@12.1.0(next@12.3.4)(react-dom@18.2.0)(react@18.2.0): + /next-i18next@12.1.0(next@12.3.4)(react-dom@18.2.0)(react@18.3.1): resolution: {integrity: sha512-rhos/PVULmZPdC0jpec2MDBQMXdGZ3+Mbh/tZfrDtjgnVN3ucdq7k8BlwsJNww6FnqC8AC31n6dSYuqVzYsGsw==} engines: {node: '>=12'} peerDependencies: @@ -3315,15 +3315,15 @@ packages: hoist-non-react-statics: 3.3.2 i18next: 21.10.0 i18next-fs-backend: 1.2.0 - next: 12.3.4(react-dom@18.2.0)(react@18.2.0) - react: 18.2.0 - react-i18next: 11.18.6(i18next@21.10.0)(react-dom@18.2.0)(react@18.2.0) + next: 12.3.4(react-dom@18.2.0)(react@18.3.1) + react: 18.3.1 + react-i18next: 11.18.6(i18next@21.10.0)(react-dom@18.2.0)(react@18.3.1) transitivePeerDependencies: - react-dom - react-native dev: false - /next@12.3.4(react-dom@18.2.0)(react@18.2.0): + /next@12.3.4(react-dom@18.2.0)(react@18.3.1): resolution: {integrity: sha512-VcyMJUtLZBGzLKo3oMxrEF0stxh8HwuW976pAzlHhI3t8qJ4SROjCrSh1T24bhrbjw55wfZXAbXPGwPt5FLRfQ==} engines: {node: '>=12.22.0'} hasBin: true @@ -3345,10 +3345,10 @@ packages: '@swc/helpers': 0.4.11 caniuse-lite: 1.0.30001581 postcss: 8.4.14 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - styled-jsx: 5.0.7(react@18.2.0) - use-sync-external-store: 1.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.2.0(react@18.3.1) + styled-jsx: 5.0.7(react@18.3.1) + use-sync-external-store: 1.2.0(react@18.3.1) optionalDependencies: '@next/swc-android-arm-eabi': 12.3.4 '@next/swc-android-arm64': 12.3.4 @@ -3810,17 +3810,17 @@ packages: unpipe: 1.0.0 dev: false - /react-dom@18.2.0(react@18.2.0): + /react-dom@18.2.0(react@18.3.1): resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} peerDependencies: react: ^18.2.0 dependencies: loose-envify: 1.4.0 - react: 18.2.0 + react: 18.3.1 scheduler: 0.23.0 dev: false - /react-i18next@11.18.6(i18next@21.10.0)(react-dom@18.2.0)(react@18.2.0): + /react-i18next@11.18.6(i18next@21.10.0)(react-dom@18.2.0)(react@18.3.1): resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==} peerDependencies: i18next: '>= 19.0.0' @@ -3836,22 +3836,22 @@ packages: '@babel/runtime': 7.23.9 html-parse-stringify: 3.0.1 i18next: 21.10.0 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.2.0(react@18.3.1) dev: false - /react-icons@4.12.0(react@18.2.0): + /react-icons@4.12.0(react@18.3.1): resolution: {integrity: sha512-IBaDuHiShdZqmfc/TwHu6+d6k2ltNCf3AszxNmjJc1KUfXdEeRJOKyNvLmAHaarhzGmTSVygNdyu8/opXv2gaw==} peerDependencies: react: '*' dependencies: - react: 18.2.0 + react: 18.3.1 dev: false /react-is@16.13.1: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} - /react-smooth@4.0.0(react-dom@18.2.0)(react@18.2.0): + /react-smooth@4.0.0(react-dom@18.2.0)(react@18.3.1): resolution: {integrity: sha512-2NMXOBY1uVUQx1jBeENGA497HK20y6CPGYL1ZnJLeoQ8rrc3UfmOM82sRxtzpcoCkUMy4CS0RGylfuVhuFjBgg==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 @@ -3859,12 +3859,12 @@ packages: dependencies: fast-equals: 5.0.1 prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) + react: 18.3.1 + react-dom: 18.2.0(react@18.3.1) + react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.3.1) dev: false - /react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0): + /react-transition-group@4.4.5(react-dom@18.2.0)(react@18.3.1): resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} peerDependencies: react: '>=16.6.0' @@ -3874,12 +3874,12 @@ packages: dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.2.0(react@18.3.1) dev: false - /react@18.2.0: - resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} + /react@18.3.1: + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} engines: {node: '>=0.10.0'} dependencies: loose-envify: 1.4.0 @@ -3934,7 +3934,7 @@ packages: decimal.js-light: 2.5.1 dev: false - /recharts@2.12.6(react-dom@18.2.0)(react@18.2.0): + /recharts@2.12.6(react-dom@18.2.0)(react@18.3.1): resolution: {integrity: sha512-D+7j9WI+D0NHauah3fKHuNNcRK8bOypPW7os1DERinogGBGaHI7i6tQKJ0aUF3JXyBZ63dyfKIW2WTOPJDxJ8w==} engines: {node: '>=14'} peerDependencies: @@ -3944,10 +3944,10 @@ packages: clsx: 2.1.0 eventemitter3: 4.0.7 lodash: 4.17.21 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) + react: 18.3.1 + react-dom: 18.2.0(react@18.3.1) react-is: 16.13.1 - react-smooth: 4.0.0(react-dom@18.2.0)(react@18.2.0) + react-smooth: 4.0.0(react-dom@18.2.0)(react@18.3.1) recharts-scale: 0.4.5 tiny-invariant: 1.3.1 victory-vendor: 36.8.4 @@ -4450,7 +4450,7 @@ packages: engines: {node: '>=8'} dev: true - /styled-jsx@5.0.7(react@18.2.0): + /styled-jsx@5.0.7(react@18.3.1): resolution: {integrity: sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA==} engines: {node: '>= 12.0.0'} peerDependencies: @@ -4463,7 +4463,7 @@ packages: babel-plugin-macros: optional: true dependencies: - react: 18.2.0 + react: 18.3.1 dev: false /sucrase@3.35.0: @@ -4491,12 +4491,12 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - /swr@1.3.0(react@18.2.0): + /swr@1.3.0(react@18.3.1): resolution: {integrity: sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==} peerDependencies: react: ^16.11.0 || ^17.0.0 || ^18.0.0 dependencies: - react: 18.2.0 + react: 18.3.1 dev: false /systeminformation@5.22.7: @@ -4850,12 +4850,12 @@ packages: requires-port: 1.0.0 dev: false - /use-sync-external-store@1.2.0(react@18.2.0): + /use-sync-external-store@1.2.0(react@18.3.1): resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 dependencies: - react: 18.2.0 + react: 18.3.1 dev: false /util-deprecate@1.0.2: From 5efed2e740b6e038e89e70fa6100951cbfa8a1b3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 May 2024 12:08:26 -0700 Subject: [PATCH 25/38] Chore(deps-dev): Bump eslint-config-next from 12.3.4 to 14.2.3 (#3399) Bumps [eslint-config-next](https://github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next) from 12.3.4 to 14.2.3. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/commits/v14.2.3/packages/eslint-config-next) --- updated-dependencies: - dependency-name: eslint-config-next dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- package-lock.json | 168 ++++++++++++++++++++++++++++++++++------------ package.json | 2 +- pnpm-lock.yaml | 91 +++++++++++++++---------- 3 files changed, 181 insertions(+), 80 deletions(-) diff --git a/package-lock.json b/package-lock.json index df6f838d..5e933947 100644 --- a/package-lock.json +++ b/package-lock.json @@ -45,7 +45,7 @@ "autoprefixer": "^10.4.17", "eslint": "^8.57.0", "eslint-config-airbnb": "^19.0.4", - "eslint-config-next": "^12.3.4", + "eslint-config-next": "^14.2.3", "eslint-config-prettier": "^9.1.0", "eslint-plugin-import": "^2.29.1", "eslint-plugin-jsx-a11y": "^6.8.0", @@ -344,12 +344,58 @@ "integrity": "sha512-H/69Lc5Q02dq3o+dxxy5O/oNxFsZpdL6WREtOOtOM1B/weonIwDXkekr1KV5DPVPr12IHFPrMrcJQ6bgPMfn7A==" }, "node_modules/@next/eslint-plugin-next": { - "version": "12.3.4", - "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-12.3.4.tgz", - "integrity": "sha512-BFwj8ykJY+zc1/jWANsDprDIu2MgwPOIKxNVnrKvPs+f5TPegrVnem8uScND+1veT4B7F6VeqgaNLFW1Hzl9Og==", + "version": "14.2.3", + "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.2.3.tgz", + "integrity": "sha512-L3oDricIIjgj1AVnRdRor21gI7mShlSwU/1ZGHmqM3LzHhXXhdkrfeNY5zif25Bi5Dd7fiJHsbhoZCHfXYvlAw==", "dev": true, "dependencies": { - "glob": "7.1.7" + "glob": "10.3.10" + } + }, + "node_modules/@next/eslint-plugin-next/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@next/eslint-plugin-next/node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@next/eslint-plugin-next/node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, "node_modules/@next/swc-android-arm-eabi": { @@ -2318,6 +2364,19 @@ "once": "^1.4.0" } }, + "node_modules/enhanced-resolve": { + "version": "5.16.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz", + "integrity": "sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, "node_modules/entities": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", @@ -2604,20 +2663,20 @@ } }, "node_modules/eslint-config-next": { - "version": "12.3.4", - "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-12.3.4.tgz", - "integrity": "sha512-WuT3gvgi7Bwz00AOmKGhOeqnyA5P29Cdyr0iVjLyfDbk+FANQKcOjFUTZIdyYfe5Tq1x4TGcmoe4CwctGvFjHQ==", + "version": "14.2.3", + "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.2.3.tgz", + "integrity": "sha512-ZkNztm3Q7hjqvB1rRlOX8P9E/cXRL9ajRcs8jufEtwMfTVYRqnmtnaSu57QqHyBlovMuiB8LEzfLBkh5RYV6Fg==", "dev": true, "dependencies": { - "@next/eslint-plugin-next": "12.3.4", - "@rushstack/eslint-patch": "^1.1.3", - "@typescript-eslint/parser": "^5.21.0", + "@next/eslint-plugin-next": "14.2.3", + "@rushstack/eslint-patch": "^1.3.3", + "@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || 7.0.0 - 7.2.0", "eslint-import-resolver-node": "^0.3.6", - "eslint-import-resolver-typescript": "^2.7.1", - "eslint-plugin-import": "^2.26.0", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.31.7", - "eslint-plugin-react-hooks": "^4.5.0" + "eslint-import-resolver-typescript": "^3.5.2", + "eslint-plugin-import": "^2.28.1", + "eslint-plugin-jsx-a11y": "^6.7.1", + "eslint-plugin-react": "^7.33.2", + "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" }, "peerDependencies": { "eslint": "^7.23.0 || ^8.0.0", @@ -2662,45 +2721,30 @@ } }, "node_modules/eslint-import-resolver-typescript": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz", - "integrity": "sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==", + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz", + "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", "dev": true, "dependencies": { "debug": "^4.3.4", - "glob": "^7.2.0", - "is-glob": "^4.0.3", - "resolve": "^1.22.0", - "tsconfig-paths": "^3.14.1" + "enhanced-resolve": "^5.12.0", + "eslint-module-utils": "^2.7.4", + "fast-glob": "^3.3.1", + "get-tsconfig": "^4.5.0", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3" }, "engines": { - "node": ">=4" + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" }, "peerDependencies": { "eslint": "*", "eslint-plugin-import": "*" } }, - "node_modules/eslint-import-resolver-typescript/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/eslint-module-utils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", @@ -3436,6 +3480,18 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/get-tsconfig": { + "version": "4.7.3", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.3.tgz", + "integrity": "sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==", + "dev": true, + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, "node_modules/getpass": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", @@ -3561,6 +3617,12 @@ "url": "https://github.com/sindresorhus/got?sponsor=1" } }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, "node_modules/graphemer": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", @@ -5933,6 +5995,15 @@ "node": ">=4" } }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, "node_modules/responselike": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", @@ -6789,6 +6860,15 @@ "node": ">=14" } }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/tar": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", diff --git a/package.json b/package.json index d07cc3fe..a59a75ed 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "autoprefixer": "^10.4.17", "eslint": "^8.57.0", "eslint-config-airbnb": "^19.0.4", - "eslint-config-next": "^12.3.4", + "eslint-config-next": "^14.2.3", "eslint-config-prettier": "^9.1.0", "eslint-plugin-import": "^2.29.1", "eslint-plugin-jsx-a11y": "^6.8.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index eb375259..79bf2a51 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -118,14 +118,14 @@ devDependencies: specifier: ^19.0.4 version: 19.0.4(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.34.1)(eslint@8.57.0) eslint-config-next: - specifier: ^12.3.4 - version: 12.3.4(eslint@8.57.0)(typescript@5.4.5) + specifier: ^14.2.3 + version: 14.2.3(eslint@8.57.0)(typescript@5.4.5) eslint-config-prettier: specifier: ^9.1.0 version: 9.1.0(eslint@8.57.0) eslint-plugin-import: specifier: ^2.29.1 - version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0) + version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) eslint-plugin-jsx-a11y: specifier: ^6.8.0 version: 6.8.0(eslint@8.57.0) @@ -329,10 +329,10 @@ packages: resolution: {integrity: sha512-H/69Lc5Q02dq3o+dxxy5O/oNxFsZpdL6WREtOOtOM1B/weonIwDXkekr1KV5DPVPr12IHFPrMrcJQ6bgPMfn7A==} dev: false - /@next/eslint-plugin-next@12.3.4: - resolution: {integrity: sha512-BFwj8ykJY+zc1/jWANsDprDIu2MgwPOIKxNVnrKvPs+f5TPegrVnem8uScND+1veT4B7F6VeqgaNLFW1Hzl9Og==} + /@next/eslint-plugin-next@14.2.3: + resolution: {integrity: sha512-L3oDricIIjgj1AVnRdRor21gI7mShlSwU/1ZGHmqM3LzHhXXhdkrfeNY5zif25Bi5Dd7fiJHsbhoZCHfXYvlAw==} dependencies: - glob: 7.1.7 + glob: 10.3.10 dev: true /@next/swc-android-arm-eabi@12.3.4: @@ -1596,6 +1596,14 @@ packages: once: 1.4.0 dev: false + /enhanced-resolve@5.16.0: + resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==} + engines: {node: '>=10.13.0'} + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + dev: true + /entities@4.5.0: resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} engines: {node: '>=0.12'} @@ -1808,7 +1816,7 @@ packages: dependencies: confusing-browser-globals: 1.0.11 eslint: 8.57.0 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) object.assign: 4.1.5 object.entries: 1.1.7 semver: 6.3.1 @@ -1826,7 +1834,7 @@ packages: dependencies: eslint: 8.57.0 eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1)(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) eslint-plugin-react: 7.34.1(eslint@8.57.0) eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0) @@ -1834,8 +1842,8 @@ packages: object.entries: 1.1.7 dev: true - /eslint-config-next@12.3.4(eslint@8.57.0)(typescript@5.4.5): - resolution: {integrity: sha512-WuT3gvgi7Bwz00AOmKGhOeqnyA5P29Cdyr0iVjLyfDbk+FANQKcOjFUTZIdyYfe5Tq1x4TGcmoe4CwctGvFjHQ==} + /eslint-config-next@14.2.3(eslint@8.57.0)(typescript@5.4.5): + resolution: {integrity: sha512-ZkNztm3Q7hjqvB1rRlOX8P9E/cXRL9ajRcs8jufEtwMfTVYRqnmtnaSu57QqHyBlovMuiB8LEzfLBkh5RYV6Fg==} peerDependencies: eslint: ^7.23.0 || ^8.0.0 typescript: '>=3.3.1' @@ -1843,13 +1851,13 @@ packages: typescript: optional: true dependencies: - '@next/eslint-plugin-next': 12.3.4 + '@next/eslint-plugin-next': 14.2.3 '@rushstack/eslint-patch': 1.7.2 '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5) eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.29.1)(eslint@8.57.0) - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) eslint-plugin-react: 7.34.1(eslint@8.57.0) eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0) @@ -1878,25 +1886,30 @@ packages: - supports-color dev: true - /eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.29.1)(eslint@8.57.0): - resolution: {integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==} - engines: {node: '>=4'} + /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0): + resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==} + engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: eslint: '*' eslint-plugin-import: '*' dependencies: debug: 4.3.4 + enhanced-resolve: 5.16.0 eslint: 8.57.0 - eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0) - glob: 7.2.3 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) + fast-glob: 3.3.2 + get-tsconfig: 4.7.3 + is-core-module: 2.13.1 is-glob: 4.0.3 - resolve: 1.22.8 - tsconfig-paths: 3.15.0 transitivePeerDependencies: + - '@typescript-eslint/parser' + - eslint-import-resolver-node + - eslint-import-resolver-webpack - supports-color dev: true - /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0): + /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: @@ -1921,12 +1934,12 @@ packages: debug: 3.2.7 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.29.1)(eslint@8.57.0) + eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0) transitivePeerDependencies: - supports-color dev: true - /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0): + /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} engines: {node: '>=4'} peerDependencies: @@ -1945,7 +1958,7 @@ packages: doctrine: 2.1.0 eslint: 8.57.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) hasown: 2.0.0 is-core-module: 2.13.1 is-glob: 4.0.3 @@ -2398,6 +2411,12 @@ packages: get-intrinsic: 1.2.4 dev: true + /get-tsconfig@4.7.3: + resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==} + dependencies: + resolve-pkg-maps: 1.0.0 + dev: true + /getpass@0.1.7: resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} dependencies: @@ -2430,17 +2449,6 @@ packages: path-scurry: 1.10.1 dev: true - /glob@7.1.7: - resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} - dependencies: - fs.realpath: 1.0.0 - inflight: 1.0.6 - inherits: 2.0.4 - minimatch: 3.1.2 - once: 1.4.0 - path-is-absolute: 1.0.1 - dev: true - /glob@7.2.3: resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} dependencies: @@ -2500,6 +2508,10 @@ packages: responselike: 3.0.0 dev: false + /graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + dev: true + /graphemer@1.4.0: resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} dev: true @@ -4034,6 +4046,10 @@ packages: engines: {node: '>=4'} dev: true + /resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + dev: true + /resolve@1.22.8: resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true @@ -4546,6 +4562,11 @@ packages: - ts-node dev: true + /tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + dev: true + /tar-fs@2.0.1: resolution: {integrity: sha512-6tzWDMeroL87uF/+lin46k+Q+46rAJ0SyPGz7OW7wTgblI273hsBqk2C1j0/xNadNLKDTUL9BukSjB7cwgmlPA==} dependencies: From 198835a697cf5bd4042f0b553060578db3ce2660 Mon Sep 17 00:00:00 2001 From: Ben Phelps Date: Sat, 4 May 2024 19:34:38 +0300 Subject: [PATCH 26/38] allow seperate href for widget container links addresses #3140 --- src/components/widgets/widget/container_link.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/widgets/widget/container_link.jsx b/src/components/widgets/widget/container_link.jsx index e6bc4cec..6f157875 100644 --- a/src/components/widgets/widget/container_link.jsx +++ b/src/components/widgets/widget/container_link.jsx @@ -3,7 +3,7 @@ import { getAllClasses, getInnerBlock, getBottomBlock } from "./container"; export default function ContainerLink({ children = [], options, additionalClassNames = "", target }) { return ( From 986a18170c12f63c10264a666700973c84bf13a0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 5 May 2024 20:51:37 -0700 Subject: [PATCH 27/38] New Crowdin translations by GitHub Action (#3321) Co-authored-by: Crowdin Bot --- public/locales/de/common.json | 6 +- public/locales/el/common.json | 42 ++--- public/locales/fr/common.json | 36 ++-- public/locales/no/common.json | 160 +++++++++--------- public/locales/pt_BR/common.json | 258 ++++++++++++++--------------- public/locales/tr/common.json | 150 ++++++++--------- public/locales/zh-Hans/common.json | 8 +- 7 files changed, 330 insertions(+), 330 deletions(-) diff --git a/public/locales/de/common.json b/public/locales/de/common.json index 78f28c0a..a2cafb84 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -142,8 +142,8 @@ "connectionStatusDisconnected": "Getrennt", "connectionStatusConnected": "Verbunden", "uptime": "Betriebszeit", - "maxDown": "Max. Empfang", - "maxUp": "Max. Senden", + "maxDown": "Max. Down", + "maxUp": "Max. Up", "down": "Empfangen", "up": "Senden", "received": "Empfangen", @@ -392,7 +392,7 @@ "authentik": { "users": "Benutzer", "loginsLast24H": "Anmeldungen (24 h)", - "failedLoginsLast24H": "Fehlgeschlagene Anmeldungen (24 h)" + "failedLoginsLast24H": "Fehlversuche (24 h)" }, "proxmox": { "mem": "RAM", diff --git a/public/locales/el/common.json b/public/locales/el/common.json index d4f55f98..dfa0a5bc 100644 --- a/public/locales/el/common.json +++ b/public/locales/el/common.json @@ -146,9 +146,9 @@ "maxUp": "Max. Up", "down": "Down", "up": "Up", - "received": "Received", - "sent": "Sent", - "externalIPAddress": "Ext. IP" + "received": "Ληφθέντα", + "sent": "Απεσταλμένα", + "externalIPAddress": "Εξωτερική IP" }, "caddy": { "upstreams": "Upstreams", @@ -327,7 +327,7 @@ }, "traefik": { "routers": "Routers", - "services": "Services", + "services": "Υπηρεσίες", "middleware": "Middleware" }, "navidrome": { @@ -522,7 +522,7 @@ "tubearchivist": { "downloads": "Ουρά", "videos": "Videos", - "channels": "Channels", + "channels": "Κανάλια", "playlists": "Playlists" }, "truenas": { @@ -542,14 +542,14 @@ "country": "Χώρα" }, "hdhomerun": { - "channels": "Channels", + "channels": "Κανάλια", "hd": "HD", "tunerCount": "Tuners", - "channelNumber": "Channel", - "channelNetwork": "Network", + "channelNumber": "Κανάλι", + "channelNetwork": "Δίκτυο", "signalStrength": "Strength", - "signalQuality": "Quality", - "symbolQuality": "Quality", + "signalQuality": "Ποιότητα", + "symbolQuality": "Ποιότητα", "networkRate": "Ρυθμός bit", "clientIP": "Client" }, @@ -559,7 +559,7 @@ "unknown": "Άγνωστο" }, "paperlessngx": { - "inbox": "Inbox", + "inbox": "Εισερχόμενα", "total": "Σύνολο" }, "peanut": { @@ -567,8 +567,8 @@ "ups_load": "UPS Load", "ups_status": "UPS Status", "online": "Συνδεδεμένοι", - "on_battery": "On Battery", - "low_battery": "Low Battery" + "on_battery": "Σε μπαταρία", + "low_battery": "Χαμηλή μπαταρία" }, "nextdns": { "wait": "Παρακαλώ περιμένετε", @@ -620,7 +620,7 @@ "up": "Up", "down": "Down", "temp": "Temp", - "disk": "Disk Usage", + "disk": "Χρήση δίσκου", "wanIP": "WAN IP" }, "proxmoxbackupserver": { @@ -631,7 +631,7 @@ }, "immich": { "users": "Χρήστες", - "photos": "Photos", + "photos": "Φωτογραφίες", "videos": "Videos", "storage": "Storage" }, @@ -646,7 +646,7 @@ "series": "Σειρές", "archives": "Archives", "chapters": "Chapters", - "categories": "Categories" + "categories": "Κατηγορίες" }, "komga": { "libraries": "Libraries", @@ -665,7 +665,7 @@ }, "photoprism": { "albums": "Άλμπουμ", - "photos": "Photos", + "photos": "Φωτογραφίες", "videos": "Videos", "people": "People" }, @@ -738,7 +738,7 @@ "calibreweb": { "books": "Βιβλία", "authors": "Authors", - "categories": "Categories", + "categories": "Κατηγορίες", "series": "Σειρές" }, "jdownloader": { @@ -785,7 +785,7 @@ "mealie": { "recipes": "Recipes", "users": "Χρήστες", - "categories": "Categories", + "categories": "Κατηγορίες", "tags": "Tags" }, "openmediavault": { @@ -802,7 +802,7 @@ "up": "Up", "down": "Down", "bytesTx": "Transmitted", - "bytesRx": "Received" + "bytesRx": "Ληφθέντα" }, "uptimerobot": { "status": "Κατάσταση", @@ -836,7 +836,7 @@ "plantit": { "events": "Events", "plants": "Plants", - "photos": "Photos", + "photos": "Φωτογραφίες", "species": "Species" }, "gitea": { diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index 17975096..d5a95638 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -15,13 +15,13 @@ "relativeDate": "{{value, relativeDate}}", "uptime": "{{value, uptime}}", "months": "mo", - "days": "d", + "days": "j", "hours": "h", "minutes": "m", "seconds": "s" }, "widget": { - "missing_type": "Widget manquant: {{type}}", + "missing_type": "Type de widget manquant: {{type}}", "api_error": "Erreur API", "information": "Informations", "status": "Statut", @@ -40,7 +40,7 @@ }, "resources": { "cpu": "CPU", - "mem": "Mém", + "mem": "MÉM", "total": "Total", "free": "Libre", "used": "Utilisé", @@ -69,7 +69,7 @@ "docker": { "rx": "Rx", "tx": "Tx", - "mem": "Mém", + "mem": "MÉM", "cpu": "CPU", "running": "Démarré", "offline": "Hors ligne", @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Déconnexion en attente", "connectionStatusDisconnecting": "Déconnexion en cours", "connectionStatusDisconnected": "Déconnecté", - "connectionStatusConnected": "Connected", + "connectionStatusConnected": "Connecté", "uptime": "Démarré depuis", "maxDown": "Max. Bas", "maxUp": "Max. Haut", @@ -279,9 +279,9 @@ }, "netalertx": { "total": "Total", - "connected": "Connected", - "new_devices": "New Devices", - "down_alerts": "Down Alerts" + "connected": "Connecté", + "new_devices": "Nouveaux appareils", + "down_alerts": "Alertes d'arrêt" }, "pihole": { "queries": "Requêtes", @@ -395,7 +395,7 @@ "failedLoginsLast24H": "Cnx. échouées (24h)" }, "proxmox": { - "mem": "Mém", + "mem": "MÉM", "cpu": "CPU", "lxc": "LxC", "vms": "VMs" @@ -411,7 +411,7 @@ "total": "Total", "free": "Libre", "used": "Utilisé", - "days": "d", + "days": "j", "hours": "h", "crit": "Crit.", "read": "Lu", @@ -847,18 +847,18 @@ "stash": { "scenes": "Scènes", "scenesPlayed": "Scènes jouées", - "playCount": "Total Plays", - "playDuration": "Time Watched", - "sceneSize": "Scenes Size", - "sceneDuration": "Scenes Duration", + "playCount": "Lectures Totales", + "playDuration": "Temps regardé", + "sceneSize": "Taille des scènes", + "sceneDuration": "Durée des scènes", "images": "Images", "imageSize": "Taille des images", "galleries": "Galeries", - "performers": "Performers", + "performers": "Acteurs", "studios": "Studios", "movies": "Films", "tags": "Étiquettes", - "oCount": "O Count" + "oCount": "0 Compte" }, "tandoor": { "users": "Utilisateurs", @@ -871,10 +871,10 @@ "locations": "Emplacements", "labels": "Étiquettes", "users": "Utilisateurs", - "totalValue": "Total Value" + "totalValue": "Valeur Totale" }, "crowdsec": { "alerts": "Alertes", - "bans": "Bans" + "bans": "Exclusions" } } diff --git a/public/locales/no/common.json b/public/locales/no/common.json index bfc335c9..a0988c88 100644 --- a/public/locales/no/common.json +++ b/public/locales/no/common.json @@ -80,22 +80,22 @@ "unhealthy": "Usunn", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Delvis" }, "ping": { "error": "Feil", - "ping": "Ping", - "down": "Down", - "up": "Up", - "not_available": "Not Available" + "ping": "Responstid", + "down": "Nede", + "up": "Oppe", + "not_available": "Ikke tilgjengelig" }, "siteMonitor": { "http_status": "HTTP status", "error": "Feil", "response": "Svar", - "down": "Down", - "up": "Up", - "not_available": "Not Available" + "down": "Nede", + "up": "Oppe", + "not_available": "Ikke tilgjengelig" }, "emby": { "playing": "Spiller", @@ -110,7 +110,7 @@ "esphome": { "offline": "Frakoblet", "offline_alt": "Frakoblet", - "online": "Online", + "online": "På nett", "total": "Totalt", "unknown": "Ukjent" }, @@ -140,12 +140,12 @@ "connectionStatusPendingDisconnect": "Venter på frakobling", "connectionStatusDisconnecting": "Kobler fra", "connectionStatusDisconnected": "Frakoblet", - "connectionStatusConnected": "Connected", + "connectionStatusConnected": "Tilkoblet", "uptime": "Oppetid", "maxDown": "Maks. Ned", "maxUp": "Max. Opp", - "down": "Down", - "up": "Up", + "down": "Nede", + "up": "Oppe", "received": "Mottatt", "sent": "Sendt", "externalIPAddress": "Ekstern IP" @@ -279,8 +279,8 @@ }, "netalertx": { "total": "Totalt", - "connected": "Connected", - "new_devices": "New Devices", + "connected": "Tilkoblet", + "new_devices": "Nye enheter", "down_alerts": "Down Alerts" }, "pihole": { @@ -298,7 +298,7 @@ "speedtest": { "upload": "Opplastning", "download": "Last ned", - "ping": "Ping" + "ping": "Responstid" }, "portainer": { "running": "Kjører", @@ -321,57 +321,57 @@ }, "tdarr": { "queue": "Kø", - "processed": "Processed", - "errored": "Errored", - "saved": "Saved" + "processed": "Behandlet", + "errored": "Feilet", + "saved": "Lagret" }, "traefik": { - "routers": "Routers", - "services": "Services", - "middleware": "Middleware" + "routers": "Rutere", + "services": "Tjenester", + "middleware": "Mellomvare" }, "navidrome": { "nothing_streaming": "Ingen aktive strømminger", - "please_wait": "Please Wait" + "please_wait": "Vennligst vent" }, "npm": { - "enabled": "Enabled", - "disabled": "Disabled", + "enabled": "Aktivert", + "disabled": "Deaktivert", "total": "Totalt" }, "coinmarketcap": { - "configure": "Configure one or more crypto currencies to track", - "1hour": "1 Hour", - "1day": "1 Day", - "7days": "7 Days", - "30days": "30 Days" + "configure": "Konfigurer én eller flere krypteringsvalutaer som skal spores", + "1hour": "Én time", + "1day": "Én dag", + "7days": "7 dager", + "30days": "30 dager" }, "gotify": { - "apps": "Applications", - "clients": "Clients", - "messages": "Messages" + "apps": "Applikasjoner", + "clients": "Klienter", + "messages": "Meldinger" }, "prowlarr": { - "enableIndexers": "Indexers", - "numberOfGrabs": "Grabs", + "enableIndexers": "Indeksere", + "numberOfGrabs": "Tatt", "numberOfQueries": "Spørringer", - "numberOfFailGrabs": "Fail Grabs", - "numberOfFailQueries": "Fail Queries" + "numberOfFailGrabs": "Feil ved henting", + "numberOfFailQueries": "Spørring mislyktes" }, "jackett": { - "configured": "Configured", - "errored": "Errored" + "configured": "Konfigurert", + "errored": "Feilet" }, "strelaysrv": { - "numActiveSessions": "Sessions", - "numConnections": "Connections", - "dataRelayed": "Relayed", + "numActiveSessions": "Sesjoner", + "numConnections": "Tilkoblinger", + "dataRelayed": "Videresendt", "transferRate": "Ranger" }, "mastodon": { "user_count": "Brukere", - "status_count": "Posts", - "domain_count": "Domains" + "status_count": "Innlegg", + "domain_count": "Domener" }, "medusa": { "wanted": "Ønsket", @@ -379,10 +379,10 @@ "series": "Serie" }, "minecraft": { - "players": "Players", + "players": "Spillere", "version": "Versjon", "status": "Status", - "up": "Online", + "up": "På nett", "down": "Frakoblet" }, "miniflux": { @@ -494,15 +494,15 @@ "up_to_date": "Oppdatert", "child_bridges": "Child Bridges", "child_bridges_status": "{{ok}}/{{total}}", - "up": "Up", + "up": "Oppe", "pending": "Ventende", - "down": "Down" + "down": "Nede" }, "healthchecks": { "new": "Ny", - "up": "Up", + "up": "Oppe", "grace": "I rammeperiode", - "down": "Down", + "down": "Nede", "paused": "Pauset", "status": "Status", "last_ping": "Siste Ping", @@ -517,7 +517,7 @@ "approvedPushes": "Godkjent", "rejectedPushes": "Avvist", "filters": "Filtre", - "indexers": "Indexers" + "indexers": "Indeksere" }, "tubearchivist": { "downloads": "Kø", @@ -566,12 +566,12 @@ "battery_charge": "Batteriladning", "ups_load": "UPS last", "ups_status": "UPS status", - "online": "Online", + "online": "På nett", "on_battery": "På batteri", "low_battery": "Lavt batterinivå" }, "nextdns": { - "wait": "Please Wait", + "wait": "Vennligst vent", "no_devices": "Ingen enhetsdata mottatt" }, "mikrotik": { @@ -617,8 +617,8 @@ "load": "Load Avg", "memory": "Mem Usage", "wanStatus": "WAN Status", - "up": "Up", - "down": "Down", + "up": "Oppe", + "down": "Nede", "temp": "Temp", "disk": "Disk Usage", "wanIP": "WAN IP" @@ -672,7 +672,7 @@ "fileflows": { "queue": "Kø", "processing": "Behandler", - "processed": "Processed", + "processed": "Behandlet", "time": "Time" }, "grafana": { @@ -698,17 +698,17 @@ }, "unmanic": { "active_workers": "Active Workers", - "total_workers": "Total Workers", - "records_total": "Queue Length" + "total_workers": "Totalt antall Arbeidere", + "records_total": "Kø lengde" }, "pterodactyl": { - "servers": "Servers", - "nodes": "Nodes" + "servers": "Servere", + "nodes": "Noder" }, "prometheus": { - "targets_up": "Targets Up", - "targets_down": "Targets Down", - "targets_total": "Total Targets" + "targets_up": "Mål oppe", + "targets_down": "Mål nede", + "targets_total": "Totalt antall mål" }, "gatus": { "up": "Nettsteder opp", @@ -717,27 +717,27 @@ }, "ghostfolio": { "gross_percent_today": "Idag", - "gross_percent_1y": "One year", - "gross_percent_max": "All time" + "gross_percent_1y": "Ett år", + "gross_percent_max": "Gjennom tidene" }, "audiobookshelf": { - "podcasts": "Podcasts", + "podcasts": "Podkaster", "books": "Bøker", - "podcastsDuration": "Duration", - "booksDuration": "Duration" + "podcastsDuration": "Varighet", + "booksDuration": "Varighet" }, "homeassistant": { - "people_home": "People Home", - "lights_on": "Lights On", - "switches_on": "Switches On" + "people_home": "Personer hjemme", + "lights_on": "Lys på", + "switches_on": "Slår På" }, "whatsupdocker": { - "monitoring": "Monitoring", + "monitoring": "Overvåker", "updates": "Oppdateringer" }, "calibreweb": { "books": "Bøker", - "authors": "Authors", + "authors": "Forfattere", "categories": "Categories", "series": "Serie" }, @@ -766,15 +766,15 @@ }, "gamedig": { "status": "Status", - "online": "Online", + "online": "På nett", "offline": "Frakoblet", "name": "Navn", "map": "Kart", "currentPlayers": "Aktuelle spillere", - "players": "Players", + "players": "Spillere", "maxPlayers": "Maks spillere", "bots": "Bots", - "ping": "Ping" + "ping": "Responstid" }, "urbackup": { "ok": "Ok", @@ -799,8 +799,8 @@ "openwrt": { "uptime": "Oppetid", "cpuLoad": "CPU-belastning snitt (5m)", - "up": "Up", - "down": "Down", + "up": "Oppe", + "down": "Nede", "bytesTx": "Sendt", "bytesRx": "Mottatt" }, @@ -813,9 +813,9 @@ "sitesDown": "Sites Down", "paused": "Pauset", "notyetchecked": "Ikke sjekket enda", - "up": "Up", + "up": "Oppe", "seemsdown": "Virker nede", - "down": "Down", + "down": "Nede", "unknown": "Ukjent" }, "calendar": { @@ -842,7 +842,7 @@ "gitea": { "notifications": "Varslinger", "issues": "Issues", - "pulls": "Pull Requests" + "pulls": "Forespørsel" }, "stash": { "scenes": "Scener", diff --git a/public/locales/pt_BR/common.json b/public/locales/pt_BR/common.json index 0de066b7..f3b716bd 100644 --- a/public/locales/pt_BR/common.json +++ b/public/locales/pt_BR/common.json @@ -22,11 +22,11 @@ }, "widget": { "missing_type": "Tipo de Widget ausente: {{type}}", - "api_error": "Erro da API", + "api_error": "Erros de API", "information": "Informação", "status": "Estado", "url": "Endereço URL", - "raw_error": "Erro", + "raw_error": "Erro Raw", "response_data": "Dados da Resposta" }, "weather": { @@ -101,7 +101,7 @@ "playing": "A reproduzir", "transcoding": "Transcodificação", "bitrate": "Taxa de bits", - "no_active": "Sem streams ativas", + "no_active": "Sem Streams Ativos", "movies": "Filmes", "series": "Séries", "episodes": "Episódios", @@ -110,7 +110,7 @@ "esphome": { "offline": "Desligado", "offline_alt": "Desligado", - "online": "Online", + "online": "Disponível", "total": "Total", "unknown": "Desconhecido" }, @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Desconexão Pendente", "connectionStatusDisconnecting": "Desconectando", "connectionStatusDisconnected": "Desconectado", - "connectionStatusConnected": "Connected", + "connectionStatusConnected": "Conectado", "uptime": "Ligado", "maxDown": "Max. Down", "maxUp": "Max. Up", @@ -151,7 +151,7 @@ "externalIPAddress": "IP Externo" }, "caddy": { - "upstreams": "Upstreams", + "upstreams": "Streams de Envio", "requests": "Solicitações atuais", "requests_failed": "Solicitações com falha" }, @@ -169,15 +169,15 @@ "playing": "A reproduzir", "transcoding": "Transcodificação", "bitrate": "Taxa de bits", - "no_active": "Sem streams ativas", + "no_active": "Sem Streams Ativos", "plex_connection_error": "Verifique a conexão do Plex" }, "omada": { "connectedAp": "APs Ligados", - "activeUser": "Dispositivos activos", + "activeUser": "Dispositivos ativos", "alerts": "Alertas", - "connectedGateway": "Gateways ligados", - "connectedSwitches": "Switches ligados" + "connectedGateway": "Gateways conectados", + "connectedSwitches": "Switches conectados" }, "nzbget": { "rate": "Taxa", @@ -217,8 +217,8 @@ "memUsage": "Uso de Memória", "systemTempC": "Temp. do Sistema", "poolUsage": "Pool Usage", - "volumeUsage": "Volume Usage", - "invalid": "Invalid" + "volumeUsage": "Uso do volume", + "invalid": "Inválido" }, "deluge": { "download": "Descarregar", @@ -250,7 +250,7 @@ "lidarr": { "wanted": "Desejada", "queued": "Em fila", - "artists": "Artists" + "artists": "Artistas" }, "readarr": { "wanted": "Desejada", @@ -279,14 +279,14 @@ }, "netalertx": { "total": "Total", - "connected": "Connected", - "new_devices": "New Devices", - "down_alerts": "Down Alerts" + "connected": "Conectado", + "new_devices": "Novos dispositivos", + "down_alerts": "Alertas de Inatividade" }, "pihole": { "queries": "Consultas", "blocked": "Bloqueado", - "blocked_percent": "Blocked %", + "blocked_percent": "Bloqueado %", "gravity": "Gravidade" }, "adguard": { @@ -306,11 +306,11 @@ "total": "Total" }, "tailscale": { - "address": "Address", - "expires": "Expires", - "never": "Never", - "last_seen": "Last Seen", - "now": "Now", + "address": "Endereço", + "expires": "Expira em", + "never": "Nunca", + "last_seen": "Visto por último", + "now": "Agora", "years": "{{number}}y", "weeks": "{{number}}w", "days": "{{number}}d", @@ -331,8 +331,8 @@ "middleware": "Middleware" }, "navidrome": { - "nothing_streaming": "Sem streams ativas", - "please_wait": "Por favor aguarde" + "nothing_streaming": "Sem Streams Ativos", + "please_wait": "Por favor, aguarde" }, "npm": { "enabled": "Ativo", @@ -382,7 +382,7 @@ "players": "Reprodutores", "version": "Versão", "status": "Estado", - "up": "Online", + "up": "Disponível", "down": "Desligado" }, "miniflux": { @@ -405,20 +405,20 @@ "load": "Carga", "wait": "Por favor aguarde", "temp": "TEMP", - "_temp": "Temp", - "warn": "Warn", + "_temp": "Temperatura", + "warn": "Aviso", "uptime": "CIMA", "total": "Total", "free": "Livre", "used": "Utilizado", "days": "d", "hours": "h", - "crit": "Crit", + "crit": "Crítico", "read": "Lido", - "write": "Write", + "write": "Escrita", "gpu": "GPU", - "mem": "Mem", - "swap": "Swap" + "mem": "Memória", + "swap": "Temporário" }, "quicklaunch": { "bookmark": "Marcador", @@ -427,7 +427,7 @@ "custom": "Personalizado", "visit": "Visitar", "url": "Endereço URL", - "searchsuggestion": "Suggestion" + "searchsuggestion": "Sugestão" }, "wmo": { "0-day": "Solarengo", @@ -544,14 +544,14 @@ "hdhomerun": { "channels": "Canais", "hd": "HD", - "tunerCount": "Tuners", - "channelNumber": "Channel", - "channelNetwork": "Network", - "signalStrength": "Strength", - "signalQuality": "Quality", - "symbolQuality": "Quality", + "tunerCount": "Sintonizadores", + "channelNumber": "Canal", + "channelNetwork": "Rede", + "signalStrength": "Potência", + "signalQuality": "Qualidade", + "symbolQuality": "Qualidade", "networkRate": "Taxa de bits", - "clientIP": "Client" + "clientIP": "Cliente" }, "scrutiny": { "passed": "Aprovado", @@ -563,15 +563,15 @@ "total": "Total" }, "peanut": { - "battery_charge": "Battery Charge", - "ups_load": "UPS Load", - "ups_status": "UPS Status", - "online": "Online", - "on_battery": "On Battery", - "low_battery": "Low Battery" + "battery_charge": "Carga da bateria", + "ups_load": "Carga do UPS", + "ups_status": "Estado UPS", + "online": "Disponível", + "on_battery": "Na bateria", + "low_battery": "Bateria Fraca" }, "nextdns": { - "wait": "Por favor aguarde", + "wait": "Por favor, aguarde", "no_devices": "Nenhum dado do dispositivo recebido" }, "mikrotik": { @@ -586,10 +586,10 @@ "streams_xepg": "Canais XEPG" }, "opendtu": { - "yieldDay": "Today", - "absolutePower": "Power", - "relativePower": "Power %", - "limit": "Limit" + "yieldDay": "Hoje", + "absolutePower": "Energia", + "relativePower": "Energia %", + "limit": "Limite" }, "opnsense": { "cpu": "Carga do CPU", @@ -614,14 +614,14 @@ "status": "Estado" }, "pfsense": { - "load": "Load Avg", - "memory": "Mem Usage", - "wanStatus": "WAN Status", + "load": "Carga Média", + "memory": "Uso de memória", + "wanStatus": "Estado WAN", "up": "Ativo", "down": "Inativo", - "temp": "Temp", - "disk": "Disk Usage", - "wanIP": "WAN IP" + "temp": "Temperatura", + "disk": "Uso do disco", + "wanIP": "IP WAN" }, "proxmoxbackupserver": { "datastore_usage": "Armaz. de Dados", @@ -644,9 +644,9 @@ }, "atsumeru": { "series": "Séries", - "archives": "Archives", - "chapters": "Chapters", - "categories": "Categories" + "archives": "Arquivos", + "chapters": "Capítulos", + "categories": "Categorias" }, "komga": { "libraries": "Bibliotecas", @@ -686,8 +686,8 @@ "memoryusage": "Memória Utilizada", "freespace": "Espaço Livre", "activeusers": "Utilizadores Ativos", - "numfiles": "Files", - "numshares": "Shared Items" + "numfiles": "Arquivos", + "numshares": "Itens compartilhados" }, "kopia": { "status": "Estado", @@ -698,7 +698,7 @@ }, "unmanic": { "active_workers": "Workers Ativos", - "total_workers": "Total Workers", + "total_workers": "Total de trabalhadores", "records_total": "Comprimento da Fila" }, "pterodactyl": { @@ -716,7 +716,7 @@ "uptime": "Ligado" }, "ghostfolio": { - "gross_percent_today": "Today", + "gross_percent_today": "Hoje", "gross_percent_1y": "Um ano", "gross_percent_max": "Todo o tempo" }, @@ -732,13 +732,13 @@ "switches_on": "Interruptores Ligados" }, "whatsupdocker": { - "monitoring": "Monitoring", + "monitoring": "Monitorando", "updates": "Atualizações" }, "calibreweb": { "books": "Livros", - "authors": "Authors", - "categories": "Categories", + "authors": "Autores", + "categories": "Categorias", "series": "Séries" }, "jdownloader": { @@ -749,47 +749,47 @@ }, "kavita": { "seriesCount": "Séries", - "totalFiles": "Files" + "totalFiles": "Arquivos" }, "azuredevops": { - "result": "Result", + "result": "Resultado", "status": "Estado", - "buildId": "Build ID", - "succeeded": "Succeeded", - "notStarted": "Not Started", + "buildId": "ID Compilação", + "succeeded": "Bem-sucedido", + "notStarted": "Não iniciado", "failed": "Falhou", - "canceled": "Canceled", - "inProgress": "In Progress", - "totalPrs": "Total PRs", - "myPrs": "My PRs", + "canceled": "Cancelado", + "inProgress": "Em Progresso", + "totalPrs": "Total de PRs", + "myPrs": "Minhas PRs", "approved": "Aprovada" }, "gamedig": { "status": "Estado", - "online": "Online", + "online": "Disponível", "offline": "Desligado", - "name": "Name", - "map": "Map", - "currentPlayers": "Current players", + "name": "Nome", + "map": "Mapa", + "currentPlayers": "Jogadores atuais", "players": "Reprodutores", - "maxPlayers": "Max players", - "bots": "Bots", + "maxPlayers": "Número Máximo de Jogadores", + "bots": "Robôs", "ping": "Tempo de resposta" }, "urbackup": { "ok": "Ok", - "errored": "Errors", - "noRecent": "Out of Date", - "totalUsed": "Used Storage" + "errored": "Erros", + "noRecent": "Desatualizado", + "totalUsed": "Armazanamento Utilizado" }, "mealie": { - "recipes": "Recipes", + "recipes": "Receitas", "users": "Utilizadores", - "categories": "Categories", - "tags": "Tags" + "categories": "Categorias", + "tags": "Marcadores" }, "openmediavault": { - "downloading": "Downloading", + "downloading": "Baixando", "total": "Total", "running": "A correr", "stopped": "Parado", @@ -798,83 +798,83 @@ }, "openwrt": { "uptime": "Ligado", - "cpuLoad": "CPU Load Avg (5m)", + "cpuLoad": "Carga da CPU média (5m)", "up": "Ativo", "down": "Inativo", - "bytesTx": "Transmitted", + "bytesTx": "Transmitido", "bytesRx": "Recebido" }, "uptimerobot": { "status": "Estado", "uptime": "Ligado", - "lastDown": "Last Downtime", - "downDuration": "Downtime Duration", + "lastDown": "Última inatividade", + "downDuration": "Duração de inatividade", "sitesUp": "Sites no Ar", "sitesDown": "Sites Fora do Ar", "paused": "Pausado", - "notyetchecked": "Not Yet Checked", + "notyetchecked": "Não conferidos ainda", "up": "Ativo", - "seemsdown": "Seems Down", + "seemsdown": "Parece Desconectado", "down": "Inativo", "unknown": "Desconhecido" }, "calendar": { - "inCinemas": "In cinemas", - "physicalRelease": "Physical release", - "digitalRelease": "Digital release", - "noEventsToday": "No events for today!", - "noEventsFound": "No events found" + "inCinemas": "Nos cinemas", + "physicalRelease": "Versão física", + "digitalRelease": "Versão digital", + "noEventsToday": "Nenhum evento para hoje!", + "noEventsFound": "Nenhum evento encontrado" }, "romm": { - "platforms": "Platforms", - "totalRoms": "Total ROMs" + "platforms": "Plataformas", + "totalRoms": "Total de ROMs" }, "netdata": { - "warnings": "Warnings", - "criticals": "Criticals" + "warnings": "Alertas", + "criticals": "Críticos" }, "plantit": { - "events": "Events", - "plants": "Plants", + "events": "Eventos", + "plants": "Plantas", "photos": "Fotos", - "species": "Species" + "species": "Espécies" }, "gitea": { - "notifications": "Notifications", + "notifications": "Notificações", "issues": "Problemas", - "pulls": "Pull Requests" + "pulls": "Solicitações de Envio" }, "stash": { - "scenes": "Scenes", - "scenesPlayed": "Scenes Played", - "playCount": "Total Plays", - "playDuration": "Time Watched", - "sceneSize": "Scenes Size", - "sceneDuration": "Scenes Duration", - "images": "Images", - "imageSize": "Images Size", - "galleries": "Galleries", - "performers": "Performers", - "studios": "Studios", + "scenes": "Cenas", + "scenesPlayed": "Cenas Reproduzidas", + "playCount": "Total de Reproduções", + "playDuration": "Tempo Assistido", + "sceneSize": "Tamanho das cenas", + "sceneDuration": "Duração das cenas", + "images": "Imagens", + "imageSize": "Tamanho da Imagem", + "galleries": "Galerias", + "performers": "Atores", + "studios": "Estúdios", "movies": "Filmes", - "tags": "Tags", - "oCount": "O Count" + "tags": "Marcadores", + "oCount": "Contagem 0" }, "tandoor": { "users": "Utilizadores", - "recipes": "Recipes", - "keywords": "Keywords" + "recipes": "Receitas", + "keywords": "Palavras-chave" }, "homebox": { - "items": "Items", - "totalWithWarranty": "With Warranty", - "locations": "Locations", - "labels": "Labels", + "items": "Itens", + "totalWithWarranty": "Com Garantia", + "locations": "Localização", + "labels": "Rótulos", "users": "Utilizadores", - "totalValue": "Total Value" + "totalValue": "Valor Total" }, "crowdsec": { "alerts": "Alertas", - "bans": "Bans" + "bans": "Banimentos" } } diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json index 9d284786..10e32a0c 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -21,7 +21,7 @@ "seconds": "s" }, "widget": { - "missing_type": "Kayıp Araç Türü: {{type}}", + "missing_type": "Eksik Araç Türü: {{type}}", "api_error": "API Hatası", "information": "Bilgi", "status": "Durum", @@ -42,12 +42,12 @@ "cpu": "CPU", "mem": "MEM", "total": "Toplam", - "free": "Boşta", + "free": "Boş", "used": "Kullanımda", "load": "Yük", - "temp": "Geçici", + "temp": "Sıcaklık", "max": "En Yüksek", - "uptime": "Çalışma Süresi" + "uptime": "Çalışıyor" }, "unifi": { "users": "Kullanıcılar", @@ -61,7 +61,7 @@ "wlan_devices": "WLAN Aygıtları", "lan_users": "LAN Kullanıcıları", "wlan_users": "WLAN Kullanıcıları", - "up": "Çalışma Süresi", + "up": "Çalışıyor", "down": "Aşağı", "wait": "Lütfen bekleyin", "empty_data": "Alt sistem durumu bilinmiyor" @@ -71,15 +71,15 @@ "tx": "Giden Veri", "mem": "MEM", "cpu": "CPU", - "running": "Çalışan", + "running": "Çalışıyor", "offline": "Çevrimdışı", "error": "Hata", "unknown": "Bilinmiyor", - "healthy": "Sağlık", + "healthy": "Sağlıklı", "starting": "Başlatılıyor", "unhealthy": "Sağlıksız", "not_found": "Bulunamadı", - "exited": "Durduruldu", + "exited": "Kapandı", "partial": "Parçalı" }, "ping": { @@ -123,8 +123,8 @@ "watt_hour": "Watt/Saat" }, "flood": { - "download": "İndir", - "upload": "Yükle", + "download": "İndirme", + "upload": "Yükleme", "leech": "Tüketici", "seed": "Sağlayıcı" }, @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "Bağlantının Kesilmesi Bekleniyor", "connectionStatusDisconnecting": "Bağlantı kesiliyor...", "connectionStatusDisconnected": "Bağlantı kesildi", - "connectionStatusConnected": "Connected", + "connectionStatusConnected": "Bağlandı", "uptime": "Çalışma Süresi", "maxDown": "Max. Indirme", "maxUp": "Max. Gönderme", @@ -197,18 +197,18 @@ }, "rutorrent": { "active": "Aktif", - "upload": "Yükle", - "download": "İndir" + "upload": "Yükleme", + "download": "İndirme" }, "transmission": { - "download": "İndir", - "upload": "Yükle", + "download": "İndirme", + "upload": "Yükleme", "leech": "Tüketici", "seed": "Sağlayıcı" }, "qbittorrent": { - "download": "İndir", - "upload": "Yükle", + "download": "İndirme", + "upload": "Yükleme", "leech": "Tüketici", "seed": "Sağlayıcı" }, @@ -221,87 +221,87 @@ "invalid": "Geçersiz" }, "deluge": { - "download": "İndir", - "upload": "Yükle", + "download": "İndirme", + "upload": "Yükleme", "leech": "Tüketici", "seed": "Sağlayıcı" }, "downloadstation": { - "download": "İndir", - "upload": "Yükle", + "download": "İndirme", + "upload": "Yükleme", "leech": "Tüketici", "seed": "Sağlayıcı" }, "sonarr": { - "wanted": "Aranan", - "queued": "Kuyrukta", + "wanted": "İstendi", + "queued": "Sırada", "series": "Diziler", "queue": "Kuyruk", "unknown": "Bilinmiyor" }, "radarr": { - "wanted": "Aranan", - "missing": "Kayıp", - "queued": "Kuyrukta", + "wanted": "İstendi", + "missing": "Eksik", + "queued": "Sırada", "movies": "Filmler", "queue": "Kuyruk", "unknown": "Bilinmiyor" }, "lidarr": { - "wanted": "Aranan", - "queued": "Kuyrukta", + "wanted": "İstendi", + "queued": "Sırada", "artists": "Sanatçılar" }, "readarr": { - "wanted": "Aranan", - "queued": "Kuyrukta", + "wanted": "İstendi", + "queued": "Sırada", "books": "Kitaplar" }, "bazarr": { - "missingEpisodes": "Kayıp Bölümler", - "missingMovies": "Kayıp Filmler" + "missingEpisodes": "Eksik Bölümler", + "missingMovies": "Eksik Filmler" }, "ombi": { - "pending": "Bekliyor", + "pending": "Bekleyen", "approved": "Onaylı", "available": "Kullanılabilir" }, "jellyseerr": { - "pending": "Bekliyor", + "pending": "Bekleyen", "approved": "Onaylı", "available": "Kullanılabilir" }, "overseerr": { - "pending": "Bekliyor", + "pending": "Bekleyen", "processing": "İşleniyor", "approved": "Onaylı", "available": "Kullanılabilir" }, "netalertx": { "total": "Toplam", - "connected": "Connected", - "new_devices": "New Devices", - "down_alerts": "Down Alerts" + "connected": "Bağlandı", + "new_devices": "Yeni Cihazlar", + "down_alerts": "Hata Uyarıları" }, "pihole": { "queries": "Sorgular", "blocked": "Engellenen", "blocked_percent": "Engellenen %", - "gravity": "Yer Çekimi" + "gravity": "Gravity" }, "adguard": { "queries": "Sorgular", "blocked": "Engellenen", - "filtered": "Filtrelenen", + "filtered": "Filtrelendi", "latency": "Gecikme" }, "speedtest": { - "upload": "Yükle", - "download": "İndir", + "upload": "Yükleme", + "download": "İndirme", "ping": "Gecikme" }, "portainer": { - "running": "Çalışan", + "running": "Çalışıyor", "stopped": "Durduruldu", "total": "Toplam" }, @@ -353,10 +353,10 @@ }, "prowlarr": { "enableIndexers": "Dizin Oluşturucular", - "numberOfGrabs": "Yakalama Sayısı", + "numberOfGrabs": "Yakalamalar", "numberOfQueries": "Sorgular", - "numberOfFailGrabs": "Başarısız Yakalama Sayısı", - "numberOfFailQueries": "Başarısız Sorgu Sayısı" + "numberOfFailGrabs": "Başarısız Yakalamalar", + "numberOfFailQueries": "Başarısız Sorgular" }, "jackett": { "configured": "Yapılandırılmış", @@ -374,8 +374,8 @@ "domain_count": "Etki Alanları" }, "medusa": { - "wanted": "Aranan", - "queued": "Kuyrukta", + "wanted": "İstendi", + "queued": "Sırada", "series": "Diziler" }, "minecraft": { @@ -386,7 +386,7 @@ "down": "Çevrimdışı" }, "miniflux": { - "read": "Oku", + "read": "Okunan", "unread": "Okunmamış" }, "authentik": { @@ -404,17 +404,17 @@ "cpu": "CPU", "load": "Yük", "wait": "Lütfen bekleyin", - "temp": "Geçici", + "temp": "Sıcaklık", "_temp": "Sıcaklık", "warn": "Uyarı", - "uptime": "Çalışma Süresi", + "uptime": "Çalışıyor", "total": "Toplam", - "free": "Boşta", + "free": "Boş", "used": "Kullanımda", "days": "g", "hours": "sa", "crit": "Kritik", - "read": "Oku", + "read": "Okunan", "write": "Yazma", "gpu": "GPU", "mem": "Hafıza", @@ -495,7 +495,7 @@ "child_bridges": "Alt Köprüler", "child_bridges_status": "{{ok}}/{{total}}", "up": "Yükleme", - "pending": "Bekliyor", + "pending": "Bekleyen", "down": "İndirme" }, "healthchecks": { @@ -503,7 +503,7 @@ "up": "Yükleme", "grace": "Tolerans Döneminde", "down": "İndirme", - "paused": "Durduruldu", + "paused": "Duraklatıldı", "status": "Durum", "last_ping": "Son Ping", "never": "Henüz ping yok" @@ -636,8 +636,8 @@ "storage": "Depo" }, "uptimekuma": { - "up": "Sites Up", - "down": "Sites Down", + "up": "Siteler Çalışıyor", + "down": "Siteler Çalışmıyor", "uptime": "Çalışma Süresi", "incident": "Olay", "m": "dk" @@ -661,7 +661,7 @@ "mylar": { "series": "Diziler", "issues": "Sorunlar", - "wanted": "Aranan" + "wanted": "İstendi" }, "photoprism": { "albums": "Albümler", @@ -706,13 +706,13 @@ "nodes": "Düğümler" }, "prometheus": { - "targets_up": "Targets Up", - "targets_down": "Targets Down", + "targets_up": "Hedef Çalışıyor", + "targets_down": "Hedef Çalışmıyor", "targets_total": "Toplam Hedef" }, "gatus": { - "up": "Sites Up", - "down": "Sites Down", + "up": "Siteler Çalışıyor", + "down": "Siteler Çalışmıyor", "uptime": "Çalışma Süresi" }, "ghostfolio": { @@ -727,7 +727,7 @@ "booksDuration": "Süre" }, "homeassistant": { - "people_home": "People Home", + "people_home": "Evdeki İnsanlar", "lights_on": "Işıklar Açık", "switches_on": "Aç" }, @@ -754,14 +754,14 @@ "azuredevops": { "result": "Sonuç", "status": "Durum", - "buildId": "Build ID", + "buildId": "Yapı Kimliği", "succeeded": "Başarılı", "notStarted": "Henüz Başlamadı", "failed": "Başarısız", "canceled": "İptal edildi", "inProgress": "Sürüyor", - "totalPrs": "Total PRs", - "myPrs": "My PRs", + "totalPrs": "Toplam Çekme İstekleri", + "myPrs": "Benim Çekme İsteklerim", "approved": "Onaylı" }, "gamedig": { @@ -791,7 +791,7 @@ "openmediavault": { "downloading": "İndiriliyor", "total": "Toplam", - "running": "Çalışan", + "running": "Çalışıyor", "stopped": "Durduruldu", "passed": "Geçti", "failed": "Başarısız" @@ -809,9 +809,9 @@ "uptime": "Çalışma Süresi", "lastDown": "Son Kesinti", "downDuration": "Kesinti Süresi", - "sitesUp": "Sites Up", - "sitesDown": "Sites Down", - "paused": "Durduruldu", + "sitesUp": "Siteler Çalışıyor", + "sitesDown": "Siteler Çalışmıyor", + "paused": "Duraklatıldı", "notyetchecked": "Henüz Kontrol Edilmedi", "up": "Yükleme", "seemsdown": "Kapalı görünüyor", @@ -821,7 +821,7 @@ "calendar": { "inCinemas": "Sinemalarda", "physicalRelease": "Fiziksel Yayınlanan", - "digitalRelease": "Dijital Yayınlanan", + "digitalRelease": "Dijitalde Yayınlandı", "noEventsToday": "Bugün için etkinlik yok!", "noEventsFound": "Etkinlik bulunamadı" }, @@ -835,7 +835,7 @@ }, "plantit": { "events": "Etkinlikler", - "plants": "Plants", + "plants": "Bitkiler", "photos": "Fotoğraflar", "species": "Türler" }, @@ -854,11 +854,11 @@ "images": "Görseller", "imageSize": "Görsel Boyutu", "galleries": "Galeriler", - "performers": "Performers", + "performers": "Oyuncu", "studios": "Stüdyolar", "movies": "Filmler", "tags": "Etiketler", - "oCount": "O Count" + "oCount": "O Sayısı" }, "tandoor": { "users": "Kullanıcılar", @@ -875,6 +875,6 @@ }, "crowdsec": { "alerts": "Alarmlar", - "bans": "Bans" + "bans": "Yasaklar" } } diff --git a/public/locales/zh-Hans/common.json b/public/locales/zh-Hans/common.json index 5ae9de40..41706e9f 100644 --- a/public/locales/zh-Hans/common.json +++ b/public/locales/zh-Hans/common.json @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "等待断开连接", "connectionStatusDisconnecting": "正在断开连接", "connectionStatusDisconnected": "未连接", - "connectionStatusConnected": "Connected", + "connectionStatusConnected": "已连接", "uptime": "运行时间", "maxDown": "最大下载速度", "maxUp": "", @@ -279,9 +279,9 @@ }, "netalertx": { "total": "总计", - "connected": "Connected", - "new_devices": "New Devices", - "down_alerts": "Down Alerts" + "connected": "已连接", + "new_devices": "新设备", + "down_alerts": "离线警报" }, "pihole": { "queries": "查询", From 857ac1f7dc19819424e807ff8d2894788f2c90f7 Mon Sep 17 00:00:00 2001 From: "Noah S. Roberts" <35052448+Mase3206@users.noreply.github.com> Date: Fri, 10 May 2024 01:56:30 -0600 Subject: [PATCH 28/38] Documentation: use generic url in channels dvr widget docs (#3434) --- docs/widgets/services/channelsdvrserver.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/widgets/services/channelsdvrserver.md b/docs/widgets/services/channelsdvrserver.md index bedf8037..9dcafa58 100644 --- a/docs/widgets/services/channelsdvrserver.md +++ b/docs/widgets/services/channelsdvrserver.md @@ -8,5 +8,5 @@ Learn more about [Channels DVR Server](https://getchannels.com/dvr-server/). ```yaml widget: type: channelsdvrserver - url: http://192.168.1.55:8089 + url: http://server.host.or.ip:port ``` From d20ab844d6ec84062b22f6b5b7d339ce32789349 Mon Sep 17 00:00:00 2001 From: zinsmeik <77801963+zinsmeik@users.noreply.github.com> Date: Fri, 10 May 2024 15:23:54 +0200 Subject: [PATCH 29/38] Documentation: correct weatherapi example (#3436) --- docs/configs/settings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configs/settings.md b/docs/configs/settings.md index 753d71d8..ea5db734 100644 --- a/docs/configs/settings.md +++ b/docs/configs/settings.md @@ -363,7 +363,7 @@ providers: You can then pass `provider` instead of `apiKey` in your widget configuration. ```yaml -- weather: +- weatherapi: latitude: 50.449684 longitude: 30.525026 provider: weatherapi From 43ebd6d0c5ea88fcb87e713ecdda0f2661dedc08 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 16 May 2024 08:07:33 -0700 Subject: [PATCH 30/38] Fix: handle ghostfolio v2.79.0 breaking API changes (#3471) --- src/widgets/ghostfolio/component.jsx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/src/widgets/ghostfolio/component.jsx b/src/widgets/ghostfolio/component.jsx index 3bd79325..747fdabf 100644 --- a/src/widgets/ghostfolio/component.jsx +++ b/src/widgets/ghostfolio/component.jsx @@ -5,8 +5,12 @@ import Block from "components/services/widget/block"; import useWidgetAPI from "utils/proxy/use-widget-api"; function getPerformancePercent(t, performanceRange) { - return `${performanceRange.performance.currentGrossPerformancePercent > 0 ? "+" : ""}${t("common.percent", { - value: performanceRange.performance.currentGrossPerformancePercent * 100, + // ghostfolio v2.79.0 changed to grossPerformancePercentage + const percent = + performanceRange.performance.grossPerformancePercentage ?? + performanceRange.performance.currentGrossPerformancePercent; + return `${percent > 0 ? "+" : ""}${t("common.percent", { + value: percent * 100, maximumFractionDigits: 2, })}`; } @@ -24,6 +28,10 @@ export default function Component({ service }) { return ; } + if (performanceToday?.statusCode === 401) { + return ; + } + if (!performanceToday || !performanceYear || !performanceMax) { return ( From a9ad2a2146e8caeaa834cbab3d0cfca693c22dcf Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Thu, 16 May 2024 08:28:12 -0700 Subject: [PATCH 31/38] Improve k8s not found pod status --- src/pages/api/kubernetes/status/[...service].js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/api/kubernetes/status/[...service].js b/src/pages/api/kubernetes/status/[...service].js index f771d69d..7d950038 100644 --- a/src/pages/api/kubernetes/status/[...service].js +++ b/src/pages/api/kubernetes/status/[...service].js @@ -43,8 +43,9 @@ export default async function handler(req, res) { if (pods.length === 0) { res.status(404).send({ - error: `no pods found with namespace=${namespace} and labelSelector=${labelSelector}`, + status: "not found", }); + logger.error(`no pods found with namespace=${namespace} and labelSelector=${labelSelector}`); return; } const someReady = pods.find((pod) => pod.status.phase === "Running"); From 1144f4dfa0a5fcb786505114bdc09b2589b04efe Mon Sep 17 00:00:00 2001 From: Jesus Lopez Date: Thu, 16 May 2024 18:09:50 -0700 Subject: [PATCH 32/38] Fix: allow exclamation to open quicklaunch (#3475) --- src/pages/index.jsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pages/index.jsx b/src/pages/index.jsx index 5e1bd6e2..4ae5d93a 100644 --- a/src/pages/index.jsx +++ b/src/pages/index.jsx @@ -227,7 +227,8 @@ function Home({ initialSettings }) { (e.key.length === 1 && e.key.match(/(\w|\s|[à-ü]|[À-Ü]|[\w\u0430-\u044f])/gi) && !(e.altKey || e.ctrlKey || e.metaKey || e.shiftKey)) || - e.key.match(/([à-ü]|[À-Ü])/g) || // accented characters may require modifier keys + // accented characters and the bang may require modifier keys + e.key.match(/([à-ü]|[À-Ü]|!)/g) || (e.key === "v" && (e.ctrlKey || e.metaKey)) ) { setSearching(true); From 6ab6d6fd3a592da1ad3a6b446701253578e2a4de Mon Sep 17 00:00:00 2001 From: Conner Hnatiuk <46903591+ConnerWithAnE@users.noreply.github.com> Date: Thu, 16 May 2024 23:26:12 -0600 Subject: [PATCH 33/38] Feature: Wg-Easy Widget (#3476) --------- Co-authored-by: ConnerWithAnE <46903591+ConnerWithAnE@users.noreply.github.com> Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- docs/widgets/services/wgeasy.md | 20 +++++++++ public/locales/en/common.json | 6 +++ src/utils/config/service-helpers.js | 6 +++ src/widgets/components.js | 1 + src/widgets/wgeasy/component.jsx | 45 +++++++++++++++++++ src/widgets/wgeasy/proxy.js | 70 +++++++++++++++++++++++++++++ src/widgets/wgeasy/widget.js | 8 ++++ src/widgets/widgets.js | 2 + 8 files changed, 158 insertions(+) create mode 100644 docs/widgets/services/wgeasy.md create mode 100644 src/widgets/wgeasy/component.jsx create mode 100644 src/widgets/wgeasy/proxy.js create mode 100644 src/widgets/wgeasy/widget.js diff --git a/docs/widgets/services/wgeasy.md b/docs/widgets/services/wgeasy.md new file mode 100644 index 00000000..c5442081 --- /dev/null +++ b/docs/widgets/services/wgeasy.md @@ -0,0 +1,20 @@ +--- +title: Wg-Easy +description: Wg-Easy Widget Configuration +--- + +Learn more about [Wg-Easy](https://github.com/wg-easy/wg-easy). + +Allowed fields: `["connected", "enabled", "disabled", "total"]`. + +Note: by default `["connected", "enabled", "total"]` are displayed. + +To detect if a device is connected the time since the last handshake is queried. `threshold` is the time to wait in minutes since the last handshake to consider a device connected. Default is 2 minutes. + +```yaml +widget: + type: wgeasy + url: http://wg.easy.or.ip + password: yourwgeasypassword + threshold: 2 # optional +``` diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 3ac3ed0d..15de0ee9 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -876,5 +876,11 @@ "crowdsec": { "alerts": "Alerts", "bans": "Bans" + }, + "wgeasy": { + "connected": "Connected", + "enabled": "Enabled", + "disabled": "Disabled", + "total": "Total" } } diff --git a/src/utils/config/service-helpers.js b/src/utils/config/service-helpers.js index aaee636c..8e2f12d5 100644 --- a/src/utils/config/service-helpers.js +++ b/src/utils/config/service-helpers.js @@ -462,6 +462,9 @@ export function cleanServiceGroups(groups) { // unifi site, + + // wgeasy + threshold, } = cleanedService.widget; let fieldsList = fields; @@ -596,6 +599,9 @@ export function cleanServiceGroups(groups) { cleanedService.widget.bitratePrecision = parseInt(bitratePrecision, 10); } } + if (type === "wgeasy") { + if (threshold !== undefined) cleanedService.widget.threshold = parseInt(threshold, 10); + } } return cleanedService; diff --git a/src/widgets/components.js b/src/widgets/components.js index 500fe0ce..1b5c4b68 100644 --- a/src/widgets/components.js +++ b/src/widgets/components.js @@ -117,6 +117,7 @@ const components = { uptimerobot: dynamic(() => import("./uptimerobot/component")), urbackup: dynamic(() => import("./urbackup/component")), watchtower: dynamic(() => import("./watchtower/component")), + wgeasy: dynamic(() => import("./wgeasy/component")), whatsupdocker: dynamic(() => import("./whatsupdocker/component")), xteve: dynamic(() => import("./xteve/component")), }; diff --git a/src/widgets/wgeasy/component.jsx b/src/widgets/wgeasy/component.jsx new file mode 100644 index 00000000..0289d48c --- /dev/null +++ b/src/widgets/wgeasy/component.jsx @@ -0,0 +1,45 @@ +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 { widget } = service; + + const { data: infoData, error: infoError } = useWidgetAPI(widget); + + if (!widget.fields) { + widget.fields = ["connected", "enabled", "total"]; + } + + if (infoError) { + return ; + } + + if (!infoData) { + return ( + + + + + + + ); + } + + const enabled = infoData.filter((item) => item.enabled).length; + const disabled = infoData.length - enabled; + const connectionThreshold = widget.threshold ?? 2 * 60 * 1000; + const currentTime = new Date(); + const connected = infoData.filter( + (item) => currentTime - new Date(item.latestHandshakeAt) < connectionThreshold, + ).length; + + return ( + + + + + + + ); +} diff --git a/src/widgets/wgeasy/proxy.js b/src/widgets/wgeasy/proxy.js new file mode 100644 index 00000000..ec733475 --- /dev/null +++ b/src/widgets/wgeasy/proxy.js @@ -0,0 +1,70 @@ +import cache from "memory-cache"; + +import getServiceWidget from "utils/config/service-helpers"; +import { formatApiCall } from "utils/proxy/api-helpers"; +import { httpProxy } from "utils/proxy/http"; +import widgets from "widgets/widgets"; +import createLogger from "utils/logger"; + +const proxyName = "wgeasyProxyHandler"; +const logger = createLogger(proxyName); +const sessionSIDCacheKey = `${proxyName}__sessionSID`; + +async function login(widget, service) { + const url = formatApiCall(widgets[widget.type].api, { ...widget, endpoint: "session" }); + const [, , , responseHeaders] = await httpProxy(url, { + method: "POST", + body: JSON.stringify({ password: widget.password }), + headers: { + "Content-Type": "application/json", + }, + }); + + try { + const connectSidCookie = responseHeaders["set-cookie"] + .find((cookie) => cookie.startsWith("connect.sid=")) + .split(";")[0] + .replace("connect.sid=", ""); + cache.put(`${sessionSIDCacheKey}.${service}`, connectSidCookie); + return connectSidCookie; + } catch (e) { + logger.error(`Error logging into wg-easy`); + cache.del(`${sessionSIDCacheKey}.${service}`); + return null; + } +} + +export default async function wgeasyProxyHandler(req, res) { + const { group, service } = req.query; + + if (group && service) { + const widget = await getServiceWidget(group, service); + + if (!widgets?.[widget.type]?.api) { + return res.status(403).json({ error: "Service does not support API calls" }); + } + + if (widget) { + let sid = cache.get(`${sessionSIDCacheKey}.${service}`); + if (!sid) { + sid = await login(widget, service); + if (!sid) { + return res.status(500).json({ error: "Failed to authenticate with Wg-Easy" }); + } + } + const [, , data] = await httpProxy( + formatApiCall(widgets[widget.type].api, { ...widget, endpoint: "wireguard/client" }), + { + headers: { + "Content-Type": "application/json", + Cookie: `connect.sid=${sid}`, + }, + }, + ); + + return res.json(JSON.parse(data)); + } + } + + return res.status(400).json({ error: "Invalid proxy service type" }); +} diff --git a/src/widgets/wgeasy/widget.js b/src/widgets/wgeasy/widget.js new file mode 100644 index 00000000..7f7d69d7 --- /dev/null +++ b/src/widgets/wgeasy/widget.js @@ -0,0 +1,8 @@ +import wgeasyProxyHandler from "./proxy"; + +const widget = { + api: "{url}/api/{endpoint}", + proxyHandler: wgeasyProxyHandler, +}; + +export default widget; diff --git a/src/widgets/widgets.js b/src/widgets/widgets.js index 7ed98bfb..d6965f50 100644 --- a/src/widgets/widgets.js +++ b/src/widgets/widgets.js @@ -107,6 +107,7 @@ import unmanic from "./unmanic/widget"; import uptimekuma from "./uptimekuma/widget"; import uptimerobot from "./uptimerobot/widget"; import watchtower from "./watchtower/widget"; +import wgeasy from "./wgeasy/widget"; import whatsupdocker from "./whatsupdocker/widget"; import xteve from "./xteve/widget"; import urbackup from "./urbackup/widget"; @@ -227,6 +228,7 @@ const widgets = { uptimerobot, urbackup, watchtower, + wgeasy, whatsupdocker, xteve, }; From 97d7ae21e483c13c71c3a61ff5f18ac0b119d3f8 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 17 May 2024 08:57:41 -0700 Subject: [PATCH 34/38] Fix: handle some status cases with non-existent k8s pods (#3489) --- src/widgets/kubernetes/component.jsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/widgets/kubernetes/component.jsx b/src/widgets/kubernetes/component.jsx index 2454f2aa..68d0da29 100644 --- a/src/widgets/kubernetes/component.jsx +++ b/src/widgets/kubernetes/component.jsx @@ -18,10 +18,13 @@ export default function Component({ service }) { ); if (statsError || statusError) { - return ; + return ; } - if (statusData && !(statusData.status.includes("running") || statusData.status.includes("partial"))) { + if ( + statusData && + (!statusData.status || !(statusData.status.includes("running") || statusData.status.includes("partial"))) + ) { return ( From 4d76443846ab0fa9c1b1b4cf1a4a20d982de0381 Mon Sep 17 00:00:00 2001 From: Nick Disiere Date: Tue, 21 May 2024 15:06:59 -0500 Subject: [PATCH 35/38] Fix: correct icon in the longhorn widget (#3509) --- src/components/widgets/longhorn/node.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/widgets/longhorn/node.jsx b/src/components/widgets/longhorn/node.jsx index da2882ee..75bff72c 100644 --- a/src/components/widgets/longhorn/node.jsx +++ b/src/components/widgets/longhorn/node.jsx @@ -1,5 +1,5 @@ import { useTranslation } from "next-i18next"; -import { FaThermometerHalf } from "react-icons/fa"; +import { FiHardDrive } from "react-icons/fi"; import Resource from "../widget/resource"; import WidgetLabel from "../widget/widget_label"; @@ -10,7 +10,7 @@ export default function Node({ data, expanded, labels }) { return ( Date: Wed, 22 May 2024 16:19:48 +0300 Subject: [PATCH 36/38] Documentation: DO Credits (#3505) --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- README.md | 7 +++++++ docs/index.md | 7 +++++++ 2 files changed, 14 insertions(+) diff --git a/README.md b/README.md index d137ba5e..b47ef870 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,13 @@ GitHub Sponsors

+

+ DigitalOcean Referral Badge +

+

+Homepage builds are kindly powered by DigitalOcean. +

+ # Features With features like quick search, bookmarks, weather support, a wide range of integrations and widgets, an elegant and modern design, and a focus on performance, Homepage is your ideal start to the day and a handy companion throughout it. diff --git a/docs/index.md b/docs/index.md index 97a3704b..fe1c0adf 100644 --- a/docs/index.md +++ b/docs/index.md @@ -17,3 +17,10 @@ hide: A modern, fully static, fast, secure fully proxied, highly customizable application dashboard with integrations for over 100 services and translations into multiple languages. Easily configured via YAML files or through docker label discovery. ![Alt text](assets/homepage_demo.png) + +

+ DigitalOcean Referral Badge +

+

+Homepage builds are kindly powered by DigitalOcean. +

From c6770d233cff863019e5c096496fde98467ed905 Mon Sep 17 00:00:00 2001 From: quietsy Date: Tue, 28 May 2024 08:00:52 +0300 Subject: [PATCH 37/38] Feature: SWAG dashboard widget (#3523) --- docs/widgets/services/swagdashboard.md | 14 +++++++++++ mkdocs.yml | 1 + public/locales/en/common.json | 6 +++++ src/widgets/components.js | 1 + src/widgets/swagdashboard/component.jsx | 33 +++++++++++++++++++++++++ src/widgets/swagdashboard/widget.js | 8 ++++++ src/widgets/widgets.js | 2 ++ 7 files changed, 65 insertions(+) create mode 100644 docs/widgets/services/swagdashboard.md create mode 100644 src/widgets/swagdashboard/component.jsx create mode 100644 src/widgets/swagdashboard/widget.js diff --git a/docs/widgets/services/swagdashboard.md b/docs/widgets/services/swagdashboard.md new file mode 100644 index 00000000..2b6c9792 --- /dev/null +++ b/docs/widgets/services/swagdashboard.md @@ -0,0 +1,14 @@ +--- +title: SWAG Dashboard +description: SWAG Dashboard Widget Configuration +--- + +Learn more about [SWAG Dashboard](https://github.com/linuxserver/docker-mods/tree/swag-dashboard). + +Allowed fields: `["proxied", "auth", "outdated", "banned"]`. + +```yaml +widget: + type: swagdashboard + url: http://swagdashboard.host.or.ip:adminport # default port is 81 +``` diff --git a/mkdocs.yml b/mkdocs.yml index 6c666892..520519c6 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -129,6 +129,7 @@ nav: - widgets/services/sonarr.md - widgets/services/speedtest-tracker.md - widgets/services/stash.md + - widgets/services/swagdashboard.md - widgets/services/syncthing-relay-server.md - widgets/services/tailscale.md - widgets/services/tandoor.md diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 15de0ee9..3e582a4d 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -882,5 +882,11 @@ "enabled": "Enabled", "disabled": "Disabled", "total": "Total" + }, + "swagdashboard": { + "proxied": "Proxied", + "auth": "With Auth", + "outdated": "Outdated", + "banned": "Banned" } } diff --git a/src/widgets/components.js b/src/widgets/components.js index 1b5c4b68..36b9de07 100644 --- a/src/widgets/components.js +++ b/src/widgets/components.js @@ -103,6 +103,7 @@ const components = { speedtest: dynamic(() => import("./speedtest/component")), stash: dynamic(() => import("./stash/component")), strelaysrv: dynamic(() => import("./strelaysrv/component")), + swagdashboard: dynamic(() => import("./swagdashboard/component")), tailscale: dynamic(() => import("./tailscale/component")), tandoor: dynamic(() => import("./tandoor/component")), tautulli: dynamic(() => import("./tautulli/component")), diff --git a/src/widgets/swagdashboard/component.jsx b/src/widgets/swagdashboard/component.jsx new file mode 100644 index 00000000..d4dbd494 --- /dev/null +++ b/src/widgets/swagdashboard/component.jsx @@ -0,0 +1,33 @@ +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 { widget } = service; + + const { data: swagData, error: swagError } = useWidgetAPI(widget, "overview"); + + if (swagError) { + return ; + } + + if (!swagData) { + return ( + + + + + + + ); + } + + return ( + + + + + + + ); +} diff --git a/src/widgets/swagdashboard/widget.js b/src/widgets/swagdashboard/widget.js new file mode 100644 index 00000000..626586fe --- /dev/null +++ b/src/widgets/swagdashboard/widget.js @@ -0,0 +1,8 @@ +import genericProxyHandler from "utils/proxy/handlers/generic"; + +const widget = { + api: "{url}/?stats=true", + proxyHandler: genericProxyHandler, +}; + +export default widget; diff --git a/src/widgets/widgets.js b/src/widgets/widgets.js index d6965f50..950954b0 100644 --- a/src/widgets/widgets.js +++ b/src/widgets/widgets.js @@ -94,6 +94,7 @@ import sonarr from "./sonarr/widget"; import speedtest from "./speedtest/widget"; import stash from "./stash/widget"; import strelaysrv from "./strelaysrv/widget"; +import swagdashboard from "./swagdashboard/widget"; import tailscale from "./tailscale/widget"; import tandoor from "./tandoor/widget"; import tautulli from "./tautulli/widget"; @@ -213,6 +214,7 @@ const widgets = { speedtest, stash, strelaysrv, + swagdashboard, tailscale, tandoor, tautulli, From c267eeabf858a17d10a42b3fe4c90e0183cd05a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 May 2024 10:44:23 -0700 Subject: [PATCH 38/38] Chore(deps): Bump crowdin/github-action from 1 to 2 (#3537) Bumps [crowdin/github-action](https://github.com/crowdin/github-action) from 1 to 2. - [Release notes](https://github.com/crowdin/github-action/releases) - [Commits](https://github.com/crowdin/github-action/compare/v1...v2) --- updated-dependencies: - dependency-name: crowdin/github-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/crowdin.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/crowdin.yml b/.github/workflows/crowdin.yml index e7e473eb..ae1b3af9 100644 --- a/.github/workflows/crowdin.yml +++ b/.github/workflows/crowdin.yml @@ -19,7 +19,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: crowdin action - uses: crowdin/github-action@v1 + uses: crowdin/github-action@v2 with: upload_translations: false download_translations: true