Merge branch 'gethomepage:main' into main

This commit is contained in:
vycdev 2024-05-30 13:59:40 +03:00 committed by GitHub
commit f211449008
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
97 changed files with 2335 additions and 1621 deletions

View File

@ -19,7 +19,7 @@ jobs:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: crowdin action - name: crowdin action
uses: crowdin/github-action@v1 uses: crowdin/github-action@v2
with: with:
upload_translations: false upload_translations: false
download_translations: true download_translations: true

View File

@ -48,11 +48,15 @@ Please see information in the docs regarding [code formatting with pre-commit ho
By contributing, you agree that your contributions will be licensed under its GNU General Public License. By contributing, you agree that your contributions will be licensed under its GNU General Public License.
## Use of AI for pull requests
In general, homepage does not accept "AI-generated" PRs. If you choose to use something like that to aid the development process to generate a significant proportion of the pull request, please make sure this is explicitly stated in the PR itself.
## References ## References
This document was adapted from the open-source contribution guidelines for [Facebook's Draft](https://github.com/facebook/draft-js/blob/main/CONTRIBUTING.md) This document was adapted from the open-source contribution guidelines for [Facebook's Draft](https://github.com/facebook/draft-js/blob/main/CONTRIBUTING.md)
# Automatic Respository Maintenance ## Automatic Respository Maintenance
The homepage team appreciates all effort and interest from the community in filing bug reports, creating feature requests, sharing ideas and helping other community members. That said, in an effort to keep the repository organized and managebale the project uses automatic handling of certain areas: The homepage team appreciates all effort and interest from the community in filing bug reports, creating feature requests, sharing ideas and helping other community members. That said, in an effort to keep the repository organized and managebale the project uses automatic handling of certain areas:

View File

@ -25,6 +25,13 @@
<a href="https://paypal.me/phelpsben" title="Donate"><img alt="GitHub Sponsors" src="https://img.shields.io/github/sponsors/benphelps"></a> <a href="https://paypal.me/phelpsben" title="Donate"><img alt="GitHub Sponsors" src="https://img.shields.io/github/sponsors/benphelps"></a>
</p> </p>
<p align="center">
<a href="https://www.digitalocean.com/?refcode=df14bcb7c016&utm_campaign=Referral_Invite&utm_medium=Referral_Program&utm_source=badge"><img src="https://web-platforms.sfo2.cdn.digitaloceanspaces.com/WWW/Badge%203.svg" alt="DigitalOcean Referral Badge" /></a>
</p>
<p align="center">
<em>Homepage builds are kindly powered by DigitalOcean.</em>
</p>
# Features # Features
With features like quick search, bookmarks, weather support, a wide range of integrations and widgets, an elegant and modern design, and a focus on performance, Homepage is your ideal start to the day and a handy companion throughout it. With features like quick search, bookmarks, weather support, a wide range of integrations and widgets, an elegant and modern design, and a focus on performance, Homepage is your ideal start to the day and a handy companion throughout it.

View File

@ -235,4 +235,4 @@ You can show the docker stats by clicking the status indicator but this can also
showStats: true showStats: true
``` ```
Also see the settings for [show docker stats](docker.md#show-docker-stats). Also see the settings for [show docker stats](settings.md#show-docker-stats).

View File

@ -363,7 +363,7 @@ providers:
You can then pass `provider` instead of `apiKey` in your widget configuration. You can then pass `provider` instead of `apiKey` in your widget configuration.
```yaml ```yaml
- weather: - weatherapi:
latitude: 50.449684 latitude: 50.449684
longitude: 30.525026 longitude: 30.525026
provider: weatherapi provider: weatherapi

View File

@ -17,3 +17,10 @@ hide:
A modern, <em>fully static, fast</em>, secure <em>fully proxied</em>, highly customizable application dashboard with integrations for over 100 services and translations into multiple languages. Easily configured via YAML files or through docker label discovery. A modern, <em>fully static, fast</em>, secure <em>fully proxied</em>, highly customizable application dashboard with integrations for over 100 services and translations into multiple languages. Easily configured via YAML files or through docker label discovery.
![Alt text](assets/homepage_demo.png) ![Alt text](assets/homepage_demo.png)
<p align="center">
<a href="https://www.digitalocean.com/?refcode=df14bcb7c016&utm_campaign=Referral_Invite&utm_medium=Referral_Program&utm_source=badge"><img src="https://web-platforms.sfo2.cdn.digitaloceanspaces.com/WWW/Badge%203.svg" alt="DigitalOcean Referral Badge" /></a>
</p>
<p align="center">
<em>Homepage builds are kindly powered by DigitalOcean.</em>
</p>

View File

@ -39,6 +39,11 @@ Once installed, hooks will run when you commit. If the formatting isn't quite ri
See the [pre-commit documentation](https://pre-commit.com/#install) to get started. See the [pre-commit documentation](https://pre-commit.com/#install) to get started.
## Preferring self-hosted open-source software
In general, homepage is meant to be a dashboard for 'self-hosted' services and we believe it is a small way we can help showcase this kind of software. While exceptions are made, mostly when there is no viable
self-hosted / open-source alternative, we ask that any widgets, etc. are developed primarily for a self-hosted tool.
## New Feature Guidelines ## New Feature Guidelines
- New features should be linked to an existing feature request with at least 10 'up-votes'. The purpose of this requirement is to avoid the addition (and maintenance) of features that might only benefit a small number of users. - New features should be linked to an existing feature request with at least 10 'up-votes'. The purpose of this requirement is to avoid the addition (and maintenance) of features that might only benefit a small number of users.

47
docs/overrides/main.html Normal file
View File

@ -0,0 +1,47 @@
{% extends "base.html" %}
{% block site_nav %}
<!-- Navigation -->
{% if nav %}
{% if page.meta and page.meta.hide %}
{% set hidden = "hidden" if "navigation" in page.meta.hide %}
{% endif %}
<div
class="md-sidebar md-sidebar--primary"
data-md-component="sidebar"
data-md-type="navigation"
{{ hidden }}
>
<div class="md-sidebar__scrollwrap">
<div class="md-sidebar__inner">
{% include "partials/nav.html" %}
{% if 'widgets/' not in page.url and 'more/' not in page.url %}
<script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CWYIL2JU&placement=gethomepagedev&format=cover" id="_carbonads_js"></script>
{% endif %}
</div>
</div>
</div>
{% endif %}
<!-- Table of contents -->
{% if "toc.integrate" not in features %}
{% if page.meta and page.meta.hide %}
{% set hidden = "hidden" if "toc" in page.meta.hide %}
{% endif %}
<div
class="md-sidebar md-sidebar--secondary"
data-md-component="sidebar"
data-md-type="toc"
{{ hidden }}
>
<div class="md-sidebar__scrollwrap" style="height: 200px;">
<div class="md-sidebar__inner">
{% include "partials/toc.html" %}
{% if 'widgets/' in page.url or 'more/' in page.url %}
<script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CWYIL2JU&placement=gethomepagedev&format=cover" id="_carbonads_js"></script>
{% endif %}
</div>
</div>
</div>
{% endif %}
{% endblock %}

View File

@ -22,3 +22,15 @@
#glimeRoot * { #glimeRoot * {
font-family: var(--md-text-font) !important; font-family: var(--md-text-font) !important;
} }
#carbonads {
margin-top: 10px;
}
#carbon-responsive {
--carbon-padding: 1em;
--carbon-max-char: 20ch;
--carbon-bg-primary: var(--md-default-bg-color) !important;
--carbon-bg-secondary: var(--md-default-fg-color--lightest) !important;
--carbon-text-color: var(--md-typeset-color) !important;
}

View File

