From 516423c8bd8bbfe1130ce8a886f36c4d6653d276 Mon Sep 17 00:00:00 2001
From: Simon Grimme <9295182+grimsi@users.noreply.github.com>
Date: Mon, 15 May 2023 02:12:56 +0200
Subject: [PATCH 01/44] Implement Caddy widget
---
public/locales/en/common.json | 15 ++++++++-----
src/widgets/caddy/component.jsx | 39 +++++++++++++++++++++++++++++++++
src/widgets/caddy/widget.js | 8 +++++++
src/widgets/components.js | 1 +
src/widgets/widgets.js | 2 ++
5 files changed, 60 insertions(+), 5 deletions(-)
create mode 100644 src/widgets/caddy/component.jsx
create mode 100644 src/widgets/caddy/widget.js
diff --git a/public/locales/en/common.json b/public/locales/en/common.json
index 79138cad..167cbaca 100755
--- a/public/locales/en/common.json
+++ b/public/locales/en/common.json
@@ -102,6 +102,11 @@
"subscriptions": "Subscriptions",
"unread": "Unread"
},
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
+ },
"changedetectionio": {
"totalObserved": "Total Observed",
"diffsDetected": "Diffs Detected"
@@ -517,11 +522,11 @@
"pfsense": {
"load": "Load Avg",
"memory": "Mem Usage",
- "wanStatus": "WAN Status",
- "up": "Up",
- "down": "Down",
- "temp": "Temp",
- "disk": "Disk Usage",
+ "wanStatus": "WAN Status",
+ "up": "Up",
+ "down": "Down",
+ "temp": "Temp",
+ "disk": "Disk Usage",
"wanIP": "WAN IP"
},
"proxmoxbackupserver": {
diff --git a/src/widgets/caddy/component.jsx b/src/widgets/caddy/component.jsx
new file mode 100644
index 00000000..21320cd6
--- /dev/null
+++ b/src/widgets/caddy/component.jsx
@@ -0,0 +1,39 @@
+import { useTranslation } from "next-i18next";
+
+import Container from "components/services/widget/container";
+import Block from "components/services/widget/block";
+import useWidgetAPI from "utils/proxy/use-widget-api";
+
+export default function Component({ service }) {
+ const { t } = useTranslation();
+
+ const { widget } = service;
+ const { data: resultData, error: resultError } = useWidgetAPI(widget, "result");
+
+
+ if (resultError) {
+ return ;
+ }
+
+ if (!resultData) {
+ return (
+ ,
+
+
+
+
+ );
+ }
+
+ const upstreams = resultData.length;
+ const requests = resultData.reduce((acc, val) => acc + val.num_requests, 0);
+ const requestsFailed = resultData.reduce((acc, val) => acc + val.fails, 0);
+
+ return (
+
+
+
+
+
+ );
+}
diff --git a/src/widgets/caddy/widget.js b/src/widgets/caddy/widget.js
new file mode 100644
index 00000000..2fb1978b
--- /dev/null
+++ b/src/widgets/caddy/widget.js
@@ -0,0 +1,8 @@
+import genericProxyHandler from "utils/proxy/handlers/generic";
+
+const widget = {
+ api: "{url}/reverse_proxy/upstreams",
+ proxyHandler: genericProxyHandler,
+};
+
+export default widget;
diff --git a/src/widgets/components.js b/src/widgets/components.js
index 754898bf..8181321d 100644
--- a/src/widgets/components.js
+++ b/src/widgets/components.js
@@ -6,6 +6,7 @@ const components = {
authentik: dynamic(() => import("./authentik/component")),
autobrr: dynamic(() => import("./autobrr/component")),
bazarr: dynamic(() => import("./bazarr/component")),
+ caddy: dynamic(() => import("./caddy/component")),
changedetectionio: dynamic(() => import("./changedetectionio/component")),
channelsdvrserver: dynamic(() => import("./channelsdvrserver/component")),
cloudflared: dynamic(() => import("./cloudflared/component")),
diff --git a/src/widgets/widgets.js b/src/widgets/widgets.js
index f7b07a96..cf0868f5 100644
--- a/src/widgets/widgets.js
+++ b/src/widgets/widgets.js
@@ -3,6 +3,7 @@ import audiobookshelf from "./audiobookshelf/widget";
import authentik from "./authentik/widget";
import autobrr from "./autobrr/widget";
import bazarr from "./bazarr/widget";
+import caddy from "./caddy/widget";
import changedetectionio from "./changedetectionio/widget";
import channelsdvrserver from "./channelsdvrserver/widget";
import cloudflared from "./cloudflared/widget";
@@ -87,6 +88,7 @@ const widgets = {
authentik,
autobrr,
bazarr,
+ caddy,
changedetectionio,
channelsdvrserver,
cloudflared,
From bc981aae3d50d4ea2c078777c852f4a6488660a0 Mon Sep 17 00:00:00 2001
From: shamoon <4887959+shamoon@users.noreply.github.com>
Date: Sun, 14 May 2023 21:24:09 -0700
Subject: [PATCH 02/44] Include port in error messages
---
src/utils/proxy/handlers/generic.js | 2 +-
src/utils/proxy/http.js | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/utils/proxy/handlers/generic.js b/src/utils/proxy/handlers/generic.js
index b8db9618..8e31c556 100644
--- a/src/utils/proxy/handlers/generic.js
+++ b/src/utils/proxy/handlers/generic.js
@@ -57,7 +57,7 @@ export default async function genericProxyHandler(req, res, map) {
}
if (status >= 400) {
- logger.debug("HTTP Error %d calling %s//%s%s...", status, url.protocol, url.hostname, url.pathname);
+ logger.debug("HTTP Error %d calling %s//%s%s%s...", status, url.protocol, url.hostname, url.port, url.pathname);
return res.status(status).json({error: {message: "HTTP Error", url: sanitizeErrorURL(url), resultData}});
}
diff --git a/src/utils/proxy/http.js b/src/utils/proxy/http.js
index e07f06ff..8eebd451 100644
--- a/src/utils/proxy/http.js
+++ b/src/utils/proxy/http.js
@@ -81,7 +81,7 @@ export async function httpProxy(url, params = {}) {
return [status, contentType, data, responseHeaders];
}
catch (err) {
- logger.error("Error calling %s//%s%s...", constructedUrl.protocol, constructedUrl.hostname, constructedUrl.pathname);
+ logger.error("Error calling %s//%s%s%s...", constructedUrl.protocol, constructedUrl.hostname, constructedUrl.port, constructedUrl.pathname);
logger.error(err);
return [500, "application/json", { error: {message: err?.message ?? "Unknown error", url, rawError: err} }, null];
}
From cae12feac60f2bf1581e982f21e31a8e7eea4d59 Mon Sep 17 00:00:00 2001
From: gallegonovato
Date: Sun, 14 May 2023 12:30:17 +0000
Subject: [PATCH 03/44] Translated using Weblate (Spanish)
Currently translated at 100.0% (442 of 442 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/
---
public/locales/es/common.json | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/public/locales/es/common.json b/public/locales/es/common.json
index 45de3c6b..a0a36eb9 100644
--- a/public/locales/es/common.json
+++ b/public/locales/es/common.json
@@ -607,13 +607,13 @@
"poolUsage": "Comprobación del uso del grupo de memoria"
},
"pfsense": {
- "load": "Load Avg",
- "memory": "Mem Usage",
- "wanStatus": "WAN Status",
- "up": "Up",
- "down": "Down",
- "temp": "Temp",
- "disk": "Disk Usage",
- "wanIP": "WAN IP"
+ "load": "Promedio de carga",
+ "memory": "Memoria utilizada",
+ "wanStatus": "Estado de la WAN",
+ "up": "Arriba",
+ "down": "Abajo",
+ "temp": "Temperatura",
+ "disk": "Uso del disco",
+ "wanIP": "IP de la WAN"
}
}
From ec2df8fc496dac051d372051b73dc0545d906f00 Mon Sep 17 00:00:00 2001
From: Nonoss117
Date: Sun, 14 May 2023 05:13:41 +0000
Subject: [PATCH 04/44] Translated using Weblate (French)
Currently translated at 100.0% (442 of 442 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/
---
public/locales/fr/common.json | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json
index 9a9b3483..03f5154c 100644
--- a/public/locales/fr/common.json
+++ b/public/locales/fr/common.json
@@ -607,13 +607,13 @@
"poolUsage": "Pool"
},
"pfsense": {
- "load": "Load Avg",
- "memory": "Mem Usage",
- "wanStatus": "WAN Status",
+ "load": "Charge moy.",
+ "memory": "Util. Mém.",
+ "wanStatus": "Statut WAN",
"up": "Up",
"down": "Down",
"temp": "Temp",
- "disk": "Disk Usage",
- "wanIP": "WAN IP"
+ "disk": "Util. Disque",
+ "wanIP": "IP WAN"
}
}
From 1f41d36aa4ac57c718ca68eb5e161bafe2a2e8fc Mon Sep 17 00:00:00 2001
From: Dan
Date: Sun, 14 May 2023 09:19:34 +0000
Subject: [PATCH 05/44] Translated using Weblate (Ukrainian)
Currently translated at 100.0% (442 of 442 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/uk/
---
public/locales/uk/common.json | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json
index df5b6e9e..e0a9fd48 100644
--- a/public/locales/uk/common.json
+++ b/public/locales/uk/common.json
@@ -607,13 +607,13 @@
"poolUsage": "Використання пулу"
},
"pfsense": {
- "load": "Load Avg",
- "memory": "Mem Usage",
- "wanStatus": "WAN Status",
- "up": "Up",
- "down": "Down",
- "temp": "Temp",
- "disk": "Disk Usage",
+ "load": "Середнє завантаження",
+ "memory": "Використання пам'яті",
+ "wanStatus": "Статус WAN",
+ "up": "Вгору",
+ "down": "Вниз",
+ "temp": "Температура",
+ "disk": "Використання диска",
"wanIP": "WAN IP"
}
}
From 61aff6bb563a1f73e71135d72de9e3c00318f528 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:17 +0000
Subject: [PATCH 06/44] Translated using Weblate (German)
Currently translated at 83.3% (371 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/de/
---
public/locales/de/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/de/common.json b/public/locales/de/common.json
index 9266be63..42cdc869 100644
--- a/public/locales/de/common.json
+++ b/public/locales/de/common.json
@@ -615,5 +615,10 @@
"wanStatus": "WAN Status",
"up": "Up",
"down": "Down"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 92d3963804074fdd4c7d835a734eebdd01fb1aee Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:17 +0000
Subject: [PATCH 07/44] Translated using Weblate (Spanish)
Currently translated at 99.3% (442 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/
---
public/locales/es/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/es/common.json b/public/locales/es/common.json
index a0a36eb9..db6f67d8 100644
--- a/public/locales/es/common.json
+++ b/public/locales/es/common.json
@@ -615,5 +615,10 @@
"temp": "Temperatura",
"disk": "Uso del disco",
"wanIP": "IP de la WAN"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 57fdf5e76ec4b7e6b13d11b7586d9878f8a514d2 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:18 +0000
Subject: [PATCH 08/44] Translated using Weblate (French)
Currently translated at 99.3% (442 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/
---
public/locales/fr/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json
index 03f5154c..e7121d66 100644
--- a/public/locales/fr/common.json
+++ b/public/locales/fr/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Util. Disque",
"wanIP": "IP WAN"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From a5a42fb9f7bf629ce7d1054f5ed418432be819ea Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:18 +0000
Subject: [PATCH 09/44] Translated using Weblate (Portuguese)
Currently translated at 91.2% (406 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt/
---
public/locales/pt/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json
index 98705b69..f595c7f7 100644
--- a/public/locales/pt/common.json
+++ b/public/locales/pt/common.json
@@ -624,5 +624,10 @@
"down": "Down",
"temp": "Temp",
"disk": "Disk Usage"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 811d18d18d4cb772f5ec6f61d8aea38c78ece108 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:14 +0000
Subject: [PATCH 10/44] Translated using Weblate (Russian)
Currently translated at 93.2% (415 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ru/
---
public/locales/ru/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json
index b86d182d..d22a8400 100644
--- a/public/locales/ru/common.json
+++ b/public/locales/ru/common.json
@@ -615,5 +615,10 @@
"up": "Up",
"down": "Down",
"temp": "Temp"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 3b413c0030ef4c7bb50e458a3974758f5ab4f895 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:14 +0000
Subject: [PATCH 11/44] Translated using Weblate (Chinese (Simplified))
Currently translated at 91.9% (409 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hans/
---
public/locales/zh-CN/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/zh-CN/common.json b/public/locales/zh-CN/common.json
index 8a928560..120f766c 100644
--- a/public/locales/zh-CN/common.json
+++ b/public/locales/zh-CN/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From cb5c246aaf3673f9f970e8d66153d00deb5f85a3 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:11 +0000
Subject: [PATCH 12/44] Translated using Weblate (Italian)
Currently translated at 64.7% (288 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/it/
---
public/locales/it/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/it/common.json b/public/locales/it/common.json
index cd8e57ed..1a0d52ec 100644
--- a/public/locales/it/common.json
+++ b/public/locales/it/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From b764f58013a3ec553aaaf2e9397c21a48a332c9a Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:11 +0000
Subject: [PATCH 13/44] =?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 17.7% (79 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nb_NO/
---
public/locales/nb-NO/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/nb-NO/common.json b/public/locales/nb-NO/common.json
index caa3b49f..be50bd21 100644
--- a/public/locales/nb-NO/common.json
+++ b/public/locales/nb-NO/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 73f850459d1d1007cd20b6baa870b1e99f077803 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:12 +0000
Subject: [PATCH 14/44] Translated using Weblate (Vietnamese)
Currently translated at 9.8% (44 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/vi/
---
public/locales/vi/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json
index d22fcb74..66e96a05 100644
--- a/public/locales/vi/common.json
+++ b/public/locales/vi/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 4f4cf5beab1f5786902a40eda2ec40031a958f20 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:12 +0000
Subject: [PATCH 15/44] Translated using Weblate (Dutch)
Currently translated at 54.3% (242 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nl/
---
public/locales/nl/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json
index 8c43d122..93c851bc 100644
--- a/public/locales/nl/common.json
+++ b/public/locales/nl/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 27d4117da726197af0c914fc4b9051ee0b58ec35 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:13 +0000
Subject: [PATCH 16/44] Translated using Weblate (Chinese (Traditional))
Currently translated at 93.2% (415 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hant/
---
public/locales/zh-Hant/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json
index 0170d4b1..8e869cc4 100644
--- a/public/locales/zh-Hant/common.json
+++ b/public/locales/zh-Hant/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 5b70cdc89239c301c09f0c3ad6a5cf8c2c2fd527 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:13 +0000
Subject: [PATCH 17/44] Translated using Weblate (Catalan)
Currently translated at 58.8% (262 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ca/
---
public/locales/ca/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json
index e7fa5de4..8b9f1e12 100644
--- a/public/locales/ca/common.json
+++ b/public/locales/ca/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 89a790a4a6601096b35245c639193bbb1752e68e Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:09 +0000
Subject: [PATCH 18/44] Translated using Weblate (Polish)
Currently translated at 84.4% (376 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pl/
---
public/locales/pl/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json
index 0ac07522..d611a744 100644
--- a/public/locales/pl/common.json
+++ b/public/locales/pl/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From affd585fad983342233edf5db82a827bfceb7909 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:13 +0000
Subject: [PATCH 19/44] Translated using Weblate (Swedish)
Currently translated at 29.6% (132 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sv/
---
public/locales/sv/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json
index 409e4910..f83d35f2 100644
--- a/public/locales/sv/common.json
+++ b/public/locales/sv/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From f5e5e8bb404e2269ea43125b15f5cc5d78d2be8b Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:14 +0000
Subject: [PATCH 20/44] Translated using Weblate (Croatian)
Currently translated at 97.5% (434 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hr/
---
public/locales/hr/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json
index fbb82319..4f34db97 100644
--- a/public/locales/hr/common.json
+++ b/public/locales/hr/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 538a718f15db0354afdf4b709af8202509baa436 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:15 +0000
Subject: [PATCH 21/44] Translated using Weblate (Hungarian)
Currently translated at 24.2% (108 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hu/
---
public/locales/hu/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json
index 166a3ca6..e971e9aa 100644
--- a/public/locales/hu/common.json
+++ b/public/locales/hu/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From a49f3114a0bd9eb953b7c23d416c6c4e15793086 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:15 +0000
Subject: [PATCH 22/44] Translated using Weblate (Hebrew)
Currently translated at 22.6% (101 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/he/
---
public/locales/he/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/he/common.json b/public/locales/he/common.json
index c76cd44d..35d07e2d 100644
--- a/public/locales/he/common.json
+++ b/public/locales/he/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 062b0e468a5548f985e7ea12c9338f2a7166bb1c Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:16 +0000
Subject: [PATCH 23/44] Translated using Weblate (Romanian)
Currently translated at 33.9% (151 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ro/
---
public/locales/ro/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json
index bfac3c37..8dc75f2c 100644
--- a/public/locales/ro/common.json
+++ b/public/locales/ro/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 16c4b8d8a4aa622dfe1e81df06989d8537fef027 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:15 +0000
Subject: [PATCH 24/44] Translated using Weblate (Portuguese (Brazil))
Currently translated at 91.2% (406 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt_BR/
---
public/locales/pt-BR/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/pt-BR/common.json b/public/locales/pt-BR/common.json
index 94d3bcb6..930ad2f9 100644
--- a/public/locales/pt-BR/common.json
+++ b/public/locales/pt-BR/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 2d5622011545de97945490cfeec5cc2a2bda2596 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:21 +0000
Subject: [PATCH 25/44] Translated using Weblate (Yue (Traditional))
Currently translated at 26.5% (118 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/yue_Hant/
---
public/locales/yue/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json
index 91164f26..b978b641 100644
--- a/public/locales/yue/common.json
+++ b/public/locales/yue/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From d0a08edc3c115291552277027aea206ec79d4fc5 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:18 +0000
Subject: [PATCH 26/44] Translated using Weblate (Finnish)
Currently translated at 40.0% (178 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fi/
---
public/locales/fi/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json
index 9619fddf..6ad2496a 100644
--- a/public/locales/fi/common.json
+++ b/public/locales/fi/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 14de8b690dcf2df80a7a5c2f18665294041e18e7 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:19 +0000
Subject: [PATCH 27/44] Translated using Weblate (Telugu)
Currently translated at 48.7% (217 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/te/
---
public/locales/te/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/te/common.json b/public/locales/te/common.json
index cbee4366..23c403f8 100644
--- a/public/locales/te/common.json
+++ b/public/locales/te/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 836c61effa5aab1b60eafa90f97c81d7b4fcae93 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:19 +0000
Subject: [PATCH 28/44] Translated using Weblate (Bulgarian)
Currently translated at 10.3% (46 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/bg/
---
public/locales/bg/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json
index 013194f5..4a66fb4a 100644
--- a/public/locales/bg/common.json
+++ b/public/locales/bg/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 51b8b9e61e95d4eebdaa96171327f8aa5a4c01bf Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:19 +0000
Subject: [PATCH 29/44] Translated using Weblate (Turkish)
Currently translated at 71.2% (317 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/tr/
---
public/locales/tr/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json
index f3552706..92331cd8 100644
--- a/public/locales/tr/common.json
+++ b/public/locales/tr/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From ad14d100df462cdbfa69933f22d2ba008145f837 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:20 +0000
Subject: [PATCH 30/44] Translated using Weblate (Serbian)
Currently translated at 2.0% (9 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sr/
---
public/locales/sr/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json
index 2e0792bb..77eb2aff 100644
--- a/public/locales/sr/common.json
+++ b/public/locales/sr/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 9aa230fafb21d8f2ddf793b3a50b463aa402ddb5 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:20 +0000
Subject: [PATCH 31/44] Translated using Weblate (Arabic)
Currently translated at 58.8% (262 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ar/
---
public/locales/ar/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json
index 15ee2802..733d2b4d 100644
--- a/public/locales/ar/common.json
+++ b/public/locales/ar/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From ee9af5cf057b551f04df214a5925647f73347bc8 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:07 +0000
Subject: [PATCH 32/44] Translated using Weblate (Czech)
Currently translated at 95.9% (427 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/cs/
---
public/locales/cs/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json
index 75fc9adb..c481f558 100644
--- a/public/locales/cs/common.json
+++ b/public/locales/cs/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From ad53770edd963c21e763713d4cca988454ddd900 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:09 +0000
Subject: [PATCH 33/44] Translated using Weblate (Danish)
Currently translated at 44.4% (198 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/da/
---
public/locales/da/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/da/common.json b/public/locales/da/common.json
index 6d5aea5d..7569785d 100644
--- a/public/locales/da/common.json
+++ b/public/locales/da/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From bc4c22b0a77208a51b1b1acbf5d4faf1ba4451d0 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:10 +0000
Subject: [PATCH 34/44] Translated using Weblate (Malay)
Currently translated at 56.8% (253 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ms/
---
public/locales/ms/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json
index d13b3ce3..19ca06ba 100644
--- a/public/locales/ms/common.json
+++ b/public/locales/ms/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 03a75e287a8df6547bde3e89f53941b290c2f553 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:10 +0000
Subject: [PATCH 35/44] Translated using Weblate (Hindi)
Currently translated at 2.0% (9 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hi/
---
public/locales/hi/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json
index 77144f0a..c036a98c 100644
--- a/public/locales/hi/common.json
+++ b/public/locales/hi/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From b50d001756d7e60dec3415ef4da553152abbba02 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:08 +0000
Subject: [PATCH 36/44] Translated using Weblate (Esperanto)
Currently translated at 33.0% (147 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/eo/
---
public/locales/eo/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json
index e88a2d1c..78c153a6 100644
--- a/public/locales/eo/common.json
+++ b/public/locales/eo/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From e316175ccec0471f1e8dde60944b8782a613df4f Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:08 +0000
Subject: [PATCH 37/44] Translated using Weblate (Ukrainian)
Currently translated at 99.3% (442 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/uk/
---
public/locales/uk/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json
index e0a9fd48..2727a5fe 100644
--- a/public/locales/uk/common.json
+++ b/public/locales/uk/common.json
@@ -615,5 +615,10 @@
"temp": "Температура",
"disk": "Використання диска",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From ad04c056ca297114e7ac39510f727b8e500a0c2e Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:10 +0000
Subject: [PATCH 38/44] Translated using Weblate (Japanese)
Currently translated at 84.0% (374 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ja/
---
public/locales/ja/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json
index b4cb48c3..f6404127 100644
--- a/public/locales/ja/common.json
+++ b/public/locales/ja/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From f09bbd293c097358b1ee69d694595d567f8405db Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:09 +0000
Subject: [PATCH 39/44] Translated using Weblate (Latvian)
Currently translated at 26.7% (119 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/lv/
---
public/locales/lv/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/lv/common.json b/public/locales/lv/common.json
index 7835646c..035712bc 100644
--- a/public/locales/lv/common.json
+++ b/public/locales/lv/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 1027eb00a0673729f53c75870f41bf0bbcc59637 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:07 +0000
Subject: [PATCH 40/44] Translated using Weblate (Thai)
Currently translated at 10.5% (47 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/th/
---
public/locales/th/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/th/common.json b/public/locales/th/common.json
index 36bc7370..e3bf43f9 100644
--- a/public/locales/th/common.json
+++ b/public/locales/th/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 79199dccfe805cd4bfaf364121b3bdac5f55711a Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:16 +0000
Subject: [PATCH 41/44] Translated using Weblate (Slovak)
Currently translated at 2.0% (9 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sk/
---
public/locales/sk/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/sk/common.json b/public/locales/sk/common.json
index c9280a79..f7ab543e 100644
--- a/public/locales/sk/common.json
+++ b/public/locales/sk/common.json
@@ -615,5 +615,10 @@
"down": "Down",
"temp": "Temp",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 7f7c99c3615cbc51cc928777d6f2ba9bf7fb5ca1 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:16 +0000
Subject: [PATCH 42/44] Translated using Weblate (Korean)
Currently translated at 39.1% (174 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ko/
---
public/locales/ko/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/ko/common.json b/public/locales/ko/common.json
index ab49c795..b13ecf07 100644
--- a/public/locales/ko/common.json
+++ b/public/locales/ko/common.json
@@ -615,5 +615,10 @@
"wanStatus": "WAN Status",
"up": "Up",
"down": "Down"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 1c7c11f0938d234029297778fee902d5a3fdfba5 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:07 +0000
Subject: [PATCH 43/44] Translated using Weblate (Greek)
Currently translated at 31.0% (138 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/el/
---
public/locales/el/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/el/common.json b/public/locales/el/common.json
index 30a07c63..a14b42a2 100644
--- a/public/locales/el/common.json
+++ b/public/locales/el/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}
From 7555b21211bde11a16bbc2d69ab749213e2618e3 Mon Sep 17 00:00:00 2001
From: Anonymous
Date: Mon, 15 May 2023 04:27:11 +0000
Subject: [PATCH 44/44] Translated using Weblate (Slovenian)
Currently translated at 97.5% (434 of 445 strings)
Translation: Homepage/Homepage
Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sl/
---
public/locales/sl/common.json | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/public/locales/sl/common.json b/public/locales/sl/common.json
index a3c24bb5..b80e81f7 100644
--- a/public/locales/sl/common.json
+++ b/public/locales/sl/common.json
@@ -615,5 +615,10 @@
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
+ },
+ "caddy": {
+ "upstreams": "Upstreams",
+ "requests": "Current requests",
+ "requests_failed": "Failed requests"
}
}