Compare commits

..

3 Commits

Author SHA1 Message Date
Crowdin Bot
1a52068997 New Crowdin translations by GitHub Action 2025-12-05 12:15:00 +00:00
shamoon
96ac9046b3 Fix: handle widget version parsing for array labels (#6053) 2025-12-04 08:53:28 -08:00
shamoon
6d5f35f07e Enhancement: add valueOnly option to block highlighting feature (#6051) 2025-12-04 08:42:24 -08:00
46 changed files with 199 additions and 138 deletions

View File

@@ -159,6 +159,19 @@ Widgets can tint their metric block text automatically based on rules defined al
Supported numeric operators for the `when` property are `gt`, `gte`, `lt`, `lte`, `eq`, `ne`, `between`, and `outside`. String rules support `equals`, `includes`, `startsWith`, `endsWith`, and `regex`. Each rule can be inverted with `negate: true`, and string rules may pass `caseSensitive: true` or custom regex `flags`. The highlight engine does its best to coerce formatted values, but you will get the most reliable results when you pass plain numbers or strings into `<Block>`.
#### Value Only Highlighting
You can optionally apply highlighting only to the value portion of a block (not the label) by setting `valueOnly: true` on the field configuration. This keeps the label visible while highlighting only the metric value itself.
```yaml
- Sonarr:
...
highlight:
queued:
valueOnly: true
...
```
## Descriptions
Services may have descriptions,

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Vandag",
"gross_percent_1y": "Een jaar",
"gross_percent_max": "Alle tyd"
"gross_percent_max": "Alle tyd",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podsendinge",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "سنة",
"gross_percent_max": "كل الوقت"
"gross_percent_max": "كل الوقت",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "بودكاست",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "Една година",
"gross_percent_max": "All time"
"gross_percent_max": "All time",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Подкасти",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "Un any",
"gross_percent_max": "Sempre"
"gross_percent_max": "Sempre",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Pòdcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "Jeden rok",
"gross_percent_max": "Za celou dobu"
"gross_percent_max": "Za celou dobu",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasty",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "Et År",
"gross_percent_max": "Altid"
"gross_percent_max": "Altid",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Heute",
"gross_percent_1y": "Ein Jahr",
"gross_percent_max": "Gesamt"
"gross_percent_max": "Gesamt",
"net_worth": ""
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "Ένας χρόνος",
"gross_percent_max": "Διαχρονικά"
"gross_percent_max": "Διαχρονικά",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "One year",
"gross_percent_max": "All time"
"gross_percent_max": "All time",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Hoy",
"gross_percent_1y": "Un año",
"gross_percent_max": "Todo el tiempo"
"gross_percent_max": "Todo el tiempo",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "One year",
"gross_percent_max": "All time"
"gross_percent_max": "All time",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "One year",
"gross_percent_max": "All time"
"gross_percent_max": "All time",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -142,8 +142,8 @@
"connectionStatusDisconnected": "Déconnecté",
"connectionStatusConnected": "Connecté",
"uptime": "Démarré depuis",
"maxDown": "Réception max.",
"maxUp": "Envoi max.",
"maxDown": "Réception max",
"maxUp": "Envoi max",
"down": "Réception",
"up": "Envoi",
"received": "Reçu",
@@ -229,7 +229,7 @@
"seed": "En partage"
},
"develancacheui": {
"cachehitbytes": "Cache Hit (B)",
"cachehitbytes": "Octets acquis du cache",
"cachemissbytes": "Cache Miss (B)"
},
"downloadstation": {
@@ -294,7 +294,7 @@
"queries": "Requêtes",
"blocked": "Bloqué",
"blocked_percent": "% bloqué",
"gravity": "Listes dom. bloqués"
"gravity": "Listes dom. Bloqués"
},
"adguard": {
"queries": "Requêtes",
@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Aujourd'hui",
"gross_percent_1y": "Un an",
"gross_percent_max": "Depuis le début"
"gross_percent_max": "Depuis le début",
"net_worth": "Patrimoine net"
},
"audiobookshelf": {
"podcasts": "Podcasts",
@@ -1091,7 +1092,7 @@
"NEW_ARRAY": "Nouveau tableau",
"RECON_DISK": "Reconstruction du disque",
"DISABLE_DISK": "Disque désactivé",
"SWAP_DSBL": "Swap Disable",
"SWAP_DSBL": "Désactiver le swap",
"INVALID_EXPANSION": "Extension invalide",
"PARITY_NOT_BIGGEST": "La parité n'est pas la plus grande",
"TOO_MANY_MISSING_DISKS": "Trop de disques manquants",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "היום",
"gross_percent_1y": "שנה",
"gross_percent_max": "כל הזמן"
"gross_percent_max": "כל הזמן",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "פודקאסטים",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "One year",
"gross_percent_max": "All time"
"gross_percent_max": "All time",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Danas",
"gross_percent_1y": "Jedna godina",
"gross_percent_max": "Svo vrijeme"
"gross_percent_max": "Svo vrijeme",
"net_worth": "Neto vrijednost"
},
"audiobookshelf": {
"podcasts": "Podcasti",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "Egy év",
"gross_percent_max": "Mindig"
"gross_percent_max": "Mindig",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcast",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "Satu Tahun",
"gross_percent_max": "Sepanjang Masa"
"gross_percent_max": "Sepanjang Masa",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcast",

View File

@@ -168,7 +168,7 @@
"passes": "Tessere"
},
"tautulli": {
"playing": "Playing",
"playing": "In riproduzione",
"transcoding": "Transcoding",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
@@ -313,7 +313,7 @@
"total": "Total"
},
"suwayomi": {
"download": "Downloaded",
"download": "Scaricati",
"nondownload": "Non Scaricato",
"read": "Read",
"unread": "Unread",
@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "Un anno",
"gross_percent_max": "Sempre"
"gross_percent_max": "Sempre",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcast",

View File

@@ -69,7 +69,7 @@
"docker": {
"rx": "受信済み",
"tx": "送信済み",
"mem": "MEM",
"mem": "メモリ",
"cpu": "CPU",
"running": "起動中",
"offline": "オフライン",
@@ -83,7 +83,7 @@
"partial": "部分的"
},
"ping": {
"error": "Error",
"error": "エラー",
"ping": "Ping",
"down": "下へ",
"up": "稼働",
@@ -112,7 +112,7 @@
"offline_alt": "オフライン",
"online": "オンライン",
"total": "Total",
"unknown": "Unknown"
"unknown": "不明"
},
"evcc": {
"pv_power": "発電量",
@@ -223,8 +223,8 @@
"invalid": "無効"
},
"deluge": {
"download": "Download",
"upload": "Upload",
"download": "ダウンロード",
"upload": "アップロード",
"leech": "Leech",
"seed": "Seed"
},
@@ -233,8 +233,8 @@
"cachemissbytes": "キャッシュミスバイト"
},
"downloadstation": {
"download": "Download",
"upload": "Upload",
"download": "ダウンロード",
"upload": "アップロード",
"leech": "Leech",
"seed": "Seed"
},
@@ -251,7 +251,7 @@
"queued": "Queued",
"movies": "Movies",
"queue": "Queue",
"unknown": "Unknown"
"unknown": "不明"
},
"lidarr": {
"wanted": "Wanted",
@@ -692,8 +692,8 @@
},
"diskstation": {
"days": "Days",
"uptime": "Uptime",
"volumeAvailable": "Available"
"uptime": "稼働時間",
"volumeAvailable": "利用可能"
},
"mylar": {
"series": "Series",
@@ -754,12 +754,13 @@
"gatus": {
"up": "Sites Up",
"down": "Sites Down",
"uptime": "Uptime"
"uptime": "稼働時間"
},
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "1年",
"gross_percent_max": "全期間"
"gross_percent_max": "全期間",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "ポッドキャスト",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "오늘",
"gross_percent_1y": "1년",
"gross_percent_max": "전체 기간"
"gross_percent_max": "전체 기간",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "팟캐스트",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "One year",
"gross_percent_max": "All time"
"gross_percent_max": "All time",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "Satu tahun",
"gross_percent_max": "Sepanjang masa"
"gross_percent_max": "Sepanjang masa",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podkas",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Vandaag",
"gross_percent_1y": "Een jaar",
"gross_percent_max": "Altijd"
"gross_percent_max": "Altijd",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "Ett år",
"gross_percent_max": "Gjennom tidene"
"gross_percent_max": "Gjennom tidene",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podkaster",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Dzisiaj",
"gross_percent_1y": "Rok",
"gross_percent_max": "Od początku"
"gross_percent_max": "Od początku",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasty",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "Um ano",
"gross_percent_max": "Desde Sempre"
"gross_percent_max": "Desde Sempre",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Hoje",
"gross_percent_1y": "Um ano",
"gross_percent_max": "Todo o tempo"
"gross_percent_max": "Todo o tempo",
"net_worth": "Patrimônio Líquido"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "Un an",
"gross_percent_max": "Tot timpul"
"gross_percent_max": "Tot timpul",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasturi",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Сегодня",
"gross_percent_1y": "Один год",
"gross_percent_max": "Все время"
"gross_percent_max": "Все время",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Подкасты",

View File

@@ -362,8 +362,8 @@
},
"trilium": {
"version": "Verzia",
"notesCount": "Notes",
"dbSize": "Database Size",
"notesCount": "Poznámky",
"dbSize": "Veľkosť databázy",
"unknown": "Neznáme"
},
"navidrome": {
@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Dnes",
"gross_percent_1y": "Jeden rok",
"gross_percent_max": "Za celý čas"
"gross_percent_max": "Za celý čas",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasty",
@@ -786,7 +787,7 @@
"downloadCount": "Poradie",
"downloadBytesRemaining": "Zostávajúce",
"downloadTotalBytes": "Veľkosť",
"downloadSpeed": "Speed"
"downloadSpeed": "Rýchlosť"
},
"kavita": {
"seriesCount": "Series",
@@ -952,7 +953,7 @@
"loading": "Načítava sa",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
"invalidConfiguration": "Neplatná konfigurácia"
},
"frigate": {
"cameras": "Kamery",
@@ -1022,10 +1023,10 @@
"loading": "Načítava sa"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"groups": "Skupiny",
"issues": "Problémy",
"merges": "Merge Requests",
"projects": "Projects"
"projects": "Projekty"
},
"apcups": {
"status": "Stav",
@@ -1035,7 +1036,7 @@
},
"karakeep": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"favorites": "Obľúbené",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Zoznamy",
@@ -1065,13 +1066,13 @@
"komodo": {
"total": "Celkom",
"running": "Beží",
"stopped": "Stopped",
"stopped": "Zastavené",
"down": "Down",
"unhealthy": "Nezdravý",
"unknown": "Neznáme",
"servers": "Servers",
"servers": "Servery",
"stacks": "Stacks",
"containers": "Containers"
"containers": "Kontajnery"
},
"filebrowser": {
"available": "Dostupné",
@@ -1080,8 +1081,8 @@
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"thisMonthlyCost": "Tento mesiac",
"nextMonthlyCost": "Ďalší mesiac",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
},

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "Eno leto",
"gross_percent_max": "Celoten čas"
"gross_percent_max": "Celoten čas",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasti",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Данас",
"gross_percent_1y": "Једна година",
"gross_percent_max": "Све време"
"gross_percent_max": "Све време",
"net_worth": "Нето вредност"
},
"audiobookshelf": {
"podcasts": "Подкасти",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "One year",
"gross_percent_max": "All time"
"gross_percent_max": "All time",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "One year",
"gross_percent_max": "All time"
"gross_percent_max": "All time",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "One year",
"gross_percent_max": "All time"
"gross_percent_max": "All time",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Bugün",
"gross_percent_1y": "Bir yıl",
"gross_percent_max": "Tüm zaman"
"gross_percent_max": "Tüm zaman",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcast",

View File

@@ -63,14 +63,14 @@
"wlan_users": "WLAN користувачі",
"up": "UP",
"down": "Завантаження",
"wait": "Please wait",
"wait": "Будь ласка, зачекайте",
"empty_data": "Статус підсистеми невідомий"
},
"docker": {
"rx": "RX",
"tx": "TX",
"mem": "MEM",
"cpu": "CPU",
"mem": "Пам'ять",
"cpu": "Процесор",
"running": "Запущено",
"offline": "Офлайн",
"error": "Помилка",
@@ -83,7 +83,7 @@
"partial": "Частковий"
},
"ping": {
"error": "Error",
"error": "Помилка",
"ping": "Пінг",
"down": "Офлайн",
"up": "Онлайн",
@@ -91,11 +91,11 @@
},
"siteMonitor": {
"http_status": "HTTP статус",
"error": "Error",
"error": "Помилка",
"response": "Відповідь",
"down": "Down",
"up": "Up",
"not_available": "Not Available"
"down": "Офлайн",
"up": "Онлайн",
"not_available": "Не доступний"
},
"emby": {
"playing": "Відтворення",
@@ -108,10 +108,10 @@
"songs": "Пісні"
},
"esphome": {
"offline": "Offline",
"offline_alt": "Offline",
"offline": "Офлайн",
"offline_alt": "Офлайн",
"online": "Онлайн",
"total": "Total",
"total": "Усього",
"unknown": "Невідомо"
},
"evcc": {
@@ -133,7 +133,7 @@
"unread": "Не прочитано"
},
"fritzbox": {
"connectionStatus": "Status",
"connectionStatus": "Стан",
"connectionStatusUnconfigured": "Не налаштовано",
"connectionStatusConnecting": "Підключення",
"connectionStatusAuthenticating": "Автентифікація",
@@ -141,11 +141,11 @@
"connectionStatusDisconnecting": "Відключення",
"connectionStatusDisconnected": "Відключено",
"connectionStatusConnected": "З'єднано",
"uptime": "Uptime",
"uptime": "Час роботи",
"maxDown": "Макс. завантаження",
"maxUp": "Макс. віддача",
"down": "Down",
"up": "Up",
"down": "Офлайн",
"up": "Онлайн",
"received": "Отримано",
"sent": "Надіслано",
"externalIPAddress": "Зовнішній IP",
@@ -168,10 +168,10 @@
"passes": "Пропуски"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"playing": "Грає",
"transcoding": "Транскодування",
"bitrate": "Бітрейт",
"no_active": "Немає активних потоків",
"plex_connection_error": "Перевірте з'єднання Plex"
},
"omada": {
@@ -189,30 +189,30 @@
"plex": {
"streams": "Активні потоки",
"albums": "Альбоми",
"movies": "Movies",
"movies": "Фільми",
"tv": "TБ шоу"
},
"sabnzbd": {
"rate": "Rate",
"rate": "Швидкість",
"queue": "Черга",
"timeleft": "Залишилось"
},
"rutorrent": {
"active": "Активний",
"upload": "Upload",
"download": "Download"
"upload": "Вивантаж.",
"download": "Завантажено"
},
"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": "Сід"
},
"qnap": {
"cpuUsage": "Використання CPU",
@@ -225,8 +225,8 @@
"deluge": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"seed": "Seed"
"leech": "Ліч",
"seed": "Сід"
},
"develancacheui": {
"cachehitbytes": "Кеш-хіт байт",
@@ -234,33 +234,33 @@
},
"downloadstation": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"seed": "Seed"
"upload": "Вивантаж.",
"leech": "Ліч",
"seed": "Сід"
},
"sonarr": {
"wanted": "Розшукується",
"queued": "У черзі",
"series": "Series",
"queue": "Queue",
"unknown": "Unknown"
"series": "Серіали",
"queue": "Черга",
"unknown": "Невідомо"
},
"radarr": {
"wanted": "Wanted",
"wanted": "У бажаних",
"missing": "Відсутній",
"queued": "Queued",
"movies": "Movies",
"queue": "Queue",
"unknown": "Unknown"
"queued": "У черзі",
"movies": "Фільми",
"queue": "Черга",
"unknown": "Невідомо"
},
"lidarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "У бажаних",
"queued": "У черзі",
"artists": "Виконавці"
},
"readarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "У бажаних",
"queued": "У черзі",
"books": "Книжки"
},
"bazarr": {
@@ -273,20 +273,20 @@
"available": "Доступно"
},
"jellyseerr": {
"pending": "Pending",
"approved": "Approved",
"available": "Available",
"issues": "Open Issues"
"pending": "Очікує",
"approved": "Схвалено",
"available": "Доступно",
"issues": "Проблеми до усунення"
},
"overseerr": {
"pending": "Pending",
"pending": "Очікує",
"processing": "Обробка",
"approved": "Approved",
"available": "Available"
"approved": "Схвалено",
"available": "Доступно"
},
"netalertx": {
"total": "Total",
"connected": "Connected",
"total": "Усього",
"connected": "З'єднано",
"new_devices": "Нові пристрої",
"down_alerts": "Сповіщення про падіння"
},
@@ -297,13 +297,13 @@
"gravity": "Доменів в списку"
},
"adguard": {
"queries": "Queries",
"blocked": "Blocked",
"queries": "Запити",
"blocked": "Заблоковано",
"filtered": "Відфільтровано",
"latency": "Затримка"
},
"speedtest": {
"upload": "Upload",
"upload": "Вивантаж.",
"download": "Download",
"ping": "Ping"
},
@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "Один рік",
"gross_percent_max": "Весь час"
"gross_percent_max": "Весь час",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Подкасти",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "One year",
"gross_percent_max": "All time"
"gross_percent_max": "All time",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "一年",
"gross_percent_max": "所有時間"
"gross_percent_max": "所有時間",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "播客",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "一年",
"gross_percent_max": "所有时间"
"gross_percent_max": "所有时间",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "播客",