@ -19,6 +19,8 @@ _Note: unfortunately, the package used for getting CPU temp ([systeminformation]
memory: true memory: true
disk: /disk/mount/path disk: /disk/mount/path
cputemp: true cputemp: true
tempmin: 0 # optional, minimum cpu temp
tempmax: 100 # optional, maximum cpu temp
uptime: true uptime: true
units: imperial # only used by cpu temp units: imperial # only used by cpu temp
refresh: 3000 # optional, in ms refresh: 3000 # optional, in ms

View File

@ -12,10 +12,8 @@ Make sure to set Intent to "API Token".
The account you made the API token for also needs the following **Assigned global permissions** in Authentik: The account you made the API token for also needs the following **Assigned global permissions** in Authentik:
- authentik Core - authentik Core -> Can view User (Model: User)
- User - authentik Events -> Can view Event (Model: Event)
- authentik Events
- Event
Allowed fields: `["users", "loginsLast24H", "failedLoginsLast24H"]`. Allowed fields: `["users", "loginsLast24H", "failedLoginsLast24H"]`.

View File

@ -8,5 +8,5 @@ Learn more about [Channels DVR Server](https://getchannels.com/dvr-server/).
```yaml ```yaml
widget: widget:
type: channelsdvrserver type: channelsdvrserver
url: http://192.168.1.55:8089 url: http://server.host.or.ip:port
``` ```

View File

@ -15,5 +15,5 @@ widget:
type: crowdsec type: crowdsec
url: http://crowdsechostorip:port url: http://crowdsechostorip:port
username: localhost # machine_id in crowdsec username: localhost # machine_id in crowdsec
passowrd: password password: password
``` ```

View File

@ -16,4 +16,7 @@ widget:
key: apikeyapikeyapikeyapikeyapikey key: apikeyapikeyapikeyapikeyapikey
enableBlocks: true # optional, defaults to false enableBlocks: true # optional, defaults to false
enableNowPlaying: true # optional, defaults to true enableNowPlaying: true # optional, defaults to true
enableUser: true # optional, defaults to false
showEpisodeNumber: true # optional, defaults to false
expandOneStreamToTwoRows: false # optional, defaults to true
``` ```

View File

@ -16,4 +16,7 @@ widget:
key: apikeyapikeyapikeyapikeyapikey key: apikeyapikeyapikeyapikeyapikey
enableBlocks: true # optional, defaults to false enableBlocks: true # optional, defaults to false
enableNowPlaying: true # optional, defaults to true enableNowPlaying: true # optional, defaults to true
enableUser: true # optional, defaults to false
showEpisodeNumber: true # optional, defaults to false
expandOneStreamToTwoRows: false # optional, defaults to true
``` ```

View File

@ -3,7 +3,7 @@ title: Medusa
description: Medusa Widget Configuration description: Medusa Widget Configuration
--- ---
Learn more about [Medusa](https://github.com/medusajs/medusa). Learn more about [Medusa](https://github.com/pymedusa/Medusa).
Allowed fields: `["wanted", "queued", "series"]`. Allowed fields: `["wanted", "queued", "series"]`.

View File

@ -0,0 +1,16 @@
---
title: NetAlertX
description: NetAlertX (formerly PiAlert) Widget Configuration
---
Learn more about [NetAlertX](https://github.com/jokob-sk/NetAlertX).
_Note that the project was renamed from PiAlert to NetAlertX._
Allowed fields: `["total", "connected", "new_devices", "down_alerts"]`.
```yaml
widget:
type: netalertx
url: http://ip:port
```

View File

@ -1,16 +0,0 @@
---
title: PiAlert
description: PiAlert Widget Configuration
---
Learn more about [PiAlert](https://github.com/jokob-sk/Pi.Alert).
Note that [pucherot/PiAlert](https://github.com/pucherot/Pi.Alert) has been abandoned and might not work properly.
Allowed fields: `["total", "connected", "new_devices", "down_alerts"]`.
```yaml
widget:
type: pialert
url: http://ip:port
```

View File

@ -14,4 +14,7 @@ widget:
type: tautulli type: tautulli
url: http://tautulli.host.or.ip url: http://tautulli.host.or.ip
key: apikeyapikeyapikeyapikeyapikey key: apikeyapikeyapikeyapikeyapikey
enableUser: true # optional, defaults to false
showEpisodeNumber: true # optional, defaults to false
expandOneStreamToTwoRows: false # optional, defaults to true
``` ```

View File

@ -16,4 +16,5 @@ Allowed fields: `["download", "upload", "ping"]`.
widget: widget:
type: speedtest type: speedtest
url: http://speedtest.host.or.ip url: http://speedtest.host.or.ip
bitratePrecision: 3 # optional, default is 0
``` ```

View File

@ -0,0 +1,14 @@
---
title: SWAG Dashboard
description: SWAG Dashboard Widget Configuration
---
Learn more about [SWAG Dashboard](https://github.com/linuxserver/docker-mods/tree/swag-dashboard).
Allowed fields: `["proxied", "auth", "outdated", "banned"]`.
```yaml
widget:
type: swagdashboard
url: http://swagdashboard.host.or.ip:adminport # default port is 81
```

View File

@ -5,7 +5,7 @@ description: Uptime Kuma Widget Configuration
Learn more about [Uptime Kuma](https://github.com/louislam/uptime-kuma). Learn more about [Uptime Kuma](https://github.com/louislam/uptime-kuma).
As Uptime Kuma does not yet have a full API the widget uses data from a single "status page". As such you will need a status page setup with a group of monitored sites, which is where you get the slug (without the `/status/` portion). As Uptime Kuma does not yet have a full API the widget uses data from a single "status page". As such you will need a status page setup with a group of monitored sites, which is where you get the slug (the url without the `/status/` portion). E.g. if your status page is URL http://uptimekuma.host/status/statuspageslug, insert `slug: statuspageslug`.
Allowed fields: `["up", "down", "uptime", "incident"]`. Allowed fields: `["up", "down", "uptime", "incident"]`.

View File

@ -0,0 +1,20 @@
---
title: Wg-Easy
description: Wg-Easy Widget Configuration
---
Learn more about [Wg-Easy](https://github.com/wg-easy/wg-easy).
Allowed fields: `["connected", "enabled", "disabled", "total"]`.
Note: by default `["connected", "enabled", "total"]` are displayed.
To detect if a device is connected the time since the last handshake is queried. `threshold` is the time to wait in minutes since the last handshake to consider a device connected. Default is 2 minutes.
```yaml
widget:
type: wgeasy
url: http://wg.easy.or.ip
password: yourwgeasypassword
threshold: 2 # optional
```

View File

@ -90,6 +90,7 @@ nav:
- widgets/services/mylar.md - widgets/services/mylar.md
- widgets/services/navidrome.md - widgets/services/navidrome.md
- widgets/services/netdata.md - widgets/services/netdata.md
- widgets/services/netalertx.md
- widgets/services/nextcloud.md - widgets/services/nextcloud.md
- widgets/services/nextdns.md - widgets/services/nextdns.md
- widgets/services/nginx-proxy-manager.md - widgets/services/nginx-proxy-manager.md
@ -100,12 +101,12 @@ nav:
- widgets/services/opendtu.md - widgets/services/opendtu.md
- widgets/services/openmediavault.md - widgets/services/openmediavault.md
- widgets/services/opnsense.md - widgets/services/opnsense.md
- widgets/services/openwrt.md
- widgets/services/overseerr.md - widgets/services/overseerr.md
- widgets/services/paperlessngx.md - widgets/services/paperlessngx.md
- widgets/services/peanut.md - widgets/services/peanut.md
- widgets/services/pfsense.md - widgets/services/pfsense.md
- widgets/services/photoprism.md - widgets/services/photoprism.md
- widgets/services/pialert.md
- widgets/services/pihole.md - widgets/services/pihole.md
- widgets/services/plantit.md - widgets/services/plantit.md
- widgets/services/plex-tautulli.md - widgets/services/plex-tautulli.md
@ -128,8 +129,10 @@ nav:
- widgets/services/sonarr.md - widgets/services/sonarr.md
- widgets/services/speedtest-tracker.md - widgets/services/speedtest-tracker.md
- widgets/services/stash.md - widgets/services/stash.md
- widgets/services/swagdashboard.md
- widgets/services/syncthing-relay-server.md - widgets/services/syncthing-relay-server.md
- widgets/services/tailscale.md - widgets/services/tailscale.md
- widgets/services/tandoor.md
- widgets/services/tdarr.md - widgets/services/tdarr.md
- widgets/services/traefik.md - widgets/services/traefik.md
- widgets/services/transmission.md - widgets/services/transmission.md
@ -166,6 +169,7 @@ nav:
theme: theme:
name: material name: material
custom_dir: docs/overrides
language: en language: en
palette: palette:
- media: "(prefers-color-scheme)" - media: "(prefers-color-scheme)"

202
package-lock.json generated
View File

@ -27,14 +27,14 @@
"ping": "^0.4.4", "ping": "^0.4.4",
"pretty-bytes": "^6.1.1", "pretty-bytes": "^6.1.1",
"raw-body": "^2.5.2", "raw-body": "^2.5.2",
"react": "^18.2.0", "react": "^18.3.1",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-i18next": "^11.18.6", "react-i18next": "^11.18.6",
"react-icons": "^4.12.0", "react-icons": "^4.12.0",
"recharts": "^2.12.3", "recharts": "^2.12.6",
"rrule": "^2.8.1", "rrule": "^2.8.1",
"swr": "^1.3.0", "swr": "^1.3.0",
"systeminformation": "^5.22.0", "systeminformation": "^5.22.7",
"tough-cookie": "^4.1.3", "tough-cookie": "^4.1.3",
"urbackup-server-api": "^0.8.9", "urbackup-server-api": "^0.8.9",
"winston": "^3.11.0", "winston": "^3.11.0",
@ -45,7 +45,7 @@
"autoprefixer": "^10.4.17", "autoprefixer": "^10.4.17",
"eslint": "^8.57.0", "eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^12.3.4", "eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1", "eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0", "eslint-plugin-jsx-a11y": "^6.8.0",
@ -56,7 +56,7 @@
"prettier": "^3.2.5", "prettier": "^3.2.5",
"tailwind-scrollbar": "^3.0.5", "tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.4.3", "tailwindcss": "^3.4.3",
"typescript": "^4.9.5" "typescript": "^5.4.5"
}, },
"optionalDependencies": { "optionalDependencies": {
"osx-temperature-sensor": "^1.0.8" "osx-temperature-sensor": "^1.0.8"
@ -344,12 +344,58 @@
"integrity": "sha512-H/69Lc5Q02dq3o+dxxy5O/oNxFsZpdL6WREtOOtOM1B/weonIwDXkekr1KV5DPVPr12IHFPrMrcJQ6bgPMfn7A==" "integrity": "sha512-H/69Lc5Q02dq3o+dxxy5O/oNxFsZpdL6WREtOOtOM1B/weonIwDXkekr1KV5DPVPr12IHFPrMrcJQ6bgPMfn7A=="
}, },
"node_modules/@next/eslint-plugin-next": { "node_modules/@next/eslint-plugin-next": {
"version": "12.3.4", "version": "14.2.3",
"resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-12.3.4.tgz", "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.2.3.tgz",
"integrity": "sha512-BFwj8ykJY+zc1/jWANsDprDIu2MgwPOIKxNVnrKvPs+f5TPegrVnem8uScND+1veT4B7F6VeqgaNLFW1Hzl9Og==", "integrity": "sha512-L3oDricIIjgj1AVnRdRor21gI7mShlSwU/1ZGHmqM3LzHhXXhdkrfeNY5zif25Bi5Dd7fiJHsbhoZCHfXYvlAw==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"glob": "7.1.7" "glob": "10.3.10"
}
},
"node_modules/@next/eslint-plugin-next/node_modules/brace-expansion": {
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
"integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
"dev": true,
"dependencies": {
"balanced-match": "^1.0.0"
}
},
"node_modules/@next/eslint-plugin-next/node_modules/glob": {
"version": "10.3.10",
"resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz",
"integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==",
"dev": true,
"dependencies": {
"foreground-child": "^3.1.0",
"jackspeak": "^2.3.5",
"minimatch": "^9.0.1",
"minipass": "^5.0.0 || ^6.0.2 || ^7.0.0",
"path-scurry": "^1.10.1"
},
"bin": {
"glob": "dist/esm/bin.mjs"
},
"engines": {
"node": ">=16 || 14 >=14.17"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/@next/eslint-plugin-next/node_modules/minimatch": {
"version": "9.0.4",
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz",
"integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==",
"dev": true,
"dependencies": {
"brace-expansion": "^2.0.1"
},
"engines": {
"node": ">=16 || 14 >=14.17"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
} }
}, },
"node_modules/@next/swc-android-arm-eabi": { "node_modules/@next/swc-android-arm-eabi": {
@ -2318,6 +2364,19 @@
"once": "^1.4.0" "once": "^1.4.0"
} }
}, },
"node_modules/enhanced-resolve": {
"version": "5.16.0",
"resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.16.0.tgz",
"integrity": "sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==",
"dev": true,
"dependencies": {
"graceful-fs": "^4.2.4",
"tapable": "^2.2.0"
},
"engines": {
"node": ">=10.13.0"
}
},
"node_modules/entities": { "node_modules/entities": {
"version": "4.5.0", "version": "4.5.0",
"resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz",
@ -2604,20 +2663,20 @@
} }
}, },
"node_modules/eslint-config-next": { "node_modules/eslint-config-next": {
"version": "12.3.4", "version": "14.2.3",
"resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-12.3.4.tgz", "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.2.3.tgz",
"integrity": "sha512-WuT3gvgi7Bwz00AOmKGhOeqnyA5P29Cdyr0iVjLyfDbk+FANQKcOjFUTZIdyYfe5Tq1x4TGcmoe4CwctGvFjHQ==", "integrity": "sha512-ZkNztm3Q7hjqvB1rRlOX8P9E/cXRL9ajRcs8jufEtwMfTVYRqnmtnaSu57QqHyBlovMuiB8LEzfLBkh5RYV6Fg==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"@next/eslint-plugin-next": "12.3.4", "@next/eslint-plugin-next": "14.2.3",
"@rushstack/eslint-patch": "^1.1.3", "@rushstack/eslint-patch": "^1.3.3",
"@typescript-eslint/parser": "^5.21.0", "@typescript-eslint/parser": "^5.4.2 || ^6.0.0 || 7.0.0 - 7.2.0",
"eslint-import-resolver-node": "^0.3.6", "eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^2.7.1", "eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0", "eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.31.7", "eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.5.0" "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705"
}, },
"peerDependencies": { "peerDependencies": {
"eslint": "^7.23.0 || ^8.0.0", "eslint": "^7.23.0 || ^8.0.0",
@ -2662,45 +2721,30 @@
} }
}, },
"node_modules/eslint-import-resolver-typescript": { "node_modules/eslint-import-resolver-typescript": {
"version": "2.7.1", "version": "3.6.1",
"resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz", "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz",
"integrity": "sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==", "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==",
"dev": true, "dev": true,
"dependencies": { "dependencies": {
"debug": "^4.3.4", "debug": "^4.3.4",
"glob": "^7.2.0", "enhanced-resolve": "^5.12.0",
"is-glob": "^4.0.3", "eslint-module-utils": "^2.7.4",
"resolve": "^1.22.0", "fast-glob": "^3.3.1",
"tsconfig-paths": "^3.14.1" "get-tsconfig": "^4.5.0",
"is-core-module": "^2.11.0",
"is-glob": "^4.0.3"
}, },
"engines": { "engines": {
"node": ">=4" "node": "^14.18.0 || >=16.0.0"
},
"funding": {
"url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts"
}, },
"peerDependencies": { "peerDependencies": {
"eslint": "*", "eslint": "*",
"eslint-plugin-import": "*" "eslint-plugin-import": "*"
} }
}, },
"node_modules/eslint-import-resolver-typescript/node_modules/glob": {
"version": "7.2.3",
"resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz",
"integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==",
"dev": true,
"dependencies": {
"fs.realpath": "^1.0.0",
"inflight": "^1.0.4",
"inherits": "2",
"minimatch": "^3.1.1",
"once": "^1.3.0",
"path-is-absolute": "^1.0.0"
},
"engines": {
"node": "*"
},
"funding": {
"url": "https://github.com/sponsors/isaacs"
}
},
"node_modules/eslint-module-utils": { "node_modules/eslint-module-utils": {
"version": "2.8.0", "version": "2.8.0",
"resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz",
@ -3436,6 +3480,18 @@
"url": "https://github.com/sponsors/ljharb" "url": "https://github.com/sponsors/ljharb"
} }
}, },
"node_modules/get-tsconfig": {
"version": "4.7.3",
"resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.3.tgz",
"integrity": "sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==",
"dev": true,
"dependencies": {
"resolve-pkg-maps": "^1.0.0"
},
"funding": {
"url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
}
},
"node_modules/getpass": { "node_modules/getpass": {
"version": "0.1.7", "version": "0.1.7",
"resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
@ -3561,6 +3617,12 @@
"url": "https://github.com/sindresorhus/got?sponsor=1" "url": "https://github.com/sindresorhus/got?sponsor=1"
} }
}, },
"node_modules/graceful-fs": {
"version": "4.2.11",
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
"integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
"dev": true
},
"node_modules/graphemer": { "node_modules/graphemer": {
"version": "1.4.0", "version": "1.4.0",
"resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
@ -5652,9 +5714,9 @@
} }
}, },
"node_modules/react": { "node_modules/react": {
"version": "18.2.0", "version": "18.3.1",
"resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
"integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
"dependencies": { "dependencies": {
"loose-envify": "^1.1.0" "loose-envify": "^1.1.0"
}, },
@ -5772,9 +5834,9 @@
} }
}, },
"node_modules/recharts": { "node_modules/recharts": {
"version": "2.12.3", "version": "2.12.6",
"resolved": "https://registry.npmjs.org/recharts/-/recharts-2.12.3.tgz", "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.12.6.tgz",
"integrity": "sha512-vE/F7wTlokf5mtCqVDJlVKelCjliLSJ+DJxj79XlMREm7gpV7ljwbrwE3CfeaoDlOaLX+6iwHaVRn9587YkwIg==", "integrity": "sha512-D+7j9WI+D0NHauah3fKHuNNcRK8bOypPW7os1DERinogGBGaHI7i6tQKJ0aUF3JXyBZ63dyfKIW2WTOPJDxJ8w==",
"dependencies": { "dependencies": {
"clsx": "^2.0.0", "clsx": "^2.0.0",
"eventemitter3": "^4.0.1", "eventemitter3": "^4.0.1",
@ -5933,6 +5995,15 @@
"node": ">=4" "node": ">=4"
} }
}, },
"node_modules/resolve-pkg-maps": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
"integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
"dev": true,
"funding": {
"url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
}
},
"node_modules/responselike": { "node_modules/responselike": {
"version": "3.0.0", "version": "3.0.0",
"resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz", "resolved": "https://registry.npmjs.org/responselike/-/responselike-3.0.0.tgz",
@ -6663,9 +6734,9 @@
} }
}, },
"node_modules/systeminformation": { "node_modules/systeminformation": {
"version": "5.22.0", "version": "5.22.7",
"resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.22.0.tgz", "resolved": "https://registry.npmjs.org/systeminformation/-/systeminformation-5.22.7.tgz",
"integrity": "sha512-oAP80ymt8ssrAzjX8k3frbL7ys6AotqC35oikG6/SG15wBw+tG9nCk4oPaXIhEaAOAZ8XngxUv3ORq2IuR3r4Q==", "integrity": "sha512-AWxlP05KeHbpGdgvZkcudJpsmChc2Y5Eo/GvxG/iUA/Aws5LZKHAMSeAo+V+nD+nxWZaxrwpWcnx4SH3oxNL3A==",
"os": [ "os": [
"darwin", "darwin",
"linux", "linux",
@ -6789,6 +6860,15 @@
"node": ">=14" "node": ">=14"
} }
}, },
"node_modules/tapable": {
"version": "2.2.1",
"resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
"integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
"dev": true,
"engines": {
"node": ">=6"
}
},
"node_modules/tar": { "node_modules/tar": {
"version": "6.2.0", "version": "6.2.0",
"resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz",
@ -7091,16 +7171,16 @@
} }
}, },
"node_modules/typescript": { "node_modules/typescript": {
"version": "4.9.5", "version": "5.4.5",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.9.5.tgz", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz",
"integrity": "sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==", "integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==",
"dev": true, "dev": true,
"bin": { "bin": {
"tsc": "bin/tsc", "tsc": "bin/tsc",
"tsserver": "bin/tsserver" "tsserver": "bin/tsserver"
}, },
"engines": { "engines": {
"node": ">=4.2.0" "node": ">=14.17"
} }
}, },
"node_modules/unbox-primitive": { "node_modules/unbox-primitive": {

View File

@ -29,14 +29,14 @@
"ping": "^0.4.4", "ping": "^0.4.4",
"pretty-bytes": "^6.1.1", "pretty-bytes": "^6.1.1",
"raw-body": "^2.5.2", "raw-body": "^2.5.2",
"react": "^18.2.0", "react": "^18.3.1",
"react-dom": "^18.2.0", "react-dom": "^18.2.0",
"react-i18next": "^11.18.6", "react-i18next": "^11.18.6",
"react-icons": "^4.12.0", "react-icons": "^4.12.0",
"recharts": "^2.12.3", "recharts": "^2.12.6",
"rrule": "^2.8.1", "rrule": "^2.8.1",
"swr": "^1.3.0", "swr": "^1.3.0",
"systeminformation": "^5.22.0", "systeminformation": "^5.22.7",
"tough-cookie": "^4.1.3", "tough-cookie": "^4.1.3",
"urbackup-server-api": "^0.8.9", "urbackup-server-api": "^0.8.9",
"winston": "^3.11.0", "winston": "^3.11.0",
@ -47,7 +47,7 @@
"autoprefixer": "^10.4.17", "autoprefixer": "^10.4.17",
"eslint": "^8.57.0", "eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^12.3.4", "eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1", "eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0", "eslint-plugin-jsx-a11y": "^6.8.0",
@ -58,7 +58,7 @@
"prettier": "^3.2.5", "prettier": "^3.2.5",
"tailwind-scrollbar": "^3.0.5", "tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.4.3", "tailwindcss": "^3.4.3",
"typescript": "^4.9.5" "typescript": "^5.4.5"
}, },
"optionalDependencies": { "optionalDependencies": {
"osx-temperature-sensor": "^1.0.8" "osx-temperature-sensor": "^1.0.8"

View File

@ -7,7 +7,7 @@ settings:
dependencies: dependencies:
'@headlessui/react': '@headlessui/react':
specifier: ^1.7.18 specifier: ^1.7.18
version: 1.7.18(react-dom@18.2.0)(react@18.2.0) version: 1.7.18(react-dom@18.2.0)(react@18.3.1)
'@kubernetes/client-node': '@kubernetes/client-node':
specifier: ^0.17.1 specifier: ^0.17.1
version: 0.17.1 version: 0.17.1
@ -49,10 +49,10 @@ dependencies:
version: 1.0.2 version: 1.0.2
next: next:
specifier: ^12.3.4 specifier: ^12.3.4
version: 12.3.4(react-dom@18.2.0)(react@18.2.0) version: 12.3.4(react-dom@18.2.0)(react@18.3.1)
next-i18next: next-i18next:
specifier: ^12.1.0 specifier: ^12.1.0
version: 12.1.0(next@12.3.4)(react-dom@18.2.0)(react@18.2.0) version: 12.1.0(next@12.3.4)(react-dom@18.2.0)(react@18.3.1)
ping: ping:
specifier: ^0.4.4 specifier: ^0.4.4
version: 0.4.4 version: 0.4.4
@ -63,29 +63,29 @@ dependencies:
specifier: ^2.5.2 specifier: ^2.5.2
version: 2.5.2 version: 2.5.2
react: react:
specifier: ^18.2.0 specifier: ^18.3.1
version: 18.2.0 version: 18.3.1
react-dom: react-dom:
specifier: ^18.2.0 specifier: ^18.2.0
version: 18.2.0(react@18.2.0) version: 18.2.0(react@18.3.1)
react-i18next: react-i18next:
specifier: ^11.18.6 specifier: ^11.18.6
version: 11.18.6(i18next@21.10.0)(react-dom@18.2.0)(react@18.2.0) version: 11.18.6(i18next@21.10.0)(react-dom@18.2.0)(react@18.3.1)
react-icons: react-icons:
specifier: ^4.12.0 specifier: ^4.12.0
version: 4.12.0(react@18.2.0) version: 4.12.0(react@18.3.1)
recharts: recharts:
specifier: ^2.12.3 specifier: ^2.12.6
version: 2.12.3(react-dom@18.2.0)(react@18.2.0) version: 2.12.6(react-dom@18.2.0)(react@18.3.1)
rrule: rrule:
specifier: ^2.8.1 specifier: ^2.8.1
version: 2.8.1 version: 2.8.1
swr: swr:
specifier: ^1.3.0 specifier: ^1.3.0
version: 1.3.0(react@18.2.0) version: 1.3.0(react@18.3.1)
systeminformation: systeminformation:
specifier: ^5.22.0 specifier: ^5.22.7
version: 5.22.0 version: 5.22.7
tough-cookie: tough-cookie:
specifier: ^4.1.3 specifier: ^4.1.3
version: 4.1.3 version: 4.1.3
@ -118,14 +118,14 @@ devDependencies:
specifier: ^19.0.4 specifier: ^19.0.4
version: 19.0.4(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.34.1)(eslint@8.57.0) version: 19.0.4(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.34.1)(eslint@8.57.0)
eslint-config-next: eslint-config-next:
specifier: ^12.3.4 specifier: ^14.2.3
version: 12.3.4(eslint@8.57.0)(typescript@4.9.5) version: 14.2.3(eslint@8.57.0)(typescript@5.4.5)
eslint-config-prettier: eslint-config-prettier:
specifier: ^9.1.0 specifier: ^9.1.0
version: 9.1.0(eslint@8.57.0) version: 9.1.0(eslint@8.57.0)
eslint-plugin-import: eslint-plugin-import:
specifier: ^2.29.1 specifier: ^2.29.1
version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0) version: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
eslint-plugin-jsx-a11y: eslint-plugin-jsx-a11y:
specifier: ^6.8.0 specifier: ^6.8.0
version: 6.8.0(eslint@8.57.0) version: 6.8.0(eslint@8.57.0)
@ -151,8 +151,8 @@ devDependencies:
specifier: ^3.4.3 specifier: ^3.4.3
version: 3.4.3 version: 3.4.3
typescript: typescript:
specifier: ^4.9.5 specifier: ^5.4.5
version: 4.9.5 version: 5.4.5
packages: packages:
@ -226,17 +226,17 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true dev: true
/@headlessui/react@1.7.18(react-dom@18.2.0)(react@18.2.0): /@headlessui/react@1.7.18(react-dom@18.2.0)(react@18.3.1):
resolution: {integrity: sha512-4i5DOrzwN4qSgNsL4Si61VMkUcWbcSKueUV7sFhpHzQcSShdlHENE5+QBntMSRvHt8NyoFO2AGG8si9lq+w4zQ==} resolution: {integrity: sha512-4i5DOrzwN4qSgNsL4Si61VMkUcWbcSKueUV7sFhpHzQcSShdlHENE5+QBntMSRvHt8NyoFO2AGG8si9lq+w4zQ==}
engines: {node: '>=10'} engines: {node: '>=10'}
peerDependencies: peerDependencies:
react: ^16 || ^17 || ^18 react: ^16 || ^17 || ^18
react-dom: ^16 || ^17 || ^18 react-dom: ^16 || ^17 || ^18
dependencies: dependencies:
'@tanstack/react-virtual': 3.0.2(react-dom@18.2.0)(react@18.2.0) '@tanstack/react-virtual': 3.0.2(react-dom@18.2.0)(react@18.3.1)
client-only: 0.0.1 client-only: 0.0.1
react: 18.2.0 react: 18.3.1
react-dom: 18.2.0(react@18.2.0) react-dom: 18.2.0(react@18.3.1)
dev: false dev: false
/@humanwhocodes/config-array@0.11.14: /@humanwhocodes/config-array@0.11.14:
@ -329,10 +329,10 @@ packages:
resolution: {integrity: sha512-H/69Lc5Q02dq3o+dxxy5O/oNxFsZpdL6WREtOOtOM1B/weonIwDXkekr1KV5DPVPr12IHFPrMrcJQ6bgPMfn7A==} resolution: {integrity: sha512-H/69Lc5Q02dq3o+dxxy5O/oNxFsZpdL6WREtOOtOM1B/weonIwDXkekr1KV5DPVPr12IHFPrMrcJQ6bgPMfn7A==}
dev: false dev: false
/@next/eslint-plugin-next@12.3.4: /@next/eslint-plugin-next@14.2.3:
resolution: {integrity: sha512-BFwj8ykJY+zc1/jWANsDprDIu2MgwPOIKxNVnrKvPs+f5TPegrVnem8uScND+1veT4B7F6VeqgaNLFW1Hzl9Og==} resolution: {integrity: sha512-L3oDricIIjgj1AVnRdRor21gI7mShlSwU/1ZGHmqM3LzHhXXhdkrfeNY5zif25Bi5Dd7fiJHsbhoZCHfXYvlAw==}
dependencies: dependencies:
glob: 7.1.7 glob: 10.3.10
dev: true dev: true
/@next/swc-android-arm-eabi@12.3.4: /@next/swc-android-arm-eabi@12.3.4:
@ -511,15 +511,15 @@ packages:
tailwindcss: 3.4.3 tailwindcss: 3.4.3
dev: true dev: true
/@tanstack/react-virtual@3.0.2(react-dom@18.2.0)(react@18.2.0): /@tanstack/react-virtual@3.0.2(react-dom@18.2.0)(react@18.3.1):
resolution: {integrity: sha512-9XbRLPKgnhMwwmuQMnJMv+5a9sitGNCSEtf/AZXzmJdesYk7XsjYHaEDny+IrJzvPNwZliIIDwCRiaUqR3zzCA==} resolution: {integrity: sha512-9XbRLPKgnhMwwmuQMnJMv+5a9sitGNCSEtf/AZXzmJdesYk7XsjYHaEDny+IrJzvPNwZliIIDwCRiaUqR3zzCA==}
peerDependencies: peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0
react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies: dependencies:
'@tanstack/virtual-core': 3.0.0 '@tanstack/virtual-core': 3.0.0
react: 18.2.0 react: 18.3.1
react-dom: 18.2.0(react@18.2.0) react-dom: 18.2.0(react@18.3.1)
dev: false dev: false
/@tanstack/virtual-core@3.0.0: /@tanstack/virtual-core@3.0.0:
@ -603,7 +603,7 @@ packages:
resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==} resolution: {integrity: sha512-6WaYesThRMCl19iryMYP7/x2OVgCtbIVflDGFpWnb9irXI3UjYE4AzmYuiUKY1AJstGijoY+MgUszMgRxIYTYw==}
dev: false dev: false
/@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@4.9.5): /@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.4.5):
resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
@ -615,10 +615,10 @@ packages:
dependencies: dependencies:
'@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0 '@typescript-eslint/types': 5.62.0
'@typescript-eslint/typescript-estree': 5.62.0(typescript@4.9.5) '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.4.5)
debug: 4.3.4 debug: 4.3.4
eslint: 8.57.0 eslint: 8.57.0
typescript: 4.9.5 typescript: 5.4.5
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
dev: true dev: true
@ -636,7 +636,7 @@ packages:
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
dev: true dev: true
/@typescript-eslint/typescript-estree@5.62.0(typescript@4.9.5): /@typescript-eslint/typescript-estree@5.62.0(typescript@5.4.5):
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies: peerDependencies:
@ -651,8 +651,8 @@ packages:
globby: 11.1.0 globby: 11.1.0
is-glob: 4.0.3 is-glob: 4.0.3
semver: 7.5.4 semver: 7.5.4
tsutils: 3.21.0(typescript@4.9.5) tsutils: 3.21.0(typescript@5.4.5)
typescript: 4.9.5 typescript: 5.4.5
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
dev: true dev: true
@ -1596,6 +1596,14 @@ packages:
once: 1.4.0 once: 1.4.0
dev: false dev: false
/enhanced-resolve@5.16.0:
resolution: {integrity: sha512-O+QWCviPNSSLAD9Ucn8Awv+poAkqn3T1XY5/N7kR7rQO9yfSGWkYZDwpJ+iKF7B8rxaQKWngSqACpgzeapSyoA==}
engines: {node: '>=10.13.0'}
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
dev: true
/entities@4.5.0: /entities@4.5.0:
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
engines: {node: '>=0.12'} engines: {node: '>=0.12'}
@ -1808,7 +1816,7 @@ packages:
dependencies: dependencies:
confusing-browser-globals: 1.0.11 confusing-browser-globals: 1.0.11
eslint: 8.57.0 eslint: 8.57.0
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0) eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
object.assign: 4.1.5 object.assign: 4.1.5
object.entries: 1.1.7 object.entries: 1.1.7
semver: 6.3.1 semver: 6.3.1
@ -1826,7 +1834,7 @@ packages:
dependencies: dependencies:
eslint: 8.57.0 eslint: 8.57.0
eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1)(eslint@8.57.0) eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1)(eslint@8.57.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0) eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
eslint-plugin-react: 7.34.1(eslint@8.57.0) eslint-plugin-react: 7.34.1(eslint@8.57.0)
eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0) eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0)
@ -1834,8 +1842,8 @@ packages:
object.entries: 1.1.7 object.entries: 1.1.7
dev: true dev: true
/eslint-config-next@12.3.4(eslint@8.57.0)(typescript@4.9.5): /eslint-config-next@14.2.3(eslint@8.57.0)(typescript@5.4.5):
resolution: {integrity: sha512-WuT3gvgi7Bwz00AOmKGhOeqnyA5P29Cdyr0iVjLyfDbk+FANQKcOjFUTZIdyYfe5Tq1x4TGcmoe4CwctGvFjHQ==} resolution: {integrity: sha512-ZkNztm3Q7hjqvB1rRlOX8P9E/cXRL9ajRcs8jufEtwMfTVYRqnmtnaSu57QqHyBlovMuiB8LEzfLBkh5RYV6Fg==}
peerDependencies: peerDependencies:
eslint: ^7.23.0 || ^8.0.0 eslint: ^7.23.0 || ^8.0.0
typescript: '>=3.3.1' typescript: '>=3.3.1'
@ -1843,17 +1851,17 @@ packages:
typescript: typescript:
optional: true optional: true
dependencies: dependencies:
'@next/eslint-plugin-next': 12.3.4 '@next/eslint-plugin-next': 14.2.3
'@rushstack/eslint-patch': 1.7.2 '@rushstack/eslint-patch': 1.7.2
'@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5) '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
eslint: 8.57.0 eslint: 8.57.0
eslint-import-resolver-node: 0.3.9 eslint-import-resolver-node: 0.3.9
eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.29.1)(eslint@8.57.0) eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0) eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
eslint-plugin-react: 7.34.1(eslint@8.57.0) eslint-plugin-react: 7.34.1(eslint@8.57.0)
eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0) eslint-plugin-react-hooks: 4.6.0(eslint@8.57.0)
typescript: 4.9.5 typescript: 5.4.5
transitivePeerDependencies: transitivePeerDependencies:
- eslint-import-resolver-webpack - eslint-import-resolver-webpack
- supports-color - supports-color
@ -1878,25 +1886,30 @@ packages:
- supports-color - supports-color
dev: true dev: true
/eslint-import-resolver-typescript@2.7.1(eslint-plugin-import@2.29.1)(eslint@8.57.0): /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0):
resolution: {integrity: sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==} resolution: {integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==}
engines: {node: '>=4'} engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies: peerDependencies:
eslint: '*' eslint: '*'
eslint-plugin-import: '*' eslint-plugin-import: '*'
dependencies: dependencies:
debug: 4.3.4 debug: 4.3.4
enhanced-resolve: 5.16.0
eslint: 8.57.0 eslint: 8.57.0
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0) eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
glob: 7.2.3 eslint-plugin-import: 2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
fast-glob: 3.3.2
get-tsconfig: 4.7.3
is-core-module: 2.13.1
is-glob: 4.0.3 is-glob: 4.0.3
resolve: 1.22.8
tsconfig-paths: 3.15.0
transitivePeerDependencies: transitivePeerDependencies:
- '@typescript-eslint/parser'
- eslint-import-resolver-node
- eslint-import-resolver-webpack
- supports-color - supports-color
dev: true dev: true
/eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0): /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0):
resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
engines: {node: '>=4'} engines: {node: '>=4'}
peerDependencies: peerDependencies:
@ -1917,16 +1930,16 @@ packages:
eslint-import-resolver-webpack: eslint-import-resolver-webpack:
optional: true optional: true
dependencies: dependencies:
'@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5) '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
debug: 3.2.7 debug: 3.2.7
eslint: 8.57.0 eslint: 8.57.0
eslint-import-resolver-node: 0.3.9 eslint-import-resolver-node: 0.3.9
eslint-import-resolver-typescript: 2.7.1(eslint-plugin-import@2.29.1)(eslint@8.57.0) eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
dev: true dev: true
/eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0): /eslint-plugin-import@2.29.1(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0):
resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==} resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
engines: {node: '>=4'} engines: {node: '>=4'}
peerDependencies: peerDependencies:
@ -1936,7 +1949,7 @@ packages:
'@typescript-eslint/parser': '@typescript-eslint/parser':
optional: true optional: true
dependencies: dependencies:
'@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@4.9.5) '@typescript-eslint/parser': 5.62.0(eslint@8.57.0)(typescript@5.4.5)
array-includes: 3.1.7 array-includes: 3.1.7
array.prototype.findlastindex: 1.2.3 array.prototype.findlastindex: 1.2.3
array.prototype.flat: 1.3.2 array.prototype.flat: 1.3.2
@ -1945,7 +1958,7 @@ packages:
doctrine: 2.1.0 doctrine: 2.1.0
eslint: 8.57.0 eslint: 8.57.0
eslint-import-resolver-node: 0.3.9 eslint-import-resolver-node: 0.3.9
eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@2.7.1)(eslint@8.57.0) eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
hasown: 2.0.0 hasown: 2.0.0
is-core-module: 2.13.1 is-core-module: 2.13.1
is-glob: 4.0.3 is-glob: 4.0.3
@ -2398,6 +2411,12 @@ packages:
get-intrinsic: 1.2.4 get-intrinsic: 1.2.4
dev: true dev: true
/get-tsconfig@4.7.3:
resolution: {integrity: sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg==}
dependencies:
resolve-pkg-maps: 1.0.0
dev: true
/getpass@0.1.7: /getpass@0.1.7:
resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==} resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
dependencies: dependencies:
@ -2430,17 +2449,6 @@ packages:
path-scurry: 1.10.1 path-scurry: 1.10.1
dev: true dev: true
/glob@7.1.7:
resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==}
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
inherits: 2.0.4
minimatch: 3.1.2
once: 1.4.0
path-is-absolute: 1.0.1
dev: true
/glob@7.2.3: /glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
dependencies: dependencies:
@ -2500,6 +2508,10 @@ packages:
responselike: 3.0.0 responselike: 3.0.0
dev: false dev: false
/graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
dev: true
/graphemer@1.4.0: /graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
dev: true dev: true
@ -3302,7 +3314,7 @@ packages:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
dev: true dev: true
/next-i18next@12.1.0(next@12.3.4)(react-dom@18.2.0)(react@18.2.0): /next-i18next@12.1.0(next@12.3.4)(react-dom@18.2.0)(react@18.3.1):
resolution: {integrity: sha512-rhos/PVULmZPdC0jpec2MDBQMXdGZ3+Mbh/tZfrDtjgnVN3ucdq7k8BlwsJNww6FnqC8AC31n6dSYuqVzYsGsw==} resolution: {integrity: sha512-rhos/PVULmZPdC0jpec2MDBQMXdGZ3+Mbh/tZfrDtjgnVN3ucdq7k8BlwsJNww6FnqC8AC31n6dSYuqVzYsGsw==}
engines: {node: '>=12'} engines: {node: '>=12'}
peerDependencies: peerDependencies:
@ -3315,15 +3327,15 @@ packages:
hoist-non-react-statics: 3.3.2 hoist-non-react-statics: 3.3.2
i18next: 21.10.0 i18next: 21.10.0
i18next-fs-backend: 1.2.0 i18next-fs-backend: 1.2.0
next: 12.3.4(react-dom@18.2.0)(react@18.2.0) next: 12.3.4(react-dom@18.2.0)(react@18.3.1)
react: 18.2.0 react: 18.3.1
react-i18next: 11.18.6(i18next@21.10.0)(react-dom@18.2.0)(react@18.2.0) react-i18next: 11.18.6(i18next@21.10.0)(react-dom@18.2.0)(react@18.3.1)
transitivePeerDependencies: transitivePeerDependencies:
- react-dom - react-dom
- react-native - react-native
dev: false dev: false
/next@12.3.4(react-dom@18.2.0)(react@18.2.0): /next@12.3.4(react-dom@18.2.0)(react@18.3.1):
resolution: {integrity: sha512-VcyMJUtLZBGzLKo3oMxrEF0stxh8HwuW976pAzlHhI3t8qJ4SROjCrSh1T24bhrbjw55wfZXAbXPGwPt5FLRfQ==} resolution: {integrity: sha512-VcyMJUtLZBGzLKo3oMxrEF0stxh8HwuW976pAzlHhI3t8qJ4SROjCrSh1T24bhrbjw55wfZXAbXPGwPt5FLRfQ==}
engines: {node: '>=12.22.0'} engines: {node: '>=12.22.0'}
hasBin: true hasBin: true
@ -3345,10 +3357,10 @@ packages:
'@swc/helpers': 0.4.11 '@swc/helpers': 0.4.11
caniuse-lite: 1.0.30001581 caniuse-lite: 1.0.30001581
postcss: 8.4.14 postcss: 8.4.14
react: 18.2.0 react: 18.3.1
react-dom: 18.2.0(react@18.2.0) react-dom: 18.2.0(react@18.3.1)
styled-jsx: 5.0.7(react@18.2.0) styled-jsx: 5.0.7(react@18.3.1)
use-sync-external-store: 1.2.0(react@18.2.0) use-sync-external-store: 1.2.0(react@18.3.1)
optionalDependencies: optionalDependencies:
'@next/swc-android-arm-eabi': 12.3.4 '@next/swc-android-arm-eabi': 12.3.4
'@next/swc-android-arm64': 12.3.4 '@next/swc-android-arm64': 12.3.4
@ -3810,17 +3822,17 @@ packages:
unpipe: 1.0.0 unpipe: 1.0.0
dev: false dev: false
/react-dom@18.2.0(react@18.2.0): /react-dom@18.2.0(react@18.3.1):
resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
peerDependencies: peerDependencies:
react: ^18.2.0 react: ^18.2.0
dependencies: dependencies:
loose-envify: 1.4.0 loose-envify: 1.4.0
react: 18.2.0 react: 18.3.1
scheduler: 0.23.0 scheduler: 0.23.0
dev: false dev: false
/react-i18next@11.18.6(i18next@21.10.0)(react-dom@18.2.0)(react@18.2.0): /react-i18next@11.18.6(i18next@21.10.0)(react-dom@18.2.0)(react@18.3.1):
resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==} resolution: {integrity: sha512-yHb2F9BiT0lqoQDt8loZ5gWP331GwctHz9tYQ8A2EIEUu+CcEdjBLQWli1USG3RdWQt3W+jqQLg/d4rrQR96LA==}
peerDependencies: peerDependencies:
i18next: '>= 19.0.0' i18next: '>= 19.0.0'
@ -3836,22 +3848,22 @@ packages:
'@babel/runtime': 7.23.9 '@babel/runtime': 7.23.9
html-parse-stringify: 3.0.1 html-parse-stringify: 3.0.1
i18next: 21.10.0 i18next: 21.10.0
react: 18.2.0 react: 18.3.1
react-dom: 18.2.0(react@18.2.0) react-dom: 18.2.0(react@18.3.1)
dev: false dev: false
/react-icons@4.12.0(react@18.2.0): /react-icons@4.12.0(react@18.3.1):
resolution: {integrity: sha512-IBaDuHiShdZqmfc/TwHu6+d6k2ltNCf3AszxNmjJc1KUfXdEeRJOKyNvLmAHaarhzGmTSVygNdyu8/opXv2gaw==} resolution: {integrity: sha512-IBaDuHiShdZqmfc/TwHu6+d6k2ltNCf3AszxNmjJc1KUfXdEeRJOKyNvLmAHaarhzGmTSVygNdyu8/opXv2gaw==}
peerDependencies: peerDependencies:
react: '*' react: '*'
dependencies: dependencies:
react: 18.2.0 react: 18.3.1
dev: false dev: false
/react-is@16.13.1: /react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
/react-smooth@4.0.0(react-dom@18.2.0)(react@18.2.0): /react-smooth@4.0.0(react-dom@18.2.0)(react@18.3.1):
resolution: {integrity: sha512-2NMXOBY1uVUQx1jBeENGA497HK20y6CPGYL1ZnJLeoQ8rrc3UfmOM82sRxtzpcoCkUMy4CS0RGylfuVhuFjBgg==} resolution: {integrity: sha512-2NMXOBY1uVUQx1jBeENGA497HK20y6CPGYL1ZnJLeoQ8rrc3UfmOM82sRxtzpcoCkUMy4CS0RGylfuVhuFjBgg==}
peerDependencies: peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0
@ -3859,12 +3871,12 @@ packages:
dependencies: dependencies:
fast-equals: 5.0.1 fast-equals: 5.0.1
prop-types: 15.8.1 prop-types: 15.8.1
react: 18.2.0 react: 18.3.1
react-dom: 18.2.0(react@18.2.0) react-dom: 18.2.0(react@18.3.1)
react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.3.1)
dev: false dev: false
/react-transition-group@4.4.5(react-dom@18.2.0)(react@18.2.0): /react-transition-group@4.4.5(react-dom@18.2.0)(react@18.3.1):
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==} resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
peerDependencies: peerDependencies:
react: '>=16.6.0' react: '>=16.6.0'
@ -3874,12 +3886,12 @@ packages:
dom-helpers: 5.2.1 dom-helpers: 5.2.1
loose-envify: 1.4.0 loose-envify: 1.4.0
prop-types: 15.8.1 prop-types: 15.8.1
react: 18.2.0 react: 18.3.1
react-dom: 18.2.0(react@18.2.0) react-dom: 18.2.0(react@18.3.1)
dev: false dev: false
/react@18.2.0: /react@18.3.1:
resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'} engines: {node: '>=0.10.0'}
dependencies: dependencies:
loose-envify: 1.4.0 loose-envify: 1.4.0
@ -3934,8 +3946,8 @@ packages:
decimal.js-light: 2.5.1 decimal.js-light: 2.5.1
dev: false dev: false
/recharts@2.12.3(react-dom@18.2.0)(react@18.2.0): /recharts@2.12.6(react-dom@18.2.0)(react@18.3.1):
resolution: {integrity: sha512-vE/F7wTlokf5mtCqVDJlVKelCjliLSJ+DJxj79XlMREm7gpV7ljwbrwE3CfeaoDlOaLX+6iwHaVRn9587YkwIg==} resolution: {integrity: sha512-D+7j9WI+D0NHauah3fKHuNNcRK8bOypPW7os1DERinogGBGaHI7i6tQKJ0aUF3JXyBZ63dyfKIW2WTOPJDxJ8w==}
engines: {node: '>=14'} engines: {node: '>=14'}
peerDependencies: peerDependencies:
react: ^16.0.0 || ^17.0.0 || ^18.0.0 react: ^16.0.0 || ^17.0.0 || ^18.0.0
@ -3944,10 +3956,10 @@ packages:
clsx: 2.1.0 clsx: 2.1.0
eventemitter3: 4.0.7 eventemitter3: 4.0.7
lodash: 4.17.21 lodash: 4.17.21
react: 18.2.0 react: 18.3.1
react-dom: 18.2.0(react@18.2.0) react-dom: 18.2.0(react@18.3.1)
react-is: 16.13.1 react-is: 16.13.1
react-smooth: 4.0.0(react-dom@18.2.0)(react@18.2.0) react-smooth: 4.0.0(react-dom@18.2.0)(react@18.3.1)
recharts-scale: 0.4.5 recharts-scale: 0.4.5
tiny-invariant: 1.3.1 tiny-invariant: 1.3.1
victory-vendor: 36.8.4 victory-vendor: 36.8.4
@ -4034,6 +4046,10 @@ packages:
engines: {node: '>=4'} engines: {node: '>=4'}
dev: true dev: true
/resolve-pkg-maps@1.0.0:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
dev: true
/resolve@1.22.8: /resolve@1.22.8:
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
hasBin: true hasBin: true
@ -4450,7 +4466,7 @@ packages:
engines: {node: '>=8'} engines: {node: '>=8'}
dev: true dev: true
/styled-jsx@5.0.7(react@18.2.0): /styled-jsx@5.0.7(react@18.3.1):
resolution: {integrity: sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA==} resolution: {integrity: sha512-b3sUzamS086YLRuvnaDigdAewz1/EFYlHpYBP5mZovKEdQQOIIYq8lApylub3HHZ6xFjV051kkGU7cudJmrXEA==}
engines: {node: '>= 12.0.0'} engines: {node: '>= 12.0.0'}
peerDependencies: peerDependencies:
@ -4463,7 +4479,7 @@ packages:
babel-plugin-macros: babel-plugin-macros:
optional: true optional: true
dependencies: dependencies:
react: 18.2.0 react: 18.3.1
dev: false dev: false
/sucrase@3.35.0: /sucrase@3.35.0:
@ -4491,16 +4507,16 @@ packages:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'} engines: {node: '>= 0.4'}
/swr@1.3.0(react@18.2.0): /swr@1.3.0(react@18.3.1):
resolution: {integrity: sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==} resolution: {integrity: sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==}
peerDependencies: peerDependencies:
react: ^16.11.0 || ^17.0.0 || ^18.0.0 react: ^16.11.0 || ^17.0.0 || ^18.0.0
dependencies: dependencies:
react: 18.2.0 react: 18.3.1
dev: false dev: false
/systeminformation@5.22.0: /systeminformation@5.22.7:
resolution: {integrity: sha512-oAP80ymt8ssrAzjX8k3frbL7ys6AotqC35oikG6/SG15wBw+tG9nCk4oPaXIhEaAOAZ8XngxUv3ORq2IuR3r4Q==} resolution: {integrity: sha512-AWxlP05KeHbpGdgvZkcudJpsmChc2Y5Eo/GvxG/iUA/Aws5LZKHAMSeAo+V+nD+nxWZaxrwpWcnx4SH3oxNL3A==}
engines: {node: '>=8.0.0'} engines: {node: '>=8.0.0'}
os: [darwin, linux, win32, freebsd, openbsd, netbsd, sunos, android] os: [darwin, linux, win32, freebsd, openbsd, netbsd, sunos, android]
hasBin: true hasBin: true
@ -4546,6 +4562,11 @@ packages:
- ts-node - ts-node
dev: true dev: true
/tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
dev: true
/tar-fs@2.0.1: /tar-fs@2.0.1:
resolution: {integrity: sha512-6tzWDMeroL87uF/+lin46k+Q+46rAJ0SyPGz7OW7wTgblI273hsBqk2C1j0/xNadNLKDTUL9BukSjB7cwgmlPA==} resolution: {integrity: sha512-6tzWDMeroL87uF/+lin46k+Q+46rAJ0SyPGz7OW7wTgblI273hsBqk2C1j0/xNadNLKDTUL9BukSjB7cwgmlPA==}
dependencies: dependencies:
@ -4675,14 +4696,14 @@ packages:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
dev: false dev: false
/tsutils@3.21.0(typescript@4.9.5): /tsutils@3.21.0(typescript@5.4.5):
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
engines: {node: '>= 6'} engines: {node: '>= 6'}
peerDependencies: peerDependencies:
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
dependencies: dependencies:
tslib: 1.14.1 tslib: 1.14.1
typescript: 4.9.5 typescript: 5.4.5
dev: true dev: true
/tunnel-agent@0.6.0: /tunnel-agent@0.6.0:
@ -4789,9 +4810,9 @@ packages:
possible-typed-array-names: 1.0.0 possible-typed-array-names: 1.0.0
dev: true dev: true
/typescript@4.9.5: /typescript@5.4.5:
resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} resolution: {integrity: sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==}
engines: {node: '>=4.2.0'} engines: {node: '>=14.17'}
hasBin: true hasBin: true
dev: true dev: true
@ -4850,12 +4871,12 @@ packages:
requires-port: 1.0.0 requires-port: 1.0.0
dev: false dev: false
/use-sync-external-store@1.2.0(react@18.2.0): /use-sync-external-store@1.2.0(react@18.3.1):
resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==} resolution: {integrity: sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==}
peerDependencies: peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0
dependencies: dependencies:
react: 18.2.0 react: 18.3.1
dev: false dev: false
/util-deprecate@1.0.2: /util-deprecate@1.0.2:

