diff --git a/src/UI/Status/StatusGUI.svelte b/src/UI/Status/StatusGUI.svelte index 3dd8ad4dd..9bf90cb92 100644 --- a/src/UI/Status/StatusGUI.svelte +++ b/src/UI/Status/StatusGUI.svelte @@ -351,6 +351,16 @@ }) }) + services.push({ + name: "Translation service (Weblate)", + status: testDownload("https://translate.mapcomplete.org", true).mapD(r => { + if (r["success"]) { + return "online" + } + return "offline" + + }) + }) } let all = new UIEventSource<"online" | "degraded" | "offline">("online")