mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-05 15:03:39 +01:00
Merge branch 'main' into main
This commit is contained in:
commit
15a0e6cc54
@ -19,6 +19,7 @@
|
|||||||
* Service Integration
|
* Service Integration
|
||||||
- Currently supports Sonarr, Radarr, Ombi, Emby, Jellyfin, Tautulli (Plex), Overseerr, Jellyseerr ([ilusi0n](https://github.com/benphelps/homepage/pull/34)), NZBGet, ruTorrent
|
- Currently supports Sonarr, Radarr, Ombi, Emby, Jellyfin, Tautulli (Plex), Overseerr, Jellyseerr ([ilusi0n](https://github.com/benphelps/homepage/pull/34)), NZBGet, ruTorrent
|
||||||
- Portainer, Traefik, Speedtest Tracker, PiHole, Nginx Proxy Manager ([aidenpwnz](https://github.com/benphelps/homepage/pull/45))
|
- Portainer, Traefik, Speedtest Tracker, PiHole, Nginx Proxy Manager ([aidenpwnz](https://github.com/benphelps/homepage/pull/45))
|
||||||
|
- Readarr, SABnzbd ([JazzFisch]())
|
||||||
* Information & Utility Widgets
|
* Information & Utility Widgets
|
||||||
- System Stats (Disk, CPU, Memory)
|
- System Stats (Disk, CPU, Memory)
|
||||||
- Weather via WeatherAPI.com or OpenWeatherMap ([AlexFullmoon](https://github.com/benphelps/homepage/pull/25))
|
- Weather via WeatherAPI.com or OpenWeatherMap ([AlexFullmoon](https://github.com/benphelps/homepage/pull/25))
|
||||||
|
@ -31,11 +31,6 @@
|
|||||||
"bitrate": "Bitrate",
|
"bitrate": "Bitrate",
|
||||||
"no_active": "No Active Streams"
|
"no_active": "No Active Streams"
|
||||||
},
|
},
|
||||||
"nzbget": {
|
|
||||||
"rate": "Rate",
|
|
||||||
"remaining": "Verblieben",
|
|
||||||
"downloaded": "Heruntergeladen"
|
|
||||||
},
|
|
||||||
"rutorrent": {
|
"rutorrent": {
|
||||||
"active": "Aktiv",
|
"active": "Aktiv",
|
||||||
"upload": "Hochladen",
|
"upload": "Hochladen",
|
||||||
@ -51,6 +46,11 @@
|
|||||||
"queued": "In Warteschlange",
|
"queued": "In Warteschlange",
|
||||||
"movies": "Filme"
|
"movies": "Filme"
|
||||||
},
|
},
|
||||||
|
"readarr": {
|
||||||
|
"wanted": "Wanted",
|
||||||
|
"queued": "Queued",
|
||||||
|
"books": "Books"
|
||||||
|
},
|
||||||
"ombi": {
|
"ombi": {
|
||||||
"pending": "Ausstehend",
|
"pending": "Ausstehend",
|
||||||
"approved": "Genehmigt",
|
"approved": "Genehmigt",
|
||||||
@ -96,5 +96,15 @@
|
|||||||
"pending": "Pending",
|
"pending": "Pending",
|
||||||
"approved": "Approved",
|
"approved": "Approved",
|
||||||
"available": "Available"
|
"available": "Available"
|
||||||
|
},
|
||||||
|
"sabnzbd": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"queue": "Queue",
|
||||||
|
"timeleft": "Time Left"
|
||||||
|
},
|
||||||
|
"nzbget": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"remaining": "Remaining",
|
||||||
|
"downloaded": "Downloaded"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,114 +1,124 @@
|
|||||||
{
|
{
|
||||||
"common": {
|
"common": {
|
||||||
"bytes": "{{value, bytes}}",
|
"bytes": "{{value, bytes}}",
|
||||||
"bits": "{{value, bytes(bits: true)}}",
|
"bits": "{{value, bytes(bits: true)}}",
|
||||||
"bbytes": "{{value, bytes(binary: true)}}",
|
"bbytes": "{{value, bytes(binary: true)}}",
|
||||||
"bbits": "{{value, bytes(bits: true, binary: true)}}",
|
"bbits": "{{value, bytes(bits: true, binary: true)}}",
|
||||||
"byterate": "{{value, rate}}",
|
"byterate": "{{value, rate}}",
|
||||||
"bitrate": "{{value, rate(bits: true)}}",
|
"bitrate": "{{value, rate(bits: true)}}",
|
||||||
"percent": "{{value, percent}}",
|
"percent": "{{value, percent}}",
|
||||||
"number": "{{value, number}}",
|
"number": "{{value, number}}",
|
||||||
"ms": "{{value, number}}"
|
"ms": "{{value, number}}"
|
||||||
|
},
|
||||||
|
"widget": {
|
||||||
|
"missing_type": "Missing Widget Type: {{type}}",
|
||||||
|
"api_error": "API Error",
|
||||||
|
"status": "Status"
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"current": "Current Location",
|
||||||
|
"allow": "Click to allow",
|
||||||
|
"updating": "Updating",
|
||||||
|
"wait": "Please wait"
|
||||||
|
},
|
||||||
|
"search": {
|
||||||
|
"placeholder": "Search…"
|
||||||
|
},
|
||||||
|
"resources": {
|
||||||
|
"total": "Total",
|
||||||
|
"free": "Free",
|
||||||
|
"used": "Used"
|
||||||
|
},
|
||||||
|
"docker": {
|
||||||
|
"rx": "RX",
|
||||||
|
"tx": "TX",
|
||||||
|
"mem": "MEM",
|
||||||
|
"cpu": "CPU",
|
||||||
|
"offline": "Offline"
|
||||||
|
},
|
||||||
|
"emby": {
|
||||||
|
"playing": "Playing",
|
||||||
|
"transcoding": "Transcoding",
|
||||||
|
"bitrate": "Bitrate",
|
||||||
|
"no_active": "No Active Streams"
|
||||||
|
},
|
||||||
|
"tautulli": {
|
||||||
|
"playing": "Playing",
|
||||||
|
"transcoding": "Transcoding",
|
||||||
|
"bitrate": "Bitrate",
|
||||||
|
"no_active": "No Active Streams"
|
||||||
|
},
|
||||||
|
"nzbget": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"remaining": "Remaining",
|
||||||
|
"downloaded": "Downloaded"
|
||||||
|
},
|
||||||
|
"sabnzbd": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"queue": "Queue",
|
||||||
|
"timeleft": "Time Left"
|
||||||
|
},
|
||||||
|
"rutorrent": {
|
||||||
|
"active": "Active",
|
||||||
|
"upload": "Upload",
|
||||||
|
"download": "Download"
|
||||||
|
},
|
||||||
|
"sonarr": {
|
||||||
|
"wanted": "Wanted",
|
||||||
|
"queued": "Queued",
|
||||||
|
"series": "Series"
|
||||||
|
},
|
||||||
|
"radarr": {
|
||||||
|
"wanted": "Wanted",
|
||||||
|
"queued": "Queued",
|
||||||
|
"movies": "Movies"
|
||||||
|
},
|
||||||
|
"readarr": {
|
||||||
|
"wanted": "Wanted",
|
||||||
|
"queued": "Queued",
|
||||||
|
"books": "Books"
|
||||||
|
},
|
||||||
|
"ombi": {
|
||||||
|
"pending": "Pending",
|
||||||
|
"approved": "Approved",
|
||||||
|
"available": "Available"
|
||||||
|
},
|
||||||
|
"jellyseerr": {
|
||||||
|
"pending": "Pending",
|
||||||
|
"approved": "Approved",
|
||||||
|
"available": "Available"
|
||||||
|
},
|
||||||
|
"overseerr": {
|
||||||
|
"pending": "Pending",
|
||||||
|
"approved": "Approved",
|
||||||
|
"available": "Available"
|
||||||
},
|
},
|
||||||
"widget": {
|
"pihole": {
|
||||||
"missing_type": "Missing Widget Type: {{type}}",
|
"queries": "Queries",
|
||||||
"api_error": "API Error",
|
"blocked": "Blocked",
|
||||||
"status": "Status"
|
"gravity": "Gravity"
|
||||||
},
|
},
|
||||||
"weather": {
|
"speedtest": {
|
||||||
"current": "Current Location",
|
"upload": "Upload",
|
||||||
"allow": "Click to allow",
|
"download": "Download",
|
||||||
"updating": "Updating",
|
"ping": "Ping"
|
||||||
"wait": "Please wait"
|
},
|
||||||
},
|
"portainer": {
|
||||||
"search": {
|
"running": "Running",
|
||||||
"placeholder": "Search…"
|
"stopped": "Stopped",
|
||||||
},
|
"total": "Total"
|
||||||
"resources": {
|
},
|
||||||
"total": "Total",
|
"traefik": {
|
||||||
"free": "Free",
|
"routers": "Routers",
|
||||||
"used": "Used"
|
"services": "Services",
|
||||||
},
|
"middleware": "Middleware"
|
||||||
"docker": {
|
},
|
||||||
"rx": "RX",
|
"npm": {
|
||||||
"tx": "TX",
|
"enabled": "Enabled",
|
||||||
"mem": "MEM",
|
"disabled": "Disabled",
|
||||||
"cpu": "CPU",
|
"total": "Total"
|
||||||
"offline": "Offline"
|
},
|
||||||
},
|
"coinmarketcap": {
|
||||||
"emby": {
|
"configure": "Configure one or more crypto currencies to track"
|
||||||
"playing": "Playing",
|
}
|
||||||
"transcoding": "Transcoding",
|
|
||||||
"bitrate": "Bitrate",
|
|
||||||
"no_active": "No Active Streams"
|
|
||||||
},
|
|
||||||
"tautulli": {
|
|
||||||
"playing": "Playing",
|
|
||||||
"transcoding": "Transcoding",
|
|
||||||
"bitrate": "Bitrate",
|
|
||||||
"no_active": "No Active Streams"
|
|
||||||
},
|
|
||||||
"nzbget": {
|
|
||||||
"rate": "Rate",
|
|
||||||
"remaining": "Remaining",
|
|
||||||
"downloaded": "Downloaded"
|
|
||||||
},
|
|
||||||
"rutorrent": {
|
|
||||||
"active": "Active",
|
|
||||||
"upload": "Upload",
|
|
||||||
"download": "Download"
|
|
||||||
},
|
|
||||||
"sonarr": {
|
|
||||||
"wanted": "Wanted",
|
|
||||||
"queued": "Queued",
|
|
||||||
"series": "Series"
|
|
||||||
},
|
|
||||||
"radarr": {
|
|
||||||
"wanted": "Wanted",
|
|
||||||
"queued": "Queued",
|
|
||||||
"movies": "Movies"
|
|
||||||
},
|
|
||||||
"ombi": {
|
|
||||||
"pending": "Pending",
|
|
||||||
"approved": "Approved",
|
|
||||||
"available": "Available"
|
|
||||||
},
|
|
||||||
"jellyseerr": {
|
|
||||||
"pending": "Pending",
|
|
||||||
"approved": "Approved",
|
|
||||||
"available": "Available"
|
|
||||||
},
|
|
||||||
"overseerr": {
|
|
||||||
"pending": "Pending",
|
|
||||||
"approved": "Approved",
|
|
||||||
"available": "Available"
|
|
||||||
},
|
|
||||||
"pihole": {
|
|
||||||
"queries": "Queries",
|
|
||||||
"blocked": "Blocked",
|
|
||||||
"gravity": "Gravity"
|
|
||||||
},
|
|
||||||
"speedtest": {
|
|
||||||
"upload": "Upload",
|
|
||||||
"download": "Download",
|
|
||||||
"ping": "Ping"
|
|
||||||
},
|
|
||||||
"portainer": {
|
|
||||||
"running": "Running",
|
|
||||||
"stopped": "Stopped",
|
|
||||||
"total": "Total"
|
|
||||||
},
|
|
||||||
"traefik": {
|
|
||||||
"routers": "Routers",
|
|
||||||
"services": "Services",
|
|
||||||
"middleware": "Middleware"
|
|
||||||
},
|
|
||||||
"npm": {
|
|
||||||
"enabled": "Enabled",
|
|
||||||
"disabled": "Disabled",
|
|
||||||
"total": "Total"
|
|
||||||
},
|
|
||||||
"coinmarketcap": {
|
|
||||||
"configure": "Configure one or more crypto currencies to track"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -23,18 +23,13 @@
|
|||||||
"playing": "En ejecución",
|
"playing": "En ejecución",
|
||||||
"transcoding": "Transcodificando",
|
"transcoding": "Transcodificando",
|
||||||
"bitrate": "Tasa de Bits",
|
"bitrate": "Tasa de Bits",
|
||||||
"no_active": "No Active Streams"
|
"no_active": "No hay streams activos"
|
||||||
},
|
},
|
||||||
"tautulli": {
|
"tautulli": {
|
||||||
"playing": "En ejecución",
|
"playing": "En ejecución",
|
||||||
"transcoding": "Transcodificación",
|
"transcoding": "Transcodificación",
|
||||||
"bitrate": "Tasa de bits",
|
"bitrate": "Tasa de bits",
|
||||||
"no_active": "No Active Streams"
|
"no_active": "No hay streams activos"
|
||||||
},
|
|
||||||
"nzbget": {
|
|
||||||
"rate": "Velocidad",
|
|
||||||
"remaining": "Restante",
|
|
||||||
"downloaded": "Descargado"
|
|
||||||
},
|
},
|
||||||
"rutorrent": {
|
"rutorrent": {
|
||||||
"active": "Activo",
|
"active": "Activo",
|
||||||
@ -51,6 +46,11 @@
|
|||||||
"queued": "Puesto en cola",
|
"queued": "Puesto en cola",
|
||||||
"movies": "Películas"
|
"movies": "Películas"
|
||||||
},
|
},
|
||||||
|
"readarr": {
|
||||||
|
"wanted": "Wanted",
|
||||||
|
"queued": "Queued",
|
||||||
|
"books": "Books"
|
||||||
|
},
|
||||||
"ombi": {
|
"ombi": {
|
||||||
"pending": "Pendiente",
|
"pending": "Pendiente",
|
||||||
"approved": "Aprobado",
|
"approved": "Aprobado",
|
||||||
@ -93,8 +93,18 @@
|
|||||||
"wait": "Espere, por favor"
|
"wait": "Espere, por favor"
|
||||||
},
|
},
|
||||||
"overseerr": {
|
"overseerr": {
|
||||||
"pending": "Pending",
|
"pending": "Pendiente",
|
||||||
"approved": "Approved",
|
"approved": "Aprobado",
|
||||||
"available": "Available"
|
"available": "Disponible"
|
||||||
|
},
|
||||||
|
"sabnzbd": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"queue": "Queue",
|
||||||
|
"timeleft": "Time Left"
|
||||||
|
},
|
||||||
|
"nzbget": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"remaining": "Remaining",
|
||||||
|
"downloaded": "Downloaded"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,33 +8,28 @@
|
|||||||
"placeholder": "Recherche…"
|
"placeholder": "Recherche…"
|
||||||
},
|
},
|
||||||
"resources": {
|
"resources": {
|
||||||
"total": "Totale",
|
"total": "Total",
|
||||||
"free": "Libre",
|
"free": "Libre",
|
||||||
"used": "Utilisée"
|
"used": "Utilisée"
|
||||||
},
|
},
|
||||||
"docker": {
|
"docker": {
|
||||||
"rx": "Rx",
|
"rx": "Rx",
|
||||||
"tx": "TX",
|
"tx": "Tx",
|
||||||
"mem": "Mem",
|
"mem": "Mém",
|
||||||
"cpu": "CPU",
|
"cpu": "Cpu",
|
||||||
"offline": "Hors ligne"
|
"offline": "Hors ligne"
|
||||||
},
|
},
|
||||||
"emby": {
|
"emby": {
|
||||||
"playing": "En jouant",
|
"playing": "En lecture",
|
||||||
"transcoding": "Transcoding",
|
"transcoding": "Transcodage",
|
||||||
"bitrate": "Débiter",
|
"bitrate": "Débit",
|
||||||
"no_active": "No Active Streams"
|
"no_active": "Aucun flux actif"
|
||||||
},
|
},
|
||||||
"tautulli": {
|
"tautulli": {
|
||||||
"playing": "En jouant",
|
"playing": "En lecture",
|
||||||
"transcoding": "Transcoding",
|
"transcoding": "Transcodage",
|
||||||
"bitrate": "Débiter",
|
"bitrate": "Débit",
|
||||||
"no_active": "No Active Streams"
|
"no_active": "Aucun flux actif"
|
||||||
},
|
|
||||||
"nzbget": {
|
|
||||||
"rate": "Évaluer",
|
|
||||||
"remaining": "Restante",
|
|
||||||
"downloaded": "Téléchargé"
|
|
||||||
},
|
},
|
||||||
"rutorrent": {
|
"rutorrent": {
|
||||||
"active": "Active",
|
"active": "Active",
|
||||||
@ -44,13 +39,18 @@
|
|||||||
"sonarr": {
|
"sonarr": {
|
||||||
"wanted": "Recherchée",
|
"wanted": "Recherchée",
|
||||||
"queued": "En queue",
|
"queued": "En queue",
|
||||||
"series": "Série"
|
"series": "Séries"
|
||||||
},
|
},
|
||||||
"radarr": {
|
"radarr": {
|
||||||
"wanted": "Recherchée",
|
"wanted": "Recherchée",
|
||||||
"queued": "En queue",
|
"queued": "En queue",
|
||||||
"movies": "Films"
|
"movies": "Films"
|
||||||
},
|
},
|
||||||
|
"readarr": {
|
||||||
|
"wanted": "Wanted",
|
||||||
|
"queued": "Queued",
|
||||||
|
"books": "Books"
|
||||||
|
},
|
||||||
"ombi": {
|
"ombi": {
|
||||||
"pending": "En attente",
|
"pending": "En attente",
|
||||||
"approved": "Approuvée",
|
"approved": "Approuvée",
|
||||||
@ -74,7 +74,7 @@
|
|||||||
"portainer": {
|
"portainer": {
|
||||||
"running": "Fonctionnement",
|
"running": "Fonctionnement",
|
||||||
"stopped": "Arrêté",
|
"stopped": "Arrêté",
|
||||||
"total": "Totale"
|
"total": "Total"
|
||||||
},
|
},
|
||||||
"traefik": {
|
"traefik": {
|
||||||
"routers": "Routeurs",
|
"routers": "Routeurs",
|
||||||
@ -83,8 +83,8 @@
|
|||||||
},
|
},
|
||||||
"npm": {
|
"npm": {
|
||||||
"enabled": "Activé",
|
"enabled": "Activé",
|
||||||
"disabled": "Handicapée",
|
"disabled": "Désactivé",
|
||||||
"total": "Totale"
|
"total": "Total"
|
||||||
},
|
},
|
||||||
"common": {
|
"common": {
|
||||||
"bbytes": "{{value, bytes(binary: true)}}",
|
"bbytes": "{{value, bytes(binary: true)}}",
|
||||||
@ -104,8 +104,18 @@
|
|||||||
"wait": "Veuillez patienter"
|
"wait": "Veuillez patienter"
|
||||||
},
|
},
|
||||||
"overseerr": {
|
"overseerr": {
|
||||||
"pending": "Pending",
|
"pending": "En attente",
|
||||||
"approved": "Approved",
|
"approved": "Approuvée",
|
||||||
"available": "Available"
|
"available": "Disponible"
|
||||||
|
},
|
||||||
|
"sabnzbd": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"queue": "Queue",
|
||||||
|
"timeleft": "Time Left"
|
||||||
|
},
|
||||||
|
"nzbget": {
|
||||||
|
"remaining": "Remaining",
|
||||||
|
"downloaded": "Downloaded",
|
||||||
|
"rate": "Rate"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -7,16 +7,16 @@
|
|||||||
"rx": "RX"
|
"rx": "RX"
|
||||||
},
|
},
|
||||||
"emby": {
|
"emby": {
|
||||||
"playing": "Playing",
|
"playing": "In riproduzione",
|
||||||
"transcoding": "Transcoding",
|
"transcoding": "Transcoding",
|
||||||
"bitrate": "Bitrate",
|
"bitrate": "Bitrate",
|
||||||
"no_active": "No Active Streams"
|
"no_active": "Nessuno Stream Attivo"
|
||||||
},
|
},
|
||||||
"tautulli": {
|
"tautulli": {
|
||||||
"playing": "Playing",
|
"playing": "In riproduzione",
|
||||||
"transcoding": "Transcoding",
|
"transcoding": "Transcoding",
|
||||||
"bitrate": "Bitrate",
|
"bitrate": "Bitrate",
|
||||||
"no_active": "No Active Streams"
|
"no_active": "Nessuno Stream Attivo"
|
||||||
},
|
},
|
||||||
"speedtest": {
|
"speedtest": {
|
||||||
"upload": "Upload",
|
"upload": "Upload",
|
||||||
@ -24,77 +24,87 @@
|
|||||||
"ping": "Ping"
|
"ping": "Ping"
|
||||||
},
|
},
|
||||||
"portainer": {
|
"portainer": {
|
||||||
"running": "Running",
|
"running": "In esecuzione",
|
||||||
"stopped": "Stopped",
|
"stopped": "Fermati",
|
||||||
"total": "Total"
|
"total": "Totali"
|
||||||
},
|
},
|
||||||
"traefik": {
|
"traefik": {
|
||||||
"routers": "Routers",
|
"routers": "Routers",
|
||||||
"services": "Services",
|
"services": "Servizi",
|
||||||
"middleware": "Middleware"
|
"middleware": "Middleware"
|
||||||
},
|
},
|
||||||
"widget": {
|
"widget": {
|
||||||
"missing_type": "Missing Widget Type: {{type}}",
|
"missing_type": "Missing Widget Type: {{type}}",
|
||||||
"api_error": "API Error",
|
"api_error": "Errore API",
|
||||||
"status": "Status"
|
"status": "Stato"
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
"placeholder": "Search…"
|
"placeholder": "Cerca…"
|
||||||
},
|
},
|
||||||
"resources": {
|
"resources": {
|
||||||
"total": "Total",
|
"total": "Totale",
|
||||||
"free": "Free",
|
"free": "Libero",
|
||||||
"used": "Used"
|
"used": "In utilizzo"
|
||||||
|
},
|
||||||
|
"rutorrent": {
|
||||||
|
"active": "Attivo",
|
||||||
|
"upload": "Upload",
|
||||||
|
"download": "Download"
|
||||||
|
},
|
||||||
|
"sonarr": {
|
||||||
|
"series": "Serie",
|
||||||
|
"wanted": "Rchiesti",
|
||||||
|
"queued": "In coda"
|
||||||
|
},
|
||||||
|
"radarr": {
|
||||||
|
"wanted": "Richiesti",
|
||||||
|
"queued": "In coda",
|
||||||
|
"movies": "Film"
|
||||||
|
},
|
||||||
|
"readarr": {
|
||||||
|
"wanted": "Wanted",
|
||||||
|
"queued": "Queued",
|
||||||
|
"books": "Books"
|
||||||
|
},
|
||||||
|
"ombi": {
|
||||||
|
"pending": "In attesa",
|
||||||
|
"approved": "Approvati",
|
||||||
|
"available": "Disponibili"
|
||||||
|
},
|
||||||
|
"jellyseerr": {
|
||||||
|
"pending": "In attesa",
|
||||||
|
"approved": "Approvati",
|
||||||
|
"available": "Disponibili"
|
||||||
|
},
|
||||||
|
"pihole": {
|
||||||
|
"queries": "Richieste",
|
||||||
|
"blocked": "Bloccati",
|
||||||
|
"gravity": "Severità"
|
||||||
|
},
|
||||||
|
"npm": {
|
||||||
|
"enabled": "Attivi",
|
||||||
|
"disabled": "Disabilitati",
|
||||||
|
"total": "Totali"
|
||||||
|
},
|
||||||
|
"weather": {
|
||||||
|
"current": "Posizione Attuale",
|
||||||
|
"allow": "Clicca per consentire",
|
||||||
|
"updating": "Aggiornamento in corso",
|
||||||
|
"wait": "Attendi per favore"
|
||||||
|
},
|
||||||
|
"overseerr": {
|
||||||
|
"pending": "In attesa",
|
||||||
|
"approved": "Approvati",
|
||||||
|
"available": "Disponibili"
|
||||||
|
},
|
||||||
|
"sabnzbd": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"queue": "Queue",
|
||||||
|
"timeleft": "Time Left"
|
||||||
},
|
},
|
||||||
"nzbget": {
|
"nzbget": {
|
||||||
"rate": "Rate",
|
"rate": "Rate",
|
||||||
"remaining": "Remaining",
|
"remaining": "Remaining",
|
||||||
"downloaded": "Downloaded"
|
"downloaded": "Downloaded"
|
||||||
},
|
|
||||||
"rutorrent": {
|
|
||||||
"active": "Active",
|
|
||||||
"upload": "Upload",
|
|
||||||
"download": "Download"
|
|
||||||
},
|
|
||||||
"sonarr": {
|
|
||||||
"series": "Series",
|
|
||||||
"wanted": "Wanted",
|
|
||||||
"queued": "Queued"
|
|
||||||
},
|
|
||||||
"radarr": {
|
|
||||||
"wanted": "Wanted",
|
|
||||||
"queued": "Queued",
|
|
||||||
"movies": "Movies"
|
|
||||||
},
|
|
||||||
"ombi": {
|
|
||||||
"pending": "Pending",
|
|
||||||
"approved": "Approved",
|
|
||||||
"available": "Available"
|
|
||||||
},
|
|
||||||
"jellyseerr": {
|
|
||||||
"pending": "Pending",
|
|
||||||
"approved": "Approved",
|
|
||||||
"available": "Available"
|
|
||||||
},
|
|
||||||
"pihole": {
|
|
||||||
"queries": "Queries",
|
|
||||||
"blocked": "Blocked",
|
|
||||||
"gravity": "Gravity"
|
|
||||||
},
|
|
||||||
"npm": {
|
|
||||||
"enabled": "Enabled",
|
|
||||||
"disabled": "Disabled",
|
|
||||||
"total": "Total"
|
|
||||||
},
|
|
||||||
"weather": {
|
|
||||||
"current": "Current Location",
|
|
||||||
"allow": "Click to allow",
|
|
||||||
"updating": "Updating",
|
|
||||||
"wait": "Please wait"
|
|
||||||
},
|
|
||||||
"overseerr": {
|
|
||||||
"pending": "Pending",
|
|
||||||
"approved": "Approved",
|
|
||||||
"available": "Available"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,11 +31,6 @@
|
|||||||
"bitrate": "Bitrate",
|
"bitrate": "Bitrate",
|
||||||
"no_active": "No Active Streams"
|
"no_active": "No Active Streams"
|
||||||
},
|
},
|
||||||
"nzbget": {
|
|
||||||
"rate": "Takt",
|
|
||||||
"remaining": "Gjenstående",
|
|
||||||
"downloaded": "Nedlastet"
|
|
||||||
},
|
|
||||||
"rutorrent": {
|
"rutorrent": {
|
||||||
"active": "Aktiv",
|
"active": "Aktiv",
|
||||||
"upload": "Opplasting",
|
"upload": "Opplasting",
|
||||||
@ -51,6 +46,11 @@
|
|||||||
"queued": "I kø",
|
"queued": "I kø",
|
||||||
"movies": "Filmer"
|
"movies": "Filmer"
|
||||||
},
|
},
|
||||||
|
"readarr": {
|
||||||
|
"wanted": "Wanted",
|
||||||
|
"queued": "Queued",
|
||||||
|
"books": "Books"
|
||||||
|
},
|
||||||
"ombi": {
|
"ombi": {
|
||||||
"pending": "Venter",
|
"pending": "Venter",
|
||||||
"approved": "Godkjent",
|
"approved": "Godkjent",
|
||||||
@ -96,5 +96,15 @@
|
|||||||
"pending": "Pending",
|
"pending": "Pending",
|
||||||
"approved": "Approved",
|
"approved": "Approved",
|
||||||
"available": "Available"
|
"available": "Available"
|
||||||
|
},
|
||||||
|
"sabnzbd": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"queue": "Queue",
|
||||||
|
"timeleft": "Time Left"
|
||||||
|
},
|
||||||
|
"nzbget": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"downloaded": "Downloaded",
|
||||||
|
"remaining": "Remaining"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -16,11 +16,6 @@
|
|||||||
"cpu": "CPU",
|
"cpu": "CPU",
|
||||||
"offline": "Offline"
|
"offline": "Offline"
|
||||||
},
|
},
|
||||||
"nzbget": {
|
|
||||||
"rate": "Rate",
|
|
||||||
"remaining": "Overgebleven",
|
|
||||||
"downloaded": "Gedownload"
|
|
||||||
},
|
|
||||||
"speedtest": {
|
"speedtest": {
|
||||||
"upload": "Upload",
|
"upload": "Upload",
|
||||||
"download": "Download",
|
"download": "Download",
|
||||||
@ -67,6 +62,11 @@
|
|||||||
"wanted": "Gezocht",
|
"wanted": "Gezocht",
|
||||||
"queued": "In de wachtrij"
|
"queued": "In de wachtrij"
|
||||||
},
|
},
|
||||||
|
"readarr": {
|
||||||
|
"wanted": "Wanted",
|
||||||
|
"queued": "Queued",
|
||||||
|
"books": "Books"
|
||||||
|
},
|
||||||
"ombi": {
|
"ombi": {
|
||||||
"pending": "In afwachting",
|
"pending": "In afwachting",
|
||||||
"approved": "Goedgekeurd",
|
"approved": "Goedgekeurd",
|
||||||
@ -96,5 +96,15 @@
|
|||||||
"pending": "Pending",
|
"pending": "Pending",
|
||||||
"approved": "Approved",
|
"approved": "Approved",
|
||||||
"available": "Available"
|
"available": "Available"
|
||||||
|
},
|
||||||
|
"sabnzbd": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"queue": "Queue",
|
||||||
|
"timeleft": "Time Left"
|
||||||
|
},
|
||||||
|
"nzbget": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"remaining": "Remaining",
|
||||||
|
"downloaded": "Downloaded"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,11 +31,6 @@
|
|||||||
"bitrate": "Taxa de bits",
|
"bitrate": "Taxa de bits",
|
||||||
"no_active": "No Active Streams"
|
"no_active": "No Active Streams"
|
||||||
},
|
},
|
||||||
"nzbget": {
|
|
||||||
"rate": "Avaliar",
|
|
||||||
"remaining": "Em falta",
|
|
||||||
"downloaded": "Baixada"
|
|
||||||
},
|
|
||||||
"rutorrent": {
|
"rutorrent": {
|
||||||
"active": "Ativa",
|
"active": "Ativa",
|
||||||
"upload": "Envio",
|
"upload": "Envio",
|
||||||
@ -51,6 +46,11 @@
|
|||||||
"queued": "Enfileiradas",
|
"queued": "Enfileiradas",
|
||||||
"movies": "Filmes"
|
"movies": "Filmes"
|
||||||
},
|
},
|
||||||
|
"readarr": {
|
||||||
|
"wanted": "Wanted",
|
||||||
|
"queued": "Queued",
|
||||||
|
"books": "Books"
|
||||||
|
},
|
||||||
"ombi": {
|
"ombi": {
|
||||||
"pending": "Pendente",
|
"pending": "Pendente",
|
||||||
"approved": "Aprovada",
|
"approved": "Aprovada",
|
||||||
@ -107,5 +107,15 @@
|
|||||||
"pending": "Pending",
|
"pending": "Pending",
|
||||||
"approved": "Approved",
|
"approved": "Approved",
|
||||||
"available": "Available"
|
"available": "Available"
|
||||||
|
},
|
||||||
|
"sabnzbd": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"queue": "Queue",
|
||||||
|
"timeleft": "Time Left"
|
||||||
|
},
|
||||||
|
"nzbget": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"remaining": "Remaining",
|
||||||
|
"downloaded": "Downloaded"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,11 +31,6 @@
|
|||||||
"bitrate": "Битрейт",
|
"bitrate": "Битрейт",
|
||||||
"no_active": "No Active Streams"
|
"no_active": "No Active Streams"
|
||||||
},
|
},
|
||||||
"nzbget": {
|
|
||||||
"rate": "Оценка",
|
|
||||||
"remaining": "Осталось",
|
|
||||||
"downloaded": "Загружено"
|
|
||||||
},
|
|
||||||
"rutorrent": {
|
"rutorrent": {
|
||||||
"active": "Активный",
|
"active": "Активный",
|
||||||
"upload": "Загрузить",
|
"upload": "Загрузить",
|
||||||
@ -51,6 +46,11 @@
|
|||||||
"queued": "В очереди",
|
"queued": "В очереди",
|
||||||
"movies": "Фильмы"
|
"movies": "Фильмы"
|
||||||
},
|
},
|
||||||
|
"readarr": {
|
||||||
|
"wanted": "Wanted",
|
||||||
|
"queued": "Queued",
|
||||||
|
"books": "Books"
|
||||||
|
},
|
||||||
"ombi": {
|
"ombi": {
|
||||||
"pending": "Ожидание",
|
"pending": "Ожидание",
|
||||||
"approved": "Одобрено",
|
"approved": "Одобрено",
|
||||||
@ -96,5 +96,15 @@
|
|||||||
"pending": "Pending",
|
"pending": "Pending",
|
||||||
"approved": "Approved",
|
"approved": "Approved",
|
||||||
"available": "Available"
|
"available": "Available"
|
||||||
|
},
|
||||||
|
"sabnzbd": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"queue": "Queue",
|
||||||
|
"timeleft": "Time Left"
|
||||||
|
},
|
||||||
|
"nzbget": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"remaining": "Remaining",
|
||||||
|
"downloaded": "Downloaded"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,11 +31,6 @@
|
|||||||
"bitrate": "Bitrate",
|
"bitrate": "Bitrate",
|
||||||
"no_active": "No Active Streams"
|
"no_active": "No Active Streams"
|
||||||
},
|
},
|
||||||
"nzbget": {
|
|
||||||
"rate": "Rate",
|
|
||||||
"remaining": "Còn lại",
|
|
||||||
"downloaded": "Đã tải"
|
|
||||||
},
|
|
||||||
"rutorrent": {
|
"rutorrent": {
|
||||||
"active": "Hoạt động",
|
"active": "Hoạt động",
|
||||||
"upload": "Tải lên",
|
"upload": "Tải lên",
|
||||||
@ -51,6 +46,11 @@
|
|||||||
"queued": "Queued",
|
"queued": "Queued",
|
||||||
"movies": "Movies"
|
"movies": "Movies"
|
||||||
},
|
},
|
||||||
|
"readarr": {
|
||||||
|
"wanted": "Wanted",
|
||||||
|
"queued": "Queued",
|
||||||
|
"books": "Books"
|
||||||
|
},
|
||||||
"ombi": {
|
"ombi": {
|
||||||
"pending": "Pending",
|
"pending": "Pending",
|
||||||
"approved": "Approved",
|
"approved": "Approved",
|
||||||
@ -96,5 +96,15 @@
|
|||||||
"pending": "Pending",
|
"pending": "Pending",
|
||||||
"approved": "Approved",
|
"approved": "Approved",
|
||||||
"available": "Available"
|
"available": "Available"
|
||||||
|
},
|
||||||
|
"sabnzbd": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"queue": "Queue",
|
||||||
|
"timeleft": "Time Left"
|
||||||
|
},
|
||||||
|
"nzbget": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"remaining": "Remaining",
|
||||||
|
"downloaded": "Downloaded"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -31,11 +31,6 @@
|
|||||||
"bitrate": "比特率",
|
"bitrate": "比特率",
|
||||||
"no_active": "No Active Streams"
|
"no_active": "No Active Streams"
|
||||||
},
|
},
|
||||||
"nzbget": {
|
|
||||||
"rate": "速度",
|
|
||||||
"remaining": "其余的",
|
|
||||||
"downloaded": "下载"
|
|
||||||
},
|
|
||||||
"rutorrent": {
|
"rutorrent": {
|
||||||
"active": "积极的",
|
"active": "积极的",
|
||||||
"upload": "上传",
|
"upload": "上传",
|
||||||
@ -51,6 +46,11 @@
|
|||||||
"queued": "排队",
|
"queued": "排队",
|
||||||
"movies": "电影"
|
"movies": "电影"
|
||||||
},
|
},
|
||||||
|
"readarr": {
|
||||||
|
"wanted": "Wanted",
|
||||||
|
"queued": "Queued",
|
||||||
|
"books": "Books"
|
||||||
|
},
|
||||||
"ombi": {
|
"ombi": {
|
||||||
"pending": "待办的",
|
"pending": "待办的",
|
||||||
"approved": "得到正式认可的",
|
"approved": "得到正式认可的",
|
||||||
@ -96,5 +96,15 @@
|
|||||||
"pending": "Pending",
|
"pending": "Pending",
|
||||||
"approved": "Approved",
|
"approved": "Approved",
|
||||||
"available": "Available"
|
"available": "Available"
|
||||||
|
},
|
||||||
|
"sabnzbd": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"queue": "Queue",
|
||||||
|
"timeleft": "Time Left"
|
||||||
|
},
|
||||||
|
"nzbget": {
|
||||||
|
"rate": "Rate",
|
||||||
|
"remaining": "Remaining",
|
||||||
|
"downloaded": "Downloaded"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,10 +2,12 @@ import { useTranslation } from "react-i18next";
|
|||||||
|
|
||||||
import Sonarr from "./widgets/service/sonarr";
|
import Sonarr from "./widgets/service/sonarr";
|
||||||
import Radarr from "./widgets/service/radarr";
|
import Radarr from "./widgets/service/radarr";
|
||||||
|
import Readarr from "./widgets/service/readarr";
|
||||||
import Ombi from "./widgets/service/ombi";
|
import Ombi from "./widgets/service/ombi";
|
||||||
import Portainer from "./widgets/service/portainer";
|
import Portainer from "./widgets/service/portainer";
|
||||||
import Emby from "./widgets/service/emby";
|
import Emby from "./widgets/service/emby";
|
||||||
import Nzbget from "./widgets/service/nzbget";
|
import Nzbget from "./widgets/service/nzbget";
|
||||||
|
import SABnzbd from "./widgets/service/sabnzbd";
|
||||||
import Docker from "./widgets/service/docker";
|
import Docker from "./widgets/service/docker";
|
||||||
import Pihole from "./widgets/service/pihole";
|
import Pihole from "./widgets/service/pihole";
|
||||||
import Rutorrent from "./widgets/service/rutorrent";
|
import Rutorrent from "./widgets/service/rutorrent";
|
||||||
@ -22,11 +24,13 @@ const widgetMappings = {
|
|||||||
docker: Docker,
|
docker: Docker,
|
||||||
sonarr: Sonarr,
|
sonarr: Sonarr,
|
||||||
radarr: Radarr,
|
radarr: Radarr,
|
||||||
|
readarr: Readarr,
|
||||||
ombi: Ombi,
|
ombi: Ombi,
|
||||||
portainer: Portainer,
|
portainer: Portainer,
|
||||||
emby: Emby,
|
emby: Emby,
|
||||||
jellyfin: Jellyfin,
|
jellyfin: Jellyfin,
|
||||||
nzbget: Nzbget,
|
nzbget: Nzbget,
|
||||||
|
sabnzbd: SABnzbd,
|
||||||
pihole: Pihole,
|
pihole: Pihole,
|
||||||
rutorrent: Rutorrent,
|
rutorrent: Rutorrent,
|
||||||
speedtest: Speedtest,
|
speedtest: Speedtest,
|
||||||
|
@ -27,6 +27,7 @@ function ticksToString(ticks) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function SingleSessionEntry({ playCommand, session }) {
|
function SingleSessionEntry({ playCommand, session }) {
|
||||||
|
console.log(session);
|
||||||
const {
|
const {
|
||||||
NowPlayingItem: { Name, SeriesName, RunTimeTicks },
|
NowPlayingItem: { Name, SeriesName, RunTimeTicks },
|
||||||
PlayState: { PositionTicks, IsPaused, IsMuted },
|
PlayState: { PositionTicks, IsPaused, IsMuted },
|
||||||
@ -175,7 +176,7 @@ export default function Emby({ service }) {
|
|||||||
|
|
||||||
if (playing.length === 0) {
|
if (playing.length === 0) {
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col pb-1">
|
<div className="flex flex-col pb-1 mx-1">
|
||||||
<div className="text-theme-700 dark:text-theme-200 text-xs relative h-5 w-full rounded-md bg-theme-200/50 dark:bg-theme-900/20 mt-1">
|
<div className="text-theme-700 dark:text-theme-200 text-xs relative h-5 w-full rounded-md bg-theme-200/50 dark:bg-theme-900/20 mt-1">
|
||||||
<span className="absolute left-2 text-xs mt-[2px]">{t("emby.no_active")}</span>
|
<span className="absolute left-2 text-xs mt-[2px]">{t("emby.no_active")}</span>
|
||||||
</div>
|
</div>
|
||||||
@ -189,7 +190,7 @@ export default function Emby({ service }) {
|
|||||||
if (playing.length === 1) {
|
if (playing.length === 1) {
|
||||||
const session = playing[0];
|
const session = playing[0];
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col pb-1">
|
<div className="flex flex-col pb-1 mx-1">
|
||||||
<SingleSessionEntry
|
<SingleSessionEntry
|
||||||
playCommand={(currentSession, command) => handlePlayCommand(currentSession, command)}
|
playCommand={(currentSession, command) => handlePlayCommand(currentSession, command)}
|
||||||
session={session}
|
session={session}
|
||||||
@ -199,7 +200,7 @@ export default function Emby({ service }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col pb-1">
|
<div className="flex flex-col pb-1 mx-1">
|
||||||
{playing.map((session) => (
|
{playing.map((session) => (
|
||||||
<SessionEntry
|
<SessionEntry
|
||||||
key={session.Id}
|
key={session.Id}
|
||||||
|
41
src/components/services/widgets/service/readarr.jsx
Normal file
41
src/components/services/widgets/service/readarr.jsx
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
import useSWR from "swr";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
|
import Widget from "../widget";
|
||||||
|
import Block from "../block";
|
||||||
|
|
||||||
|
import { formatApiUrl } from "utils/api-helpers";
|
||||||
|
|
||||||
|
export default function Readarr({ service }) {
|
||||||
|
const { t } = useTranslation();
|
||||||
|
|
||||||
|
const config = service.widget;
|
||||||
|
|
||||||
|
const { data: booksData, error: booksError } = useSWR(formatApiUrl(config, "book"));
|
||||||
|
const { data: wantedData, error: wantedError } = useSWR(formatApiUrl(config, "wanted/missing"));
|
||||||
|
const { data: queueData, error: queueError } = useSWR(formatApiUrl(config, "queue/status"));
|
||||||
|
|
||||||
|
if (booksError || wantedError || queueError) {
|
||||||
|
return <Widget error={t("widget.api_error")} />;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!booksData || !wantedData || !queueData) {
|
||||||
|
return (
|
||||||
|
<Widget>
|
||||||
|
<Block label={t("readarr.wanted")} />
|
||||||
|
<Block label={t("readarr.queued")} />
|
||||||
|
<Block label={t("readarr.books")} />
|
||||||
|
</Widget>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const have = booksData.filter((book) => book.statistics.bookFileCount > 0);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Widget>
|
||||||
|
<Block label={t("readarr.wanted")} value={wantedData.totalRecords} />
|
||||||
|
<Block label={t("readarr.queued")} value={queueData.totalCount} />
|
||||||
|
<Block label={t("readarr.books")} value={have.length} />
|
||||||
|
</Widget>
|
||||||
|
);
|
||||||
|
}
|
37
src/components/services/widgets/service/sabnzbd.jsx
Normal file
37
src/components/services/widgets/service/sabnzbd.jsx
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import useSWR from "swr";
|
||||||
|
import { useTranslation } from "react-i18next";
|
||||||
|
|
||||||
|
import Widget from "../widget";
|
||||||
|
import Block from "../block";
|
||||||
|
|
||||||
|
import { formatApiUrl } from "utils/api-helpers";
|
||||||
|
|
||||||
|
export default function SABnzbd({ service }) {
|
||||||
|
const { t } = useTranslation();
|
||||||
|
|
||||||
|
const config = service.widget;
|
||||||
|
|
||||||
|
const { data: queueData, error: queueError } = useSWR(formatApiUrl(config, "queue"));
|
||||||
|
|
||||||
|
if (queueError) {
|
||||||
|
return <Widget error={t("widget.api_error")} />;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!queueData) {
|
||||||
|
return (
|
||||||
|
<Widget>
|
||||||
|
<Block label={t("sabnzbd.rate")} />
|
||||||
|
<Block label={t("sabnzbd.queue")} />
|
||||||
|
<Block label={t("sabnzbd.timeleft")} />
|
||||||
|
</Widget>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Widget>
|
||||||
|
<Block label={t("sabnzbd.rate")} value={`${queueData.queue.speed}bps`} />
|
||||||
|
<Block label={t("sabnzbd.queue")} value={queueData.queue.noofslots} />
|
||||||
|
<Block label={t("sabnzbd.timeleft")} value={queueData.queue.timeleft} />
|
||||||
|
</Widget>
|
||||||
|
);
|
||||||
|
}
|
@ -104,7 +104,7 @@ export default function Tautulli({ service }) {
|
|||||||
|
|
||||||
if (!activityData) {
|
if (!activityData) {
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col pb-1">
|
<div className="flex flex-col pb-1 mx-1">
|
||||||
<div className="text-theme-700 dark:text-theme-200 text-xs relative h-5 w-full rounded-md bg-theme-200/50 dark:bg-theme-900/20 mt-1">
|
<div className="text-theme-700 dark:text-theme-200 text-xs relative h-5 w-full rounded-md bg-theme-200/50 dark:bg-theme-900/20 mt-1">
|
||||||
<span className="absolute left-2 text-xs mt-[2px]">-</span>
|
<span className="absolute left-2 text-xs mt-[2px]">-</span>
|
||||||
</div>
|
</div>
|
||||||
@ -127,7 +127,7 @@ export default function Tautulli({ service }) {
|
|||||||
|
|
||||||
if (playing.length === 0) {
|
if (playing.length === 0) {
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col pb-1">
|
<div className="flex flex-col pb-1 mx-1">
|
||||||
<div className="text-theme-700 dark:text-theme-200 text-xs relative h-5 w-full rounded-md bg-theme-200/50 dark:bg-theme-900/20 mt-1">
|
<div className="text-theme-700 dark:text-theme-200 text-xs relative h-5 w-full rounded-md bg-theme-200/50 dark:bg-theme-900/20 mt-1">
|
||||||
<span className="absolute left-2 text-xs mt-[2px]">{t("tautulli.no_active")}</span>
|
<span className="absolute left-2 text-xs mt-[2px]">{t("tautulli.no_active")}</span>
|
||||||
</div>
|
</div>
|
||||||
@ -141,14 +141,14 @@ export default function Tautulli({ service }) {
|
|||||||
if (playing.length === 1) {
|
if (playing.length === 1) {
|
||||||
const session = playing[0];
|
const session = playing[0];
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col pb-1">
|
<div className="flex flex-col pb-1 mx-1">
|
||||||
<SingleSessionEntry session={session} />
|
<SingleSessionEntry session={session} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col pb-1">
|
<div className="flex flex-col pb-1 mx-1">
|
||||||
{playing.map((session) => (
|
{playing.map((session) => (
|
||||||
<SessionEntry key={session.Id} session={session} />
|
<SessionEntry key={session.Id} session={session} />
|
||||||
))}
|
))}
|
||||||
|
@ -12,9 +12,11 @@ const serviceProxyHandlers = {
|
|||||||
pihole: genericProxyHandler,
|
pihole: genericProxyHandler,
|
||||||
radarr: genericProxyHandler,
|
radarr: genericProxyHandler,
|
||||||
sonarr: genericProxyHandler,
|
sonarr: genericProxyHandler,
|
||||||
|
readarr: genericProxyHandler,
|
||||||
speedtest: genericProxyHandler,
|
speedtest: genericProxyHandler,
|
||||||
tautulli: genericProxyHandler,
|
tautulli: genericProxyHandler,
|
||||||
traefik: genericProxyHandler,
|
traefik: genericProxyHandler,
|
||||||
|
sabnzbd: genericProxyHandler,
|
||||||
// uses X-API-Key header auth
|
// uses X-API-Key header auth
|
||||||
portainer: credentialedProxyHandler,
|
portainer: credentialedProxyHandler,
|
||||||
jellyseerr: credentialedProxyHandler,
|
jellyseerr: credentialedProxyHandler,
|
||||||
|
@ -13,6 +13,8 @@ const formats = {
|
|||||||
overseerr: `{url}/api/v1/{endpoint}`,
|
overseerr: `{url}/api/v1/{endpoint}`,
|
||||||
ombi: `{url}/api/v1/{endpoint}`,
|
ombi: `{url}/api/v1/{endpoint}`,
|
||||||
npm: `{url}/api/{endpoint}`,
|
npm: `{url}/api/{endpoint}`,
|
||||||
|
readarr: `{url}/api/v1/{endpoint}?apikey={key}`,
|
||||||
|
sabnzbd: `{url}/api/?apikey={key}&output=json&mode={endpoint}`,
|
||||||
coinmarketcap: `{url}/{endpoint}`,
|
coinmarketcap: `{url}/{endpoint}`,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user