From a55bc357fdc71dec9bbd5bb03187536df83202d0 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 5 Mar 2023 23:34:46 -0800 Subject: [PATCH 001/188] Add audiobookshelf widget --- public/locales/en/common.json | 6 +++ src/widgets/audiobookshelf/component.jsx | 46 +++++++++++++++++ src/widgets/audiobookshelf/proxy.js | 64 ++++++++++++++++++++++++ src/widgets/audiobookshelf/widget.js | 14 ++++++ src/widgets/components.js | 1 + src/widgets/widgets.js | 2 + 6 files changed, 133 insertions(+) create mode 100755 src/widgets/audiobookshelf/component.jsx create mode 100644 src/widgets/audiobookshelf/proxy.js create mode 100755 src/widgets/audiobookshelf/widget.js diff --git a/public/locales/en/common.json b/public/locales/en/common.json index a9d6ed34..6e89bf9f 100755 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -540,5 +540,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } diff --git a/src/widgets/audiobookshelf/component.jsx b/src/widgets/audiobookshelf/component.jsx new file mode 100755 index 00000000..2ac38be0 --- /dev/null +++ b/src/widgets/audiobookshelf/component.jsx @@ -0,0 +1,46 @@ +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: librariesData, error: librariesError } = useWidgetAPI(widget, "libraries"); + + + if (librariesError) { + return ; + } + + if (!librariesData) { + return ( + + + + + + + ); + } + + const podcastLibraries = librariesData.filter(l => l.mediaType === "podcast"); + const bookLibraries = librariesData.filter(l => l.mediaType === "book"); + + const totalPodcasts = podcastLibraries.reduce((total, pL) => parseInt(pL.stats?.totalItems, 10) + total, 0); + const totalBooks = bookLibraries.reduce((total, bL) => parseInt(bL.stats?.totalItems, 10) + total, 0); + + const totalPodcastsDuration = podcastLibraries.reduce((total, pL) => parseFloat(pL.stats?.totalDuration) + total, 0); + const totalBooksDuration = bookLibraries.reduce((total, bL) => parseFloat(bL.stats?.totalDuration) + total, 0); + + return ( + + + + + + + ); +} diff --git a/src/widgets/audiobookshelf/proxy.js b/src/widgets/audiobookshelf/proxy.js new file mode 100644 index 00000000..cdcb5183 --- /dev/null +++ b/src/widgets/audiobookshelf/proxy.js @@ -0,0 +1,64 @@ +import { httpProxy } from "utils/proxy/http"; +import { formatApiCall } from "utils/proxy/api-helpers"; +import getServiceWidget from "utils/config/service-helpers"; +import createLogger from "utils/logger"; +import widgets from "widgets/widgets"; + +const proxyName = "audiobookshelfProxyHandler"; +const logger = createLogger(proxyName); + +async function retrieveFromAPI(url, key) { + const headers = { + "content-type": "application/json", + "Authorization": `Bearer ${key}` + }; + + const [status, , data] = await httpProxy(url, { headers }); + + if (status !== 200) { + throw new Error(`Error getting data from Audiobookshelf: ${status}. Data: ${data.toString()}`); + } + + return JSON.parse(Buffer.from(data).toString()); +} + +export default async function audiobookshelfProxyHandler(req, res) { + const { group, service, endpoint } = req.query; + + if (!group || !service) { + logger.debug("Invalid or missing service '%s' or group '%s'", service, group); + return res.status(400).json({ error: "Invalid proxy service type" }); + } + + const widget = await getServiceWidget(group, service); + + if (!widget) { + logger.debug("Invalid or missing widget for service '%s' in group '%s'", service, group); + return res.status(400).json({ error: "Invalid proxy service type" }); + } + + if (!widget.key) { + logger.debug("Invalid or missing key for service '%s' in group '%s'", service, group); + return res.status(400).json({ error: "Missing widget key" }); + } + + const apiURL = widgets[widget.type].api; + + try { + const url = new URL(formatApiCall(apiURL, { endpoint, ...widget })); + const libraryData = await retrieveFromAPI(url, widget.key); + + const libraryStats = await Promise.all(libraryData.libraries.map(async l => { + const stats = await retrieveFromAPI(new URL(formatApiCall(apiURL, { endpoint: `libraries/${l.id}/stats`, ...widget })), widget.key); + return { + ...l, + stats + }; + })); + + return res.status(200).send(libraryStats); + } catch (e) { + logger.error(e.message); + return res.status(500).send({error: {message: e.message}}); + } +} diff --git a/src/widgets/audiobookshelf/widget.js b/src/widgets/audiobookshelf/widget.js new file mode 100755 index 00000000..011f726a --- /dev/null +++ b/src/widgets/audiobookshelf/widget.js @@ -0,0 +1,14 @@ +import audiobookshelfProxyHandler from "./proxy"; + +const widget = { + api: "{url}/api/{endpoint}", + proxyHandler: audiobookshelfProxyHandler, + + mappings: { + libraries: { + endpoint: "libraries", + }, + }, +}; + +export default widget; \ No newline at end of file diff --git a/src/widgets/components.js b/src/widgets/components.js index cfd3d665..aa54e246 100644 --- a/src/widgets/components.js +++ b/src/widgets/components.js @@ -2,6 +2,7 @@ import dynamic from "next/dynamic"; const components = { adguard: dynamic(() => import("./adguard/component")), + audiobookshelf: dynamic(() => import("./audiobookshelf/component")), authentik: dynamic(() => import("./authentik/component")), autobrr: dynamic(() => import("./autobrr/component")), bazarr: dynamic(() => import("./bazarr/component")), diff --git a/src/widgets/widgets.js b/src/widgets/widgets.js index 0716c1d6..ab2d44b2 100644 --- a/src/widgets/widgets.js +++ b/src/widgets/widgets.js @@ -1,4 +1,5 @@ import adguard from "./adguard/widget"; +import audiobookshelf from "./audiobookshelf/widget"; import authentik from "./authentik/widget"; import autobrr from "./autobrr/widget"; import bazarr from "./bazarr/widget"; @@ -75,6 +76,7 @@ import xteve from "./xteve/widget"; const widgets = { adguard, + audiobookshelf, authentik, autobrr, bazarr, From c9daea1f22e98d382c8e1219e1fe4c051ee66237 Mon Sep 17 00:00:00 2001 From: Bastian Date: Tue, 7 Mar 2023 22:17:37 +0000 Subject: [PATCH 002/188] Translated using Weblate (German) Currently translated at 72.7% (272 of 374 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/de/ --- public/locales/de/common.json | 72 +++++++++++++++++------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/public/locales/de/common.json b/public/locales/de/common.json index 1000313f..14b28fd2 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -106,7 +106,7 @@ "pending": "Ausstehend", "approved": "Genehmigt", "available": "Verfügbar", - "processing": "Processing" + "processing": "Wird verarbeitet" }, "sabnzbd": { "rate": "Geschwindigkeit", @@ -363,7 +363,7 @@ "seed": "Seed" }, "tdarr": { - "queue": "Queue", + "queue": "Warteschlange", "processed": "Processed", "errored": "Errored", "saved": "Saved" @@ -394,8 +394,8 @@ "seed": "Seed" }, "mikrotik": { - "cpuLoad": "CPU Load", - "memoryUsed": "Memory Used", + "cpuLoad": "CPU Auslastung", + "memoryUsed": "RAM Verbrauch", "uptime": "Uptime", "numberOfLeases": "Leases" }, @@ -405,16 +405,16 @@ "streams_xepg": "XEPG Channels" }, "opnsense": { - "cpu": "CPU Load", + "cpu": "CPU Auslastung", "memory": "Active Memory", "wanUpload": "WAN Upload", "wanDownload": "WAN Download" }, "moonraker": { - "printer_state": "Printer State", - "print_status": "Print Status", - "print_progress": "Progress", - "layers": "Layers" + "printer_state": "Drucker Status", + "print_status": "Druck Status", + "print_progress": "Fortschritt", + "layers": "Schichten" }, "medusa": { "wanted": "Wanted", @@ -424,8 +424,8 @@ "octoprint": { "printer_state": "Status", "temp_tool": "Tool temp", - "temp_bed": "Bed temp", - "job_completion": "Completion" + "temp_bed": "Bett Temp", + "job_completion": "Fortschritt" }, "cloudflared": { "origin_ip": "Origin IP", @@ -435,66 +435,66 @@ "cpu_usage": "CPU", "datastore_usage": "Datastore", "failed_tasks_24h": "Failed Tasks 24h", - "memory_usage": "Memory" + "memory_usage": "RAM" }, "immich": { - "users": "Users", - "photos": "Photos", + "users": "Benutzer", + "photos": "Fotos", "videos": "Videos", - "storage": "Storage" + "storage": "Speicher" }, "uptimekuma": { "up": "Sites Up", "down": "Sites Down", "uptime": "Uptime", - "incident": "Incident", + "incident": "Vorfall", "m": "m" }, "komga": { "libraries": "Libraries", "series": "Series", - "books": "Books" + "books": "Bücher" }, "mylar": { - "series": "Series", + "series": "Serie", "issues": "Issues", - "wanted": "Wanted" + "wanted": "Gesucht" }, "photoprism": { - "albums": "Albums", - "photos": "Photos", + "albums": "Alben", + "photos": "Fotos", "videos": "Videos", - "people": "People" + "people": "Personen" }, "diskstation": { - "days": "Days", + "days": "Tage", "uptime": "Uptime", - "volumeAvailable": "Available" + "volumeAvailable": "Verfügbar" }, "fileflows": { - "queue": "Queue", - "processing": "Processing", + "queue": "Warteschlange", + "processing": "Wird verarbeitet", "processed": "Processed", - "time": "Time" + "time": "Zeit" }, "grafana": { "dashboards": "Dashboards", - "datasources": "Data Sources", + "datasources": "Datenquellen", "totalalerts": "Total Alerts", "alertstriggered": "Alerts Triggered" }, "nextcloud": { - "cpuload": "Cpu Load", - "memoryusage": "Memory Usage", - "freespace": "Free Space", - "activeusers": "Active Users" + "cpuload": "CPU Last", + "memoryusage": "RAM Verbrauch", + "freespace": "Freier Speicher", + "activeusers": "Aktive Nutzer" }, "kopia": { "status": "Status", - "size": "Size", + "size": "Größe", "lastrun": "Last Run", "nextrun": "Next Run", - "failed": "Failed" + "failed": "Fehlgeschlagen" }, "unmanic": { "active_workers": "Active Workers", @@ -529,7 +529,7 @@ }, "ghostfolio": { "gross_percent_max": "All time", - "gross_percent_today": "Today", - "gross_percent_1y": "One year" + "gross_percent_today": "Heute", + "gross_percent_1y": "Ein Jahr" } } From fb15f5dbc9273a3a024bfd70edad4544ebfe9208 Mon Sep 17 00:00:00 2001 From: Bastian Date: Wed, 8 Mar 2023 08:40:28 +0000 Subject: [PATCH 003/188] Translated using Weblate (German) Currently translated at 94.9% (355 of 374 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/de/ --- public/locales/de/common.json | 116 +++++++++++++++++----------------- 1 file changed, 58 insertions(+), 58 deletions(-) diff --git a/public/locales/de/common.json b/public/locales/de/common.json index 14b28fd2..baff0973 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -17,7 +17,7 @@ "used": "Gebraucht", "load": "Last", "cpu": "CPU", - "mem": "MEM" + "mem": "RAM" }, "docker": { "rx": "Rx", @@ -25,8 +25,8 @@ "mem": "Mem", "cpu": "Prozessor", "offline": "Offline", - "error": "Error", - "unknown": "Unknown" + "error": "Fehler", + "unknown": "Unbekannt" }, "emby": { "playing": "Spielen", @@ -205,7 +205,7 @@ "devices": "Geräte", "lan_devices": "LAN-Geräte", "wlan_devices": "WLAN Geräte", - "empty_data": "Subsystem status unknown" + "empty_data": "Subsystem status unbekannt" }, "plex": { "streams": "Aktive Streams", @@ -282,9 +282,9 @@ "quicklaunch": { "bookmark": "Lesezeichen", "service": "Dienst", - "search": "Search", - "custom": "Custom", - "visit": "Visit", + "search": "Suchen", + "custom": "Benutzerdefiniert", + "visit": "Besuchen", "url": "URL" }, "homebridge": { @@ -319,36 +319,36 @@ "time": "{{value, number(style: unit; unitDisplay: long;)}}" }, "navidrome": { - "nothing_streaming": "No Active Streams", - "please_wait": "Please Wait" + "nothing_streaming": "Keine Aktiven Übertragungen", + "please_wait": "Bitte warten" }, "pyload": { - "speed": "Speed", - "active": "Active", - "queue": "Queue", - "total": "Total" + "speed": "Geschwindigkeit", + "active": "Aktiv", + "queue": "Warteschlange", + "total": "Gesamt" }, "gluetun": { - "public_ip": "Public IP", + "public_ip": "Öffentliche IP", "region": "Region", - "country": "Country" + "country": "Land" }, "hdhomerun": { - "channels": "Channels", + "channels": "Kanäle", "hd": "HD" }, "ping": { "ping": "Ping", - "error": "Error" + "error": "Fehler" }, "scrutiny": { - "passed": "Passed", - "failed": "Failed", - "unknown": "Unknown" + "passed": "Bestanden", + "failed": "Fehlgeschlagen", + "unknown": "Unbekannt" }, "paperlessngx": { - "inbox": "Inbox", - "total": "Total" + "inbox": "Eingang", + "total": "Gesamt" }, "deluge": { "download": "Download", @@ -364,28 +364,28 @@ }, "tdarr": { "queue": "Warteschlange", - "processed": "Processed", - "errored": "Errored", - "saved": "Saved" + "processed": "Verarbeitet", + "errored": "Fehlgeschlagen", + "saved": "Gespeichert" }, "miniflux": { - "unread": "Unread", - "read": "Read" + "unread": "Ungelesen", + "read": "Lesen" }, "nextdns": { - "wait": "Please Wait", - "no_devices": "No Device Data Received" + "wait": "Bitte Warten", + "no_devices": "Keine Daten empfangen" }, "common": { "bibyterate": "{{value, rate(bits: false; binary: true)}}", "bibitrate": "{{value, rate(bits: true; binary: true)}}" }, "omada": { - "connectedAp": "Connected APs", - "activeUser": "Active devices", - "alerts": "Alerts", - "connectedGateway": "Connected gateways", - "connectedSwitches": "Connected switches" + "connectedAp": "Verbundene APs", + "activeUser": "Aktive Geräte", + "alerts": "Meldungen", + "connectedGateway": "Verbundene Gateways", + "connectedSwitches": "Verbundene Switches" }, "downloadstation": { "download": "Download", @@ -396,17 +396,17 @@ "mikrotik": { "cpuLoad": "CPU Auslastung", "memoryUsed": "RAM Verbrauch", - "uptime": "Uptime", + "uptime": "Laufzeit", "numberOfLeases": "Leases" }, "xteve": { - "streams_all": "All Streams", - "streams_active": "Active Streams", - "streams_xepg": "XEPG Channels" + "streams_all": "Keine Übertragungen", + "streams_active": "Aktive Streams", + "streams_xepg": "XEPG Kanäle" }, "opnsense": { "cpu": "CPU Auslastung", - "memory": "Active Memory", + "memory": "Aktiver RAM", "wanUpload": "WAN Upload", "wanDownload": "WAN Download" }, @@ -417,13 +417,13 @@ "layers": "Schichten" }, "medusa": { - "wanted": "Wanted", - "queued": "Queued", - "series": "Series" + "wanted": "Gesucht", + "queued": "Wartend", + "series": "Serie" }, "octoprint": { "printer_state": "Status", - "temp_tool": "Tool temp", + "temp_tool": "Düsen Temp", "temp_bed": "Bett Temp", "job_completion": "Fortschritt" }, @@ -433,8 +433,8 @@ }, "proxmoxbackupserver": { "cpu_usage": "CPU", - "datastore_usage": "Datastore", - "failed_tasks_24h": "Failed Tasks 24h", + "datastore_usage": "Datenspeicher", + "failed_tasks_24h": "Fehlgeschlagene Prozesse 24h", "memory_usage": "RAM" }, "immich": { @@ -446,13 +446,13 @@ "uptimekuma": { "up": "Sites Up", "down": "Sites Down", - "uptime": "Uptime", + "uptime": "Laufzeit", "incident": "Vorfall", "m": "m" }, "komga": { "libraries": "Libraries", - "series": "Series", + "series": "Serie", "books": "Bücher" }, "mylar": { @@ -468,19 +468,19 @@ }, "diskstation": { "days": "Tage", - "uptime": "Uptime", + "uptime": "Laufzeit", "volumeAvailable": "Verfügbar" }, "fileflows": { "queue": "Warteschlange", "processing": "Wird verarbeitet", - "processed": "Processed", + "processed": "Verarbeitet", "time": "Zeit" }, "grafana": { "dashboards": "Dashboards", "datasources": "Datenquellen", - "totalalerts": "Total Alerts", + "totalalerts": "Gesamte Meldungen", "alertstriggered": "Alerts Triggered" }, "nextcloud": { @@ -492,8 +492,8 @@ "kopia": { "status": "Status", "size": "Größe", - "lastrun": "Last Run", - "nextrun": "Next Run", + "lastrun": "Letzter Durchlauf", + "nextrun": "Nächster Durchlauf", "failed": "Fehlgeschlagen" }, "unmanic": { @@ -503,16 +503,16 @@ }, "healthchecks": { "grace": "In Grace Period", - "new": "New", + "new": "Neu", "up": "Online", "down": "Offline", - "paused": "Paused", + "paused": "Pausiert", "status": "Status", - "last_ping": "Last Ping", - "never": "No pings yet" + "last_ping": "Letzter Ping", + "never": "Noch keine Pings" }, "pterodactyl": { - "servers": "Servers", + "servers": "Server", "nodes": "Nodes" }, "prometheus": { @@ -521,7 +521,7 @@ "targets_total": "Total Targets" }, "minecraft": { - "players": "Players", + "players": "Spieler", "version": "Version", "status": "Status", "up": "Online", From 78642a36d06c897417b49de5da6948c0fc61e8b6 Mon Sep 17 00:00:00 2001 From: Zlendy Date: Thu, 9 Mar 2023 19:11:38 +0100 Subject: [PATCH 004/188] Fix: immich API now returns bytes for storage --- src/widgets/immich/component.jsx | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/src/widgets/immich/component.jsx b/src/widgets/immich/component.jsx index 310ce0b2..b90bda8d 100644 --- a/src/widgets/immich/component.jsx +++ b/src/widgets/immich/component.jsx @@ -1,8 +1,11 @@ +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: immichData, error: immichError } = useWidgetAPI(widget); @@ -27,7 +30,17 @@ export default function Component({ service }) { - + ); } From eaec0f075cb9a0e3acf0f54aac7fc594ae26719b Mon Sep 17 00:00:00 2001 From: Nonoss117 Date: Fri, 10 Mar 2023 12:52:55 +0000 Subject: [PATCH 005/188] Translated using Weblate (French) Currently translated at 100.0% (374 of 374 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 418acd68..0ad2c46a 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -47,12 +47,12 @@ }, "sonarr": { "wanted": "Demande", - "queued": "En attente", + "queued": "Attente", "series": "Séries" }, "radarr": { "wanted": "Demande", - "queued": "En attente", + "queued": "Attente", "movies": "Films", "missing": "Manquant" }, @@ -103,7 +103,7 @@ "wait": "Veuillez patienter" }, "overseerr": { - "pending": "En attente", + "pending": "Attente", "approved": "Demande", "available": "Disponible", "processing": "En traitement" From 263801677aecb829b33454f8f0c0287a74c77c7b Mon Sep 17 00:00:00 2001 From: Dinesh Reddy J Date: Sun, 12 Mar 2023 21:57:13 +0530 Subject: [PATCH 006/188] Added Jellyfin Widget to show number of movies,Series, Episodes songs #264 --- src/widgets/emby/component.jsx | 63 +++++++++++++++++++++++++++++++--- src/widgets/emby/widget.js | 9 +++++ 2 files changed, 67 insertions(+), 5 deletions(-) diff --git a/src/widgets/emby/component.jsx b/src/widgets/emby/component.jsx index a61cd7aa..e7d65a34 100644 --- a/src/widgets/emby/component.jsx +++ b/src/widgets/emby/component.jsx @@ -2,6 +2,7 @@ import { useTranslation } from "next-i18next"; import { BsVolumeMuteFill, BsFillPlayFill, BsPauseFill, BsCpu, BsFillCpuFill } from "react-icons/bs"; import { MdOutlineSmartDisplay } from "react-icons/md"; +import Block from "components/services/widget/block"; import Container from "components/services/widget/container"; import { formatProxyUrlWithSegments } from "utils/proxy/api-helpers"; import useWidgetAPI from "utils/proxy/use-widget-api"; @@ -161,18 +162,45 @@ export default function Component({ service }) { refreshInterval: 5000, }); + const { + data: countData, + error: countError, + } = useWidgetAPI(widget, "Count", { + refreshInterval: 60000,}); + async function handlePlayCommand(session, command) { const url = formatProxyUrlWithSegments(widget, "PlayControl", { sessionId: session.Id, command, }); await fetch(url).then(() => { - sessionMutate(); + sessionMutate; }); } - if (sessionsError) { - return ; + if (sessionsError || countError) { + return ; + } + + if (!sessionsData && countData) { + return ( + <> + + + + + + +
+
+ - +
+
+ - +
+
+ + ); } if (!sessionsData) { @@ -200,8 +228,15 @@ export default function Component({ service }) { return 0; }); - if (playing.length === 0) { + if (playing.length === 0 && countData) { return ( + <> + + + + + +
{t("emby.no_active")} @@ -210,22 +245,39 @@ export default function Component({ service }) { -
+ ); } - if (playing.length === 1) { + if (playing.length === 1 && countData) { const session = playing[0]; return ( + <> + + + + + +
handlePlayCommand(currentSession, command)} session={session} />
+ ); } + if (countData && playing.length === -1) return ( + <> + + + + + +
{playing.map((session) => ( ))}
+ ); } diff --git a/src/widgets/emby/widget.js b/src/widgets/emby/widget.js index 27fc749b..bbf13a30 100644 --- a/src/widgets/emby/widget.js +++ b/src/widgets/emby/widget.js @@ -8,6 +8,15 @@ const widget = { Sessions: { endpoint: "Sessions", }, + Count: { + endpoint: "Items/Counts", + segments: [ + "MovieCount", + "SeriesCount", + "EpisodeCount", + "SongCount" + ] + }, PlayControl: { method: "POST", endpoint: "Sessions/{sessionId}/Playing/{command}", From 29c7a51b04fafbeb11eca46abad7114a6d94b6b6 Mon Sep 17 00:00:00 2001 From: Dinesh Reddy J Date: Sun, 12 Mar 2023 22:11:15 +0530 Subject: [PATCH 007/188] modified: src/widgets/emby/component.jsx --- src/widgets/emby/component.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/emby/component.jsx b/src/widgets/emby/component.jsx index e7d65a34..a8d4f6b2 100644 --- a/src/widgets/emby/component.jsx +++ b/src/widgets/emby/component.jsx @@ -174,7 +174,7 @@ export default function Component({ service }) { command, }); await fetch(url).then(() => { - sessionMutate; + sessionMutate(); }); } From eaf7ba608b5f9707950ec5d7f16fbcd58e84d099 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 12 Mar 2023 16:50:28 -0700 Subject: [PATCH 008/188] Fix blocks for emby/jellyfin, support enable/disable --- public/locales/en/common.json | 6 +- src/utils/config/service-helpers.js | 8 +- src/widgets/emby/component.jsx | 173 ++++++++++++++-------------- 3 files changed, 101 insertions(+), 86 deletions(-) diff --git a/public/locales/en/common.json b/public/locales/en/common.json index a9d6ed34..db5ffe46 100755 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -72,7 +72,11 @@ "playing": "Playing", "transcoding": "Transcoding", "bitrate": "Bitrate", - "no_active": "No Active Streams" + "no_active": "No Active Streams", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "flood": { "download": "Download", diff --git a/src/utils/config/service-helpers.js b/src/utils/config/service-helpers.js index 49401ee6..317c0f3c 100644 --- a/src/utils/config/service-helpers.js +++ b/src/utils/config/service-helpers.js @@ -247,7 +247,9 @@ export function cleanServiceGroups(groups) { namespace, // kubernetes widget app, podSelector, - wan // opnsense widget + wan, // opnsense widget, + enableBlocks, // emby/jellyfin + enableNowPlaying } = cleanedService.widget; const fieldsList = typeof fields === 'string' ? JSON.parse(fields) : fields; @@ -278,6 +280,10 @@ export function cleanServiceGroups(groups) { if (type === "opnsense") { if (wan) cleanedService.widget.wan = wan; } + if (type === "emby" || type === "jellyfin") { + if (enableBlocks) cleanedService.widget.enableBlocks = enableBlocks === 'true'; + if (enableNowPlaying) cleanedService.widget.enableNowPlaying = enableNowPlaying === 'true'; + } } return cleanedService; diff --git a/src/widgets/emby/component.jsx b/src/widgets/emby/component.jsx index a8d4f6b2..3f70a79d 100644 --- a/src/widgets/emby/component.jsx +++ b/src/widgets/emby/component.jsx @@ -149,6 +149,33 @@ function SessionEntry({ playCommand, session }) { ); } +function CountBlocks({ service, countData }) { + const { t } = useTranslation(); + // allows filtering + // eslint-disable-next-line no-param-reassign + if (service.widget?.type === 'jellyfin') service.widget.type = 'emby' + + if (!countData) { + return ( + + + + + + + ) + } + + return ( + + + + + + + ) +} + export default function Component({ service }) { const { t } = useTranslation(); @@ -179,114 +206,92 @@ export default function Component({ service }) { } if (sessionsError || countError) { - return ; + return ; } - if (!sessionsData && countData) { + const enableBlocks = service.widget?.enableBlocks + const enableNowPlaying = service.widget?.enableNowPlaying ?? true + + if (!sessionsData || !countData) { return ( <> - - - - - - -
+ {enableBlocks && } + {enableNowPlaying &&
-
-
-
+
} ); } - if (!sessionsData) { - return ( -
-
- - + if (enableNowPlaying) { + const playing = sessionsData + .filter((session) => session?.NowPlayingItem) + .sort((a, b) => { + if (a.PlayState.PositionTicks > b.PlayState.PositionTicks) { + return 1; + } + if (a.PlayState.PositionTicks < b.PlayState.PositionTicks) { + return -1; + } + return 0; + }); + + if (playing.length === 0) { + return ( + <> + {enableBlocks && } +
+
+ {t("emby.no_active")} +
+
+ - +
-
- - + + ); + } + + if (playing.length === 1) { + const session = playing[0]; + return ( + <> + {enableBlocks && } +
+ handlePlayCommand(currentSession, command)} + session={session} + />
-
- ); - } - - const playing = sessionsData - .filter((session) => session?.NowPlayingItem) - .sort((a, b) => { - if (a.PlayState.PositionTicks > b.PlayState.PositionTicks) { - return 1; - } - if (a.PlayState.PositionTicks < b.PlayState.PositionTicks) { - return -1; - } - return 0; - }); - - if (playing.length === 0 && countData) { + + ); + } + + if (playing.length === -1) return ( <> - - - - - - + {enableBlocks && }
-
- {t("emby.no_active")} -
-
- - -
+ {playing.map((session) => ( + handlePlayCommand(currentSession, command)} + session={session} + /> + ))}
); } - if (playing.length === 1 && countData) { - const session = playing[0]; + if (enableBlocks) { return ( - <> - - - - - - -
- handlePlayCommand(currentSession, command)} - session={session} - /> -
- - ); + + ) } - - if (countData && playing.length === -1) - return ( - <> - - - - - - -
- {playing.map((session) => ( - handlePlayCommand(currentSession, command)} - session={session} - /> - ))} -
- - ); } From d5cd78e0c92018ce4c5f17c7964486afdb251b81 Mon Sep 17 00:00:00 2001 From: Rabenherz112 Date: Sun, 12 Mar 2023 14:40:16 +0000 Subject: [PATCH 009/188] Translated using Weblate (German) Currently translated at 97.0% (363 of 374 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/de/ --- public/locales/de/common.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/public/locales/de/common.json b/public/locales/de/common.json index baff0973..a2fa85dd 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -428,7 +428,7 @@ "job_completion": "Fortschritt" }, "cloudflared": { - "origin_ip": "Origin IP", + "origin_ip": "Ursprüngliche IP", "status": "Status" }, "proxmoxbackupserver": { @@ -444,20 +444,20 @@ "storage": "Speicher" }, "uptimekuma": { - "up": "Sites Up", - "down": "Sites Down", + "up": "Seiten verfügbar", + "down": "Seiten nicht verfügbar", "uptime": "Laufzeit", "incident": "Vorfall", "m": "m" }, "komga": { - "libraries": "Libraries", + "libraries": "Bibliotheken", "series": "Serie", "books": "Bücher" }, "mylar": { "series": "Serie", - "issues": "Issues", + "issues": "Probleme", "wanted": "Gesucht" }, "photoprism": { @@ -481,7 +481,7 @@ "dashboards": "Dashboards", "datasources": "Datenquellen", "totalalerts": "Gesamte Meldungen", - "alertstriggered": "Alerts Triggered" + "alertstriggered": "Ausgelöste Alarme" }, "nextcloud": { "cpuload": "CPU Last", From cea5b4d841f8f93be409e787c38c6bb62c0dae06 Mon Sep 17 00:00:00 2001 From: Nonoss117 Date: Sat, 11 Mar 2023 17:31:42 +0000 Subject: [PATCH 010/188] Translated using Weblate (French) Currently translated at 100.0% (374 of 374 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 0ad2c46a..760ac43f 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -106,7 +106,7 @@ "pending": "Attente", "approved": "Demande", "available": "Disponible", - "processing": "En traitement" + "processing": "Traitement" }, "sabnzbd": { "rate": "Débit", From bff522eb9daa9e5a29a2b0c5de52f44ca0d5a9b8 Mon Sep 17 00:00:00 2001 From: Starxy Date: Sun, 12 Mar 2023 02:59:12 +0000 Subject: [PATCH 011/188] Translated using Weblate (Chinese (Simplified)) Currently translated at 89.5% (335 of 374 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, 4 insertions(+), 4 deletions(-) diff --git a/public/locales/zh-CN/common.json b/public/locales/zh-CN/common.json index 4668fd56..23b71634 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -484,10 +484,10 @@ "alertstriggered": "Alerts Triggered" }, "nextcloud": { - "cpuload": "Cpu Load", - "memoryusage": "Memory Usage", - "freespace": "Free Space", - "activeusers": "Active Users" + "cpuload": "处理器负载", + "memoryusage": "内存占用", + "freespace": "剩余空间", + "activeusers": "活跃用户" }, "kopia": { "status": "Status", From 7418bb019a375918cdcb649fc5a55fd19d4d8d31 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:10 +0000 Subject: [PATCH 012/188] Translated using Weblate (German) Currently translated at 96.0% (363 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/de/ --- public/locales/de/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/de/common.json b/public/locales/de/common.json index a2fa85dd..f7adc216 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -32,7 +32,11 @@ "playing": "Spielen", "transcoding": "Transcodierung", "bitrate": "Bitrate", - "no_active": "Keine aktiven Streams" + "no_active": "Keine aktiven Streams", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Spielen", From 16ed4faeee18c7c3ea78dd8d0a86878409f13c1e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:15 +0000 Subject: [PATCH 013/188] Translated using Weblate (Spanish) Currently translated at 98.9% (374 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/ --- public/locales/es/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/es/common.json b/public/locales/es/common.json index 708d2a6a..204b0b0e 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -32,7 +32,11 @@ "playing": "Reproduciendo", "transcoding": "Transcodificando", "bitrate": "Tasa de bits", - "no_active": "Sin transmisiones activas" + "no_active": "Sin transmisiones activas", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Reproduciendo", From a112b6ddb889f928039e230252136fa01de2fa35 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:15 +0000 Subject: [PATCH 014/188] Translated using Weblate (French) Currently translated at 98.9% (374 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/ --- public/locales/fr/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index 760ac43f..069c6b4c 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -32,7 +32,11 @@ "playing": "En lecture", "transcoding": "Transcodage", "bitrate": "Débit", - "no_active": "Aucun flux actif" + "no_active": "Aucun flux actif", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "En lecture", From 09401caf7b4cb9dba03ad20f5d285e011a503716 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:17 +0000 Subject: [PATCH 015/188] Translated using Weblate (Portuguese) Currently translated at 67.7% (256 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt/ --- public/locales/pt/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index 983e4af7..f93f45b7 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -32,7 +32,11 @@ "playing": "A reproduzir", "transcoding": "Transcodificação", "bitrate": "Taxa de bits", - "no_active": "Sem streams ativas" + "no_active": "Sem streams ativas", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Reproduzindo", From 9dd04020efaba856ab42a3387950c5f360700425 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:09 +0000 Subject: [PATCH 016/188] Translated using Weblate (Russian) Currently translated at 12.6% (48 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ru/ --- public/locales/ru/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json index 08804f8f..bfeee383 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -32,7 +32,11 @@ "playing": "Воспроизведение", "transcoding": "Транскодирование", "bitrate": "Битрейт", - "no_active": "Нет активных потоков" + "no_active": "Нет активных потоков", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Воспроизведение", From bf032bdc12db246c81505909d4ac86a9fd7f3f18 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:10 +0000 Subject: [PATCH 017/188] Translated using Weblate (Chinese (Simplified)) Currently translated at 88.6% (335 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hans/ --- public/locales/zh-CN/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/zh-CN/common.json b/public/locales/zh-CN/common.json index 23b71634..eec4429e 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -32,7 +32,11 @@ "playing": "播放中", "transcoding": "转码", "bitrate": "比特率", - "no_active": "暂无播放" + "no_active": "暂无播放", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "播放中", From 415c1bcb0905f6544f6137245f597fbe1e1ae703 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:11 +0000 Subject: [PATCH 018/188] Translated using Weblate (Italian) Currently translated at 76.1% (288 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/it/ --- public/locales/it/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/it/common.json b/public/locales/it/common.json index 2bee3742..967f5a9f 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -12,7 +12,11 @@ "playing": "In riproduzione", "transcoding": "Transcodifica", "bitrate": "Bitrate", - "no_active": "Nessuno Stream Attivo" + "no_active": "Nessuno Stream Attivo", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "In riproduzione", From 1cf9961ee8eb9fbd7e60c06bbf5aa66ceb3c8ed0 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:12 +0000 Subject: [PATCH 019/188] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegi?= =?UTF-8?q?an=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 20.8% (79 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nb_NO/ --- public/locales/nb-NO/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/nb-NO/common.json b/public/locales/nb-NO/common.json index 721ca4df..a5642afe 100644 --- a/public/locales/nb-NO/common.json +++ b/public/locales/nb-NO/common.json @@ -32,7 +32,11 @@ "playing": "Spiller", "transcoding": "Transkoding", "bitrate": "Bitrate", - "no_active": "Ingen aktive strømmer" + "no_active": "Ingen aktive strømmer", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Spiller", From 8a7bcaf7f74c8aab9af96149855f6fd2fe781963 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:14 +0000 Subject: [PATCH 020/188] Translated using Weblate (Vietnamese) Currently translated at 11.6% (44 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/vi/ --- public/locales/vi/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json index b887c421..811d8b7d 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -32,7 +32,11 @@ "playing": "Đang chơi", "transcoding": "Chuyển định dạng", "bitrate": "Bitrate", - "no_active": "No Active Streams" + "no_active": "No Active Streams", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Đang chơi", From 90675c6a145294b8b9b1697ef81215a8b003fc88 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:12 +0000 Subject: [PATCH 021/188] Translated using Weblate (Dutch) Currently translated at 23.2% (88 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nl/ --- public/locales/nl/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json index d06da089..e92a8597 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -48,7 +48,11 @@ "playing": "Afspelen", "transcoding": "Transcodering", "bitrate": "Bitsnelheid", - "no_active": "Geen Actieve Steams" + "no_active": "Geen Actieve Steams", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Afspelen", From 4b4138b876eb5d4766bc2789f44b1922e0b7dfce Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:15 +0000 Subject: [PATCH 022/188] Translated using Weblate (Chinese (Traditional)) Currently translated at 93.6% (354 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hant/ --- public/locales/zh-Hant/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json index 9dfa86d2..b9ca7a0d 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -27,7 +27,11 @@ "playing": "正在播放", "transcoding": "轉碼", "bitrate": "位元率", - "no_active": "無播放活動" + "no_active": "無播放活動", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "正在播放", From ec70a71d16bd8aa408e6f815b0af22f1f218d9d5 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:14 +0000 Subject: [PATCH 023/188] Translated using Weblate (Catalan) Currently translated at 68.2% (258 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ca/ --- public/locales/ca/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json index 40e47fe5..b9ce14b5 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -54,7 +54,11 @@ "playing": "Reproduint", "transcoding": "Transcodificant", "bitrate": "Taxa de bits", - "no_active": "Sense reproduccions actives" + "no_active": "Sense reproduccions actives", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Reproduint", From 8e80868027f9863f2650512c62d8e1145c4705c7 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:13 +0000 Subject: [PATCH 024/188] Translated using Weblate (Polish) Currently translated at 75.3% (285 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pl/ --- public/locales/pl/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json index 311cbffa..384781e2 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -20,7 +20,11 @@ "no_active": "Brak aktywnych strumieni", "playing": "Odtwarzanie", "transcoding": "Transkodowanie", - "bitrate": "Bitrate" + "bitrate": "Bitrate", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Odtwarzanie", From f6f1384da7920733cf6102b56e8fb39f06240ac5 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:13 +0000 Subject: [PATCH 025/188] Translated using Weblate (Swedish) Currently translated at 34.9% (132 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sv/ --- public/locales/sv/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json index 4ec515f6..02fd8ae2 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -38,7 +38,11 @@ "playing": "Spelar", "transcoding": "Omkodning", "bitrate": "Bitrate", - "no_active": "Inga aktiva strömmar" + "no_active": "Inga aktiva strömmar", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Spelar", From bcecded090c4eaa998a953dc9b7bf1b7d63aa80e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:11 +0000 Subject: [PATCH 026/188] Translated using Weblate (Croatian) Currently translated at 75.6% (286 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hr/ --- public/locales/hr/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json index 7f0776db..8852b8b5 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -79,7 +79,11 @@ "playing": "Reprodukcija", "transcoding": "Prekodiranje", "bitrate": "Stopa bitova", - "no_active": "Nema aktivnih prijenosa" + "no_active": "Nema aktivnih prijenosa", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Reprodukcija", From 3c1f53410e86b048383ba3e32ffe7ed9a304a05f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:12 +0000 Subject: [PATCH 027/188] Translated using Weblate (Hungarian) Currently translated at 28.5% (108 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hu/ --- public/locales/hu/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json index 778edc26..434d3eb4 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -52,7 +52,11 @@ "playing": "Lejátszás", "transcoding": "Átkódolás", "bitrate": "Bitráta", - "no_active": "Nincs aktív lejátszás" + "no_active": "Nincs aktív lejátszás", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Lejátszás folyamatban", From 6f72c4e52d69669cba4f1d30133484bac0c0ca24 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:16 +0000 Subject: [PATCH 028/188] Translated using Weblate (Hebrew) Currently translated at 26.7% (101 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/he/ --- public/locales/he/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/he/common.json b/public/locales/he/common.json index 085c6c1d..9ab94277 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -38,7 +38,11 @@ "playing": "מנגן", "transcoding": "מקודד", "bitrate": "סיביות", - "no_active": "אין הזרמות פעילות" + "no_active": "אין הזרמות פעילות", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "מנגן", From d6d1c97ee04d6bffb61cd5320f48a42dafc290a7 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:13 +0000 Subject: [PATCH 029/188] Translated using Weblate (Romanian) Currently translated at 36.2% (137 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ro/ --- public/locales/ro/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json index beb9b8ff..e17017f4 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -88,7 +88,11 @@ "playing": "Activ", "transcoding": "Transcodare", "bitrate": "Bitrate", - "no_active": "Niciun stream activ" + "no_active": "Niciun stream activ", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "sabnzbd": { "rate": "Rată", From 363e0a682b474055f3c05c95869ee6d89e8206ea Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:16 +0000 Subject: [PATCH 030/188] Translated using Weblate (Portuguese (Brazil)) Currently translated at 95.5% (361 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt_BR/ --- public/locales/pt-BR/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/pt-BR/common.json b/public/locales/pt-BR/common.json index c096e941..01050b93 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -66,7 +66,11 @@ "playing": "Reproduzindo", "transcoding": "Transcodificando", "bitrate": "Taxa de bits", - "no_active": "Sem transmissões ativas" + "no_active": "Sem transmissões ativas", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Reproduzindo", From f9db8c4a6b1f0f83545e1894d87c44c498c1c0e3 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:21 +0000 Subject: [PATCH 031/188] Translated using Weblate (Yue) Currently translated at 31.2% (118 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/yue/ --- public/locales/yue/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json index 58d8ef56..c7186fd1 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -3,7 +3,11 @@ "transcoding": "轉碼緊", "bitrate": "比特率", "playing": "播放緊", - "no_active": "無任何活動" + "no_active": "無任何活動", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "播放緊", From 95560033d2e17edef884aa5c7688a45536669e1e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:21 +0000 Subject: [PATCH 032/188] Translated using Weblate (Finnish) Currently translated at 47.0% (178 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fi/ --- public/locales/fi/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json index 6d38f078..1b1c9060 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -38,7 +38,11 @@ "playing": "Toistaa", "transcoding": "Transkoodaa", "bitrate": "Bittinopeus", - "no_active": "Ei aktiivisia striimejä" + "no_active": "Ei aktiivisia striimejä", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Toistaa", From d687434b1fc75c406c08382ec3435f5eebf2acb5 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:22 +0000 Subject: [PATCH 033/188] Translated using Weblate (Telugu) Currently translated at 57.4% (217 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/te/ --- public/locales/te/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/te/common.json b/public/locales/te/common.json index 915f59d1..5c04e949 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -55,7 +55,11 @@ "playing": "ఆడుతున్నారు", "transcoding": "ట్రాన్స్‌కోడింగ్", "bitrate": "బిట్రేట్", - "no_active": "యాక్టివ్ స్ట్రీమ్‌లు లేవు" + "no_active": "యాక్టివ్ స్ట్రీమ్‌లు లేవు", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "ఆడుతున్నారు", From d8408562aa6257ca7ae1639c0725be957907020f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:22 +0000 Subject: [PATCH 034/188] Translated using Weblate (Bulgarian) Currently translated at 12.1% (46 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/bg/ --- public/locales/bg/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json index 4aed5215..10e8ec2e 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -65,7 +65,11 @@ "playing": "Възпроизвежда", "transcoding": "Конвертира", "bitrate": "Bitrate", - "no_active": "Няма активни потоци" + "no_active": "Няма активни потоци", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Възпроизвежда", From effc1f190f4fd7b7e898a7df626ab97be1b52215 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:23 +0000 Subject: [PATCH 035/188] Translated using Weblate (Turkish) Currently translated at 83.8% (317 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/tr/ --- public/locales/tr/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json index 299bf529..f99a1ae7 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -55,7 +55,11 @@ "playing": "Oynatılıyor", "transcoding": "Dönüştürülüyor", "bitrate": "Bit Oranı", - "no_active": "Aktif akış yok" + "no_active": "Aktif akış yok", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Oynatılıyor", From cd0bb9df57859f6f7095a89fdffd26f3b0eb3c9e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:23 +0000 Subject: [PATCH 036/188] Translated using Weblate (Serbian) Currently translated at 2.3% (9 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sr/ --- public/locales/sr/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json index 8ae49ac6..9a2d4301 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -55,7 +55,11 @@ "playing": "Playing", "transcoding": "Transcoding", "bitrate": "Bitrate", - "no_active": "No Active Streams" + "no_active": "No Active Streams", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Playing", From cdd11a87629a719ee3293c6add1305c70267b942 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:24 +0000 Subject: [PATCH 037/188] Translated using Weblate (Arabic) Currently translated at 69.3% (262 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ar/ --- public/locales/ar/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json index 96ad5be1..fc256c63 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -113,7 +113,11 @@ "playing": "يعمل الآن", "transcoding": "التحويل", "bitrate": "معدل البت", - "no_active": "No Active Streams" + "no_active": "No Active Streams", + "songs": "Songs", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes" }, "changedetectionio": { "totalObserved": "Total Observed", From ff69a8ecd7539a05dd13185933d65b07773093f2 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:24 +0000 Subject: [PATCH 038/188] Translated using Weblate (Czech) Currently translated at 66.1% (250 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/cs/ --- public/locales/cs/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index b82d8b25..5229a4cb 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -67,7 +67,11 @@ "playing": "Přehrává", "transcoding": "Transkódování", "bitrate": "Bitrate", - "no_active": "Žádný aktivní stream" + "no_active": "Žádný aktivní stream", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "changedetectionio": { "totalObserved": "Celkem zjištěno", From e0532cbc6a7f294604d21323777ec999fb20f753 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:25 +0000 Subject: [PATCH 039/188] Translated using Weblate (Danish) Currently translated at 52.3% (198 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/da/ --- public/locales/da/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/da/common.json b/public/locales/da/common.json index 36650cf3..6cb0be2c 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -192,7 +192,11 @@ "playing": "Afspiller", "transcoding": "Transcoder", "bitrate": "Bitrate", - "no_active": "Ingen Aktive Streams" + "no_active": "Ingen Aktive Streams", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "changedetectionio": { "totalObserved": "Total Observeret", From 6d2022d6eb63a1bd38ac72bdd44852e00b1fa9fc Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:25 +0000 Subject: [PATCH 040/188] Translated using Weblate (Malay) Currently translated at 66.9% (253 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ms/ --- public/locales/ms/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json index 8eaeca7b..83b95c1a 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -168,7 +168,11 @@ "playing": "Sedang dimainkan", "transcoding": "Transkoding", "bitrate": "Kadar bit", - "no_active": "Tiada Strim Aktif" + "no_active": "Tiada Strim Aktif", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "tautulli": { "playing": "Sedang Dimainkan", From b395839a2f2cee9be5a495a01f9de49053eab97c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:25 +0000 Subject: [PATCH 041/188] Translated using Weblate (Hindi) Currently translated at 2.3% (9 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hi/ --- public/locales/hi/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json index d68fc11d..b89080f6 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -89,7 +89,11 @@ "playing": "Playing", "transcoding": "Transcoding", "bitrate": "Bitrate", - "no_active": "No Active Streams" + "no_active": "No Active Streams", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "changedetectionio": { "totalObserved": "Total Observed", From b75a3a4f4115e8fbaf87f5be3e9c1870b1049abb Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:26 +0000 Subject: [PATCH 042/188] Translated using Weblate (Esperanto) Currently translated at 27.2% (103 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/eo/ --- public/locales/eo/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json index 581bff27..f7f60375 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -59,7 +59,11 @@ "playing": "Ludante", "transcoding": "Transcoding", "bitrate": "Bitrate", - "no_active": "No Active Streams" + "no_active": "No Active Streams", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "changedetectionio": { "totalObserved": "Total Observed", From 71376204a6fd9bbd6e3d555236df7157e68c6f7d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:26 +0000 Subject: [PATCH 043/188] Translated using Weblate (Ukrainian) Currently translated at 98.9% (374 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/uk/ --- public/locales/uk/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json index aab39b61..01286f1f 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -164,7 +164,11 @@ "playing": "Відтворення", "transcoding": "Перекодування", "bitrate": "Бітрейт", - "no_active": "Немає активних потоків" + "no_active": "Немає активних потоків", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "flood": { "download": "Завантаження", From 9240a84ec9b00d8843030f01296df63f8ee6c838 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:27 +0000 Subject: [PATCH 044/188] Translated using Weblate (Japanese) Currently translated at 3.9% (15 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ja/ --- public/locales/ja/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json index b5fc434d..cfee1335 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -94,7 +94,11 @@ "playing": "Playing", "transcoding": "Transcoding", "bitrate": "Bitrate", - "no_active": "No Active Streams" + "no_active": "No Active Streams", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "flood": { "download": "Download", From 6cd31f0dd45ff5ec8044b30bc4f90702a8b47fa1 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:27 +0000 Subject: [PATCH 045/188] Translated using Weblate (Latvian) Currently translated at 31.4% (119 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/lv/ --- public/locales/lv/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/lv/common.json b/public/locales/lv/common.json index 38be7a41..6e3eeeec 100644 --- a/public/locales/lv/common.json +++ b/public/locales/lv/common.json @@ -63,7 +63,11 @@ "playing": "Atskaņo", "transcoding": "Pārkodē", "bitrate": "Bitrate", - "no_active": "Nav aktīvu straumju" + "no_active": "Nav aktīvu straumju", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" }, "flood": { "download": "Lejupielāde", From d6d5c3cbdab412e4c2bacfd05895a4076969110e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 13 Mar 2023 01:57:09 +0000 Subject: [PATCH 046/188] Translated using Weblate (Thai) Currently translated at 12.4% (47 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/th/ --- public/locales/th/common.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/public/locales/th/common.json b/public/locales/th/common.json index 4f9bb243..f601b760 100644 --- a/public/locales/th/common.json +++ b/public/locales/th/common.json @@ -99,7 +99,11 @@ "playing": "กำลังเล่น", "transcoding": "การแปลงรหัส", "bitrate": "อัตราบิต", - "no_active": "ไม่มีสตรีมที่ใช้งานอยู่" + "no_active": "ไม่มีสตรีมที่ใช้งานอยู่", + "movies": "Movies", + "series": "Series", + "songs": "Songs", + "episodes": "Episodes" }, "deluge": { "download": "ดาวน์โหลด", From bfc083544abcf79ece7f680e8a244f825acb530e Mon Sep 17 00:00:00 2001 From: gallegonovato Date: Mon, 13 Mar 2023 16:30:45 +0000 Subject: [PATCH 047/188] Translated using Weblate (Spanish) Currently translated at 100.0% (378 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/ --- public/locales/es/common.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/locales/es/common.json b/public/locales/es/common.json index 204b0b0e..61b4e93d 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -33,10 +33,10 @@ "transcoding": "Transcodificando", "bitrate": "Tasa de bits", "no_active": "Sin transmisiones activas", - "movies": "Movies", - "series": "Series", - "episodes": "Episodes", - "songs": "Songs" + "movies": "Películas", + "series": "Serie", + "episodes": "Episodios", + "songs": "Canciones" }, "tautulli": { "playing": "Reproduciendo", From e1a1dbcc82d0d50edc0e5564b2c88144e4474bf3 Mon Sep 17 00:00:00 2001 From: Nonoss117 Date: Mon, 13 Mar 2023 05:46:02 +0000 Subject: [PATCH 048/188] Translated using Weblate (French) Currently translated at 100.0% (378 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/ --- public/locales/fr/common.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index 069c6b4c..38bb7433 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -33,10 +33,10 @@ "transcoding": "Transcodage", "bitrate": "Débit", "no_active": "Aucun flux actif", - "movies": "Movies", - "series": "Series", - "episodes": "Episodes", - "songs": "Songs" + "movies": "Films", + "series": "Séries TV", + "episodes": "Épisodes", + "songs": "Musique" }, "tautulli": { "playing": "En lecture", From 6901023a0cba1a2e8455ac14efc2bef499bd3483 Mon Sep 17 00:00:00 2001 From: ssantos Date: Mon, 13 Mar 2023 21:40:46 +0000 Subject: [PATCH 049/188] Translated using Weblate (Portuguese) Currently translated at 99.2% (375 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt/ --- public/locales/pt/common.json | 190 +++++++++++++++++----------------- 1 file changed, 95 insertions(+), 95 deletions(-) diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index f93f45b7..dbe831fd 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -33,10 +33,10 @@ "transcoding": "Transcodificação", "bitrate": "Taxa de bits", "no_active": "Sem streams ativas", - "movies": "Movies", - "series": "Series", - "episodes": "Episodes", - "songs": "Songs" + "movies": "Filmes", + "series": "Séries", + "episodes": "Episódios", + "songs": "Canções" }, "tautulli": { "playing": "Reproduzindo", @@ -202,7 +202,7 @@ "users": "Utilizadores" }, "proxmox": { - "mem": "MEM", + "mem": "Memória", "cpu": "CPU", "lxc": "LXC", "vms": "VMs" @@ -222,7 +222,7 @@ "devices": "Dispositivos", "lan_devices": "Dispositivos LAN", "wlan_devices": "Dispositivos WLAN", - "empty_data": "Subsystem status unknown" + "empty_data": "Status de Subsistema Desconhecido" }, "plex": { "streams": "Streams Ativas", @@ -258,38 +258,38 @@ "53-night": "Chuvisco", "55-day": "Aguaceiro Forte", "55-night": "Aguaceiro Forte", - "56-day": "Light Freezing Drizzle", - "56-night": "Light Freezing Drizzle", - "57-day": "Freezing Drizzle", - "57-night": "Freezing Drizzle", - "66-day": "Freezing Rain", + "56-day": "Leve Garoa Congelante", + "56-night": "Leve Garoa Congelante", + "57-day": "Garoa Congelante", + "57-night": "Garoa Congelante", + "66-day": "Chuva Congelante", "61-day": "Chuva fraca", "61-night": "Chuva fraca", "63-day": "Chuva", "63-night": "Chuva", "65-day": "Chuva forte", - "66-night": "Freezing Rain", + "66-night": "Chuva Congelante", "65-night": "Chuva forte", - "67-day": "Freezing Rain", - "67-night": "Freezing Rain", + "67-day": "Chuva Congelante", + "67-night": "Chuva Congelante", "71-day": "Neve fraca", "71-night": "Neve fraca", "73-day": "Neve", "73-night": "Neve", "75-day": "Neve forte", "75-night": "Neve forte", - "77-day": "Snow Grains", - "77-night": "Snow Grains", + "77-day": "Grãos de Neve", + "77-night": "Grãos de Neve", "80-day": "Neve fraca", "80-night": "Chuviscos ligeiros", "81-day": "Chuviscos", "81-night": "Chuviscos", "82-day": "Chuviscos fortes", "82-night": "Chuviscos fortes", - "85-day": "Snow Showers", - "85-night": "Snow Showers", - "86-day": "Snow Showers", - "86-night": "Snow Showers", + "85-day": "Precipitação de Neve", + "85-night": "Precipitação de Neve", + "86-day": "Precipitação de Neve", + "86-night": "Precipitação de Neve", "95-day": "Trovoada", "95-night": "Trovoada", "96-day": "Trovoada com granizo", @@ -299,9 +299,9 @@ "quicklaunch": { "bookmark": "Marcador", "service": "Serviço", - "search": "Search", - "custom": "Custom", - "visit": "Visit", + "search": "Busca", + "custom": "Personalizado", + "visit": "Visitar", "url": "URL" }, "homebridge": { @@ -309,7 +309,7 @@ "updates": "Atualizações", "update_available": "Atualização disponível", "up_to_date": "Atualizado", - "child_bridges": "Child Bridges", + "child_bridges": "Pontes Filhas", "child_bridges_status": "{{ok}}/{{total}}" }, "autobrr": { @@ -410,7 +410,7 @@ "cpuLoad": "Carga do CPU", "memoryUsed": "Memória Utilizada", "uptime": "Ativo", - "numberOfLeases": "Leases" + "numberOfLeases": "Concessões" }, "xteve": { "streams_all": "Todos os Streams", @@ -424,109 +424,109 @@ "wanDownload": "WAN Descarga" }, "moonraker": { - "printer_state": "Printer State", - "print_status": "Print Status", - "print_progress": "Progress", - "layers": "Layers" + "printer_state": "Estado da Impressora", + "print_status": "Estado da Impressora", + "print_progress": "Progresso", + "layers": "Camadas" }, "medusa": { - "wanted": "Wanted", - "queued": "Queued", - "series": "Series" + "wanted": "Desejado", + "queued": "Na fila", + "series": "Séries" }, "octoprint": { - "printer_state": "Status", - "temp_tool": "Tool temp", - "temp_bed": "Bed temp", - "job_completion": "Completion" + "printer_state": "Estado", + "temp_tool": "Temp. Ferramenta", + "temp_bed": "Temp. Cama", + "job_completion": "Conclusão" }, "cloudflared": { - "origin_ip": "Origin IP", - "status": "Status" + "origin_ip": "IP Origem", + "status": "Estado" }, "proxmoxbackupserver": { - "datastore_usage": "Datastore", - "failed_tasks_24h": "Failed Tasks 24h", + "datastore_usage": "Armaz. de Dados", + "failed_tasks_24h": "Tarefas Falhas 24h", "cpu_usage": "CPU", - "memory_usage": "Memory" + "memory_usage": "Memória" }, "immich": { - "users": "Users", - "photos": "Photos", - "videos": "Videos", - "storage": "Storage" + "users": "Utilizadores", + "photos": "Fotos", + "videos": "Vídeos", + "storage": "Armazenamento" }, "uptimekuma": { - "up": "Sites Up", - "down": "Sites Down", - "uptime": "Uptime", - "incident": "Incident", + "up": "Sites no Ar", + "down": "Sites Fora do Ar", + "uptime": "Tempo Ativo", + "incident": "Incidente", "m": "m" }, "komga": { - "libraries": "Libraries", - "series": "Series", - "books": "Books" + "libraries": "Bibliotecas", + "series": "Séries", + "books": "Livros" }, "mylar": { - "series": "Series", - "issues": "Issues", - "wanted": "Wanted" + "series": "Séries", + "issues": "Problemas", + "wanted": "Desejado" }, "photoprism": { - "albums": "Albums", - "photos": "Photos", - "videos": "Videos", - "people": "People" + "albums": "Álbuns", + "photos": "Fotos", + "videos": "Vídeos", + "people": "Pessoa" }, "diskstation": { - "days": "Days", - "uptime": "Uptime", - "volumeAvailable": "Available" + "days": "Dias", + "uptime": "Tempo Ativo", + "volumeAvailable": "Disponível" }, "fileflows": { - "queue": "Queue", - "processing": "Processing", - "processed": "Processed", - "time": "Time" + "queue": "Fila", + "processing": "Processando", + "processed": "Processado", + "time": "Hora" }, "grafana": { - "dashboards": "Dashboards", - "datasources": "Data Sources", - "totalalerts": "Total Alerts", - "alertstriggered": "Alerts Triggered" + "dashboards": "Painéis", + "datasources": "Origem de Dados", + "totalalerts": "Total Alertas", + "alertstriggered": "Alertas Disparados" }, "nextcloud": { - "cpuload": "Cpu Load", - "memoryusage": "Memory Usage", - "freespace": "Free Space", - "activeusers": "Active Users" + "cpuload": "Carga de CPU", + "memoryusage": "Memória Utilizada", + "freespace": "Espaço Livre", + "activeusers": "Utilizadores Ativos" }, "kopia": { - "status": "Status", - "size": "Size", - "lastrun": "Last Run", - "nextrun": "Next Run", - "failed": "Failed" + "status": "Estado", + "size": "Tamanho", + "lastrun": "Ultima Execução", + "nextrun": "Próxima Execução", + "failed": "Falha" }, "unmanic": { - "active_workers": "Active Workers", + "active_workers": "Workers Ativos", "total_workers": "Total Workers", - "records_total": "Queue Length" + "records_total": "Comprimento da Fila" }, "healthchecks": { - "never": "No pings yet", - "new": "New", + "never": "Nenhum ping ainda", + "new": "Novo", "up": "Online", - "grace": "In Grace Period", + "grace": "Em Período Gratuito", "down": "Offline", - "paused": "Paused", - "status": "Status", - "last_ping": "Last Ping" + "paused": "Pausado", + "status": "Estado", + "last_ping": "Ultimo Ping" }, "pterodactyl": { - "servers": "Servers", - "nodes": "Nodes" + "servers": "Servidores", + "nodes": "Nós" }, "prometheus": { "targets_up": "Targets Up", @@ -534,15 +534,15 @@ "targets_total": "Total Targets" }, "minecraft": { - "players": "Players", - "version": "Version", - "status": "Status", + "players": "Reprodutores", + "version": "Versão", + "status": "Estado", "up": "Online", "down": "Offline" }, "ghostfolio": { - "gross_percent_today": "Today", - "gross_percent_1y": "One year", - "gross_percent_max": "All time" + "gross_percent_today": "Hoje", + "gross_percent_1y": "Um ano", + "gross_percent_max": "Todo o tempo" } } From f2f74288f6abf4d127b9cbff9478acefdf954a2c Mon Sep 17 00:00:00 2001 From: Dan Date: Tue, 14 Mar 2023 10:56:21 +0000 Subject: [PATCH 050/188] Translated using Weblate (Ukrainian) Currently translated at 100.0% (378 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/uk/ --- public/locales/uk/common.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json index 01286f1f..fe58d7a2 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -165,10 +165,10 @@ "transcoding": "Перекодування", "bitrate": "Бітрейт", "no_active": "Немає активних потоків", - "movies": "Movies", - "series": "Series", - "episodes": "Episodes", - "songs": "Songs" + "movies": "Фільми", + "series": "Серії", + "episodes": "Епізоди", + "songs": "Пісні" }, "flood": { "download": "Завантаження", From 69fcd3f0c8f26d82c378b91f667ba671f5983acf Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 15 Mar 2023 10:27:01 -0700 Subject: [PATCH 051/188] Add padding to values in resources widget Closes #1110 --- src/components/widgets/resources/cpu.jsx | 8 ++++---- src/components/widgets/resources/disk.jsx | 8 ++++---- src/components/widgets/resources/memory.jsx | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/components/widgets/resources/cpu.jsx b/src/components/widgets/resources/cpu.jsx index 0382270c..7069e3c4 100644 --- a/src/components/widgets/resources/cpu.jsx +++ b/src/components/widgets/resources/cpu.jsx @@ -29,12 +29,12 @@ export default function Cpu({ expanded }) {
-
-
+
-
{t("resources.cpu")}
{expanded && (
-
-
+
-
{t("resources.load")}
)} @@ -51,7 +51,7 @@ export default function Cpu({ expanded }) {
-
+
{t("common.number", { value: data.cpu.usage, style: "unit", @@ -63,7 +63,7 @@ export default function Cpu({ expanded }) {
{expanded && (
-
+
{t("common.number", { value: data.cpu.load, maximumFractionDigits: 2, diff --git a/src/components/widgets/resources/disk.jsx b/src/components/widgets/resources/disk.jsx index bed7caef..fb770dbb 100644 --- a/src/components/widgets/resources/disk.jsx +++ b/src/components/widgets/resources/disk.jsx @@ -29,12 +29,12 @@ export default function Disk({ options, expanded }) {
-
-
+
-
{t("resources.free")}
{expanded && ( -
-
+
-
{t("resources.total")}
)} @@ -51,12 +51,12 @@ export default function Disk({ options, expanded }) {
-
{t("common.bytes", { value: data.drive.freeGb * 1024 * 1024 * 1024 })}
+
{t("common.bytes", { value: data.drive.freeGb * 1024 * 1024 * 1024 })}
{t("resources.free")}
{expanded && ( -
{t("common.bytes", { value: data.drive.totalGb * 1024 * 1024 * 1024 })}
+
{t("common.bytes", { value: data.drive.totalGb * 1024 * 1024 * 1024 })}
{t("resources.total")}
)} diff --git a/src/components/widgets/resources/memory.jsx b/src/components/widgets/resources/memory.jsx index 068177df..27351998 100644 --- a/src/components/widgets/resources/memory.jsx +++ b/src/components/widgets/resources/memory.jsx @@ -29,12 +29,12 @@ export default function Memory({ expanded }) {
-
-
+
-
{t("resources.free")}
{expanded && ( -
-
+
-
{t("resources.total")}
)} @@ -51,14 +51,14 @@ export default function Memory({ expanded }) {
-
+
{t("common.bytes", { value: data.memory.freeMemMb * 1024 * 1024, maximumFractionDigits: 1, binary: true })}
{t("resources.free")}
{expanded && ( -
+
{t("common.bytes", { value: data.memory.totalMemMb * 1024 * 1024, maximumFractionDigits: 1, From 344bee537852232d1f2e73f4425dcd321153a05d Mon Sep 17 00:00:00 2001 From: Smexhy Date: Wed, 15 Mar 2023 17:27:01 +0000 Subject: [PATCH 052/188] Translated using Weblate (Czech) Currently translated at 83.5% (316 of 378 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/cs/ --- public/locales/cs/common.json | 106 +++++++++++++++++----------------- 1 file changed, 53 insertions(+), 53 deletions(-) diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index 5229a4cb..c8f2e8d8 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -17,7 +17,7 @@ "status": "Status", "information": "Informace", "url": "URL", - "raw_error": "Raw Error", + "raw_error": "Chyba", "response_data": "Data odpovědi" }, "weather": { @@ -35,7 +35,7 @@ "free": "Volné", "used": "Využité", "load": "Vytížení", - "mem": "MEM" + "mem": "RAM" }, "unifi": { "users": "Uživatelé", @@ -68,10 +68,10 @@ "transcoding": "Transkódování", "bitrate": "Bitrate", "no_active": "Žádný aktivní stream", - "movies": "Movies", - "series": "Series", - "episodes": "Episodes", - "songs": "Songs" + "movies": "Filmy", + "series": "Seriály", + "episodes": "Epizody", + "songs": "Písničky" }, "changedetectionio": { "totalObserved": "Celkem zjištěno", @@ -298,9 +298,9 @@ "quicklaunch": { "bookmark": "Záložka", "service": "Služba", - "search": "Search", - "custom": "Custom", - "visit": "Visit", + "search": "Hledat", + "custom": "Vlastní", + "visit": "Navštivte", "url": "URL" }, "homebridge": { @@ -327,18 +327,18 @@ "please_wait": "Prosím vyčkejte" }, "pyload": { - "speed": "Speed", - "active": "Active", - "queue": "Queue", - "total": "Total" + "speed": "Rychlost", + "active": "Aktivní", + "queue": "Fronta", + "total": "Celkem" }, "gluetun": { - "public_ip": "Public IP", - "region": "Region", - "country": "Country" + "public_ip": "Veřejná IP", + "region": "Oblast", + "country": "Země" }, "hdhomerun": { - "channels": "Channels", + "channels": "Kanály", "hd": "HD" }, "ping": { @@ -346,13 +346,13 @@ "ping": "Odezva" }, "scrutiny": { - "passed": "Passed", - "failed": "Failed", - "unknown": "Unknown" + "passed": "Prošlo", + "failed": "Neúspěšné", + "unknown": "Neznámý" }, "paperlessngx": { - "inbox": "Inbox", - "total": "Total" + "inbox": "Doručená pošta", + "total": "Celkem" }, "deluge": { "upload": "Nahrávání", @@ -373,12 +373,12 @@ "saved": "Uložené" }, "miniflux": { - "read": "Read", - "unread": "Unread" + "read": "Přečteno", + "unread": "Nepřečteno" }, "nextdns": { - "wait": "Please Wait", - "no_devices": "No Device Data Received" + "wait": "Počkejte prosím", + "no_devices": "Žádná přijatá data zařízení" }, "common": { "bibyterate": "{{value, rate(bits: false; binary: true)}}", @@ -398,35 +398,35 @@ "seed": "Seed" }, "mikrotik": { - "cpuLoad": "CPU Load", - "memoryUsed": "Memory Used", - "uptime": "Uptime", + "cpuLoad": "Zatížení procesoru", + "memoryUsed": "Použitá paměť", + "uptime": "Doba provozu", "numberOfLeases": "Leases" }, "xteve": { - "streams_all": "All Streams", - "streams_active": "Active Streams", - "streams_xepg": "XEPG Channels" + "streams_all": "Všechny proudy", + "streams_active": "Aktivní proudy", + "streams_xepg": "Kanály XEPG" }, "opnsense": { - "cpu": "CPU Load", - "memory": "Active Memory", - "wanUpload": "WAN Upload", - "wanDownload": "WAN Download" + "cpu": "Zatížení procesoru", + "memory": "Aktivní paměť", + "wanUpload": "Nahrávání WAN", + "wanDownload": "WAN Stažení" }, "moonraker": { - "print_progress": "Progress", - "printer_state": "Printer State", - "print_status": "Print Status", - "layers": "Layers" + "print_progress": "Progres", + "printer_state": "Stav tiskárny", + "print_status": "Stav tisku", + "layers": "Vrstvy" }, "medusa": { - "wanted": "Wanted", - "queued": "Queued", - "series": "Series" + "wanted": "Hledané", + "queued": "Fronta", + "series": "Série" }, "octoprint": { - "printer_state": "Status", + "printer_state": "Stav", "temp_tool": "Tool temp", "temp_bed": "Bed temp", "job_completion": "Completion" @@ -506,14 +506,14 @@ "records_total": "Queue Length" }, "healthchecks": { - "new": "New", + "new": "Nové", "up": "Online", - "grace": "In Grace Period", + "grace": "V období odkladu", "down": "Offline", - "paused": "Paused", - "status": "Status", - "last_ping": "Last Ping", - "never": "No pings yet" + "paused": "Pozastaveno", + "status": "Stav", + "last_ping": "Poslední ping", + "never": "Zatím žádné pingy" }, "pterodactyl": { "servers": "Servers", @@ -527,9 +527,9 @@ "minecraft": { "up": "Online", "down": "Offline", - "players": "Players", - "version": "Version", - "status": "Status" + "players": "Hráči", + "version": "Verze", + "status": "Stav" }, "ghostfolio": { "gross_percent_today": "Today", From 9d64b08c1ad3f1bc5554ac1fb63c83eec8f156ae Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:53 +0000 Subject: [PATCH 053/188] Translated using Weblate (German) Currently translated at 95.0% (363 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/de/ --- public/locales/de/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/de/common.json b/public/locales/de/common.json index f7adc216..07737f63 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -535,5 +535,11 @@ "gross_percent_max": "All time", "gross_percent_today": "Heute", "gross_percent_1y": "Ein Jahr" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From cffa0d74895cdbe33cffcc1b58e4fdd2de628dc3 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:56 +0000 Subject: [PATCH 054/188] Translated using Weblate (Spanish) Currently translated at 98.9% (378 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/ --- public/locales/es/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/es/common.json b/public/locales/es/common.json index 61b4e93d..d06ffdc7 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Hoy", "gross_percent_1y": "Un año", "gross_percent_max": "Todo el tiempo" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 9a4bcf67209dbeb53ab90965241c08443aad9a72 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:57 +0000 Subject: [PATCH 055/188] Translated using Weblate (French) Currently translated at 98.9% (378 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/ --- public/locales/fr/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index 38bb7433..7062c8f3 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Aujourd'hui", "gross_percent_1y": "Un an", "gross_percent_max": "Depuis le début" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From c98ad4066d73205e1fd99d75d15cb3625ff36b90 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:57 +0000 Subject: [PATCH 056/188] Translated using Weblate (Portuguese) Currently translated at 98.1% (375 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt/ --- public/locales/pt/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index dbe831fd..446f4045 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -544,5 +544,11 @@ "gross_percent_today": "Hoje", "gross_percent_1y": "Um ano", "gross_percent_max": "Todo o tempo" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From fbef105685088246bc0cd1fd4896b5bf1edcb1e4 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:50 +0000 Subject: [PATCH 057/188] Translated using Weblate (Russian) Currently translated at 12.5% (48 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ru/ --- public/locales/ru/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json index bfeee383..ae0c80bb 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 1ec33d0740321baa026d4513a2b02a4ae2ba4ed1 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:51 +0000 Subject: [PATCH 058/188] Translated using Weblate (Chinese (Simplified)) Currently translated at 87.6% (335 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hans/ --- public/locales/zh-CN/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/zh-CN/common.json b/public/locales/zh-CN/common.json index eec4429e..b5c6eac5 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 71813bc0d945839894fc58483feb3f10a9bf5e74 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:53 +0000 Subject: [PATCH 059/188] Translated using Weblate (Italian) Currently translated at 75.3% (288 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/it/ --- public/locales/it/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/it/common.json b/public/locales/it/common.json index 967f5a9f..514c8695 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From d6bb006a06c2a4c896bd49732a2e38f670d579eb Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:54 +0000 Subject: [PATCH 060/188] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegi?= =?UTF-8?q?an=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 20.6% (79 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nb_NO/ --- public/locales/nb-NO/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/nb-NO/common.json b/public/locales/nb-NO/common.json index a5642afe..3849ae45 100644 --- a/public/locales/nb-NO/common.json +++ b/public/locales/nb-NO/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From a956e67da8abc898b9fbae69246b394e7f0f8617 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:56 +0000 Subject: [PATCH 061/188] Translated using Weblate (Vietnamese) Currently translated at 11.5% (44 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/vi/ --- public/locales/vi/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json index 811d8b7d..7dbadec8 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 0cd1af530637906acec61fcf3fee79dc283d39f5 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:54 +0000 Subject: [PATCH 062/188] Translated using Weblate (Dutch) Currently translated at 23.0% (88 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nl/ --- public/locales/nl/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json index e92a8597..dfaa7a6b 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From cc422a407895abd77f5061d602253b60de548c9d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:56 +0000 Subject: [PATCH 063/188] Translated using Weblate (Chinese (Traditional)) Currently translated at 92.6% (354 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hant/ --- public/locales/zh-Hant/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json index b9ca7a0d..259426c2 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 5772e0264697d9bf51f4570a1b04e56e53ce6cc3 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:55 +0000 Subject: [PATCH 064/188] Translated using Weblate (Catalan) Currently translated at 67.5% (258 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ca/ --- public/locales/ca/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json index b9ce14b5..950d7111 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From aec0253cf2bf98a92dcbb3d6984189e179d1b29c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:54 +0000 Subject: [PATCH 065/188] Translated using Weblate (Polish) Currently translated at 74.6% (285 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pl/ --- public/locales/pl/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json index 384781e2..cfacb545 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From a19b354f258480c516126a50436c64befdc4f404 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:55 +0000 Subject: [PATCH 066/188] Translated using Weblate (Swedish) Currently translated at 34.5% (132 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sv/ --- public/locales/sv/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json index 02fd8ae2..6ac60fd8 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 5242c8855eab80f760782e6cb21f330aea93e2c2 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:51 +0000 Subject: [PATCH 067/188] Translated using Weblate (Croatian) Currently translated at 74.8% (286 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hr/ --- public/locales/hr/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json index 8852b8b5..f47a8cac 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 740d61d37a062771a03f258e4c48b56c4a216043 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:52 +0000 Subject: [PATCH 068/188] Translated using Weblate (Hungarian) Currently translated at 28.2% (108 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hu/ --- public/locales/hu/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json index 434d3eb4..a8f1e798 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 34c7fe7052c858a17489149b783fd97c457ab47d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:52 +0000 Subject: [PATCH 069/188] Translated using Weblate (Hebrew) Currently translated at 26.4% (101 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/he/ --- public/locales/he/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/he/common.json b/public/locales/he/common.json index 9ab94277..f83a048c 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From e9515f0fdef91b0a40c3c17f5f4794bd337a5bf5 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:53 +0000 Subject: [PATCH 070/188] Translated using Weblate (Romanian) Currently translated at 35.8% (137 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ro/ --- public/locales/ro/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json index e17017f4..ac1b53b7 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From cce24d710487a8ce3a6d3ea65d8ac86fd1ebc780 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:52 +0000 Subject: [PATCH 071/188] Translated using Weblate (Portuguese (Brazil)) Currently translated at 94.5% (361 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt_BR/ --- public/locales/pt-BR/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/pt-BR/common.json b/public/locales/pt-BR/common.json index 01050b93..88254530 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 67ea7a7fdaab5fbb112342de3f1bf7a622d081db Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:57 +0000 Subject: [PATCH 072/188] Translated using Weblate (Yue) Currently translated at 30.8% (118 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/yue/ --- public/locales/yue/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json index c7186fd1..d991c696 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From b2baf72399d55908b60a73dae5fe6338fb89dd2f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:58 +0000 Subject: [PATCH 073/188] Translated using Weblate (Finnish) Currently translated at 46.5% (178 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fi/ --- public/locales/fi/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json index 1b1c9060..b7d44e8e 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 20aabbbe7e6fabe6334e8a2445f6d7076222c2cd Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:58 +0000 Subject: [PATCH 074/188] Translated using Weblate (Telugu) Currently translated at 56.8% (217 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/te/ --- public/locales/te/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/te/common.json b/public/locales/te/common.json index 5c04e949..beaa20a2 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 994f2f992e78ffe907f19cc4e0bed669faa402d5 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:59 +0000 Subject: [PATCH 075/188] Translated using Weblate (Bulgarian) Currently translated at 12.0% (46 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/bg/ --- public/locales/bg/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json index 10e8ec2e..eccde0f1 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From fad3d142d2eaf58a333c3a9956cc2d1c77221099 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:59 +0000 Subject: [PATCH 076/188] Translated using Weblate (Turkish) Currently translated at 82.9% (317 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/tr/ --- public/locales/tr/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json index f99a1ae7..d79a73c6 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 0dc8aa2f31da313e3eb7be58345d447200813d2e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:59 +0000 Subject: [PATCH 077/188] Translated using Weblate (Serbian) Currently translated at 2.3% (9 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sr/ --- public/locales/sr/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json index 9a2d4301..f8caf04f 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From c0a064b32bda88b6f0d9f0f7634906c6f690fb4a Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:42:00 +0000 Subject: [PATCH 078/188] Translated using Weblate (Arabic) Currently translated at 68.5% (262 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ar/ --- public/locales/ar/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json index fc256c63..af772415 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 8eee91615f6ac25cd5f436dbf2f7913fed458d84 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:42:00 +0000 Subject: [PATCH 079/188] Translated using Weblate (Czech) Currently translated at 82.7% (316 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/cs/ --- public/locales/cs/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index c8f2e8d8..b06eaf84 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 99b4bd5b5f10c5b97133ffcac5a24088671640fe Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:42:01 +0000 Subject: [PATCH 080/188] Translated using Weblate (Danish) Currently translated at 51.8% (198 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/da/ --- public/locales/da/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/da/common.json b/public/locales/da/common.json index 6cb0be2c..ad72c0fa 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "booksDuration": "Duration", + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration" } } From 9d570dc47729cde78063149ab8f97cea362de7ed Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:42:01 +0000 Subject: [PATCH 081/188] Translated using Weblate (Malay) Currently translated at 66.2% (253 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ms/ --- public/locales/ms/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json index 83b95c1a..dd76b497 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 7e0c258a45bff392db6e38cda0b73c7ce95957b0 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:42:01 +0000 Subject: [PATCH 082/188] Translated using Weblate (Hindi) Currently translated at 2.3% (9 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hi/ --- public/locales/hi/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json index b89080f6..9469b0da 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 6c23f047e013b5d9d97f85cd252e811f115f105b Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:42:02 +0000 Subject: [PATCH 083/188] Translated using Weblate (Esperanto) Currently translated at 26.9% (103 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/eo/ --- public/locales/eo/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json index f7f60375..e0e6a045 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 98fef9729f36ae71d96e2ffdb7694b69d989bad5 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:42:02 +0000 Subject: [PATCH 084/188] Translated using Weblate (Ukrainian) Currently translated at 98.9% (378 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/uk/ --- public/locales/uk/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json index fe58d7a2..e9116ae2 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Сьогодні", "gross_percent_1y": "Один рік", "gross_percent_max": "Весь час" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 4738f1cf54b3ad8d8864912a8ba255e2d4a7cb69 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:42:02 +0000 Subject: [PATCH 085/188] Translated using Weblate (Japanese) Currently translated at 3.9% (15 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ja/ --- public/locales/ja/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json index cfee1335..5fd5e579 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -535,5 +535,11 @@ "gross_percent_max": "All time", "gross_percent_today": "Today", "gross_percent_1y": "One year" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From a1dee40ed64e63d60bc658bf205c61ed6a6c57e1 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:42:03 +0000 Subject: [PATCH 086/188] Translated using Weblate (Latvian) Currently translated at 31.1% (119 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/lv/ --- public/locales/lv/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/lv/common.json b/public/locales/lv/common.json index 6e3eeeec..977eb7dc 100644 --- a/public/locales/lv/common.json +++ b/public/locales/lv/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From 8f9f0d8181b9c1ed1bd3e63163877a0c380f996f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Wed, 15 Mar 2023 17:41:50 +0000 Subject: [PATCH 087/188] Translated using Weblate (Thai) Currently translated at 12.3% (47 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/th/ --- public/locales/th/common.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/public/locales/th/common.json b/public/locales/th/common.json index f601b760..f45d07c0 100644 --- a/public/locales/th/common.json +++ b/public/locales/th/common.json @@ -535,5 +535,11 @@ "gross_percent_today": "Today", "gross_percent_1y": "One year", "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" } } From aa156121716ebdc26c8dce55b2eefc4c3e0904f4 Mon Sep 17 00:00:00 2001 From: gallegonovato Date: Thu, 16 Mar 2023 10:45:20 +0000 Subject: [PATCH 088/188] Translated using Weblate (Spanish) Currently translated at 100.0% (382 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/ --- public/locales/es/common.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/locales/es/common.json b/public/locales/es/common.json index d06ffdc7..c9b807ce 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -538,8 +538,8 @@ }, "audiobookshelf": { "podcasts": "Podcasts", - "books": "Books", - "podcastsDuration": "Duration", - "booksDuration": "Duration" + "books": "Libros", + "podcastsDuration": "Duración", + "booksDuration": "Duración" } } From 885c078231560edf63ed5708344fa8dd0eef66f8 Mon Sep 17 00:00:00 2001 From: Nonoss117 Date: Wed, 15 Mar 2023 17:57:57 +0000 Subject: [PATCH 089/188] Translated using Weblate (French) Currently translated at 100.0% (382 of 382 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 7062c8f3..3c5e38c6 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -538,8 +538,8 @@ }, "audiobookshelf": { "podcasts": "Podcasts", - "books": "Books", - "podcastsDuration": "Duration", - "booksDuration": "Duration" + "books": "Livres", + "podcastsDuration": "Durée", + "booksDuration": "Durée" } } From da81c1de4edc72e5aab9c0a2fa7fa2ce8ea92285 Mon Sep 17 00:00:00 2001 From: PedroBuffon Date: Thu, 16 Mar 2023 16:39:21 +0000 Subject: [PATCH 090/188] Translated using Weblate (Portuguese (Brazil)) Currently translated at 100.0% (382 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt_BR/ --- public/locales/pt-BR/common.json | 42 ++++++++++++++++---------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/public/locales/pt-BR/common.json b/public/locales/pt-BR/common.json index 88254530..5b09b40a 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -67,10 +67,10 @@ "transcoding": "Transcodificando", "bitrate": "Taxa de bits", "no_active": "Sem transmissões ativas", - "movies": "Movies", - "series": "Series", - "episodes": "Episodes", - "songs": "Songs" + "movies": "Filmes", + "series": "Séries", + "episodes": "Episódios", + "songs": "Musicas" }, "tautulli": { "playing": "Reproduzindo", @@ -139,7 +139,7 @@ "pihole": { "queries": "Consultas", "blocked": "Bloqueados", - "gravity": "Gravity" + "gravity": "Gravidade" }, "adguard": { "queries": "Consultas", @@ -288,7 +288,7 @@ "service": "Serviço", "search": "Busca", "custom": "Personalizado", - "visit": "Visit", + "visit": "Visitar", "url": "URL" }, "homebridge": { @@ -501,8 +501,8 @@ "failed": "Falha" }, "unmanic": { - "active_workers": "Workers Ativos", - "total_workers": "Total Workers", + "active_workers": "Trabalhadores Ativos", + "total_workers": "Total Trabalhadores", "records_total": "Comprimento da Fila" }, "healthchecks": { @@ -520,26 +520,26 @@ "nodes": "Nós" }, "prometheus": { - "targets_up": "Targets Up", - "targets_down": "Targets Down", - "targets_total": "Total Targets" + "targets_up": "Alvo ativo", + "targets_down": "Alvo inativo", + "targets_total": "Alvos totais" }, "minecraft": { - "players": "Players", - "version": "Version", + "players": "Reprodutores", + "version": "Versão", "status": "Status", - "up": "Online", - "down": "Offline" + "up": "Conectado", + "down": "Desconectado" }, "ghostfolio": { - "gross_percent_today": "Today", - "gross_percent_1y": "One year", - "gross_percent_max": "All time" + "gross_percent_today": "Hoje", + "gross_percent_1y": "Um ano", + "gross_percent_max": "Todo periodo" }, "audiobookshelf": { "podcasts": "Podcasts", - "books": "Books", - "podcastsDuration": "Duration", - "booksDuration": "Duration" + "books": "Livros", + "podcastsDuration": "Duração", + "booksDuration": "Duração" } } From 1f20d5188e526d9035f5a9914af604531b7def0e Mon Sep 17 00:00:00 2001 From: Smexhy Date: Wed, 15 Mar 2023 18:09:05 +0000 Subject: [PATCH 091/188] Translated using Weblate (Czech) Currently translated at 88.2% (337 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/cs/ --- public/locales/cs/common.json | 56 +++++++++++++++++------------------ 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index b06eaf84..30bfd7e6 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -116,23 +116,23 @@ "seed": "Seeder" }, "sonarr": { - "wanted": "Hledaný", + "wanted": "Hledané", "queued": "Ve frontě", "series": "Seriály" }, "radarr": { - "wanted": "Hledaný", + "wanted": "Hledané", "missing": "Chybějící", "queued": "Ve frontě", "movies": "Filmy" }, "lidarr": { - "wanted": "Hledaný", + "wanted": "Hledané", "queued": "Ve frontě", "albums": "Alba" }, "readarr": { - "wanted": "Hledaný", + "wanted": "Hledané", "queued": "Ve frontě", "books": "Knihy" }, @@ -143,17 +143,17 @@ "ombi": { "pending": "Čeká", "approved": "Schváleno", - "available": "Dostupný" + "available": "Dostupné" }, "jellyseerr": { "pending": "Čeká", "approved": "Schváleno", - "available": "Dostupný" + "available": "Dostupné" }, "overseerr": { "pending": "Čeká", "approved": "Schváleno", - "available": "Dostupný", + "available": "Dostupné", "processing": "Zpracováváno" }, "pihole": { @@ -304,7 +304,7 @@ "url": "URL" }, "homebridge": { - "update_available": "Dostupná aktualizace", + "update_available": "Dostupná", "up_to_date": "Aktuální", "available_update": "Systém", "updates": "Aktualizace", @@ -401,7 +401,7 @@ "cpuLoad": "Zatížení procesoru", "memoryUsed": "Použitá paměť", "uptime": "Doba provozu", - "numberOfLeases": "Leases" + "numberOfLeases": "Pronájmy" }, "xteve": { "streams_all": "Všechny proudy", @@ -427,30 +427,30 @@ }, "octoprint": { "printer_state": "Stav", - "temp_tool": "Tool temp", - "temp_bed": "Bed temp", - "job_completion": "Completion" + "temp_tool": "Teplota nástroje", + "temp_bed": "Teplota postele", + "job_completion": "Dokončení" }, "cloudflared": { - "origin_ip": "Origin IP", - "status": "Status" + "origin_ip": "Původní IP", + "status": "Stav" }, "proxmoxbackupserver": { - "datastore_usage": "Datastore", - "failed_tasks_24h": "Failed Tasks 24h", + "datastore_usage": "Datové úložiště", + "failed_tasks_24h": "Neúspěšné úlohy 24h", "cpu_usage": "CPU", - "memory_usage": "Memory" + "memory_usage": "Paměť" }, "immich": { - "users": "Users", - "photos": "Photos", - "videos": "Videos", - "storage": "Storage" + "users": "Uživatelé", + "photos": "Fotografie", + "videos": "Videa", + "storage": "Úložiště" }, "uptimekuma": { - "up": "Sites Up", - "down": "Sites Down", - "uptime": "Uptime", + "up": "Stránky Up", + "down": "Stránky Down", + "uptime": "Doba provozu", "incident": "Incident", "m": "m" }, @@ -488,10 +488,10 @@ "alertstriggered": "Alerts Triggered" }, "nextcloud": { - "cpuload": "Cpu Load", - "memoryusage": "Memory Usage", - "freespace": "Free Space", - "activeusers": "Active Users" + "cpuload": "CPU zatížení", + "memoryusage": "Využití paměti", + "freespace": "Volný prostor", + "activeusers": "Aktivní uživatelé" }, "kopia": { "status": "Status", From 5eb0c9b19ef0cc5bd824858b0ef1415b0c8f0b43 Mon Sep 17 00:00:00 2001 From: Dan Date: Fri, 17 Mar 2023 00:44:48 +0000 Subject: [PATCH 092/188] Translated using Weblate (Ukrainian) Currently translated at 100.0% (382 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/uk/ --- public/locales/uk/common.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json index e9116ae2..0302bb72 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -537,9 +537,9 @@ "gross_percent_max": "Весь час" }, "audiobookshelf": { - "podcasts": "Podcasts", - "books": "Books", - "podcastsDuration": "Duration", - "booksDuration": "Duration" + "podcasts": "Подкасти", + "books": "Книжки", + "podcastsDuration": "Тривалість", + "booksDuration": "Тривалість" } } From 374099b2cc87beba98d8d309fb85f643802f279d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ladislav=20Kri=C5=BEo?= Date: Sun, 19 Mar 2023 22:18:36 +0100 Subject: [PATCH 093/188] Added translation using Weblate (Slovak) --- public/locales/sk/common.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 public/locales/sk/common.json diff --git a/public/locales/sk/common.json b/public/locales/sk/common.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/public/locales/sk/common.json @@ -0,0 +1 @@ +{} From b488d6a13c339c00f94e1ee5bd5e21f6787269d8 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Sun, 19 Mar 2023 21:18:43 +0000 Subject: [PATCH 094/188] Translated using Weblate (Slovak) Currently translated at 100.0% (0 of 0 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sk/ --- public/locales/sk/common.json | 546 +++++++++++++++++++++++++++++++++- 1 file changed, 545 insertions(+), 1 deletion(-) diff --git a/public/locales/sk/common.json b/public/locales/sk/common.json index 0967ef42..47737641 100644 --- a/public/locales/sk/common.json +++ b/public/locales/sk/common.json @@ -1 +1,545 @@ -{} +{ + "docker": { + "rx": "RX", + "tx": "TX", + "mem": "MEM", + "cpu": "CPU", + "offline": "Offline", + "error": "Error", + "unknown": "Unknown" + }, + "rutorrent": { + "active": "Active", + "upload": "Upload", + "download": "Download" + }, + "tdarr": { + "queue": "Queue", + "processed": "Processed", + "errored": "Errored", + "saved": "Saved" + }, + "strelaysrv": { + "numActiveSessions": "Sessions", + "numConnections": "Connections", + "dataRelayed": "Relayed", + "transferRate": "Rate" + }, + "proxmox": { + "vms": "VMs", + "mem": "MEM", + "cpu": "CPU", + "lxc": "LXC" + }, + "wmo": { + "0-night": "Clear", + "1-day": "Mainly Sunny", + "1-night": "Mainly Clear", + "2-day": "Partly Cloudy", + "85-night": "Snow Showers", + "86-day": "Snow Showers", + "86-night": "Snow Showers", + "95-day": "Thunderstorm", + "95-night": "Thunderstorm", + "0-day": "Sunny", + "2-night": "Partly Cloudy", + "3-day": "Cloudy", + "3-night": "Cloudy", + "45-day": "Foggy", + "45-night": "Foggy", + "48-day": "Foggy", + "48-night": "Foggy", + "51-day": "Light Drizzle", + "51-night": "Light Drizzle", + "53-day": "Drizzle", + "53-night": "Drizzle", + "55-day": "Heavy Drizzle", + "55-night": "Heavy Drizzle", + "56-day": "Light Freezing Drizzle", + "56-night": "Light Freezing Drizzle", + "57-day": "Freezing Drizzle", + "57-night": "Freezing Drizzle", + "61-day": "Light Rain", + "61-night": "Light Rain", + "63-day": "Rain", + "63-night": "Rain", + "65-day": "Heavy Rain", + "65-night": "Heavy Rain", + "66-day": "Freezing Rain", + "66-night": "Freezing Rain", + "67-day": "Freezing Rain", + "67-night": "Freezing Rain", + "71-day": "Light Snow", + "71-night": "Light Snow", + "73-day": "Snow", + "73-night": "Snow", + "75-day": "Heavy Snow", + "75-night": "Heavy Snow", + "77-day": "Snow Grains", + "77-night": "Snow Grains", + "80-day": "Light Showers", + "80-night": "Light Showers", + "81-day": "Showers", + "81-night": "Showers", + "82-day": "Heavy Showers", + "82-night": "Heavy Showers", + "85-day": "Snow Showers", + "96-day": "Thunderstorm With Hail", + "96-night": "Thunderstorm With Hail", + "99-day": "Thunderstorm With Hail", + "99-night": "Thunderstorm With Hail" + }, + "hdhomerun": { + "channels": "Channels", + "hd": "HD" + }, + "xteve": { + "streams_all": "All Streams", + "streams_xepg": "XEPG Channels", + "streams_active": "Active Streams" + }, + "moonraker": { + "layers": "Layers", + "printer_state": "Printer State", + "print_status": "Print Status", + "print_progress": "Progress" + }, + "immich": { + "storage": "Storage", + "users": "Users", + "videos": "Videos", + "photos": "Photos" + }, + "uptimekuma": { + "up": "Sites Up", + "down": "Sites Down", + "uptime": "Uptime", + "incident": "Incident", + "m": "m" + }, + "diskstation": { + "days": "Days", + "uptime": "Uptime", + "volumeAvailable": "Available" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" + }, + "pterodactyl": { + "servers": "Servers", + "nodes": "Nodes" + }, + "common": { + "bibyterate": "{{value, rate(bits: false; binary: true)}}", + "bibitrate": "{{value, rate(bits: true; binary: true)}}" + }, + "widget": { + "api_error": "API Error", + "missing_type": "Missing Widget Type: {{type}}", + "information": "Information", + "status": "Status", + "url": "URL", + "raw_error": "Raw Error", + "response_data": "Response Data" + }, + "weather": { + "current": "Current Location", + "allow": "Click to allow", + "updating": "Updating", + "wait": "Please wait" + }, + "search": { + "placeholder": "Search…" + }, + "resources": { + "cpu": "CPU", + "mem": "MEM", + "total": "Total", + "free": "Free", + "used": "Used", + "load": "Load" + }, + "unifi": { + "users": "Users", + "uptime": "System Uptime", + "days": "Days", + "wan": "WAN", + "lan": "LAN", + "wlan": "WLAN", + "devices": "Devices", + "lan_devices": "LAN Devices", + "wlan_devices": "WLAN Devices", + "lan_users": "LAN Users", + "wlan_users": "WLAN Users", + "up": "UP", + "down": "DOWN", + "wait": "Please wait", + "empty_data": "Subsystem status unknown" + }, + "ping": { + "error": "Error", + "ping": "Ping" + }, + "emby": { + "playing": "Playing", + "transcoding": "Transcoding", + "bitrate": "Bitrate", + "no_active": "No Active Streams", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" + }, + "flood": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "changedetectionio": { + "totalObserved": "Total Observed", + "diffsDetected": "Diffs Detected" + }, + "tautulli": { + "playing": "Playing", + "transcoding": "Transcoding", + "bitrate": "Bitrate", + "no_active": "No Active Streams" + }, + "omada": { + "connectedAp": "Connected APs", + "activeUser": "Active devices", + "alerts": "Alerts", + "connectedGateway": "Connected gateways", + "connectedSwitches": "Connected switches" + }, + "nzbget": { + "rate": "Rate", + "remaining": "Remaining", + "downloaded": "Downloaded" + }, + "plex": { + "streams": "Active Streams", + "movies": "Movies", + "tv": "TV Shows" + }, + "sabnzbd": { + "rate": "Rate", + "queue": "Queue", + "timeleft": "Time Left" + }, + "transmission": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "qbittorrent": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "deluge": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "sonarr": { + "wanted": "Wanted", + "queued": "Queued", + "series": "Series" + }, + "radarr": { + "wanted": "Wanted", + "missing": "Missing", + "queued": "Queued", + "movies": "Movies" + }, + "lidarr": { + "wanted": "Wanted", + "queued": "Queued", + "albums": "Albums" + }, + "readarr": { + "wanted": "Wanted", + "queued": "Queued", + "books": "Books" + }, + "bazarr": { + "missingEpisodes": "Missing Episodes", + "missingMovies": "Missing Movies" + }, + "ombi": { + "pending": "Pending", + "approved": "Approved", + "available": "Available" + }, + "jellyseerr": { + "pending": "Pending", + "approved": "Approved", + "available": "Available" + }, + "overseerr": { + "pending": "Pending", + "processing": "Processing", + "approved": "Approved", + "available": "Available" + }, + "pihole": { + "queries": "Queries", + "blocked": "Blocked", + "gravity": "Gravity" + }, + "adguard": { + "queries": "Queries", + "blocked": "Blocked", + "filtered": "Filtered", + "latency": "Latency" + }, + "speedtest": { + "upload": "Upload", + "download": "Download", + "ping": "Ping" + }, + "portainer": { + "running": "Running", + "stopped": "Stopped", + "total": "Total" + }, + "traefik": { + "routers": "Routers", + "services": "Services", + "middleware": "Middleware" + }, + "navidrome": { + "nothing_streaming": "No Active Streams", + "please_wait": "Please Wait" + }, + "npm": { + "enabled": "Enabled", + "disabled": "Disabled", + "total": "Total" + }, + "coinmarketcap": { + "configure": "Configure one or more crypto currencies to track", + "1hour": "1 Hour", + "1day": "1 Day", + "7days": "7 Days", + "30days": "30 Days" + }, + "gotify": { + "apps": "Applications", + "clients": "Clients", + "messages": "Messages" + }, + "prowlarr": { + "enableIndexers": "Indexers", + "numberOfGrabs": "Grabs", + "numberOfQueries": "Queries", + "numberOfFailGrabs": "Fail Grabs", + "numberOfFailQueries": "Fail Queries" + }, + "jackett": { + "configured": "Configured", + "errored": "Errored" + }, + "mastodon": { + "user_count": "Users", + "status_count": "Posts", + "domain_count": "Domains" + }, + "medusa": { + "wanted": "Wanted", + "queued": "Queued", + "series": "Series" + }, + "minecraft": { + "players": "Players", + "version": "Version", + "status": "Status", + "up": "Online", + "down": "Offline" + }, + "miniflux": { + "read": "Read", + "unread": "Unread" + }, + "authentik": { + "users": "Users", + "loginsLast24H": "Logins (24h)", + "failedLoginsLast24H": "Failed Logins (24h)" + }, + "glances": { + "cpu": "CPU", + "mem": "MEM", + "wait": "Please wait" + }, + "quicklaunch": { + "bookmark": "Bookmark", + "service": "Service", + "search": "Search", + "custom": "Custom", + "visit": "Visit", + "url": "URL" + }, + "homebridge": { + "available_update": "System", + "updates": "Updates", + "update_available": "Update Available", + "up_to_date": "Up to Date", + "child_bridges": "Child Bridges", + "child_bridges_status": "{{ok}}/{{total}}" + }, + "healthchecks": { + "new": "New", + "up": "Online", + "grace": "In Grace Period", + "down": "Offline", + "paused": "Paused", + "status": "Status", + "last_ping": "Last Ping", + "never": "No pings yet" + }, + "watchtower": { + "containers_scanned": "Scanned", + "containers_updated": "Updated", + "containers_failed": "Failed" + }, + "autobrr": { + "approvedPushes": "Approved", + "rejectedPushes": "Rejected", + "filters": "Filters", + "indexers": "Indexers" + }, + "tubearchivist": { + "downloads": "Queue", + "videos": "Videos", + "channels": "Channels", + "playlists": "Playlists" + }, + "truenas": { + "load": "System Load", + "uptime": "Uptime", + "alerts": "Alerts", + "time": "{{value, number(style: unit; unitDisplay: long;)}}" + }, + "pyload": { + "speed": "Speed", + "active": "Active", + "queue": "Queue", + "total": "Total" + }, + "gluetun": { + "public_ip": "Public IP", + "region": "Region", + "country": "Country" + }, + "scrutiny": { + "passed": "Passed", + "failed": "Failed", + "unknown": "Unknown" + }, + "paperlessngx": { + "inbox": "Inbox", + "total": "Total" + }, + "nextdns": { + "wait": "Please Wait", + "no_devices": "No Device Data Received" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" + }, + "opnsense": { + "cpu": "CPU Load", + "memory": "Active Memory", + "wanUpload": "WAN Upload", + "wanDownload": "WAN Download" + }, + "octoprint": { + "printer_state": "Status", + "temp_tool": "Tool temp", + "temp_bed": "Bed temp", + "job_completion": "Completion" + }, + "cloudflared": { + "origin_ip": "Origin IP", + "status": "Status" + }, + "proxmoxbackupserver": { + "datastore_usage": "Datastore", + "failed_tasks_24h": "Failed Tasks 24h", + "cpu_usage": "CPU", + "memory_usage": "Memory" + }, + "komga": { + "libraries": "Libraries", + "series": "Series", + "books": "Books" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" + }, + "fileflows": { + "queue": "Queue", + "processing": "Processing", + "processed": "Processed", + "time": "Time" + }, + "grafana": { + "dashboards": "Dashboards", + "datasources": "Data Sources", + "totalalerts": "Total Alerts", + "alertstriggered": "Alerts Triggered" + }, + "nextcloud": { + "freespace": "Free Space", + "activeusers": "Active Users", + "cpuload": "Cpu Load", + "memoryusage": "Memory Usage" + }, + "kopia": { + "status": "Status", + "size": "Size", + "lastrun": "Last Run", + "nextrun": "Next Run", + "failed": "Failed" + }, + "unmanic": { + "total_workers": "Total Workers", + "records_total": "Queue Length", + "active_workers": "Active Workers" + }, + "prometheus": { + "targets_up": "Targets Up", + "targets_down": "Targets Down", + "targets_total": "Total Targets" + }, + "ghostfolio": { + "gross_percent_today": "Today", + "gross_percent_1y": "One year", + "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" + } +} From 94dc5ad0e530ec3d4aa62e31caf6992b8f3755aa Mon Sep 17 00:00:00 2001 From: Mirek Szajowski Date: Mon, 20 Mar 2023 01:15:40 +0100 Subject: [PATCH 095/188] Add support of NC-Token to Nextcloud widget --- src/utils/proxy/handlers/credentialed.js | 8 ++++++++ src/widgets/nextcloud/widget.js | 6 +++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/src/utils/proxy/handlers/credentialed.js b/src/utils/proxy/handlers/credentialed.js index 7d8e1a63..133d4296 100644 --- a/src/utils/proxy/handlers/credentialed.js +++ b/src/utils/proxy/handlers/credentialed.js @@ -48,6 +48,14 @@ export default async function credentialedProxyHandler(req, res, map) { headers.Authorization = `Token ${widget.key}`; } else if (widget.type === "miniflux") { headers["X-Auth-Token"] = `${widget.key}`; + } else if (widget.type === "nextcloud") { + if ('key' in widget) { + logger.debug("Setting nextcloud to use NC-Token"); + headers["NC-Token"] = `${widget.key}`; + } else { + logger.debug("Setting nextcloud to use username", widget.username); + headers.Authorization = `Basic ${Buffer.from(`${widget.username}:${widget.password}`).toString("base64")}`; + } } else { headers["X-API-Key"] = `${widget.key}`; } diff --git a/src/widgets/nextcloud/widget.js b/src/widgets/nextcloud/widget.js index 0500f59e..db21510b 100755 --- a/src/widgets/nextcloud/widget.js +++ b/src/widgets/nextcloud/widget.js @@ -1,8 +1,8 @@ -import genericProxyHandler from "utils/proxy/handlers/generic"; +import credentialedProxyHandler from "utils/proxy/handlers/credentialed"; const widget = { api: "{url}/{endpoint}", - proxyHandler: genericProxyHandler, + proxyHandler: credentialedProxyHandler, mappings: { serverinfo: { @@ -11,4 +11,4 @@ const widget = { }, }; -export default widget; \ No newline at end of file +export default widget; From 401b35bea9e1659d180125f1cd4c84b338707db3 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 19 Mar 2023 22:58:47 -0700 Subject: [PATCH 096/188] Add translation for some missing items Closes #1123 --- public/locales/en/common.json | 13 +++++++++++-- src/components/services/status.jsx | 27 ++++++++++++++++++--------- src/widgets/homebridge/component.jsx | 2 +- 3 files changed, 30 insertions(+), 12 deletions(-) diff --git a/public/locales/en/common.json b/public/locales/en/common.json index c56fc394..a29bccd1 100755 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -60,9 +60,15 @@ "tx": "TX", "mem": "MEM", "cpu": "CPU", + "running": "Running", "offline": "Offline", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "ping": { "error": "Error", @@ -365,7 +371,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "healthchecks": { "new": "New", diff --git a/src/components/services/status.jsx b/src/components/services/status.jsx index 0673806b..dba30f5b 100644 --- a/src/components/services/status.jsx +++ b/src/components/services/status.jsx @@ -12,34 +12,43 @@ export default function Status({ service }) {
} + let statusLabel = ""; + if (data && data.status?.includes("running")) { if (data.health === "starting") { return ( -
-
{data.health}
+
+
{t("docker.starting")}
); } if (data.health === "unhealthy") { return ( -
-
{data.health}
+
+
{t("docker.unhealthy")}
); } + if (!data.health) { + statusLabel = data.status.replace("running", t("docker.running")) + } + return ( -
-
{data.health || data.status}
+
+
{data.health || statusLabel}
); } - + if (data && (data.status === "not found" || data.status === "exited" || data.status?.startsWith("partial"))) { + if (data.status === "not found") statusLabel = t("docker.not_found") + else if (data.status === "exited") statusLabel = t("docker.exited") + else statusLabel = data.status.replace("partial", t("docker.partial")) return ( -
-
{data.status}
+
+
{statusLabel}
); } diff --git a/src/widgets/homebridge/component.jsx b/src/widgets/homebridge/component.jsx index a1e2f2e1..c4f1624a 100644 --- a/src/widgets/homebridge/component.jsx +++ b/src/widgets/homebridge/component.jsx @@ -29,7 +29,7 @@ export default function Component({ service }) { Date: Mon, 20 Mar 2023 03:07:53 +0000 Subject: [PATCH 097/188] Translated using Weblate (Czech) Currently translated at 88.2% (337 of 382 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/cs/ --- public/locales/cs/common.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index 30bfd7e6..a13b65df 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -106,14 +106,14 @@ "transmission": { "download": "Stahování", "upload": "Nahrávání", - "leech": "Leecher", - "seed": "Seeder" + "leech": "Leecherů", + "seed": "Seedů" }, "qbittorrent": { "download": "Stahování", "upload": "Nahrávání", - "leech": "Leecher", - "seed": "Seeder" + "leech": "Leechované", + "seed": "Seedované" }, "sonarr": { "wanted": "Hledané", @@ -159,7 +159,7 @@ "pihole": { "queries": "Dotazy", "blocked": "Blokováno", - "gravity": "Gravitace" + "gravity": "Gravity" }, "adguard": { "queries": "Dotazy", @@ -305,7 +305,7 @@ }, "homebridge": { "update_available": "Dostupná", - "up_to_date": "Aktuální", + "up_to_date": "Všechno aktuální", "available_update": "Systém", "updates": "Aktualizace", "child_bridges": "Podřadné můstky", @@ -348,7 +348,7 @@ "scrutiny": { "passed": "Prošlo", "failed": "Neúspěšné", - "unknown": "Neznámý" + "unknown": "Neznámé" }, "paperlessngx": { "inbox": "Doručená pošta", From bb03c7bae71b7ec2de63a6792984815722a45411 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:08 +0000 Subject: [PATCH 098/188] Translated using Weblate (German) Currently translated at 92.8% (363 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/de/ --- public/locales/de/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/de/common.json b/public/locales/de/common.json index 07737f63..90458533 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -26,7 +26,13 @@ "cpu": "Prozessor", "offline": "Offline", "error": "Fehler", - "unknown": "Unbekannt" + "unknown": "Unbekannt", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "Spielen", @@ -297,7 +303,10 @@ "update_available": "Aktualisierung verfügbar", "up_to_date": "Aktuell", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Genehmigt", From 4b3f44000cec27a61230881959199e7812789ea8 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:14 +0000 Subject: [PATCH 099/188] Translated using Weblate (Spanish) Currently translated at 97.6% (382 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/ --- public/locales/es/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/es/common.json b/public/locales/es/common.json index c9b807ce..d38b4367 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -26,7 +26,13 @@ "cpu": "Procesador", "offline": "Desconectado", "error": "Fallo", - "unknown": "Desconocido" + "unknown": "Desconocido", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "Reproduciendo", @@ -297,7 +303,10 @@ "update_available": "Actualización disponible", "up_to_date": "Actualizado", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Aprobado", From 18c923517ae7b1e5f805dfdf5ed349cb05cfd87f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:15 +0000 Subject: [PATCH 100/188] Translated using Weblate (French) Currently translated at 97.6% (382 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/ --- public/locales/fr/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index 3c5e38c6..2f39980e 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -26,7 +26,13 @@ "cpu": "Cpu", "offline": "Hors ligne", "error": "Erreur", - "unknown": "Inconnu" + "unknown": "Inconnu", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "En lecture", @@ -297,7 +303,10 @@ "update_available": "Mise à jour disponible", "up_to_date": "À jour", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Approuvé", From 06384ce2a780bbd1926523d61532684d279263d8 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:16 +0000 Subject: [PATCH 101/188] Translated using Weblate (Portuguese) Currently translated at 95.9% (375 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt/ --- public/locales/pt/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index 446f4045..2dbe4b8d 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -26,7 +26,13 @@ "cpu": "CPU", "offline": "Desligado", "error": "Erro", - "unknown": "Desconhecido" + "unknown": "Desconhecido", + "partial": "Partial", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited" }, "emby": { "playing": "A reproduzir", @@ -310,7 +316,10 @@ "update_available": "Atualização disponível", "up_to_date": "Atualizado", "child_bridges": "Pontes Filhas", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Aprovado", From b658d807cb8622a6f10712feacec4a8764acc8ae Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:01 +0000 Subject: [PATCH 102/188] Translated using Weblate (Russian) Currently translated at 12.2% (48 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ru/ --- public/locales/ru/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json index ae0c80bb..79e2ebef 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -26,7 +26,13 @@ "cpu": "Процессор", "offline": "Не в сети", "error": "Ошибка", - "unknown": "Неизвестный" + "unknown": "Неизвестный", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "Воспроизведение", @@ -297,7 +303,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges_status": "{{ok}}/{{total}}", - "child_bridges": "Child Bridges" + "child_bridges": "Child Bridges", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Approved", From 44d4eba975df4001bd4a0e8d70f1fe77e7ff331b Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:02 +0000 Subject: [PATCH 103/188] Translated using Weblate (Chinese (Simplified)) Currently translated at 85.6% (335 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hans/ --- public/locales/zh-CN/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/zh-CN/common.json b/public/locales/zh-CN/common.json index b5c6eac5..f2df89a5 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -26,7 +26,13 @@ "cpu": "处理器", "offline": "离线", "error": "错误", - "unknown": "未知" + "unknown": "未知", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "running": "Running", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "播放中", @@ -297,7 +303,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Approved", From 0ca175e75de3149a736d6e7be8f1ab57880220f9 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:08 +0000 Subject: [PATCH 104/188] Translated using Weblate (Italian) Currently translated at 73.6% (288 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/it/ --- public/locales/it/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/it/common.json b/public/locales/it/common.json index 514c8695..0eff6c21 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -6,7 +6,13 @@ "offline": "Offline", "rx": "RX", "error": "Errore", - "unknown": "Sconosciuto" + "unknown": "Sconosciuto", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "In riproduzione", @@ -297,7 +303,10 @@ "update_available": "Aggiornamento Disponibile", "up_to_date": "Aggiornato", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Approvato", From 84a3f7155d904c0a0cea97808a1e6ab12263dbb6 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:09 +0000 Subject: [PATCH 105/188] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegi?= =?UTF-8?q?an=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 20.2% (79 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nb_NO/ --- public/locales/nb-NO/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/nb-NO/common.json b/public/locales/nb-NO/common.json index 3849ae45..7ed98547 100644 --- a/public/locales/nb-NO/common.json +++ b/public/locales/nb-NO/common.json @@ -26,7 +26,13 @@ "cpu": "Prosessor", "offline": "Frakoblet", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "running": "Running", + "starting": "Starting", + "exited": "Exited", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "partial": "Partial" }, "emby": { "playing": "Spiller", @@ -297,7 +303,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Approved", From 2e375c2bb59e6eb4c4324a26e202a2ca77eb020a Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:13 +0000 Subject: [PATCH 106/188] Translated using Weblate (Vietnamese) Currently translated at 11.2% (44 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/vi/ --- public/locales/vi/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json index 7dbadec8..2449392c 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -26,7 +26,13 @@ "cpu": "CPU", "offline": "Ngoại tuyến", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "Đang chơi", @@ -297,7 +303,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "down": "Down", + "pending": "Pending" }, "autobrr": { "approvedPushes": "Approved", From 8baa0be5ffd75809fd5e4e84e0a0867e2a9a2779 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:10 +0000 Subject: [PATCH 107/188] Translated using Weblate (Dutch) Currently translated at 22.5% (88 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nl/ --- public/locales/nl/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json index dfaa7a6b..66549083 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -23,7 +23,13 @@ "cpu": "CPU", "offline": "Offline", "error": "Fout", - "unknown": "Onbekend" + "unknown": "Onbekend", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "speedtest": { "upload": "Upload", @@ -297,7 +303,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Approved", From 389257535040c38eb964d3974922b356da394f33 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:13 +0000 Subject: [PATCH 108/188] Translated using Weblate (Chinese (Traditional)) Currently translated at 90.5% (354 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hant/ --- public/locales/zh-Hant/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json index 259426c2..86023e91 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -21,7 +21,13 @@ "mem": "記憶體", "cpu": "處理器", "error": "錯誤", - "unknown": "未知的" + "unknown": "未知的", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "正在播放", @@ -297,7 +303,10 @@ "update_available": "有可用的更新", "up_to_date": "已更新至最新", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "已核准", From 1fd015b203d4c37bce8ef3d4541b5b49468b1fb3 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:12 +0000 Subject: [PATCH 109/188] Translated using Weblate (Catalan) Currently translated at 65.9% (258 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ca/ --- public/locales/ca/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json index 950d7111..8107a5bd 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -48,7 +48,13 @@ "cpu": "Processador", "offline": "Fora de línia", "error": "Error", - "unknown": "Desconegut" + "unknown": "Desconegut", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "Reproduint", @@ -297,7 +303,10 @@ "update_available": "Actualització disponible", "up_to_date": "Actualitzat", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Aprovat", From c2e9ffb65c183281824c69551ef2fc8e8ff2b988 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:10 +0000 Subject: [PATCH 110/188] Translated using Weblate (Polish) Currently translated at 72.8% (285 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pl/ --- public/locales/pl/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json index cfacb545..4b432f77 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -70,7 +70,13 @@ "cpu": "Procesor", "offline": "Offline", "error": "Błąd", - "unknown": "Nieznany" + "unknown": "Nieznany", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "nzbget": { "rate": "Szybkość", @@ -297,7 +303,10 @@ "update_available": "Dostępna aktualizacja", "up_to_date": "Aktualny", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Zaakceptowane", From 48db343d14608e071e56703343ab5254fe21084d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:11 +0000 Subject: [PATCH 111/188] Translated using Weblate (Swedish) Currently translated at 33.7% (132 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sv/ --- public/locales/sv/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json index 6ac60fd8..95366993 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -29,7 +29,13 @@ "cpu": "CPU", "offline": "Offline", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "exited": "Exited", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "partial": "Partial" }, "search": { "placeholder": "Sök…" @@ -297,7 +303,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Approved", From 18c89bdb680ab02623ea3e59a8ba8c9c90747ddd Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:03 +0000 Subject: [PATCH 112/188] Translated using Weblate (Croatian) Currently translated at 73.1% (286 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hr/ --- public/locales/hr/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json index f47a8cac..f9c9036a 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -73,7 +73,13 @@ "cpu": "CPU", "offline": "Nepovezan", "error": "Greška", - "unknown": "Nepoznato" + "unknown": "Nepoznato", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "Reprodukcija", @@ -297,7 +303,10 @@ "update_available": "Dostupna je nova verzija", "up_to_date": "Aktualno", "child_bridges": "Podređeni mosotvi", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "rejectedPushes": "Odbijeno", From aa30102bc04508b906641d542c530f5a3e6c823f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:04 +0000 Subject: [PATCH 113/188] Translated using Weblate (Hungarian) Currently translated at 27.6% (108 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hu/ --- public/locales/hu/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json index a8f1e798..efa84e4c 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -14,7 +14,13 @@ "cpu": "CPU", "offline": "Offline", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "unhealthy": "Unhealthy", + "running": "Running", + "starting": "Starting", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "lidarr": { "albums": "Albumok", @@ -297,7 +303,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Approved", From 48e1375f778e25f838bab4b197443d0b3a3ede27 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:04 +0000 Subject: [PATCH 114/188] Translated using Weblate (Hebrew) Currently translated at 25.8% (101 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/he/ --- public/locales/he/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/he/common.json b/public/locales/he/common.json index f83a048c..58397f59 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -32,7 +32,13 @@ "cpu": "מעבד", "offline": "כבוי", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "מנגן", @@ -297,7 +303,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Approved", From f9859c5ce1bb832299cc26aada550fe2e2a12834 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:06 +0000 Subject: [PATCH 115/188] Translated using Weblate (Romanian) Currently translated at 35.0% (137 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ro/ --- public/locales/ro/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json index ac1b53b7..5a1a4aa7 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -14,7 +14,13 @@ "cpu": "CPU", "offline": "Offline", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "jellyseerr": { "approved": "Aprobate", @@ -297,7 +303,10 @@ "child_bridges": "Child Bridges", "available_update": "System", "updates": "Updates", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Approved", From c0e6cb0ed81876412201bbbfb0b1ca1fe5ae416a Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:05 +0000 Subject: [PATCH 116/188] Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.6% (382 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt_BR/ --- public/locales/pt-BR/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/pt-BR/common.json b/public/locales/pt-BR/common.json index 5b09b40a..f22496ff 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -60,7 +60,13 @@ "cpu": "CPU", "offline": "Desligado", "error": "Erro", - "unknown": "Desconhecido" + "unknown": "Desconhecido", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "Reproduzindo", @@ -297,7 +303,10 @@ "update_available": "Atualização Disponível", "up_to_date": "Atualizado", "child_bridges": "Pontes Filhas", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Aprovado", From e16da44af71ad1297ea5410287e09c3b764b4650 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:16 +0000 Subject: [PATCH 117/188] Translated using Weblate (Yue) Currently translated at 30.1% (118 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/yue/ --- public/locales/yue/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json index d991c696..c65bb323 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -54,7 +54,13 @@ "cpu": "處理器", "offline": "離線", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "nzbget": { "rate": "速度", @@ -297,7 +303,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Approved", From 5d830645990219469ca72c9710215b933bfaf184 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:17 +0000 Subject: [PATCH 118/188] Translated using Weblate (Finnish) Currently translated at 45.5% (178 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fi/ --- public/locales/fi/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json index b7d44e8e..68010755 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -32,7 +32,13 @@ "cpu": "CPU", "offline": "Offline", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "Toistaa", @@ -297,7 +303,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Approved", From 91da884b73664674c3606158dee854ecab3d07cd Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:18 +0000 Subject: [PATCH 119/188] Translated using Weblate (Telugu) Currently translated at 55.4% (217 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/te/ --- public/locales/te/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/te/common.json b/public/locales/te/common.json index beaa20a2..c0711f1d 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -49,7 +49,13 @@ "cpu": "సీపియూ", "offline": "ఆఫ్‌లైన్", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "ఆడుతున్నారు", @@ -297,7 +303,10 @@ "update_available": "అందుబాటులో నవీకరణ", "up_to_date": "తాజాగా", "child_bridges": "పిల్ల వంతెనలు", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "rejectedPushes": "తిరస్కరించారు", From cd5c61d31cd01a30172254b53bb7925c4b501890 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:19 +0000 Subject: [PATCH 120/188] Translated using Weblate (Bulgarian) Currently translated at 11.7% (46 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/bg/ --- public/locales/bg/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json index eccde0f1..f34c2023 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -59,7 +59,13 @@ "mem": "MEM", "cpu": "CPU", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "partial": "Partial", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited" }, "emby": { "playing": "Възпроизвежда", @@ -297,7 +303,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "rejectedPushes": "Rejected", From 9f166fa7374b52dc12e8328d9ac3dc3c5d4846ba Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:20 +0000 Subject: [PATCH 121/188] Translated using Weblate (Turkish) Currently translated at 81.0% (317 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/tr/ --- public/locales/tr/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json index d79a73c6..3ff735a3 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -49,7 +49,13 @@ "cpu": "İşlemci", "offline": "Çevrimdışı", "error": "Hata", - "unknown": "Bilinmiyor" + "unknown": "Bilinmiyor", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "Oynatılıyor", @@ -297,7 +303,10 @@ "update_available": "Güncelleme Kullanılabilir", "up_to_date": "Güncel", "child_bridges": "Alt Köprüler", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Onaylandı", From a6b92b4be527ea4ee8bc933a52efd6f88b536732 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:20 +0000 Subject: [PATCH 122/188] Translated using Weblate (Serbian) Currently translated at 2.3% (9 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sr/ --- public/locales/sr/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json index f8caf04f..854736de 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -49,7 +49,13 @@ "cpu": "CPU", "offline": "Offline", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "Playing", @@ -297,7 +303,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "autobrr": { "approvedPushes": "Approved", From ccd4cee72300bcf6a1101f29dfa61d28469eb2e9 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:21 +0000 Subject: [PATCH 123/188] Translated using Weblate (Arabic) Currently translated at 67.0% (262 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ar/ --- public/locales/ar/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json index af772415..0ccb01b9 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -107,7 +107,13 @@ "cpu": "المعالج", "offline": "غير متصل", "error": "خطأ", - "unknown": "مجهول" + "unknown": "مجهول", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "يعمل الآن", @@ -297,7 +303,10 @@ "update_available": "تحديث متاح", "up_to_date": "حتى الآن", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "watchtower": { "containers_scanned": "Scanned", From e15ff18abc9ce081359470260dedf4989a1879d4 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:22 +0000 Subject: [PATCH 124/188] Translated using Weblate (Czech) Currently translated at 86.1% (337 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/cs/ --- public/locales/cs/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index a13b65df..e8c03d3c 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -61,7 +61,13 @@ "cpu": "CPU", "offline": "Offline", "error": "Chyba", - "unknown": "Neznámý" + "unknown": "Neznámý", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "Přehrává", @@ -309,7 +315,10 @@ "available_update": "Systém", "updates": "Aktualizace", "child_bridges": "Podřadné můstky", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "watchtower": { "containers_scanned": "Naskenováno", From 4b1f96b86b54d5bc3a68a410ebb5794fe265f18f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:23 +0000 Subject: [PATCH 125/188] Translated using Weblate (Danish) Currently translated at 50.6% (198 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/da/ --- public/locales/da/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/da/common.json b/public/locales/da/common.json index ad72c0fa..14383f6d 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -134,7 +134,10 @@ "update_available": "Opdateringer tilgængelige", "up_to_date": "Opdateret", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "widget": { "missing_type": "Manglende Widget Type: {{type}}", @@ -186,7 +189,13 @@ "mem": "RAM", "offline": "Offline", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "Afspiller", From 3165ae5c0c40f850241263abea510a936e01044f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:24 +0000 Subject: [PATCH 126/188] Translated using Weblate (Malay) Currently translated at 64.7% (253 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ms/ --- public/locales/ms/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json index dd76b497..538e1a26 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -158,7 +158,13 @@ "cpu": "CPU", "offline": "Luar talian", "error": "Ralat", - "unknown": "Tidak Diketahui" + "unknown": "Tidak Diketahui", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "changedetectionio": { "totalObserved": "Jumlah Diperhatikan", @@ -297,7 +303,10 @@ "updates": "Kemaskini", "update_available": "Kemaskini Tersedia", "up_to_date": "Terkemaskini", - "child_bridges": "Jambatan Anak" + "child_bridges": "Jambatan Anak", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "watchtower": { "containers_scanned": "Terimbas", From a35b1dc428c066ec5b7ce8d01c446d26b087241e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:24 +0000 Subject: [PATCH 127/188] Translated using Weblate (Hindi) Currently translated at 2.3% (9 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hi/ --- public/locales/hi/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json index 9469b0da..20b557fa 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -83,7 +83,13 @@ "cpu": "CPU", "offline": "Offline", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "emby": { "playing": "Playing", @@ -301,7 +307,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "watchtower": { "containers_scanned": "Scanned", From dde8ec92b09869a320feeff43205c83f392f2d7f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:25 +0000 Subject: [PATCH 128/188] Translated using Weblate (Esperanto) Currently translated at 26.3% (103 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/eo/ --- public/locales/eo/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json index e0e6a045..86c7e091 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -49,7 +49,13 @@ "cpu": "Ĉefprocesoro", "offline": "Offline", "error": "Eraro", - "unknown": "Nekonata" + "unknown": "Nekonata", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "ping": { "error": "Eraro", @@ -311,7 +317,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "watchtower": { "containers_scanned": "Scanned", From aefcdd2dc598f04352e7c77870c38874f375a8a0 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:26 +0000 Subject: [PATCH 129/188] Translated using Weblate (Ukrainian) Currently translated at 97.6% (382 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/uk/ --- public/locales/uk/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json index 0302bb72..e660d463 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -154,7 +154,13 @@ "cpu": "CPU", "offline": "Офлайн", "error": "Помилка", - "unknown": "Невідомий" + "unknown": "Невідомий", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial", + "running": "Running" }, "ping": { "error": "Помилка", @@ -359,7 +365,10 @@ "child_bridges_status": "{{ok}}/{{total}}", "update_available": "Доступне оновлення", "up_to_date": "Актуально", - "child_bridges": "Дитячі мости" + "child_bridges": "Дитячі мости", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "watchtower": { "containers_scanned": "Відскановано", From c4755e117f8409de96c66b3f5e3bd4300b72db4c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:27 +0000 Subject: [PATCH 130/188] Translated using Weblate (Japanese) Currently translated at 3.8% (15 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ja/ --- public/locales/ja/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json index 5fd5e579..141e8221 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -84,7 +84,13 @@ "cpu": "CPU", "offline": "Offline", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "ping": { "error": "Error", @@ -355,7 +361,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "watchtower": { "containers_scanned": "Scanned", From dd1a322260a008b4e12594466b88879c1dd49c7c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:27 +0000 Subject: [PATCH 131/188] Translated using Weblate (Latvian) Currently translated at 30.4% (119 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/lv/ --- public/locales/lv/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/lv/common.json b/public/locales/lv/common.json index 977eb7dc..dadb1513 100644 --- a/public/locales/lv/common.json +++ b/public/locales/lv/common.json @@ -53,7 +53,13 @@ "cpu": "CPU", "offline": "Bezsaistē", "error": "Kļūda", - "unknown": "Nezināms" + "unknown": "Nezināms", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "ping": { "error": "Kļūda", @@ -349,7 +355,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "watchtower": { "containers_scanned": "Scanned", From 5c51683e8ca62d695b48c47ca48061a483b0f9b2 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:00 +0000 Subject: [PATCH 132/188] Translated using Weblate (Thai) Currently translated at 12.0% (47 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/th/ --- public/locales/th/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/th/common.json b/public/locales/th/common.json index f45d07c0..ae4ff7ac 100644 --- a/public/locales/th/common.json +++ b/public/locales/th/common.json @@ -42,7 +42,13 @@ "cpu": "ซีพียู", "offline": "ออฟไลน์", "error": "ข้อผิดพลาด", - "unknown": "ไม่ทราบ" + "unknown": "ไม่ทราบ", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "common": { "bibyterate": "{{value, rate(bits: false; binary: true)}}", @@ -369,7 +375,10 @@ "up_to_date": "Up to Date", "child_bridges": "Child Bridges", "child_bridges_status": "{{ok}}/{{total}}", - "available_update": "System" + "available_update": "System", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "watchtower": { "containers_scanned": "Scanned", From 5261f74c7cc829d655bed984f9587af8b82b937d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 06:01:06 +0000 Subject: [PATCH 133/188] Translated using Weblate (Slovak) Currently translated at 2.3% (9 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sk/ --- public/locales/sk/common.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/locales/sk/common.json b/public/locales/sk/common.json index 47737641..2d58849b 100644 --- a/public/locales/sk/common.json +++ b/public/locales/sk/common.json @@ -6,7 +6,13 @@ "cpu": "CPU", "offline": "Offline", "error": "Error", - "unknown": "Unknown" + "unknown": "Unknown", + "running": "Running", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" }, "rutorrent": { "active": "Active", @@ -399,7 +405,10 @@ "update_available": "Update Available", "up_to_date": "Up to Date", "child_bridges": "Child Bridges", - "child_bridges_status": "{{ok}}/{{total}}" + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" }, "healthchecks": { "new": "New", From 7d8da29e577bfa5af3926e5de037912788cca030 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 19 Mar 2023 23:03:12 -0700 Subject: [PATCH 134/188] Update credentialed.js --- src/utils/proxy/handlers/credentialed.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/utils/proxy/handlers/credentialed.js b/src/utils/proxy/handlers/credentialed.js index 133d4296..56bbb151 100644 --- a/src/utils/proxy/handlers/credentialed.js +++ b/src/utils/proxy/handlers/credentialed.js @@ -49,11 +49,9 @@ export default async function credentialedProxyHandler(req, res, map) { } else if (widget.type === "miniflux") { headers["X-Auth-Token"] = `${widget.key}`; } else if (widget.type === "nextcloud") { - if ('key' in widget) { - logger.debug("Setting nextcloud to use NC-Token"); + if (widget.key) { headers["NC-Token"] = `${widget.key}`; } else { - logger.debug("Setting nextcloud to use username", widget.username); headers.Authorization = `Basic ${Buffer.from(`${widget.username}:${widget.password}`).toString("base64")}`; } } else { From 606bcdc835f0f6b38cb683a63607f6a1c2ff53c9 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Mon, 20 Mar 2023 07:02:39 -0700 Subject: [PATCH 135/188] Add docker healthy translation --- public/locales/en/common.json | 1 + src/components/services/status.jsx | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/public/locales/en/common.json b/public/locales/en/common.json index a29bccd1..92f42926 100755 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -64,6 +64,7 @@ "offline": "Offline", "error": "Error", "unknown": "Unknown", + "healthy": "Healthy", "starting": "Starting", "unhealthy": "Unhealthy", "not_found": "Not Found", diff --git a/src/components/services/status.jsx b/src/components/services/status.jsx index dba30f5b..70cad6b2 100644 --- a/src/components/services/status.jsx +++ b/src/components/services/status.jsx @@ -33,11 +33,13 @@ export default function Status({ service }) { if (!data.health) { statusLabel = data.status.replace("running", t("docker.running")) + } else { + statusLabel = data.health === "healthy" ? t("docker.healthy") : data.health } return ( -
-
{data.health || statusLabel}
+
+
{statusLabel}
); } From 5bde4395002272d6f33daa49894c0215def42d55 Mon Sep 17 00:00:00 2001 From: gallegonovato Date: Mon, 20 Mar 2023 11:00:56 +0000 Subject: [PATCH 136/188] Translated using Weblate (Spanish) Currently translated at 100.0% (391 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/ --- public/locales/es/common.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/public/locales/es/common.json b/public/locales/es/common.json index d38b4367..9c1e13f0 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -27,12 +27,12 @@ "offline": "Desconectado", "error": "Fallo", "unknown": "Desconocido", - "running": "Running", - "starting": "Starting", - "unhealthy": "Unhealthy", - "not_found": "Not Found", - "exited": "Exited", - "partial": "Partial" + "running": "Ejecutando", + "starting": "Comenzando", + "unhealthy": "Insalubre", + "not_found": "No encontrado", + "exited": "Salida", + "partial": "Parcial" }, "emby": { "playing": "Reproduciendo", @@ -304,9 +304,9 @@ "up_to_date": "Actualizado", "child_bridges": "Child Bridges", "child_bridges_status": "{{ok}}/{{total}}", - "up": "Up", - "pending": "Pending", - "down": "Down" + "up": "Arriba", + "pending": "Pendiente", + "down": "Abajo" }, "autobrr": { "approvedPushes": "Aprobado", From c72bd392f4f3704ce8e1042df5556b65b2b0b888 Mon Sep 17 00:00:00 2001 From: Nonoss117 Date: Mon, 20 Mar 2023 11:59:38 +0000 Subject: [PATCH 137/188] Translated using Weblate (French) Currently translated at 100.0% (391 of 391 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/ --- public/locales/fr/common.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index 2f39980e..a7498fa0 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -27,12 +27,12 @@ "offline": "Hors ligne", "error": "Erreur", "unknown": "Inconnu", - "running": "Running", - "starting": "Starting", - "unhealthy": "Unhealthy", - "not_found": "Not Found", - "exited": "Exited", - "partial": "Partial" + "running": "Démarré", + "starting": "Démarrage", + "unhealthy": "Dysfonctionnement", + "not_found": "Inconnu", + "exited": "Arrêté", + "partial": "Partiel" }, "emby": { "playing": "En lecture", From 7efffda7ec6fdb828411cb73b00b0e089a1bb49f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:13 +0000 Subject: [PATCH 138/188] Translated using Weblate (German) Currently translated at 92.6% (363 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/de/ --- public/locales/de/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/de/common.json b/public/locales/de/common.json index 90458533..2fb21c8b 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -32,7 +32,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "Spielen", From 6ef452023442dc492996826a98227007cf1a33f6 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:14 +0000 Subject: [PATCH 139/188] Translated using Weblate (Spanish) Currently translated at 99.7% (391 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/ --- public/locales/es/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/es/common.json b/public/locales/es/common.json index 9c1e13f0..b8fde1f1 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -32,7 +32,8 @@ "unhealthy": "Insalubre", "not_found": "No encontrado", "exited": "Salida", - "partial": "Parcial" + "partial": "Parcial", + "healthy": "Healthy" }, "emby": { "playing": "Reproduciendo", From ef70a7fd42e27dbfde5c683e2db0e003e7c53794 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:14 +0000 Subject: [PATCH 140/188] Translated using Weblate (French) Currently translated at 99.7% (391 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fr/ --- public/locales/fr/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index a7498fa0..634b024f 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -32,7 +32,8 @@ "unhealthy": "Dysfonctionnement", "not_found": "Inconnu", "exited": "Arrêté", - "partial": "Partiel" + "partial": "Partiel", + "healthy": "Healthy" }, "emby": { "playing": "En lecture", From a20bc95cd73cfb1533a1728daa296394a4a4ae98 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:15 +0000 Subject: [PATCH 141/188] Translated using Weblate (Portuguese) Currently translated at 95.6% (375 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt/ --- public/locales/pt/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index 2dbe4b8d..456f4a51 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -32,7 +32,8 @@ "starting": "Starting", "unhealthy": "Unhealthy", "not_found": "Not Found", - "exited": "Exited" + "exited": "Exited", + "healthy": "Healthy" }, "emby": { "playing": "A reproduzir", From 9aa41e620babb62c2d2ad6c1702355f5a9dd850a Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:12 +0000 Subject: [PATCH 142/188] Translated using Weblate (Russian) Currently translated at 12.2% (48 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ru/ --- public/locales/ru/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json index 79e2ebef..03e8d3ea 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -32,7 +32,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "Воспроизведение", From 4330c6d04c41bf2459c39fe6a3f895769ed045d0 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:12 +0000 Subject: [PATCH 143/188] Translated using Weblate (Chinese (Simplified)) Currently translated at 85.4% (335 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hans/ --- public/locales/zh-CN/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/zh-CN/common.json b/public/locales/zh-CN/common.json index f2df89a5..c21974db 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -32,7 +32,8 @@ "not_found": "Not Found", "running": "Running", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "播放中", From 78d868071015bc8d82d62d24a0436e7228ea706a Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:13 +0000 Subject: [PATCH 144/188] Translated using Weblate (Italian) Currently translated at 73.4% (288 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/it/ --- public/locales/it/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/it/common.json b/public/locales/it/common.json index 0eff6c21..4b99206e 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -12,7 +12,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "In riproduzione", From 7e39341dc01a0565cb2d134c2f7962efb7bd42b9 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:13 +0000 Subject: [PATCH 145/188] =?UTF-8?q?Translated=20using=20Weblate=20(Norwegi?= =?UTF-8?q?an=20Bokm=C3=A5l)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently translated at 20.1% (79 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nb_NO/ --- public/locales/nb-NO/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/nb-NO/common.json b/public/locales/nb-NO/common.json index 7ed98547..b77e36e6 100644 --- a/public/locales/nb-NO/common.json +++ b/public/locales/nb-NO/common.json @@ -32,7 +32,8 @@ "exited": "Exited", "unhealthy": "Unhealthy", "not_found": "Not Found", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "Spiller", From 30b29e504f07248adf055d123bac3dc56afb9945 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:14 +0000 Subject: [PATCH 146/188] Translated using Weblate (Vietnamese) Currently translated at 11.2% (44 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/vi/ --- public/locales/vi/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json index 2449392c..710efeaf 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -32,7 +32,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "Đang chơi", From 959e1be01c5bd5a92eb20cb8fe41c485e1c731d5 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:14 +0000 Subject: [PATCH 147/188] Translated using Weblate (Dutch) Currently translated at 22.4% (88 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/nl/ --- public/locales/nl/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json index 66549083..2e51f577 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -29,7 +29,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "speedtest": { "upload": "Upload", From 9541c18f721fd66a90fb1e0f4dec0bc0ef86e0ce Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:14 +0000 Subject: [PATCH 148/188] Translated using Weblate (Chinese (Traditional)) Currently translated at 90.3% (354 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/zh_Hant/ --- public/locales/zh-Hant/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json index 86023e91..ac1d5da7 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -27,7 +27,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "正在播放", From 2e648d0370f57f83a9885f28b8f756449e4b1874 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:14 +0000 Subject: [PATCH 149/188] Translated using Weblate (Catalan) Currently translated at 65.8% (258 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ca/ --- public/locales/ca/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json index 8107a5bd..73b69afe 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -54,7 +54,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "Reproduint", From cdc33a410bcf1d761987ba74da313b758a3d396e Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:14 +0000 Subject: [PATCH 150/188] Translated using Weblate (Polish) Currently translated at 72.7% (285 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pl/ --- public/locales/pl/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json index 4b432f77..3455ab75 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -76,7 +76,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "nzbget": { "rate": "Szybkość", From 27c740220a394c4daebfc5a438fdec668c7b26fa Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:14 +0000 Subject: [PATCH 151/188] Translated using Weblate (Swedish) Currently translated at 33.6% (132 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sv/ --- public/locales/sv/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json index 95366993..cfd45649 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -35,7 +35,8 @@ "starting": "Starting", "unhealthy": "Unhealthy", "not_found": "Not Found", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "search": { "placeholder": "Sök…" From c2f8257684222577e2a01ea13c2a62c765062d2a Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:12 +0000 Subject: [PATCH 152/188] Translated using Weblate (Croatian) Currently translated at 72.9% (286 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hr/ --- public/locales/hr/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json index f9c9036a..75fa1acd 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -79,7 +79,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "Reprodukcija", From 5a04819950d305c8b354af73b004b98bab09d246 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:12 +0000 Subject: [PATCH 153/188] Translated using Weblate (Hungarian) Currently translated at 27.5% (108 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hu/ --- public/locales/hu/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json index efa84e4c..a84883e4 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -20,7 +20,8 @@ "starting": "Starting", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "lidarr": { "albums": "Albumok", From 12c9fd504278f6cd8555b4d727c67d58b10f70d7 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:13 +0000 Subject: [PATCH 154/188] Translated using Weblate (Hebrew) Currently translated at 25.7% (101 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/he/ --- public/locales/he/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/he/common.json b/public/locales/he/common.json index 58397f59..61dbcbeb 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -38,7 +38,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "מנגן", From d17bf1aae57f11d8990fbbe0ca7d36b95d3f3a9d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:13 +0000 Subject: [PATCH 155/188] Translated using Weblate (Romanian) Currently translated at 34.9% (137 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ro/ --- public/locales/ro/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json index 5a1a4aa7..6947a160 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -20,7 +20,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "jellyseerr": { "approved": "Aprobate", From 9927a7a871b102621e9034fb50f8388d7452adf6 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:13 +0000 Subject: [PATCH 156/188] Translated using Weblate (Portuguese (Brazil)) Currently translated at 97.4% (382 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt_BR/ --- public/locales/pt-BR/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/pt-BR/common.json b/public/locales/pt-BR/common.json index f22496ff..81f59a3d 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -66,7 +66,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "Reproduzindo", From a0efa9911dada2f42e42c5353ce09d5633277bdb Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:15 +0000 Subject: [PATCH 157/188] Translated using Weblate (Yue) Currently translated at 30.1% (118 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/yue/ --- public/locales/yue/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json index c65bb323..38691e73 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -60,7 +60,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "nzbget": { "rate": "速度", From 01407158a06be684ed2ea5c010011c55b3b60800 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:15 +0000 Subject: [PATCH 158/188] Translated using Weblate (Finnish) Currently translated at 45.4% (178 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/fi/ --- public/locales/fi/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json index 68010755..6b00fb31 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -38,7 +38,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "Toistaa", From 8ecd936ccd617cd5826bfdf43b68906cc30aad18 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:15 +0000 Subject: [PATCH 159/188] Translated using Weblate (Telugu) Currently translated at 55.3% (217 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/te/ --- public/locales/te/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/te/common.json b/public/locales/te/common.json index c0711f1d..656e8073 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -55,7 +55,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "ఆడుతున్నారు", From 37ceb2254ac06cbae22448238860c283144e395c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:15 +0000 Subject: [PATCH 160/188] Translated using Weblate (Bulgarian) Currently translated at 11.7% (46 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/bg/ --- public/locales/bg/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json index f34c2023..796ea742 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -65,7 +65,8 @@ "starting": "Starting", "unhealthy": "Unhealthy", "not_found": "Not Found", - "exited": "Exited" + "exited": "Exited", + "healthy": "Healthy" }, "emby": { "playing": "Възпроизвежда", From a464cc31618b6e44a86b8cd8bea27f6ffa38d55d Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:15 +0000 Subject: [PATCH 161/188] Translated using Weblate (Turkish) Currently translated at 80.8% (317 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/tr/ --- public/locales/tr/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json index 3ff735a3..41924ebf 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -55,7 +55,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "Oynatılıyor", From c4832d8fcc286a3505e4220139dfaea76118fb59 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:16 +0000 Subject: [PATCH 162/188] Translated using Weblate (Serbian) Currently translated at 2.2% (9 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sr/ --- public/locales/sr/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json index 854736de..4d8fbfd5 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -55,7 +55,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "Playing", From e0d872fe389ebc0af62034424cec4a3775089286 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:16 +0000 Subject: [PATCH 163/188] Translated using Weblate (Arabic) Currently translated at 66.8% (262 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ar/ --- public/locales/ar/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json index 0ccb01b9..1e0253b2 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -113,7 +113,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "يعمل الآن", From b63a75840fe3155dedc736653f0cb396014157aa Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:16 +0000 Subject: [PATCH 164/188] Translated using Weblate (Czech) Currently translated at 85.9% (337 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/cs/ --- public/locales/cs/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index e8c03d3c..b19576f9 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -67,7 +67,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "Přehrává", From dda3164c72fcda1a68a2bd472692338925597350 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:16 +0000 Subject: [PATCH 165/188] Translated using Weblate (Danish) Currently translated at 50.5% (198 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/da/ --- public/locales/da/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/da/common.json b/public/locales/da/common.json index 14383f6d..03dc7667 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -195,7 +195,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "Afspiller", From f6685938c040f9e2bd946e5e56eddf5c7dd98501 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:16 +0000 Subject: [PATCH 166/188] Translated using Weblate (Malay) Currently translated at 64.5% (253 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ms/ --- public/locales/ms/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json index 538e1a26..9f1632e6 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -164,7 +164,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "changedetectionio": { "totalObserved": "Jumlah Diperhatikan", From 7912c0603e05d9b1f06030386ada6a9ccdab8387 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:16 +0000 Subject: [PATCH 167/188] Translated using Weblate (Hindi) Currently translated at 2.2% (9 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/hi/ --- public/locales/hi/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json index 20b557fa..7ac95d6c 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -89,7 +89,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "emby": { "playing": "Playing", From fadad38f8fbdb70a6ea4da196eed57fe8e1bd05f Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:16 +0000 Subject: [PATCH 168/188] Translated using Weblate (Esperanto) Currently translated at 26.2% (103 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/eo/ --- public/locales/eo/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json index 86c7e091..d28f8afa 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -55,7 +55,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "ping": { "error": "Eraro", From cce31d5d581a5eeda37ee0fb6c4537a3c4ed92fb Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:17 +0000 Subject: [PATCH 169/188] Translated using Weblate (Ukrainian) Currently translated at 97.4% (382 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/uk/ --- public/locales/uk/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json index e660d463..890c01fc 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -160,7 +160,8 @@ "not_found": "Not Found", "exited": "Exited", "partial": "Partial", - "running": "Running" + "running": "Running", + "healthy": "Healthy" }, "ping": { "error": "Помилка", From 63fe833a2edf8fee5480f14686f441708d88f3ff Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:17 +0000 Subject: [PATCH 170/188] Translated using Weblate (Japanese) Currently translated at 3.8% (15 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ja/ --- public/locales/ja/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json index 141e8221..6eb3dbbd 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -90,7 +90,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "ping": { "error": "Error", From 07152261d8adc3e7354273137d11082c2037fc23 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:17 +0000 Subject: [PATCH 171/188] Translated using Weblate (Latvian) Currently translated at 30.3% (119 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/lv/ --- public/locales/lv/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/lv/common.json b/public/locales/lv/common.json index dadb1513..0b09474d 100644 --- a/public/locales/lv/common.json +++ b/public/locales/lv/common.json @@ -59,7 +59,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "ping": { "error": "Kļūda", From fefaef34421ddd947a7b71559575135e3cf0c84c Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:12 +0000 Subject: [PATCH 172/188] Translated using Weblate (Thai) Currently translated at 11.9% (47 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/th/ --- public/locales/th/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/th/common.json b/public/locales/th/common.json index ae4ff7ac..fe969fdc 100644 --- a/public/locales/th/common.json +++ b/public/locales/th/common.json @@ -48,7 +48,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "common": { "bibyterate": "{{value, rate(bits: false; binary: true)}}", From 58eba7213635dfb67b8c80c4a4d63c0e6c628441 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Mon, 20 Mar 2023 14:07:13 +0000 Subject: [PATCH 173/188] Translated using Weblate (Slovak) Currently translated at 2.2% (9 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/sk/ --- public/locales/sk/common.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/locales/sk/common.json b/public/locales/sk/common.json index 2d58849b..839f8a70 100644 --- a/public/locales/sk/common.json +++ b/public/locales/sk/common.json @@ -12,7 +12,8 @@ "unhealthy": "Unhealthy", "not_found": "Not Found", "exited": "Exited", - "partial": "Partial" + "partial": "Partial", + "healthy": "Healthy" }, "rutorrent": { "active": "Active", From a03815657ff68758bd7361db1d1f84fb3a66bb21 Mon Sep 17 00:00:00 2001 From: Alanimdeo Date: Tue, 21 Mar 2023 15:31:53 +0100 Subject: [PATCH 174/188] Added translation using Weblate (Korean) --- public/locales/ko/common.json | 1 + 1 file changed, 1 insertion(+) create mode 100644 public/locales/ko/common.json diff --git a/public/locales/ko/common.json b/public/locales/ko/common.json new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/public/locales/ko/common.json @@ -0,0 +1 @@ +{} From 3caa7153a35be4229ec6b84720918656e5909dd8 Mon Sep 17 00:00:00 2001 From: gallegonovato Date: Mon, 20 Mar 2023 14:17:10 +0000 Subject: [PATCH 175/188] Translated using Weblate (Spanish) Currently translated at 100.0% (392 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/es/ --- public/locales/es/common.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/locales/es/common.json b/public/locales/es/common.json index b8fde1f1..dd3a5d5d 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -33,7 +33,7 @@ "not_found": "No encontrado", "exited": "Salida", "partial": "Parcial", - "healthy": "Healthy" + "healthy": "Saludable" }, "emby": { "playing": "Reproduciendo", From 59783f8edd9effb5f2fb4747a51dd374f18eb4cf Mon Sep 17 00:00:00 2001 From: Nonoss117 Date: Mon, 20 Mar 2023 17:01:04 +0000 Subject: [PATCH 176/188] Translated using Weblate (French) Currently translated at 100.0% (392 of 392 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 634b024f..2b2a7a45 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -33,7 +33,7 @@ "not_found": "Inconnu", "exited": "Arrêté", "partial": "Partiel", - "healthy": "Healthy" + "healthy": "Fonctionnel" }, "emby": { "playing": "En lecture", From 497874a9df0fcb1d60f7ae043478c5b0d12e3873 Mon Sep 17 00:00:00 2001 From: Smexhy Date: Mon, 20 Mar 2023 14:56:24 +0000 Subject: [PATCH 177/188] Translated using Weblate (Czech) Currently translated at 100.0% (392 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/cs/ --- public/locales/cs/common.json | 118 +++++++++++++++++----------------- 1 file changed, 59 insertions(+), 59 deletions(-) diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index b19576f9..2aa4fea7 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -14,11 +14,11 @@ "widget": { "missing_type": "Chybí typ widgetu: {{type}}", "api_error": "Chyba API", - "status": "Status", + "status": "Stav", "information": "Informace", "url": "URL", - "raw_error": "Chyba", - "response_data": "Data odpovědi" + "raw_error": "Nevyřešená chyba", + "response_data": "Data odezvy" }, "weather": { "current": "Aktuální poloha", @@ -62,13 +62,13 @@ "offline": "Offline", "error": "Chyba", "unknown": "Neznámý", - "running": "Running", - "starting": "Starting", - "unhealthy": "Unhealthy", - "not_found": "Not Found", - "exited": "Exited", - "partial": "Partial", - "healthy": "Healthy" + "running": "Běží", + "starting": "Startuje", + "unhealthy": "Nezdravý", + "not_found": "Nenalezen", + "exited": "Ukončen", + "partial": "Částečný", + "healthy": "Zdravý" }, "emby": { "playing": "Přehrává", @@ -161,7 +161,7 @@ "pending": "Čeká", "approved": "Schváleno", "available": "Dostupné", - "processing": "Zpracováváno" + "processing": "Zpracovávání" }, "pihole": { "queries": "Dotazy", @@ -317,9 +317,9 @@ "updates": "Aktualizace", "child_bridges": "Podřadné můstky", "child_bridges_status": "{{ok}}/{{total}}", - "up": "Up", - "pending": "Pending", - "down": "Down" + "up": "Zapnutý", + "pending": "Čeká se", + "down": "Vypnutý" }, "watchtower": { "containers_scanned": "Naskenováno", @@ -333,8 +333,8 @@ "indexers": "Indexery" }, "navidrome": { - "nothing_streaming": "Žádné aktivní streams", - "please_wait": "Prosím vyčkejte" + "nothing_streaming": "Žádné aktivní streamy", + "please_wait": "Čekejte prosím" }, "pyload": { "speed": "Rychlost", @@ -345,7 +345,7 @@ "gluetun": { "public_ip": "Veřejná IP", "region": "Oblast", - "country": "Země" + "country": "Stát" }, "hdhomerun": { "channels": "Kanály", @@ -356,7 +356,7 @@ "ping": "Odezva" }, "scrutiny": { - "passed": "Prošlo", + "passed": "Přijato", "failed": "Neúspěšné", "unknown": "Neznámé" }, @@ -465,37 +465,37 @@ "m": "m" }, "komga": { - "libraries": "Libraries", - "series": "Series", - "books": "Books" + "libraries": "Knihovny", + "series": "Série", + "books": "Knihy" }, "mylar": { - "series": "Series", - "issues": "Issues", - "wanted": "Wanted" + "series": "Série", + "issues": "Problémy", + "wanted": "Hledá se" }, "photoprism": { - "albums": "Albums", - "photos": "Photos", - "videos": "Videos", - "people": "People" + "albums": "Alba", + "photos": "Fotografie", + "videos": "Videa", + "people": "Lidé" }, "diskstation": { - "days": "Days", - "uptime": "Uptime", - "volumeAvailable": "Available" + "days": "Dni", + "uptime": "Doba provozu", + "volumeAvailable": "K dispozici" }, "fileflows": { - "queue": "Queue", - "processing": "Processing", - "processed": "Processed", - "time": "Time" + "queue": "Fronta", + "processing": "Zpracování", + "processed": "Zpracováno", + "time": "Čas" }, "grafana": { - "dashboards": "Dashboards", - "datasources": "Data Sources", - "totalalerts": "Total Alerts", - "alertstriggered": "Alerts Triggered" + "dashboards": "Přístrojové panely", + "datasources": "Zdroje dat", + "totalalerts": "Celkový počet upozornění", + "alertstriggered": "Spuštěné výstrahy" }, "nextcloud": { "cpuload": "CPU zatížení", @@ -504,16 +504,16 @@ "activeusers": "Aktivní uživatelé" }, "kopia": { - "status": "Status", - "size": "Size", - "lastrun": "Last Run", - "nextrun": "Next Run", - "failed": "Failed" + "status": "Stav", + "size": "Velikost", + "lastrun": "Poslední spuštění", + "nextrun": "Další spuštění", + "failed": "Neúspěšné" }, "unmanic": { - "active_workers": "Active Workers", - "total_workers": "Total Workers", - "records_total": "Queue Length" + "active_workers": "Aktivní workers", + "total_workers": "Workers celkem", + "records_total": "Délka fronty" }, "healthchecks": { "new": "Nové", @@ -526,13 +526,13 @@ "never": "Zatím žádné pingy" }, "pterodactyl": { - "servers": "Servers", - "nodes": "Nodes" + "servers": "Servery", + "nodes": "Uzly" }, "prometheus": { - "targets_down": "Targets Down", - "targets_total": "Total Targets", - "targets_up": "Targets Up" + "targets_down": "Cíle vypnuté", + "targets_total": "Cíle celkem", + "targets_up": "Cíle zapnuté" }, "minecraft": { "up": "Online", @@ -542,14 +542,14 @@ "status": "Stav" }, "ghostfolio": { - "gross_percent_today": "Today", - "gross_percent_1y": "One year", - "gross_percent_max": "All time" + "gross_percent_today": "Dnes", + "gross_percent_1y": "Jeden rok", + "gross_percent_max": "Za celou dobu" }, "audiobookshelf": { - "podcasts": "Podcasts", - "books": "Books", - "podcastsDuration": "Duration", - "booksDuration": "Duration" + "podcasts": "Podcasty", + "books": "Knihy", + "podcastsDuration": "Trvání", + "booksDuration": "Trvání" } } From fb871f52c3aab42c4a7413a4562e90f5a58d5499 Mon Sep 17 00:00:00 2001 From: Dan Date: Tue, 21 Mar 2023 11:14:44 +0000 Subject: [PATCH 178/188] Translated using Weblate (Ukrainian) Currently translated at 100.0% (392 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/uk/ --- public/locales/uk/common.json | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json index 890c01fc..09cafae0 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -155,13 +155,13 @@ "offline": "Офлайн", "error": "Помилка", "unknown": "Невідомий", - "starting": "Starting", - "unhealthy": "Unhealthy", - "not_found": "Not Found", - "exited": "Exited", - "partial": "Partial", - "running": "Running", - "healthy": "Healthy" + "starting": "Запуск", + "unhealthy": "Нездоровий", + "not_found": "Не знайдено", + "exited": "Вийшов", + "partial": "Частковий", + "running": "Запущено", + "healthy": "Здоров'я" }, "ping": { "error": "Помилка", @@ -367,9 +367,9 @@ "update_available": "Доступне оновлення", "up_to_date": "Актуально", "child_bridges": "Дитячі мости", - "up": "Up", - "pending": "Pending", - "down": "Down" + "up": "Вгору", + "pending": "В очікуванні", + "down": "Вниз" }, "watchtower": { "containers_scanned": "Відскановано", From 3838c7395c1cf0b71ecea9f7602779625cc5b0f0 Mon Sep 17 00:00:00 2001 From: Anonymous Date: Tue, 21 Mar 2023 14:31:58 +0000 Subject: [PATCH 179/188] Translated using Weblate (Korean) Currently translated at 100.0% (0 of 0 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ko/ --- public/locales/ko/common.json | 556 +++++++++++++++++++++++++++++++++- 1 file changed, 555 insertions(+), 1 deletion(-) diff --git a/public/locales/ko/common.json b/public/locales/ko/common.json index 0967ef42..7e8954c3 100644 --- a/public/locales/ko/common.json +++ b/public/locales/ko/common.json @@ -1 +1,555 @@ -{} +{ + "common": { + "bibyterate": "{{value, rate(bits: false; binary: true)}}", + "bibitrate": "{{value, rate(bits: true; binary: true)}}" + }, + "rutorrent": { + "download": "Download", + "active": "Active", + "upload": "Upload" + }, + "authentik": { + "users": "Users", + "loginsLast24H": "Logins (24h)", + "failedLoginsLast24H": "Failed Logins (24h)" + }, + "pterodactyl": { + "nodes": "Nodes", + "servers": "Servers" + }, + "widget": { + "missing_type": "Missing Widget Type: {{type}}", + "api_error": "API Error", + "information": "Information", + "status": "Status", + "url": "URL", + "raw_error": "Raw Error", + "response_data": "Response Data" + }, + "weather": { + "current": "Current Location", + "allow": "Click to allow", + "updating": "Updating", + "wait": "Please wait" + }, + "search": { + "placeholder": "Search…" + }, + "resources": { + "cpu": "CPU", + "mem": "MEM", + "total": "Total", + "free": "Free", + "used": "Used", + "load": "Load" + }, + "unifi": { + "users": "Users", + "uptime": "System Uptime", + "days": "Days", + "wan": "WAN", + "lan": "LAN", + "wlan": "WLAN", + "devices": "Devices", + "lan_devices": "LAN Devices", + "wlan_devices": "WLAN Devices", + "lan_users": "LAN Users", + "wlan_users": "WLAN Users", + "up": "UP", + "down": "DOWN", + "wait": "Please wait", + "empty_data": "Subsystem status unknown" + }, + "docker": { + "rx": "RX", + "tx": "TX", + "mem": "MEM", + "cpu": "CPU", + "running": "Running", + "offline": "Offline", + "error": "Error", + "unknown": "Unknown", + "healthy": "Healthy", + "starting": "Starting", + "unhealthy": "Unhealthy", + "not_found": "Not Found", + "exited": "Exited", + "partial": "Partial" + }, + "ping": { + "error": "Error", + "ping": "Ping" + }, + "emby": { + "playing": "Playing", + "transcoding": "Transcoding", + "bitrate": "Bitrate", + "no_active": "No Active Streams", + "movies": "Movies", + "series": "Series", + "episodes": "Episodes", + "songs": "Songs" + }, + "flood": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "changedetectionio": { + "totalObserved": "Total Observed", + "diffsDetected": "Diffs Detected" + }, + "tautulli": { + "playing": "Playing", + "transcoding": "Transcoding", + "bitrate": "Bitrate", + "no_active": "No Active Streams" + }, + "omada": { + "connectedAp": "Connected APs", + "activeUser": "Active devices", + "alerts": "Alerts", + "connectedGateway": "Connected gateways", + "connectedSwitches": "Connected switches" + }, + "nzbget": { + "rate": "Rate", + "remaining": "Remaining", + "downloaded": "Downloaded" + }, + "plex": { + "streams": "Active Streams", + "movies": "Movies", + "tv": "TV Shows" + }, + "sabnzbd": { + "rate": "Rate", + "queue": "Queue", + "timeleft": "Time Left" + }, + "transmission": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "qbittorrent": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "deluge": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "downloadstation": { + "download": "Download", + "upload": "Upload", + "leech": "Leech", + "seed": "Seed" + }, + "sonarr": { + "wanted": "Wanted", + "queued": "Queued", + "series": "Series" + }, + "radarr": { + "wanted": "Wanted", + "missing": "Missing", + "queued": "Queued", + "movies": "Movies" + }, + "lidarr": { + "wanted": "Wanted", + "queued": "Queued", + "albums": "Albums" + }, + "readarr": { + "wanted": "Wanted", + "queued": "Queued", + "books": "Books" + }, + "bazarr": { + "missingEpisodes": "Missing Episodes", + "missingMovies": "Missing Movies" + }, + "ombi": { + "pending": "Pending", + "approved": "Approved", + "available": "Available" + }, + "jellyseerr": { + "pending": "Pending", + "approved": "Approved", + "available": "Available" + }, + "overseerr": { + "pending": "Pending", + "processing": "Processing", + "approved": "Approved", + "available": "Available" + }, + "pihole": { + "queries": "Queries", + "blocked": "Blocked", + "gravity": "Gravity" + }, + "adguard": { + "queries": "Queries", + "blocked": "Blocked", + "filtered": "Filtered", + "latency": "Latency" + }, + "speedtest": { + "upload": "Upload", + "download": "Download", + "ping": "Ping" + }, + "portainer": { + "running": "Running", + "stopped": "Stopped", + "total": "Total" + }, + "tdarr": { + "queue": "Queue", + "processed": "Processed", + "errored": "Errored", + "saved": "Saved" + }, + "traefik": { + "routers": "Routers", + "services": "Services", + "middleware": "Middleware" + }, + "navidrome": { + "nothing_streaming": "No Active Streams", + "please_wait": "Please Wait" + }, + "npm": { + "enabled": "Enabled", + "disabled": "Disabled", + "total": "Total" + }, + "coinmarketcap": { + "configure": "Configure one or more crypto currencies to track", + "1hour": "1 Hour", + "1day": "1 Day", + "7days": "7 Days", + "30days": "30 Days" + }, + "gotify": { + "apps": "Applications", + "clients": "Clients", + "messages": "Messages" + }, + "prowlarr": { + "enableIndexers": "Indexers", + "numberOfGrabs": "Grabs", + "numberOfQueries": "Queries", + "numberOfFailGrabs": "Fail Grabs", + "numberOfFailQueries": "Fail Queries" + }, + "jackett": { + "configured": "Configured", + "errored": "Errored" + }, + "strelaysrv": { + "numActiveSessions": "Sessions", + "numConnections": "Connections", + "dataRelayed": "Relayed", + "transferRate": "Rate" + }, + "mastodon": { + "user_count": "Users", + "status_count": "Posts", + "domain_count": "Domains" + }, + "medusa": { + "wanted": "Wanted", + "queued": "Queued", + "series": "Series" + }, + "minecraft": { + "players": "Players", + "version": "Version", + "status": "Status", + "up": "Online", + "down": "Offline" + }, + "miniflux": { + "read": "Read", + "unread": "Unread" + }, + "proxmox": { + "mem": "MEM", + "cpu": "CPU", + "lxc": "LXC", + "vms": "VMs" + }, + "glances": { + "cpu": "CPU", + "mem": "MEM", + "wait": "Please wait" + }, + "quicklaunch": { + "bookmark": "Bookmark", + "service": "Service", + "search": "Search", + "custom": "Custom", + "visit": "Visit", + "url": "URL" + }, + "wmo": { + "0-day": "Sunny", + "0-night": "Clear", + "1-day": "Mainly Sunny", + "1-night": "Mainly Clear", + "2-day": "Partly Cloudy", + "2-night": "Partly Cloudy", + "3-day": "Cloudy", + "3-night": "Cloudy", + "45-day": "Foggy", + "45-night": "Foggy", + "48-day": "Foggy", + "48-night": "Foggy", + "51-day": "Light Drizzle", + "51-night": "Light Drizzle", + "53-day": "Drizzle", + "53-night": "Drizzle", + "55-day": "Heavy Drizzle", + "55-night": "Heavy Drizzle", + "56-day": "Light Freezing Drizzle", + "56-night": "Light Freezing Drizzle", + "57-day": "Freezing Drizzle", + "57-night": "Freezing Drizzle", + "61-day": "Light Rain", + "61-night": "Light Rain", + "63-day": "Rain", + "63-night": "Rain", + "65-day": "Heavy Rain", + "65-night": "Heavy Rain", + "66-day": "Freezing Rain", + "66-night": "Freezing Rain", + "67-day": "Freezing Rain", + "67-night": "Freezing Rain", + "71-day": "Light Snow", + "71-night": "Light Snow", + "73-day": "Snow", + "73-night": "Snow", + "75-day": "Heavy Snow", + "75-night": "Heavy Snow", + "77-day": "Snow Grains", + "77-night": "Snow Grains", + "80-day": "Light Showers", + "80-night": "Light Showers", + "81-day": "Showers", + "81-night": "Showers", + "82-day": "Heavy Showers", + "82-night": "Heavy Showers", + "85-day": "Snow Showers", + "85-night": "Snow Showers", + "86-day": "Snow Showers", + "86-night": "Snow Showers", + "95-day": "Thunderstorm", + "95-night": "Thunderstorm", + "96-day": "Thunderstorm With Hail", + "96-night": "Thunderstorm With Hail", + "99-day": "Thunderstorm With Hail", + "99-night": "Thunderstorm With Hail" + }, + "homebridge": { + "available_update": "System", + "updates": "Updates", + "update_available": "Update Available", + "up_to_date": "Up to Date", + "child_bridges": "Child Bridges", + "child_bridges_status": "{{ok}}/{{total}}", + "up": "Up", + "pending": "Pending", + "down": "Down" + }, + "healthchecks": { + "new": "New", + "up": "Online", + "grace": "In Grace Period", + "down": "Offline", + "paused": "Paused", + "status": "Status", + "last_ping": "Last Ping", + "never": "No pings yet" + }, + "watchtower": { + "containers_scanned": "Scanned", + "containers_updated": "Updated", + "containers_failed": "Failed" + }, + "autobrr": { + "approvedPushes": "Approved", + "rejectedPushes": "Rejected", + "filters": "Filters", + "indexers": "Indexers" + }, + "tubearchivist": { + "downloads": "Queue", + "videos": "Videos", + "channels": "Channels", + "playlists": "Playlists" + }, + "truenas": { + "load": "System Load", + "uptime": "Uptime", + "alerts": "Alerts", + "time": "{{value, number(style: unit; unitDisplay: long;)}}" + }, + "pyload": { + "speed": "Speed", + "active": "Active", + "queue": "Queue", + "total": "Total" + }, + "gluetun": { + "public_ip": "Public IP", + "region": "Region", + "country": "Country" + }, + "hdhomerun": { + "channels": "Channels", + "hd": "HD" + }, + "scrutiny": { + "passed": "Passed", + "failed": "Failed", + "unknown": "Unknown" + }, + "paperlessngx": { + "inbox": "Inbox", + "total": "Total" + }, + "nextdns": { + "wait": "Please Wait", + "no_devices": "No Device Data Received" + }, + "mikrotik": { + "cpuLoad": "CPU Load", + "memoryUsed": "Memory Used", + "uptime": "Uptime", + "numberOfLeases": "Leases" + }, + "xteve": { + "streams_all": "All Streams", + "streams_active": "Active Streams", + "streams_xepg": "XEPG Channels" + }, + "opnsense": { + "cpu": "CPU Load", + "memory": "Active Memory", + "wanUpload": "WAN Upload", + "wanDownload": "WAN Download" + }, + "moonraker": { + "printer_state": "Printer State", + "print_status": "Print Status", + "print_progress": "Progress", + "layers": "Layers" + }, + "octoprint": { + "printer_state": "Status", + "temp_tool": "Tool temp", + "temp_bed": "Bed temp", + "job_completion": "Completion" + }, + "cloudflared": { + "origin_ip": "Origin IP", + "status": "Status" + }, + "proxmoxbackupserver": { + "datastore_usage": "Datastore", + "failed_tasks_24h": "Failed Tasks 24h", + "cpu_usage": "CPU", + "memory_usage": "Memory" + }, + "immich": { + "users": "Users", + "photos": "Photos", + "videos": "Videos", + "storage": "Storage" + }, + "uptimekuma": { + "up": "Sites Up", + "down": "Sites Down", + "uptime": "Uptime", + "incident": "Incident", + "m": "m" + }, + "komga": { + "libraries": "Libraries", + "series": "Series", + "books": "Books" + }, + "diskstation": { + "days": "Days", + "uptime": "Uptime", + "volumeAvailable": "Available" + }, + "mylar": { + "series": "Series", + "issues": "Issues", + "wanted": "Wanted" + }, + "photoprism": { + "albums": "Albums", + "photos": "Photos", + "videos": "Videos", + "people": "People" + }, + "fileflows": { + "queue": "Queue", + "processing": "Processing", + "processed": "Processed", + "time": "Time" + }, + "grafana": { + "dashboards": "Dashboards", + "datasources": "Data Sources", + "totalalerts": "Total Alerts", + "alertstriggered": "Alerts Triggered" + }, + "nextcloud": { + "cpuload": "Cpu Load", + "memoryusage": "Memory Usage", + "freespace": "Free Space", + "activeusers": "Active Users" + }, + "kopia": { + "status": "Status", + "size": "Size", + "lastrun": "Last Run", + "nextrun": "Next Run", + "failed": "Failed" + }, + "unmanic": { + "active_workers": "Active Workers", + "total_workers": "Total Workers", + "records_total": "Queue Length" + }, + "prometheus": { + "targets_up": "Targets Up", + "targets_down": "Targets Down", + "targets_total": "Total Targets" + }, + "ghostfolio": { + "gross_percent_today": "Today", + "gross_percent_1y": "One year", + "gross_percent_max": "All time" + }, + "audiobookshelf": { + "podcasts": "Podcasts", + "books": "Books", + "podcastsDuration": "Duration", + "booksDuration": "Duration" + } +} From d9b0c5889640b1b33d74a2d6cafdf1d06a9112d0 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue, 21 Mar 2023 14:19:18 -0700 Subject: [PATCH 180/188] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index e19252ae..baeb5841 100644 --- a/README.md +++ b/README.md @@ -37,8 +37,7 @@ - **Secure!** Every API request to backend services goes through a proxy server, so your API keys are never exposed to the frontend client. - Images built for AMD64 (x86_64), ARM64, ARMv7 and ARMv6 - Supports all Raspberry Pi's, most SBCs & Apple Silicon -- Full i18n support with automatic language detection - - Translations for Catalan, Chinese, Dutch, Finnish, French, German, Hebrew, Hungarian, Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Spanish, Swedish and Yue +- Full i18n support with translations for Catalan, Chinese, Dutch, Finnish, French, German, Hebrew, Hungarian, Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Spanish, Swedish and Yue - Want to help translate? [Join the Weblate project](https://hosted.weblate.org/engage/homepage/) - Service & Web Bookmarks - Docker Integration From 9081dcc77c9b701782fb2def6ce491fb8494d68e Mon Sep 17 00:00:00 2001 From: Alanimdeo Date: Tue, 21 Mar 2023 15:09:47 +0000 Subject: [PATCH 181/188] Translated using Weblate (Korean) Currently translated at 42.6% (167 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ko/ --- public/locales/ko/common.json | 284 +++++++++++++++++----------------- 1 file changed, 142 insertions(+), 142 deletions(-) diff --git a/public/locales/ko/common.json b/public/locales/ko/common.json index 7e8954c3..97c2bc2a 100644 --- a/public/locales/ko/common.json +++ b/public/locales/ko/common.json @@ -4,9 +4,9 @@ "bibitrate": "{{value, rate(bits: true; binary: true)}}" }, "rutorrent": { - "download": "Download", - "active": "Active", - "upload": "Upload" + "download": "다운로드", + "active": "활성", + "upload": "업로드" }, "authentik": { "users": "Users", @@ -19,235 +19,235 @@ }, "widget": { "missing_type": "Missing Widget Type: {{type}}", - "api_error": "API Error", - "information": "Information", - "status": "Status", + "api_error": "API 오류", + "information": "정보", + "status": "상태", "url": "URL", - "raw_error": "Raw Error", - "response_data": "Response Data" + "raw_error": "Raw 오류", + "response_data": "응답 데이터" }, "weather": { - "current": "Current Location", - "allow": "Click to allow", - "updating": "Updating", - "wait": "Please wait" + "current": "현재 위치", + "allow": "클릭하여 허용", + "updating": "갱신 중", + "wait": "잠시만 기다리세요" }, "search": { - "placeholder": "Search…" + "placeholder": "검색…" }, "resources": { "cpu": "CPU", "mem": "MEM", - "total": "Total", - "free": "Free", - "used": "Used", - "load": "Load" + "total": "총합", + "free": "남음", + "used": "사용", + "load": "부하" }, "unifi": { - "users": "Users", - "uptime": "System Uptime", - "days": "Days", + "users": "사용자", + "uptime": "시스템 업타임", + "days": "일", "wan": "WAN", "lan": "LAN", "wlan": "WLAN", - "devices": "Devices", - "lan_devices": "LAN Devices", - "wlan_devices": "WLAN Devices", - "lan_users": "LAN Users", - "wlan_users": "WLAN Users", + "devices": "장치", + "lan_devices": "LAN 장치", + "wlan_devices": "WLAN 장치", + "lan_users": "LAN 사용자", + "wlan_users": "WLAN 사용자", "up": "UP", "down": "DOWN", - "wait": "Please wait", - "empty_data": "Subsystem status unknown" + "wait": "잠시만 기다리세요", + "empty_data": "서브시스템 상태 알 수 없음" }, "docker": { "rx": "RX", "tx": "TX", "mem": "MEM", "cpu": "CPU", - "running": "Running", - "offline": "Offline", - "error": "Error", - "unknown": "Unknown", - "healthy": "Healthy", - "starting": "Starting", - "unhealthy": "Unhealthy", - "not_found": "Not Found", - "exited": "Exited", - "partial": "Partial" + "running": "가동 중", + "offline": "중지", + "error": "오류", + "unknown": "알 수 없음", + "healthy": "좋음", + "starting": "시작 중", + "unhealthy": "이상", + "not_found": "찾을 수 없음", + "exited": "종료됨", + "partial": "부분적" }, "ping": { - "error": "Error", + "error": "오류", "ping": "Ping" }, "emby": { - "playing": "Playing", - "transcoding": "Transcoding", - "bitrate": "Bitrate", - "no_active": "No Active Streams", - "movies": "Movies", - "series": "Series", - "episodes": "Episodes", - "songs": "Songs" + "playing": "재생 중", + "transcoding": "트랜스코딩", + "bitrate": "비트레이트", + "no_active": "활성 스트림 없음", + "movies": "영화", + "series": "시리즈", + "episodes": "에피소드", + "songs": "음악" }, "flood": { - "download": "Download", - "upload": "Upload", - "leech": "Leech", - "seed": "Seed" + "download": "다운로드", + "upload": "업로드", + "leech": "리치", + "seed": "시드" }, "changedetectionio": { "totalObserved": "Total Observed", - "diffsDetected": "Diffs Detected" + "diffsDetected": "변경 감지됨" }, "tautulli": { - "playing": "Playing", - "transcoding": "Transcoding", - "bitrate": "Bitrate", - "no_active": "No Active Streams" + "playing": "재생 중", + "transcoding": "트랜스코딩", + "bitrate": "비트레이트", + "no_active": "활성 스트림 없음" }, "omada": { - "connectedAp": "Connected APs", - "activeUser": "Active devices", - "alerts": "Alerts", - "connectedGateway": "Connected gateways", - "connectedSwitches": "Connected switches" + "connectedAp": "연결된 AP", + "activeUser": "활성 장치", + "alerts": "경고", + "connectedGateway": "연결된 게이트웨이", + "connectedSwitches": "연결된 스위치" }, "nzbget": { - "rate": "Rate", - "remaining": "Remaining", - "downloaded": "Downloaded" + "rate": "비율", + "remaining": "남음", + "downloaded": "다운로드됨" }, "plex": { - "streams": "Active Streams", - "movies": "Movies", - "tv": "TV Shows" + "streams": "활성 스트림", + "movies": "영화", + "tv": "TV 쇼" }, "sabnzbd": { - "rate": "Rate", - "queue": "Queue", - "timeleft": "Time Left" + "rate": "비율", + "queue": "대기열", + "timeleft": "남은 시간" }, "transmission": { - "download": "Download", - "upload": "Upload", - "leech": "Leech", - "seed": "Seed" + "download": "다운로드", + "upload": "업로드", + "leech": "리치", + "seed": "시드" }, "qbittorrent": { - "download": "Download", - "upload": "Upload", - "leech": "Leech", - "seed": "Seed" + "download": "다운로드", + "upload": "업로드", + "leech": "리치", + "seed": "시드" }, "deluge": { - "download": "Download", - "upload": "Upload", - "leech": "Leech", - "seed": "Seed" + "download": "다운로드", + "upload": "업로드", + "leech": "리치", + "seed": "시드" }, "downloadstation": { - "download": "Download", - "upload": "Upload", - "leech": "Leech", - "seed": "Seed" + "download": "다운로드", + "upload": "업로드", + "leech": "리치", + "seed": "시드" }, "sonarr": { - "wanted": "Wanted", - "queued": "Queued", - "series": "Series" + "wanted": "요청", + "queued": "대기 중", + "series": "시리즈" }, "radarr": { - "wanted": "Wanted", - "missing": "Missing", - "queued": "Queued", - "movies": "Movies" + "wanted": "요청", + "missing": "빠짐", + "queued": "대기 중", + "movies": "영화" }, "lidarr": { - "wanted": "Wanted", - "queued": "Queued", - "albums": "Albums" + "wanted": "요청", + "queued": "대기 중", + "albums": "앨범" }, "readarr": { - "wanted": "Wanted", - "queued": "Queued", - "books": "Books" + "wanted": "요청", + "queued": "대기 중", + "books": "책" }, "bazarr": { - "missingEpisodes": "Missing Episodes", - "missingMovies": "Missing Movies" + "missingEpisodes": "빠진 에피소드", + "missingMovies": "빠진 영화" }, "ombi": { - "pending": "Pending", - "approved": "Approved", - "available": "Available" + "pending": "대기 중", + "approved": "승인됨", + "available": "이용 가능" }, "jellyseerr": { - "pending": "Pending", - "approved": "Approved", - "available": "Available" + "pending": "대기 중", + "approved": "승인됨", + "available": "사용 가능" }, "overseerr": { - "pending": "Pending", - "processing": "Processing", - "approved": "Approved", - "available": "Available" + "pending": "대기 중", + "processing": "처리 중", + "approved": "승인됨", + "available": "사용 가능" }, "pihole": { - "queries": "Queries", - "blocked": "Blocked", + "queries": "쿼리", + "blocked": "차단됨", "gravity": "Gravity" }, "adguard": { - "queries": "Queries", - "blocked": "Blocked", - "filtered": "Filtered", - "latency": "Latency" + "queries": "쿼리", + "blocked": "차단됨", + "filtered": "필터링됨", + "latency": "지연" }, "speedtest": { - "upload": "Upload", - "download": "Download", + "upload": "업로드", + "download": "다운로드", "ping": "Ping" }, "portainer": { - "running": "Running", - "stopped": "Stopped", - "total": "Total" + "running": "가동 중", + "stopped": "중지", + "total": "총합" }, "tdarr": { - "queue": "Queue", - "processed": "Processed", - "errored": "Errored", - "saved": "Saved" + "queue": "대기열", + "processed": "처리됨", + "errored": "오류", + "saved": "저장됨" }, "traefik": { - "routers": "Routers", - "services": "Services", - "middleware": "Middleware" + "routers": "라우터", + "services": "서비스", + "middleware": "미들웨어" }, "navidrome": { - "nothing_streaming": "No Active Streams", - "please_wait": "Please Wait" + "nothing_streaming": "활성 스트림 없음", + "please_wait": "잠시만 기다리세요" }, "npm": { - "enabled": "Enabled", - "disabled": "Disabled", - "total": "Total" + "enabled": "활성", + "disabled": "비활성", + "total": "총합" }, "coinmarketcap": { - "configure": "Configure one or more crypto currencies to track", - "1hour": "1 Hour", - "1day": "1 Day", - "7days": "7 Days", - "30days": "30 Days" + "configure": "한 개 이상의 가상화폐를 설정하여 추적", + "1hour": "1시간", + "1day": "1일", + "7days": "7일", + "30days": "30일" }, "gotify": { - "apps": "Applications", - "clients": "Clients", - "messages": "Messages" + "apps": "어플리케이션", + "clients": "클라이언트", + "messages": "메시지" }, "prowlarr": { - "enableIndexers": "Indexers", + "enableIndexers": "인덱서", "numberOfGrabs": "Grabs", "numberOfQueries": "Queries", "numberOfFailGrabs": "Fail Grabs", From 1984a2a349198a8a16254c97c95d7148e7bfe1d7 Mon Sep 17 00:00:00 2001 From: Sitram Date: Thu, 23 Mar 2023 13:40:35 +0000 Subject: [PATCH 182/188] Translated using Weblate (Romanian) Currently translated at 35.2% (138 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ro/ --- public/locales/ro/common.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json index 6947a160..f9a9a6cd 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -72,7 +72,7 @@ "missing_type": "Lipsește Tipul de Widget: {{type}}", "api_error": "Eroare API", "status": "Status", - "information": "Information", + "information": "Informatie", "url": "URL", "raw_error": "Raw Error", "response_data": "Response Data" From 436a7cb8ea09372da330218b4cf2c0b602bc3d21 Mon Sep 17 00:00:00 2001 From: Sitram Date: Thu, 23 Mar 2023 13:50:14 +0000 Subject: [PATCH 183/188] Translated using Weblate (Romanian) Currently translated at 38.5% (151 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/ro/ --- public/locales/ro/common.json | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json index f9a9a6cd..d35141f5 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -72,10 +72,10 @@ "missing_type": "Lipsește Tipul de Widget: {{type}}", "api_error": "Eroare API", "status": "Status", - "information": "Informatie", + "information": "Informație", "url": "URL", - "raw_error": "Raw Error", - "response_data": "Response Data" + "raw_error": "Eroare Raw", + "response_data": "Date de raspuns" }, "search": { "placeholder": "Caută…" @@ -210,13 +210,13 @@ "wlan_users": "Utilizatori WLAN", "up": "Pornit", "down": "Oprit", - "wait": "Va rugam asteptati", + "wait": "Vă rugăm așteptați", "lan": "LAN", "wlan": "WLAN", - "devices": "Devices", - "lan_devices": "LAN Devices", - "wlan_devices": "WLAN Devices", - "empty_data": "Subsystem status unknown" + "devices": "Dispozitive", + "lan_devices": "Dispozitive LAN", + "wlan_devices": "Dispozitive WLAN", + "empty_data": "Starea subsistemului este necunoscut" }, "plex": { "streams": "Fluxuri active", @@ -391,7 +391,7 @@ "no_devices": "No Device Data Received" }, "common": { - "bibyterate": "{{value, rate(bits: false; binary: true)}}", + "bibyterate": "{{valoare, rata(bits: fals; binar: adevarat)}}", "bibitrate": "{{value, rate(bits: true; binary: true)}}" }, "omada": { @@ -508,12 +508,12 @@ "size": "Size", "lastrun": "Last Run", "nextrun": "Next Run", - "failed": "Failed" + "failed": "Eșuat" }, "unmanic": { - "active_workers": "Active Workers", - "total_workers": "Total Workers", - "records_total": "Queue Length" + "active_workers": "Muncitori activi", + "total_workers": "Muncitori totali", + "records_total": "Lungimea cozii" }, "healthchecks": { "new": "New", @@ -526,8 +526,8 @@ "never": "No pings yet" }, "pterodactyl": { - "servers": "Servers", - "nodes": "Nodes" + "servers": "Servere", + "nodes": "Noduri" }, "prometheus": { "targets_up": "Targets Up", From d5447f8aa84c74129356e952bc44d2d04b7a5135 Mon Sep 17 00:00:00 2001 From: Smexhy Date: Thu, 23 Mar 2023 17:28:36 +0000 Subject: [PATCH 184/188] Translated using Weblate (Czech) Currently translated at 100.0% (392 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/cs/ --- public/locales/cs/common.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index 2aa4fea7..90c04308 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -312,7 +312,7 @@ }, "homebridge": { "update_available": "Dostupná", - "up_to_date": "Všechno aktuální", + "up_to_date": "Žádné", "available_update": "Systém", "updates": "Aktualizace", "child_bridges": "Podřadné můstky", From 5437da49995b847a16ff612f6d6f8bfbea2fa84a Mon Sep 17 00:00:00 2001 From: Henrique Miraldo Date: Sat, 25 Mar 2023 14:39:18 +0000 Subject: [PATCH 185/188] Translated using Weblate (Portuguese) Currently translated at 96.1% (377 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt/ --- public/locales/pt/common.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index 456f4a51..c9314cb5 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -28,12 +28,12 @@ "error": "Erro", "unknown": "Desconhecido", "partial": "Partial", - "running": "Running", - "starting": "Starting", - "unhealthy": "Unhealthy", - "not_found": "Not Found", - "exited": "Exited", - "healthy": "Healthy" + "running": "Executando", + "starting": "Iniciando", + "unhealthy": "Não-saudável", + "not_found": "Não Encontrado", + "exited": "Encerrado", + "healthy": "Saudável" }, "emby": { "playing": "A reproduzir", From f895a6bf235f6aba49412e794d1c4073edcff4a2 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 25 Mar 2023 08:46:42 -0700 Subject: [PATCH 186/188] Fix status error display --- src/components/services/kubernetes-status.jsx | 2 +- src/components/services/status.jsx | 68 ++++++++++--------- 2 files changed, 36 insertions(+), 34 deletions(-) diff --git a/src/components/services/kubernetes-status.jsx b/src/components/services/kubernetes-status.jsx index 06dde6fa..4739980b 100644 --- a/src/components/services/kubernetes-status.jsx +++ b/src/components/services/kubernetes-status.jsx @@ -6,7 +6,7 @@ export default function KubernetesStatus({ service }) { const { data, error } = useSWR(`/api/kubernetes/status/${service.namespace}/${service.app}?${podSelectorString}`); if (error) { -
+
{t("docker.error")}
} diff --git a/src/components/services/status.jsx b/src/components/services/status.jsx index 70cad6b2..7ef6a079 100644 --- a/src/components/services/status.jsx +++ b/src/components/services/status.jsx @@ -7,52 +7,54 @@ export default function Status({ service }) { const { data, error } = useSWR(`/api/docker/status/${service.container}/${service.server || ""}`); if (error) { -
+
{t("docker.error")}
} - let statusLabel = ""; + if (data) { + let statusLabel = ""; + + if (data.status?.includes("running")) { + if (data.health === "starting") { + return ( +
+
{t("docker.starting")}
+
+ ); + } + + if (data.health === "unhealthy") { + return ( +
+
{t("docker.unhealthy")}
+
+ ); + } + + if (!data.health) { + statusLabel = data.status.replace("running", t("docker.running")) + } else { + statusLabel = data.health === "healthy" ? t("docker.healthy") : data.health + } - if (data && data.status?.includes("running")) { - if (data.health === "starting") { return ( -
-
{t("docker.starting")}
+
+
{statusLabel}
); } - - if (data.health === "unhealthy") { + + if (data.status === "not found" || data.status === "exited" || data.status?.startsWith("partial")) { + if (data.status === "not found") statusLabel = t("docker.not_found") + else if (data.status === "exited") statusLabel = t("docker.exited") + else statusLabel = data.status.replace("partial", t("docker.partial")) return ( -
-
{t("docker.unhealthy")}
+
+
{statusLabel}
); } - - if (!data.health) { - statusLabel = data.status.replace("running", t("docker.running")) - } else { - statusLabel = data.health === "healthy" ? t("docker.healthy") : data.health - } - - return ( -
-
{statusLabel}
-
- ); - } - - if (data && (data.status === "not found" || data.status === "exited" || data.status?.startsWith("partial"))) { - if (data.status === "not found") statusLabel = t("docker.not_found") - else if (data.status === "exited") statusLabel = t("docker.exited") - else statusLabel = data.status.replace("partial", t("docker.partial")) - return ( -
-
{statusLabel}
-
- ); } return ( From bd027868d0f32cc66e9200aefcd3b0b231fc9e8e Mon Sep 17 00:00:00 2001 From: Henrique Miraldo Date: Sat, 25 Mar 2023 14:40:57 +0000 Subject: [PATCH 187/188] Translated using Weblate (Portuguese) Currently translated at 97.1% (381 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt/ --- public/locales/pt/common.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index c9314cb5..5edd6874 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -27,9 +27,9 @@ "offline": "Desligado", "error": "Erro", "unknown": "Desconhecido", - "partial": "Partial", - "running": "Executando", - "starting": "Iniciando", + "partial": "Parcial", + "running": "A correr", + "starting": "A iniciar", "unhealthy": "Não-saudável", "not_found": "Não Encontrado", "exited": "Encerrado", @@ -319,7 +319,7 @@ "child_bridges": "Pontes Filhas", "child_bridges_status": "{{ok}}/{{total}}", "up": "Up", - "pending": "Pending", + "pending": "Pendente", "down": "Down" }, "autobrr": { @@ -541,7 +541,7 @@ "prometheus": { "targets_up": "Targets Up", "targets_down": "Targets Down", - "targets_total": "Total Targets" + "targets_total": "Total de Alvos" }, "minecraft": { "players": "Reprodutores", @@ -557,8 +557,8 @@ }, "audiobookshelf": { "podcasts": "Podcasts", - "books": "Books", - "podcastsDuration": "Duration", - "booksDuration": "Duration" + "books": "Livros", + "podcastsDuration": "Duração", + "booksDuration": "Duração" } } From 58bb5a2bbf2643f2d20788483ac805b6dad76d3e Mon Sep 17 00:00:00 2001 From: Henrique Miraldo Date: Sat, 25 Mar 2023 14:46:54 +0000 Subject: [PATCH 188/188] Translated using Weblate (Portuguese (Brazil)) Currently translated at 99.4% (390 of 392 strings) Translation: Homepage/Homepage Translate-URL: https://hosted.weblate.org/projects/homepage/homepage/pt_BR/ --- public/locales/pt-BR/common.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/public/locales/pt-BR/common.json b/public/locales/pt-BR/common.json index 81f59a3d..9afc811c 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -61,13 +61,13 @@ "offline": "Desligado", "error": "Erro", "unknown": "Desconhecido", - "running": "Running", - "starting": "Starting", - "unhealthy": "Unhealthy", - "not_found": "Not Found", - "exited": "Exited", - "partial": "Partial", - "healthy": "Healthy" + "running": "Executando", + "starting": "Iniciando", + "unhealthy": "Não-saudável", + "not_found": "Não Encontrado", + "exited": "Encerrado", + "partial": "Parcial", + "healthy": "Saudável" }, "emby": { "playing": "Reproduzindo", @@ -306,7 +306,7 @@ "child_bridges": "Pontes Filhas", "child_bridges_status": "{{ok}}/{{total}}", "up": "Up", - "pending": "Pending", + "pending": "Pendente", "down": "Down" }, "autobrr": {