View File

@ -277,7 +277,7 @@
"approved": "Goedgekeur", "approved": "Goedgekeur",
"available": "Beskikbaar" "available": "Beskikbaar"
}, },
"pialert": { "netalertx": {
"total": "Totaal", "total": "Totaal",
"connected": "Gekoppel", "connected": "Gekoppel",
"new_devices": "Nuwe Toestelle", "new_devices": "Nuwe Toestelle",
@ -872,5 +872,9 @@
"labels": "Etikette", "labels": "Etikette",
"users": "Gebruikers", "users": "Gebruikers",
"totalValue": "Totale Waarde" "totalValue": "Totale Waarde"
},
"crowdsec": {
"alerts": "Waarskuwings",
"bans": "Verbanne"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "في انتظار قطع الاتصال", "connectionStatusPendingDisconnect": "في انتظار قطع الاتصال",
"connectionStatusDisconnecting": "جار قطع الاتصال", "connectionStatusDisconnecting": "جار قطع الاتصال",
"connectionStatusDisconnected": "غير متصل", "connectionStatusDisconnected": "غير متصل",
"connectionStatusConnected": "متصل", "connectionStatusConnected": "Connected",
"uptime": "مدة التشغيل", "uptime": "مدة التشغيل",
"maxDown": "أقصى حد للتنزيل", "maxDown": "أقصى حد للتنزيل",
"maxUp": "أقصى حد للتحميل", "maxUp": "أقصى حد للتحميل",
@ -277,11 +277,11 @@
"approved": "مصدق", "approved": "مصدق",
"available": "متاح" "available": "متاح"
}, },
"pialert": { "netalertx": {
"total": "المجموع", "total": "المجموع",
"connected": "متصل", "connected": "Connected",
"new_devices": "أجهزة جديدة", "new_devices": "New Devices",
"down_alerts": "تنبيهات تعطل الخوادم" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "الاستعلامات", "queries": "الاستعلامات",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "المستخدمون", "users": "المستخدمون",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "تنبيهات",
"bans": "Bans"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Pending Disconnect", "connectionStatusPendingDisconnect": "Pending Disconnect",
"connectionStatusDisconnecting": "Disconnecting", "connectionStatusDisconnecting": "Disconnecting",
"connectionStatusDisconnected": "Disconnected", "connectionStatusDisconnected": "Disconnected",
"connectionStatusConnected": "Свързано", "connectionStatusConnected": "Connected",
"uptime": "Uptime", "uptime": "Uptime",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
@ -277,10 +277,10 @@
"approved": "Одобрен", "approved": "Одобрен",
"available": "Наличен" "available": "Наличен"
}, },
"pialert": { "netalertx": {
"total": "Общо", "total": "Общо",
"connected": "Свързано", "connected": "Connected",
"new_devices": "Нови устройства", "new_devices": "New Devices",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Потребители", "users": "Потребители",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Предупреждения",
"bans": "Bans"
} }
} }

View File

@ -14,7 +14,7 @@
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mes",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"minutes": "m", "minutes": "m",
@ -46,8 +46,8 @@
"used": "Utilitzat", "used": "Utilitzat",
"load": "Càrrega", "load": "Càrrega",
"temp": "TEMP", "temp": "TEMP",
"max": "Max", "max": "Màx.",
"uptime": "UP" "uptime": "ACTIU"
}, },
"unifi": { "unifi": {
"users": "Usuaris", "users": "Usuaris",
@ -61,65 +61,65 @@
"wlan_devices": "Dispositius WLAN", "wlan_devices": "Dispositius WLAN",
"lan_users": "Usuaris LAN", "lan_users": "Usuaris LAN",
"wlan_users": "Usuaris WLAN", "wlan_users": "Usuaris WLAN",
"up": "UP", "up": "ACTIU",
"down": "INACTIU", "down": "INACTIU",
"wait": "Si us plau, espereu", "wait": "Si us plau, espereu",
"empty_data": "Subsystem status unknown" "empty_data": "Estat del subsistema desconegut"
}, },
"docker": { "docker": {
"rx": "Rebut", "rx": "Rebut",
"tx": "Transmès", "tx": "Transmès",
"mem": "MEM", "mem": "MEM",
"cpu": "CPU", "cpu": "CPU",
"running": "Running", "running": "En execució",
"offline": "Fora de línia", "offline": "Fora de línia",
"error": "Error", "error": "Error",
"unknown": "Desconegut", "unknown": "Desconegut",
"healthy": "Healthy", "healthy": "Saludable",
"starting": "Starting", "starting": "Iniciant",
"unhealthy": "Unhealthy", "unhealthy": "No saludable",
"not_found": "Not Found", "not_found": "No trobat",
"exited": "Exited", "exited": "Tancat",
"partial": "Partial" "partial": "Parcial"
}, },
"ping": { "ping": {
"error": "Error", "error": "Error",
"ping": "Ping", "ping": "Latència",
"down": "Down", "down": "Inactiu",
"up": "Up", "up": "Actiu",
"not_available": "Not Available" "not_available": "No Disponible"
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "HTTP status", "http_status": "Estat HTTP",
"error": "Error", "error": "Error",
"response": "Response", "response": "Resposta",
"down": "Down", "down": "Inactiu",
"up": "Up", "up": "Actiu",
"not_available": "Not Available" "not_available": "No Disponible"
}, },
"emby": { "emby": {
"playing": "Reproduint", "playing": "Reproduint",
"transcoding": "Transcodificant", "transcoding": "Transcodificant",
"bitrate": "Taxa de bits", "bitrate": "Taxa de bits",
"no_active": "Sense reproduccions actives", "no_active": "Sense reproduccions actives",
"movies": "Movies", "movies": "Pel·lícules",
"series": "Series", "series": "Sèries",
"episodes": "Episodes", "episodes": "Episodis",
"songs": "Songs" "songs": "Cançons"
}, },
"esphome": { "esphome": {
"offline": "Fora de línia", "offline": "Fora de línia",
"offline_alt": "Fora de línia", "offline_alt": "Fora de línia",
"online": "Online", "online": "En línia",
"total": "Total", "total": "Total",
"unknown": "Desconegut" "unknown": "Desconegut"
}, },
"evcc": { "evcc": {
"pv_power": "Production", "pv_power": "Producció",
"battery_soc": "Battery", "battery_soc": "Bateria",
"grid_power": "Grid", "grid_power": "Xarxa",
"home_power": "Consumption", "home_power": "Consum",
"charge_power": "Charger", "charge_power": "Carregador",
"watt_hour": "Wh" "watt_hour": "Wh"
}, },
"flood": { "flood": {
@ -129,55 +129,55 @@
"seed": "Llavor" "seed": "Llavor"
}, },
"freshrss": { "freshrss": {
"subscriptions": "Subscriptions", "subscriptions": "Subcripcions",
"unread": "Unread" "unread": "Sense llegir"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Estat", "connectionStatus": "Estat",
"connectionStatusUnconfigured": "Unconfigured", "connectionStatusUnconfigured": "Sense configurar",
"connectionStatusConnecting": "Connecting", "connectionStatusConnecting": "Connectant",
"connectionStatusAuthenticating": "Authenticating", "connectionStatusAuthenticating": "Autenticant",
"connectionStatusPendingDisconnect": "Pending Disconnect", "connectionStatusPendingDisconnect": "Desconnexió pendent",
"connectionStatusDisconnecting": "Disconnecting", "connectionStatusDisconnecting": "Desconnectant",
"connectionStatusDisconnected": "Disconnected", "connectionStatusDisconnected": "Desconnectat",
"connectionStatusConnected": "Connected", "connectionStatusConnected": "Connectat",
"uptime": "Temps actiu", "uptime": "Temps actiu",
"maxDown": "Max. Down", "maxDown": "Màx. Descàrrega",
"maxUp": "Max. Up", "maxUp": "Màx. Càrrega",
"down": "Down", "down": "Inactiu",
"up": "Up", "up": "Actiu",
"received": "Received", "received": "Rebuts",
"sent": "Sent", "sent": "Enviats",
"externalIPAddress": "Ext. IP" "externalIPAddress": "IP ext."
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
"requests": "Current requests", "requests": "Peticions actuals",
"requests_failed": "Failed requests" "requests_failed": "Peticions fallides"
}, },
"changedetectionio": { "changedetectionio": {
"totalObserved": "Total d'observats", "totalObserved": "Total d'observats",
"diffsDetected": "Diferències detectades" "diffsDetected": "Diferències detectades"
}, },
"channelsdvrserver": { "channelsdvrserver": {
"shows": "Shows", "shows": "Sèries",
"recordings": "Recordings", "recordings": "Gravacions",
"scheduled": "Scheduled", "scheduled": "Programat",
"passes": "Passes" "passes": "Aprovat"
}, },
"tautulli": { "tautulli": {
"playing": "Reproduint", "playing": "Reproduint",
"transcoding": "Transcodificant", "transcoding": "Transcodificant",
"bitrate": "Taxa de bits", "bitrate": "Taxa de bits",
"no_active": "Sense reproduccions actives", "no_active": "Sense reproduccions actives",
"plex_connection_error": "Check Plex Connection" "plex_connection_error": "Comprova la connexió de Plex"
}, },
"omada": { "omada": {
"connectedAp": "Connected APs", "connectedAp": "AP connectats",
"activeUser": "Active devices", "activeUser": "Dispositius actius",
"alerts": "Alerts", "alerts": "Alertes",
"connectedGateway": "Connected gateways", "connectedGateway": "Pasarel·les connectades",
"connectedSwitches": "Connected switches" "connectedSwitches": "Conmutadors connectats"
}, },
"nzbget": { "nzbget": {
"rate": "Taxa", "rate": "Taxa",
@ -187,7 +187,7 @@
"plex": { "plex": {
"streams": "Transmissions actives", "streams": "Transmissions actives",
"albums": "Àlbums", "albums": "Àlbums",
"movies": "Movies", "movies": "Pel·lícules",
"tv": "Sèries" "tv": "Sèries"
}, },
"sabnzbd": { "sabnzbd": {
@ -213,12 +213,12 @@
"seed": "Llavor" "seed": "Llavor"
}, },
"qnap": { "qnap": {
"cpuUsage": "CPU Usage", "cpuUsage": "Ús de CPU",
"memUsage": "MEM Usage", "memUsage": "Ús de Memòria",
"systemTempC": "System Temp", "systemTempC": "Temp. Sistema",
"poolUsage": "Pool Usage", "poolUsage": "Ús de les Reserves",
"volumeUsage": "Volume Usage", "volumeUsage": "Ús dels Volums",
"invalid": "Invalid" "invalid": "No vàlid"
}, },
"deluge": { "deluge": {
"download": "Descarregar", "download": "Descarregar",
@ -235,7 +235,7 @@
"sonarr": { "sonarr": {
"wanted": "Volgut", "wanted": "Volgut",
"queued": "En cua", "queued": "En cua",
"series": "Series", "series": "Sèries",
"queue": "Cua", "queue": "Cua",
"unknown": "Desconegut" "unknown": "Desconegut"
}, },
@ -243,14 +243,14 @@
"wanted": "Volgut", "wanted": "Volgut",
"missing": "Faltant", "missing": "Faltant",
"queued": "En cua", "queued": "En cua",
"movies": "Movies", "movies": "Pel·lícules",
"queue": "Cua", "queue": "Cua",
"unknown": "Desconegut" "unknown": "Desconegut"
}, },
"lidarr": { "lidarr": {
"wanted": "Volgut", "wanted": "Volgut",
"queued": "En cua", "queued": "En cua",
"artists": "Artists" "artists": "Artistes"
}, },
"readarr": { "readarr": {
"wanted": "Volgut", "wanted": "Volgut",
@ -277,17 +277,17 @@
"approved": "Aprovat", "approved": "Aprovat",
"available": "Disponible" "available": "Disponible"
}, },
"pialert": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Connected", "connected": "Connectat",
"new_devices": "New Devices", "new_devices": "Nous dispositius",
"down_alerts": "Down Alerts" "down_alerts": "Alertes de caigudes"
}, },
"pihole": { "pihole": {
"queries": "Consultes", "queries": "Consultes",
"blocked": "Bloquejat", "blocked": "Bloquejat",
"blocked_percent": "Blocked %", "blocked_percent": "Bloquejat %",
"gravity": "Gravity" "gravity": "Gravetat"
}, },
"adguard": { "adguard": {
"queries": "Consultes", "queries": "Consultes",
@ -298,37 +298,37 @@
"speedtest": { "speedtest": {
"upload": "Pujada", "upload": "Pujada",
"download": "Descarregar", "download": "Descarregar",
"ping": "Ping" "ping": "Latència"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "En execució",
"stopped": "Aturat", "stopped": "Aturat",
"total": "Total" "total": "Total"
}, },
"tailscale": { "tailscale": {
"address": "Address", "address": "Adreça",
"expires": "Expires", "expires": "Caduca",
"never": "Never", "never": "Mai",
"last_seen": "Last Seen", "last_seen": "Vist per darrer cop",
"now": "Now", "now": "Ara",
"years": "{{number}}y", "years": "{{number}}a",
"weeks": "{{number}}w", "weeks": "{{number}}set",
"days": "{{number}}d", "days": "{{number}}d",
"hours": "{{number}}h", "hours": "{{number}}h",
"minutes": "{{number}}m", "minutes": "{{number}}m",
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Ago" "ago": "Fa {{value}}"
}, },
"tdarr": { "tdarr": {
"queue": "Cua", "queue": "Cua",
"processed": "Processed", "processed": "Processat",
"errored": "Errored", "errored": "Error",
"saved": "Saved" "saved": "Desat"
}, },
"traefik": { "traefik": {
"routers": "Encaminadors", "routers": "Encaminadors",
"services": "Serveis", "services": "Serveis",
"middleware": "Middleware" "middleware": "Intermediari"
}, },
"navidrome": { "navidrome": {
"nothing_streaming": "Sense reproduccions actives", "nothing_streaming": "Sense reproduccions actives",
@ -360,7 +360,7 @@
}, },
"jackett": { "jackett": {
"configured": "Configurat", "configured": "Configurat",
"errored": "Errored" "errored": "Error"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Sessions", "numActiveSessions": "Sessions",
@ -376,18 +376,18 @@
"medusa": { "medusa": {
"wanted": "Volgut", "wanted": "Volgut",
"queued": "En cua", "queued": "En cua",
"series": "Series" "series": "Sèries"
}, },
"minecraft": { "minecraft": {
"players": "Players", "players": "Jugadors",
"version": "Version", "version": "Versió",
"status": "Estat", "status": "Estat",
"up": "Online", "up": "En línia",
"down": "Fora de línia" "down": "Fora de línia"
}, },
"miniflux": { "miniflux": {
"read": "Read", "read": "Llegir",
"unread": "Unread" "unread": "Sense llegir"
}, },
"authentik": { "authentik": {
"users": "Usuaris", "users": "Usuaris",
@ -406,28 +406,28 @@
"wait": "Si us plau, espereu", "wait": "Si us plau, espereu",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temp", "_temp": "Temp",
"warn": "Warn", "warn": "Avís",
"uptime": "UP", "uptime": "ACTIU",
"total": "Total", "total": "Total",
"free": "Lliure", "free": "Lliure",
"used": "Utilitzat", "used": "Utilitzat",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Crit", "crit": "Crític",
"read": "Read", "read": "Llegir",
"write": "Write", "write": "Escriure",
"gpu": "GPU", "gpu": "GPU",
"mem": "Mem", "mem": "Mem",
"swap": "Swap" "swap": "Intercanvi"
}, },
"quicklaunch": { "quicklaunch": {
"bookmark": "Marcador", "bookmark": "Marcador",
"service": "Servei", "service": "Servei",
"search": "Search", "search": "Cercar",
"custom": "Custom", "custom": "Personalitzat",
"visit": "Visit", "visit": "Visitar",
"url": "URL", "url": "URL",
"searchsuggestion": "Suggestion" "searchsuggestion": "Suggeriment"
}, },
"wmo": { "wmo": {
"0-day": "Assolellat", "0-day": "Assolellat",
@ -492,21 +492,21 @@
"updates": "Actualitzacions", "updates": "Actualitzacions",
"update_available": "Actualització disponible", "update_available": "Actualització disponible",
"up_to_date": "Actualitzat", "up_to_date": "Actualitzat",
"child_bridges": "Child Bridges", "child_bridges": "Ponts fills",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Actiu",
"pending": "Pendent", "pending": "Pendent",
"down": "Down" "down": "Inactiu"
}, },
"healthchecks": { "healthchecks": {
"new": "New", "new": "Nou",
"up": "Up", "up": "Actiu",
"grace": "In Grace Period", "grace": "En Període de gràcia",
"down": "Down", "down": "Inactiu",
"paused": "Paused", "paused": "En pausa",
"status": "Estat", "status": "Estat",
"last_ping": "Last Ping", "last_ping": "Últim ping",
"never": "No pings yet" "never": "Sense pings"
}, },
"watchtower": { "watchtower": {
"containers_scanned": "Escanejat", "containers_scanned": "Escanejat",
@ -528,7 +528,7 @@
"truenas": { "truenas": {
"load": "Càrrega del sistema", "load": "Càrrega del sistema",
"uptime": "Temps actiu", "uptime": "Temps actiu",
"alerts": "Alerts" "alerts": "Alertes"
}, },
"pyload": { "pyload": {
"speed": "Velocitat", "speed": "Velocitat",
@ -544,12 +544,12 @@
"hdhomerun": { "hdhomerun": {
"channels": "Canals", "channels": "Canals",
"hd": "HD", "hd": "HD",
"tunerCount": "Tuners", "tunerCount": "Sintonitzadors",
"channelNumber": "Channel", "channelNumber": "Canal",
"channelNetwork": "Network", "channelNetwork": "Xarxa",
"signalStrength": "Strength", "signalStrength": "Intensitat",
"signalQuality": "Quality", "signalQuality": "Qualitat",
"symbolQuality": "Quality", "symbolQuality": "Qualitat",
"networkRate": "Taxa de bits", "networkRate": "Taxa de bits",
"clientIP": "Client" "clientIP": "Client"
}, },
@ -563,94 +563,94 @@
"total": "Total" "total": "Total"
}, },
"peanut": { "peanut": {
"battery_charge": "Battery Charge", "battery_charge": "Càrrega de la bateria",
"ups_load": "UPS Load", "ups_load": "Càrrega del SAI",
"ups_status": "UPS Status", "ups_status": "Estat del SAI",
"online": "Online", "online": "En línia",
"on_battery": "On Battery", "on_battery": "En Bateria",
"low_battery": "Low Battery" "low_battery": "Bateria Baixa"
}, },
"nextdns": { "nextdns": {
"wait": "Espereu si us plau", "wait": "Espereu si us plau",
"no_devices": "No Device Data Received" "no_devices": "No s'han rebut dades del Dispositiu"
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "CPU Load", "cpuLoad": "Càrrega de CPU",
"memoryUsed": "Memory Used", "memoryUsed": "Memoria en ús",
"uptime": "Temps actiu", "uptime": "Temps actiu",
"numberOfLeases": "Leases" "numberOfLeases": "IPs assignades"
}, },
"xteve": { "xteve": {
"streams_all": "All Streams", "streams_all": "Tots els fluxos",
"streams_active": "Transmissions actives", "streams_active": "Transmissions actives",
"streams_xepg": "XEPG Channels" "streams_xepg": "Canals XEPG"
}, },
"opendtu": { "opendtu": {
"yieldDay": "Today", "yieldDay": "Avui",
"absolutePower": "Power", "absolutePower": "Potència",
"relativePower": "Power %", "relativePower": "Potència %",
"limit": "Limit" "limit": "Límit"
}, },
"opnsense": { "opnsense": {
"cpu": "CPU Load", "cpu": "Càrrega de CPU",
"memory": "Active Memory", "memory": "Memòria activa",
"wanUpload": "WAN Upload", "wanUpload": "Pujada WAN",
"wanDownload": "WAN Download" "wanDownload": "Baixada WAN"
}, },
"moonraker": { "moonraker": {
"printer_state": "Printer State", "printer_state": "Estat de l'impressora",
"print_status": "Print Status", "print_status": "Estat de l'impressió",
"print_progress": "Progress", "print_progress": "Progress",
"layers": "Layers" "layers": "Capes"
}, },
"octoprint": { "octoprint": {
"printer_state": "Estat", "printer_state": "Estat",
"temp_tool": "Tool temp", "temp_tool": "Temperatura capçal",
"temp_bed": "Bed temp", "temp_bed": "Temperatura llit",
"job_completion": "Completion" "job_completion": "Finalització"
}, },
"cloudflared": { "cloudflared": {
"origin_ip": "Origin IP", "origin_ip": "IP Origen",
"status": "Estat" "status": "Estat"
}, },
"pfsense": { "pfsense": {
"load": "Load Avg", "load": "Promig Càrrega",
"memory": "Mem Usage", "memory": "Ús Memòria",
"wanStatus": "WAN Status", "wanStatus": "Estat WAN",
"up": "Up", "up": "Actiu",
"down": "Down", "down": "Inactiu",
"temp": "Temp", "temp": "Temp",
"disk": "Disk Usage", "disk": "Ús Disc",
"wanIP": "WAN IP" "wanIP": "WAN IP"
}, },
"proxmoxbackupserver": { "proxmoxbackupserver": {
"datastore_usage": "Datastore", "datastore_usage": "Datastore",
"failed_tasks_24h": "Failed Tasks 24h", "failed_tasks_24h": "Tasques fallides (24h)",
"cpu_usage": "CPU", "cpu_usage": "CPU",
"memory_usage": "Memory" "memory_usage": "Memòria"
}, },
"immich": { "immich": {
"users": "Usuaris", "users": "Usuaris",
"photos": "Photos", "photos": "Fotos",
"videos": "Vídeos", "videos": "Vídeos",
"storage": "Storage" "storage": "Emmagatzematge"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Sites Up", "up": "Actius",
"down": "Sites Down", "down": "Caiguts",
"uptime": "Temps actiu", "uptime": "Temps actiu",
"incident": "Incident", "incident": "Incidència",
"m": "m" "m": "m"
}, },
"atsumeru": { "atsumeru": {
"series": "Series", "series": "Sèries",
"archives": "Archives", "archives": "Arxius",
"chapters": "Chapters", "chapters": "Capítols",
"categories": "Categories" "categories": "Categories"
}, },
"komga": { "komga": {
"libraries": "Libraries", "libraries": "Biblioteques",
"series": "Series", "series": "Sèries",
"books": "Llibres" "books": "Llibres"
}, },
"diskstation": { "diskstation": {
@ -659,77 +659,77 @@
"volumeAvailable": "Disponible" "volumeAvailable": "Disponible"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Sèries",
"issues": "Issues", "issues": "Problemes",
"wanted": "Volgut" "wanted": "Volgut"
}, },
"photoprism": { "photoprism": {
"albums": "Àlbums", "albums": "Àlbums",
"photos": "Photos", "photos": "Fotos",
"videos": "Vídeos", "videos": "Vídeos",
"people": "People" "people": "Gent"
}, },
"fileflows": { "fileflows": {
"queue": "Cua", "queue": "Cua",
"processing": "Processant", "processing": "Processant",
"processed": "Processed", "processed": "Processat",
"time": "Time" "time": "Temps"
}, },
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Taulells",
"datasources": "Data Sources", "datasources": "Origen de dades",
"totalalerts": "Total Alerts", "totalalerts": "Alertes Totals",
"alertstriggered": "Alerts Triggered" "alertstriggered": "Alertes disparades"
}, },
"nextcloud": { "nextcloud": {
"cpuload": "Cpu Load", "cpuload": "Càrrega de CPU",
"memoryusage": "Memory Usage", "memoryusage": "Ús Memòria",
"freespace": "Free Space", "freespace": "Espai lliure",
"activeusers": "Active Users", "activeusers": "Usuaris actius",
"numfiles": "Files", "numfiles": "Fitxers",
"numshares": "Shared Items" "numshares": "Elements compartits"
}, },
"kopia": { "kopia": {
"status": "Estat", "status": "Estat",
"size": "Size", "size": "Mida",
"lastrun": "Last Run", "lastrun": "Darrera execució",
"nextrun": "Next Run", "nextrun": "Següent execució",
"failed": "Error" "failed": "Error"
}, },
"unmanic": { "unmanic": {
"active_workers": "Active Workers", "active_workers": "Treballadors actius",
"total_workers": "Total Workers", "total_workers": "Treballadors Totals",
"records_total": "Queue Length" "records_total": "Llargada de la Cua"
}, },
"pterodactyl": { "pterodactyl": {
"servers": "Servers", "servers": "Servidors",
"nodes": "Nodes" "nodes": "Nodes"
}, },
"prometheus": { "prometheus": {
"targets_up": "Targets Up", "targets_up": "Objectius actius",
"targets_down": "Targets Down", "targets_down": "Objectius caiguts",
"targets_total": "Total Targets" "targets_total": "Objectius Totals"
}, },
"gatus": { "gatus": {
"up": "Sites Up", "up": "Actius",
"down": "Sites Down", "down": "Caiguts",
"uptime": "Temps actiu" "uptime": "Temps actiu"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Today", "gross_percent_today": "Avui",
"gross_percent_1y": "One year", "gross_percent_1y": "Un any",
"gross_percent_max": "All time" "gross_percent_max": "Tot"
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasts", "podcasts": "Podcasts",
"books": "Llibres", "books": "Llibres",
"podcastsDuration": "Duration", "podcastsDuration": "Durada",
"booksDuration": "Duration" "booksDuration": "Durada"
}, },
"homeassistant": { "homeassistant": {
"people_home": "People Home", "people_home": "Gent a casa",
"lights_on": "Lights On", "lights_on": "Llums enceses",
"switches_on": "Switches On" "switches_on": "Endolls activats"
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Supervisió", "monitoring": "Supervisió",
@ -737,140 +737,144 @@
}, },
"calibreweb": { "calibreweb": {
"books": "Llibres", "books": "Llibres",
"authors": "Authors", "authors": "Autors",
"categories": "Categories", "categories": "Categories",
"series": "Series" "series": "Sèries"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Cua", "downloadCount": "Cua",
"downloadBytesRemaining": "Restant", "downloadBytesRemaining": "Restant",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Mida",
"downloadSpeed": "Velocitat" "downloadSpeed": "Velocitat"
}, },
"kavita": { "kavita": {
"seriesCount": "Series", "seriesCount": "Sèries",
"totalFiles": "Files" "totalFiles": "Fitxers"
}, },
"azuredevops": { "azuredevops": {
"result": "Result", "result": "Resultat",
"status": "Estat", "status": "Estat",
"buildId": "Build ID", "buildId": "Id de compilació",
"succeeded": "Succeeded", "succeeded": "Amb èxit",
"notStarted": "Not Started", "notStarted": "No Iniciat",
"failed": "Error", "failed": "Error",
"canceled": "Canceled", "canceled": "Cancel·lat",
"inProgress": "In Progress", "inProgress": "En curs",
"totalPrs": "Total PRs", "totalPrs": "RP Totals",
"myPrs": "My PRs", "myPrs": "Els meus RP",
"approved": "Aprovat" "approved": "Aprovat"
}, },
"gamedig": { "gamedig": {
"status": "Estat", "status": "Estat",
"online": "Online", "online": "En línia",
"offline": "Fora de línia", "offline": "Fora de línia",
"name": "Name", "name": "Nom",
"map": "Map", "map": "Mapa",
"currentPlayers": "Current players", "currentPlayers": "Jugadors actuals",
"players": "Players", "players": "Jugadors",
"maxPlayers": "Max players", "maxPlayers": "Màxim de jugadors",
"bots": "Bots", "bots": "Bots",
"ping": "Ping" "ping": "Latència"
}, },
"urbackup": { "urbackup": {
"ok": "Ok", "ok": "Ok",
"errored": "Errors", "errored": "Errors",
"noRecent": "Out of Date", "noRecent": "Obsolet",
"totalUsed": "Used Storage" "totalUsed": "Emmagatzematge utilitzat"
}, },
"mealie": { "mealie": {
"recipes": "Recipes", "recipes": "Receptes",
"users": "Usuaris", "users": "Usuaris",
"categories": "Categories", "categories": "Categories",
"tags": "Tags" "tags": "Etiquetes"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Downloading", "downloading": "Descarregant",
"total": "Total", "total": "Total",
"running": "Running", "running": "En execució",
"stopped": "Aturat", "stopped": "Aturat",
"passed": "Aprobat", "passed": "Aprobat",
"failed": "Error" "failed": "Error"
}, },
"openwrt": { "openwrt": {
"uptime": "Temps actiu", "uptime": "Temps actiu",
"cpuLoad": "CPU Load Avg (5m)", "cpuLoad": "Càrrega promig de CPU (5m)",
"up": "Up", "up": "Actiu",
"down": "Down", "down": "Inactiu",
"bytesTx": "Transmitted", "bytesTx": "Enviat",
"bytesRx": "Received" "bytesRx": "Rebuts"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Estat", "status": "Estat",
"uptime": "Temps actiu", "uptime": "Temps actiu",
"lastDown": "Last Downtime", "lastDown": "Darrera Inactivitat",
"downDuration": "Downtime Duration", "downDuration": "Duració d'Inactivitat",
"sitesUp": "Sites Up", "sitesUp": "Actius",
"sitesDown": "Sites Down", "sitesDown": "Caiguts",
"paused": "Paused", "paused": "En pausa",
"notyetchecked": "Not Yet Checked", "notyetchecked": "Sense verificar",
"up": "Up", "up": "Actiu",
"seemsdown": "Seems Down", "seemsdown": "Sembla caigut",
"down": "Down", "down": "Inactiu",
"unknown": "Desconegut" "unknown": "Desconegut"
}, },
"calendar": { "calendar": {
"inCinemas": "In cinemas", "inCinemas": "En cines",
"physicalRelease": "Physical release", "physicalRelease": "Estrena física",
"digitalRelease": "Digital release", "digitalRelease": "Estrena digital",
"noEventsToday": "No events for today!", "noEventsToday": "Cap esdeveniment per avui!",
"noEventsFound": "No events found" "noEventsFound": "No s'han trobat esdeveniments"
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Plataformes",
"totalRoms": "Total ROMs" "totalRoms": "ROMs totals"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Avisos",
"criticals": "Criticals" "criticals": "Crítics"
}, },
"plantit": { "plantit": {
"events": "Events", "events": "Esdeveniments",
"plants": "Plants", "plants": "Plantes",
"photos": "Photos", "photos": "Fotos",
"species": "Species" "species": "Espècies"
}, },
"gitea": { "gitea": {
"notifications": "Notifications", "notifications": "Notificacions",
"issues": "Issues", "issues": "Problemes",
"pulls": "Pull Requests" "pulls": "Sol·licitud de Canvis"
}, },
"stash": { "stash": {
"scenes": "Scenes", "scenes": "Escenes",
"scenesPlayed": "Scenes Played", "scenesPlayed": "Escenes reproduïdes",
"playCount": "Total Plays", "playCount": "Total reproduccions",
"playDuration": "Time Watched", "playDuration": "Temps visionat",
"sceneSize": "Scenes Size", "sceneSize": "Tamany Escena",
"sceneDuration": "Scenes Duration", "sceneDuration": "Duració Escenes",
"images": "Images", "images": "Imatges",
"imageSize": "Images Size", "imageSize": "Mida Imatges",
"galleries": "Galleries", "galleries": "Biblioteques",
"performers": "Performers", "performers": "Intèrprets",
"studios": "Studios", "studios": "Estudis",
"movies": "Movies", "movies": "Pel·lícules",
"tags": "Tags", "tags": "Etiquetes",
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Usuaris", "users": "Usuaris",
"recipes": "Recipes", "recipes": "Receptes",
"keywords": "Keywords" "keywords": "Paraules claus"
}, },
"homebox": { "homebox": {
"items": "Items", "items": "Elements",
"totalWithWarranty": "With Warranty", "totalWithWarranty": "Amb Garantia",
"locations": "Locations", "locations": "Ubicacions",
"labels": "Labels", "labels": "Etiquetes",
"users": "Usuaris", "users": "Usuaris",
"totalValue": "Total Value" "totalValue": "Valor total"
},
"crowdsec": {
"alerts": "Alertes",
"bans": "Prohibicions"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Čeká na odpojení", "connectionStatusPendingDisconnect": "Čeká na odpojení",
"connectionStatusDisconnecting": "Odpojování", "connectionStatusDisconnecting": "Odpojování",
"connectionStatusDisconnected": "Odpojeno", "connectionStatusDisconnected": "Odpojeno",
"connectionStatusConnected": "Připojeno", "connectionStatusConnected": "Connected",
"uptime": "Doba spuštění", "uptime": "Doba spuštění",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
@ -277,10 +277,10 @@
"approved": "Schváleno", "approved": "Schváleno",
"available": "Dostupné" "available": "Dostupné"
}, },
"pialert": { "netalertx": {
"total": "Celkem", "total": "Celkem",
"connected": "Připojeno", "connected": "Connected",
"new_devices": "Nová zařízení", "new_devices": "New Devices",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Uživatelé", "users": "Uživatelé",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Upozornění",
"bans": "Bans"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Pending Disconnect", "connectionStatusPendingDisconnect": "Pending Disconnect",
"connectionStatusDisconnecting": "Disconnecting", "connectionStatusDisconnecting": "Disconnecting",
"connectionStatusDisconnected": "Disconnected", "connectionStatusDisconnected": "Disconnected",
"connectionStatusConnected": "Forbundet", "connectionStatusConnected": "Connected",
"uptime": "Oppetid", "uptime": "Oppetid",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
@ -277,11 +277,11 @@
"approved": "Godkendt", "approved": "Godkendt",
"available": "Tilgængelig" "available": "Tilgængelig"
}, },
"pialert": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Forbundet", "connected": "Connected",
"new_devices": "Nye Enheder", "new_devices": "New Devices",
"down_alerts": "Nedadvarsler" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "Forespørgsler", "queries": "Forespørgsler",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Brugere", "users": "Brugere",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Advarsler",
"bans": "Bans"
} }
} }