View File

@@ -759,7 +759,8 @@
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_1y": "一年",
"gross_percent_max": "所有時間"
"gross_percent_max": "所有時間",
"net_worth": "Net Worth"
},
"audiobookshelf": {
"podcasts": "Podcasts",

View File

@@ -32,6 +32,8 @@ export default function Block({ value, label, field }) {
return getHighlightClass(highlight.level, highlightConfig);
}, [highlight, highlightConfig]);
const applyToValueOnly = highlight?.valueOnly === true;
return (
<div
className={classNames(
@@ -44,7 +46,11 @@ export default function Block({ value, label, field }) {
data-highlight-source={highlight?.source}
>
<div className="font-thin text-sm">{value === undefined || value === null ? "-" : value}</div>
<div className="font-bold text-xs uppercase">{t(label)}</div>
<div
className={classNames("font-bold text-xs uppercase", applyToValueOnly && "text-theme-700 dark:text-theme-200")}
>
{t(label)}
</div>
</div>
);
}

View File

@@ -111,7 +111,7 @@ export async function servicesFromDocker() {
};
}
let substitutedVal = substituteEnvironmentVars(containerLabels[label]);
if (value === "widget.version") {
if (value === "widget.version" || /^widgets\[\d+\]\.version$/.test(value)) {
substitutedVal = parseInt(substitutedVal, 10);
}
shvl.set(constructedService, value, substitutedVal);

View File

@@ -200,7 +200,7 @@ const ensureArray = (value) => {
};
const findHighlightLevel = (ruleSet, numericValue, stringValue) => {
const { numeric, string } = ruleSet;
const { numeric, string, valueOnly } = ruleSet;
if (numeric && numericValue !== undefined) {
const numericRules = ensureArray(numeric);
@@ -208,7 +208,7 @@ const findHighlightLevel = (ruleSet, numericValue, stringValue) => {
for (const candidate of numericCandidates) {
for (const rule of numericRules) {
if (rule?.level && evaluateNumericRule(candidate, rule)) {
return { level: rule.level, source: "numeric", rule };
return { level: rule.level, source: "numeric", rule, valueOnly };
}
}
}
@@ -218,7 +218,7 @@ const findHighlightLevel = (ruleSet, numericValue, stringValue) => {
const stringRules = ensureArray(string);
for (const rule of stringRules) {
if (rule?.level && evaluateStringRule(stringValue, rule)) {
return { level: rule.level, source: "string", rule };
return { level: rule.level, source: "string", rule, valueOnly };
}
}
}