From 1c456b70c00946a0af643a4f49d1da94c10c900c Mon Sep 17 00:00:00 2001
From: Michael Shamoon <4887959+shamoon@users.noreply.github.com>
Date: Mon, 7 Nov 2022 11:35:13 -0800
Subject: [PATCH 01/39] Re-create service ping, docker status changes
See #388
---
public/locales/en/common.json | 8 +++++-
src/components/services/item.jsx | 32 ++++++++++++++--------
src/components/services/ping.jsx | 44 ++++++++++++++++++++++++++++++
src/components/services/status.jsx | 27 ++++++++++++++----
src/pages/api/ping.js | 28 +++++++++++++++++++
src/utils/proxy/http.js | 2 +-
6 files changed, 123 insertions(+), 18 deletions(-)
create mode 100644 src/components/services/ping.jsx
create mode 100644 src/pages/api/ping.js
diff --git a/public/locales/en/common.json b/public/locales/en/common.json
index 8784443a..24177db6 100644
--- a/public/locales/en/common.json
+++ b/public/locales/en/common.json
@@ -52,7 +52,13 @@
"tx": "TX",
"mem": "MEM",
"cpu": "CPU",
- "offline": "Offline"
+ "offline": "Offline",
+ "error": "Error",
+ "unknown": "Unknown"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
},
"emby": {
"playing": "Playing",
diff --git a/src/components/services/item.jsx b/src/components/services/item.jsx
index 56ed2b4b..3f9df930 100644
--- a/src/components/services/item.jsx
+++ b/src/components/services/item.jsx
@@ -3,6 +3,7 @@ import { useContext, useState } from "react";
import Status from "./status";
import Widget from "./widget";
+import Ping from "./ping";
import Docker from "widgets/docker/component";
import { SettingsContext } from "utils/contexts/settings";
@@ -30,7 +31,7 @@ export default function Item({ service }) {
{service.icon &&
@@ -70,16 +71,25 @@ export default function Item({ service }) {
)}
- {service.container && (
-
- )}
+
+ {service.ping && (
+
+ )}
+
+ {service.container && (
+
+ )}
+
{service.container && service.server && (
diff --git a/src/components/services/ping.jsx b/src/components/services/ping.jsx
new file mode 100644
index 00000000..e3056232
--- /dev/null
+++ b/src/components/services/ping.jsx
@@ -0,0 +1,44 @@
+import { useTranslation } from "react-i18next";
+import useSWR from "swr";
+
+export default function Ping({ service }) {
+ const { t } = useTranslation();
+ const { data, error } = useSWR(`/api/ping?${new URLSearchParams({ping: service.ping}).toString()}`, {
+ refreshInterval: 30000
+ });
+
+ if (error) {
+ return (
+
+ );
+ }
+
+ if (!data) {
+ return (
+
+ );
+ }
+
+ const statusText = `${service.ping}: HTTP status ${data.status}`;
+
+ if (data && data.status !== 200) {
+ return (
+
+ );
+ }
+
+ if (data && data.status === 200) {
+ return (
+
+
{t("common.ms", { value: data.latency, style: "unit", unit: "millisecond", unitDisplay: "narrow", maximumFractionDigits: 0 })}
+
+ );
+ }
+
+}
diff --git a/src/components/services/status.jsx b/src/components/services/status.jsx
index dc903408..2d07e49e 100644
--- a/src/components/services/status.jsx
+++ b/src/components/services/status.jsx
@@ -1,19 +1,36 @@
+import { useTranslation } from "react-i18next";
import useSWR from "swr";
export default function Status({ service }) {
+ const { t } = useTranslation();
+
const { data, error } = useSWR(`/api/docker/status/${service.container}/${service.server || ""}`);
if (error) {
- return ;
+
}
if (data && data.status === "running") {
- return ;
+ return (
+
+ );
}
- if (data && data.status === "not found") {
- return ;
+ if (data && (data.status === "not found" || data.status === "exited")) {
+ return (
+
+ );
}
- return ;
+ return (
+
+
{t("docker.unknown")}
+
+ );
}
diff --git a/src/pages/api/ping.js b/src/pages/api/ping.js
new file mode 100644
index 00000000..79c7da0c
--- /dev/null
+++ b/src/pages/api/ping.js
@@ -0,0 +1,28 @@
+import { performance } from "perf_hooks";
+
+import createLogger from "utils/logger";
+import { httpProxy } from "utils/proxy/http";
+
+const logger = createLogger("ping");
+
+export default async function handler(req, res) {
+ const { ping: pingURL } = req.query;
+
+ if (!pingURL) {
+ logger.debug("No ping URL specified");
+ return res.status(400).send({
+ error: "No ping URL given",
+ });
+ }
+
+ const startTime = performance.now();
+ const [status] = await httpProxy(pingURL, {
+ method: "HEAD"
+ });
+ const endTime = performance.now();
+
+ return res.status(200).json({
+ status,
+ latency: endTime - startTime
+ });
+}
diff --git a/src/utils/proxy/http.js b/src/utils/proxy/http.js
index 4eba83f3..8f180a7f 100644
--- a/src/utils/proxy/http.js
+++ b/src/utils/proxy/http.js
@@ -96,7 +96,7 @@ export async function httpProxy(url, params = {}) {
return [status, contentType, data, responseHeaders];
}
catch (err) {
- logger.error("Error calling %s//%s%s...", url.protocol, url.hostname, url.pathname);
+ logger.error("Error calling %s//%s%s...", constructedUrl.protocol, constructedUrl.hostname, constructedUrl.pathname);
logger.error(err);
return [500, "application/json", { error: "Unexpected error" }, null];
}
From 83a3a06386672ee5125b36fa8ffc582ed8071632 Mon Sep 17 00:00:00 2001
From: Rat
Date: Fri, 18 Nov 2022 15:32:59 -0800
Subject: [PATCH 02/39] Added configurable setting for log folder, falls back
to config path if not set
---
src/utils/logger.js | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/utils/logger.js b/src/utils/logger.js
index 5ad93546..19c6a71e 100644
--- a/src/utils/logger.js
+++ b/src/utils/logger.js
@@ -1,6 +1,7 @@
/* eslint-disable no-console */
import { join } from "path";
import { format as utilFormat } from "node:util";
+import checkAndCopyConfig, { getSettings } from "utils/config/config";
import winston from "winston";
@@ -8,6 +9,9 @@ let winstonLogger;
function init() {
const configPath = join(process.cwd(), "config");
+ checkAndCopyConfig("settings.yaml");
+ const settings = getSettings();
+ const logpath = settings.logpath || configPath;
function combineMessageAndSplat() {
return {
@@ -57,7 +61,7 @@ function init() {
winston.format.timestamp(),
winston.format.printf(messageFormatter)
),
- filename: `${configPath}/logs/homepage.log`,
+ filename: `${logpath}/logs/homepage.log`,
handleExceptions: true,
handleRejections: true,
}),
From c8806a87755157991462c0ffd33b26e2cbeb9140 Mon Sep 17 00:00:00 2001
From: Rat
Date: Sat, 19 Nov 2022 12:10:29 -0800
Subject: [PATCH 03/39] lint fix
---
src/utils/logger.js | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/utils/logger.js b/src/utils/logger.js
index 19c6a71e..048c5356 100644
--- a/src/utils/logger.js
+++ b/src/utils/logger.js
@@ -1,10 +1,11 @@
/* eslint-disable no-console */
import { join } from "path";
import { format as utilFormat } from "node:util";
-import checkAndCopyConfig, { getSettings } from "utils/config/config";
import winston from "winston";
+import checkAndCopyConfig, { getSettings } from "utils/config/config";
+
let winstonLogger;
function init() {
From e3725b02c88c30273a6fadf95b6d57e318595f18 Mon Sep 17 00:00:00 2001
From: gallegonovato
Date: Sat, 19 Nov 2022 10:27:38 +0000
Subject: [PATCH 04/39] Translated using Weblate (Spanish)
Currently translated at 100.0% (240 of 240 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/
---
public/locales/es/common.json | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/public/locales/es/common.json b/public/locales/es/common.json
index e348d534..b015c31f 100644
--- a/public/locales/es/common.json
+++ b/public/locales/es/common.json
@@ -3,10 +3,10 @@
"missing_type": "Falta el tipo de widget: {{type}}",
"api_error": "Error de API",
"status": "Estado",
- "information": "Information",
+ "information": "Información",
"url": "URL",
- "raw_error": "Raw Error",
- "response_data": "Response Data"
+ "raw_error": "Error sin procesar",
+ "response_data": "Datos de respuesta"
},
"search": {
"placeholder": "Buscar…"
@@ -325,7 +325,7 @@
"country": "País"
},
"hdhomerun": {
- "channels": "Channels",
- "hd": "HD"
+ "channels": "Canales",
+ "hd": "Alta definición"
}
}
From ab0cb6145fe1449bf653bb6c78d1b0c88815d035 Mon Sep 17 00:00:00 2001
From: Nonoss117
Date: Sat, 19 Nov 2022 08:56:12 +0000
Subject: [PATCH 05/39] Translated using Weblate (French)
Currently translated at 100.0% (240 of 240 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/
---
public/locales/fr/common.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json
index e56e056a..6a211bc6 100644
--- a/public/locales/fr/common.json
+++ b/public/locales/fr/common.json
@@ -325,7 +325,7 @@
"country": "Pays"
},
"hdhomerun": {
- "channels": "Channels",
+ "channels": "Canaux",
"hd": "HD"
}
}
From 4a21ad647ff4bf385875ec0ce0c46f01c8f49e8b Mon Sep 17 00:00:00 2001
From: retmas-gh
Date: Sat, 19 Nov 2022 14:50:32 +0000
Subject: [PATCH 06/39] Translated using Weblate (Polish)
Currently translated at 97.5% (234 of 240 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pl/
---
public/locales/pl/common.json | 108 +++++++++++++++++-----------------
1 file changed, 54 insertions(+), 54 deletions(-)
diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json
index 6754fcda..064aa016 100644
--- a/public/locales/pl/common.json
+++ b/public/locales/pl/common.json
@@ -53,16 +53,16 @@
"missing_type": "Brakujący typ widżetu: {{type}}",
"api_error": "Błąd API",
"status": "Stan",
- "url": "URL",
- "information": "Information",
- "raw_error": "Raw Error",
- "response_data": "Response Data"
+ "url": "Adres URL",
+ "information": "Informacje",
+ "raw_error": "Niesformatowany błąd",
+ "response_data": "Dane odpowiedzi"
},
"docker": {
- "rx": "RX",
- "tx": "TX",
- "mem": "MEM",
- "cpu": "CPU",
+ "rx": "Rx",
+ "tx": "Tx",
+ "mem": "Pamięć",
+ "cpu": "Procesor",
"offline": "Offline"
},
"nzbget": {
@@ -95,7 +95,7 @@
"wanted": "Poszukiwane",
"queued": "W kolejce",
"movies": "Filmy",
- "missing": "Missing"
+ "missing": "Brakujące"
},
"lidarr": {
"wanted": "Poszukiwane",
@@ -166,14 +166,14 @@
},
"mastodon": {
"user_count": "Użytkownicy",
- "status_count": "Posts",
+ "status_count": "Posty",
"domain_count": "Domeny"
},
"strelaysrv": {
"numActiveSessions": "Sesje",
"numConnections": "Połączenia",
- "dataRelayed": "Relayed",
- "transferRate": "Rate"
+ "dataRelayed": "Przekazane",
+ "transferRate": "Przesył"
},
"authentik": {
"users": "Użytkownicy",
@@ -181,10 +181,10 @@
"failedLoginsLast24H": "Nieudane logowania (24h)"
},
"proxmox": {
- "mem": "MEM",
- "cpu": "CPU",
- "lxc": "LXC",
- "vms": "VMs"
+ "mem": "Pamięć",
+ "cpu": "Procesor",
+ "lxc": "Kontenery LXC",
+ "vms": "Maszyn wirtualnych"
},
"unifi": {
"users": "Użytkownicy",
@@ -203,25 +203,25 @@
"wlan_devices": "Urządzenia WLAN"
},
"plex": {
- "streams": "Active Streams",
+ "streams": "Aktywne strumienie",
"movies": "Filmy",
"tv": "Seriale"
},
"glances": {
- "cpu": "CPU",
- "mem": "MEM",
+ "cpu": "Procesor",
+ "mem": "Pamięć",
"wait": "Proszę czekać"
},
"changedetectionio": {
- "diffsDetected": "Diffs Detected",
- "totalObserved": "Total Observed"
+ "diffsDetected": "Wykryto różnic",
+ "totalObserved": "Obserwowanych ogółem"
},
"wmo": {
- "77-day": "Snow Grains",
+ "77-day": "Ziarnisty śnieg",
"0-day": "Słoneczny",
- "0-night": "Clear",
- "1-day": "Mainly Sunny",
- "1-night": "Mainly Clear",
+ "0-night": "Bezchmurny",
+ "1-day": "Głównie słoneczny",
+ "1-night": "Głównie bezchmurny",
"2-day": "Częściowo pochmurnie",
"2-night": "Częściowo pochmurnie",
"3-day": "Pochmurnie",
@@ -236,10 +236,10 @@
"53-night": "Mżawka",
"55-day": "Ciężka mżawka",
"55-night": "Ciężka mżawka",
- "56-day": "Light Freezing Drizzle",
- "56-night": "Light Freezing Drizzle",
- "57-day": "Freezing Drizzle",
- "57-night": "Freezing Drizzle",
+ "56-day": "Lekko chłodna mżawka",
+ "56-night": "Lekko chłodna mżawka",
+ "57-day": "Chłodna mżawka",
+ "57-night": "Chłodna mżawka",
"61-day": "Lekki deszcz",
"61-night": "Lekki deszcz",
"63-day": "Deszcz",
@@ -256,7 +256,7 @@
"73-night": "Śnieg",
"75-day": "Ciężki śnieg",
"75-night": "Ciężki śnieg",
- "77-night": "Snow Grains",
+ "77-night": "Ziarnisty śnieg",
"80-day": "Lekkie opady",
"80-night": "Lekkie opady",
"81-day": "Opady",
@@ -275,7 +275,7 @@
"99-night": "Burza z gradobiciem"
},
"quicklaunch": {
- "bookmark": "Bookmark",
+ "bookmark": "Zakładka",
"service": "Usługi"
},
"homebridge": {
@@ -287,45 +287,45 @@
"child_bridges_status": "{{ok}}/{{total}}"
},
"autobrr": {
- "approvedPushes": "Approved",
- "rejectedPushes": "Rejected",
- "filters": "Filters",
- "indexers": "Indexers"
+ "approvedPushes": "Zaakceptowane",
+ "rejectedPushes": "Odrzucone",
+ "filters": "Filtry",
+ "indexers": "Indeksery"
},
"watchtower": {
- "containers_scanned": "Scanned",
- "containers_updated": "Updated",
- "containers_failed": "Failed"
+ "containers_scanned": "Zeskanowane",
+ "containers_updated": "Zaktualizowane",
+ "containers_failed": "Niepowodzenie"
},
"tubearchivist": {
- "downloads": "Queue",
- "videos": "Videos",
- "channels": "Channels",
- "playlists": "Playlists"
+ "downloads": "Kolejka",
+ "videos": "Pliki wideo",
+ "channels": "Kanały",
+ "playlists": "Playlisty"
},
"truenas": {
- "load": "System Load",
- "uptime": "Uptime",
- "alerts": "Alerts",
+ "load": "Obciążenie systemu",
+ "uptime": "Czas działania",
+ "alerts": "Ostrzeżenia",
"time": "{{value, number(style: unit; unitDisplay: long;)}}"
},
"navidrome": {
- "please_wait": "Please Wait",
- "nothing_streaming": "No Active Streams"
+ "please_wait": "Proszę czekać",
+ "nothing_streaming": "Brak aktywnych strumieni"
},
"pyload": {
- "speed": "Speed",
- "active": "Active",
- "queue": "Queue",
- "total": "Total"
+ "speed": "Prędkość",
+ "active": "Aktywne",
+ "queue": "Kolejka",
+ "total": "Razem"
},
"gluetun": {
- "public_ip": "Public IP",
+ "public_ip": "Adres publiczny",
"region": "Region",
- "country": "Country"
+ "country": "Państwo"
},
"hdhomerun": {
- "channels": "Channels",
+ "channels": "Kanały",
"hd": "HD"
}
}
From eab2cce41f38d3cce64bcc084bbda342626efdae Mon Sep 17 00:00:00 2001
From: Milo Ivir
Date: Sun, 20 Nov 2022 15:39:31 +0000
Subject: [PATCH 07/39] Translated using Weblate (Croatian)
Currently translated at 100.0% (240 of 240 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hr/
---
public/locales/hr/common.json | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json
index 191a3d79..2ac5c3fb 100644
--- a/public/locales/hr/common.json
+++ b/public/locales/hr/common.json
@@ -59,10 +59,10 @@
"missing_type": "Nedostajuća vrsta widgeta: {{type}}",
"api_error": "API greška",
"status": "Stanje",
- "information": "Information",
+ "information": "Informacije",
"url": "URL",
- "raw_error": "Raw Error",
- "response_data": "Response Data"
+ "raw_error": "Raw greška",
+ "response_data": "Podaci odgovora"
},
"docker": {
"rx": "RX",
@@ -320,12 +320,12 @@
"total": "Ukupno"
},
"gluetun": {
- "public_ip": "Public IP",
- "region": "Region",
- "country": "Country"
+ "public_ip": "Javni IP",
+ "region": "Regija",
+ "country": "Zemlja"
},
"hdhomerun": {
- "channels": "Channels",
+ "channels": "Kanali",
"hd": "HD"
}
}
From 72374b3ae944fec2f611686cad302c3232178707 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:06 +0000
Subject: [PATCH 08/39] Translated using Weblate (German)
Currently translated at 92.2% (225 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/de/
---
public/locales/de/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/de/common.json b/public/locales/de/common.json
index 22402020..ecc4141c 100644
--- a/public/locales/de/common.json
+++ b/public/locales/de/common.json
@@ -23,7 +23,9 @@
"tx": "Tx",
"mem": "Mem",
"cpu": "Prozessor",
- "offline": "Offline"
+ "offline": "Offline",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Spielen",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "ping": "Ping",
+ "error": "Error"
}
}
From ff6a6c17b1a644231fd82a94c36c2be6363b3198 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:06 +0000
Subject: [PATCH 09/39] Translated using Weblate (Spanish)
Currently translated at 98.3% (240 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/
---
public/locales/es/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/es/common.json b/public/locales/es/common.json
index b015c31f..5b9a7959 100644
--- a/public/locales/es/common.json
+++ b/public/locales/es/common.json
@@ -23,7 +23,9 @@
"tx": "Transmitido",
"mem": "Memoria",
"cpu": "Procesador",
- "offline": "Desconectado"
+ "offline": "Desconectado",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Reproduciendo",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Canales",
"hd": "Alta definición"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 1a8a2b67a15e3b7418aa74676e3c7bef5f7222e2 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:06 +0000
Subject: [PATCH 10/39] Translated using Weblate (French)
Currently translated at 98.3% (240 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/
---
public/locales/fr/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json
index 6a211bc6..e170b8a9 100644
--- a/public/locales/fr/common.json
+++ b/public/locales/fr/common.json
@@ -23,7 +23,9 @@
"tx": "Tx",
"mem": "Mém",
"cpu": "Cpu",
- "offline": "Hors ligne"
+ "offline": "Hors ligne",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "En lecture",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Canaux",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From cedd00c0548eb7741007a993bbdf343bca58b0b5 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:07 +0000
Subject: [PATCH 11/39] Translated using Weblate (Portuguese)
Currently translated at 47.1% (115 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt/
---
public/locales/pt/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json
index 1431ac43..654cdb7f 100644
--- a/public/locales/pt/common.json
+++ b/public/locales/pt/common.json
@@ -23,7 +23,9 @@
"tx": "Tx",
"mem": "Mem",
"cpu": "CPU",
- "offline": "Desligado"
+ "offline": "Desligado",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "A reproduzir",
@@ -338,5 +340,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 10b2772782d583a256298bb21b194159b73ba66d Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:07 +0000
Subject: [PATCH 12/39] Translated using Weblate (Russian)
Currently translated at 9.4% (23 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ru/
---
public/locales/ru/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json
index ac9a9823..9e7fe526 100644
--- a/public/locales/ru/common.json
+++ b/public/locales/ru/common.json
@@ -23,7 +23,9 @@
"tx": "Тx",
"mem": "Память",
"cpu": "Процессор",
- "offline": "Не в сети"
+ "offline": "Не в сети",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Воспроизведение",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 65d7bcd4682302e83ae8bc7d74bb50471e772e16 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:07 +0000
Subject: [PATCH 13/39] Translated using Weblate (Chinese (Simplified))
Currently translated at 67.6% (165 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hans/
---
public/locales/zh-CN/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/zh-CN/common.json b/public/locales/zh-CN/common.json
index 2337bb02..1a25f9cd 100644
--- a/public/locales/zh-CN/common.json
+++ b/public/locales/zh-CN/common.json
@@ -23,7 +23,9 @@
"tx": "发送",
"mem": "内存",
"cpu": "处理器",
- "offline": "离线"
+ "offline": "离线",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "播放中",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 12300391e2e89676d1f216cc72e94e717ccffdf8 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:07 +0000
Subject: [PATCH 14/39] Translated using Weblate (Italian)
Currently translated at 93.8% (229 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/it/
---
public/locales/it/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/it/common.json b/public/locales/it/common.json
index 0bf60639..aa9c713a 100644
--- a/public/locales/it/common.json
+++ b/public/locales/it/common.json
@@ -4,7 +4,9 @@
"mem": "MEM",
"cpu": "CPU",
"offline": "Offline",
- "rx": "RX"
+ "rx": "RX",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "In riproduzione",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 3e126824ff13875840ea9d91bd619216dc5dc5d5 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:06 +0000
Subject: [PATCH 15/39] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegian?=
=?UTF-8?q?=20Bokm=C3=A5l)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Currently translated at 32.3% (79 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nb_NO/
---
public/locales/nb-NO/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/nb-NO/common.json b/public/locales/nb-NO/common.json
index 813422e2..5982f463 100644
--- a/public/locales/nb-NO/common.json
+++ b/public/locales/nb-NO/common.json
@@ -23,7 +23,9 @@
"tx": "Sendt",
"mem": "Minne",
"cpu": "Prosessor",
- "offline": "Frakoblet"
+ "offline": "Frakoblet",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Spiller",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 4f0adea0da340a46879ff69e5b04cc64772ce9d7 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:07 +0000
Subject: [PATCH 16/39] Translated using Weblate (Vietnamese)
Currently translated at 18.0% (44 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/vi/
---
public/locales/vi/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json
index 228e7d93..5ab0537e 100644
--- a/public/locales/vi/common.json
+++ b/public/locales/vi/common.json
@@ -23,7 +23,9 @@
"tx": "TX",
"mem": "BỘ NHỚ",
"cpu": "CPU",
- "offline": "Ngoại tuyến"
+ "offline": "Ngoại tuyến",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Đang chơi",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From e7c4254bb68c629adad253f8c6d6b01c2000e042 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:07 +0000
Subject: [PATCH 17/39] Translated using Weblate (Dutch)
Currently translated at 25.8% (63 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nl/
---
public/locales/nl/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json
index 5502dd8b..172edfd2 100644
--- a/public/locales/nl/common.json
+++ b/public/locales/nl/common.json
@@ -20,7 +20,9 @@
"tx": "TX",
"mem": "MEM",
"cpu": "CPU",
- "offline": "Offline"
+ "offline": "Offline",
+ "error": "Error",
+ "unknown": "Unknown"
},
"speedtest": {
"upload": "Upload",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 17cb8ffd0b7fb007235373768ccd7a9751dedba8 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:08 +0000
Subject: [PATCH 18/39] Translated using Weblate (Chinese (Traditional))
Currently translated at 3.6% (9 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hant/
---
public/locales/zh-Hant/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json
index cd508662..3c61740a 100644
--- a/public/locales/zh-Hant/common.json
+++ b/public/locales/zh-Hant/common.json
@@ -19,7 +19,9 @@
"offline": "Offline",
"tx": "TX",
"mem": "MEM",
- "cpu": "CPU"
+ "cpu": "CPU",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Playing",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 1843c588b8b872d96f9d7053bf78654148f8cd50 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:04 +0000
Subject: [PATCH 19/39] Translated using Weblate (Catalan)
Currently translated at 53.6% (131 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ca/
---
public/locales/ca/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json
index f9aa5969..1656dcc8 100644
--- a/public/locales/ca/common.json
+++ b/public/locales/ca/common.json
@@ -45,7 +45,9 @@
"tx": "Transmès",
"mem": "Memòria",
"cpu": "Processador",
- "offline": "Fora de línia"
+ "offline": "Fora de línia",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Reproduint",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 7b2b56ff0cc797a3cf82187bd0730f1131fd275c Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:05 +0000
Subject: [PATCH 20/39] Translated using Weblate (Polish)
Currently translated at 95.9% (234 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pl/
---
public/locales/pl/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json
index 064aa016..809fc7c3 100644
--- a/public/locales/pl/common.json
+++ b/public/locales/pl/common.json
@@ -63,7 +63,9 @@
"tx": "Tx",
"mem": "Pamięć",
"cpu": "Procesor",
- "offline": "Offline"
+ "offline": "Offline",
+ "error": "Error",
+ "unknown": "Unknown"
},
"nzbget": {
"rate": "Szybkość",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Kanały",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From b8c61f18ef8c306ec7b823724add6f9a8fe6cb50 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:03 +0000
Subject: [PATCH 21/39] Translated using Weblate (Swedish)
Currently translated at 53.2% (130 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sv/
---
public/locales/sv/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json
index 6bdc8ee0..a151bf35 100644
--- a/public/locales/sv/common.json
+++ b/public/locales/sv/common.json
@@ -26,7 +26,9 @@
"tx": "TX",
"mem": "MEM",
"cpu": "CPU",
- "offline": "Offline"
+ "offline": "Offline",
+ "error": "Error",
+ "unknown": "Unknown"
},
"search": {
"placeholder": "Sök…"
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 44477a9e1c4872b2f265787f6769a970a17f199f Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:03 +0000
Subject: [PATCH 22/39] Translated using Weblate (Croatian)
Currently translated at 98.3% (240 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hr/
---
public/locales/hr/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json
index 2ac5c3fb..adb84f37 100644
--- a/public/locales/hr/common.json
+++ b/public/locales/hr/common.json
@@ -69,7 +69,9 @@
"tx": "TX",
"mem": "MEM",
"cpu": "CPU",
- "offline": "Nepovezan"
+ "offline": "Nepovezan",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Reprodukcija",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Kanali",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From eb525e8ea57287e5f00cdefd003a8aecde4437bd Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:05 +0000
Subject: [PATCH 23/39] Translated using Weblate (Hungarian)
Currently translated at 44.2% (108 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hu/
---
public/locales/hu/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json
index 6ba895ae..39f88a6e 100644
--- a/public/locales/hu/common.json
+++ b/public/locales/hu/common.json
@@ -11,7 +11,9 @@
"tx": "TX",
"mem": "MEM",
"cpu": "CPU",
- "offline": "Offline"
+ "offline": "Offline",
+ "error": "Error",
+ "unknown": "Unknown"
},
"lidarr": {
"albums": "Albumok",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 27542befdd965f64240aa2d3bccdbefd3fdc96a1 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:04 +0000
Subject: [PATCH 24/39] Translated using Weblate (Hebrew)
Currently translated at 41.3% (101 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/he/
---
public/locales/he/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/he/common.json b/public/locales/he/common.json
index 5c89ac33..cb61cc0e 100644
--- a/public/locales/he/common.json
+++ b/public/locales/he/common.json
@@ -29,7 +29,9 @@
"tx": "TX",
"mem": "זיכרון",
"cpu": "מעבד",
- "offline": "כבוי"
+ "offline": "כבוי",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "מנגן",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 36a153c6c3517bbb9dabd2a85bdc43206a2c5f17 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:04 +0000
Subject: [PATCH 25/39] Translated using Weblate (Romanian)
Currently translated at 56.1% (137 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ro/
---
public/locales/ro/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json
index c98705f2..bd302227 100644
--- a/public/locales/ro/common.json
+++ b/public/locales/ro/common.json
@@ -11,7 +11,9 @@
"tx": "TX",
"mem": "MEM",
"cpu": "CPU",
- "offline": "Offline"
+ "offline": "Offline",
+ "error": "Error",
+ "unknown": "Unknown"
},
"jellyseerr": {
"approved": "Aprobate",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 45c6501dd5a78924f7ea288b359c7636b30afd5b Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:04 +0000
Subject: [PATCH 26/39] Translated using Weblate (Portuguese (Brazil))
Currently translated at 47.9% (117 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt_BR/
---
public/locales/pt-BR/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/pt-BR/common.json b/public/locales/pt-BR/common.json
index f6101ee0..ca4f39ef 100644
--- a/public/locales/pt-BR/common.json
+++ b/public/locales/pt-BR/common.json
@@ -57,7 +57,9 @@
"tx": "Tx",
"mem": "Mem",
"cpu": "CPU",
- "offline": "Desligado"
+ "offline": "Desligado",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Reproduzindo",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 4be7f15e7d3d29c84b1458ab055bef731009d069 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:04 +0000
Subject: [PATCH 27/39] Translated using Weblate (Yue)
Currently translated at 48.3% (118 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/yue/
---
public/locales/yue/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json
index 6c7d84de..09f8ea7c 100644
--- a/public/locales/yue/common.json
+++ b/public/locales/yue/common.json
@@ -47,7 +47,9 @@
"tx": "發送",
"mem": "內存",
"cpu": "處理器",
- "offline": "離線"
+ "offline": "離線",
+ "error": "Error",
+ "unknown": "Unknown"
},
"nzbget": {
"rate": "速度",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 3f1890f32fae4c6c044b42f4dbee2e9a5bfcfece Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:05 +0000
Subject: [PATCH 28/39] Translated using Weblate (Finnish)
Currently translated at 50.4% (123 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fi/
---
public/locales/fi/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json
index d35449e8..916b8bc5 100644
--- a/public/locales/fi/common.json
+++ b/public/locales/fi/common.json
@@ -29,7 +29,9 @@
"tx": "TX",
"mem": "RAM",
"cpu": "CPU",
- "offline": "Offline"
+ "offline": "Offline",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Toistaa",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 8cfa6d6ef3b6487d47c1f3dacd8cb28cc62d6e43 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:05 +0000
Subject: [PATCH 29/39] Translated using Weblate (Telugu)
Currently translated at 88.9% (217 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/te/
---
public/locales/te/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/te/common.json b/public/locales/te/common.json
index d6ab211f..85fb5846 100644
--- a/public/locales/te/common.json
+++ b/public/locales/te/common.json
@@ -46,7 +46,9 @@
"tx": "TX",
"mem": "MEM",
"cpu": "సీపియూ",
- "offline": "ఆఫ్లైన్"
+ "offline": "ఆఫ్లైన్",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "ఆడుతున్నారు",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 9b4054f7cc4ebe05526f0d36d21c7f3672050e02 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:06 +0000
Subject: [PATCH 30/39] Translated using Weblate (Bulgarian)
Currently translated at 18.8% (46 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/bg/
---
public/locales/bg/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json
index c7824518..5bdc7191 100644
--- a/public/locales/bg/common.json
+++ b/public/locales/bg/common.json
@@ -55,7 +55,9 @@
"rx": "RX",
"tx": "TX",
"mem": "MEM",
- "cpu": "CPU"
+ "cpu": "CPU",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Възпроизвежда",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "ping": "Ping",
+ "error": "Error"
}
}
From 972210b184549cdd798e87a72ce7c48d9302013a Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:04 +0000
Subject: [PATCH 31/39] Translated using Weblate (Turkish)
Currently translated at 94.6% (231 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/tr/
---
public/locales/tr/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json
index 053bd1b6..687ee14f 100644
--- a/public/locales/tr/common.json
+++ b/public/locales/tr/common.json
@@ -45,7 +45,9 @@
"tx": "Giden Veri",
"mem": "Bellek",
"cpu": "İşlemci",
- "offline": "Çevrimdışı"
+ "offline": "Çevrimdışı",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Oynatılıyor",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 6af10c50c52c7dfdb4dfa4dbf5fb5a954f789d17 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:05 +0000
Subject: [PATCH 32/39] Translated using Weblate (Serbian)
Currently translated at 3.6% (9 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sr/
---
public/locales/sr/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json
index ed646d45..94ab9462 100644
--- a/public/locales/sr/common.json
+++ b/public/locales/sr/common.json
@@ -45,7 +45,9 @@
"tx": "TX",
"mem": "MEM",
"cpu": "CPU",
- "offline": "Offline"
+ "offline": "Offline",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Playing",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 6c986c7b32ecf3147bcf14fbf6724648e6c54e29 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:05 +0000
Subject: [PATCH 33/39] Translated using Weblate (Arabic)
Currently translated at 18.0% (44 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ar/
---
public/locales/ar/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json
index b099cf51..06932fe8 100644
--- a/public/locales/ar/common.json
+++ b/public/locales/ar/common.json
@@ -103,7 +103,9 @@
"tx": "TX",
"mem": "الرام",
"cpu": "المعالج",
- "offline": "غير متصل"
+ "offline": "غير متصل",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "يعمل الان",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 411f6c31523d881566ae8bccdd375f0d2c8e2f10 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:06 +0000
Subject: [PATCH 34/39] Translated using Weblate (Czech)
Currently translated at 92.2% (225 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/cs/
---
public/locales/cs/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json
index fd11ea9d..eaad12be 100644
--- a/public/locales/cs/common.json
+++ b/public/locales/cs/common.json
@@ -57,7 +57,9 @@
"tx": "TX",
"mem": "RAM",
"cpu": "CPU",
- "offline": "Offline"
+ "offline": "Offline",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Přehrává",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From d6e7451a13222bf544a40dcbacf2091a64b638c4 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:06 +0000
Subject: [PATCH 35/39] Translated using Weblate (Danish)
Currently translated at 81.1% (198 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/da/
---
public/locales/da/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/da/common.json b/public/locales/da/common.json
index de0ac1d2..0350d7a2 100644
--- a/public/locales/da/common.json
+++ b/public/locales/da/common.json
@@ -181,7 +181,9 @@
"rx": "RX",
"tx": "TX",
"mem": "RAM",
- "offline": "Offline"
+ "offline": "Offline",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Afspiller",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 553e629ae9be98dc66abc467be655abd7efdabdd Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:07 +0000
Subject: [PATCH 36/39] Translated using Weblate (Malay)
Currently translated at 94.6% (231 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ms/
---
public/locales/ms/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json
index cb6bbb2a..fa9cf98a 100644
--- a/public/locales/ms/common.json
+++ b/public/locales/ms/common.json
@@ -150,7 +150,9 @@
"tx": "TX",
"mem": "MEM",
"cpu": "CPU",
- "offline": "Luar talian"
+ "offline": "Luar talian",
+ "error": "Error",
+ "unknown": "Unknown"
},
"changedetectionio": {
"totalObserved": "Jumlah Diperhatikan",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 24814ec6e4b14ccc53dac697f11268860ff13484 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Sun, 20 Nov 2022 18:04:04 +0000
Subject: [PATCH 37/39] Translated using Weblate (Hindi)
Currently translated at 3.6% (9 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hi/
---
public/locales/hi/common.json | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json
index 7289852f..6b3ff4a9 100644
--- a/public/locales/hi/common.json
+++ b/public/locales/hi/common.json
@@ -79,7 +79,9 @@
"tx": "TX",
"mem": "MEM",
"cpu": "CPU",
- "offline": "Offline"
+ "offline": "Offline",
+ "error": "Error",
+ "unknown": "Unknown"
},
"emby": {
"playing": "Playing",
@@ -327,5 +329,9 @@
"hdhomerun": {
"channels": "Channels",
"hd": "HD"
+ },
+ "ping": {
+ "error": "Error",
+ "ping": "Ping"
}
}
From 44da4e93170349900a5ef2655076bd73945de71d Mon Sep 17 00:00:00 2001
From: Nonoss117
Date: Sun, 20 Nov 2022 18:17:29 +0000
Subject: [PATCH 38/39] Translated using Weblate (French)
Currently translated at 100.0% (244 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/
---
public/locales/fr/common.json | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json
index e170b8a9..fc1ab208 100644
--- a/public/locales/fr/common.json
+++ b/public/locales/fr/common.json
@@ -24,8 +24,8 @@
"mem": "Mém",
"cpu": "Cpu",
"offline": "Hors ligne",
- "error": "Error",
- "unknown": "Unknown"
+ "error": "Erreur",
+ "unknown": "Inconnu"
},
"emby": {
"playing": "En lecture",
@@ -331,7 +331,7 @@
"hd": "HD"
},
"ping": {
- "error": "Error",
+ "error": "Erreur",
"ping": "Ping"
}
}
From 0c0bbe93170ce22379677e2f0cdb5eab69e5eaf2 Mon Sep 17 00:00:00 2001
From: retmas-gh
Date: Sun, 20 Nov 2022 21:43:11 +0000
Subject: [PATCH 39/39] Translated using Weblate (Polish)
Currently translated at 97.5% (238 of 244 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pl/
---
public/locales/pl/common.json | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json
index 809fc7c3..c12e044c 100644
--- a/public/locales/pl/common.json
+++ b/public/locales/pl/common.json
@@ -64,8 +64,8 @@
"mem": "Pamięć",
"cpu": "Procesor",
"offline": "Offline",
- "error": "Error",
- "unknown": "Unknown"
+ "error": "Błąd",
+ "unknown": "Nieznany"
},
"nzbget": {
"rate": "Szybkość",
@@ -331,7 +331,7 @@
"hd": "HD"
},
"ping": {
- "error": "Error",
+ "error": "Błąd",
"ping": "Ping"
}
}