View File

@ -142,8 +142,8 @@
"connectionStatusDisconnected": "Getrennt", "connectionStatusDisconnected": "Getrennt",
"connectionStatusConnected": "Verbunden", "connectionStatusConnected": "Verbunden",
"uptime": "Betriebszeit", "uptime": "Betriebszeit",
"maxDown": "Max. Empfang", "maxDown": "Max. Down",
"maxUp": "Max. Senden", "maxUp": "Max. Up",
"down": "Empfangen", "down": "Empfangen",
"up": "Senden", "up": "Senden",
"received": "Empfangen", "received": "Empfangen",
@ -277,7 +277,7 @@
"approved": "Genehmigt", "approved": "Genehmigt",
"available": "Verfügbar" "available": "Verfügbar"
}, },
"pialert": { "netalertx": {
"total": "Gesamt", "total": "Gesamt",
"connected": "Verbunden", "connected": "Verbunden",
"new_devices": "Neue Geräte", "new_devices": "Neue Geräte",
@ -392,7 +392,7 @@
"authentik": { "authentik": {
"users": "Benutzer", "users": "Benutzer",
"loginsLast24H": "Anmeldungen (24 h)", "loginsLast24H": "Anmeldungen (24 h)",
"failedLoginsLast24H": "Fehlgeschlagene Anmeldungen (24 h)" "failedLoginsLast24H": "Fehlversuche (24 h)"
}, },
"proxmox": { "proxmox": {
"mem": "RAM", "mem": "RAM",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Benutzer", "users": "Benutzer",
"totalValue": "Gesamtwert" "totalValue": "Gesamtwert"
},
"crowdsec": {
"alerts": "Warnungen",
"bans": "Banns"
} }
} }

View File

@ -146,9 +146,9 @@
"maxUp": "Max. Up", "maxUp": "Max. Up",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
"received": "Received", "received": "Ληφθέντα",
"sent": "Sent", "sent": "Απεσταλμένα",
"externalIPAddress": "Ext. IP" "externalIPAddress": "Εξωτερική IP"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@ -277,7 +277,7 @@
"approved": "Εγκρίθηκε", "approved": "Εγκρίθηκε",
"available": "Διαθέσιμο" "available": "Διαθέσιμο"
}, },
"pialert": { "netalertx": {
"total": "Σύνολο", "total": "Σύνολο",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -327,7 +327,7 @@
}, },
"traefik": { "traefik": {
"routers": "Routers", "routers": "Routers",
"services": "Services", "services": "Υπηρεσίες",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"navidrome": { "navidrome": {
@ -522,7 +522,7 @@
"tubearchivist": { "tubearchivist": {
"downloads": "Ουρά", "downloads": "Ουρά",
"videos": "Videos", "videos": "Videos",
"channels": "Channels", "channels": "Κανάλια",
"playlists": "Playlists" "playlists": "Playlists"
}, },
"truenas": { "truenas": {
@ -542,14 +542,14 @@
"country": "Χώρα" "country": "Χώρα"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Channels", "channels": "Κανάλια",
"hd": "HD", "hd": "HD",
"tunerCount": "Tuners", "tunerCount": "Tuners",
"channelNumber": "Channel", "channelNumber": "Κανάλι",
"channelNetwork": "Network", "channelNetwork": "Δίκτυο",
"signalStrength": "Strength", "signalStrength": "Strength",
"signalQuality": "Quality", "signalQuality": "Ποιότητα",
"symbolQuality": "Quality", "symbolQuality": "Ποιότητα",
"networkRate": "Ρυθμός bit", "networkRate": "Ρυθμός bit",
"clientIP": "Client" "clientIP": "Client"
}, },
@ -559,7 +559,7 @@
"unknown": "Άγνωστο" "unknown": "Άγνωστο"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Inbox", "inbox": "Εισερχόμενα",
"total": "Σύνολο" "total": "Σύνολο"
}, },
"peanut": { "peanut": {
@ -567,8 +567,8 @@
"ups_load": "UPS Load", "ups_load": "UPS Load",
"ups_status": "UPS Status", "ups_status": "UPS Status",
"online": "Συνδεδεμένοι", "online": "Συνδεδεμένοι",
"on_battery": "On Battery", "on_battery": "Σε μπαταρία",
"low_battery": "Low Battery" "low_battery": "Χαμηλή μπαταρία"
}, },
"nextdns": { "nextdns": {
"wait": "Παρακαλώ περιμένετε", "wait": "Παρακαλώ περιμένετε",
@ -620,7 +620,7 @@
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"temp": "Temp", "temp": "Temp",
"disk": "Disk Usage", "disk": "Χρήση δίσκου",
"wanIP": "WAN IP" "wanIP": "WAN IP"
}, },
"proxmoxbackupserver": { "proxmoxbackupserver": {
@ -631,7 +631,7 @@
}, },
"immich": { "immich": {
"users": "Χρήστες", "users": "Χρήστες",
"photos": "Photos", "photos": "Φωτογραφίες",
"videos": "Videos", "videos": "Videos",
"storage": "Storage" "storage": "Storage"
}, },
@ -646,7 +646,7 @@
"series": "Σειρές", "series": "Σειρές",
"archives": "Archives", "archives": "Archives",
"chapters": "Chapters", "chapters": "Chapters",
"categories": "Categories" "categories": "Κατηγορίες"
}, },
"komga": { "komga": {
"libraries": "Libraries", "libraries": "Libraries",
@ -665,7 +665,7 @@
}, },
"photoprism": { "photoprism": {
"albums": "Άλμπουμ", "albums": "Άλμπουμ",
"photos": "Photos", "photos": "Φωτογραφίες",
"videos": "Videos", "videos": "Videos",
"people": "People" "people": "People"
}, },
@ -738,7 +738,7 @@
"calibreweb": { "calibreweb": {
"books": "Βιβλία", "books": "Βιβλία",
"authors": "Authors", "authors": "Authors",
"categories": "Categories", "categories": "Κατηγορίες",
"series": "Σειρές" "series": "Σειρές"
}, },
"jdownloader": { "jdownloader": {
@ -785,7 +785,7 @@
"mealie": { "mealie": {
"recipes": "Recipes", "recipes": "Recipes",
"users": "Χρήστες", "users": "Χρήστες",
"categories": "Categories", "categories": "Κατηγορίες",
"tags": "Tags" "tags": "Tags"
}, },
"openmediavault": { "openmediavault": {
@ -802,7 +802,7 @@
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"bytesTx": "Transmitted", "bytesTx": "Transmitted",
"bytesRx": "Received" "bytesRx": "Ληφθέντα"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Κατάσταση", "status": "Κατάσταση",
@ -836,7 +836,7 @@
"plantit": { "plantit": {
"events": "Events", "events": "Events",
"plants": "Plants", "plants": "Plants",
"photos": "Photos", "photos": "Φωτογραφίες",
"species": "Species" "species": "Species"
}, },
"gitea": { "gitea": {
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Χρήστες", "users": "Χρήστες",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Ειδοποιήσεις",
"bans": "Bans"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "Approved", "approved": "Approved",
"available": "Available" "available": "Available"
}, },
"pialert": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -876,5 +876,17 @@
"crowdsec": { "crowdsec": {
"alerts": "Alerts", "alerts": "Alerts",
"bans": "Bans" "bans": "Bans"
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
},
"swagdashboard": {
"proxied": "Proxied",
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "Aprobita", "approved": "Aprobita",
"available": "Havebla" "available": "Havebla"
}, },
"pialert": { "netalertx": {
"total": "Totalo", "total": "Totalo",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Uzantoj", "users": "Uzantoj",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"bans": "Bans"
} }
} }

View File

@ -12,7 +12,7 @@
"number": "{{value, number}}", "number": "{{value, number}}",
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{valor, relativaFecha}}",
"uptime": "{{value, uptime}}", "uptime": "{{value, uptime}}",
"months": "me", "months": "me",
"days": "d", "days": "d",
@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Desconexión pendiente", "connectionStatusPendingDisconnect": "Desconexión pendiente",
"connectionStatusDisconnecting": "Desconectando", "connectionStatusDisconnecting": "Desconectando",
"connectionStatusDisconnected": "Desconectado", "connectionStatusDisconnected": "Desconectado",
"connectionStatusConnected": "Conectado", "connectionStatusConnected": "Connected",
"uptime": "Tiempo activo", "uptime": "Tiempo activo",
"maxDown": "Descarga máxima", "maxDown": "Descarga máxima",
"maxUp": "Subida máxima", "maxUp": "Subida máxima",
@ -277,11 +277,11 @@
"approved": "Aprobado", "approved": "Aprobado",
"available": "Disponible" "available": "Disponible"
}, },
"pialert": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Conectado", "connected": "Connected",
"new_devices": "Nuevos dispositivos", "new_devices": "New Devices",
"down_alerts": "Alertas de caídas" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "Consultas", "queries": "Consultas",
@ -427,7 +427,7 @@
"custom": "Personalizado", "custom": "Personalizado",
"visit": "Visitar", "visit": "Visitar",
"url": "Enlace", "url": "Enlace",
"searchsuggestion": "Suggestion" "searchsuggestion": "Sugerencia"
}, },
"wmo": { "wmo": {
"0-day": "Soleado", "0-day": "Soleado",
@ -546,12 +546,12 @@
"hd": "Alta definición", "hd": "Alta definición",
"tunerCount": "Tuners", "tunerCount": "Tuners",
"channelNumber": "Canal", "channelNumber": "Canal",
"channelNetwork": "Network", "channelNetwork": "Red",
"signalStrength": "Strength", "signalStrength": "Intensidad",
"signalQuality": "Quality", "signalQuality": "Calidad",
"symbolQuality": "Quality", "symbolQuality": "Calidad",
"networkRate": "Tasa de bits", "networkRate": "Tasa de bits",
"clientIP": "Client" "clientIP": "Cliente"
}, },
"scrutiny": { "scrutiny": {
"passed": "Aprobado", "passed": "Aprobado",
@ -798,10 +798,10 @@
}, },
"openwrt": { "openwrt": {
"uptime": "Tiempo activo", "uptime": "Tiempo activo",
"cpuLoad": "CPU Load Avg (5m)", "cpuLoad": "Carga promedio del CPU (5m)",
"up": "Activo", "up": "Activo",
"down": "Inactivo", "down": "Inactivo",
"bytesTx": "Transmitted", "bytesTx": "Transmitido",
"bytesRx": "Recibido" "bytesRx": "Recibido"
}, },
"uptimerobot": { "uptimerobot": {
@ -826,21 +826,21 @@
"noEventsFound": "No se encontraron eventos" "noEventsFound": "No se encontraron eventos"
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Plataformas",
"totalRoms": "Total ROMs" "totalRoms": "Total ROMs"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Advertencias",
"criticals": "Criticals" "criticals": "Críticos"
}, },
"plantit": { "plantit": {
"events": "Events", "events": "Eventos",
"plants": "Plants", "plants": "Plants",
"photos": "Fotos", "photos": "Fotos",
"species": "Species" "species": "Species"
}, },
"gitea": { "gitea": {
"notifications": "Notifications", "notifications": "Notificaciones",
"issues": "Números", "issues": "Números",
"pulls": "Pull Requests" "pulls": "Pull Requests"
}, },
@ -852,7 +852,7 @@
"sceneSize": "Scenes Size", "sceneSize": "Scenes Size",
"sceneDuration": "Scenes Duration", "sceneDuration": "Scenes Duration",
"images": "Imágenes", "images": "Imágenes",
"imageSize": "Images Size", "imageSize": "Tamaño de imagen",
"galleries": "Galerías", "galleries": "Galerías",
"performers": "Performers", "performers": "Performers",
"studios": "Studios", "studios": "Studios",
@ -869,8 +869,12 @@
"items": "Items", "items": "Items",
"totalWithWarranty": "Con Garantía", "totalWithWarranty": "Con Garantía",
"locations": "Ubicaciones", "locations": "Ubicaciones",
"labels": "Labels", "labels": "Etiquetas",
"users": "Usuarios", "users": "Usuarios",
"totalValue": "Total Value" "totalValue": "Valor total"
},
"crowdsec": {
"alerts": "Alertas",
"bans": "Bans"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "Approved", "approved": "Approved",
"available": "Available" "available": "Available"
}, },
"pialert": { "netalertx": {
"total": "Guztira", "total": "Guztira",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "Users",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"bans": "Bans"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "Hyväksytty", "approved": "Hyväksytty",
"available": "Saatavilla" "available": "Saatavilla"
}, },
"pialert": { "netalertx": {
"total": "Yhteensä", "total": "Yhteensä",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "Users",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"bans": "Bans"
} }
} }

View File

@ -15,13 +15,13 @@
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "d", "days": "j",
"hours": "h", "hours": "h",
"minutes": "m", "minutes": "m",
"seconds": "s" "seconds": "s"
}, },
"widget": { "widget": {
"missing_type": "Widget manquant: {{type}}", "missing_type": "Type de widget manquant: {{type}}",
"api_error": "Erreur API", "api_error": "Erreur API",
"information": "Informations", "information": "Informations",
"status": "Statut", "status": "Statut",
@ -40,7 +40,7 @@
}, },
"resources": { "resources": {
"cpu": "CPU", "cpu": "CPU",
"mem": "Mém", "mem": "MÉM",
"total": "Total", "total": "Total",
"free": "Libre", "free": "Libre",
"used": "Utilisé", "used": "Utilisé",
@ -69,7 +69,7 @@
"docker": { "docker": {
"rx": "Rx", "rx": "Rx",
"tx": "Tx", "tx": "Tx",
"mem": "Mém", "mem": "MÉM",
"cpu": "CPU", "cpu": "CPU",
"running": "Démarré", "running": "Démarré",
"offline": "Hors ligne", "offline": "Hors ligne",
@ -277,11 +277,11 @@
"approved": "Validé", "approved": "Validé",
"available": "Disponible" "available": "Disponible"
}, },
"pialert": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Connecté", "connected": "Connecté",
"new_devices": "Nouvel Appareil", "new_devices": "Nouveaux appareils",
"down_alerts": "Alertes" "down_alerts": "Alertes d'arrêt"
}, },
"pihole": { "pihole": {
"queries": "Requêtes", "queries": "Requêtes",
@ -395,7 +395,7 @@
"failedLoginsLast24H": "Cnx. échouées (24h)" "failedLoginsLast24H": "Cnx. échouées (24h)"
}, },
"proxmox": { "proxmox": {
"mem": "Mém", "mem": "MÉM",
"cpu": "CPU", "cpu": "CPU",
"lxc": "LxC", "lxc": "LxC",
"vms": "VMs" "vms": "VMs"
@ -411,7 +411,7 @@
"total": "Total", "total": "Total",
"free": "Libre", "free": "Libre",
"used": "Utilisé", "used": "Utilisé",
"days": "d", "days": "j",
"hours": "h", "hours": "h",
"crit": "Crit.", "crit": "Crit.",
"read": "Lu", "read": "Lu",
@ -847,18 +847,18 @@
"stash": { "stash": {
"scenes": "Scènes", "scenes": "Scènes",
"scenesPlayed": "Scènes jouées", "scenesPlayed": "Scènes jouées",
"playCount": "Total Plays", "playCount": "Lectures Totales",
"playDuration": "Time Watched", "playDuration": "Temps regardé",
"sceneSize": "Scenes Size", "sceneSize": "Taille des scènes",
"sceneDuration": "Scenes Duration", "sceneDuration": "Durée des scènes",
"images": "Images", "images": "Images",
"imageSize": "Taille des images", "imageSize": "Taille des images",
"galleries": "Galeries", "galleries": "Galeries",
"performers": "Performers", "performers": "Acteurs",
"studios": "Studios", "studios": "Studios",
"movies": "Films", "movies": "Films",
"tags": "Étiquettes", "tags": "Étiquettes",
"oCount": "O Count" "oCount": "0 Compte"
}, },
"tandoor": { "tandoor": {
"users": "Utilisateurs", "users": "Utilisateurs",
@ -871,6 +871,10 @@
"locations": "Emplacements", "locations": "Emplacements",
"labels": "Étiquettes", "labels": "Étiquettes",
"users": "Utilisateurs", "users": "Utilisateurs",
"totalValue": "Total Value" "totalValue": "Valeur Totale"
},
"crowdsec": {
"alerts": "Alertes",
"bans": "Exclusions"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "מאושר", "approved": "מאושר",
"available": "זמין" "available": "זמין"
}, },
"pialert": { "netalertx": {
"total": "סה\"כ", "total": "סה\"כ",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "Users",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"bans": "Bans"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "Approved", "approved": "Approved",
"available": "Available" "available": "Available"
}, },
"pialert": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "Users",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"bans": "Bans"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Odspajanje u tijeku", "connectionStatusPendingDisconnect": "Odspajanje u tijeku",
"connectionStatusDisconnecting": "Odspajanje", "connectionStatusDisconnecting": "Odspajanje",
"connectionStatusDisconnected": "Odspojeno", "connectionStatusDisconnected": "Odspojeno",
"connectionStatusConnected": "Povezano", "connectionStatusConnected": "Connected",
"uptime": "Vrijeme rada", "uptime": "Vrijeme rada",
"maxDown": "Maksimum preuzimanja", "maxDown": "Maksimum preuzimanja",
"maxUp": "Maksimum prijenosa", "maxUp": "Maksimum prijenosa",
@ -277,11 +277,11 @@
"approved": "Odobreno", "approved": "Odobreno",
"available": "Dostupno" "available": "Dostupno"
}, },
"pialert": { "netalertx": {
"total": "Ukupno", "total": "Ukupno",
"connected": "Povezano", "connected": "Connected",
"new_devices": "Novi uređaji", "new_devices": "New Devices",
"down_alerts": "Obavijesti o nedostupnosti" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "Upiti", "queries": "Upiti",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Korisnici", "users": "Korisnici",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Upozorenja",
"bans": "Bans"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Szétkapcsolás függőben", "connectionStatusPendingDisconnect": "Szétkapcsolás függőben",
"connectionStatusDisconnecting": "Kapcsolat bontása", "connectionStatusDisconnecting": "Kapcsolat bontása",
"connectionStatusDisconnected": "Kapcsolat bontva", "connectionStatusDisconnected": "Kapcsolat bontva",
"connectionStatusConnected": "Csatlakoztatott", "connectionStatusConnected": "Connected",
"uptime": "Üzemidő", "uptime": "Üzemidő",
"maxDown": "Max let.", "maxDown": "Max let.",
"maxUp": "Max felt.", "maxUp": "Max felt.",
@ -277,11 +277,11 @@
"approved": "Engedélyezett", "approved": "Engedélyezett",
"available": "Elérhető" "available": "Elérhető"
}, },
"pialert": { "netalertx": {
"total": "Összes", "total": "Összes",
"connected": "Csatlakoztatott", "connected": "Connected",
"new_devices": "Új Eszközök", "new_devices": "New Devices",
"down_alerts": "Leállási Figyelmeztetések" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "Lekérdezések", "queries": "Lekérdezések",
@ -872,5 +872,9 @@
"labels": "Címkék", "labels": "Címkék",
"users": "Felhasználók", "users": "Felhasználók",
"totalValue": "Teljes érték" "totalValue": "Teljes érték"
},
"crowdsec": {
"alerts": "Riasztások",
"bans": "Bans"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Menunggu Terputus", "connectionStatusPendingDisconnect": "Menunggu Terputus",
"connectionStatusDisconnecting": "Sedan Memutus", "connectionStatusDisconnecting": "Sedan Memutus",
"connectionStatusDisconnected": "Terputus", "connectionStatusDisconnected": "Terputus",
"connectionStatusConnected": "Tersambung", "connectionStatusConnected": "Connected",
"uptime": "Waktu Aktif", "uptime": "Waktu Aktif",
"maxDown": "Maks Unduh", "maxDown": "Maks Unduh",
"maxUp": "Maks Unggah", "maxUp": "Maks Unggah",
@ -277,11 +277,11 @@
"approved": "Tersetujui", "approved": "Tersetujui",
"available": "Tersedia" "available": "Tersedia"
}, },
"pialert": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Tersambung", "connected": "Connected",
"new_devices": "Perangkat Baru", "new_devices": "New Devices",
"down_alerts": "Alert Mati" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "Kueri", "queries": "Kueri",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Pengguna", "users": "Pengguna",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Peringatan",
"bans": "Bans"
} }
} }

View File

