From 59ccc3a21576393388ac072d5b4b3769911fb386 Mon Sep 17 00:00:00 2001
From: myztillx <33730898+myztillx@users.noreply.github.com>
Date: Tue, 26 Dec 2023 23:21:57 -0500
Subject: [PATCH 1/7] Added Option for Grafana Alertmanager (#2498)
---------
Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
---
src/widgets/grafana/component.jsx | 20 ++++++++++++++------
src/widgets/grafana/widget.js | 3 +++
2 files changed, 17 insertions(+), 6 deletions(-)
diff --git a/src/widgets/grafana/component.jsx b/src/widgets/grafana/component.jsx
index 32d2a98e..ecedac8e 100755
--- a/src/widgets/grafana/component.jsx
+++ b/src/widgets/grafana/component.jsx
@@ -10,12 +10,23 @@ export default function Component({ service }) {
const { widget } = service;
const { data: statsData, error: statsError } = useWidgetAPI(widget, "stats");
const { data: alertsData, error: alertsError } = useWidgetAPI(widget, "alerts");
+ const { data: alertmanagerData, error: alertmanagerError } = useWidgetAPI(widget, "alertmanager");
- if (statsError || alertsError) {
+ let alertsInt = 0;
+
+ if (alertsError || !alertsData || alertsData.length === 0) {
+ if (alertmanagerData) {
+ alertsInt = alertmanagerData.length;
+ }
+ } else {
+ alertsInt = alertsData.filter((a) => a.state === "alerting").length;
+ }
+
+ if (statsError || (alertsError && alertmanagerError)) {
return ;
}
- if (!statsData || !alertsData) {
+ if (!statsData || (!alertsData && !alertmanagerData)) {
return (
@@ -31,10 +42,7 @@ export default function Component({ service }) {
- a.state === "alerting").length })}
- />
+
);
}
diff --git a/src/widgets/grafana/widget.js b/src/widgets/grafana/widget.js
index af3e56ea..2805555f 100755
--- a/src/widgets/grafana/widget.js
+++ b/src/widgets/grafana/widget.js
@@ -8,6 +8,9 @@ const widget = {
alerts: {
endpoint: "alerts",
},
+ alertmanager: {
+ endpoint: "alertmanager/grafana/api/v2/alerts",
+ },
stats: {
endpoint: "admin/stats",
validate: ["dashboards"],
From 32f28d32dd646d8c94067c719868a2a61ec6c17f Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
<41898282+github-actions[bot]@users.noreply.github.com>
Date: Tue, 26 Dec 2023 20:22:43 -0800
Subject: [PATCH 2/7] New Crowdin translations by GitHub Action (#2455)
Co-authored-by: Crowdin Bot
---
public/locales/af/common.json | 27 ++++--
public/locales/ar/common.json | 25 +++--
public/locales/bg/common.json | 31 ++++---
public/locales/ca/common.json | 25 +++--
public/locales/cs/common.json | 39 +++++---
public/locales/da/common.json | 27 ++++--
public/locales/de/common.json | 25 +++--
public/locales/el/common.json | 25 +++--
public/locales/eo/common.json | 27 ++++--
public/locales/es/common.json | 31 ++++---
public/locales/eu/common.json | 25 +++--
public/locales/fi/common.json | 25 +++--
public/locales/fr/common.json | 33 ++++---
public/locales/he/common.json | 25 +++--
public/locales/hi/common.json | 25 +++--
public/locales/hr/common.json | 27 ++++--
public/locales/hu/common.json | 131 ++++++++++++++------------
public/locales/id/common.json | 25 +++--
public/locales/it/common.json | 29 ++++--
public/locales/ja/common.json | 31 ++++---
public/locales/ko/common.json | 31 ++++---
public/locales/lv/common.json | 25 +++--
public/locales/ms/common.json | 25 +++--
public/locales/nl/common.json | 115 ++++++++++++-----------
public/locales/no/common.json | 25 +++--
public/locales/pl/common.json | 31 ++++---
public/locales/pt/common.json | 25 +++--
public/locales/pt_BR/common.json | 25 +++--
public/locales/ro/common.json | 31 ++++---
public/locales/ru/common.json | 31 ++++---
public/locales/sk/common.json | 143 +++++++++++++++--------------
public/locales/sl/common.json | 29 ++++--
public/locales/sr/common.json | 25 +++--
public/locales/sv/common.json | 25 +++--
public/locales/te/common.json | 25 +++--
public/locales/th/common.json | 25 +++--
public/locales/tr/common.json | 31 ++++---
public/locales/uk/common.json | 31 ++++---
public/locales/vi/common.json | 25 +++--
public/locales/yue/common.json | 31 ++++---
public/locales/zh-Hans/common.json | 31 ++++---
public/locales/zh-Hant/common.json | 31 ++++---
42 files changed, 926 insertions(+), 548 deletions(-)
diff --git a/public/locales/af/common.json b/public/locales/af/common.json
index a0674ec6..08ff379e 100644
--- a/public/locales/af/common.json
+++ b/public/locales/af/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Ontbrekende legstuk-tipe: {{type}}",
@@ -40,11 +46,7 @@
"load": "Las",
"temp": "TEMP",
"max": "Mak",
- "uptime": "OP",
- "months": "ma",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "OP"
},
"unifi": {
"users": "Gebruikers",
@@ -127,7 +129,7 @@
"connectionStatusUnconfigured": "Ongekonfigureer",
"connectionStatusConnecting": "Verbind",
"connectionStatusAuthenticating": "Stel geldigheid vas",
- "connectionStatusPendingDisconnect": "Pending Disconnect",
+ "connectionStatusPendingDisconnect": "Hangende Ontkoppel",
"connectionStatusDisconnecting": "Ontkoppel",
"connectionStatusDisconnected": "Ontkoppel",
"connectionStatusConnected": "Gekoppel",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Stelsellading",
"uptime": "Optyd",
- "alerts": "Waarskuwings",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Waarskuwings"
},
"pyload": {
"speed": "Spoed",
@@ -544,6 +545,14 @@
"inbox": "Inmandjie",
"total": "Totaal"
},
+ "peanut": {
+ "battery_charge": "Batterylading",
+ "ups_load": "SVE-lading",
+ "ups_status": "SVE Status",
+ "online": "Aanlyn",
+ "on_battery": "Op Battery",
+ "low_battery": "Battery Laag"
+ },
"nextdns": {
"wait": "Wag Asseblief",
"no_devices": "Geen Toesteldata Ontvang Nie"
diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json
index 2693eb86..fedb8251 100644
--- a/public/locales/ar/common.json
+++ b/public/locales/ar/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "ش",
+ "days": "ي",
+ "hours": "س",
+ "minutes": "د",
+ "seconds": "ث"
},
"widget": {
"missing_type": "نوع القطعة مفقود: {{type}}",
@@ -40,11 +46,7 @@
"load": "الضغط",
"temp": "مؤقت",
"max": "الحد الأقصى",
- "uptime": "تعمل",
- "months": "ش",
- "days": "ي",
- "hours": "س",
- "minutes": "د"
+ "uptime": "تعمل"
},
"unifi": {
"users": "المستخدمون",
@@ -517,8 +519,7 @@
"truenas": {
"load": "حمل النظام",
"uptime": "مدة التشغيل",
- "alerts": "تنبيهات",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "تنبيهات"
},
"pyload": {
"speed": "السرعة",
@@ -544,6 +545,14 @@
"inbox": "صندوق الوارد",
"total": "المجموع"
},
+ "peanut": {
+ "battery_charge": "شحن البطارية",
+ "ups_load": "حمل UPS",
+ "ups_status": "حالة UPS",
+ "online": "مُتّصل",
+ "on_battery": "على البطارية",
+ "low_battery": "البطارية منخفضة"
+ },
"nextdns": {
"wait": "الرجاء الإنتظار",
"no_devices": "لم يتم استلام بيانات الجهاز"
diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json
index a9114002..954bf616 100644
--- a/public/locales/bg/common.json
+++ b/public/locales/bg/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Липсваща приставка: {{type}}",
@@ -40,11 +46,7 @@
"load": "Натоварване",
"temp": "Температура",
"max": "Макс.",
- "uptime": "Онлайн",
- "months": "мес",
- "days": "д",
- "hours": "ч",
- "minutes": "мин"
+ "uptime": "Онлайн"
},
"unifi": {
"users": "Потребители",
@@ -401,8 +403,8 @@
"total": "Общо",
"free": "Свободни",
"used": "Заети",
- "days": "д",
- "hours": "ч",
+ "days": "d",
+ "hours": "h",
"crit": "Crit",
"read": "Read",
"write": "Write",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Предупреждения",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Предупреждения"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"total": "Общо"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Моля Изчакайте",
"no_devices": "No Device Data Received"
@@ -614,7 +623,7 @@
"down": "Sites Down",
"uptime": "Uptime",
"incident": "Incident",
- "m": "мин"
+ "m": "m"
},
"atsumeru": {
"series": "Series",
diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json
index 3a25fdd7..425f6c80 100644
--- a/public/locales/ca/common.json
+++ b/public/locales/ca/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Falta el tipus de widget: {{type}}",
@@ -40,11 +46,7 @@
"load": "Càrrega",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Usuaris",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Càrrega del sistema",
"uptime": "Temps actiu",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Velocitat",
@@ -544,6 +545,14 @@
"inbox": "Safata d'entrada",
"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"
+ },
"nextdns": {
"wait": "Espereu si us plau",
"no_devices": "No Device Data Received"
diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json
index 3a9e9afd..faab95bb 100644
--- a/public/locales/cs/common.json
+++ b/public/locales/cs/common.json
@@ -11,14 +11,20 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Chybí typ widgetu: {{type}}",
"api_error": "Chyba API",
"information": "Informace",
"status": "Stav",
- "url": "URL",
+ "url": "Odkaz",
"raw_error": "Nevyřešená chyba",
"response_data": "Data odezvy"
},
@@ -32,7 +38,7 @@
"placeholder": "Hledat…"
},
"resources": {
- "cpu": "CPU",
+ "cpu": "Procesor",
"mem": "RAM",
"total": "Celkem",
"free": "Volné",
@@ -40,11 +46,7 @@
"load": "Zatížení",
"temp": "TEPLOTA",
"max": "Max.",
- "uptime": "BĚŽÍ",
- "months": "měs.",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "BĚŽÍ"
},
"unifi": {
"users": "Uživatelé",
@@ -67,7 +69,7 @@
"rx": "RX",
"tx": "TX",
"mem": "RAM",
- "cpu": "CPU",
+ "cpu": "Procesor",
"running": "Běží",
"offline": "Offline",
"error": "Chyba",
@@ -386,12 +388,12 @@
},
"proxmox": {
"mem": "RAM",
- "cpu": "CPU",
+ "cpu": "Procesor",
"lxc": "LXC",
"vms": "Virtuální Stroje"
},
"glances": {
- "cpu": "CPU",
+ "cpu": "Procesor",
"load": "Zatížení",
"wait": "Počkejte prosím",
"temp": "TEPLOTA",
@@ -416,7 +418,7 @@
"search": "Hledat",
"custom": "Vlastní",
"visit": "Navštivte",
- "url": "URL"
+ "url": "Odkaz"
},
"wmo": {
"0-day": "Slunečno",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Zatížení systému",
"uptime": "Doba spuštění",
- "alerts": "Upozornění",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Upozornění"
},
"pyload": {
"speed": "Rychlost",
@@ -544,6 +545,14 @@
"inbox": "Doručená pošta",
"total": "Celkem"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Čekejte prosím",
"no_devices": "Žádná přijatá data zařízení"
@@ -600,7 +609,7 @@
"proxmoxbackupserver": {
"datastore_usage": "Datové úložiště",
"failed_tasks_24h": "Neúspěšné úlohy 24h",
- "cpu_usage": "CPU",
+ "cpu_usage": "Procesor",
"memory_usage": "Paměť"
},
"immich": {
diff --git a/public/locales/da/common.json b/public/locales/da/common.json
index ae59cf44..20127cca 100644
--- a/public/locales/da/common.json
+++ b/public/locales/da/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Manglende Widget Type: {{type}}",
@@ -40,11 +46,7 @@
"load": "Belastning",
"temp": "TEMP",
"max": "Maks",
- "uptime": "OP",
- "months": "mdr",
- "days": "d",
- "hours": "t",
- "minutes": "m"
+ "uptime": "OP"
},
"unifi": {
"users": "Brugere",
@@ -402,7 +404,7 @@
"free": "Fri",
"used": "Brugt",
"days": "d",
- "hours": "t",
+ "hours": "h",
"crit": "Crit",
"read": "Læst",
"write": "Skriv",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Systembelastning",
"uptime": "Oppetid",
- "alerts": "Advarsler",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Advarsler"
},
"pyload": {
"speed": "Hastighed",
@@ -544,6 +545,14 @@
"inbox": "Indbakke",
"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"
+ },
"nextdns": {
"wait": "Vent venligst",
"no_devices": "Ingen Enhedsdata Modtaget"
diff --git a/public/locales/de/common.json b/public/locales/de/common.json
index b068e4ef..feb6c25f 100644
--- a/public/locales/de/common.json
+++ b/public/locales/de/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "min",
+ "seconds": "s"
},
"widget": {
"missing_type": "Fehlender Widget-Typ: {{type}}",
@@ -40,11 +46,7 @@
"load": "Last",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "Mo.",
- "days": "d",
- "hours": "h",
- "minutes": "min"
+ "uptime": "UP"
},
"unifi": {
"users": "Benutzer",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Systemlast",
"uptime": "Betriebszeit",
- "alerts": "Warnungen",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Warnungen"
},
"pyload": {
"speed": "Datenrate",
@@ -544,6 +545,14 @@
"inbox": "Posteingang",
"total": "Gesamt"
},
+ "peanut": {
+ "battery_charge": "Akkuladung",
+ "ups_load": "USV-Auslastung",
+ "ups_status": "USV-Status",
+ "online": "Online",
+ "on_battery": "Im Akkubetrieb",
+ "low_battery": "Akkustand niedrig"
+ },
"nextdns": {
"wait": "Bitte warten",
"no_devices": "Keine Daten empfangen"
diff --git a/public/locales/el/common.json b/public/locales/el/common.json
index be283627..3f6802a4 100644
--- a/public/locales/el/common.json
+++ b/public/locales/el/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Λείπει ο τύπος widget: {{type}}",
@@ -40,11 +46,7 @@
"load": "Φόρτωση",
"temp": "ΘΕΡΜΟΚΡΑΣΪΑ",
"max": "Μέγιστο",
- "uptime": "ΠΑΝΩ",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "ΠΑΝΩ"
},
"unifi": {
"users": "Χρήστες",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Ειδοποιήσεις",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Ειδοποιήσεις"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"total": "Σύνολο"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Please Wait",
"no_devices": "No Device Data Received"
diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json
index 142e5df1..c55fefb2 100644
--- a/public/locales/eo/common.json
+++ b/public/locales/eo/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Manka Tipo de Fenestraĵo: {{type}}",
@@ -40,11 +46,7 @@
"load": "Ŝarĝo",
"temp": "TEMP",
"max": "Maks",
- "uptime": "UP",
- "months": "mo",
- "days": "t",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Uzantoj",
@@ -401,7 +403,7 @@
"total": "Totalo",
"free": "Libera",
"used": "Uzata",
- "days": "t",
+ "days": "d",
"hours": "h",
"crit": "Crit",
"read": "Read",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"total": "Totalo"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Please Wait",
"no_devices": "No Device Data Received"
diff --git a/public/locales/es/common.json b/public/locales/es/common.json
index a7d41ddc..bcf9ebea 100644
--- a/public/locales/es/common.json
+++ b/public/locales/es/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Falta el tipo de widget: {{type}}",
@@ -40,11 +46,7 @@
"load": "Carga",
"temp": "TEMP",
"max": "Máx.",
- "uptime": "ARRIBA",
- "months": "Meses",
- "days": "Días",
- "hours": "Horas",
- "minutes": "Minutos"
+ "uptime": "ARRIBA"
},
"unifi": {
"users": "Usuarios",
@@ -401,8 +403,8 @@
"total": "Total",
"free": "Libre",
"used": "Usado",
- "days": "Días",
- "hours": "Horas",
+ "days": "d",
+ "hours": "h",
"crit": "Crít.",
"read": "Leer",
"write": "Escribir",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Carga del sistema",
"uptime": "Tiempo de la actividad",
- "alerts": "Alertas",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alertas"
},
"pyload": {
"speed": "Velocidad",
@@ -544,6 +545,14 @@
"inbox": "Bandeja de entrada",
"total": "Total"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "En línea",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Espere por favor",
"no_devices": "No se reciben datos del dispositivo"
@@ -614,7 +623,7 @@
"down": "Páginas web inactivas",
"uptime": "Tiempo de la actividad",
"incident": "Incidencia",
- "m": "Minutos"
+ "m": "m"
},
"atsumeru": {
"series": "Serie",
diff --git a/public/locales/eu/common.json b/public/locales/eu/common.json
index f4b583e9..b8dfaa06 100644
--- a/public/locales/eu/common.json
+++ b/public/locales/eu/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Missing Widget Type: {{type}}",
@@ -40,11 +46,7 @@
"load": "Load",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Users",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"total": "Guztira"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Please Wait",
"no_devices": "No Device Data Received"
diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json
index b23fd6f5..7a987f9f 100644
--- a/public/locales/fi/common.json
+++ b/public/locales/fi/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Puuttuva härpäkkeen tyyppi: {{type}}",
@@ -40,11 +46,7 @@
"load": "Kuorma",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Users",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"total": "Yhteensä"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Odota, ole hyvä",
"no_devices": "No Device Data Received"
diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json
index f47d4008..b36e039a 100644
--- a/public/locales/fr/common.json
+++ b/public/locales/fr/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Widget manquant: {{type}}",
@@ -40,11 +46,7 @@
"load": "Charge",
"temp": "Temp",
"max": "Max",
- "uptime": "Up",
- "months": "m",
- "days": "j",
- "hours": "h",
- "minutes": "mn"
+ "uptime": "Up"
},
"unifi": {
"users": "Utilisateurs",
@@ -401,14 +403,14 @@
"total": "Total",
"free": "Libre",
"used": "Utilisé",
- "days": "j",
+ "days": "d",
"hours": "h",
"crit": "Crit.",
"read": "Lu",
"write": "Écrit.",
- "gpu": "gpu",
+ "gpu": "GPU",
"mem": "Mém.",
- "swap": "swap"
+ "swap": "Swap"
},
"quicklaunch": {
"bookmark": "Signet",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Charge Système",
"uptime": "Démarré depuis",
- "alerts": "Alertes",
- "time": "{{value, number(style: unitDisplay: long;)}}"
+ "alerts": "Alertes"
},
"pyload": {
"speed": "Débit",
@@ -544,6 +545,14 @@
"inbox": "Boîte de réception",
"total": "Total"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "En ligne",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Merci de patienter",
"no_devices": "Aucune donnée d'appareil reçue"
@@ -614,7 +623,7 @@
"down": "Hors ligne",
"uptime": "Démarré depuis",
"incident": "Incident",
- "m": "mn"
+ "m": "m"
},
"atsumeru": {
"series": "Séries TV",
diff --git a/public/locales/he/common.json b/public/locales/he/common.json
index 4f5f38dc..edac36af 100644
--- a/public/locales/he/common.json
+++ b/public/locales/he/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "סוג ווידג'ט חסר: {{type}}",
@@ -40,11 +46,7 @@
"load": "עומס",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Users",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"total": "סה\"כ"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Please Wait",
"no_devices": "No Device Data Received"
diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json
index b5b62d33..356c6749 100644
--- a/public/locales/hi/common.json
+++ b/public/locales/hi/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Missing Widget Type: {{type}}",
@@ -40,11 +46,7 @@
"load": "Load",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Users",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"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"
+ },
"nextdns": {
"wait": "Please Wait",
"no_devices": "No Device Data Received"
diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json
index cf2bf6e2..32e6255b 100644
--- a/public/locales/hr/common.json
+++ b/public/locales/hr/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Nedostajuća vrsta widgeta: {{type}}",
@@ -40,11 +46,7 @@
"load": "Opterećenje",
"temp": "TEMP",
"max": "Maks",
- "uptime": "UP",
- "months": "mj",
- "days": "d",
- "hours": "h",
- "minutes": "min"
+ "uptime": "UP"
},
"unifi": {
"users": "Korisnici",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Opterećenje sustava",
"uptime": "Radno vrijeme",
- "alerts": "Upozorenja",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Upozorenja"
},
"pyload": {
"speed": "Brzina",
@@ -544,6 +545,14 @@
"inbox": "Ulazni sandučić",
"total": "Ukupno"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Pričekaj",
"no_devices": "Podaci uređaja nisu primljeni"
@@ -614,7 +623,7 @@
"down": "Neaktivne stranice",
"uptime": "Radno vrijeme",
"incident": "Slučaj",
- "m": "min"
+ "m": "m"
},
"atsumeru": {
"series": "Serije",
diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json
index f130370d..60dee22f 100644
--- a/public/locales/hu/common.json
+++ b/public/locales/hu/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Hiányzó Widget Típus: {{type}}",
@@ -40,11 +46,7 @@
"load": "Terhelés",
"temp": "TEMP",
"max": "Max",
- "uptime": "FUT",
- "months": "hó",
- "days": "n",
- "hours": "ó",
- "minutes": "p"
+ "uptime": "FUT"
},
"unifi": {
"users": "Felhasználók",
@@ -82,17 +84,17 @@
"ping": {
"error": "Hiba",
"ping": "Ping",
- "down": "Down",
- "up": "Up",
- "not_available": "Not Available"
+ "down": "Le",
+ "up": "Fel",
+ "not_available": "Nem elérhető"
},
"siteMonitor": {
- "http_status": "HTTP status",
+ "http_status": "HTTP állapot",
"error": "Hiba",
- "response": "Response",
- "down": "Down",
- "up": "Up",
- "not_available": "Not Available"
+ "response": "Válasz",
+ "down": "Le",
+ "up": "Fel",
+ "not_available": "Nem elérhető"
},
"emby": {
"playing": "Lejátszás",
@@ -124,21 +126,21 @@
},
"fritzbox": {
"connectionStatus": "Státusz",
- "connectionStatusUnconfigured": "Unconfigured",
- "connectionStatusConnecting": "Connecting",
- "connectionStatusAuthenticating": "Authenticating",
- "connectionStatusPendingDisconnect": "Pending Disconnect",
- "connectionStatusDisconnecting": "Disconnecting",
- "connectionStatusDisconnected": "Disconnected",
+ "connectionStatusUnconfigured": "Nem beállított",
+ "connectionStatusConnecting": "Kapcsolódás",
+ "connectionStatusAuthenticating": "Hitelesítés",
+ "connectionStatusPendingDisconnect": "Szétkapcsolás függőben",
+ "connectionStatusDisconnecting": "Kapcsolat bontása",
+ "connectionStatusDisconnected": "Kapcsolat bontva",
"connectionStatusConnected": "Csatlakoztatott",
"uptime": "Üzemidő",
"maxDown": "Max. Down",
"maxUp": "Max. Up",
- "down": "Down",
- "up": "Up",
- "received": "Received",
- "sent": "Sent",
- "externalIPAddress": "Ext. IP"
+ "down": "Le",
+ "up": "Fel",
+ "received": "Fogadott",
+ "sent": "Küldött",
+ "externalIPAddress": "Külső IP cím"
},
"caddy": {
"upstreams": "Upstreamek",
@@ -372,7 +374,7 @@
"players": "Lejátszók",
"version": "Verzió",
"status": "Státusz",
- "up": "Online",
+ "up": "Csatlakozva",
"down": "Offline"
},
"miniflux": {
@@ -395,19 +397,19 @@
"load": "Terhelés",
"wait": "Kérjük várjon",
"temp": "TEMP",
- "_temp": "Temp",
+ "_temp": "Hőmérséklet",
"warn": "Figyelmeztet",
"uptime": "FUT",
"total": "Összes",
"free": "Szabad",
"used": "Használt",
- "days": "n",
- "hours": "ó",
+ "days": "d",
+ "hours": "h",
"crit": "Crit",
"read": "Olvasott",
- "write": "Write",
+ "write": "Írás",
"gpu": "GPU",
- "mem": "Mem",
+ "mem": "Memória",
"swap": "Swap"
},
"quicklaunch": {
@@ -483,13 +485,13 @@
"up_to_date": "Naprakész",
"child_bridges": "Gyerek Hidak",
"child_bridges_status": "{{ok}}/{{total}}",
- "up": "Up",
+ "up": "Fel",
"pending": "Függőben",
- "down": "Down"
+ "down": "Le"
},
"healthchecks": {
"new": "Új",
- "up": "Online",
+ "up": "Csatlakozva",
"grace": "Türelmi idő alatt",
"down": "Offline",
"paused": "Szünetel",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Rendszerterheltség",
"uptime": "Üzemidő",
- "alerts": "Riasztások",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Riasztások"
},
"pyload": {
"speed": "Sebesség",
@@ -544,6 +545,14 @@
"inbox": "Beérkezett",
"total": "Összes"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Csatlakozva",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Kérjük Várjon",
"no_devices": "Nincs fogadott eszközadat"
@@ -591,9 +600,9 @@
"load": "Átlagos terhelés",
"memory": "RAM Használat",
"wanStatus": "WAN Állapot",
- "up": "Up",
- "down": "Down",
- "temp": "Temp",
+ "up": "Fel",
+ "down": "Le",
+ "temp": "Hőmérséklet",
"disk": "Lemezhasználat",
"wanIP": "WAN IP"
},
@@ -614,7 +623,7 @@
"down": "Nem Elérhető Webhelyek",
"uptime": "Üzemidő",
"incident": "Incidens",
- "m": "p"
+ "m": "m"
},
"atsumeru": {
"series": "Sorozat",
@@ -725,40 +734,40 @@
"status": "Státusz",
"buildId": "Build ID",
"succeeded": "Succeeded",
- "notStarted": "Not Started",
+ "notStarted": "Nem indult",
"failed": "Sikertelen",
- "canceled": "Canceled",
- "inProgress": "In Progress",
+ "canceled": "Megszakítva",
+ "inProgress": "Folyamatban",
"totalPrs": "Total PRs",
"myPrs": "My PRs",
"approved": "Engedélyezett"
},
"gamedig": {
"status": "Státusz",
- "online": "Online",
+ "online": "Csatlakozva",
"offline": "Offline",
- "name": "Name",
- "map": "Map",
- "currentPlayers": "Current players",
+ "name": "Név",
+ "map": "Térkép",
+ "currentPlayers": "Jelenlegi játékosok",
"players": "Lejátszók",
- "maxPlayers": "Max players",
- "bots": "Bots",
+ "maxPlayers": "Max. játékosok",
+ "bots": "Botok",
"ping": "Ping"
},
"urbackup": {
- "ok": "Ok",
- "errored": "Errors",
- "noRecent": "Out of Date",
- "totalUsed": "Used Storage"
+ "ok": "OK",
+ "errored": "Hibák",
+ "noRecent": "Elavult",
+ "totalUsed": "Felhasznált tárhely"
},
"mealie": {
- "recipes": "Recipes",
+ "recipes": "Receptek",
"users": "Felhasználók",
"categories": "Categories",
- "tags": "Tags"
+ "tags": "Címkék"
},
"openmediavault": {
- "downloading": "Downloading",
+ "downloading": "Letöltés folyamatban",
"total": "Összes",
"running": "Futó",
"stopped": "Megállított",
@@ -774,16 +783,16 @@
"sitesDown": "Nem Elérhető Webhelyek",
"paused": "Szünetel",
"notyetchecked": "Not Yet Checked",
- "up": "Up",
+ "up": "Fel",
"seemsdown": "Seems Down",
- "down": "Down",
+ "down": "Le",
"unknown": "Ismeretlen"
},
"calendar": {
"inCinemas": "In cinemas",
"physicalRelease": "Physical release",
- "digitalRelease": "Digital release",
- "noEventsToday": "No events for today!",
- "noEventsFound": "No events found"
+ "digitalRelease": "Digitális kiadás",
+ "noEventsToday": "Ezen a napon nincsenek események!",
+ "noEventsFound": "Nem található esemény"
}
}
diff --git a/public/locales/id/common.json b/public/locales/id/common.json
index 0481053a..09934533 100644
--- a/public/locales/id/common.json
+++ b/public/locales/id/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Missing Widget Type: {{type}}",
@@ -40,11 +46,7 @@
"load": "Load",
"temp": "TEMP",
"max": "Maks",
- "uptime": "UP",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Users",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"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"
+ },
"nextdns": {
"wait": "Please Wait",
"no_devices": "No Device Data Received"
diff --git a/public/locales/it/common.json b/public/locales/it/common.json
index 9b5c9c32..c72565c9 100644
--- a/public/locales/it/common.json
+++ b/public/locales/it/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Tipo del Widget Mancante: {{type}}",
@@ -40,11 +46,7 @@
"load": "Carico",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "me",
- "days": "g",
- "hours": "o",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Utenti",
@@ -401,8 +403,8 @@
"total": "Totale",
"free": "Libero",
"used": "In utilizzo",
- "days": "g",
- "hours": "o",
+ "days": "d",
+ "hours": "h",
"crit": "Critico",
"read": "Letti",
"write": "Scrittura",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Carico di Sistema",
"uptime": "Tempo di attività",
- "alerts": "Allarmi",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Allarmi"
},
"pyload": {
"speed": "Velocità",
@@ -544,6 +545,14 @@
"inbox": "In arrivo",
"total": "Totale"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Attendere prego",
"no_devices": "Nessun dato del dispositivo ricevuto"
diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json
index 719b5958..d98a4c55 100644
--- a/public/locales/ja/common.json
+++ b/public/locales/ja/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "見つからないウィジェットタイプ: {{type}}",
@@ -40,11 +46,7 @@
"load": "ロード",
"temp": "温度",
"max": "最大",
- "uptime": "上へ",
- "months": "月",
- "days": "日",
- "hours": "時間",
- "minutes": "分"
+ "uptime": "上へ"
},
"unifi": {
"users": "ユーザ",
@@ -401,8 +403,8 @@
"total": "合計",
"free": "空き",
"used": "使用",
- "days": "日",
- "hours": "時間",
+ "days": "d",
+ "hours": "h",
"crit": "クリティカル",
"read": "既読",
"write": "書き込み",
@@ -517,8 +519,7 @@
"truenas": {
"load": "システム負荷",
"uptime": "稼働時間",
- "alerts": "アラート",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "アラート"
},
"pyload": {
"speed": "スピード",
@@ -544,6 +545,14 @@
"inbox": "受信トレイ",
"total": "合計"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "オンライン",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "お待ちください",
"no_devices": "デバイス データを受信していません"
@@ -614,7 +623,7 @@
"down": "サイトDown",
"uptime": "稼働時間",
"incident": "インシデント",
- "m": "分"
+ "m": "m"
},
"atsumeru": {
"series": "シリーズ",
diff --git a/public/locales/ko/common.json b/public/locales/ko/common.json
index 96029afc..2b857463 100644
--- a/public/locales/ko/common.json
+++ b/public/locales/ko/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Missing Widget Type: {{type}}",
@@ -40,11 +46,7 @@
"load": "부하",
"temp": "온도",
"max": "최대",
- "uptime": "가동",
- "months": "달",
- "days": "일",
- "hours": "시간",
- "minutes": "분"
+ "uptime": "가동"
},
"unifi": {
"users": "사용자",
@@ -401,8 +403,8 @@
"total": "총합",
"free": "남음",
"used": "사용",
- "days": "일",
- "hours": "시간",
+ "days": "d",
+ "hours": "h",
"crit": "Crit",
"read": "Read",
"write": "Write",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "경고",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "경고"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"total": "총합"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "잠시만 기다리세요",
"no_devices": "No Device Data Received"
@@ -614,7 +623,7 @@
"down": "Sites Down",
"uptime": "Uptime",
"incident": "Incident",
- "m": "분"
+ "m": "m"
},
"atsumeru": {
"series": "시리즈",
diff --git a/public/locales/lv/common.json b/public/locales/lv/common.json
index e7e92b87..8a3cba64 100644
--- a/public/locales/lv/common.json
+++ b/public/locales/lv/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Iztrūkst logrīka tips: {{type}}",
@@ -40,11 +46,7 @@
"load": "Ielādē",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Lietotāji",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Paziņojumi",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Paziņojumi"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"total": "Kopā"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Please Wait",
"no_devices": "No Device Data Received"
diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json
index 488b7ec3..052705b7 100644
--- a/public/locales/ms/common.json
+++ b/public/locales/ms/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Jenis Widget Hilang: {{type}}",
@@ -40,11 +46,7 @@
"load": "Beban",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Pengguna",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Beban Sistem",
"uptime": "Masa Hidup",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Kelajuan",
@@ -544,6 +545,14 @@
"inbox": "Peti Masuk",
"total": "Jumlah"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Sila tunggu",
"no_devices": "No Device Data Received"
diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json
index 4f54da1f..2c1ddd44 100644
--- a/public/locales/nl/common.json
+++ b/public/locales/nl/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mnd",
+ "days": "d",
+ "hours": "u",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Ontbrekende Widget Type: {{type}}",
@@ -40,11 +46,7 @@
"load": "Belasting",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "ma",
- "days": "d",
- "hours": "u",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Gebruikers",
@@ -68,7 +70,7 @@
"tx": "TX",
"mem": "GEH",
"cpu": "CPU",
- "running": "Lopend",
+ "running": "Wordt uitgevoerd",
"offline": "Onbereikbaar",
"error": "Fout",
"unknown": "Onbekend",
@@ -76,7 +78,7 @@
"starting": "Starten",
"unhealthy": "Ongezond",
"not_found": "Niet Gevonden",
- "exited": "Verlaten",
+ "exited": "Gestopt",
"partial": "Gedeeltelijk"
},
"ping": {
@@ -97,20 +99,20 @@
"emby": {
"playing": "Afspelen",
"transcoding": "Transcodering",
- "bitrate": "Bitsnelheid",
+ "bitrate": "Bitrate",
"no_active": "Geen Actieve Streams",
"movies": "Films",
"series": "Series",
"episodes": "Afleveringen",
- "songs": "Liedjes"
+ "songs": "Nummers"
},
"evcc": {
"pv_power": "Productie",
"battery_soc": "Batterij",
- "grid_power": "Rooster",
+ "grid_power": "Netstroom",
"home_power": "Consumptie",
"charge_power": "Oplader",
- "watt_hour": "Wu"
+ "watt_hour": "Wh"
},
"flood": {
"download": "Download",
@@ -127,13 +129,13 @@
"connectionStatusUnconfigured": "Niet-geconfigureerd",
"connectionStatusConnecting": "Bezig met verbinden",
"connectionStatusAuthenticating": "Verificatie",
- "connectionStatusPendingDisconnect": "Pending Disconnect",
- "connectionStatusDisconnecting": "Verbinding verbreken...",
+ "connectionStatusPendingDisconnect": "In afwachting van loskoppelen",
+ "connectionStatusDisconnecting": "Verbinding verbreken",
"connectionStatusDisconnected": "Verbinding verbroken",
"connectionStatusConnected": "Verbonden",
"uptime": "Online",
- "maxDown": "Max. Omlaag",
- "maxUp": "Max. omhoog",
+ "maxDown": "Max. Download",
+ "maxUp": "Max. Upload",
"down": "Offline",
"up": "Online",
"received": "Ontvangen",
@@ -150,7 +152,7 @@
"diffsDetected": "Verschillen Gedetecteerd"
},
"channelsdvrserver": {
- "shows": "Voorstellingen",
+ "shows": "Shows",
"recordings": "Opnames",
"scheduled": "Gepland",
"passes": "Gepasseerd"
@@ -158,7 +160,7 @@
"tautulli": {
"playing": "Afspelen",
"transcoding": "Transcodering",
- "bitrate": "Bitsnelheid",
+ "bitrate": "Bitrate",
"no_active": "Geen Actieve Streams",
"plex_connection_error": "Controleer Plex Connectie"
},
@@ -170,7 +172,7 @@
"connectedSwitches": "Verbonden switches"
},
"nzbget": {
- "rate": "Beoordeling",
+ "rate": "Rate",
"remaining": "Resterend",
"downloaded": "Gedownload"
},
@@ -181,9 +183,9 @@
"tv": "TV Series"
},
"sabnzbd": {
- "rate": "Beoordeling",
+ "rate": "Rate",
"queue": "Wachtrij",
- "timeleft": "Tijd Over"
+ "timeleft": "Resterende Tijd"
},
"rutorrent": {
"active": "Actief",
@@ -274,16 +276,16 @@
"down_alerts": "Geen verbinding"
},
"pihole": {
- "queries": "Query 's",
+ "queries": "Verzoeken",
"blocked": "Geblokkeerd",
- "blocked_percent": "Geblokkerde %",
- "gravity": "Gewicht"
+ "blocked_percent": "Geblokkeerde %",
+ "gravity": "Gravity"
},
"adguard": {
- "queries": "Query 's",
+ "queries": "Verzoeken",
"blocked": "Geblokkeerd",
- "filtered": "Gefilterde",
- "latency": "Vertraging"
+ "filtered": "Gefilterd",
+ "latency": "Latentie"
},
"speedtest": {
"upload": "Upload",
@@ -291,7 +293,7 @@
"ping": "Ping"
},
"portainer": {
- "running": "Lopend",
+ "running": "Wordt uitgevoerd",
"stopped": "Gestopt",
"total": "Totaal"
},
@@ -330,7 +332,7 @@
"total": "Totaal"
},
"coinmarketcap": {
- "configure": "Configureer een of meer crypto eenheiden om bij te houden",
+ "configure": "Configureer een of meer crypto eenheden om bij te houden",
"1hour": "1 Uur",
"1day": "1 Dag",
"7days": "7 Dagen",
@@ -343,10 +345,10 @@
},
"prowlarr": {
"enableIndexers": "Indexeerders",
- "numberOfGrabs": "Resultaten",
- "numberOfQueries": "Query 's",
+ "numberOfGrabs": "Grabs",
+ "numberOfQueries": "Verzoeken",
"numberOfFailGrabs": "Ophalen mislukt",
- "numberOfFailQueries": "Mislukte query's"
+ "numberOfFailQueries": "Mislukte verzoeken"
},
"jackett": {
"configured": "Geconfigureerd",
@@ -354,9 +356,9 @@
},
"strelaysrv": {
"numActiveSessions": "Sessies",
- "numConnections": "Connecties",
+ "numConnections": "Verbindingen",
"dataRelayed": "Omgeleid",
- "transferRate": "Beoordeling"
+ "transferRate": "Rate"
},
"mastodon": {
"user_count": "Gebruikers",
@@ -382,7 +384,7 @@
"authentik": {
"users": "Gebruikers",
"loginsLast24H": "Logins (24u)",
- "failedLoginsLast24H": "Gefaalde Logins (24u)"
+ "failedLoginsLast24H": "Mislukte Logins (24u)"
},
"proxmox": {
"mem": "GEH",
@@ -396,19 +398,19 @@
"wait": "Even geduld",
"temp": "TEMP",
"_temp": "Temp",
- "warn": "Alert",
+ "warn": "Waarschuwing",
"uptime": "UP",
"total": "Totaal",
"free": "Vrij",
"used": "Gebruikt",
"days": "d",
"hours": "u",
- "crit": "Crit",
+ "crit": "Kritiek",
"read": "Gelezen",
"write": "Schrijven",
"gpu": "GPU",
- "mem": "Geh",
- "swap": "Wissel"
+ "mem": "Mem",
+ "swap": "Swap"
},
"quicklaunch": {
"bookmark": "Bladwijzer",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Belasting",
"uptime": "Online",
- "alerts": "Meldingen",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Meldingen"
},
"pyload": {
"speed": "Snelheid",
@@ -536,7 +537,7 @@
"hd": "HD"
},
"scrutiny": {
- "passed": "Gepasseerd",
+ "passed": "Geslaagd",
"failed": "Gefaald",
"unknown": "Onbekend"
},
@@ -544,6 +545,14 @@
"inbox": "Postvak In",
"total": "Totaal"
},
+ "peanut": {
+ "battery_charge": "Batterij opladen",
+ "ups_load": "UPS-belasting",
+ "ups_status": "UPS status",
+ "online": "Bereikbaar",
+ "on_battery": "Op batterij",
+ "low_battery": "Batterij bijna leeg"
+ },
"nextdns": {
"wait": "Even geduld aub",
"no_devices": "Geen Apparaat Data Ontvangen"
@@ -569,7 +578,7 @@
"cpu": "CPU Belasting",
"memory": "Actief Geheugen",
"wanUpload": "WAN Upload",
- "wanDownload": "WAN download"
+ "wanDownload": "WAN Download"
},
"moonraker": {
"printer_state": "Printer Status",
@@ -584,12 +593,12 @@
"job_completion": "Voltooiing"
},
"cloudflared": {
- "origin_ip": "Oorspronkelijk IP",
+ "origin_ip": "Bron IP",
"status": "Status"
},
"pfsense": {
- "load": "Load Gem",
- "memory": "Geh Gebruik",
+ "load": "Gem. Load",
+ "memory": "Mem Gebruik",
"wanStatus": "WAN Status",
"up": "Online",
"down": "Offline",
@@ -650,10 +659,10 @@
"time": "Tijd"
},
"grafana": {
- "dashboards": "Overzichten",
+ "dashboards": "Dashboards",
"datasources": "Data Bronnen",
"totalalerts": "Totaal Alerts",
- "alertstriggered": "Getriggerde meldingen"
+ "alertstriggered": "Getriggerde Alerts"
},
"nextcloud": {
"cpuload": "Cpu Belasting",
@@ -698,10 +707,10 @@
"homeassistant": {
"people_home": "Mensen thuis",
"lights_on": "Lichten aan",
- "switches_on": "Switches aan"
+ "switches_on": "Schakelaars aan"
},
"whatsupdocker": {
- "monitoring": "Observeren",
+ "monitoring": "Monitoren",
"updates": "Updates"
},
"calibreweb": {
@@ -760,9 +769,9 @@
"openmediavault": {
"downloading": "Downloaden",
"total": "Totaal",
- "running": "Lopend",
+ "running": "Wordt uitgevoerd",
"stopped": "Gestopt",
- "passed": "Gepasseerd",
+ "passed": "Geslaagd",
"failed": "Gefaald"
},
"uptimerobot": {
@@ -780,7 +789,7 @@
"unknown": "Onbekend"
},
"calendar": {
- "inCinemas": "In bioscopen",
+ "inCinemas": "In de bioscoop",
"physicalRelease": "Fysieke versie",
"digitalRelease": "Digitale versie",
"noEventsToday": "Geen gebeurtenissen voor vandaag!",
diff --git a/public/locales/no/common.json b/public/locales/no/common.json
index b5b62d33..356c6749 100644
--- a/public/locales/no/common.json
+++ b/public/locales/no/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Missing Widget Type: {{type}}",
@@ -40,11 +46,7 @@
"load": "Load",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Users",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"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"
+ },
"nextdns": {
"wait": "Please Wait",
"no_devices": "No Device Data Received"
diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json
index 1fd55806..663078c0 100644
--- a/public/locales/pl/common.json
+++ b/public/locales/pl/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Brakujący typ widżetu: {{type}}",
@@ -40,11 +46,7 @@
"load": "Obciążenie",
"temp": "TEMP.",
"max": "Maks",
- "uptime": "CZAS",
- "months": "miesiąc",
- "days": "dni",
- "hours": "godz",
- "minutes": "min"
+ "uptime": "CZAS"
},
"unifi": {
"users": "Użytkownicy",
@@ -401,8 +403,8 @@
"total": "Całkowite",
"free": "Wolne",
"used": "Użyte",
- "days": "dni",
- "hours": "godz",
+ "days": "d",
+ "hours": "h",
"crit": "Crit",
"read": "Przeczytane",
"write": "Zapis",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Obciążenie systemu",
"uptime": "Czas działania",
- "alerts": "Alarmy",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alarmy"
},
"pyload": {
"speed": "Prędkość",
@@ -544,6 +545,14 @@
"inbox": "Skrzynka odbiorcza",
"total": "Całkowite"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Dostępny",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Proszę czekać",
"no_devices": "Nie otrzymano danych urządzenia"
@@ -614,7 +623,7 @@
"down": "Niedziałające strony",
"uptime": "Czas działania",
"incident": "Incydent",
- "m": "min"
+ "m": "m"
},
"atsumeru": {
"series": "Seriale",
diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json
index 0a22f2e0..fcedb7cf 100644
--- a/public/locales/pt/common.json
+++ b/public/locales/pt/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Tipo de Widget ausente: {{type}}",
@@ -40,11 +46,7 @@
"load": "Carga",
"temp": "TEMP",
"max": "Máximo",
- "uptime": "CIMA",
- "months": "mês",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "CIMA"
},
"unifi": {
"users": "Utilizadores",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Carga do sistema",
"uptime": "Ligado",
- "alerts": "Alertas",
- "time": "{{value, number(estilo: unidade; unitDisplay: long;)}}"
+ "alerts": "Alertas"
},
"pyload": {
"speed": "Velocidade",
@@ -544,6 +545,14 @@
"inbox": "Caixa de entrada",
"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"
+ },
"nextdns": {
"wait": "Por favor aguarde",
"no_devices": "Nenhum dado do dispositivo recebido"
diff --git a/public/locales/pt_BR/common.json b/public/locales/pt_BR/common.json
index d4d0ce55..599eee13 100644
--- a/public/locales/pt_BR/common.json
+++ b/public/locales/pt_BR/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Tipo de Widget ausente: {{type}}",
@@ -40,11 +46,7 @@
"load": "Carga",
"temp": "TEMP",
"max": "Máximo",
- "uptime": "CIMA",
- "months": "mês",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "CIMA"
},
"unifi": {
"users": "Utilizadores",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Carga do sistema",
"uptime": "Ligado",
- "alerts": "Alertas",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alertas"
},
"pyload": {
"speed": "Velocidade",
@@ -544,6 +545,14 @@
"inbox": "Caixa de entrada",
"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"
+ },
"nextdns": {
"wait": "Por favor aguarde",
"no_devices": "Nenhum dado do dispositivo recebido"
diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json
index 99e9f924..cd8ef637 100644
--- a/public/locales/ro/common.json
+++ b/public/locales/ro/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Lipsește Tipul de Widget: {{type}}",
@@ -40,11 +46,7 @@
"load": "Sarcină",
"temp": "TEMP",
"max": "Maxim",
- "uptime": "UP",
- "months": "lună",
- "days": "zi",
- "hours": "ora",
- "minutes": "min"
+ "uptime": "UP"
},
"unifi": {
"users": "Utilizatori",
@@ -401,8 +403,8 @@
"total": "Total",
"free": "Disponibili",
"used": "Utilizați",
- "days": "zi",
- "hours": "ora",
+ "days": "d",
+ "hours": "h",
"crit": "Crit",
"read": "Read",
"write": "Write",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"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"
+ },
"nextdns": {
"wait": "Please Wait",
"no_devices": "No Device Data Received"
@@ -614,7 +623,7 @@
"down": "Sites Down",
"uptime": "Uptime",
"incident": "Incident",
- "m": "min"
+ "m": "m"
},
"atsumeru": {
"series": "Serie",
diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json
index 7135e85e..1366847b 100644
--- a/public/locales/ru/common.json
+++ b/public/locales/ru/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Отсутствует тип виджета: {{type}}",
@@ -40,11 +46,7 @@
"load": "Загрузка",
"temp": "Температура",
"max": "Максимально",
- "uptime": "Онлайн",
- "months": "мес",
- "days": "д",
- "hours": "ч",
- "minutes": "м"
+ "uptime": "Онлайн"
},
"unifi": {
"users": "Пользователи",
@@ -401,8 +403,8 @@
"total": "Всего",
"free": "Свободно",
"used": "Использовано",
- "days": "д",
- "hours": "ч",
+ "days": "d",
+ "hours": "h",
"crit": "Крит",
"read": "Прочитано",
"write": "Запись",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Нагрузка системы",
"uptime": "Время работы",
- "alerts": "Предупреждения",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Предупреждения"
},
"pyload": {
"speed": "Скорость",
@@ -544,6 +545,14 @@
"inbox": "Входящие",
"total": "Всего"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "В сети",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Пожалуйста, подождите",
"no_devices": "Данные устройства не получены"
@@ -614,7 +623,7 @@
"down": "Неактивные сайты",
"uptime": "Время работы",
"incident": "Происшествия",
- "m": "м"
+ "m": "m"
},
"atsumeru": {
"series": "Серии",
diff --git a/public/locales/sk/common.json b/public/locales/sk/common.json
index 2364693e..6d0f87ef 100644
--- a/public/locales/sk/common.json
+++ b/public/locales/sk/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{value, date}"
+ "date": "{value, date}",
+ "uptime": "{{value, čas prevádzky}}",
+ "months": "mes",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Chýba typ widgetu: {{type}}",
@@ -32,7 +38,7 @@
"placeholder": "Hľadať…"
},
"resources": {
- "cpu": "Procesor",
+ "cpu": "CPU",
"mem": "RAM",
"total": "Celkovo",
"free": "Voľné",
@@ -40,24 +46,20 @@
"load": "Záťaž",
"temp": "TEPLOTA",
"max": "Max.",
- "uptime": "BEŽÍ",
- "months": "mes.",
- "days": "d",
- "hours": "h",
- "minutes": "min"
+ "uptime": "BEŽÍ"
},
"unifi": {
"users": "Používatelia",
- "uptime": "Doba prevádzky",
- "days": "Dní",
+ "uptime": "Prevádzka",
+ "days": "dní",
"wan": "WAN",
"lan": "Lokálna sieť",
- "wlan": "Bezdrôtová sieť",
+ "wlan": "WLAN",
"devices": "Zariadenia",
"lan_devices": "Zariadenia LAN",
"wlan_devices": "Zariadenia WLAN",
- "lan_users": "Používatelia LAN",
- "wlan_users": "Používatelia WLAN",
+ "lan_users": "Použ. LAN",
+ "wlan_users": "Použ. WLAN",
"up": "BEŽÍ",
"down": "NEBEŽÍ",
"wait": "Počkajte prosím",
@@ -67,7 +69,7 @@
"rx": "RX",
"tx": "TX",
"mem": "RAM",
- "cpu": "Procesor",
+ "cpu": "CPU",
"running": "Beží",
"offline": "Nedostupný",
"error": "Chyba",
@@ -114,9 +116,9 @@
},
"flood": {
"download": "Sťahovanie",
- "upload": "Odosielanie",
- "leech": "Leechovanie",
- "seed": "Seedovanie"
+ "upload": "Nahrávanie",
+ "leech": "Leechované",
+ "seed": "Seedované"
},
"freshrss": {
"subscriptions": "Odbery",
@@ -124,20 +126,20 @@
},
"fritzbox": {
"connectionStatus": "Stav",
- "connectionStatusUnconfigured": "Unconfigured",
- "connectionStatusConnecting": "Connecting",
- "connectionStatusAuthenticating": "Authenticating",
- "connectionStatusPendingDisconnect": "Pending Disconnect",
- "connectionStatusDisconnecting": "Disconnecting",
- "connectionStatusDisconnected": "Disconnected",
+ "connectionStatusUnconfigured": "Nenastavený",
+ "connectionStatusConnecting": "Pripájanie",
+ "connectionStatusAuthenticating": "Overovanie",
+ "connectionStatusPendingDisconnect": "Čakám na odpojenie",
+ "connectionStatusDisconnecting": "Odpájanie",
+ "connectionStatusDisconnected": "Odpojené",
"connectionStatusConnected": "Pripojené",
- "uptime": "Doba prevádzky",
+ "uptime": "Prevádzka",
"maxDown": "Max. Down",
"maxUp": "Max. Up",
"down": "Sťahovanie",
"up": "Nahrávanie",
- "received": "Received",
- "sent": "Sent",
+ "received": "Prijaté",
+ "sent": "Odoslané",
"externalIPAddress": "Ext. IP"
},
"caddy": {
@@ -187,23 +189,23 @@
},
"rutorrent": {
"active": "Aktívne",
- "upload": "Odosielanie",
+ "upload": "Nahrávanie",
"download": "Sťahovanie"
},
"transmission": {
"download": "Sťahovanie",
- "upload": "Odosielanie",
- "leech": "Leechovanie",
- "seed": "Seedovanie"
+ "upload": "Nahrávanie",
+ "leech": "Leechované",
+ "seed": "Seedované"
},
"qbittorrent": {
"download": "Sťahovanie",
- "upload": "Odosielanie",
- "leech": "Leechovanie",
- "seed": "Seedovanie"
+ "upload": "Nahrávanie",
+ "leech": "Leechované",
+ "seed": "Seedované"
},
"qnap": {
- "cpuUsage": "Využitie procesora",
+ "cpuUsage": "Využitie CPU",
"memUsage": "Využitie pamäte",
"systemTempC": "Teplota systému",
"poolUsage": "Využitie zväzku",
@@ -212,15 +214,15 @@
},
"deluge": {
"download": "Sťahovanie",
- "upload": "Odosielanie",
- "leech": "Leechovanie",
- "seed": "Seedovanie"
+ "upload": "Nahrávanie",
+ "leech": "Leechované",
+ "seed": "Seedované"
},
"downloadstation": {
"download": "Sťahovanie",
- "upload": "Odosielanie",
- "leech": "Leechovanie",
- "seed": "Seedovanie"
+ "upload": "Nahrávanie",
+ "leech": "Leechované",
+ "seed": "Seedované"
},
"sonarr": {
"wanted": "Žiadané",
@@ -276,8 +278,8 @@
"pihole": {
"queries": "Dopyty",
"blocked": "Zablokované",
- "blocked_percent": "Blokované %",
- "gravity": "Gravitácia"
+ "blocked_percent": "Blokované",
+ "gravity": "Gravity"
},
"adguard": {
"queries": "Dopyty",
@@ -286,7 +288,7 @@
"latency": "Odozva"
},
"speedtest": {
- "upload": "Odosielanie",
+ "upload": "Nahrávanie",
"download": "Sťahovanie",
"ping": "Odozva"
},
@@ -342,10 +344,10 @@
"messages": "Správy"
},
"prowlarr": {
- "enableIndexers": "Indexéry",
- "numberOfGrabs": "Počet zachytení",
+ "enableIndexers": "Indexery",
+ "numberOfGrabs": "Zachytení",
"numberOfQueries": "Dopyty",
- "numberOfFailGrabs": "Počet neúspešných zachytení",
+ "numberOfFailGrabs": "Neúspešné zachytenia",
"numberOfFailQueries": "Neúspešné dopyty"
},
"jackett": {
@@ -381,17 +383,17 @@
},
"authentik": {
"users": "Používatelia",
- "loginsLast24H": "Prihlásenia (24 hod.)",
- "failedLoginsLast24H": "Neúspešné prihlásenia (24 hod.)"
+ "loginsLast24H": "Prihlás. (24 hod.)",
+ "failedLoginsLast24H": "Neúspešné prihlás. (24 hod.)"
},
"proxmox": {
"mem": "RAM",
- "cpu": "Procesor",
+ "cpu": "CPU",
"lxc": "LXC",
"vms": "Virtuálne stroje"
},
"glances": {
- "cpu": "Procesor",
+ "cpu": "CPU",
"load": "Záťaž",
"wait": "Počkajte prosím",
"temp": "TEPLOTA",
@@ -413,7 +415,7 @@
"quicklaunch": {
"bookmark": "Záložka",
"service": "Služba",
- "search": "Vyhľadať",
+ "search": "Hľadať",
"custom": "Vlastné",
"visit": "Navštíviť",
"url": "Odkaz"
@@ -506,7 +508,7 @@
"approvedPushes": "Schválené",
"rejectedPushes": "Odmietnuté",
"filters": "Filtre",
- "indexers": "Indexéry"
+ "indexers": "Indexery"
},
"tubearchivist": {
"downloads": "V poradí",
@@ -516,9 +518,8 @@
},
"truenas": {
"load": "Záťaž systému",
- "uptime": "Doba prevádzky",
- "alerts": "Upozornenia",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "uptime": "Prevádzka",
+ "alerts": "Upozornenia"
},
"pyload": {
"speed": "Rýchlosť",
@@ -544,14 +545,22 @@
"inbox": "Schránka správ",
"total": "Celkovo"
},
+ "peanut": {
+ "battery_charge": "Nabitie batérie",
+ "ups_load": "Záťaž UPS",
+ "ups_status": "Status UPS",
+ "online": "Online",
+ "on_battery": "Na batérii",
+ "low_battery": "Slabá batéria"
+ },
"nextdns": {
"wait": "Počkajte prosím",
"no_devices": "Informácie o zariadení nezískané"
},
"mikrotik": {
- "cpuLoad": "Využitie procesora",
+ "cpuLoad": "Využitie CPU",
"memoryUsed": "Využitie pamäte",
- "uptime": "Doba prevádzky",
+ "uptime": "Prevádzka",
"numberOfLeases": "Pridelené adresy"
},
"xteve": {
@@ -566,7 +575,7 @@
"limit": "Limit"
},
"opnsense": {
- "cpu": "Využitie procesora",
+ "cpu": "Využitie CPU",
"memory": "Aktívna pamäť",
"wanUpload": "WAN nahrávanie",
"wanDownload": "WAN sťahovanie"
@@ -600,7 +609,7 @@
"proxmoxbackupserver": {
"datastore_usage": "Dátové úložisko",
"failed_tasks_24h": "Zlyhané úlohy za 24h",
- "cpu_usage": "Procesor",
+ "cpu_usage": "CPU",
"memory_usage": "Pamäť"
},
"immich": {
@@ -612,9 +621,9 @@
"uptimekuma": {
"up": "Weby dostupné",
"down": "Weby nedostupné",
- "uptime": "Doba prevádzky",
+ "uptime": "Prevádzka",
"incident": "Udalosť",
- "m": "min"
+ "m": "m"
},
"atsumeru": {
"series": "Seriály",
@@ -628,8 +637,8 @@
"books": "Knihy"
},
"diskstation": {
- "days": "Dní",
- "uptime": "Doba prevádzky",
+ "days": "dní",
+ "uptime": "Prevádzka",
"volumeAvailable": "Dostupné"
},
"mylar": {
@@ -656,11 +665,11 @@
"alertstriggered": "Spustené upozornenia"
},
"nextcloud": {
- "cpuload": "Využitie procesora",
+ "cpuload": "Využitie CPU",
"memoryusage": "Využitie pamäte",
"freespace": "Dostupné miesto",
"activeusers": "Aktívni používatelia",
- "numfiles": "Počet súborov",
+ "numfiles": "Súborov",
"numshares": "Zdieľané položky"
},
"kopia": {
@@ -718,7 +727,7 @@
},
"kavita": {
"seriesCount": "Seriály",
- "totalFiles": "Počet súborov"
+ "totalFiles": "Súborov"
},
"azuredevops": {
"result": "Výsledok",
@@ -767,7 +776,7 @@
},
"uptimerobot": {
"status": "Stav",
- "uptime": "Doba prevádzky",
+ "uptime": "Prevádzka",
"lastDown": "Posledný čas nedostupnosti",
"downDuration": "Trvanie nedostupnosti",
"sitesUp": "Weby dostupné",
@@ -784,6 +793,6 @@
"physicalRelease": "Fyzické vydanie",
"digitalRelease": "Digitálne vydanie",
"noEventsToday": "Žiadne udalosti na dnešný deň!",
- "noEventsFound": "No events found"
+ "noEventsFound": "Žiadne udalosti"
}
}
diff --git a/public/locales/sl/common.json b/public/locales/sl/common.json
index 91ebb845..afa46f7c 100644
--- a/public/locales/sl/common.json
+++ b/public/locales/sl/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mes",
+ "days": "d",
+ "hours": "u",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Manjka tip widgeta: {{type}}",
@@ -40,11 +46,7 @@
"load": "Bremenitev",
"temp": "TEMP",
"max": "Maks.",
- "uptime": "Gor",
- "months": "me",
- "days": "d",
- "hours": "u",
- "minutes": "u"
+ "uptime": "Gor"
},
"unifi": {
"users": "Uporabniki",
@@ -127,7 +129,7 @@
"connectionStatusUnconfigured": "Nenastavljeno",
"connectionStatusConnecting": "Se povezuje",
"connectionStatusAuthenticating": "Avtentikacija",
- "connectionStatusPendingDisconnect": "Pending Disconnect",
+ "connectionStatusPendingDisconnect": "Čakanje na prekinitev",
"connectionStatusDisconnecting": "Prekinitev",
"connectionStatusDisconnected": "Prekinjeno",
"connectionStatusConnected": "Povezanih",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Obremenitev sistema",
"uptime": "Čas delovanja",
- "alerts": "Opozorila",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Opozorila"
},
"pyload": {
"speed": "Hitrost",
@@ -544,6 +545,14 @@
"inbox": "Prejeto",
"total": "Skupaj"
},
+ "peanut": {
+ "battery_charge": "Napolnjenost baterije",
+ "ups_load": "UPS obremenitev",
+ "ups_status": "UPS status",
+ "online": "Na spletu",
+ "on_battery": "Na bateriji",
+ "low_battery": "Prazna baterija"
+ },
"nextdns": {
"wait": "Prosim počakajte",
"no_devices": "Podatki o napravi niso prejeti"
@@ -614,7 +623,7 @@
"down": "Ne deluje",
"uptime": "Čas delovanja",
"incident": "Incident",
- "m": "u"
+ "m": "m"
},
"atsumeru": {
"series": "Serije",
diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json
index b5b62d33..356c6749 100644
--- a/public/locales/sr/common.json
+++ b/public/locales/sr/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Missing Widget Type: {{type}}",
@@ -40,11 +46,7 @@
"load": "Load",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Users",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"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"
+ },
"nextdns": {
"wait": "Please Wait",
"no_devices": "No Device Data Received"
diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json
index 89f89bf4..55b22d7e 100644
--- a/public/locales/sv/common.json
+++ b/public/locales/sv/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Saknar Widget-typ: {{type}}",
@@ -40,11 +46,7 @@
"load": "Laddar",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Användare",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"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"
+ },
"nextdns": {
"wait": "Please Wait",
"no_devices": "No Device Data Received"
diff --git a/public/locales/te/common.json b/public/locales/te/common.json
index 1d5c5862..4da6eb64 100644
--- a/public/locales/te/common.json
+++ b/public/locales/te/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "విడ్జెట్ లేదు: {{type}}",
@@ -40,11 +46,7 @@
"load": "లోడ్",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "వినియోగదారులు",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"total": "మొత్తం"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Please Wait",
"no_devices": "No Device Data Received"
diff --git a/public/locales/th/common.json b/public/locales/th/common.json
index 6a124864..693f91fa 100644
--- a/public/locales/th/common.json
+++ b/public/locales/th/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Missing Widget Type: {{type}}",
@@ -40,11 +46,7 @@
"load": "โหลด",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "ผู้ใช้",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"total": "ทั้งหมด"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Please Wait",
"no_devices": "No Device Data Received"
diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json
index ee933bd1..7949b526 100644
--- a/public/locales/tr/common.json
+++ b/public/locales/tr/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Kayıp Araç Türü: {{type}}",
@@ -40,11 +46,7 @@
"load": "Yük",
"temp": "Geçici",
"max": "En Yüksek",
- "uptime": "Çalışma Süresi",
- "months": "Ay",
- "days": "Gün",
- "hours": "Saat",
- "minutes": "Dakika"
+ "uptime": "Çalışma Süresi"
},
"unifi": {
"users": "Kullanıcılar",
@@ -401,8 +403,8 @@
"total": "Toplam",
"free": "Boşta",
"used": "Kullanımda",
- "days": "Gün",
- "hours": "Saat",
+ "days": "d",
+ "hours": "h",
"crit": "Crit",
"read": "Oku",
"write": "Write",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Sistem Yükü",
"uptime": "Çalışma Süresi",
- "alerts": "Alarmlar",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alarmlar"
},
"pyload": {
"speed": "Hız",
@@ -544,6 +545,14 @@
"inbox": "Gelen Kutusu",
"total": "Toplam"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Çevrimiçi",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Lütfen Bekleyin",
"no_devices": "Cihaz Verisi Alınamadı"
@@ -614,7 +623,7 @@
"down": "Sites Down",
"uptime": "Çalışma Süresi",
"incident": "Incident",
- "m": "Dakika"
+ "m": "m"
},
"atsumeru": {
"series": "Diziler",
diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json
index f4f6f807..27609ac9 100644
--- a/public/locales/uk/common.json
+++ b/public/locales/uk/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Відсутній тип віджета: {{type}}",
@@ -40,11 +46,7 @@
"load": "Завантаження",
"temp": "Температура",
"max": "Макс.",
- "uptime": "Відправка",
- "months": "міс",
- "days": "д",
- "hours": "г",
- "minutes": "хв"
+ "uptime": "Відправка"
},
"unifi": {
"users": "Користувачі",
@@ -401,8 +403,8 @@
"total": "Усього",
"free": "Вільно",
"used": "Використано",
- "days": "д",
- "hours": "г",
+ "days": "d",
+ "hours": "h",
"crit": "Crit",
"read": "Прочитано",
"write": "Написати",
@@ -517,8 +519,7 @@
"truenas": {
"load": "Завантаження системи",
"uptime": "Час роботи",
- "alerts": "Оповіщення",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Оповіщення"
},
"pyload": {
"speed": "Швидкість",
@@ -544,6 +545,14 @@
"inbox": "Вхідні",
"total": "Усього"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Онлайн",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Будь ласка, зачекайте",
"no_devices": "Дані про пристрій не отримано"
@@ -614,7 +623,7 @@
"down": "Неактивні сайти",
"uptime": "Час роботи",
"incident": "Інцидент",
- "m": "хв"
+ "m": "m"
},
"atsumeru": {
"series": "Серії",
diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json
index d2c2e3d4..942d1388 100644
--- a/public/locales/vi/common.json
+++ b/public/locales/vi/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "Thiếu loại Widget: {{type}}",
@@ -40,11 +46,7 @@
"load": "Load",
"temp": "TEMP",
"max": "Max",
- "uptime": "UP",
- "months": "mo",
- "days": "d",
- "hours": "h",
- "minutes": "m"
+ "uptime": "UP"
},
"unifi": {
"users": "Users",
@@ -517,8 +519,7 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
- "alerts": "Alerts",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "Alerts"
},
"pyload": {
"speed": "Speed",
@@ -544,6 +545,14 @@
"inbox": "Inbox",
"total": "Tổng"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "Online",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "Please Wait",
"no_devices": "No Device Data Received"
diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json
index 3c57cc74..c4c1593e 100644
--- a/public/locales/yue/common.json
+++ b/public/locales/yue/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "缺少小部件類型:{{type}}",
@@ -40,11 +46,7 @@
"load": "負荷",
"temp": "溫度",
"max": "最大",
- "uptime": "運作時間",
- "months": "月",
- "days": "日",
- "hours": "時",
- "minutes": "分"
+ "uptime": "運作時間"
},
"unifi": {
"users": "使用者",
@@ -401,8 +403,8 @@
"total": "全部",
"free": "剩餘",
"used": "用咗",
- "days": "日",
- "hours": "時",
+ "days": "d",
+ "hours": "h",
"crit": "重大的",
"read": "已讀",
"write": "寫入",
@@ -517,8 +519,7 @@
"truenas": {
"load": "系統負載",
"uptime": "運行時間",
- "alerts": "警示",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "警示"
},
"pyload": {
"speed": "速度",
@@ -544,6 +545,14 @@
"inbox": "收件箱",
"total": "全部"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "在線",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "請稍後",
"no_devices": "未收到裝置資料"
@@ -614,7 +623,7 @@
"down": "離線網站",
"uptime": "運行時間",
"incident": "事件",
- "m": "分"
+ "m": "m"
},
"atsumeru": {
"series": "影集",
diff --git a/public/locales/zh-Hans/common.json b/public/locales/zh-Hans/common.json
index fcf5c5e2..0a0e728d 100644
--- a/public/locales/zh-Hans/common.json
+++ b/public/locales/zh-Hans/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "缺失的组件类型: {{type}}",
@@ -40,11 +46,7 @@
"load": "负载",
"temp": "温度",
"max": "最大",
- "uptime": "运行时间",
- "months": "月",
- "days": "日",
- "hours": "时",
- "minutes": "分"
+ "uptime": "运行时间"
},
"unifi": {
"users": "用户数",
@@ -401,8 +403,8 @@
"total": "总计",
"free": "空闲",
"used": "已使用",
- "days": "日",
- "hours": "时",
+ "days": "d",
+ "hours": "h",
"crit": "严重",
"read": "已读",
"write": "写入",
@@ -517,8 +519,7 @@
"truenas": {
"load": "系统负载",
"uptime": "运行时间",
- "alerts": "警告",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "警告"
},
"pyload": {
"speed": "速度",
@@ -544,6 +545,14 @@
"inbox": "收件箱",
"total": "总计"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "在线",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "请稍候",
"no_devices": "未收到设备数据"
@@ -614,7 +623,7 @@
"down": "离线网站",
"uptime": "运行时间",
"incident": "事件",
- "m": "分"
+ "m": "m"
},
"atsumeru": {
"series": "剧集",
diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json
index 3efb120c..30a934d8 100644
--- a/public/locales/zh-Hant/common.json
+++ b/public/locales/zh-Hant/common.json
@@ -11,7 +11,13 @@
"percent": "{{value, percent}}",
"number": "{{value, number}}",
"ms": "{{value, number}}",
- "date": "{{value, date}}"
+ "date": "{{value, date}}",
+ "uptime": "{{value, uptime}}",
+ "months": "mo",
+ "days": "d",
+ "hours": "h",
+ "minutes": "m",
+ "seconds": "s"
},
"widget": {
"missing_type": "遺失小工具的類型: {{type}}",
@@ -40,11 +46,7 @@
"load": "負載",
"temp": "溫度",
"max": "最大",
- "uptime": "運作時間",
- "months": "月",
- "days": "日",
- "hours": "時",
- "minutes": "分"
+ "uptime": "運作時間"
},
"unifi": {
"users": "使用者",
@@ -401,8 +403,8 @@
"total": "全部",
"free": "剩餘",
"used": "已使用",
- "days": "日",
- "hours": "時",
+ "days": "d",
+ "hours": "h",
"crit": "重大的",
"read": "已讀",
"write": "寫入",
@@ -517,8 +519,7 @@
"truenas": {
"load": "系統負載",
"uptime": "運行時間",
- "alerts": "警示",
- "time": "{{value, number(style: unit; unitDisplay: long;)}}"
+ "alerts": "警示"
},
"pyload": {
"speed": "速度",
@@ -544,6 +545,14 @@
"inbox": "收件箱",
"total": "全部"
},
+ "peanut": {
+ "battery_charge": "Battery Charge",
+ "ups_load": "UPS Load",
+ "ups_status": "UPS Status",
+ "online": "在線",
+ "on_battery": "On Battery",
+ "low_battery": "Low Battery"
+ },
"nextdns": {
"wait": "請稍後",
"no_devices": "未收到裝置資料"
@@ -614,7 +623,7 @@
"down": "離線網站",
"uptime": "運行時間",
"incident": "事件",
- "m": "分"
+ "m": "m"
},
"atsumeru": {
"series": "影集",
From ccad62b5c2a7fd343b7ef30b1b54a61893959039 Mon Sep 17 00:00:00 2001
From: Brandon McFarlin <6525520+Brandawg93@users.noreply.github.com>
Date: Wed, 27 Dec 2023 10:29:27 -0500
Subject: [PATCH 3/7] Fix: Peanut widget v2 api compatibility (#2526)
---
src/widgets/peanut/component.jsx | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/src/widgets/peanut/component.jsx b/src/widgets/peanut/component.jsx
index b61ecacf..aa6f31b3 100644
--- a/src/widgets/peanut/component.jsx
+++ b/src/widgets/peanut/component.jsx
@@ -24,6 +24,17 @@ export default function Component({ service }) {
);
}
+ // backwards compatibility with peanut v1
+ if ("battery.charge" in upsData) {
+ upsData.battery_charge = upsData["battery.charge"];
+ }
+ if ("ups.load" in upsData) {
+ upsData.ups_load = upsData["ups.load"];
+ }
+ if ("ups.status" in upsData) {
+ upsData.ups_status = upsData["ups.status"];
+ }
+
let status;
switch (upsData.ups_status) {
case "OL":
From aa7cfa58ffd8517d9762079cf2595c0ee31c1663 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 31 Dec 2023 10:48:10 -0800
Subject: [PATCH 4/7] Better handle malformed docker labels (#2552)
---
src/utils/config/service-helpers.js | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/src/utils/config/service-helpers.js b/src/utils/config/service-helpers.js
index f96f6509..1c5ee894 100644
--- a/src/utils/config/service-helpers.js
+++ b/src/utils/config/service-helpers.js
@@ -102,6 +102,16 @@ export async function servicesFromDocker() {
}
});
+ if (!constructedService.name || !constructedService.group) {
+ logger.error(
+ `Error constructing service using homepage labels for container '${containerName.replace(
+ /^\//,
+ "",
+ )}'. Ensure required labels are present.`,
+ );
+ return null;
+ }
+
return constructedService;
});
From 1c47d9d70ed61ff9a6000abbb726f51ab5be2508 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 31 Dec 2023 20:18:17 -0800
Subject: [PATCH 5/7] Fix: pass user/pass as strings with OMV proxy (#2555)
---
src/widgets/openmediavault/proxy.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/widgets/openmediavault/proxy.js b/src/widgets/openmediavault/proxy.js
index 2152f305..e1f97a56 100644
--- a/src/widgets/openmediavault/proxy.js
+++ b/src/widgets/openmediavault/proxy.js
@@ -64,7 +64,7 @@ async function tryLogin(widget) {
const resp = await rpc(url, {
method: "login",
service: "session",
- params: { username, password },
+ params: { username: username.toString(), password: password.toString() },
});
if (resp.status !== 200) {
From 50c989e36ab06b66780da7923bc68bba45b091b9 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sat, 6 Jan 2024 09:22:25 -0800
Subject: [PATCH 6/7] Fix: unique element key generation in quicklaunch and
services (#2586)
---
src/components/quicklaunch.jsx | 2 +-
src/components/services/list.jsx | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/components/quicklaunch.jsx b/src/components/quicklaunch.jsx
index a356fdee..7fb1460a 100644
--- a/src/components/quicklaunch.jsx
+++ b/src/components/quicklaunch.jsx
@@ -199,7 +199,7 @@ export default function QuickLaunch({
{results.length > 0 && (
{results.map((r, i) => (
- -
+
- s).join("-")}>