@ -15,8 +15,8 @@
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "d", "days": "g",
"hours": "h", "hours": "o",
"minutes": "m", "minutes": "m",
"seconds": "s" "seconds": "s"
}, },
@ -277,7 +277,7 @@
"approved": "Approvati", "approved": "Approvati",
"available": "Disponibili" "available": "Disponibili"
}, },
"pialert": { "netalertx": {
"total": "Totale", "total": "Totale",
"connected": "Connesso", "connected": "Connesso",
"new_devices": "Nuovi Dispositivi", "new_devices": "Nuovi Dispositivi",
@ -411,8 +411,8 @@
"total": "Totale", "total": "Totale",
"free": "Libero", "free": "Libero",
"used": "In utilizzo", "used": "In utilizzo",
"days": "d", "days": "g",
"hours": "h", "hours": "o",
"crit": "Critico", "crit": "Critico",
"read": "Letti", "read": "Letti",
"write": "Scrittura", "write": "Scrittura",
@ -427,7 +427,7 @@
"custom": "Personalizzato", "custom": "Personalizzato",
"visit": "Visita", "visit": "Visita",
"url": "URL", "url": "URL",
"searchsuggestion": "Suggestion" "searchsuggestion": "Suggerimenti"
}, },
"wmo": { "wmo": {
"0-day": "Soleggiato", "0-day": "Soleggiato",
@ -546,8 +546,8 @@
"hd": "HD", "hd": "HD",
"tunerCount": "Tuners", "tunerCount": "Tuners",
"channelNumber": "Channel", "channelNumber": "Channel",
"channelNetwork": "Network", "channelNetwork": "Rete",
"signalStrength": "Strength", "signalStrength": "Intensità",
"signalQuality": "Quality", "signalQuality": "Quality",
"symbolQuality": "Quality", "symbolQuality": "Quality",
"networkRate": "Bitrate", "networkRate": "Bitrate",
@ -830,32 +830,32 @@
"totalRoms": "Total ROMs" "totalRoms": "Total ROMs"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Avvisi",
"criticals": "Criticals" "criticals": "Criticals"
}, },
"plantit": { "plantit": {
"events": "Events", "events": "Events",
"plants": "Plants", "plants": "Plants",
"photos": "Foto", "photos": "Foto",
"species": "Species" "species": "Specie"
}, },
"gitea": { "gitea": {
"notifications": "Notifications", "notifications": "Notifiche",
"issues": "Problemi", "issues": "Problemi",
"pulls": "Pull Requests" "pulls": "Richieste di Pull"
}, },
"stash": { "stash": {
"scenes": "Scenes", "scenes": "Scene",
"scenesPlayed": "Scenes Played", "scenesPlayed": "Scene Riprodotte",
"playCount": "Total Plays", "playCount": "Totale Riproduzioni",
"playDuration": "Time Watched", "playDuration": "Tempo Guardato",
"sceneSize": "Scenes Size", "sceneSize": "Dimensione Delle Scene",
"sceneDuration": "Scenes Duration", "sceneDuration": "Durata Delle Scene",
"images": "Images", "images": "Immagini",
"imageSize": "Images Size", "imageSize": "Images Size",
"galleries": "Galleries", "galleries": "Galleries",
"performers": "Performers", "performers": "Esecutori",
"studios": "Studios", "studios": "Studi",
"movies": "Film", "movies": "Film",
"tags": "Tag", "tags": "Tag",
"oCount": "O Count" "oCount": "O Count"
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Utenti", "users": "Utenti",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Allarmi",
"bans": "Bans"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "接続を切断する", "connectionStatusPendingDisconnect": "接続を切断する",
"connectionStatusDisconnecting": "接続を切断中", "connectionStatusDisconnecting": "接続を切断中",
"connectionStatusDisconnected": "切断されました", "connectionStatusDisconnected": "切断されました",
"connectionStatusConnected": "接続済み", "connectionStatusConnected": "Connected",
"uptime": "稼働時間", "uptime": "稼働時間",
"maxDown": "最大ダウン", "maxDown": "最大ダウン",
"maxUp": "最大アップ", "maxUp": "最大アップ",
@ -277,11 +277,11 @@
"approved": "承認済", "approved": "承認済",
"available": "利用可" "available": "利用可"
}, },
"pialert": { "netalertx": {
"total": "合計", "total": "合計",
"connected": "接続済み", "connected": "Connected",
"new_devices": "新しいデバイス", "new_devices": "New Devices",
"down_alerts": "ダウンアラート" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "クエリ", "queries": "クエリ",
@ -872,5 +872,9 @@
"labels": "ラベル", "labels": "ラベル",
"users": "ユーザ", "users": "ユーザ",
"totalValue": "合計値" "totalValue": "合計値"
},
"crowdsec": {
"alerts": "アラート",
"bans": "Bans"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "승인됨", "approved": "승인됨",
"available": "이용 가능" "available": "이용 가능"
}, },
"pialert": { "netalertx": {
"total": "총합", "total": "총합",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "사용자", "users": "사용자",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "경고",
"bans": "Bans"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "Approved", "approved": "Approved",
"available": "Available" "available": "Available"
}, },
"pialert": { "netalertx": {
"total": "Kopā", "total": "Kopā",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Lietotāji", "users": "Lietotāji",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Paziņojumi",
"bans": "Bans"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "Lulus", "approved": "Lulus",
"available": "Sudah Ada" "available": "Sudah Ada"
}, },
"pialert": { "netalertx": {
"total": "Jumlah", "total": "Jumlah",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Pengguna", "users": "Pengguna",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"bans": "Bans"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "Goedgekeurd", "approved": "Goedgekeurd",
"available": "Beschikbaar" "available": "Beschikbaar"
}, },
"pialert": { "netalertx": {
"total": "Totaal", "total": "Totaal",
"connected": "Verbonden", "connected": "Verbonden",
"new_devices": "Nieuwe Apparaten", "new_devices": "Nieuwe Apparaten",
@ -826,8 +826,8 @@
"noEventsFound": "Geen gebeurtenissen gevonden" "noEventsFound": "Geen gebeurtenissen gevonden"
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Platformen",
"totalRoms": "Total ROMs" "totalRoms": "Totale ROM's"
}, },
"netdata": { "netdata": {
"warnings": "Waarschuwingen", "warnings": "Waarschuwingen",
@ -840,7 +840,7 @@
"species": "Soorten" "species": "Soorten"
}, },
"gitea": { "gitea": {
"notifications": "Notifications", "notifications": "Notificaties",
"issues": "Problemen", "issues": "Problemen",
"pulls": "Pull Requests" "pulls": "Pull Requests"
}, },
@ -863,7 +863,7 @@
"tandoor": { "tandoor": {
"users": "Gebruikers", "users": "Gebruikers",
"recipes": "Recepten", "recipes": "Recepten",
"keywords": "Keywords" "keywords": "Trefwoorden"
}, },
"homebox": { "homebox": {
"items": "Items", "items": "Items",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Gebruikers", "users": "Gebruikers",
"totalValue": "Totale waarde" "totalValue": "Totale waarde"
},
"crowdsec": {
"alerts": "Meldingen",
"bans": "Bans"
} }
} }

File diff suppressed because it is too large Load Diff

View File

@ -40,7 +40,7 @@
}, },
"resources": { "resources": {
"cpu": "Procesor", "cpu": "Procesor",
"mem": "PAM", "mem": "RAM",
"total": "Całkowite", "total": "Całkowite",
"free": "Wolne", "free": "Wolne",
"used": "Użyte", "used": "Użyte",
@ -53,9 +53,9 @@
"users": "Użytkownicy", "users": "Użytkownicy",
"uptime": "Czas działania", "uptime": "Czas działania",
"days": "Dni", "days": "Dni",
"wan": "Sieć WAN", "wan": "WAN",
"lan": "Sieć LAN", "lan": "LAN",
"wlan": "Sieć WLAN", "wlan": "WLAN",
"devices": "Urządzenia", "devices": "Urządzenia",
"lan_devices": "Urządzenia LAN", "lan_devices": "Urządzenia LAN",
"wlan_devices": "Urządzenia WLAN", "wlan_devices": "Urządzenia WLAN",
@ -64,23 +64,23 @@
"up": "CZAS", "up": "CZAS",
"down": "Pobieranie", "down": "Pobieranie",
"wait": "Proszę czekać", "wait": "Proszę czekać",
"empty_data": "Nieznany stan" "empty_data": "Status podsystemu nieznany"
}, },
"docker": { "docker": {
"rx": "Rx", "rx": "Rx",
"tx": "Tx", "tx": "Tx",
"mem": "PAM", "mem": "RAM",
"cpu": "Procesor", "cpu": "Procesor",
"running": "Działa", "running": "Działa",
"offline": "Nieosiągalny", "offline": "Nieosiągalny",
"error": "Błąd", "error": "Błąd",
"unknown": "Nieznany", "unknown": "Nieznany",
"healthy": "Zdrowy", "healthy": "Zdrowy",
"starting": "Rozpoczynanie", "starting": "Uruchamianie",
"unhealthy": "Niezdrowe", "unhealthy": "Niezdrowy",
"not_found": "Nie znaleziono", "not_found": "Nie znaleziono",
"exited": "Zakończone", "exited": "Zakończony",
"partial": "Częściowe" "partial": "Częściowy"
}, },
"ping": { "ping": {
"error": "Błąd", "error": "Błąd",
@ -137,18 +137,18 @@
"connectionStatusUnconfigured": "Nieskonfigurowane", "connectionStatusUnconfigured": "Nieskonfigurowane",
"connectionStatusConnecting": "Łączenie", "connectionStatusConnecting": "Łączenie",
"connectionStatusAuthenticating": "Uwierzytelnianie", "connectionStatusAuthenticating": "Uwierzytelnianie",
"connectionStatusPendingDisconnect": "Pending Disconnect", "connectionStatusPendingDisconnect": "Oczekujące rozłączenie",
"connectionStatusDisconnecting": "Rozłączanie", "connectionStatusDisconnecting": "Rozłączanie",
"connectionStatusDisconnected": "Rozłączono", "connectionStatusDisconnected": "Rozłączono",
"connectionStatusConnected": "Połączony", "connectionStatusConnected": "Connected",
"uptime": "Czas działania", "uptime": "Czas działania",
"maxDown": "Max. Down", "maxDown": "Maks. Pobieranie",
"maxUp": "Max. Up", "maxUp": "Maks. Wysyłanie",
"down": "Niedostępny", "down": "Niedostępny",
"up": "Dostępny", "up": "Dostępny",
"received": "Odebrane", "received": "Odebrane",
"sent": "Wysłane", "sent": "Wysłane",
"externalIPAddress": "Ext. IP" "externalIPAddress": "Pub. IP"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@ -156,12 +156,12 @@
"requests_failed": "Nieudane zapytania" "requests_failed": "Nieudane zapytania"
}, },
"changedetectionio": { "changedetectionio": {
"totalObserved": "Obserwowanych ogółem", "totalObserved": "Łącznie obserwowanych",
"diffsDetected": "Wykryto różnic" "diffsDetected": "Wykrytych różnic"
}, },
"channelsdvrserver": { "channelsdvrserver": {
"shows": "Seriale", "shows": "Seriale",
"recordings": "Nagrywanie", "recordings": "Nagrania",
"scheduled": "W kolejce", "scheduled": "W kolejce",
"passes": "Przebiegi" "passes": "Przebiegi"
}, },
@ -277,11 +277,11 @@
"approved": "Zaakceptowane", "approved": "Zaakceptowane",
"available": "Dostępne" "available": "Dostępne"
}, },
"pialert": { "netalertx": {
"total": "Całkowite", "total": "Całkowite",
"connected": "Połączony", "connected": "Connected",
"new_devices": "Nowe urządzenia", "new_devices": "New Devices",
"down_alerts": "Powiadomienia o niedostępności" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "Zapytania", "queries": "Zapytania",
@ -395,7 +395,7 @@
"failedLoginsLast24H": "Nieudane logowania (24h)" "failedLoginsLast24H": "Nieudane logowania (24h)"
}, },
"proxmox": { "proxmox": {
"mem": "PAM", "mem": "RAM",
"cpu": "Procesor", "cpu": "Procesor",
"lxc": "Kontenery LXC", "lxc": "Kontenery LXC",
"vms": "Maszyn wirtualnych" "vms": "Maszyn wirtualnych"
@ -413,7 +413,7 @@
"used": "Użyte", "used": "Użyte",
"days": "d", "days": "d",
"hours": "g", "hours": "g",
"crit": "Crit", "crit": "Krytyczyny",
"read": "Przeczytane", "read": "Przeczytane",
"write": "Zapis", "write": "Zapis",
"gpu": "Karta graficzna", "gpu": "Karta graficzna",
@ -492,7 +492,7 @@
"updates": "Aktualizacje", "updates": "Aktualizacje",
"update_available": "Dostępna aktualizacja", "update_available": "Dostępna aktualizacja",
"up_to_date": "Aktualny", "up_to_date": "Aktualny",
"child_bridges": "Child Bridges", "child_bridges": "Mostki podrzędne",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Dostępny", "up": "Dostępny",
"pending": "Oczekiwane", "pending": "Oczekiwane",
@ -501,12 +501,12 @@
"healthchecks": { "healthchecks": {
"new": "Nowy", "new": "Nowy",
"up": "Dostępny", "up": "Dostępny",
"grace": "In Grace Period", "grace": "W okresie karencji",
"down": "Niedostępny", "down": "Niedostępny",
"paused": "Zatrzymane", "paused": "Zatrzymane",
"status": "Stan", "status": "Stan",
"last_ping": "Ostatni ping", "last_ping": "Ostatni ping",
"never": "No pings yet" "never": "Brak pingów"
}, },
"watchtower": { "watchtower": {
"containers_scanned": "Zeskanowane", "containers_scanned": "Zeskanowane",
@ -544,7 +544,7 @@
"hdhomerun": { "hdhomerun": {
"channels": "Kanały", "channels": "Kanały",
"hd": "HD", "hd": "HD",
"tunerCount": "Tuners", "tunerCount": "Tunery",
"channelNumber": "Kanał", "channelNumber": "Kanał",
"channelNetwork": "Sieć", "channelNetwork": "Sieć",
"signalStrength": "Siła", "signalStrength": "Siła",
@ -563,7 +563,7 @@
"total": "Całkowite" "total": "Całkowite"
}, },
"peanut": { "peanut": {
"battery_charge": "Battery Charge", "battery_charge": "Stan baterii",
"ups_load": "Obciążenie UPS", "ups_load": "Obciążenie UPS",
"ups_status": "Status UPS", "ups_status": "Status UPS",
"online": "Dostępny", "online": "Dostępny",
@ -576,7 +576,7 @@
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "Obciążenie procesora", "cpuLoad": "Obciążenie procesora",
"memoryUsed": "Zuyżyta pamięć", "memoryUsed": "Zużyta pamięć",
"uptime": "Czas działania", "uptime": "Czas działania",
"numberOfLeases": "Dzierżawy" "numberOfLeases": "Dzierżawy"
}, },
@ -587,8 +587,8 @@
}, },
"opendtu": { "opendtu": {
"yieldDay": "Dzisiaj", "yieldDay": "Dzisiaj",
"absolutePower": "Power", "absolutePower": "Zasilanie",
"relativePower": "Power %", "relativePower": "Moc %",
"limit": "Limit" "limit": "Limit"
}, },
"opnsense": { "opnsense": {
@ -605,16 +605,16 @@
}, },
"octoprint": { "octoprint": {
"printer_state": "Stan", "printer_state": "Stan",
"temp_tool": "Tool temp", "temp_tool": "Temperatura narzędzia",
"temp_bed": "Bed temp", "temp_bed": "Temp. łóżka",
"job_completion": "Ukończono" "job_completion": "Ukończono"
}, },
"cloudflared": { "cloudflared": {
"origin_ip": "Origin IP", "origin_ip": "IP Źródła",
"status": "Stan" "status": "Stan"
}, },
"pfsense": { "pfsense": {
"load": "Load Avg", "load": "Śr. Obciążenie",
"memory": "Użycie pamięci", "memory": "Użycie pamięci",
"wanStatus": "Status WAN", "wanStatus": "Status WAN",
"up": "Dostępny", "up": "Dostępny",
@ -624,8 +624,8 @@
"wanIP": "WAN IP" "wanIP": "WAN IP"
}, },
"proxmoxbackupserver": { "proxmoxbackupserver": {
"datastore_usage": "Datastore", "datastore_usage": "Magazyn danych",
"failed_tasks_24h": "Failed Tasks 24h", "failed_tasks_24h": "Nieudane zadania 24h",
"cpu_usage": "Procesor", "cpu_usage": "Procesor",
"memory_usage": "Pamięć" "memory_usage": "Pamięć"
}, },
@ -679,7 +679,7 @@
"dashboards": "Panel główny", "dashboards": "Panel główny",
"datasources": "Źródła danych", "datasources": "Źródła danych",
"totalalerts": "Wszystkie alerty", "totalalerts": "Wszystkie alerty",
"alertstriggered": "Alerts Triggered" "alertstriggered": "Wywołane alerty"
}, },
"nextcloud": { "nextcloud": {
"cpuload": "Obciążenie CPU", "cpuload": "Obciążenie CPU",
@ -687,7 +687,7 @@
"freespace": "Wolna przestrzeń", "freespace": "Wolna przestrzeń",
"activeusers": "Aktywni użytkownicy", "activeusers": "Aktywni użytkownicy",
"numfiles": "Pliki", "numfiles": "Pliki",
"numshares": "Shared Items" "numshares": "Udostępnione elementy"
}, },
"kopia": { "kopia": {
"status": "Stan", "status": "Stan",
@ -698,7 +698,7 @@
}, },
"unmanic": { "unmanic": {
"active_workers": "Aktywni pracownicy", "active_workers": "Aktywni pracownicy",
"total_workers": "Total Workers", "total_workers": "Wszyscy pracownicy",
"records_total": "Długość kolejki" "records_total": "Długość kolejki"
}, },
"pterodactyl": { "pterodactyl": {
@ -706,9 +706,9 @@
"nodes": "Węzły" "nodes": "Węzły"
}, },
"prometheus": { "prometheus": {
"targets_up": "Targets Up", "targets_up": "Cele włączone",
"targets_down": "Targets Down", "targets_down": "Cele wyłączone",
"targets_total": "Total Targets" "targets_total": "Wszystkich Celi"
}, },
"gatus": { "gatus": {
"up": "Działające", "up": "Działające",
@ -727,9 +727,9 @@
"booksDuration": "Czas trwania" "booksDuration": "Czas trwania"
}, },
"homeassistant": { "homeassistant": {
"people_home": "People Home", "people_home": "Dom ludzi",
"lights_on": "Lights On", "lights_on": "Światła włączone",
"switches_on": "Switches On" "switches_on": "Przełączniki włączone"
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Monitoring", "monitoring": "Monitoring",
@ -756,12 +756,12 @@
"status": "Stan", "status": "Stan",
"buildId": "ID kompilacji", "buildId": "ID kompilacji",
"succeeded": "Ukończono", "succeeded": "Ukończono",
"notStarted": "Not Started", "notStarted": "Nierozpoczęte",
"failed": "Niepowodzenie", "failed": "Niepowodzenie",
"canceled": "Anulowano", "canceled": "Anulowano",
"inProgress": "W trakcie", "inProgress": "W trakcie",
"totalPrs": "Total PRs", "totalPrs": "Łącznie PRs",
"myPrs": "My PRs", "myPrs": "Moje PRs",
"approved": "Zaakceptowane" "approved": "Zaakceptowane"
}, },
"gamedig": { "gamedig": {
@ -770,7 +770,7 @@
"offline": "Nieosiągalny", "offline": "Nieosiągalny",
"name": "Nazwa", "name": "Nazwa",
"map": "Mapa", "map": "Mapa",
"currentPlayers": "Current players", "currentPlayers": "Gracze online",
"players": "Gracze", "players": "Gracze",
"maxPlayers": "Maksymalna ilość graczy", "maxPlayers": "Maksymalna ilość graczy",
"bots": "Boty", "bots": "Boty",
@ -783,7 +783,7 @@
"totalUsed": "Użyta pamięć" "totalUsed": "Użyta pamięć"
}, },
"mealie": { "mealie": {
"recipes": "Recipes", "recipes": "Przepisy",
"users": "Użytkownicy", "users": "Użytkownicy",
"categories": "Kategorie", "categories": "Kategorie",
"tags": "Tagi" "tags": "Tagi"
@ -798,79 +798,83 @@
}, },
"openwrt": { "openwrt": {
"uptime": "Czas działania", "uptime": "Czas działania",
"cpuLoad": "CPU Load Avg (5m)", "cpuLoad": "Śr. obciążenie CPU (5m)",
"up": "Dostępny", "up": "Dostępny",
"down": "Niedostępny", "down": "Niedostępny",
"bytesTx": "Transmitted", "bytesTx": "Przesłane",
"bytesRx": "Odebrane" "bytesRx": "Odebrane"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Stan", "status": "Stan",
"uptime": "Czas działania", "uptime": "Czas działania",
"lastDown": "Last Downtime", "lastDown": "Ostatni downtime",
"downDuration": "Downtime Duration", "downDuration": "Długość downtime'u",
"sitesUp": "Działające", "sitesUp": "Działające",
"sitesDown": "Niedziałające", "sitesDown": "Niedziałające",
"paused": "Zatrzymane", "paused": "Zatrzymane",
"notyetchecked": "Not Yet Checked", "notyetchecked": "Nie sprawdzono",
"up": "Dostępny", "up": "Dostępny",
"seemsdown": "Seems Down", "seemsdown": "Możliwe, że wyłączony",
"down": "Niedostępny", "down": "Niedostępny",
"unknown": "Nieznany" "unknown": "Nieznany"
}, },
"calendar": { "calendar": {
"inCinemas": "W kinach", "inCinemas": "W kinach",
"physicalRelease": "Wydanie fizyczne", "physicalRelease": "Wydanie fizyczne",
"digitalRelease": "Digital release", "digitalRelease": "Wydanie cyfrowe",
"noEventsToday": "No events for today!", "noEventsToday": "Brak wydarzeń na dziś!",
"noEventsFound": "No events found" "noEventsFound": "Nie znaleziono wydarzeń"
}, },
"romm": { "romm": {
"platforms": "Platformy", "platforms": "Platformy",
"totalRoms": "Total ROMs" "totalRoms": "Łącznie ROM"
}, },
"netdata": { "netdata": {
"warnings": "Ostrzeżenia", "warnings": "Ostrzeżenia",
"criticals": "Criticals" "criticals": "Krytyczny"
}, },
"plantit": { "plantit": {
"events": "Events", "events": "Wydarzenia",
"plants": "Plants", "plants": "Rośliny",
"photos": "Zdjęcia", "photos": "Zdjęcia",
"species": "Species" "species": "Gatunki"
}, },
"gitea": { "gitea": {
"notifications": "Notifications", "notifications": "Powiadomienia",
"issues": "Zgłoszenia", "issues": "Zgłoszenia",
"pulls": "Pull Requests" "pulls": "Żądania Pull"
}, },
"stash": { "stash": {
"scenes": "Scenes", "scenes": "Sceny",
"scenesPlayed": "Scenes Played", "scenesPlayed": "Odgrane sceny",
"playCount": "Total Plays", "playCount": "Łącznie odtworzone",
"playDuration": "Time Watched", "playDuration": "Łączny czas oglądania",
"sceneSize": "Scenes Size", "sceneSize": "Rozmiar scen",
"sceneDuration": "Scenes Duration", "sceneDuration": "Czas trwania scen",
"images": "Images", "images": "Obrazy",
"imageSize": "Images Size", "imageSize": "Rozmiar obrazów",
"galleries": "Galleries", "galleries": "Galerie",
"performers": "Performers", "performers": "Artyści",
"studios": "Studios", "studios": "Studia",
"movies": "Filmy", "movies": "Filmy",
"tags": "Tagi", "tags": "Tagi",
"oCount": "O Count" "oCount": "O Licznik"
}, },
"tandoor": { "tandoor": {
"users": "Użytkownicy", "users": "Użytkownicy",
"recipes": "Recipes", "recipes": "Przepisy",
"keywords": "Keywords" "keywords": "Słowa kluczowe"
}, },
"homebox": { "homebox": {
"items": "Items", "items": "Elementy",
"totalWithWarranty": "With Warranty", "totalWithWarranty": "Z gwarancją",
"locations": "Locations", "locations": "Lokalizacje",
"labels": "Labels", "labels": "Etykiety",
"users": "Użytkownicy", "users": "Użytkownicy",
"totalValue": "Total Value" "totalValue": "Wartość całkowita"
},
"crowdsec": {
"alerts": "Alarmy",
"bans": "Bany"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Desconexão pendente", "connectionStatusPendingDisconnect": "Desconexão pendente",
"connectionStatusDisconnecting": "Desconectando", "connectionStatusDisconnecting": "Desconectando",
"connectionStatusDisconnected": "Desconectado", "connectionStatusDisconnected": "Desconectado",
"connectionStatusConnected": "Conectado", "connectionStatusConnected": "Connected",
"uptime": "Ligado", "uptime": "Ligado",
"maxDown": "Máx. de Descarga", "maxDown": "Máx. de Descarga",
"maxUp": "Max. de Envio", "maxUp": "Max. de Envio",
@ -277,11 +277,11 @@
"approved": "Aprovada", "approved": "Aprovada",
"available": "Disponível" "available": "Disponível"
}, },
"pialert": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Conectado", "connected": "Connected",
"new_devices": "Novos dispositivos", "new_devices": "New Devices",
"down_alerts": "Alertas de Baixo" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "Consultas", "queries": "Consultas",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Utilizadores", "users": "Utilizadores",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alertas",
"bans": "Bans"
} }
} }

View File

@ -14,7 +14,7 @@
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "M",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"minutes": "m", "minutes": "m",
@ -22,11 +22,11 @@
}, },
"widget": { "widget": {
"missing_type": "Tipo de Widget ausente: {{type}}", "missing_type": "Tipo de Widget ausente: {{type}}",
"api_error": "Erro da API", "api_error": "Erros de API",
"information": "Informação", "information": "Informação",
"status": "Estado", "status": "Estado",
"url": "Endereço URL", "url": "Endereço URL",
"raw_error": "Erro", "raw_error": "Erro Raw",
"response_data": "Dados da Resposta" "response_data": "Dados da Resposta"
}, },
"weather": { "weather": {
@ -85,23 +85,23 @@
"ping": { "ping": {
"error": "Erro", "error": "Erro",
"ping": "Tempo de resposta", "ping": "Tempo de resposta",
"down": "Down", "down": "Inativo",
"up": "Up", "up": "Ativo",
"not_available": "Not Available" "not_available": "Não Disponível"
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "HTTP status", "http_status": "Estado HTTP",
"error": "Erro", "error": "Erro",
"response": "Response", "response": "Resposta",
"down": "Down", "down": "Inativo",
"up": "Up", "up": "Ativo",
"not_available": "Not Available" "not_available": "Não Disponível"
}, },
"emby": { "emby": {
"playing": "A reproduzir", "playing": "A reproduzir",
"transcoding": "Transcodificação", "transcoding": "Transcodificação",
"bitrate": "Taxa de bits", "bitrate": "Taxa de bits",
"no_active": "Sem streams ativas", "no_active": "Sem Streams Ativos",
"movies": "Filmes", "movies": "Filmes",
"series": "Séries", "series": "Séries",
"episodes": "Episódios", "episodes": "Episódios",
@ -110,7 +110,7 @@
"esphome": { "esphome": {
"offline": "Desligado", "offline": "Desligado",
"offline_alt": "Desligado", "offline_alt": "Desligado",
"online": "Online", "online": "Disponível",
"total": "Total", "total": "Total",
"unknown": "Desconhecido" "unknown": "Desconhecido"
}, },
@ -134,24 +134,24 @@
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Estado", "connectionStatus": "Estado",
"connectionStatusUnconfigured": "Unconfigured", "connectionStatusUnconfigured": "Não configurado",
"connectionStatusConnecting": "Connecting", "connectionStatusConnecting": "Conectando",
"connectionStatusAuthenticating": "Authenticating", "connectionStatusAuthenticating": "Autenticando",
"connectionStatusPendingDisconnect": "Pending Disconnect", "connectionStatusPendingDisconnect": "Desconexão Pendente",
"connectionStatusDisconnecting": "Disconnecting", "connectionStatusDisconnecting": "Desconectando",
"connectionStatusDisconnected": "Disconnected", "connectionStatusDisconnected": "Desconectado",
"connectionStatusConnected": "Connected", "connectionStatusConnected": "Conectado",
"uptime": "Ligado", "uptime": "Ligado",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
"down": "Down", "down": "Inativo",
"up": "Up", "up": "Ativo",
"received": "Received", "received": "Recebido",
"sent": "Sent", "sent": "Enviado",
"externalIPAddress": "Ext. IP" "externalIPAddress": "IP Externo"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Streams de Envio",
"requests": "Solicitações atuais", "requests": "Solicitações atuais",
"requests_failed": "Solicitações com falha" "requests_failed": "Solicitações com falha"
}, },
@ -160,24 +160,24 @@
"diffsDetected": "Diferenças Detetadas" "diffsDetected": "Diferenças Detetadas"
}, },
"channelsdvrserver": { "channelsdvrserver": {
"shows": "Shows", "shows": "Programas",
"recordings": "Gravações", "recordings": "Gravações",
"scheduled": "Scheduled", "scheduled": "Agendado",
"passes": "Passes" "passes": "Passes"
}, },
"tautulli": { "tautulli": {
"playing": "A reproduzir", "playing": "A reproduzir",
"transcoding": "Transcodificação", "transcoding": "Transcodificação",
"bitrate": "Taxa de bits", "bitrate": "Taxa de bits",
"no_active": "Sem streams ativas", "no_active": "Sem Streams Ativos",
"plex_connection_error": "Check Plex Connection" "plex_connection_error": "Verifique a conexão do Plex"
}, },
"omada": { "omada": {
"connectedAp": "APs Ligados", "connectedAp": "APs Ligados",
"activeUser": "Dispositivos activos", "activeUser": "Dispositivos ativos",
"alerts": "Alertas", "alerts": "Alertas",
"connectedGateway": "Gateways ligados", "connectedGateway": "Gateways conectados",
"connectedSwitches": "Switches ligados" "connectedSwitches": "Switches conectados"
}, },
"nzbget": { "nzbget": {
"rate": "Taxa", "rate": "Taxa",
@ -186,7 +186,7 @@
}, },
"plex": { "plex": {
"streams": "Streams Ativas", "streams": "Streams Ativas",
"albums": "Albums", "albums": "Álbuns",
"movies": "Filmes", "movies": "Filmes",
"tv": "Series de TV" "tv": "Series de TV"
}, },
@ -213,12 +213,12 @@
"seed": "Semente" "seed": "Semente"
}, },
"qnap": { "qnap": {
"cpuUsage": "CPU Usage", "cpuUsage": "Uso de CPU",
"memUsage": "MEM Usage", "memUsage": "Uso de Memória",
"systemTempC": "System Temp", "systemTempC": "Temp. do Sistema",
"poolUsage": "Pool Usage", "poolUsage": "Pool Usage",
"volumeUsage": "Volume Usage", "volumeUsage": "Uso do volume",
"invalid": "Invalid" "invalid": "Inválido"
}, },
"deluge": { "deluge": {
"download": "Descarregar", "download": "Descarregar",
@ -250,7 +250,7 @@
"lidarr": { "lidarr": {
"wanted": "Desejada", "wanted": "Desejada",
"queued": "Em fila", "queued": "Em fila",
"artists": "Artists" "artists": "Artistas"
}, },
"readarr": { "readarr": {
"wanted": "Desejada", "wanted": "Desejada",
@ -277,16 +277,16 @@
"approved": "Aprovada", "approved": "Aprovada",
"available": "Disponível" "available": "Disponível"
}, },
"pialert": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Connected", "connected": "Conectado",
"new_devices": "New Devices", "new_devices": "Novos dispositivos",
"down_alerts": "Down Alerts" "down_alerts": "Alertas de Inatividade"
}, },
"pihole": { "pihole": {
"queries": "Consultas", "queries": "Consultas",
"blocked": "Bloqueado", "blocked": "Bloqueado",
"blocked_percent": "Blocked %", "blocked_percent": "Bloqueado %",
"gravity": "Gravidade" "gravity": "Gravidade"
}, },
"adguard": { "adguard": {
@ -306,11 +306,11 @@
"total": "Total" "total": "Total"
}, },
"tailscale": { "tailscale": {
"address": "Address", "address": "Endereço",
"expires": "Expires", "expires": "Expira em",
"never": "Never", "never": "Nunca",
"last_seen": "Last Seen", "last_seen": "Visto por último",
"now": "Now", "now": "Agora",
"years": "{{number}}y", "years": "{{number}}y",
"weeks": "{{number}}w", "weeks": "{{number}}w",
"days": "{{number}}d", "days": "{{number}}d",
@ -331,8 +331,8 @@
"middleware": "Middleware" "middleware": "Middleware"
}, },
"navidrome": { "navidrome": {
"nothing_streaming": "Sem streams ativas", "nothing_streaming": "Sem Streams Ativos",
"please_wait": "Por favor aguarde" "please_wait": "Por favor, aguarde"
}, },
"npm": { "npm": {
"enabled": "Ativo", "enabled": "Ativo",
@ -382,7 +382,7 @@
"players": "Reprodutores", "players": "Reprodutores",
"version": "Versão", "version": "Versão",
"status": "Estado", "status": "Estado",
"up": "Online", "up": "Disponível",
"down": "Desligado" "down": "Desligado"
}, },
"miniflux": { "miniflux": {
@ -405,20 +405,20 @@
"load": "Carga", "load": "Carga",
"wait": "Por favor aguarde", "wait": "Por favor aguarde",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temp", "_temp": "Temperatura",
"warn": "Warn", "warn": "Aviso",
"uptime": "CIMA", "uptime": "CIMA",
"total": "Total", "total": "Total",
"free": "Livre", "free": "Livre",
"used": "Utilizado", "used": "Utilizado",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Crit", "crit": "Crítico",
"read": "Lido", "read": "Lido",
"write": "Write", "write": "Escrita",
"gpu": "GPU", "gpu": "GPU",
"mem": "Mem", "mem": "Memória",
"swap": "Swap" "swap": "Temporário"
}, },
"quicklaunch": { "quicklaunch": {
"bookmark": "Marcador", "bookmark": "Marcador",
@ -427,7 +427,7 @@
"custom": "Personalizado", "custom": "Personalizado",
"visit": "Visitar", "visit": "Visitar",
"url": "Endereço URL", "url": "Endereço URL",
"searchsuggestion": "Suggestion" "searchsuggestion": "Sugestão"
}, },
"wmo": { "wmo": {
"0-day": "Solarengo", "0-day": "Solarengo",
@ -494,15 +494,15 @@
"up_to_date": "Atualizado", "up_to_date": "Atualizado",
"child_bridges": "Pontes Filhas", "child_bridges": "Pontes Filhas",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Ativo",
"pending": "Pendente", "pending": "Pendente",
"down": "Down" "down": "Inativo"
}, },
"healthchecks": { "healthchecks": {
"new": "Novo", "new": "Novo",
"up": "Up", "up": "Ativo",
"grace": "Em Período Gratuito", "grace": "Em Período Gratuito",
"down": "Down", "down": "Inativo",
"paused": "Pausado", "paused": "Pausado",
"status": "Estado", "status": "Estado",
"last_ping": "Ultimo Ping", "last_ping": "Ultimo Ping",
@ -544,14 +544,14 @@
"hdhomerun": { "hdhomerun": {
"channels": "Canais", "channels": "Canais",
"hd": "HD", "hd": "HD",
"tunerCount": "Tuners", "tunerCount": "Sintonizadores",
"channelNumber": "Channel", "channelNumber": "Canal",
"channelNetwork": "Network", "channelNetwork": "Rede",
"signalStrength": "Strength", "signalStrength": "Potência",
"signalQuality": "Quality", "signalQuality": "Qualidade",
"symbolQuality": "Quality", "symbolQuality": "Qualidade",
"networkRate": "Taxa de bits", "networkRate": "Taxa de bits",
"clientIP": "Client" "clientIP": "Cliente"
}, },
"scrutiny": { "scrutiny": {
"passed": "Aprovado", "passed": "Aprovado",
@ -563,15 +563,15 @@
"total": "Total" "total": "Total"
}, },
"peanut": { "peanut": {
"battery_charge": "Battery Charge", "battery_charge": "Carga da bateria",
"ups_load": "UPS Load", "ups_load": "Carga do UPS",
"ups_status": "UPS Status", "ups_status": "Estado UPS",
"online": "Online", "online": "Disponível",
"on_battery": "On Battery", "on_battery": "Na bateria",
"low_battery": "Low Battery" "low_battery": "Bateria Fraca"
}, },
"nextdns": { "nextdns": {
"wait": "Por favor aguarde", "wait": "Por favor, aguarde",
"no_devices": "Nenhum dado do dispositivo recebido" "no_devices": "Nenhum dado do dispositivo recebido"
}, },
"mikrotik": { "mikrotik": {
@ -586,10 +586,10 @@
"streams_xepg": "Canais XEPG" "streams_xepg": "Canais XEPG"
}, },
"opendtu": { "opendtu": {
"yieldDay": "Today", "yieldDay": "Hoje",
"absolutePower": "Power", "absolutePower": "Energia",
"relativePower": "Power %", "relativePower": "Energia %",
"limit": "Limit" "limit": "Limite"
}, },
"opnsense": { "opnsense": {
"cpu": "Carga do CPU", "cpu": "Carga do CPU",
@ -614,14 +614,14 @@
"status": "Estado" "status": "Estado"
}, },
"pfsense": { "pfsense": {
"load": "Load Avg", "load": "Carga Média",
"memory": "Mem Usage", "memory": "Uso de memória",
"wanStatus": "WAN Status", "wanStatus": "Estado WAN",
"up": "Up", "up": "Ativo",
"down": "Down", "down": "Inativo",
"temp": "Temp", "temp": "Temperatura",
"disk": "Disk Usage", "disk": "Uso do disco",
"wanIP": "WAN IP" "wanIP": "IP WAN"
}, },
"proxmoxbackupserver": { "proxmoxbackupserver": {
"datastore_usage": "Armaz. de Dados", "datastore_usage": "Armaz. de Dados",
@ -644,9 +644,9 @@
}, },
"atsumeru": { "atsumeru": {
"series": "Séries", "series": "Séries",
"archives": "Archives", "archives": "Arquivos",
"chapters": "Chapters", "chapters": "Capítulos",
"categories": "Categories" "categories": "Categorias"
}, },
"komga": { "komga": {
"libraries": "Bibliotecas", "libraries": "Bibliotecas",
@ -664,7 +664,7 @@
"wanted": "Desejada" "wanted": "Desejada"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Álbuns",
"photos": "Fotos", "photos": "Fotos",
"videos": "Vídeos", "videos": "Vídeos",
"people": "Pessoa" "people": "Pessoa"
@ -686,8 +686,8 @@
"memoryusage": "Memória Utilizada", "memoryusage": "Memória Utilizada",
"freespace": "Espaço Livre", "freespace": "Espaço Livre",
"activeusers": "Utilizadores Ativos", "activeusers": "Utilizadores Ativos",
"numfiles": "Files", "numfiles": "Arquivos",
"numshares": "Shared Items" "numshares": "Itens compartilhados"
}, },
"kopia": { "kopia": {
"status": "Estado", "status": "Estado",
@ -698,7 +698,7 @@
}, },
"unmanic": { "unmanic": {
"active_workers": "Workers Ativos", "active_workers": "Workers Ativos",
"total_workers": "Total Workers", "total_workers": "Total de trabalhadores",
"records_total": "Comprimento da Fila" "records_total": "Comprimento da Fila"
}, },
"pterodactyl": { "pterodactyl": {
@ -716,7 +716,7 @@
"uptime": "Ligado" "uptime": "Ligado"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Today", "gross_percent_today": "Hoje",
"gross_percent_1y": "Um ano", "gross_percent_1y": "Um ano",
"gross_percent_max": "Todo o tempo" "gross_percent_max": "Todo o tempo"
}, },
@ -732,13 +732,13 @@
"switches_on": "Interruptores Ligados" "switches_on": "Interruptores Ligados"
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Monitoring", "monitoring": "Monitorando",
"updates": "Atualizações" "updates": "Atualizações"
}, },
"calibreweb": { "calibreweb": {
"books": "Livros", "books": "Livros",
"authors": "Authors", "authors": "Autores",
"categories": "Categories", "categories": "Categorias",
"series": "Séries" "series": "Séries"
}, },
"jdownloader": { "jdownloader": {
@ -749,47 +749,47 @@
}, },
"kavita": { "kavita": {
"seriesCount": "Séries", "seriesCount": "Séries",
"totalFiles": "Files" "totalFiles": "Arquivos"
}, },
"azuredevops": { "azuredevops": {
"result": "Result", "result": "Resultado",
"status": "Estado", "status": "Estado",
"buildId": "Build ID", "buildId": "ID Compilação",
"succeeded": "Succeeded", "succeeded": "Bem-sucedido",
"notStarted": "Not Started", "notStarted": "Não iniciado",
"failed": "Falhou", "failed": "Falhou",
"canceled": "Canceled", "canceled": "Cancelado",
"inProgress": "In Progress", "inProgress": "Em Progresso",
"totalPrs": "Total PRs", "totalPrs": "Total de PRs",
"myPrs": "My PRs", "myPrs": "Minhas PRs",
"approved": "Aprovada" "approved": "Aprovada"
}, },
"gamedig": { "gamedig": {
"status": "Estado", "status": "Estado",
"online": "Online", "online": "Disponível",
"offline": "Desligado", "offline": "Desligado",
"name": "Name", "name": "Nome",
"map": "Map", "map": "Mapa",
"currentPlayers": "Current players", "currentPlayers": "Jogadores atuais",
"players": "Reprodutores", "players": "Reprodutores",
"maxPlayers": "Max players", "maxPlayers": "Número Máximo de Jogadores",
"bots": "Bots", "bots": "Robôs",
"ping": "Tempo de resposta" "ping": "Tempo de resposta"
}, },
"urbackup": { "urbackup": {
"ok": "Ok", "ok": "Ok",
"errored": "Errors", "errored": "Erros",
"noRecent": "Out of Date", "noRecent": "Desatualizado",
"totalUsed": "Used Storage" "totalUsed": "Armazanamento Utilizado"
}, },
"mealie": { "mealie": {
"recipes": "Recipes", "recipes": "Receitas",
"users": "Utilizadores", "users": "Utilizadores",
"categories": "Categories", "categories": "Categorias",
"tags": "Tags" "tags": "Marcadores"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Downloading", "downloading": "Baixando",
"total": "Total", "total": "Total",
"running": "A correr", "running": "A correr",
"stopped": "Parado", "stopped": "Parado",
@ -798,79 +798,83 @@
}, },
"openwrt": { "openwrt": {
"uptime": "Ligado", "uptime": "Ligado",
"cpuLoad": "CPU Load Avg (5m)", "cpuLoad": "Carga da CPU média (5m)",
"up": "Up", "up": "Ativo",
"down": "Down", "down": "Inativo",
"bytesTx": "Transmitted", "bytesTx": "Transmitido",
"bytesRx": "Received" "bytesRx": "Recebido"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Estado", "status": "Estado",
"uptime": "Ligado", "uptime": "Ligado",
"lastDown": "Last Downtime", "lastDown": "Última inatividade",
"downDuration": "Downtime Duration", "downDuration": "Duração de inatividade",
"sitesUp": "Sites no Ar", "sitesUp": "Sites no Ar",
"sitesDown": "Sites Fora do Ar", "sitesDown": "Sites Fora do Ar",
"paused": "Pausado", "paused": "Pausado",
"notyetchecked": "Not Yet Checked", "notyetchecked": "Não conferidos ainda",
"up": "Up", "up": "Ativo",
"seemsdown": "Seems Down", "seemsdown": "Parece Desconectado",
"down": "Down", "down": "Inativo",
"unknown": "Desconhecido" "unknown": "Desconhecido"
}, },
"calendar": { "calendar": {
"inCinemas": "In cinemas", "inCinemas": "Nos cinemas",
"physicalRelease": "Physical release", "physicalRelease": "Versão física",
"digitalRelease": "Digital release", "digitalRelease": "Versão digital",
"noEventsToday": "No events for today!", "noEventsToday": "Nenhum evento para hoje!",
"noEventsFound": "No events found" "noEventsFound": "Nenhum evento encontrado"
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Plataformas",
"totalRoms": "Total ROMs" "totalRoms": "Total de ROMs"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Alertas",
"criticals": "Criticals" "criticals": "Críticos"
}, },
"plantit": { "plantit": {
"events": "Events", "events": "Eventos",
"plants": "Plants", "plants": "Plantas",
"photos": "Fotos", "photos": "Fotos",
"species": "Species" "species": "Espécies"
}, },
"gitea": { "gitea": {
"notifications": "Notifications", "notifications": "Notificações",
"issues": "Problemas", "issues": "Problemas",
"pulls": "Pull Requests" "pulls": "Solicitações de Envio"
}, },
"stash": { "stash": {
"scenes": "Scenes", "scenes": "Cenas",
"scenesPlayed": "Scenes Played", "scenesPlayed": "Cenas Reproduzidas",
"playCount": "Total Plays", "playCount": "Total de Reproduções",
"playDuration": "Time Watched", "playDuration": "Tempo Assistido",
"sceneSize": "Scenes Size", "sceneSize": "Tamanho das cenas",
"sceneDuration": "Scenes Duration", "sceneDuration": "Duração das cenas",
"images": "Images", "images": "Imagens",
"imageSize": "Images Size", "imageSize": "Tamanho da Imagem",
"galleries": "Galleries", "galleries": "Galerias",
"performers": "Performers", "performers": "Atores",
"studios": "Studios", "studios": "Estúdios",
"movies": "Filmes", "movies": "Filmes",
"tags": "Tags", "tags": "Marcadores",
"oCount": "O Count" "oCount": "Contagem 0"
}, },
"tandoor": { "tandoor": {
"users": "Utilizadores", "users": "Utilizadores",
"recipes": "Recipes", "recipes": "Receitas",
"keywords": "Keywords" "keywords": "Palavras-chave"
}, },
"homebox": { "homebox": {
"items": "Items", "items": "Itens",
"totalWithWarranty": "With Warranty", "totalWithWarranty": "Com Garantia",
"locations": "Locations", "locations": "Localização",
"labels": "Labels", "labels": "Rótulos",
"users": "Utilizadores", "users": "Utilizadores",
"totalValue": "Total Value" "totalValue": "Valor Total"
},
"crowdsec": {
"alerts": "Alertas",
"bans": "Banimentos"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "Aprobate", "approved": "Aprobate",
"available": "Disponibile" "available": "Disponibile"
}, },
"pialert": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Utilizatori", "users": "Utilizatori",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"bans": "Bans"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Ожидает отключения", "connectionStatusPendingDisconnect": "Ожидает отключения",
"connectionStatusDisconnecting": "Отключение", "connectionStatusDisconnecting": "Отключение",
"connectionStatusDisconnected": "Отключено", "connectionStatusDisconnected": "Отключено",
"connectionStatusConnected": "Подключено", "connectionStatusConnected": "Connected",
"uptime": "Время работы", "uptime": "Время работы",
"maxDown": "Макс. Загрузка", "maxDown": "Макс. Загрузка",
"maxUp": "Макс. Отдача", "maxUp": "Макс. Отдача",
@ -277,11 +277,11 @@
"approved": "Одобрено", "approved": "Одобрено",
"available": "Доступно" "available": "Доступно"
}, },
"pialert": { "netalertx": {
"total": "Всего", "total": "Всего",
"connected": "Подключено", "connected": "Connected",
"new_devices": "Новые устройства", "new_devices": "New Devices",
"down_alerts": "Оповещение о недоступности" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "Запросы", "queries": "Запросы",
@ -872,5 +872,9 @@
"labels": "Ярлыки", "labels": "Ярлыки",
"users": "Пользователи", "users": "Пользователи",
"totalValue": "Общая стоимость" "totalValue": "Общая стоимость"
},
"crowdsec": {
"alerts": "Предупреждения",
"bans": "Bans"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Čakám na odpojenie", "connectionStatusPendingDisconnect": "Čakám na odpojenie",
"connectionStatusDisconnecting": "Odpájanie", "connectionStatusDisconnecting": "Odpájanie",
"connectionStatusDisconnected": "Odpojené", "connectionStatusDisconnected": "Odpojené",
"connectionStatusConnected": "Pripojené", "connectionStatusConnected": "Connected",
"uptime": "Prevádzka", "uptime": "Prevádzka",
"maxDown": "Max. sťahovanie", "maxDown": "Max. sťahovanie",
"maxUp": "Max. nahrávanie", "maxUp": "Max. nahrávanie",
@ -277,11 +277,11 @@
"approved": "Schválené", "approved": "Schválené",
"available": "Dostupné" "available": "Dostupné"
}, },
"pialert": { "netalertx": {
"total": "Celkovo", "total": "Celkovo",
"connected": "Pripojené", "connected": "Connected",
"new_devices": "Nové zariadenia", "new_devices": "New Devices",
"down_alerts": "Upozornenia o výpadkoch" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "Dopyty", "queries": "Dopyty",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Používatelia", "users": "Používatelia",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Upozornenia",
"bans": "Bans"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Čakanje na prekinitev", "connectionStatusPendingDisconnect": "Čakanje na prekinitev",
"connectionStatusDisconnecting": "Prekinitev", "connectionStatusDisconnecting": "Prekinitev",
"connectionStatusDisconnected": "Prekinjeno", "connectionStatusDisconnected": "Prekinjeno",
"connectionStatusConnected": "Povezanih", "connectionStatusConnected": "Povezan",
"uptime": "Čas delovanja", "uptime": "Čas delovanja",
"maxDown": "Maks. dol", "maxDown": "Maks. dol",
"maxUp": "Maks. gor", "maxUp": "Maks. gor",
@ -277,11 +277,11 @@
"approved": "Odobreno", "approved": "Odobreno",
"available": "Na voljo" "available": "Na voljo"
}, },
"pialert": { "netalertx": {
"total": "Skupaj", "total": "Skupaj",
"connected": "Povezanih", "connected": "Povezan",
"new_devices": "Nove naprave", "new_devices": "Nova naprave",
"down_alerts": "Izključeno" "down_alerts": "Alarmi nedelovanja"
}, },
"pihole": { "pihole": {
"queries": "Poizvedbe", "queries": "Poizvedbe",
@ -872,5 +872,9 @@
"labels": "Oznake", "labels": "Oznake",
"users": "Uporabniki", "users": "Uporabniki",
"totalValue": "Skupna vrednost" "totalValue": "Skupna vrednost"
},
"crowdsec": {
"alerts": "Opozorila",
"bans": "Prepovedi"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "Approved", "approved": "Approved",
"available": "Available" "available": "Available"
}, },
"pialert": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "Users",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"bans": "Bans"
} }
} }

View File

@ -104,7 +104,7 @@
"no_active": "Inga aktiva strömmar", "no_active": "Inga aktiva strömmar",
"movies": "Movies", "movies": "Movies",
"series": "Series", "series": "Series",
"episodes": "Episodes", "episodes": "Avsnitt",
"songs": "Songs" "songs": "Songs"
}, },
"esphome": { "esphome": {
@ -277,7 +277,7 @@
"approved": "Godkända", "approved": "Godkända",
"available": "Tillgänglig" "available": "Tillgänglig"
}, },
"pialert": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -423,7 +423,7 @@
"quicklaunch": { "quicklaunch": {
"bookmark": "Bookmark", "bookmark": "Bookmark",
"service": "Service", "service": "Service",
"search": "Search", "search": "Sök",
"custom": "Custom", "custom": "Custom",
"visit": "Visit", "visit": "Visit",
"url": "URL", "url": "URL",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Användare", "users": "Användare",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"bans": "Bans"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "ఆమోదించబడింది", "approved": "ఆమోదించబడింది",
"available": "అందుబాటులో వున్నవి" "available": "అందుబాటులో వున్నవి"
}, },
"pialert": { "netalertx": {
"total": "మొత్తం", "total": "మొత్తం",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "వినియోగదారులు", "users": "వినియోగదారులు",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"bans": "Bans"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "Approved", "approved": "Approved",
"available": "Available" "available": "Available"
}, },
"pialert": { "netalertx": {
"total": "ทั้งหมด", "total": "ทั้งหมด",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "ผู้ใช้", "users": "ผู้ใช้",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"bans": "Bans"
} }
} }

View File

@ -21,7 +21,7 @@
"seconds": "s" "seconds": "s"
}, },
"widget": { "widget": {
"missing_type": "Kayıp Araç Türü: {{type}}", "missing_type": "Eksik Araç Türü: {{type}}",
"api_error": "API Hatası", "api_error": "API Hatası",
"information": "Bilgi", "information": "Bilgi",
"status": "Durum", "status": "Durum",
@ -42,12 +42,12 @@
"cpu": "CPU", "cpu": "CPU",
"mem": "MEM", "mem": "MEM",
"total": "Toplam", "total": "Toplam",
"free": "Boşta", "free": "Boş",
"used": "Kullanımda", "used": "Kullanımda",
"load": "Yük", "load": "Yük",
"temp": "Geçici", "temp": "Sıcaklık",
"max": "En Yüksek", "max": "En Yüksek",
"uptime": "Çalışma Süresi" "uptime": "Çalışıyor"
}, },
"unifi": { "unifi": {
"users": "Kullanıcılar", "users": "Kullanıcılar",
@ -61,7 +61,7 @@
"wlan_devices": "WLAN Aygıtları", "wlan_devices": "WLAN Aygıtları",
"lan_users": "LAN Kullanıcıları", "lan_users": "LAN Kullanıcıları",
"wlan_users": "WLAN Kullanıcıları", "wlan_users": "WLAN Kullanıcıları",
"up": "Çalışma Süresi", "up": "Çalışıyor",
"down": "Aşağı", "down": "Aşağı",
"wait": "Lütfen bekleyin", "wait": "Lütfen bekleyin",
"empty_data": "Alt sistem durumu bilinmiyor" "empty_data": "Alt sistem durumu bilinmiyor"
@ -71,15 +71,15 @@
"tx": "Giden Veri", "tx": "Giden Veri",
"mem": "MEM", "mem": "MEM",
"cpu": "CPU", "cpu": "CPU",
"running": "Çalışan", "running": "Çalışıyor",
"offline": "Çevrimdışı", "offline": "Çevrimdışı",
"error": "Hata", "error": "Hata",
"unknown": "Bilinmiyor", "unknown": "Bilinmiyor",
"healthy": "Sağlık", "healthy": "Sağlıklı",
"starting": "Başlatılıyor", "starting": "Başlatılıyor",
"unhealthy": "Sağlıksız", "unhealthy": "Sağlıksız",
"not_found": "Bulunamadı", "not_found": "Bulunamadı",
"exited": "Durduruldu", "exited": "Kapandı",
"partial": "Parçalı" "partial": "Parçalı"
}, },
"ping": { "ping": {
@ -123,8 +123,8 @@
"watt_hour": "Watt/Saat" "watt_hour": "Watt/Saat"
}, },
"flood": { "flood": {
"download": "İndir", "download": "İndirme",
"upload": "Yükle", "upload": "Yükleme",
"leech": "Tüketici", "leech": "Tüketici",
"seed": "Sağlayıcı" "seed": "Sağlayıcı"
}, },
@ -197,18 +197,18 @@
}, },
"rutorrent": { "rutorrent": {
"active": "Aktif", "active": "Aktif",
"upload": "Yükle", "upload": "Yükleme",
"download": "İndir" "download": "İndirme"
}, },
"transmission": { "transmission": {
"download": "İndir", "download": "İndirme",
"upload": "Yükle", "upload": "Yükleme",
"leech": "Tüketici", "leech": "Tüketici",
"seed": "Sağlayıcı" "seed": "Sağlayıcı"
}, },
"qbittorrent": { "qbittorrent": {
"download": "İndir", "download": "İndirme",
"upload": "Yükle", "upload": "Yükleme",
"leech": "Tüketici", "leech": "Tüketici",
"seed": "Sağlayıcı" "seed": "Sağlayıcı"
}, },
@ -221,87 +221,87 @@
"invalid": "Geçersiz" "invalid": "Geçersiz"
}, },
"deluge": { "deluge": {
"download": "İndir", "download": "İndirme",
"upload": "Yükle", "upload": "Yükleme",
"leech": "Tüketici", "leech": "Tüketici",
"seed": "Sağlayıcı" "seed": "Sağlayıcı"
}, },
"downloadstation": { "downloadstation": {
"download": "İndir", "download": "İndirme",
"upload": "Yükle", "upload": "Yükleme",
"leech": "Tüketici", "leech": "Tüketici",
"seed": "Sağlayıcı" "seed": "Sağlayıcı"
}, },
"sonarr": { "sonarr": {
"wanted": "Aranan", "wanted": "İstendi",
"queued": "Kuyrukta", "queued": "Sırada",
"series": "Diziler", "series": "Diziler",
"queue": "Kuyruk", "queue": "Kuyruk",
"unknown": "Bilinmiyor" "unknown": "Bilinmiyor"
}, },
"radarr": { "radarr": {
"wanted": "Aranan", "wanted": "İstendi",
"missing": "Kayıp", "missing": "Eksik",
"queued": "Kuyrukta", "queued": "Sırada",
"movies": "Filmler", "movies": "Filmler",
"queue": "Kuyruk", "queue": "Kuyruk",
"unknown": "Bilinmiyor" "unknown": "Bilinmiyor"
}, },
"lidarr": { "lidarr": {
"wanted": "Aranan", "wanted": "İstendi",
"queued": "Kuyrukta", "queued": "Sırada",
"artists": "Sanatçılar" "artists": "Sanatçılar"
}, },
"readarr": { "readarr": {
"wanted": "Aranan", "wanted": "İstendi",
"queued": "Kuyrukta", "queued": "Sırada",
"books": "Kitaplar" "books": "Kitaplar"
}, },
"bazarr": { "bazarr": {
"missingEpisodes": "Kayıp Bölümler", "missingEpisodes": "Eksik Bölümler",
"missingMovies": "Kayıp Filmler" "missingMovies": "Eksik Filmler"
}, },
"ombi": { "ombi": {
"pending": "Bekliyor", "pending": "Bekleyen",
"approved": "Onaylı", "approved": "Onaylı",
"available": "Kullanılabilir" "available": "Kullanılabilir"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Bekliyor", "pending": "Bekleyen",
"approved": "Onaylı", "approved": "Onaylı",
"available": "Kullanılabilir" "available": "Kullanılabilir"
}, },
"overseerr": { "overseerr": {
"pending": "Bekliyor", "pending": "Bekleyen",
"processing": "İşleniyor", "processing": "İşleniyor",
"approved": "Onaylı", "approved": "Onaylı",
"available": "Kullanılabilir" "available": "Kullanılabilir"
}, },
"pialert": { "netalertx": {
"total": "Toplam", "total": "Toplam",
"connected": "Bağlandı", "connected": "Bağlandı",
"new_devices": "Yeni Cihazlar", "new_devices": "Yeni Cihazlar",
"down_alerts": "Düşme Uyarıları" "down_alerts": "Hata Uyarıları"
}, },
"pihole": { "pihole": {
"queries": "Sorgular", "queries": "Sorgular",
"blocked": "Engellenen", "blocked": "Engellenen",
"blocked_percent": "Engellenen %", "blocked_percent": "Engellenen %",
"gravity": "Yer Çekimi" "gravity": "Gravity"
}, },
"adguard": { "adguard": {
"queries": "Sorgular", "queries": "Sorgular",
"blocked": "Engellenen", "blocked": "Engellenen",
"filtered": "Filtrelenen", "filtered": "Filtrelendi",
"latency": "Gecikme" "latency": "Gecikme"
}, },
"speedtest": { "speedtest": {
"upload": "Yükle", "upload": "Yükleme",
"download": "İndir", "download": "İndirme",
"ping": "Gecikme" "ping": "Gecikme"
}, },
"portainer": { "portainer": {
"running": "Çalışan", "running": "Çalışıyor",
"stopped": "Durduruldu", "stopped": "Durduruldu",
"total": "Toplam" "total": "Toplam"
}, },
@ -353,10 +353,10 @@
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "Dizin Oluşturucular", "enableIndexers": "Dizin Oluşturucular",
"numberOfGrabs": "Yakalama Sayısı", "numberOfGrabs": "Yakalamalar",
"numberOfQueries": "Sorgular", "numberOfQueries": "Sorgular",
"numberOfFailGrabs": "Başarısız Yakalama Sayısı", "numberOfFailGrabs": "Başarısız Yakalamalar",
"numberOfFailQueries": "Başarısız Sorgu Sayısı" "numberOfFailQueries": "Başarısız Sorgular"
}, },
"jackett": { "jackett": {
"configured": "Yapılandırılmış", "configured": "Yapılandırılmış",
@ -374,8 +374,8 @@
"domain_count": "Etki Alanları" "domain_count": "Etki Alanları"
}, },
"medusa": { "medusa": {
"wanted": "Aranan", "wanted": "İstendi",
"queued": "Kuyrukta", "queued": "Sırada",
"series": "Diziler" "series": "Diziler"
}, },
"minecraft": { "minecraft": {
@ -386,7 +386,7 @@
"down": "Çevrimdışı" "down": "Çevrimdışı"
}, },
"miniflux": { "miniflux": {
"read": "Oku", "read": "Okunan",
"unread": "Okunmamış" "unread": "Okunmamış"
}, },
"authentik": { "authentik": {
@ -404,17 +404,17 @@
"cpu": "CPU", "cpu": "CPU",
"load": "Yük", "load": "Yük",
"wait": "Lütfen bekleyin", "wait": "Lütfen bekleyin",
"temp": "Geçici", "temp": "Sıcaklık",
"_temp": "Sıcaklık", "_temp": "Sıcaklık",
"warn": "Uyarı", "warn": "Uyarı",
"uptime": "Çalışma Süresi", "uptime": "Çalışıyor",
"total": "Toplam", "total": "Toplam",
"free": "Boşta", "free": "Boş",
"used": "Kullanımda", "used": "Kullanımda",
"days": "g", "days": "g",
"hours": "sa", "hours": "sa",
"crit": "Kritik", "crit": "Kritik",
"read": "Oku", "read": "Okunan",
"write": "Yazma", "write": "Yazma",
"gpu": "GPU", "gpu": "GPU",
"mem": "Hafıza", "mem": "Hafıza",
@ -495,7 +495,7 @@
"child_bridges": "Alt Köprüler", "child_bridges": "Alt Köprüler",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Yükleme", "up": "Yükleme",
"pending": "Bekliyor", "pending": "Bekleyen",
"down": "İndirme" "down": "İndirme"
}, },
"healthchecks": { "healthchecks": {
@ -503,7 +503,7 @@
"up": "Yükleme", "up": "Yükleme",
"grace": "Tolerans Döneminde", "grace": "Tolerans Döneminde",
"down": "İndirme", "down": "İndirme",
"paused": "Durduruldu", "paused": "Duraklatıldı",
"status": "Durum", "status": "Durum",
"last_ping": "Son Ping", "last_ping": "Son Ping",
"never": "Henüz ping yok" "never": "Henüz ping yok"
@ -636,8 +636,8 @@
"storage": "Depo" "storage": "Depo"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Sites Up", "up": "Siteler Çalışıyor",
"down": "Sites Down", "down": "Siteler Çalışmıyor",
"uptime": "Çalışma Süresi", "uptime": "Çalışma Süresi",
"incident": "Olay", "incident": "Olay",
"m": "dk" "m": "dk"
@ -661,7 +661,7 @@
"mylar": { "mylar": {
"series": "Diziler", "series": "Diziler",
"issues": "Sorunlar", "issues": "Sorunlar",
"wanted": "Aranan" "wanted": "İstendi"
}, },
"photoprism": { "photoprism": {
"albums": "Albümler", "albums": "Albümler",
@ -706,13 +706,13 @@
"nodes": "Düğümler" "nodes": "Düğümler"
}, },
"prometheus": { "prometheus": {
"targets_up": "Targets Up", "targets_up": "Hedef Çalışıyor",
"targets_down": "Targets Down", "targets_down": "Hedef Çalışmıyor",
"targets_total": "Toplam Hedef" "targets_total": "Toplam Hedef"
}, },
"gatus": { "gatus": {
"up": "Sites Up", "up": "Siteler Çalışıyor",
"down": "Sites Down", "down": "Siteler Çalışmıyor",
"uptime": "Çalışma Süresi" "uptime": "Çalışma Süresi"
}, },
"ghostfolio": { "ghostfolio": {
@ -727,7 +727,7 @@
"booksDuration": "Süre" "booksDuration": "Süre"
}, },
"homeassistant": { "homeassistant": {
"people_home": "People Home", "people_home": "Evdeki İnsanlar",
"lights_on": "Işıklar Açık", "lights_on": "Işıklar Açık",
"switches_on": "Aç" "switches_on": "Aç"
}, },
@ -754,14 +754,14 @@
"azuredevops": { "azuredevops": {
"result": "Sonuç", "result": "Sonuç",
"status": "Durum", "status": "Durum",
"buildId": "Build ID", "buildId": "Yapı Kimliği",
"succeeded": "Başarılı", "succeeded": "Başarılı",
"notStarted": "Henüz Başlamadı", "notStarted": "Henüz Başlamadı",
"failed": "Başarısız", "failed": "Başarısız",
"canceled": "İptal edildi", "canceled": "İptal edildi",
"inProgress": "Sürüyor", "inProgress": "Sürüyor",
"totalPrs": "Total PRs", "totalPrs": "Toplam Çekme İstekleri",
"myPrs": "My PRs", "myPrs": "Benim Çekme İsteklerim",
"approved": "Onaylı" "approved": "Onaylı"
}, },
"gamedig": { "gamedig": {
@ -791,7 +791,7 @@
"openmediavault": { "openmediavault": {
"downloading": "İndiriliyor", "downloading": "İndiriliyor",
"total": "Toplam", "total": "Toplam",
"running": "Çalışan", "running": "Çalışıyor",
"stopped": "Durduruldu", "stopped": "Durduruldu",
"passed": "Geçti", "passed": "Geçti",
"failed": "Başarısız" "failed": "Başarısız"
@ -809,9 +809,9 @@
"uptime": "Çalışma Süresi", "uptime": "Çalışma Süresi",
"lastDown": "Son Kesinti", "lastDown": "Son Kesinti",
"downDuration": "Kesinti Süresi", "downDuration": "Kesinti Süresi",
"sitesUp": "Sites Up", "sitesUp": "Siteler Çalışıyor",
"sitesDown": "Sites Down", "sitesDown": "Siteler Çalışmıyor",
"paused": "Durduruldu", "paused": "Duraklatıldı",
"notyetchecked": "Henüz Kontrol Edilmedi", "notyetchecked": "Henüz Kontrol Edilmedi",
"up": "Yükleme", "up": "Yükleme",
"seemsdown": "Kapalı görünüyor", "seemsdown": "Kapalı görünüyor",
@ -821,7 +821,7 @@
"calendar": { "calendar": {
"inCinemas": "Sinemalarda", "inCinemas": "Sinemalarda",
"physicalRelease": "Fiziksel Yayınlanan", "physicalRelease": "Fiziksel Yayınlanan",
"digitalRelease": "Dijital Yayınlanan", "digitalRelease": "Dijitalde Yayınlandı",
"noEventsToday": "Bugün için etkinlik yok!", "noEventsToday": "Bugün için etkinlik yok!",
"noEventsFound": "Etkinlik bulunamadı" "noEventsFound": "Etkinlik bulunamadı"
}, },
@ -835,7 +835,7 @@
}, },
"plantit": { "plantit": {
"events": "Etkinlikler", "events": "Etkinlikler",
"plants": "Plants", "plants": "Bitkiler",
"photos": "Fotoğraflar", "photos": "Fotoğraflar",
"species": "Türler" "species": "Türler"
}, },
@ -854,11 +854,11 @@
"images": "Görseller", "images": "Görseller",
"imageSize": "Görsel Boyutu", "imageSize": "Görsel Boyutu",
"galleries": "Galeriler", "galleries": "Galeriler",
"performers": "Performers", "performers": "Oyuncu",
"studios": "Stüdyolar", "studios": "Stüdyolar",
"movies": "Filmler", "movies": "Filmler",
"tags": "Etiketler", "tags": "Etiketler",
"oCount": "O Count" "oCount": "O Sayısı"
}, },
"tandoor": { "tandoor": {
"users": "Kullanıcılar", "users": "Kullanıcılar",
@ -872,5 +872,9 @@
"labels": "Etiketler", "labels": "Etiketler",
"users": "Kullanıcılar", "users": "Kullanıcılar",
"totalValue": "Toplam Değer" "totalValue": "Toplam Değer"
},
"crowdsec": {
"alerts": "Alarmlar",
"bans": "Yasaklar"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Pending Disconnect", "connectionStatusPendingDisconnect": "Pending Disconnect",
"connectionStatusDisconnecting": "Disconnecting", "connectionStatusDisconnecting": "Disconnecting",
"connectionStatusDisconnected": "Disconnected", "connectionStatusDisconnected": "Disconnected",
"connectionStatusConnected": "Підключено", "connectionStatusConnected": "Connected",
"uptime": "Час роботи", "uptime": "Час роботи",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
@ -277,11 +277,11 @@
"approved": "Затверджено", "approved": "Затверджено",
"available": "Доступно" "available": "Доступно"
}, },
"pialert": { "netalertx": {
"total": "Усього", "total": "Усього",
"connected": "Підключено", "connected": "Connected",
"new_devices": "Нові пристрої", "new_devices": "New Devices",
"down_alerts": "Сповіщення про збій" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "Запити", "queries": "Запити",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Користувачі", "users": "Користувачі",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Оповіщення",
"bans": "Bans"
} }
} }

View File

@ -277,7 +277,7 @@
"approved": "Đã duyệt", "approved": "Đã duyệt",
"available": "Available" "available": "Available"
}, },
"pialert": { "netalertx": {
"total": "Tổng", "total": "Tổng",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
@ -872,5 +872,9 @@
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "Users",
"totalValue": "Total Value" "totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"bans": "Bans"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "待辦的斷開", "connectionStatusPendingDisconnect": "待辦的斷開",
"connectionStatusDisconnecting": "正在中斷連線", "connectionStatusDisconnecting": "正在中斷連線",
"connectionStatusDisconnected": "連接已中斷", "connectionStatusDisconnected": "連接已中斷",
"connectionStatusConnected": "已連線", "connectionStatusConnected": "Connected",
"uptime": "運行時間", "uptime": "運行時間",
"maxDown": "最大下載速率", "maxDown": "最大下載速率",
"maxUp": "最大上傳速率", "maxUp": "最大上傳速率",
@ -277,11 +277,11 @@
"approved": "批准", "approved": "批准",
"available": "可用" "available": "可用"
}, },
"pialert": { "netalertx": {
"total": "全部", "total": "全部",
"connected": "已連線", "connected": "Connected",
"new_devices": "新裝置", "new_devices": "New Devices",
"down_alerts": "離線警告" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "查詢", "queries": "查詢",
@ -858,7 +858,7 @@
"studios": "工作室", "studios": "工作室",
"movies": "電影", "movies": "電影",
"tags": "標籤", "tags": "標籤",
"oCount": "O Count" "oCount": "0 個"
}, },
"tandoor": { "tandoor": {
"users": "使用者", "users": "使用者",
@ -867,10 +867,14 @@
}, },
"homebox": { "homebox": {
"items": "項目", "items": "項目",
"totalWithWarranty": "With Warranty", "totalWithWarranty": "有保証",
"locations": "位置", "locations": "位置",
"labels": "標籤", "labels": "標籤",
"users": "使用者", "users": "使用者",
"totalValue": "總共" "totalValue": "總共"
},
"crowdsec": {
"alerts": "警示",
"bans": "禁止"
} }
} }

View File

@ -54,13 +54,13 @@
"uptime": "运行时间", "uptime": "运行时间",
"days": "天", "days": "天",
"wan": "WAN", "wan": "WAN",
"lan": "LAN", "lan": "局域网",
"wlan": "WLAN", "wlan": "无线局域网",
"devices": "设备", "devices": "设备",
"lan_devices": "LAN设备", "lan_devices": "有线设备",
"wlan_devices": "WLAN 设备", "wlan_devices": "WLAN 设备",
"lan_users": "LAN 用户", "lan_users": "有线用户",
"wlan_users": "WLAN 用户", "wlan_users": "无线用户",
"up": "运行时间", "up": "运行时间",
"down": "离线", "down": "离线",
"wait": "请稍候", "wait": "请稍候",
@ -277,7 +277,7 @@
"approved": "已批准", "approved": "已批准",
"available": "可用" "available": "可用"
}, },
"pialert": { "netalertx": {
"total": "总计", "total": "总计",
"connected": "已连接", "connected": "已连接",
"new_devices": "新设备", "new_devices": "新设备",
@ -858,7 +858,7 @@
"studios": "工作室", "studios": "工作室",
"movies": "电影", "movies": "电影",
"tags": "标签", "tags": "标签",
"oCount": "O Count" "oCount": "O "
}, },
"tandoor": { "tandoor": {
"users": "用户数", "users": "用户数",
@ -866,11 +866,15 @@
"keywords": "关键词" "keywords": "关键词"
}, },
"homebox": { "homebox": {
"items": "Items", "items": "条目",
"totalWithWarranty": "With Warranty", "totalWithWarranty": "有保证",
"locations": "Locations", "locations": "位置",
"labels": "Labels", "labels": "标签",
"users": "用户数", "users": "用户数",
"totalValue": "Total Value" "totalValue": "总计"
},
"crowdsec": {
"alerts": "警告",
"bans": "禁用"
} }
} }

View File

@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "待辦的斷開", "connectionStatusPendingDisconnect": "待辦的斷開",
"connectionStatusDisconnecting": "正在中斷連線", "connectionStatusDisconnecting": "正在中斷連線",
"connectionStatusDisconnected": "連接已中斷", "connectionStatusDisconnected": "連接已中斷",
"connectionStatusConnected": "已連線", "connectionStatusConnected": "Connected",
"uptime": "運行時間", "uptime": "運行時間",
"maxDown": "最大下載速率", "maxDown": "最大下載速率",
"maxUp": "最大上傳速率", "maxUp": "最大上傳速率",
@ -277,11 +277,11 @@
"approved": "已核准", "approved": "已核准",
"available": "可觀看" "available": "可觀看"
}, },
"pialert": { "netalertx": {
"total": "全部", "total": "全部",
"connected": "已連線", "connected": "Connected",
"new_devices": "新裝置", "new_devices": "New Devices",
"down_alerts": "離線警告" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "查詢", "queries": "查詢",
@ -858,7 +858,7 @@
"studios": "工作室", "studios": "工作室",
"movies": "電影", "movies": "電影",
"tags": "標籤", "tags": "標籤",
"oCount": "O Count" "oCount": "0 個"
}, },
"tandoor": { "tandoor": {
"users": "用戶", "users": "用戶",
@ -867,10 +867,14 @@
}, },
"homebox": { "homebox": {
"items": "項目", "items": "項目",
"totalWithWarranty": "With Warranty", "totalWithWarranty": "有保証",
"locations": "位置", "locations": "位置",
"labels": "標籤", "labels": "標籤",
"users": "用戶", "users": "用戶",
"totalValue": "總共" "totalValue": "總共"
},
"crowdsec": {
"alerts": "警示",
"bans": "禁止"
} }
} }

View File

@ -12,7 +12,7 @@ export default function SiteMonitor({ group, service, style }) {
let statusTitle = t("siteMonitor.http_status"); let statusTitle = t("siteMonitor.http_status");
let statusText = ""; let statusText = "";
if (error) { if (error || (data && data.error)) {
colorClass = "text-rose-500"; colorClass = "text-rose-500";
statusText = t("siteMonitor.error"); statusText = t("siteMonitor.error");
statusTitle += ` ${t("siteMonitor.error")}`; statusTitle += ` ${t("siteMonitor.error")}`;

View File

@ -1,5 +1,5 @@
import { useTranslation } from "next-i18next"; import { useTranslation } from "next-i18next";
import { FaThermometerHalf } from "react-icons/fa"; import { FiHardDrive } from "react-icons/fi";
import Resource from "../widget/resource"; import Resource from "../widget/resource";
import WidgetLabel from "../widget/widget_label"; import WidgetLabel from "../widget/widget_label";
@ -10,7 +10,7 @@ export default function Node({ data, expanded, labels }) {
return ( return (
<Resource <Resource
additionalClassNames="information-widget-longhorn-node" additionalClassNames="information-widget-longhorn-node"
icon={FaThermometerHalf} icon={FiHardDrive}
value={t("common.bytes", { value: data.node.available })} value={t("common.bytes", { value: data.node.available })}
label={t("resources.free")} label={t("resources.free")}
expandedValue={t("common.bytes", { value: data.node.maximum })} expandedValue={t("common.bytes", { value: data.node.maximum })}

View File

@ -9,7 +9,7 @@ function convertToFahrenheit(t) {
return (t * 9) / 5 + 32; return (t * 9) / 5 + 32;
} }
export default function CpuTemp({ expanded, units, refresh = 1500 }) { export default function CpuTemp({ expanded, units, refresh = 1500, tempmin = 0, tempmax = -1 }) {
const { t } = useTranslation(); const { t } = useTranslation();
const { data, error } = useSWR(`/api/widgets/resources?type=cputemp`, { const { data, error } = useSWR(`/api/widgets/resources?type=cputemp`, {
@ -39,7 +39,12 @@ export default function CpuTemp({ expanded, units, refresh = 1500 }) {
} }
const unit = units === "imperial" ? "fahrenheit" : "celsius"; const unit = units === "imperial" ? "fahrenheit" : "celsius";
mainTemp = unit === "celsius" ? mainTemp : convertToFahrenheit(mainTemp); mainTemp = unit === "celsius" ? mainTemp : convertToFahrenheit(mainTemp);
const maxTemp = unit === "celsius" ? data.cputemp.max : convertToFahrenheit(data.cputemp.max);
const minTemp = tempmin < mainTemp ? tempmin : mainTemp;
let maxTemp = tempmax;
if (maxTemp < minTemp) {
maxTemp = unit === "celsius" ? data.cputemp.max : convertToFahrenheit(data.cputemp.max);
}
return ( return (
<Resource <Resource
@ -58,7 +63,7 @@ export default function CpuTemp({ expanded, units, refresh = 1500 }) {
unit, unit,
})} })}
expandedLabel={t("resources.max")} expandedLabel={t("resources.max")}
percentage={Math.round((mainTemp / maxTemp) * 100)} percentage={Math.round(((mainTemp - minTemp) / (maxTemp - minTemp)) * 100)}
expanded={expanded} expanded={expanded}
/> />
); );

View File

@ -8,7 +8,7 @@ import CpuTemp from "./cputemp";
import Uptime from "./uptime"; import Uptime from "./uptime";
export default function Resources({ options }) { export default function Resources({ options }) {
const { expanded, units, diskUnits } = options; const { expanded, units, diskUnits, tempmin, tempmax } = options;
let { refresh } = options; let { refresh } = options;
if (!refresh) refresh = 1500; if (!refresh) refresh = 1500;
refresh = Math.max(refresh, 1000); refresh = Math.max(refresh, 1000);
@ -23,7 +23,9 @@ export default function Resources({ options }) {
<Disk key={disk} options={{ disk }} expanded={expanded} diskUnits={diskUnits} refresh={refresh} /> <Disk key={disk} options={{ disk }} expanded={expanded} diskUnits={diskUnits} refresh={refresh} />
)) ))
: options.disk && <Disk options={options} expanded={expanded} diskUnits={diskUnits} refresh={refresh} />} : options.disk && <Disk options={options} expanded={expanded} diskUnits={diskUnits} refresh={refresh} />}
{options.cputemp && <CpuTemp expanded={expanded} units={units} refresh={refresh} />} {options.cputemp && (
<CpuTemp expanded={expanded} units={units} refresh={refresh} tempmin={tempmin} tempmax={tempmax} />
)}
{options.uptime && <Uptime refresh={refresh} />} {options.uptime && <Uptime refresh={refresh} />}
</div> </div>
{options.label && ( {options.label && (

View File

@ -3,7 +3,7 @@ import { getAllClasses, getInnerBlock, getBottomBlock } from "./container";
export default function ContainerLink({ children = [], options, additionalClassNames = "", target }) { export default function ContainerLink({ children = [], options, additionalClassNames = "", target }) {
return ( return (
<a <a
href={options.url} href={options.href || options.url}
target={target} target={target}
className={`${getAllClasses(options, additionalClassNames)} information-widget-link`} className={`${getAllClasses(options, additionalClassNames)} information-widget-link`}
> >

View File

@ -43,8 +43,9 @@ export default async function handler(req, res) {
if (pods.length === 0) { if (pods.length === 0) {
res.status(404).send({ res.status(404).send({
error: `no pods found with namespace=${namespace} and labelSelector=${labelSelector}`, status: "not found",
}); });
logger.error(`no pods found with namespace=${namespace} and labelSelector=${labelSelector}`);
return; return;
} }
const someReady = pods.find((pod) => pod.status.phase === "Running"); const someReady = pods.find((pod) => pod.status.phase === "Running");

View File

@ -212,7 +212,8 @@ function Home({ initialSettings }) {
(e.key.length === 1 && (e.key.length === 1 &&
e.key.match(/(\w|\s|[à-ü]|[À-Ü]|[\w\u0430-\u044f])/gi) && e.key.match(/(\w|\s|[à-ü]|[À-Ü]|[\w\u0430-\u044f])/gi) &&
!(e.altKey || e.ctrlKey || e.metaKey || e.shiftKey)) || !(e.altKey || e.ctrlKey || e.metaKey || e.shiftKey)) ||
e.key.match(/([à-ü]|[À-Ü])/g) || // accented characters may require modifier keys // accented characters and the bang may require modifier keys
e.key.match(/([à-ü]|[À-Ü]|!)/g) ||
(e.key === "v" && (e.ctrlKey || e.metaKey)) (e.key === "v" && (e.ctrlKey || e.metaKey))
) { ) {
setSearching(true); setSearching(true);

View File

@ -393,6 +393,11 @@ export function cleanServiceGroups(groups) {
enableBlocks, enableBlocks,
enableNowPlaying, enableNowPlaying,
// emby, jellyfin, tautulli
enableUser,
expandOneStreamToTwoRows,
showEpisodeNumber,
// glances, pihole // glances, pihole
version, version,
@ -445,6 +450,9 @@ export function cleanServiceGroups(groups) {
// proxmox // proxmox
node, node,
// speedtest
bitratePrecision,
// sonarr, radarr // sonarr, radarr
enableQueue, enableQueue,
@ -454,6 +462,9 @@ export function cleanServiceGroups(groups) {
// unifi // unifi
site, site,
// wgeasy
threshold,
} = cleanedService.widget; } = cleanedService.widget;
let fieldsList = fields; let fieldsList = fields;
@ -518,6 +529,13 @@ export function cleanServiceGroups(groups) {
if (enableBlocks !== undefined) cleanedService.widget.enableBlocks = JSON.parse(enableBlocks); if (enableBlocks !== undefined) cleanedService.widget.enableBlocks = JSON.parse(enableBlocks);
if (enableNowPlaying !== undefined) cleanedService.widget.enableNowPlaying = JSON.parse(enableNowPlaying); if (enableNowPlaying !== undefined) cleanedService.widget.enableNowPlaying = JSON.parse(enableNowPlaying);
} }
if (["emby", "jellyfin", "tautulli"].includes(type)) {
if (expandOneStreamToTwoRows !== undefined)
cleanedService.widget.expandOneStreamToTwoRows = !!JSON.parse(expandOneStreamToTwoRows);
if (showEpisodeNumber !== undefined)
cleanedService.widget.showEpisodeNumber = !!JSON.parse(showEpisodeNumber);
if (enableUser !== undefined) cleanedService.widget.enableUser = !!JSON.parse(enableUser);
}
if (["sonarr", "radarr"].includes(type)) { if (["sonarr", "radarr"].includes(type)) {
if (enableQueue !== undefined) cleanedService.widget.enableQueue = JSON.parse(enableQueue); if (enableQueue !== undefined) cleanedService.widget.enableQueue = JSON.parse(enableQueue);
} }
@ -576,6 +594,14 @@ export function cleanServiceGroups(groups) {
if (type === "healthchecks") { if (type === "healthchecks") {
if (uuid !== undefined) cleanedService.widget.uuid = uuid; if (uuid !== undefined) cleanedService.widget.uuid = uuid;
} }
if (type === "speedtest") {
if (bitratePrecision !== undefined) {
cleanedService.widget.bitratePrecision = parseInt(bitratePrecision, 10);
}
}
if (type === "wgeasy") {
if (threshold !== undefined) cleanedService.widget.threshold = parseInt(threshold, 10);
}
} }
return cleanedService; return cleanedService;

View File

@ -57,7 +57,7 @@ export function jsonArrayFilter(data, filter) {
export function sanitizeErrorURL(errorURL) { export function sanitizeErrorURL(errorURL) {
// Dont display sensitive params on frontend // Dont display sensitive params on frontend
const url = new URL(errorURL); const url = new URL(errorURL);
["apikey", "api_key", "token", "t", "access_token"].forEach((key) => { ["apikey", "api_key", "token", "t", "access_token", "auth"].forEach((key) => {
if (url.searchParams.has(key)) url.searchParams.set(key, "***"); if (url.searchParams.has(key)) url.searchParams.set(key, "***");
}); });
return url.toString(); return url.toString();

View File

@ -5,6 +5,7 @@ import { createUnzip, constants as zlibConstants } from "node:zlib";
import { http, https } from "follow-redirects"; import { http, https } from "follow-redirects";
import { addCookieToJar, setCookieHeader } from "./cookie-jar"; import { addCookieToJar, setCookieHeader } from "./cookie-jar";
import { sanitizeErrorURL } from "./api-helpers";
import createLogger from "utils/logger"; import createLogger from "utils/logger";
@ -113,6 +114,11 @@ export async function httpProxy(url, params = {}) {
constructedUrl.pathname, constructedUrl.pathname,
); );
if (err) logger.error(err); if (err) logger.error(err);
return [500, "application/json", { error: { message: err?.message ?? "Unknown error", url, rawError: err } }, null]; return [
500,
"application/json",
{ error: { message: err?.message ?? "Unknown error", url: sanitizeErrorURL(url), rawError: err } },
null,
];
} }
} }

View File

@ -63,6 +63,7 @@ const components = {
moonraker: dynamic(() => import("./moonraker/component")), moonraker: dynamic(() => import("./moonraker/component")),
mylar: dynamic(() => import("./mylar/component")), mylar: dynamic(() => import("./mylar/component")),
navidrome: dynamic(() => import("./navidrome/component")), navidrome: dynamic(() => import("./navidrome/component")),
netalertx: dynamic(() => import("./netalertx/component")),
netdata: dynamic(() => import("./netdata/component")), netdata: dynamic(() => import("./netdata/component")),
nextcloud: dynamic(() => import("./nextcloud/component")), nextcloud: dynamic(() => import("./nextcloud/component")),
nextdns: dynamic(() => import("./nextdns/component")), nextdns: dynamic(() => import("./nextdns/component")),
@ -80,7 +81,7 @@ const components = {
pfsense: dynamic(() => import("./pfsense/component")), pfsense: dynamic(() => import("./pfsense/component")),
photoprism: dynamic(() => import("./photoprism/component")), photoprism: dynamic(() => import("./photoprism/component")),
proxmoxbackupserver: dynamic(() => import("./proxmoxbackupserver/component")), proxmoxbackupserver: dynamic(() => import("./proxmoxbackupserver/component")),
pialert: dynamic(() => import("./pialert/component")), pialert: dynamic(() => import("./netalertx/component")),
pihole: dynamic(() => import("./pihole/component")), pihole: dynamic(() => import("./pihole/component")),
plantit: dynamic(() => import("./plantit/component")), plantit: dynamic(() => import("./plantit/component")),
plex: dynamic(() => import("./plex/component")), plex: dynamic(() => import("./plex/component")),
@ -102,6 +103,7 @@ const components = {
speedtest: dynamic(() => import("./speedtest/component")), speedtest: dynamic(() => import("./speedtest/component")),
stash: dynamic(() => import("./stash/component")), stash: dynamic(() => import("./stash/component")),
strelaysrv: dynamic(() => import("./strelaysrv/component")), strelaysrv: dynamic(() => import("./strelaysrv/component")),
swagdashboard: dynamic(() => import("./swagdashboard/component")),
tailscale: dynamic(() => import("./tailscale/component")), tailscale: dynamic(() => import("./tailscale/component")),
tandoor: dynamic(() => import("./tandoor/component")), tandoor: dynamic(() => import("./tandoor/component")),
tautulli: dynamic(() => import("./tautulli/component")), tautulli: dynamic(() => import("./tautulli/component")),
@ -116,6 +118,7 @@ const components = {
uptimerobot: dynamic(() => import("./uptimerobot/component")), uptimerobot: dynamic(() => import("./uptimerobot/component")),
urbackup: dynamic(() => import("./urbackup/component")), urbackup: dynamic(() => import("./urbackup/component")),
watchtower: dynamic(() => import("./watchtower/component")), watchtower: dynamic(() => import("./watchtower/component")),
wgeasy: dynamic(() => import("./wgeasy/component")),
whatsupdocker: dynamic(() => import("./whatsupdocker/component")), whatsupdocker: dynamic(() => import("./whatsupdocker/component")),
xteve: dynamic(() => import("./xteve/component")), xteve: dynamic(() => import("./xteve/component")),
}; };

View File

@ -27,9 +27,26 @@ function ticksToString(ticks) {
return parts.map((part) => part.toString().padStart(2, "0")).join(":"); return parts.map((part) => part.toString().padStart(2, "0")).join(":");
} }
function SingleSessionEntry({ playCommand, session }) { function generateStreamTitle(session, enableUser, showEpisodeNumber) {
const {
NowPlayingItem: { Name, SeriesName, Type, ParentIndexNumber, IndexNumber },
UserName,
} = session;
let streamTitle = "";
if (Type === "Episode" && showEpisodeNumber) {
const seasonStr = `S${ParentIndexNumber.toString().padStart(2, "0")}`;
const episodeStr = `E${IndexNumber.toString().padStart(2, "0")}`;
streamTitle = `${SeriesName}: ${seasonStr} · ${episodeStr} - ${Name}`;
} else {
streamTitle = `${Name}${SeriesName ? ` - ${SeriesName}` : ""}`;
}
return enableUser ? `${streamTitle} (${UserName})` : streamTitle;
}
function SingleSessionEntry({ playCommand, session, enableUser, showEpisodeNumber }) {
const { const {
NowPlayingItem: { Name, SeriesName },
PlayState: { PositionTicks, IsPaused, IsMuted }, PlayState: { PositionTicks, IsPaused, IsMuted },
} = session; } = session;
@ -42,13 +59,13 @@ function SingleSessionEntry({ playCommand, session }) {
const percent = Math.min(1, PositionTicks / RunTimeTicks) * 100; const percent = Math.min(1, PositionTicks / RunTimeTicks) * 100;
const streamTitle = generateStreamTitle(session, enableUser, showEpisodeNumber);
return ( return (
<> <>
<div className="text-theme-700 dark:text-theme-200 relative h-5 w-full rounded-md bg-theme-200/50 dark:bg-theme-900/20 mt-1 flex"> <div className="text-theme-700 dark:text-theme-200 relative h-5 w-full rounded-md bg-theme-200/50 dark:bg-theme-900/20 mt-1 flex">
<div className="grow text-xs z-10 self-center ml-2 relative w-full h-4 mr-2"> <div className="grow text-xs z-10 self-center ml-2 relative w-full h-4 mr-2">
<div className="absolute w-full whitespace-nowrap text-ellipsis overflow-hidden"> <div className="absolute w-full whitespace-nowrap text-ellipsis overflow-hidden" title={streamTitle}>
{Name} {streamTitle}
{SeriesName && ` - ${SeriesName}`}
</div> </div>
</div> </div>
<div className="self-center text-xs flex justify-end mr-1.5 pl-1"> <div className="self-center text-xs flex justify-end mr-1.5 pl-1">
@ -97,9 +114,8 @@ function SingleSessionEntry({ playCommand, session }) {
); );
} }
function SessionEntry({ playCommand, session }) { function SessionEntry({ playCommand, session, enableUser, showEpisodeNumber }) {
const { const {
NowPlayingItem: { Name, SeriesName },
PlayState: { PositionTicks, IsPaused, IsMuted }, PlayState: { PositionTicks, IsPaused, IsMuted },
} = session; } = session;
@ -110,6 +126,8 @@ function SessionEntry({ playCommand, session }) {
IsVideoDirect: true, IsVideoDirect: true,
}; // if no transcodinginfo its videodirect }; // if no transcodinginfo its videodirect
const streamTitle = generateStreamTitle(session, enableUser, showEpisodeNumber);
const percent = Math.min(1, PositionTicks / RunTimeTicks) * 100; const percent = Math.min(1, PositionTicks / RunTimeTicks) * 100;
return ( return (
@ -139,9 +157,8 @@ function SessionEntry({ playCommand, session }) {
)} )}
</div> </div>
<div className="grow text-xs z-10 self-center relative w-full h-4"> <div className="grow text-xs z-10 self-center relative w-full h-4">
<div className="absolute w-full whitespace-nowrap text-ellipsis overflow-hidden"> <div className="absolute w-full whitespace-nowrap text-ellipsis overflow-hidden" title={streamTitle}>
{Name} {streamTitle}
{SeriesName && ` - ${SeriesName}`}
</div> </div>
</div> </div>
<div className="self-center text-xs flex justify-end mr-1 z-10">{IsMuted && <BsVolumeMuteFill />}</div> <div className="self-center text-xs flex justify-end mr-1 z-10">{IsMuted && <BsVolumeMuteFill />}</div>
@ -215,6 +232,9 @@ export default function Component({ service }) {
const enableBlocks = service.widget?.enableBlocks; const enableBlocks = service.widget?.enableBlocks;
const enableNowPlaying = service.widget?.enableNowPlaying ?? true; const enableNowPlaying = service.widget?.enableNowPlaying ?? true;
const enableUser = !!service.widget?.enableUser; // default is false
const expandOneStreamToTwoRows = service.widget?.expandOneStreamToTwoRows !== false; // default is true
const showEpisodeNumber = !!service.widget?.showEpisodeNumber; // default is false
if (!sessionsData || !countData) { if (!sessionsData || !countData) {
return ( return (
@ -225,9 +245,11 @@ export default function Component({ service }) {
<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>
<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"> {expandOneStreamToTwoRows && (
<span className="absolute left-2 text-xs mt-[2px]">-</span> <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> <span className="absolute left-2 text-xs mt-[2px]">-</span>
</div>
)}
</div> </div>
)} )}
</> </>
@ -255,15 +277,17 @@ export default function Component({ service }) {
<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>
<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"> {expandOneStreamToTwoRows && (
<span className="absolute left-2 text-xs mt-[2px]">-</span> <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> <span className="absolute left-2 text-xs mt-[2px]">-</span>
</div>
)}
</div> </div>
</> </>
); );
} }
if (playing.length === 1) { if (expandOneStreamToTwoRows && playing.length === 1) {
const session = playing[0]; const session = playing[0];
return ( return (
<> <>
@ -272,27 +296,30 @@ export default function Component({ service }) {
<SingleSessionEntry <SingleSessionEntry
playCommand={(currentSession, command) => handlePlayCommand(currentSession, command)} playCommand={(currentSession, command) => handlePlayCommand(currentSession, command)}
session={session} session={session}
enableUser={enableUser}
showEpisodeNumber={showEpisodeNumber}
/> />
</div> </div>
</> </>
); );
} }
if (playing.length > 0) return (
return ( <>
<> {enableBlocks && <CountBlocks service={service} countData={countData} />}
{enableBlocks && <CountBlocks service={service} countData={countData} />} <div className="flex flex-col pb-1 mx-1">
<div className="flex flex-col pb-1 mx-1"> {playing.map((session) => (
{playing.map((session) => ( <SessionEntry
<SessionEntry key={session.Id}
key={session.Id} playCommand={(currentSession, command) => handlePlayCommand(currentSession, command)}
playCommand={(currentSession, command) => handlePlayCommand(currentSession, command)} session={session}
session={session} enableUser={enableUser}
/> showEpisodeNumber={showEpisodeNumber}
))} />
</div> ))}
</> </div>
); </>
);
} }
if (enableBlocks) { if (enableBlocks) {

View File

@ -5,8 +5,12 @@ import Block from "components/services/widget/block";
import useWidgetAPI from "utils/proxy/use-widget-api"; import useWidgetAPI from "utils/proxy/use-widget-api";
function getPerformancePercent(t, performanceRange) { function getPerformancePercent(t, performanceRange) {
return `${performanceRange.performance.currentGrossPerformancePercent > 0 ? "+" : ""}${t("common.percent", { // ghostfolio v2.79.0 changed to grossPerformancePercentage
value: performanceRange.performance.currentGrossPerformancePercent * 100, const percent =
performanceRange.performance.grossPerformancePercentage ??
performanceRange.performance.currentGrossPerformancePercent;
return `${percent > 0 ? "+" : ""}${t("common.percent", {
value: percent * 100,
maximumFractionDigits: 2, maximumFractionDigits: 2,
})}`; })}`;
} }
@ -24,6 +28,10 @@ export default function Component({ service }) {
return <Container service={service} error={finalError} />; return <Container service={service} error={finalError} />;
} }
if (performanceToday?.statusCode === 401) {
return <Container service={service} error={performanceToday} />;
}
if (!performanceToday || !performanceYear || !performanceMax) { if (!performanceToday || !performanceYear || !performanceMax) {
return ( return (
<Container service={service}> <Container service={service}>

View File

@ -18,10 +18,13 @@ export default function Component({ service }) {
); );
if (statsError || statusError) { if (statsError || statusError) {
return <Container service={service} error={statsError ?? statusError} />; return <Container service={service} error={statsError ?? statusError ?? statusData} />;
} }
if (statusData && !(statusData.status.includes("running") || statusData.status.includes("partial"))) { if (
statusData &&
(!statusData.status || !(statusData.status.includes("running") || statusData.status.includes("partial")))
) {
return ( return (
<Container> <Container>
<Block label={t("widget.status")} value={t("docker.offline")} /> <Block label={t("widget.status")} value={t("docker.offline")} />

View File

@ -0,0 +1,37 @@
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: netalertxData, error: netalertxError } = useWidgetAPI(widget, "data");
if (netalertxError) {
return <Container service={service} error={netalertxError} />;
}
if (!netalertxData) {
return (
<Container service={service}>
<Block label="netalertx.total" />
<Block label="netalertx.connected" />
<Block label="netalertx.new_devices" />
<Block label="netalertx.down_alerts" />
</Container>
);
}
return (
<Container service={service}>
<Block label="netalertx.total" value={t("common.number", { value: parseInt(netalertxData[0], 10) })} />
<Block label="netalertx.connected" value={t("common.number", { value: parseInt(netalertxData[1], 10) })} />
<Block label="netalertx.new_devices" value={t("common.number", { value: parseInt(netalertxData[3], 10) })} />
<Block label="netalertx.down_alerts" value={t("common.number", { value: parseInt(netalertxData[4], 10) })} />
</Container>
);
}

View File

@ -1,37 +0,0 @@
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: pialertData, error: pialertError } = useWidgetAPI(widget, "data");
if (pialertError) {
return <Container service={service} error={pialertError} />;
}
if (!pialertData) {
return (
<Container service={service}>
<Block label="pialert.total" />
<Block label="pialert.connected" />
<Block label="pialert.new_devices" />
<Block label="pialert.down_alerts" />
</Container>
);
}
return (
<Container service={service}>
<Block label="pialert.total" value={t("common.number", { value: parseInt(pialertData[0], 10) })} />
<Block label="pialert.connected" value={t("common.number", { value: parseInt(pialertData[1], 10) })} />
<Block label="pialert.new_devices" value={t("common.number", { value: parseInt(pialertData[3], 10) })} />
<Block label="pialert.down_alerts" value={t("common.number", { value: parseInt(pialertData[4], 10) })} />
</Container>
);
}

View File

@ -32,7 +32,7 @@ export default function Component({ service }) {
let blockedValue = `${t("common.number", { value: parseInt(piholeData.ads_blocked_today, 10) })}`; let blockedValue = `${t("common.number", { value: parseInt(piholeData.ads_blocked_today, 10) })}`;
if (!widget.fields.includes("blocked_percent")) { if (!widget.fields.includes("blocked_percent")) {
blockedValue += ` (${t("common.percent", { value: parseFloat(piholeData.ads_percentage_today.toPrecision(3)) })})`; blockedValue += ` (${t("common.percent", { value: parseFloat(piholeData.ads_percentage_today).toPrecision(3) })})`;
} }
return ( return (
@ -41,7 +41,7 @@ export default function Component({ service }) {
<Block label="pihole.blocked" value={blockedValue} /> <Block label="pihole.blocked" value={blockedValue} />
<Block <Block
label="pihole.blocked_percent" label="pihole.blocked_percent"
value={t("common.percent", { value: parseFloat(piholeData.ads_percentage_today.toPrecision(3)) })} value={t("common.percent", { value: parseFloat(piholeData.ads_percentage_today).toPrecision(3) })}
/> />
<Block <Block
label="pihole.gravity" label="pihole.gravity"

View File

@ -1,9 +1,12 @@
import { useTranslation } from "next-i18next";
import Container from "components/services/widget/container"; import Container from "components/services/widget/container";
import Block from "components/services/widget/block"; import Block from "components/services/widget/block";
import useWidgetAPI from "utils/proxy/use-widget-api"; import useWidgetAPI from "utils/proxy/use-widget-api";
export default function Component({ service }) { export default function Component({ service }) {
const { widget } = service; const { widget } = service;
const { t } = useTranslation();
const { data: response, error: responseError } = useWidgetAPI(widget, "statistics"); const { data: response, error: responseError } = useWidgetAPI(widget, "statistics");
@ -24,8 +27,8 @@ export default function Component({ service }) {
const totalRoms = response.reduce((total, stat) => total + stat.rom_count, 0); const totalRoms = response.reduce((total, stat) => total + stat.rom_count, 0);
return ( return (
<Container service={service}> <Container service={service}>
<Block label="romm.platforms" value={platforms} /> <Block label="romm.platforms" value={t("common.number", { value: platforms })} />
<Block label="romm.totalRoms" value={totalRoms} /> <Block label="romm.totalRoms" value={t("common.number", { value: totalRoms })} />
</Container> </Container>
); );
} }

View File

@ -11,6 +11,11 @@ export default function Component({ service }) {
const { data: speedtestData, error: speedtestError } = useWidgetAPI(widget, "speedtest/latest"); const { data: speedtestData, error: speedtestError } = useWidgetAPI(widget, "speedtest/latest");
const bitratePrecision =
!widget?.bitratePrecision || Number.isNaN(widget?.bitratePrecision) || widget?.bitratePrecision < 0
? 0
: widget.bitratePrecision;
if (speedtestError) { if (speedtestError) {
return <Container service={service} error={speedtestError} />; return <Container service={service} error={speedtestError} />;
} }
@ -29,9 +34,18 @@ export default function Component({ service }) {
<Container service={service}> <Container service={service}>
<Block <Block
label="speedtest.download" label="speedtest.download"
value={t("common.bitrate", { value: speedtestData.data.download * 1000 * 1000 })} value={t("common.bitrate", {
value: speedtestData.data.download * 1000 * 1000,
decimals: bitratePrecision,
})}
/>
<Block
label="speedtest.upload"
value={t("common.bitrate", {
value: speedtestData.data.upload * 1000 * 1000,
decimals: bitratePrecision,
})}
/> />
<Block label="speedtest.upload" value={t("common.bitrate", { value: speedtestData.data.upload * 1000 * 1000 })} />
<Block <Block
label="speedtest.ping" label="speedtest.ping"
value={t("common.ms", { value={t("common.ms", {

View File

@ -0,0 +1,33 @@
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 { widget } = service;
const { data: swagData, error: swagError } = useWidgetAPI(widget, "overview");
if (swagError) {
return <Container service={service} error={swagError} />;
}
if (!swagData) {
return (
<Container service={service}>
<Block label="swagdashboard.proxied" />
<Block label="swagdashboard.auth" />
<Block label="swagdashboard.outdated" />
<Block label="swagdashboard.banned" />
</Container>
);
}
return (
<Container service={service}>
<Block label="swagdashboard.proxied" value={swagData.proxied} />
<Block label="swagdashboard.auth" value={swagData.auth} />
<Block label="swagdashboard.outdated" value={swagData.outdated} />
<Block label="swagdashboard.banned" value={swagData.banned} />
</Container>
);
}

View File

@ -0,0 +1,8 @@
import genericProxyHandler from "utils/proxy/handlers/generic";
const widget = {
api: "{url}/?stats=true",
proxyHandler: genericProxyHandler,
};
export default widget;

View File

@ -25,14 +25,32 @@ function millisecondsToString(milliseconds) {
return parts.map((part) => part.toString().padStart(2, "0")).join(":"); return parts.map((part) => part.toString().padStart(2, "0")).join(":");
} }
function SingleSessionEntry({ session }) { function generateStreamTitle(session, enableUser, showEpisodeNumber) {
const { full_title, duration, view_offset, progress_percent, state, video_decision, audio_decision } = session; let stream_title = "";
const { media_type, parent_media_index, media_index, title, grandparent_title, full_title, friendly_name } = session;
if (media_type === "episode" && showEpisodeNumber) {
const season_str = `S${parent_media_index.toString().padStart(2, "0")}`;
const episode_str = `E${media_index.toString().padStart(2, "0")}`;
stream_title = `${grandparent_title}: ${season_str} · ${episode_str} - ${title}`;
} else {
stream_title = full_title;
}
return enableUser ? `${stream_title} (${friendly_name})` : stream_title;
}
function SingleSessionEntry({ session, enableUser, showEpisodeNumber }) {
const { duration, view_offset, progress_percent, state, video_decision, audio_decision } = session;
const stream_title = generateStreamTitle(session, enableUser, showEpisodeNumber);
return ( return (
<> <>
<div className="text-theme-700 dark:text-theme-200 relative h-5 w-full rounded-md bg-theme-200/50 dark:bg-theme-900/20 mt-1 flex"> <div className="text-theme-700 dark:text-theme-200 relative h-5 w-full rounded-md bg-theme-200/50 dark:bg-theme-900/20 mt-1 flex">
<div className="text-xs z-10 self-center ml-2 relative w-full h-4 grow mr-2"> <div className="text-xs z-10 self-center ml-2 relative w-full h-4 grow mr-2">
<div className="absolute w-full whitespace-nowrap text-ellipsis overflow-hidden">{full_title}</div> <div className="absolute w-full whitespace-nowrap text-ellipsis overflow-hidden" title={stream_title}>
{stream_title}
</div>
</div> </div>
<div className="self-center text-xs flex justify-end mr-1.5 pl-1"> <div className="self-center text-xs flex justify-end mr-1.5 pl-1">
{video_decision === "direct play" && audio_decision === "direct play" && ( {video_decision === "direct play" && audio_decision === "direct play" && (
@ -74,8 +92,10 @@ function SingleSessionEntry({ session }) {
); );
} }
function SessionEntry({ session }) { function SessionEntry({ session, enableUser, showEpisodeNumber }) {
const { full_title, view_offset, progress_percent, state, video_decision, audio_decision } = session; const { view_offset, progress_percent, state, video_decision, audio_decision } = session;
const stream_title = generateStreamTitle(session, enableUser, showEpisodeNumber);
return ( return (
<div className="text-theme-700 dark:text-theme-200 relative h-5 w-full rounded-md bg-theme-200/50 dark:bg-theme-900/20 mt-1 flex"> <div className="text-theme-700 dark:text-theme-200 relative h-5 w-full rounded-md bg-theme-200/50 dark:bg-theme-900/20 mt-1 flex">
@ -94,7 +114,9 @@ function SessionEntry({ session }) {
)} )}
</div> </div>
<div className="text-xs z-10 self-center ml-2 relative w-full h-4 grow mr-2"> <div className="text-xs z-10 self-center ml-2 relative w-full h-4 grow mr-2">
<div className="absolute w-full whitespace-nowrap text-ellipsis overflow-hidden">{full_title}</div> <div className="absolute w-full whitespace-nowrap text-ellipsis overflow-hidden" title={stream_title}>
{stream_title}
</div>
</div> </div>
<div className="self-center text-xs flex justify-end mr-1.5 pl-1 z-10"> <div className="self-center text-xs flex justify-end mr-1.5 pl-1 z-10">
{video_decision === "direct play" && audio_decision === "direct play" && ( {video_decision === "direct play" && audio_decision === "direct play" && (
@ -122,6 +144,10 @@ export default function Component({ service }) {
refreshInterval: 5000, refreshInterval: 5000,
}); });
const enableUser = !!service.widget?.enableUser; // default is false
const expandOneStreamToTwoRows = service.widget?.expandOneStreamToTwoRows !== false; // default is true
const showEpisodeNumber = !!service.widget?.showEpisodeNumber; // default is false
if (activityError || (activityData && Object.keys(activityData.response.data).length === 0)) { if (activityError || (activityData && Object.keys(activityData.response.data).length === 0)) {
return <Container service={service} error={activityError ?? { message: t("tautulli.plex_connection_error") }} />; return <Container service={service} error={activityError ?? { message: t("tautulli.plex_connection_error") }} />;
} }
@ -132,9 +158,11 @@ export default function Component({ service }) {
<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>
<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"> {expandOneStreamToTwoRows && (
<span className="absolute left-2 text-xs mt-[2px]">-</span> <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> <span className="absolute left-2 text-xs mt-[2px]">-</span>
</div>
)}
</div> </div>
); );
} }
@ -155,18 +183,20 @@ export default function Component({ service }) {
<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>
<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"> {expandOneStreamToTwoRows && (
<span className="absolute left-2 text-xs mt-[2px]">-</span> <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> <span className="absolute left-2 text-xs mt-[2px]">-</span>
</div>
)}
</div> </div>
); );
} }
if (playing.length === 1) { if (expandOneStreamToTwoRows && playing.length === 1) {
const session = playing[0]; const session = playing[0];
return ( return (
<div className="flex flex-col pb-1 mx-1"> <div className="flex flex-col pb-1 mx-1">
<SingleSessionEntry session={session} /> <SingleSessionEntry session={session} enableUser={enableUser} showEpisodeNumber={showEpisodeNumber} />
</div> </div>
); );
} }
@ -174,7 +204,12 @@ export default function Component({ service }) {
return ( return (
<div className="flex flex-col pb-1 mx-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}
enableUser={enableUser}
showEpisodeNumber={showEpisodeNumber}
/>
))} ))}
</div> </div>
); );

View File

@ -0,0 +1,45 @@
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 { widget } = service;
const { data: infoData, error: infoError } = useWidgetAPI(widget);
if (!widget.fields) {
widget.fields = ["connected", "enabled", "total"];
}
if (infoError) {
return <Container service={service} error={infoError} />;
}
if (!infoData) {
return (
<Container service={service}>
<Block label="wgeasy.connected" />
<Block label="wgeasy.enabled" />
<Block label="wgeasy.disabled" />
<Block label="wgeasy.total" />
</Container>
);
}
const enabled = infoData.filter((item) => item.enabled).length;
const disabled = infoData.length - enabled;
const connectionThreshold = widget.threshold ?? 2 * 60 * 1000;
const currentTime = new Date();
const connected = infoData.filter(
(item) => currentTime - new Date(item.latestHandshakeAt) < connectionThreshold,
).length;
return (
<Container service={service}>
<Block label="wgeasy.connected" value={connected} />
<Block label="wgeasy.enabled" value={enabled} />
<Block label="wgeasy.diabled" value={disabled} />
<Block label="wgeasy.total" value={infoData.length} />
</Container>
);
}

View File

@ -0,0 +1,70 @@
import cache from "memory-cache";
import getServiceWidget from "utils/config/service-helpers";
import { formatApiCall } from "utils/proxy/api-helpers";
import { httpProxy } from "utils/proxy/http";
import widgets from "widgets/widgets";
import createLogger from "utils/logger";
const proxyName = "wgeasyProxyHandler";
const logger = createLogger(proxyName);
const sessionSIDCacheKey = `${proxyName}__sessionSID`;
async function login(widget, service) {
const url = formatApiCall(widgets[widget.type].api, { ...widget, endpoint: "session" });
const [, , , responseHeaders] = await httpProxy(url, {
method: "POST",
body: JSON.stringify({ password: widget.password }),
headers: {
"Content-Type": "application/json",
},
});
try {
const connectSidCookie = responseHeaders["set-cookie"]
.find((cookie) => cookie.startsWith("connect.sid="))
.split(";")[0]
.replace("connect.sid=", "");
cache.put(`${sessionSIDCacheKey}.${service}`, connectSidCookie);
return connectSidCookie;
} catch (e) {
logger.error(`Error logging into wg-easy`);
cache.del(`${sessionSIDCacheKey}.${service}`);
return null;
}
}
export default async function wgeasyProxyHandler(req, res) {
const { group, service } = req.query;
if (group && service) {
const widget = await getServiceWidget(group, service);
if (!widgets?.[widget.type]?.api) {
return res.status(403).json({ error: "Service does not support API calls" });
}
if (widget) {
let sid = cache.get(`${sessionSIDCacheKey}.${service}`);
if (!sid) {
sid = await login(widget, service);
if (!sid) {
return res.status(500).json({ error: "Failed to authenticate with Wg-Easy" });
}
}
const [, , data] = await httpProxy(
formatApiCall(widgets[widget.type].api, { ...widget, endpoint: "wireguard/client" }),
{
headers: {
"Content-Type": "application/json",
Cookie: `connect.sid=${sid}`,
},
},
);
return res.json(JSON.parse(data));
}
}
return res.status(400).json({ error: "Invalid proxy service type" });
}

View File

@ -0,0 +1,8 @@
import wgeasyProxyHandler from "./proxy";
const widget = {
api: "{url}/api/{endpoint}",
proxyHandler: wgeasyProxyHandler,
};
export default widget;

View File

@ -55,6 +55,7 @@ import mjpeg from "./mjpeg/widget";
import moonraker from "./moonraker/widget"; import moonraker from "./moonraker/widget";
import mylar from "./mylar/widget"; import mylar from "./mylar/widget";
import navidrome from "./navidrome/widget"; import navidrome from "./navidrome/widget";
import netalertx from "./netalertx/widget";
import netdata from "./netdata/widget"; import netdata from "./netdata/widget";
import nextcloud from "./nextcloud/widget"; import nextcloud from "./nextcloud/widget";
import nextdns from "./nextdns/widget"; import nextdns from "./nextdns/widget";
@ -73,7 +74,6 @@ import peanut from "./peanut/widget";
import pfsense from "./pfsense/widget"; import pfsense from "./pfsense/widget";
import photoprism from "./photoprism/widget"; import photoprism from "./photoprism/widget";
import proxmoxbackupserver from "./proxmoxbackupserver/widget"; import proxmoxbackupserver from "./proxmoxbackupserver/widget";
import pialert from "./pialert/widget";
import pihole from "./pihole/widget"; import pihole from "./pihole/widget";
import plantit from "./plantit/widget"; import plantit from "./plantit/widget";
import plex from "./plex/widget"; import plex from "./plex/widget";
@ -94,6 +94,7 @@ import sonarr from "./sonarr/widget";
import speedtest from "./speedtest/widget"; import speedtest from "./speedtest/widget";
import stash from "./stash/widget"; import stash from "./stash/widget";
import strelaysrv from "./strelaysrv/widget"; import strelaysrv from "./strelaysrv/widget";
import swagdashboard from "./swagdashboard/widget";
import tailscale from "./tailscale/widget"; import tailscale from "./tailscale/widget";
import tandoor from "./tandoor/widget"; import tandoor from "./tandoor/widget";
import tautulli from "./tautulli/widget"; import tautulli from "./tautulli/widget";
@ -107,6 +108,7 @@ import unmanic from "./unmanic/widget";
import uptimekuma from "./uptimekuma/widget"; import uptimekuma from "./uptimekuma/widget";
import uptimerobot from "./uptimerobot/widget"; import uptimerobot from "./uptimerobot/widget";
import watchtower from "./watchtower/widget"; import watchtower from "./watchtower/widget";
import wgeasy from "./wgeasy/widget";
import whatsupdocker from "./whatsupdocker/widget"; import whatsupdocker from "./whatsupdocker/widget";
import xteve from "./xteve/widget"; import xteve from "./xteve/widget";
import urbackup from "./urbackup/widget"; import urbackup from "./urbackup/widget";
@ -171,6 +173,7 @@ const widgets = {
moonraker, moonraker,
mylar, mylar,
navidrome, navidrome,
netalertx,
netdata, netdata,
nextcloud, nextcloud,
nextdns, nextdns,
@ -189,7 +192,7 @@ const widgets = {
pfsense, pfsense,
photoprism, photoprism,
proxmoxbackupserver, proxmoxbackupserver,
pialert, pialert: netalertx,
pihole, pihole,
plantit, plantit,
plex, plex,
@ -211,6 +214,7 @@ const widgets = {
speedtest, speedtest,
stash, stash,
strelaysrv, strelaysrv,
swagdashboard,
tailscale, tailscale,
tandoor, tandoor,
tautulli, tautulli,
@ -226,6 +230,7 @@ const widgets = {
uptimerobot, uptimerobot,
urbackup, urbackup,
watchtower, watchtower,
wgeasy,
whatsupdocker, whatsupdocker,
xteve, xteve,
}; };