Compare commits

..

1 Commits

Author SHA1 Message Date
shamoon
4d8a587d8b Update docker-entrypoint.sh 2025-07-16 09:44:23 -07:00
88 changed files with 7912 additions and 9688 deletions

View File

@@ -17,7 +17,7 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v5 uses: actions/checkout@v4
- name: crowdin action - name: crowdin action
uses: crowdin/github-action@v2 uses: crowdin/github-action@v2
with: with:

View File

@@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v5 uses: actions/checkout@v4
- name: Install python - name: Install python
uses: actions/setup-python@v5 uses: actions/setup-python@v5
@@ -61,7 +61,7 @@ jobs:
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v5 uses: actions/checkout@v4
- name: Extract Docker metadata - name: Extract Docker metadata
id: meta id: meta

View File

@@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v5 uses: actions/checkout@v4
- name: Install python - name: Install python
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
@@ -32,7 +32,7 @@ jobs:
needs: needs:
- pre-commit - pre-commit
steps: steps:
- uses: actions/checkout@v5 - uses: actions/checkout@v4
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: 3.x python-version: 3.x
@@ -54,7 +54,7 @@ jobs:
needs: needs:
- pre-commit - pre-commit
steps: steps:
- uses: actions/checkout@v5 - uses: actions/checkout@v4
- name: Configure Git Credentials - name: Configure Git Credentials
run: | run: |
git config user.name github-actions[bot] git config user.name github-actions[bot]

View File

@@ -212,9 +212,9 @@ jobs:
} }
const CUTOFF_1_DAYS = 180; const CUTOFF_1_DAYS = 180;
const CUTOFF_1_COUNT = 20; const CUTOFF_1_COUNT = 10;
const CUTOFF_2_DAYS = 365; const CUTOFF_2_DAYS = 365;
const CUTOFF_2_COUNT = 40; const CUTOFF_2_COUNT = 20;
const cutoff1Date = new Date(); const cutoff1Date = new Date();
cutoff1Date.setDate(cutoff1Date.getDate() - CUTOFF_1_DAYS); cutoff1Date.setDate(cutoff1Date.getDate() - CUTOFF_1_DAYS);

View File

@@ -63,7 +63,7 @@ The homepage team appreciates all effort and interest from the community in fili
- Issues, pull requests and discussions that are closed will be locked after 30 days of inactivity. - Issues, pull requests and discussions that are closed will be locked after 30 days of inactivity.
- Discussions with a marked answer will be automatically closed. - Discussions with a marked answer will be automatically closed.
- Discussions in the 'General' or 'Support' categories will be closed after 180 days of inactivity. - Discussions in the 'General' or 'Support' categories will be closed after 180 days of inactivity.
- Feature requests that do not meet the following thresholds will be closed: 20 "up-votes" after 180 days of inactivity or 40 "up-votes" after 365 days. - Feature requests that do not meet the following thresholds will be closed: 10 "up-votes" after 180 days of inactivity or 20 "up-votes" after 365 days.
In all cases, threads can be re-opened by project maintainers and, of course, users can always create a new discussion for related concerns. In all cases, threads can be re-opened by project maintainers and, of course, users can always create a new discussion for related concerns.
Finally, remember that all information remains searchable and 'closed' feature requests can still serve as inspiration for new features. Finally, remember that all information remains searchable and 'closed' feature requests can still serve as inspiration for new features.

View File

@@ -17,13 +17,15 @@ if [ -e /app/config ]; then
CURRENT_UID=$(stat -c %u /app/config) CURRENT_UID=$(stat -c %u /app/config)
CURRENT_GID=$(stat -c %g /app/config) CURRENT_GID=$(stat -c %g /app/config)
if [ "$CURRENT_UID" -ne "$PUID" ] || [ "$CURRENT_GID" -ne "$PGID" ]; then if [ "$CURRENT_UID" -eq "$PUID" ] && [ "$CURRENT_GID" -eq "$PGID" ]; then
echo "Fixing ownership of /app/config" echo "/app/config already owned by correct UID/GID, skipping chown"
if ! chown -R "$PUID:$PGID" /app/config 2>/dev/null; then if ! [ -w /app/config ]; then
echo "Warning: Could not chown /app/config; continuing anyway" echo "Warning: /app/config is not writable by UID $PUID — this can happen with bind mounts"
echo "Hint: Run 'chmod -R u+rwX /path/to/config' on the host"
fi fi
else else
echo "/app/config already owned by correct UID/GID, skipping chown" echo "Fixing ownership of /app/config"
chown -R "$PUID:$PGID" /app/config 2>/dev/null || echo "Warning: Could not chown /app/config"
fi fi
else else
echo "/app/config does not exist; skipping ownership check" echo "/app/config does not exist; skipping ownership check"

View File

@@ -264,7 +264,7 @@ fullWidth: true
### Maximum Group Columns ### Maximum Group Columns
You can set the maximum number of columns of groups on larger screen sizes (note this is only for groups with the default `style: columns`, not groups with `style: row`) by adding: You can set the maximum number of columns of groups on larger screen sizes (note this is only for groups with the default `style: columns`, not groups with `stle: row`) by adding:
```yaml ```yaml
maxGroupColumns: 8 # default is 4 for services, 6 for bookmarks, max 8 maxGroupColumns: 8 # default is 4 for services, 6 for bookmarks, max 8

View File

@@ -225,8 +225,20 @@ const widgetExample = {
#### `method` #### `method`
The `method` represents the HTTP method that should be used to make the API request. The default value is `GET`. Note that `POST` requests are not allowed via the The `method` property is a string that represents the HTTP method that should be used to make the API request. The default value is `GET`.
widget API and require the use of a custom proxy.
```js
const widgetExample = {
api: "{url}/api/{endpoint}",
mappings: {
// `/api/stats`
stats: {
endpoint: "stats",
method: "POST",
},
},
};
```
#### `headers` #### `headers`
@@ -239,6 +251,7 @@ const widgetExample = {
// `/api/stats` // `/api/stats`
stats: { stats: {
endpoint: "stats", endpoint: "stats",
method: "POST",
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json",
}, },
@@ -258,6 +271,7 @@ const widgetExample = {
// `/api/graphql` // `/api/graphql`
stats: { stats: {
endpoint: "graphql", endpoint: "graphql",
method: "POST",
body: { body: {
query: ` query: `
query { query {

View File

@@ -17,15 +17,9 @@ The account you made the API token for also needs the following **Assigned globa
Allowed fields: `["users", "loginsLast24H", "failedLoginsLast24H"]`. Allowed fields: `["users", "loginsLast24H", "failedLoginsLast24H"]`.
| Authentik Version | Homepage Widget Version |
| ----------------- | ----------------------- |
| < 2025.8.0 | 1 (default) |
| >= 2025.8.0 | 2 |
```yaml ```yaml
widget: widget:
type: authentik type: authentik
url: http://authentik.host.or.ip:port url: http://authentik.host.or.ip:port
key: api_token key: api_token
version: 2 # optional, default is 1
``` ```

View File

@@ -9,7 +9,7 @@ The widget has two modes, a single system with detailed info if `systemId` is pr
The `systemID` is the `id` field on the collections page of Beszel under the PocketBase admin panel. You can also use the 'nice name' from the Beszel UI. The `systemID` is the `id` field on the collections page of Beszel under the PocketBase admin panel. You can also use the 'nice name' from the Beszel UI.
A "superuser" is currently required to access the data from the Beszel API. A "superuser" is currently required to access the data from tbe Beszel API.
Allowed fields for 'overview' mode: `["systems", "up"]` Allowed fields for 'overview' mode: `["systems", "up"]`
Allowed fields for a single system: `["name", "status", "updated", "cpu", "memory", "disk", "network"]` Allowed fields for a single system: `["name", "status", "updated", "cpu", "memory", "disk", "network"]`

View File

@@ -18,7 +18,7 @@ To access these system metrics you need to connect to the DiskStation (`DSM`) wi
3. Under the `User Groups` tab of the user config dialogue check the box for `Administrators`. 3. Under the `User Groups` tab of the user config dialogue check the box for `Administrators`.
4. On the `Permissions` tab check the top box for `No Access`, effectively prohibiting the user from accessing anything in the shared folders. 4. On the `Permissions` tab check the top box for `No Access`, effectively prohibiting the user from accessing anything in the shared folders.
5. Under `Applications` check the box next to `Deny` in the header to explicitly prohibit login to all applications. 5. Under `Applications` check the box next to `Deny` in the header to explicitly prohibit login to all applications.
6. Now _only_ allow login to the `DSM` and `Download Station` applications, either by 6. Now _only_ allow login to the `DSM` application, either by
- unchecking `Deny` in the respective row, or (if inheriting permission doesn't work because of other group settings) - unchecking `Deny` in the respective row, or (if inheriting permission doesn't work because of other group settings)
- checking `Allow` for this app, or - checking `Allow` for this app, or
- checking `By IP` for this app to limit the source of login attempts to one or more IP addresses/subnets. - checking `By IP` for this app to limit the source of login attempts to one or more IP addresses/subnets.

View File

@@ -1,19 +0,0 @@
---
title: Filebrowser
description: Filebrowser Widget Configuration
---
Learn more about [Filebrowser](https://filebrowser.org).
If you are using [Proxy header authentication](https://filebrowser.org/configuration/authentication-method#proxy-header) you have to set `authHeader` and `username`.
Allowed fields: `["available", "used", "total"]`.
```yaml
widget:
type: filebrowser
url: http://filebrowserhostorip:port
username: username
password: password
authHeader: X-My-Header # If using Proxy header authentication
```

View File

@@ -14,6 +14,8 @@ Find your API key under `Account Settings > API Keys`.
Allowed fields: `["users" ,"photos", "videos", "storage"]`. Allowed fields: `["users" ,"photos", "videos", "storage"]`.
Note that API key must be from admin user.
```yaml ```yaml
widget: widget:
type: immich type: immich

View File

@@ -22,7 +22,6 @@ You can also find a list of all available service widgets in the sidebar navigat
- [Calibre-Web](calibre-web.md) - [Calibre-Web](calibre-web.md)
- [ChangeDetection.io](changedetectionio.md) - [ChangeDetection.io](changedetectionio.md)
- [Channels DVR Server](channelsdvrserver.md) - [Channels DVR Server](channelsdvrserver.md)
- [Checkmk](checkmk.md)
- [Cloudflared](cloudflared.md) - [Cloudflared](cloudflared.md)
- [Coin Market Cap](coin-market-cap.md) - [Coin Market Cap](coin-market-cap.md)
- [CrowdSec](crowdsec.md) - [CrowdSec](crowdsec.md)
@@ -34,7 +33,6 @@ You can also find a list of all available service widgets in the sidebar navigat
- [Emby](emby.md) - [Emby](emby.md)
- [ESPHome](esphome.md) - [ESPHome](esphome.md)
- [EVCC](evcc.md) - [EVCC](evcc.md)
- [Filebrowser](filebrowser.md)
- [Fileflows](fileflows.md) - [Fileflows](fileflows.md)
- [Firefly III](firefly.md) - [Firefly III](firefly.md)
- [Flood](flood.md) - [Flood](flood.md)
@@ -63,10 +61,8 @@ You can also find a list of all available service widgets in the sidebar navigat
- [JDownloader](jdownloader.md) - [JDownloader](jdownloader.md)
- [Jellyfin](jellyfin.md) - [Jellyfin](jellyfin.md)
- [Jellyseerr](jellyseerr.md) - [Jellyseerr](jellyseerr.md)
- [Jellystat](jellystat.md)
- [Kavita](kavita.md) - [Kavita](kavita.md)
- [Komga](komga.md) - [Komga](komga.md)
- [Komodo](komodo.md)
- [Kopia](kopia.md) - [Kopia](kopia.md)
- [Lidarr](lidarr.md) - [Lidarr](lidarr.md)
- [Linkwarden](linkwarden.md) - [Linkwarden](linkwarden.md)
@@ -134,7 +130,6 @@ You can also find a list of all available service widgets in the sidebar navigat
- [TDarr](tdarr.md) - [TDarr](tdarr.md)
- [Traefik](traefik.md) - [Traefik](traefik.md)
- [Transmission](transmission.md) - [Transmission](transmission.md)
- [Trilium](trilium.md)
- [TrueNAS](truenas.md) - [TrueNAS](truenas.md)
- [TubeArchivist](tubearchivist.md) - [TubeArchivist](tubearchivist.md)
- [UniFi Controller](unifi-controller.md) - [UniFi Controller](unifi-controller.md)
@@ -143,7 +138,6 @@ You can also find a list of all available service widgets in the sidebar navigat
- [UptimeRobot](uptimerobot.md) - [UptimeRobot](uptimerobot.md)
- [UrBackup](urbackup.md) - [UrBackup](urbackup.md)
- [Vikunja](vikunja.md) - [Vikunja](vikunja.md)
- [Wallos](wallos.md)
- [Watchtower](watchtower.md) - [Watchtower](watchtower.md)
- [WGEasy](wgeasy.md) - [WGEasy](wgeasy.md)
- [WhatsUpDocker](whatsupdocker.md) - [WhatsUpDocker](whatsupdocker.md)

View File

@@ -9,8 +9,6 @@ This widget is compatible with [TriliumNext](https://github.com/TriliumNext/Note
Find (or create) your ETAPI key under `Options > ETAPI > Create new ETAPI token`. Find (or create) your ETAPI key under `Options > ETAPI > Create new ETAPI token`.
Allowed fields: `["version", "notesCount", "dbSize"]`
```yaml ```yaml
widget: widget:
type: trilium type: trilium

View File

@@ -1,23 +0,0 @@
---
title: Wallos
description: Wallos Widget Configuration
---
Learn more about [Wallos](https://github.com/ellite/wallos).
If you're using more than one currency to record subscriptions then you should also have your "Fixer API" key set-up (`Settings > Fixer API Key`).
> **Please Note:** The monthly cost displayed is the total cost of subscriptions in that month, **not** the _"monthly"_ average cost.
Get your API key under `Profile > API Key`.
Allowed fields: `["activeSubscriptions", "nextRenewingSubscription", "previousMonthlyCost", "thisMonthlyCost", "nextMonthlyCost"]`.
Default fields: `["activeSubscriptions", "nextRenewingSubscription", "thisMonthlyCost", "nextMonthlyCost"]`.
```yaml
widget:
type: wallos
url: http://wallos.host.or.ip
key: apikeyapikeyapikeyapikeyapikey
```

View File

@@ -25,7 +25,6 @@ nav:
- configs/services.md - configs/services.md
- configs/kubernetes.md - configs/kubernetes.md
- configs/docker.md - configs/docker.md
- configs/proxmox.md
- configs/custom-css-js.md - configs/custom-css-js.md
- "Widgets": - "Widgets":
- widgets/index.md - widgets/index.md
@@ -46,7 +45,6 @@ nav:
- widgets/services/calibre-web.md - widgets/services/calibre-web.md
- widgets/services/changedetectionio.md - widgets/services/changedetectionio.md
- widgets/services/channelsdvrserver.md - widgets/services/channelsdvrserver.md
- widgets/services/checkmk.md
- widgets/services/cloudflared.md - widgets/services/cloudflared.md
- widgets/services/coin-market-cap.md - widgets/services/coin-market-cap.md
- widgets/services/crowdsec.md - widgets/services/crowdsec.md
@@ -58,7 +56,6 @@ nav:
- widgets/services/emby.md - widgets/services/emby.md
- widgets/services/esphome.md - widgets/services/esphome.md
- widgets/services/evcc.md - widgets/services/evcc.md
- widgets/services/filebrowser.md
- widgets/services/fileflows.md - widgets/services/fileflows.md
- widgets/services/firefly.md - widgets/services/firefly.md
- widgets/services/flood.md - widgets/services/flood.md
@@ -87,10 +84,8 @@ nav:
- widgets/services/jdownloader.md - widgets/services/jdownloader.md
- widgets/services/jellyfin.md - widgets/services/jellyfin.md
- widgets/services/jellyseerr.md - widgets/services/jellyseerr.md
- widgets/services/jellystat.md
- widgets/services/kavita.md - widgets/services/kavita.md
- widgets/services/komga.md - widgets/services/komga.md
- widgets/services/komodo.md
- widgets/services/kopia.md - widgets/services/kopia.md
- widgets/services/lidarr.md - widgets/services/lidarr.md
- widgets/services/linkwarden.md - widgets/services/linkwarden.md
@@ -145,7 +140,6 @@ nav:
- widgets/services/rutorrent.md - widgets/services/rutorrent.md
- widgets/services/sabnzbd.md - widgets/services/sabnzbd.md
- widgets/services/scrutiny.md - widgets/services/scrutiny.md
- widgets/services/slskd.md
- widgets/services/sonarr.md - widgets/services/sonarr.md
- widgets/services/speedtest-tracker.md - widgets/services/speedtest-tracker.md
- widgets/services/spoolman.md - widgets/services/spoolman.md
@@ -160,7 +154,6 @@ nav:
- widgets/services/tdarr.md - widgets/services/tdarr.md
- widgets/services/traefik.md - widgets/services/traefik.md
- widgets/services/transmission.md - widgets/services/transmission.md
- widgets/services/trilium.md
- widgets/services/truenas.md - widgets/services/truenas.md
- widgets/services/tubearchivist.md - widgets/services/tubearchivist.md
- widgets/services/unifi-controller.md - widgets/services/unifi-controller.md
@@ -169,7 +162,6 @@ nav:
- widgets/services/uptimerobot.md - widgets/services/uptimerobot.md
- widgets/services/urbackup.md - widgets/services/urbackup.md
- widgets/services/vikunja.md - widgets/services/vikunja.md
- widgets/services/wallos.md
- widgets/services/watchtower.md - widgets/services/watchtower.md
- widgets/services/wgeasy.md - widgets/services/wgeasy.md
- widgets/services/whatsupdocker.md - widgets/services/whatsupdocker.md

View File

@@ -1,6 +1,6 @@
{ {
"name": "homepage", "name": "homepage",
"version": "1.4.6", "version": "1.3.2",
"private": true, "private": true,
"scripts": { "scripts": {
"preinstall": "npx only-allow pnpm", "preinstall": "npx only-allow pnpm",
@@ -15,8 +15,8 @@
"@kubernetes/client-node": "^1.0.0", "@kubernetes/client-node": "^1.0.0",
"classnames": "^2.5.1", "classnames": "^2.5.1",
"compare-versions": "^6.1.1", "compare-versions": "^6.1.1",
"dockerode": "^4.0.7", "dockerode": "^4.0.4",
"follow-redirects": "^1.15.11", "follow-redirects": "^1.15.9",
"gamedig": "^5.2.0", "gamedig": "^5.2.0",
"i18next": "^24.2.3", "i18next": "^24.2.3",
"ical.js": "^2.1.0", "ical.js": "^2.1.0",
@@ -25,7 +25,7 @@
"luxon": "^3.6.1", "luxon": "^3.6.1",
"memory-cache": "^0.2.0", "memory-cache": "^0.2.0",
"minecraftstatuspinger": "^1.2.2", "minecraftstatuspinger": "^1.2.2",
"next": "^15.4.5", "next": "^15.3.1",
"next-i18next": "^12.1.0", "next-i18next": "^12.1.0",
"ping": "^0.4.4", "ping": "^0.4.4",
"pretty-bytes": "^6.1.1", "pretty-bytes": "^6.1.1",
@@ -48,12 +48,12 @@
"eslint": "^9.25.1", "eslint": "^9.25.1",
"eslint-config-next": "^15.2.4", "eslint-config-next": "^15.2.4",
"eslint-config-prettier": "^10.1.1", "eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.32.0", "eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2", "eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.1", "eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.4", "eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0", "eslint-plugin-react-hooks": "^5.2.0",
"postcss": "^8.5.6", "postcss": "^8.5.3",
"prettier": "^3.6.2", "prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.1.0", "prettier-plugin-organize-imports": "^4.1.0",
"tailwind-scrollbar": "^4.0.2", "tailwind-scrollbar": "^4.0.2",
@@ -72,7 +72,6 @@
}, },
"pnpm": { "pnpm": {
"onlyBuiltDependencies": [ "onlyBuiltDependencies": [
"osx-temperature-sensor",
"sharp" "sharp"
] ]
} }

794
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -108,8 +108,8 @@
"songs": "Liedjies" "songs": "Liedjies"
}, },
"esphome": { "esphome": {
"offline": "Vanlyn af", "offline": "Vanlyn",
"offline_alt": "Vanlyn af", "offline_alt": "Vanlyn",
"online": "Aanlyn", "online": "Aanlyn",
"total": "Totaal", "total": "Totaal",
"unknown": "Onbekend" "unknown": "Onbekend"
@@ -189,7 +189,7 @@
"plex": { "plex": {
"streams": "Aktiewe Strome", "streams": "Aktiewe Strome",
"albums": "Albums", "albums": "Albums",
"movies": "Movies", "movies": "Flieks",
"tv": "TV Programme" "tv": "TV Programme"
}, },
"sabnzbd": { "sabnzbd": {
@@ -242,15 +242,15 @@
"wanted": "Gesoek", "wanted": "Gesoek",
"queued": "In ry", "queued": "In ry",
"series": "Reekse", "series": "Reekse",
"queue": "Toustaan", "queue": "Tou",
"unknown": "Onbekend" "unknown": "Onbekend"
}, },
"radarr": { "radarr": {
"wanted": "Gesoek", "wanted": "Gesoek",
"missing": "Vermis", "missing": "Vermis",
"queued": "In ry", "queued": "In ry",
"movies": "Movies", "movies": "Flieks",
"queue": "Toustaan", "queue": "Tou",
"unknown": "Onbekend" "unknown": "Onbekend"
}, },
"lidarr": { "lidarr": {
@@ -302,7 +302,7 @@
"latency": "Latensie" "latency": "Latensie"
}, },
"speedtest": { "speedtest": {
"upload": "Oplaai", "upload": "Laai Op",
"download": "Aflaai", "download": "Aflaai",
"ping": "Pieng" "ping": "Pieng"
}, },
@@ -359,14 +359,8 @@
"services": "Dienste", "services": "Dienste",
"middleware": "Filtreerprogramme" "middleware": "Filtreerprogramme"
}, },
"trilium": {
"version": "Weergawe",
"notesCount": "Notas",
"dbSize": "Databasis Grootte",
"unknown": "Onbekend"
},
"navidrome": { "navidrome": {
"nothing_streaming": "Geen Aktiewe Strome", "nothing_streaming": "Geen aktiewe strome nie",
"please_wait": "Wag Asseblief" "please_wait": "Wag Asseblief"
}, },
"npm": { "npm": {
@@ -395,7 +389,7 @@
}, },
"jackett": { "jackett": {
"configured": "Opgestel", "configured": "Opgestel",
"errored": "Gefout" "errored": "Fout"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Sessies", "numActiveSessions": "Sessies",
@@ -418,7 +412,7 @@
"version": "Weergawe", "version": "Weergawe",
"status": "Status", "status": "Status",
"up": "Aanlyn", "up": "Aanlyn",
"down": "Vanlyn af" "down": "Vanlyn"
}, },
"miniflux": { "miniflux": {
"read": "Gelees", "read": "Gelees",
@@ -555,7 +549,7 @@
"indexers": "Indekseerders" "indexers": "Indekseerders"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Toustaan", "downloads": "Tou",
"videos": "Videos", "videos": "Videos",
"channels": "Kanale", "channels": "Kanale",
"playlists": "Snitlyste" "playlists": "Snitlyste"
@@ -563,7 +557,7 @@
"truenas": { "truenas": {
"load": "Stelsellading", "load": "Stelsellading",
"uptime": "Optyd", "uptime": "Optyd",
"alerts": "Opletberigte" "alerts": "Waarskuwings"
}, },
"pyload": { "pyload": {
"speed": "Spoed", "speed": "Spoed",
@@ -773,7 +767,7 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Monitering", "monitoring": "Monitering",
"updates": "Opdaterings" "updates": "Opdatering"
}, },
"calibreweb": { "calibreweb": {
"books": "Boeke", "books": "Boeke",
@@ -807,7 +801,7 @@
"gamedig": { "gamedig": {
"status": "Status", "status": "Status",
"online": "Aanlyn", "online": "Aanlyn",
"offline": "Vanlyn af", "offline": "Vanlyn",
"name": "Naam", "name": "Naam",
"map": "Kaart", "map": "Kaart",
"currentPlayers": "Huidige Spelers", "currentPlayers": "Huidige Spelers",
@@ -878,7 +872,7 @@
"domains": "Domeine", "domains": "Domeine",
"mailboxes": "Posbusse", "mailboxes": "Posbusse",
"mails": "E-posse", "mails": "E-posse",
"storage": "Stoor plek" "storage": "Bergplek"
}, },
"netdata": { "netdata": {
"warnings": "Waarskuwings", "warnings": "Waarskuwings",
@@ -908,7 +902,7 @@
"galleries": "Galerye", "galleries": "Galerye",
"performers": "Kunstenaars", "performers": "Kunstenaars",
"studios": "Ateljees", "studios": "Ateljees",
"movies": "Movies", "movies": "Flieks",
"tags": "Merkers", "tags": "Merkers",
"oCount": "O Tel" "oCount": "O Tel"
}, },
@@ -926,13 +920,13 @@
"totalValue": "Totale Waarde" "totalValue": "Totale Waarde"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Opletberigte", "alerts": "Waarskuwings",
"bans": "Verbanne" "bans": "Verbanne"
}, },
"wgeasy": { "wgeasy": {
"connected": "Gekoppel", "connected": "Gekoppel",
"enabled": "Geaktiveer", "enabled": "Geaktiveer",
"disabled": "Gediaktiveer", "disabled": "Onaktief",
"total": "Totaal" "total": "Totaal"
}, },
"swagdashboard": { "swagdashboard": {
@@ -944,7 +938,7 @@
"myspeed": { "myspeed": {
"ping": "Pieng", "ping": "Pieng",
"download": "Aflaai", "download": "Aflaai",
"upload": "Oplaai" "upload": "Laai Op"
}, },
"stocks": { "stocks": {
"stocks": "Aandele", "stocks": "Aandele",
@@ -965,7 +959,7 @@
}, },
"zabbix": { "zabbix": {
"unclassified": "Nie geklassifiseer nie", "unclassified": "Nie geklassifiseer nie",
"information": "Inligting", "information": "Informasie",
"warning": "Waarskuwing", "warning": "Waarskuwing",
"average": "Gemiddeld", "average": "Gemiddeld",
"high": "Hoog", "high": "Hoog",
@@ -988,7 +982,7 @@
"headscale": { "headscale": {
"name": "Naam", "name": "Naam",
"address": "Adres", "address": "Adres",
"last_seen": "Laas gesien", "last_seen": "Laaste Gesien",
"status": "Status", "status": "Status",
"online": "Aanlyn", "online": "Aanlyn",
"offline": "Vanlyn" "offline": "Vanlyn"
@@ -1014,7 +1008,7 @@
"healthy": "Gesond", "healthy": "Gesond",
"degraded": "Gedegradeer", "degraded": "Gedegradeer",
"progressing": "Vorderend", "progressing": "Vorderend",
"missing": "Afwesig", "missing": "Vermis",
"suspended": "Geskors" "suspended": "Geskors"
}, },
"spoolman": { "spoolman": {
@@ -1053,35 +1047,12 @@
}, },
"jellystat": { "jellystat": {
"songs": "Liedjies", "songs": "Liedjies",
"movies": "Movies", "movies": "Flieks",
"episodes": "Episode", "episodes": "Episodes",
"other": "Ander" "other": "Ander"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Diensprobleme", "serviceErrors": "Diensprobleme",
"hostErrors": "Gasheerprobleme" "hostErrors": "Gasheerprobleme"
},
"komodo": {
"total": "Totaal",
"running": "Lopend",
"stopped": "Gestop",
"down": "Af",
"unhealthy": "Ongesond",
"unknown": "Onbekend",
"servers": "Bedieners",
"stacks": "Stapels",
"containers": "Houers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -61,15 +61,15 @@
"wlan_devices": "WLAN Enheder", "wlan_devices": "WLAN Enheder",
"lan_users": "LAN Brugere", "lan_users": "LAN Brugere",
"wlan_users": "WLAN Brugere", "wlan_users": "WLAN Brugere",
"up": "UP", "up": "OP",
"down": "NED", "down": "NED",
"wait": "Please wait", "wait": "Vent venligst",
"empty_data": "Subsystem status ukendt" "empty_data": "Subsystem status ukendt"
}, },
"docker": { "docker": {
"rx": "RX", "rx": "RX",
"tx": "TX", "tx": "TX",
"mem": "MEM", "mem": "RAM",
"cpu": "CPU", "cpu": "CPU",
"running": "Kører", "running": "Kører",
"offline": "Offline", "offline": "Offline",
@@ -83,7 +83,7 @@
"partial": "Delvis" "partial": "Delvis"
}, },
"ping": { "ping": {
"error": "Error", "error": "Fejl",
"ping": "Ping", "ping": "Ping",
"down": "Ned", "down": "Ned",
"up": "Op", "up": "Op",
@@ -91,11 +91,11 @@
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "HTTP-status", "http_status": "HTTP-status",
"error": "Error", "error": "Fejl",
"response": "Response", "response": "Response",
"down": "Down", "down": "Ned",
"up": "Up", "up": "Op",
"not_available": "Not Available" "not_available": "Ikke tilgængelig"
}, },
"emby": { "emby": {
"playing": "Afspiller", "playing": "Afspiller",
@@ -112,7 +112,7 @@
"offline_alt": "Offline", "offline_alt": "Offline",
"online": "Online", "online": "Online",
"total": "Total", "total": "Total",
"unknown": "Unknown" "unknown": "Ukendt"
}, },
"evcc": { "evcc": {
"pv_power": "Produktion", "pv_power": "Produktion",
@@ -141,11 +141,11 @@
"connectionStatusDisconnecting": "Disconnecting", "connectionStatusDisconnecting": "Disconnecting",
"connectionStatusDisconnected": "Disconnected", "connectionStatusDisconnected": "Disconnected",
"connectionStatusConnected": "Connected", "connectionStatusConnected": "Connected",
"uptime": "Uptime", "uptime": "Oppetid",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
"down": "Down", "down": "Ned",
"up": "Up", "up": "Op",
"received": "Modtaget", "received": "Modtaget",
"sent": "Sendt", "sent": "Sendt",
"externalIPAddress": "Ekstern IP", "externalIPAddress": "Ekstern IP",
@@ -168,10 +168,10 @@
"passes": "Bestået" "passes": "Bestået"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "Afspiller",
"transcoding": "Transcoding", "transcoding": "Transcoder",
"bitrate": "Bitrate", "bitrate": "Bitrate",
"no_active": "No Active Streams", "no_active": "Ingen Aktive Streams",
"plex_connection_error": "Tjek Plex-forbindelse" "plex_connection_error": "Tjek Plex-forbindelse"
}, },
"omada": { "omada": {
@@ -189,11 +189,11 @@
"plex": { "plex": {
"streams": "Aktive Streams", "streams": "Aktive Streams",
"albums": "Albums", "albums": "Albums",
"movies": "Movies", "movies": "Film",
"tv": "TV-Shows" "tv": "TV-Shows"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "Sats",
"queue": "Kø", "queue": "Kø",
"timeleft": "Resterende tid" "timeleft": "Resterende tid"
}, },
@@ -241,26 +241,26 @@
"sonarr": { "sonarr": {
"wanted": "Ønsket", "wanted": "Ønsket",
"queued": "I Kø", "queued": "I Kø",
"series": "Series", "series": "Serier",
"queue": "Queue", "queue": "",
"unknown": "Unknown" "unknown": "Ukendt"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Ønsket",
"missing": "Mangler", "missing": "Mangler",
"queued": "Queued", "queued": "I Kø",
"movies": "Movies", "movies": "Film",
"queue": "Queue", "queue": "",
"unknown": "Unknown" "unknown": "Ukendt"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Ønsket",
"queued": "Queued", "queued": "I Kø",
"artists": "Artister" "artists": "Artister"
}, },
"readarr": { "readarr": {
"wanted": "Wanted", "wanted": "Ønsket",
"queued": "Queued", "queued": "I Kø",
"books": "Bøger" "books": "Bøger"
}, },
"bazarr": { "bazarr": {
@@ -273,15 +273,15 @@
"available": "Tilgængelig" "available": "Tilgængelig"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pending", "pending": "Afventer",
"approved": "Approved", "approved": "Godkendt",
"available": "Available" "available": "Tilgængelig"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "Afventer",
"processing": "Behandler", "processing": "Behandler",
"approved": "Approved", "approved": "Godkendt",
"available": "Available" "available": "Tilgængelig"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Total",
@@ -296,8 +296,8 @@
"gravity": "Tyngdekraft" "gravity": "Tyngdekraft"
}, },
"adguard": { "adguard": {
"queries": "Queries", "queries": "Forespørgsler",
"blocked": "Blocked", "blocked": "Blokerede",
"filtered": "Filtreret", "filtered": "Filtreret",
"latency": "Latenstid" "latency": "Latenstid"
}, },
@@ -307,15 +307,15 @@
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "Kører",
"stopped": "Stoppede", "stopped": "Stoppede",
"total": "Total" "total": "Total"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Hentet",
"nondownload": "Non-Downloaded", "nondownload": "Non-Downloaded",
"read": "Read", "read": "Læst",
"unread": "Unread", "unread": "Ulæst",
"downloadedread": "Downloaded & Read", "downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread", "downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read", "nondownloadedread": "Non-Downloaded & Read",
@@ -336,7 +336,7 @@
"ago": "{{value}} Siden" "ago": "{{value}} Siden"
}, },
"technitium": { "technitium": {
"totalQueries": "Queries", "totalQueries": "Forespørgsler",
"totalNoError": "Success", "totalNoError": "Success",
"totalServerFailure": "Failures", "totalServerFailure": "Failures",
"totalNxDomain": "NX Domains", "totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative", "totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive", "totalRecursive": "Recursive",
"totalCached": "Cached", "totalCached": "Cached",
"totalBlocked": "Blocked", "totalBlocked": "Blokerede",
"totalDropped": "Dropped", "totalDropped": "Dropped",
"totalClients": "Klienter" "totalClients": "Klienter"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "",
"processed": "Behandlet", "processed": "Behandlet",
"errored": "Fejlet", "errored": "Fejlet",
"saved": "Gemt" "saved": "Gemt"
@@ -359,14 +359,8 @@
"services": "Tjenester", "services": "Tjenester",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "Ingen Aktive Streams",
"please_wait": "Vent venligst" "please_wait": "Vent venligst"
}, },
"npm": { "npm": {
@@ -383,35 +377,35 @@
}, },
"gotify": { "gotify": {
"apps": "Applikationer", "apps": "Applikationer",
"clients": "Clients", "clients": "Klienter",
"messages": "Beskeder" "messages": "Beskeder"
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "Indeksører", "enableIndexers": "Indeksører",
"numberOfGrabs": "Grab", "numberOfGrabs": "Grab",
"numberOfQueries": "Queries", "numberOfQueries": "Forespørgsler",
"numberOfFailGrabs": "Fejl Grabs", "numberOfFailGrabs": "Fejl Grabs",
"numberOfFailQueries": "Fejl Forespørgsler" "numberOfFailQueries": "Fejl Forespørgsler"
}, },
"jackett": { "jackett": {
"configured": "Konfigureret", "configured": "Konfigureret",
"errored": "Errored" "errored": "Fejlet"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Sessioner", "numActiveSessions": "Sessioner",
"numConnections": "Forbindelser", "numConnections": "Forbindelser",
"dataRelayed": "Videresendt", "dataRelayed": "Videresendt",
"transferRate": "Rate" "transferRate": "Sats"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "Brugere",
"status_count": "Indlæg", "status_count": "Indlæg",
"domain_count": "Domæner" "domain_count": "Domæner"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "Ønsket",
"queued": "Queued", "queued": "I Kø",
"series": "Series" "series": "Serier"
}, },
"minecraft": { "minecraft": {
"players": "Afspillere", "players": "Afspillere",
@@ -422,34 +416,34 @@
}, },
"miniflux": { "miniflux": {
"read": "Læst", "read": "Læst",
"unread": "Unread" "unread": "Ulæst"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "Brugere",
"loginsLast24H": "Login (24 timer)", "loginsLast24H": "Login (24 timer)",
"failedLoginsLast24H": "Mislykkede logins (24 timer)" "failedLoginsLast24H": "Mislykkede logins (24 timer)"
}, },
"proxmox": { "proxmox": {
"mem": "MEM", "mem": "RAM",
"cpu": "CPU", "cpu": "CPU",
"lxc": "LXC", "lxc": "LXC",
"vms": "VMs" "vms": "VMs"
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Load", "load": "Belastning",
"wait": "Please wait", "wait": "Vent venligst",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temp", "_temp": "Temp",
"warn": "Advar", "warn": "Advar",
"uptime": "UP", "uptime": "OP",
"total": "Total", "total": "Total",
"free": "Free", "free": "Fri",
"used": "Used", "used": "Brugt",
"days": "d", "days": "d",
"hours": "h", "hours": "t",
"crit": "Crit", "crit": "Crit",
"read": "Read", "read": "Læst",
"write": "Skriv", "write": "Skriv",
"gpu": "GPU", "gpu": "GPU",
"mem": "Ram", "mem": "Ram",
@@ -470,57 +464,57 @@
"1-day": "Overvejende Solrigt", "1-day": "Overvejende Solrigt",
"1-night": "Overvejende Skyfrit", "1-night": "Overvejende Skyfrit",
"2-day": "Delvist Overskyet", "2-day": "Delvist Overskyet",
"2-night": "Partly Cloudy", "2-night": "Delvist Overskyet",
"3-day": "Skyet", "3-day": "Skyet",
"3-night": "Cloudy", "3-night": "Skyet",
"45-day": "Tåget", "45-day": "Tåget",
"45-night": "Foggy", "45-night": "Tåget",
"48-day": "Foggy", "48-day": "Tåget",
"48-night": "Foggy", "48-night": "Tåget",
"51-day": "Let Støvregn", "51-day": "Let Støvregn",
"51-night": "Light Drizzle", "51-night": "Let Støvregn",
"53-day": "Støvregn", "53-day": "Støvregn",
"53-night": "Drizzle", "53-night": "Støvregn",
"55-day": "Kraftig Støvregn", "55-day": "Kraftig Støvregn",
"55-night": "Heavy Drizzle", "55-night": "Kraftig Støvregn",
"56-day": "Let Frysende Støvregn", "56-day": "Let Frysende Støvregn",
"56-night": "Light Freezing Drizzle", "56-night": "Let Frysende Støvregn",
"57-day": "Frysende Støvregn", "57-day": "Frysende Støvregn",
"57-night": "Freezing Drizzle", "57-night": "Frysende Støvregn",
"61-day": "Let Regn", "61-day": "Let Regn",
"61-night": "Light Rain", "61-night": "Let Regn",
"63-day": "Regn", "63-day": "Regn",
"63-night": "Rain", "63-night": "Regn",
"65-day": "Kraftig Regn", "65-day": "Kraftig Regn",
"65-night": "Heavy Rain", "65-night": "Kraftig Regn",
"66-day": "Frysende Regn", "66-day": "Frysende Regn",
"66-night": "Freezing Rain", "66-night": "Frysende Regn",
"67-day": "Freezing Rain", "67-day": "Frysende Regn",
"67-night": "Freezing Rain", "67-night": "Frysende Regn",
"71-day": "Let Sne", "71-day": "Let Sne",
"71-night": "Light Snow", "71-night": "Let Sne",
"73-day": "Sne", "73-day": "Sne",
"73-night": "Snow", "73-night": "Sne",
"75-day": "Kraftig Sne", "75-day": "Kraftig Sne",
"75-night": "Heavy Snow", "75-night": "Kraftig Sne",
"77-day": "Snekorn", "77-day": "Snekorn",
"77-night": "Snow Grains", "77-night": "Snekorn",
"80-day": "Lette Byger", "80-day": "Lette Byger",
"80-night": "Light Showers", "80-night": "Lette Byger",
"81-day": "Byger", "81-day": "Byger",
"81-night": "Showers", "81-night": "Byger",
"82-day": "Kraftige Byger", "82-day": "Kraftige Byger",
"82-night": "Heavy Showers", "82-night": "Kraftige Byger",
"85-day": "Snebyger", "85-day": "Snebyger",
"85-night": "Snow Showers", "85-night": "Snebyger",
"86-day": "Snow Showers", "86-day": "Snebyger",
"86-night": "Snow Showers", "86-night": "Snebyger",
"95-day": "Tordenvejr", "95-day": "Tordenvejr",
"95-night": "Thunderstorm", "95-night": "Tordenvejr",
"96-day": "Tordenvejr Med Hagl", "96-day": "Tordenvejr Med Hagl",
"96-night": "Thunderstorm With Hail", "96-night": "Tordenvejr Med Hagl",
"99-day": "Thunderstorm With Hail", "99-day": "Tordenvejr Med Hagl",
"99-night": "Thunderstorm With Hail" "99-night": "Tordenvejr Med Hagl"
}, },
"homebridge": { "homebridge": {
"available_update": "System", "available_update": "System",
@@ -529,15 +523,15 @@
"up_to_date": "Opdateret", "up_to_date": "Opdateret",
"child_bridges": "Underbroer", "child_bridges": "Underbroer",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Op",
"pending": "Pending", "pending": "Afventer",
"down": "Down" "down": "Ned"
}, },
"healthchecks": { "healthchecks": {
"new": "Ny", "new": "Ny",
"up": "Up", "up": "Op",
"grace": "Henstandsperiode", "grace": "Henstandsperiode",
"down": "Down", "down": "Ned",
"paused": "Pause", "paused": "Pause",
"status": "Status", "status": "Status",
"last_ping": "Sidste Ping", "last_ping": "Sidste Ping",
@@ -549,26 +543,26 @@
"containers_failed": "Fejlet" "containers_failed": "Fejlet"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "Godkendt",
"rejectedPushes": "Afviste", "rejectedPushes": "Afviste",
"filters": "Filtre", "filters": "Filtre",
"indexers": "Indexers" "indexers": "Indeksører"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "",
"videos": "Videoer", "videos": "Videoer",
"channels": "Kanaler", "channels": "Kanaler",
"playlists": "Afspilningslister" "playlists": "Afspilningslister"
}, },
"truenas": { "truenas": {
"load": "Systembelastning", "load": "Systembelastning",
"uptime": "Uptime", "uptime": "Oppetid",
"alerts": "Alerts" "alerts": "Advarsler"
}, },
"pyload": { "pyload": {
"speed": "Hastighed", "speed": "Hastighed",
"active": "Active", "active": "Aktive",
"queue": "Queue", "queue": "",
"total": "Total" "total": "Total"
}, },
"gluetun": { "gluetun": {
@@ -578,7 +572,7 @@
"port_forwarded": "Port Forwarded" "port_forwarded": "Port Forwarded"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Channels", "channels": "Kanaler",
"hd": "HD", "hd": "HD",
"tunerCount": "Tuners", "tunerCount": "Tuners",
"channelNumber": "Channel", "channelNumber": "Channel",
@@ -591,8 +585,8 @@
}, },
"scrutiny": { "scrutiny": {
"passed": "Bestået", "passed": "Bestået",
"failed": "Failed", "failed": "Fejlet",
"unknown": "Unknown" "unknown": "Ukendt"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Indbakke", "inbox": "Indbakke",
@@ -607,18 +601,18 @@
"low_battery": "Lavt batteriniveau" "low_battery": "Lavt batteriniveau"
}, },
"nextdns": { "nextdns": {
"wait": "Please Wait", "wait": "Vent venligst",
"no_devices": "Ingen Enhedsdata Modtaget" "no_devices": "Ingen Enhedsdata Modtaget"
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "CPU Belastning", "cpuLoad": "CPU Belastning",
"memoryUsed": "Hukommelse Brugt", "memoryUsed": "Hukommelse Brugt",
"uptime": "Uptime", "uptime": "Oppetid",
"numberOfLeases": "Leasinger" "numberOfLeases": "Leasinger"
}, },
"xteve": { "xteve": {
"streams_all": "Alle Streams", "streams_all": "Alle Streams",
"streams_active": "Active Streams", "streams_active": "Aktive Streams",
"streams_xepg": "XEPG Kanaler" "streams_xepg": "XEPG Kanaler"
}, },
"opendtu": { "opendtu": {
@@ -628,7 +622,7 @@
"limit": "Begrænsning" "limit": "Begrænsning"
}, },
"opnsense": { "opnsense": {
"cpu": "CPU Load", "cpu": "CPU Belastning",
"memory": "Aktiv Hukommelse", "memory": "Aktiv Hukommelse",
"wanUpload": "WAN Upload", "wanUpload": "WAN Upload",
"wanDownload": "WAN Download" "wanDownload": "WAN Download"
@@ -653,8 +647,8 @@
"load": "Belastning Gns", "load": "Belastning Gns",
"memory": "Hukommelse Forbrug", "memory": "Hukommelse Forbrug",
"wanStatus": "WAN Status", "wanStatus": "WAN Status",
"up": "Up", "up": "Op",
"down": "Down", "down": "Ned",
"temp": "Temp", "temp": "Temp",
"disk": "Disk Forbrug", "disk": "Disk Forbrug",
"wanIP": "WAN IP" "wanIP": "WAN IP"
@@ -666,49 +660,49 @@
"memory_usage": "Hukommelse" "memory_usage": "Hukommelse"
}, },
"immich": { "immich": {
"users": "Users", "users": "Brugere",
"photos": "Billeder", "photos": "Billeder",
"videos": "Videos", "videos": "Videoer",
"storage": "Lager" "storage": "Lager"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Sider Oppe", "up": "Sider Oppe",
"down": "Sider Nede", "down": "Sider Nede",
"uptime": "Uptime", "uptime": "Oppetid",
"incident": "Hændelse", "incident": "Hændelse",
"m": "m" "m": "m"
}, },
"atsumeru": { "atsumeru": {
"series": "Series", "series": "Serier",
"archives": "Arkiver", "archives": "Arkiver",
"chapters": "Kapitler", "chapters": "Kapitler",
"categories": "Kategorier" "categories": "Kategorier"
}, },
"komga": { "komga": {
"libraries": "Biblioteker", "libraries": "Biblioteker",
"series": "Series", "series": "Serier",
"books": "Books" "books": "Bøger"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Dage",
"uptime": "Uptime", "uptime": "Oppetid",
"volumeAvailable": "Available" "volumeAvailable": "Tilgængelig"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Serier",
"issues": "Problemer", "issues": "Problemer",
"wanted": "Wanted" "wanted": "Ønsket"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Albums",
"photos": "Photos", "photos": "Billeder",
"videos": "Videos", "videos": "Videoer",
"people": "Mennesker" "people": "Mennesker"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "",
"processing": "Processing", "processing": "Behandler",
"processed": "Processed", "processed": "Behandlet",
"time": "Tid" "time": "Tid"
}, },
"firefly": { "firefly": {
@@ -734,7 +728,7 @@
"size": "Størrelse", "size": "Størrelse",
"lastrun": "Sidst Kørt", "lastrun": "Sidst Kørt",
"nextrun": "Næste Kørsel", "nextrun": "Næste Kørsel",
"failed": "Failed" "failed": "Fejlet"
}, },
"unmanic": { "unmanic": {
"active_workers": "Aktive Arbejdere", "active_workers": "Aktive Arbejdere",
@@ -751,20 +745,20 @@
"targets_total": "Totale Mål" "targets_total": "Totale Mål"
}, },
"gatus": { "gatus": {
"up": "Sites Up", "up": "Sider Oppe",
"down": "Sites Down", "down": "Sider Nede",
"uptime": "Uptime" "uptime": "Oppetid"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Today", "gross_percent_today": "I dag",
"gross_percent_1y": "Et År", "gross_percent_1y": "Et År",
"gross_percent_max": "Altid" "gross_percent_max": "Altid"
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasts", "podcasts": "Podcasts",
"books": "Books", "books": "Bøger",
"podcastsDuration": "Varighed", "podcastsDuration": "Varighed",
"booksDuration": "Duration" "booksDuration": "Varighed"
}, },
"homeassistant": { "homeassistant": {
"people_home": "Personer Hjemme", "people_home": "Personer Hjemme",
@@ -773,23 +767,23 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Overvåger", "monitoring": "Overvåger",
"updates": "Updates" "updates": "Opdateringer"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "Bøger",
"authors": "Forfattere", "authors": "Forfattere",
"categories": "Categories", "categories": "Kategorier",
"series": "Series" "series": "Serier"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "",
"downloadBytesRemaining": "Remaining", "downloadBytesRemaining": "Manglende",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Størrelse",
"downloadSpeed": "Speed" "downloadSpeed": "Hastighed"
}, },
"kavita": { "kavita": {
"seriesCount": "Series", "seriesCount": "Serier",
"totalFiles": "Files" "totalFiles": "Filer"
}, },
"azuredevops": { "azuredevops": {
"result": "Resultat", "result": "Resultat",
@@ -797,12 +791,12 @@
"buildId": "Build ID", "buildId": "Build ID",
"succeeded": "Lykkedes", "succeeded": "Lykkedes",
"notStarted": "Ikke Startet", "notStarted": "Ikke Startet",
"failed": "Failed", "failed": "Fejlet",
"canceled": "Annulleret", "canceled": "Annulleret",
"inProgress": "I Gang", "inProgress": "I Gang",
"totalPrs": "Total PRs", "totalPrs": "Total PRs",
"myPrs": "Mine PRs", "myPrs": "Mine PRs",
"approved": "Approved" "approved": "Godkendt"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "Status",
@@ -811,7 +805,7 @@
"name": "Navn", "name": "Navn",
"map": "Kort", "map": "Kort",
"currentPlayers": "Nuværende Spillere", "currentPlayers": "Nuværende Spillere",
"players": "Players", "players": "Afspillere",
"maxPlayers": "Maks spillere", "maxPlayers": "Maks spillere",
"bots": "Bots", "bots": "Bots",
"ping": "Ping" "ping": "Ping"
@@ -824,39 +818,39 @@
}, },
"mealie": { "mealie": {
"recipes": "Opskrifter", "recipes": "Opskrifter",
"users": "Users", "users": "Brugere",
"categories": "Categories", "categories": "Kategorier",
"tags": "Tags" "tags": "Tags"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Downloader", "downloading": "Downloader",
"total": "Total", "total": "Total",
"running": "Running", "running": "Kører",
"stopped": "Stopped", "stopped": "Stoppede",
"passed": "Passed", "passed": "Bestået",
"failed": "Failed" "failed": "Fejlet"
}, },
"openwrt": { "openwrt": {
"uptime": "Uptime", "uptime": "Oppetid",
"cpuLoad": "CPU Load Avg (5m)", "cpuLoad": "CPU Load Avg (5m)",
"up": "Up", "up": "Op",
"down": "Down", "down": "Ned",
"bytesTx": "Transmitted", "bytesTx": "Transmitted",
"bytesRx": "Received" "bytesRx": "Modtaget"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "Status",
"uptime": "Uptime", "uptime": "Oppetid",
"lastDown": "Seneste Nedetid", "lastDown": "Seneste Nedetid",
"downDuration": "Nedetid Varighed", "downDuration": "Nedetid Varighed",
"sitesUp": "Sites Up", "sitesUp": "Sider Oppe",
"sitesDown": "Sites Down", "sitesDown": "Sider Nede",
"paused": "Paused", "paused": "Pause",
"notyetchecked": "Endnu Ikke Kontrolleret", "notyetchecked": "Endnu Ikke Kontrolleret",
"up": "Up", "up": "Op",
"seemsdown": "Synes Ned", "seemsdown": "Synes Ned",
"down": "Down", "down": "Ned",
"unknown": "Unknown" "unknown": "Ukendt"
}, },
"calendar": { "calendar": {
"inCinemas": "I biografen", "inCinemas": "I biografen",
@@ -875,10 +869,10 @@
"totalfilesize": "Total Size" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Domains", "domains": "Domæner",
"mailboxes": "Mailboxes", "mailboxes": "Mailboxes",
"mails": "Mails", "mails": "Mails",
"storage": "Storage" "storage": "Lager"
}, },
"netdata": { "netdata": {
"warnings": "Advarsler", "warnings": "Advarsler",
@@ -887,12 +881,12 @@
"plantit": { "plantit": {
"events": "Events", "events": "Events",
"plants": "Plants", "plants": "Plants",
"photos": "Photos", "photos": "Billeder",
"species": "Species" "species": "Species"
}, },
"gitea": { "gitea": {
"notifications": "Notifications", "notifications": "Notifications",
"issues": "Issues", "issues": "Problemer",
"pulls": "Pull Requests", "pulls": "Pull Requests",
"repositories": "Repositories" "repositories": "Repositories"
}, },
@@ -908,13 +902,13 @@
"galleries": "Galleries", "galleries": "Galleries",
"performers": "Performers", "performers": "Performers",
"studios": "Studios", "studios": "Studios",
"movies": "Movies", "movies": "Film",
"tags": "Tags", "tags": "Tags",
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "Brugere",
"recipes": "Recipes", "recipes": "Opskrifter",
"keywords": "Keywords" "keywords": "Keywords"
}, },
"homebox": { "homebox": {
@@ -922,17 +916,17 @@
"totalWithWarranty": "With Warranty", "totalWithWarranty": "With Warranty",
"locations": "Locations", "locations": "Locations",
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "Brugere",
"totalValue": "Total Value" "totalValue": "Total Value"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alerts", "alerts": "Advarsler",
"bans": "Bans" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Connected",
"enabled": "Enabled", "enabled": "Aktiveret",
"disabled": "Disabled", "disabled": "Deaktiveret",
"total": "Total" "total": "Total"
}, },
"swagdashboard": { "swagdashboard": {
@@ -955,7 +949,7 @@
}, },
"frigate": { "frigate": {
"cameras": "Cameras", "cameras": "Cameras",
"uptime": "Uptime", "uptime": "Oppetid",
"version": "Version" "version": "Version"
}, },
"linkwarden": { "linkwarden": {
@@ -986,24 +980,24 @@
"tasksInProgress": "Tasks In Progress" "tasksInProgress": "Tasks In Progress"
}, },
"headscale": { "headscale": {
"name": "Name", "name": "Navn",
"address": "Address", "address": "Adresse",
"last_seen": "Last Seen", "last_seen": "Sidst Set",
"status": "Status", "status": "Status",
"online": "Online", "online": "Online",
"offline": "Offline" "offline": "Offline"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Navn",
"systems": "Systems", "systems": "Systems",
"up": "Up", "up": "Op",
"down": "Down", "down": "Ned",
"paused": "Paused", "paused": "Pause",
"pending": "Pending", "pending": "Afventer",
"status": "Status", "status": "Status",
"updated": "Updated", "updated": "Opdateret",
"cpu": "CPU", "cpu": "CPU",
"memory": "MEM", "memory": "RAM",
"disk": "Disk", "disk": "Disk",
"network": "NET" "network": "NET"
}, },
@@ -1011,10 +1005,10 @@
"apps": "Apps", "apps": "Apps",
"synced": "Synced", "synced": "Synced",
"outOfSync": "Out Of Sync", "outOfSync": "Out Of Sync",
"healthy": "Healthy", "healthy": "Sund",
"degraded": "Degraded", "degraded": "Degraded",
"progressing": "Progressing", "progressing": "Progressing",
"missing": "Missing", "missing": "Mangler",
"suspended": "Suspended" "suspended": "Suspended"
}, },
"spoolman": { "spoolman": {
@@ -1022,15 +1016,15 @@
}, },
"gitlab": { "gitlab": {
"groups": "Groups", "groups": "Groups",
"issues": "Issues", "issues": "Problemer",
"merges": "Merge Requests", "merges": "Merge Requests",
"projects": "Projects" "projects": "Projects"
}, },
"apcups": { "apcups": {
"status": "Status", "status": "Status",
"load": "Load", "load": "Belastning",
"bcharge": "Battery Charge", "bcharge": "Batteriniveau",
"timeleft": "Time Left" "timeleft": "Resterende tid"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
@@ -1045,43 +1039,20 @@
"connected": "Connected", "connected": "Connected",
"disconnected": "Disconnected", "disconnected": "Disconnected",
"updateStatus": "Update", "updateStatus": "Update",
"update_yes": "Available", "update_yes": "Tilgængelig",
"update_no": "Up to Date", "update_no": "Opdateret",
"downloads": "Downloads", "downloads": "Downloads",
"uploads": "Uploads", "uploads": "Uploads",
"sharedFiles": "Files" "sharedFiles": "Filer"
}, },
"jellystat": { "jellystat": {
"songs": "Songs", "songs": "Sange",
"movies": "Movies", "movies": "Film",
"episodes": "Episodes", "episodes": "Episoder",
"other": "Other" "other": "Other"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -61,7 +61,7 @@
"wlan_devices": "WLAN-Geräte", "wlan_devices": "WLAN-Geräte",
"lan_users": "LAN-Benutzer", "lan_users": "LAN-Benutzer",
"wlan_users": "WLAN-Benutzer", "wlan_users": "WLAN-Benutzer",
"up": "Gesendet", "up": "BETRIEBSZEIT",
"down": "EMPFANGEN", "down": "EMPFANGEN",
"wait": "Bitte warten", "wait": "Bitte warten",
"empty_data": "Subsystem-Status unbekannt" "empty_data": "Subsystem-Status unbekannt"
@@ -93,8 +93,8 @@
"http_status": "HTTP-Status", "http_status": "HTTP-Status",
"error": "Fehler", "error": "Fehler",
"response": "Antwort", "response": "Antwort",
"down": "Online", "down": "Offline",
"up": "Offline", "up": "Online",
"not_available": "Nicht verfügbar" "not_available": "Nicht verfügbar"
}, },
"emby": { "emby": {
@@ -111,7 +111,7 @@
"offline": "Offline", "offline": "Offline",
"offline_alt": "Offline", "offline_alt": "Offline",
"online": "Online", "online": "Online",
"total": "Total", "total": "Gesamt",
"unknown": "Unbekannt" "unknown": "Unbekannt"
}, },
"evcc": { "evcc": {
@@ -144,13 +144,13 @@
"uptime": "Betriebszeit", "uptime": "Betriebszeit",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
"down": "Download", "down": "Offline",
"up": "Upload", "up": "Online",
"received": "Empfangen", "received": "Empfangen",
"sent": "Gesendet", "sent": "Gesendet",
"externalIPAddress": "Externe IP", "externalIPAddress": "Externe IP",
"externalIPv6Address": "Ext. IPv6", "externalIPv6Address": "Externe IPv6",
"externalIPv6Prefix": "Ext. IPv6-Präfix" "externalIPv6Prefix": "Externes IPv6-Präfix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -165,10 +165,10 @@
"shows": "Serien", "shows": "Serien",
"recordings": "Aufnahmen", "recordings": "Aufnahmen",
"scheduled": "Geplant", "scheduled": "Geplant",
"passes": "Durchläufe" "passes": "Pässe"
}, },
"tautulli": { "tautulli": {
"playing": "Spielt", "playing": "Wiedergabe",
"transcoding": "Transcodiert", "transcoding": "Transcodiert",
"bitrate": "Bitrate", "bitrate": "Bitrate",
"no_active": "Keine aktiven Streams", "no_active": "Keine aktiven Streams",
@@ -193,7 +193,7 @@
"tv": "TV-Serien" "tv": "TV-Serien"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "Datenrate",
"queue": "Warteschlange", "queue": "Warteschlange",
"timeleft": "Verbleibende Zeit" "timeleft": "Verbleibende Zeit"
}, },
@@ -273,18 +273,18 @@
"available": "Verfügbar" "available": "Verfügbar"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Wartend", "pending": "Ausstehend",
"approved": "Genehmigt", "approved": "Genehmigt",
"available": "Verfügbar" "available": "Verfügbar"
}, },
"overseerr": { "overseerr": {
"pending": "Wartend", "pending": "Ausstehend",
"processing": "Wird verarbeitet", "processing": "Wird verarbeitet",
"approved": "Genehmigt", "approved": "Genehmigt",
"available": "Verfügbar" "available": "Verfügbar"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Gesamt",
"connected": "Verbunden", "connected": "Verbunden",
"new_devices": "Neue Geräte", "new_devices": "Neue Geräte",
"down_alerts": "Down-Warnungen" "down_alerts": "Down-Warnungen"
@@ -309,7 +309,7 @@
"portainer": { "portainer": {
"running": "Wird ausgeführt", "running": "Wird ausgeführt",
"stopped": "Gestoppt", "stopped": "Gestoppt",
"total": "Total" "total": "Gesamt"
}, },
"suwayomi": { "suwayomi": {
"download": "Heruntergeladen", "download": "Heruntergeladen",
@@ -359,12 +359,6 @@
"services": "Dienste", "services": "Dienste",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notizen",
"dbSize": "Datenbankgröße",
"unknown": "Unbekannt"
},
"navidrome": { "navidrome": {
"nothing_streaming": "Keine aktiven Streams", "nothing_streaming": "Keine aktiven Streams",
"please_wait": "Bitte warten" "please_wait": "Bitte warten"
@@ -372,7 +366,7 @@
"npm": { "npm": {
"enabled": "Aktiviert", "enabled": "Aktiviert",
"disabled": "Deaktiviert", "disabled": "Deaktiviert",
"total": "Total" "total": "Gesamt"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Konfiguriere eine oder mehrere Kryptowährungen zur Beobachtung", "configure": "Konfiguriere eine oder mehrere Kryptowährungen zur Beobachtung",
@@ -383,7 +377,7 @@
}, },
"gotify": { "gotify": {
"apps": "Programme", "apps": "Programme",
"clients": "Endgeräte", "clients": "Benutzer",
"messages": "Nachrichten" "messages": "Nachrichten"
}, },
"prowlarr": { "prowlarr": {
@@ -401,7 +395,7 @@
"numActiveSessions": "Sitzungen", "numActiveSessions": "Sitzungen",
"numConnections": "Verbindungen", "numConnections": "Verbindungen",
"dataRelayed": "Weitergeleitet", "dataRelayed": "Weitergeleitet",
"transferRate": "Rate" "transferRate": "Datenrate"
}, },
"mastodon": { "mastodon": {
"user_count": "Benutzer", "user_count": "Benutzer",
@@ -439,17 +433,17 @@
"cpu": "CPU", "cpu": "CPU",
"load": "Last", "load": "Last",
"wait": "Bitte warten", "wait": "Bitte warten",
"temp": "Temp", "temp": "TEMP",
"_temp": "Temperatur", "_temp": "Temperatur",
"warn": "Warnung", "warn": "Warnung",
"uptime": "Betriebszeit", "uptime": "BETRIEBSZEIT",
"total": "Total", "total": "Gesamt",
"free": "Frei", "free": "Frei",
"used": "Benutzt", "used": "In Benutzung",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Krit", "crit": "Krit",
"read": "Lesen", "read": "Gelesen",
"write": "Schreiben", "write": "Schreiben",
"gpu": "GPU", "gpu": "GPU",
"mem": "RAM", "mem": "RAM",
@@ -474,37 +468,37 @@
"3-day": "Bewölkt", "3-day": "Bewölkt",
"3-night": "Bewölkt", "3-night": "Bewölkt",
"45-day": "neblig", "45-day": "neblig",
"45-night": "Nebel", "45-night": "neblig",
"48-day": "Nebel", "48-day": "neblig",
"48-night": "Nebel", "48-night": "neblig",
"51-day": "leichter Nieselregen", "51-day": "leichter Nieselregen",
"51-night": "Leichter Nieselregen", "51-night": "leichter Nieselregen",
"53-day": "Nieselregen", "53-day": "Nieselregen",
"53-night": "Nieselregen", "53-night": "Nieselregen",
"55-day": "starker Nieselregen", "55-day": "starker Nieselregen",
"55-night": "Starker Nieselregen", "55-night": "starker Nieselregen",
"56-day": "leichter gefrierender Nieselregen", "56-day": "leichter gefrierender Nieselregen",
"56-night": "Leicht gefrierender Nieselregen", "56-night": "leichter gefrierender Nieselregen",
"57-day": "gefrierender Nieselregen", "57-day": "gefrierender Nieselregen",
"57-night": "Gefrierender Nieselregen", "57-night": "gefrierender Nieselregen",
"61-day": "leichter Regen", "61-day": "leichter Regen",
"61-night": "Leichter Regen", "61-night": "leichter Regen",
"63-day": "Regen", "63-day": "Regen",
"63-night": "Regen", "63-night": "Regen",
"65-day": "starker Regen", "65-day": "starker Regen",
"65-night": "Starker Regen", "65-night": "starker Regen",
"66-day": "Gefrierender Regen", "66-day": "Gefrierender Regen",
"66-night": "Gefrierender Regen", "66-night": "Gefrierender Regen",
"67-day": "Gefrierender Regen", "67-day": "Gefrierender Regen",
"67-night": "Gefrierender Regen", "67-night": "Gefrierender Regen",
"71-day": "Leichter Schneefall", "71-day": "Leichter Schneefall",
"71-night": "Leichter Schnee", "71-night": "Leichter Schneefall",
"73-day": "Schnee", "73-day": "Schnee",
"73-night": "Schnee", "73-night": "Schnee",
"75-day": "Starker Schneefall", "75-day": "Starker Schneefall",
"75-night": "Starker Schnee", "75-night": "Starker Schneefall",
"77-day": "Schneegriesel", "77-day": "Schneegriesel",
"77-night": "Schneekörner", "77-night": "Schneegriesel",
"80-day": "Leichte Schauer", "80-day": "Leichte Schauer",
"80-night": "Leichte Schauer", "80-night": "Leichte Schauer",
"81-day": "Schauer", "81-day": "Schauer",
@@ -516,11 +510,11 @@
"86-day": "Schneeschauer", "86-day": "Schneeschauer",
"86-night": "Schneeschauer", "86-night": "Schneeschauer",
"95-day": "Gewitter", "95-day": "Gewitter",
"95-night": "Sturm", "95-night": "Gewitter",
"96-day": "Gewitter mit Hagel", "96-day": "Gewitter mit Hagel",
"96-night": "Sturm mit Hagel", "96-night": "Gewitter mit Hagel",
"99-day": "Sturm mit Hagel", "99-day": "Gewitter mit Hagel",
"99-night": "Sturm mit Hagel" "99-night": "Gewitter mit Hagel"
}, },
"homebridge": { "homebridge": {
"available_update": "System", "available_update": "System",
@@ -530,7 +524,7 @@
"child_bridges": "Unter-Bridges", "child_bridges": "Unter-Bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Online", "up": "Online",
"pending": "Wartend", "pending": "Ausstehend",
"down": "Offline" "down": "Offline"
}, },
"healthchecks": { "healthchecks": {
@@ -552,7 +546,7 @@
"approvedPushes": "Genehmigt", "approvedPushes": "Genehmigt",
"rejectedPushes": "Abgelehnt", "rejectedPushes": "Abgelehnt",
"filters": "Filter", "filters": "Filter",
"indexers": "Indexierer" "indexers": "Indexer"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Warteschlange", "downloads": "Warteschlange",
@@ -563,13 +557,13 @@
"truenas": { "truenas": {
"load": "Systemlast", "load": "Systemlast",
"uptime": "Betriebszeit", "uptime": "Betriebszeit",
"alerts": "Alarme" "alerts": "Warnungen"
}, },
"pyload": { "pyload": {
"speed": "Datenrate", "speed": "Datenrate",
"active": "Aktiv", "active": "Aktiv",
"queue": "Warteschlange", "queue": "Warteschlange",
"total": "Total" "total": "Gesamt"
}, },
"gluetun": { "gluetun": {
"public_ip": "Öffentliche IP", "public_ip": "Öffentliche IP",
@@ -591,12 +585,12 @@
}, },
"scrutiny": { "scrutiny": {
"passed": "Bestanden", "passed": "Bestanden",
"failed": "Fehlerhaft", "failed": "Fehlgeschlagen",
"unknown": "Unbekannt" "unknown": "Unbekannt"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Posteingang", "inbox": "Posteingang",
"total": "Total" "total": "Gesamt"
}, },
"peanut": { "peanut": {
"battery_charge": "Akkuladung", "battery_charge": "Akkuladung",
@@ -628,7 +622,7 @@
"limit": "Grenze" "limit": "Grenze"
}, },
"opnsense": { "opnsense": {
"cpu": "CPU-Last", "cpu": "CPU-Auslastung",
"memory": "Aktiver RAM", "memory": "Aktiver RAM",
"wanUpload": "WAN-Upload", "wanUpload": "WAN-Upload",
"wanDownload": "WAN-Download" "wanDownload": "WAN-Download"
@@ -655,7 +649,7 @@
"wanStatus": "WAN-Status", "wanStatus": "WAN-Status",
"up": "Online", "up": "Online",
"down": "Offline", "down": "Offline",
"temp": "Temp", "temp": "Temperatur",
"disk": "Datenträgernutzung", "disk": "Datenträgernutzung",
"wanIP": "WAN-IP" "wanIP": "WAN-IP"
}, },
@@ -676,7 +670,7 @@
"down": "Down", "down": "Down",
"uptime": "Betriebszeit", "uptime": "Betriebszeit",
"incident": "Vorfall", "incident": "Vorfall",
"m": "m" "m": "min"
}, },
"atsumeru": { "atsumeru": {
"series": "Serien", "series": "Serien",
@@ -708,7 +702,7 @@
"fileflows": { "fileflows": {
"queue": "Warteschlange", "queue": "Warteschlange",
"processing": "Wird verarbeitet", "processing": "Wird verarbeitet",
"processed": "Wird verarbeitet", "processed": "Verarbeitet",
"time": "Zeit" "time": "Zeit"
}, },
"firefly": { "firefly": {
@@ -734,7 +728,7 @@
"size": "Größe", "size": "Größe",
"lastrun": "Letzter Durchlauf", "lastrun": "Letzter Durchlauf",
"nextrun": "Nächster Durchlauf", "nextrun": "Nächster Durchlauf",
"failed": "Fehlerhaft" "failed": "Fehlgeschlagen"
}, },
"unmanic": { "unmanic": {
"active_workers": "Aktive Worker", "active_workers": "Aktive Worker",
@@ -751,8 +745,8 @@
"targets_total": "Alle Ziele" "targets_total": "Alle Ziele"
}, },
"gatus": { "gatus": {
"up": "Seiten online", "up": "Up",
"down": "Seiten offline", "down": "Down",
"uptime": "Betriebszeit" "uptime": "Betriebszeit"
}, },
"ghostfolio": { "ghostfolio": {
@@ -785,7 +779,7 @@
"downloadCount": "Warteschlange", "downloadCount": "Warteschlange",
"downloadBytesRemaining": "Verbleibend", "downloadBytesRemaining": "Verbleibend",
"downloadTotalBytes": "Größe", "downloadTotalBytes": "Größe",
"downloadSpeed": "Geschwindigkeit" "downloadSpeed": "Datenrate"
}, },
"kavita": { "kavita": {
"seriesCount": "Serien", "seriesCount": "Serien",
@@ -797,7 +791,7 @@
"buildId": "Build-ID", "buildId": "Build-ID",
"succeeded": "Erfolgreich", "succeeded": "Erfolgreich",
"notStarted": "Nicht gestartet", "notStarted": "Nicht gestartet",
"failed": "Fehlerhaft", "failed": "Fehlgeschlagen",
"canceled": "Abgebrochen", "canceled": "Abgebrochen",
"inProgress": "In Bearbeitung", "inProgress": "In Bearbeitung",
"totalPrs": "PRs gesamt", "totalPrs": "PRs gesamt",
@@ -830,11 +824,11 @@
}, },
"openmediavault": { "openmediavault": {
"downloading": "Wird heruntergeladen", "downloading": "Wird heruntergeladen",
"total": "Total", "total": "Gesamt",
"running": "Wird ausgeführt", "running": "Wird ausgeführt",
"stopped": "Gestoppt", "stopped": "Gestoppt",
"passed": "Erfolgreich", "passed": "Bestanden",
"failed": "Fehlerhaft" "failed": "Fehlgeschlagen"
}, },
"openwrt": { "openwrt": {
"uptime": "Betriebszeit", "uptime": "Betriebszeit",
@@ -849,13 +843,13 @@
"uptime": "Betriebszeit", "uptime": "Betriebszeit",
"lastDown": "Letzter Ausfall", "lastDown": "Letzter Ausfall",
"downDuration": "Ausfalldauer", "downDuration": "Ausfalldauer",
"sitesUp": "Seiten online", "sitesUp": "Up",
"sitesDown": "Seiten offline", "sitesDown": "Down",
"paused": "Pausiert", "paused": "Pausiert",
"notyetchecked": "Noch nicht geprüft", "notyetchecked": "Noch nicht geprüft",
"up": "Online", "up": "Online",
"seemsdown": "Scheint nicht verfügbar", "seemsdown": "Scheint nicht verfügbar",
"down": "Unbekannt", "down": "Offline",
"unknown": "Unbekannt" "unknown": "Unbekannt"
}, },
"calendar": { "calendar": {
@@ -875,7 +869,7 @@
"totalfilesize": "Gesamtgröße" "totalfilesize": "Gesamtgröße"
}, },
"mailcow": { "mailcow": {
"domains": "Domains", "domains": "Domänen",
"mailboxes": "Postfächer", "mailboxes": "Postfächer",
"mails": "E-Mails", "mails": "E-Mails",
"storage": "Speicher" "storage": "Speicher"
@@ -909,7 +903,7 @@
"performers": "Darsteller", "performers": "Darsteller",
"studios": "Studios", "studios": "Studios",
"movies": "Filme", "movies": "Filme",
"tags": "Tags", "tags": "Schlagwörter",
"oCount": "O-Anzahl" "oCount": "O-Anzahl"
}, },
"tandoor": { "tandoor": {
@@ -926,14 +920,14 @@
"totalValue": "Gesamtwert" "totalValue": "Gesamtwert"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alarme", "alerts": "Warnungen",
"bans": "Banns" "bans": "Banns"
}, },
"wgeasy": { "wgeasy": {
"connected": "Verbunden", "connected": "Verbunden",
"enabled": "Aktiviert", "enabled": "Aktiviert",
"disabled": "Deaktiviert", "disabled": "Deaktiviert",
"total": "Total" "total": "Gesamt"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
@@ -961,11 +955,11 @@
"linkwarden": { "linkwarden": {
"links": "Links", "links": "Links",
"collections": "Sammlungen", "collections": "Sammlungen",
"tags": "Tags" "tags": "Schlagwörter"
}, },
"zabbix": { "zabbix": {
"unclassified": "Nicht klassifiziert", "unclassified": "Nicht klassifiziert",
"information": "Information", "information": "Informationen",
"warning": "Warnung", "warning": "Warnung",
"average": "Durchschnitt", "average": "Durchschnitt",
"high": "Hoch", "high": "Hoch",
@@ -996,12 +990,12 @@
"beszel": { "beszel": {
"name": "Name", "name": "Name",
"systems": "Systeme", "systems": "Systeme",
"up": "Offline", "up": "Online",
"down": "Offline", "down": "Offline",
"paused": "Pausiert", "paused": "Pausiert",
"pending": "Wartend", "pending": "Ausstehend",
"status": "Status", "status": "Status",
"updated": "Aktuell", "updated": "Aktualisiert",
"cpu": "CPU", "cpu": "CPU",
"memory": "RAM", "memory": "RAM",
"disk": "Festplatte", "disk": "Festplatte",
@@ -1011,14 +1005,14 @@
"apps": "Anwendungen", "apps": "Anwendungen",
"synced": "Synchronisiert", "synced": "Synchronisiert",
"outOfSync": "Nicht mehr synchronisiert", "outOfSync": "Nicht mehr synchronisiert",
"healthy": "Gesund", "healthy": "Fehlerfrei",
"degraded": "Beeinträchtigt", "degraded": "Beeinträchtigt",
"progressing": "Fortschritt", "progressing": "Fortschritt",
"missing": "Fehlend", "missing": "Fehlend",
"suspended": "Unterbrochen" "suspended": "Unterbrochen"
}, },
"spoolman": { "spoolman": {
"loading": "Lädt" "loading": "Wird geladen"
}, },
"gitlab": { "gitlab": {
"groups": "Gruppen", "groups": "Gruppen",
@@ -1029,7 +1023,7 @@
"apcups": { "apcups": {
"status": "Status", "status": "Status",
"load": "Last", "load": "Last",
"bcharge": "Batterieladung", "bcharge": "Akkuladung",
"timeleft": "Verbleibende Zeit" "timeleft": "Verbleibende Zeit"
}, },
"karakeep": { "karakeep": {
@@ -1038,7 +1032,7 @@
"archived": "Archiviert", "archived": "Archiviert",
"highlights": "Highlights", "highlights": "Highlights",
"lists": "Listen", "lists": "Listen",
"tags": "Tags" "tags": "Schlagwörter"
}, },
"slskd": { "slskd": {
"slskStatus": "Netzwerk", "slskStatus": "Netzwerk",
@@ -1060,28 +1054,5 @@
"checkmk": { "checkmk": {
"serviceErrors": "Dienstprobleme", "serviceErrors": "Dienstprobleme",
"hostErrors": "Hostprobleme" "hostErrors": "Hostprobleme"
},
"komodo": {
"total": "Gesamt",
"running": "Aktiv",
"stopped": "Angehalten",
"down": "Inaktiv",
"unhealthy": "Fehlerhaft",
"unknown": "Unbekannt",
"servers": "Server",
"stacks": "Stacks",
"containers": "Container"
},
"filebrowser": {
"available": "Verfügbar",
"used": "Benutzt",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Abonnements",
"thisMonthlyCost": "Dieser Monat",
"nextMonthlyCost": "Nächster Monat",
"previousMonthlyCost": "Vorh. Monat",
"nextRenewingSubscription": "Nächste Zahlung"
} }
} }

File diff suppressed because it is too large Load Diff

View File

@@ -1071,17 +1071,5 @@
"servers": "Servers", "servers": "Servers",
"stacks": "Stacks", "stacks": "Stacks",
"containers": "Containers" "containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -63,14 +63,14 @@
"wlan_users": "WLAN-Uzantoj", "wlan_users": "WLAN-Uzantoj",
"up": "UP", "up": "UP",
"down": "DOWN", "down": "DOWN",
"wait": "Please wait", "wait": "Bonvolu atendi",
"empty_data": "Subsistemostatuso nekonata" "empty_data": "Subsistemostatuso nekonata"
}, },
"docker": { "docker": {
"rx": "RX", "rx": "RX",
"tx": "TX", "tx": "TX",
"mem": "MEM", "mem": "MEM",
"cpu": "CPU", "cpu": "Ĉefprocesoro",
"running": "Rulata", "running": "Rulata",
"offline": "Malkonekta", "offline": "Malkonekta",
"error": "Eraro", "error": "Eraro",
@@ -83,7 +83,7 @@
"partial": "Parta" "partial": "Parta"
}, },
"ping": { "ping": {
"error": "Error", "error": "Eraro",
"ping": "Sondaĵo", "ping": "Sondaĵo",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
@@ -91,7 +91,7 @@
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "HTTP status", "http_status": "HTTP status",
"error": "Error", "error": "Eraro",
"response": "Response", "response": "Response",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
@@ -108,11 +108,11 @@
"songs": "Kantoj" "songs": "Kantoj"
}, },
"esphome": { "esphome": {
"offline": "Offline", "offline": "Malkonekta",
"offline_alt": "Offline", "offline_alt": "Malkonekta",
"online": "Online", "online": "Online",
"total": "Total", "total": "Totalo",
"unknown": "Unknown" "unknown": "Nekonata"
}, },
"evcc": { "evcc": {
"pv_power": "Production", "pv_power": "Production",
@@ -133,7 +133,7 @@
"unread": "Unread" "unread": "Unread"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Status", "connectionStatus": "Stato",
"connectionStatusUnconfigured": "Unconfigured", "connectionStatusUnconfigured": "Unconfigured",
"connectionStatusConnecting": "Connecting", "connectionStatusConnecting": "Connecting",
"connectionStatusAuthenticating": "Authenticating", "connectionStatusAuthenticating": "Authenticating",
@@ -168,9 +168,9 @@
"passes": "Passes" "passes": "Passes"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "Ludante",
"transcoding": "Transcoding", "transcoding": "Transkodigo",
"bitrate": "Bitrate", "bitrate": "Bitrapido",
"no_active": "No Active Streams", "no_active": "No Active Streams",
"plex_connection_error": "Check Plex Connection" "plex_connection_error": "Check Plex Connection"
}, },
@@ -189,7 +189,7 @@
"plex": { "plex": {
"streams": "Active Streams", "streams": "Active Streams",
"albums": "Albums", "albums": "Albums",
"movies": "Movies", "movies": "Filmoj",
"tv": "Televidprogramoj" "tv": "Televidprogramoj"
}, },
"sabnzbd": { "sabnzbd": {
@@ -199,18 +199,18 @@
}, },
"rutorrent": { "rutorrent": {
"active": "Active", "active": "Active",
"upload": "Upload", "upload": "Alŝuti",
"download": "Download" "download": "Elŝuti"
}, },
"transmission": { "transmission": {
"download": "Download", "download": "Elŝuti",
"upload": "Upload", "upload": "Alŝuti",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Download", "download": "Elŝuti",
"upload": "Upload", "upload": "Alŝuti",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -223,8 +223,8 @@
"invalid": "Invalid" "invalid": "Invalid"
}, },
"deluge": { "deluge": {
"download": "Download", "download": "Elŝuti",
"upload": "Upload", "upload": "Alŝuti",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -233,25 +233,25 @@
"cachemissbytes": "Cache Miss Bytes" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Elŝuti",
"upload": "Upload", "upload": "Alŝuti",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"sonarr": { "sonarr": {
"wanted": "Wanted", "wanted": "Wanted",
"queued": "Queued", "queued": "Queued",
"series": "Series", "series": "Serioj",
"queue": "Queue", "queue": "Queue",
"unknown": "Unknown" "unknown": "Nekonata"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Wanted",
"missing": "Missing", "missing": "Missing",
"queued": "Queued", "queued": "Queued",
"movies": "Movies", "movies": "Filmoj",
"queue": "Queue", "queue": "Queue",
"unknown": "Unknown" "unknown": "Nekonata"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Wanted",
@@ -274,17 +274,17 @@
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pending", "pending": "Pending",
"approved": "Approved", "approved": "Aprobita",
"available": "Available" "available": "Havebla"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "Pending",
"processing": "Processing", "processing": "Processing",
"approved": "Approved", "approved": "Aprobita",
"available": "Available" "available": "Havebla"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Totalo",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
@@ -302,14 +302,14 @@
"latency": "Latency" "latency": "Latency"
}, },
"speedtest": { "speedtest": {
"upload": "Upload", "upload": "Alŝuti",
"download": "Download", "download": "Elŝuti",
"ping": "Ping" "ping": "Sondaĵo"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "Rulata",
"stopped": "Stopped", "stopped": "Stopped",
"total": "Total" "total": "Totalo"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Downloaded",
@@ -359,12 +359,6 @@
"services": "Servoj", "services": "Servoj",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "No Active Streams",
"please_wait": "Please Wait" "please_wait": "Please Wait"
@@ -372,7 +366,7 @@
"npm": { "npm": {
"enabled": "Enabled", "enabled": "Enabled",
"disabled": "Disabled", "disabled": "Disabled",
"total": "Total" "total": "Totalo"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Configure one or more crypto currencies to track", "configure": "Configure one or more crypto currencies to track",
@@ -383,7 +377,7 @@
}, },
"gotify": { "gotify": {
"apps": "Applications", "apps": "Applications",
"clients": "Clients", "clients": "Klientoj",
"messages": "Mesaĝoj" "messages": "Mesaĝoj"
}, },
"prowlarr": { "prowlarr": {
@@ -404,48 +398,48 @@
"transferRate": "Rate" "transferRate": "Rate"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "Uzantoj",
"status_count": "Afiŝoj", "status_count": "Afiŝoj",
"domain_count": "Domains" "domain_count": "Domains"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "Wanted",
"queued": "Queued", "queued": "Queued",
"series": "Series" "series": "Serioj"
}, },
"minecraft": { "minecraft": {
"players": "Players", "players": "Players",
"version": "Version", "version": "Version",
"status": "Status", "status": "Stato",
"up": "Online", "up": "Online",
"down": "Offline" "down": "Malkonekta"
}, },
"miniflux": { "miniflux": {
"read": "Read", "read": "Read",
"unread": "Unread" "unread": "Unread"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "Uzantoj",
"loginsLast24H": "Logins (24h)", "loginsLast24H": "Logins (24h)",
"failedLoginsLast24H": "Failed Logins (24h)" "failedLoginsLast24H": "Failed Logins (24h)"
}, },
"proxmox": { "proxmox": {
"mem": "MEM", "mem": "MEM",
"cpu": "CPU", "cpu": "Ĉefprocesoro",
"lxc": "LXC", "lxc": "LXC",
"vms": "VMs" "vms": "VMs"
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "Ĉefprocesoro",
"load": "Load", "load": "Ŝarĝo",
"wait": "Please wait", "wait": "Bonvolu atendi",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temp", "_temp": "Temp",
"warn": "Warn", "warn": "Warn",
"uptime": "UP", "uptime": "UP",
"total": "Total", "total": "Totalo",
"free": "Free", "free": "Libera",
"used": "Used", "used": "Uzata",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Crit", "crit": "Crit",
@@ -470,13 +464,13 @@
"1-day": "Mainly Sunny", "1-day": "Mainly Sunny",
"1-night": "Mainly Clear", "1-night": "Mainly Clear",
"2-day": "Nubeta", "2-day": "Nubeta",
"2-night": "Partly Cloudy", "2-night": "Nubeta",
"3-day": "Nuba", "3-day": "Nuba",
"3-night": "Cloudy", "3-night": "Nuba",
"45-day": "Nebula", "45-day": "Nebula",
"45-night": "Foggy", "45-night": "Nebula",
"48-day": "Foggy", "48-day": "Nebula",
"48-night": "Foggy", "48-night": "Nebula",
"51-day": "Light Drizzle", "51-day": "Light Drizzle",
"51-night": "Light Drizzle", "51-night": "Light Drizzle",
"53-day": "Drizzle", "53-day": "Drizzle",
@@ -490,19 +484,19 @@
"61-day": "Light Rain", "61-day": "Light Rain",
"61-night": "Light Rain", "61-night": "Light Rain",
"63-day": "Pluvo", "63-day": "Pluvo",
"63-night": "Rain", "63-night": "Pluvo",
"65-day": "Pluvego", "65-day": "Pluvego",
"65-night": "Heavy Rain", "65-night": "Pluvego",
"66-day": "Frosta pluvo", "66-day": "Frosta pluvo",
"66-night": "Freezing Rain", "66-night": "Frosta pluvo",
"67-day": "Freezing Rain", "67-day": "Frosta pluvo",
"67-night": "Freezing Rain", "67-night": "Frosta pluvo",
"71-day": "Light Snow", "71-day": "Light Snow",
"71-night": "Light Snow", "71-night": "Light Snow",
"73-day": "Neĝo", "73-day": "Neĝo",
"73-night": "Snow", "73-night": "Neĝo",
"75-day": "Neĝego", "75-day": "Neĝego",
"75-night": "Heavy Snow", "75-night": "Neĝego",
"77-day": "Snow Grains", "77-day": "Snow Grains",
"77-night": "Snow Grains", "77-night": "Snow Grains",
"80-day": "Light Showers", "80-day": "Light Showers",
@@ -516,11 +510,11 @@
"86-day": "Snow Showers", "86-day": "Snow Showers",
"86-night": "Snow Showers", "86-night": "Snow Showers",
"95-day": "Fulmotondro", "95-day": "Fulmotondro",
"95-night": "Thunderstorm", "95-night": "Fulmotondro",
"96-day": "Fulmotondro kun hajlo", "96-day": "Fulmotondro kun hajlo",
"96-night": "Thunderstorm With Hail", "96-night": "Fulmotondro kun hajlo",
"99-day": "Thunderstorm With Hail", "99-day": "Fulmotondro kun hajlo",
"99-night": "Thunderstorm With Hail" "99-night": "Fulmotondro kun hajlo"
}, },
"homebridge": { "homebridge": {
"available_update": "Sistemo", "available_update": "Sistemo",
@@ -539,7 +533,7 @@
"grace": "In Grace Period", "grace": "In Grace Period",
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"status": "Status", "status": "Stato",
"last_ping": "Last Ping", "last_ping": "Last Ping",
"never": "No pings yet" "never": "No pings yet"
}, },
@@ -549,7 +543,7 @@
"containers_failed": "Failed" "containers_failed": "Failed"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "Aprobita",
"rejectedPushes": "Rejected", "rejectedPushes": "Rejected",
"filters": "Filtriloj", "filters": "Filtriloj",
"indexers": "Indexers" "indexers": "Indexers"
@@ -569,7 +563,7 @@
"speed": "Speed", "speed": "Speed",
"active": "Active", "active": "Active",
"queue": "Queue", "queue": "Queue",
"total": "Total" "total": "Totalo"
}, },
"gluetun": { "gluetun": {
"public_ip": "Public IP", "public_ip": "Public IP",
@@ -578,7 +572,7 @@
"port_forwarded": "Port Forwarded" "port_forwarded": "Port Forwarded"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Channels", "channels": "Kanaloj",
"hd": "HD", "hd": "HD",
"tunerCount": "Tuners", "tunerCount": "Tuners",
"channelNumber": "Channel", "channelNumber": "Channel",
@@ -586,17 +580,17 @@
"signalStrength": "Strength", "signalStrength": "Strength",
"signalQuality": "Quality", "signalQuality": "Quality",
"symbolQuality": "Quality", "symbolQuality": "Quality",
"networkRate": "Bitrate", "networkRate": "Bitrapido",
"clientIP": "Client" "clientIP": "Client"
}, },
"scrutiny": { "scrutiny": {
"passed": "Passed", "passed": "Passed",
"failed": "Failed", "failed": "Failed",
"unknown": "Unknown" "unknown": "Nekonata"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Inbox", "inbox": "Inbox",
"total": "Total" "total": "Totalo"
}, },
"peanut": { "peanut": {
"battery_charge": "Battery Charge", "battery_charge": "Battery Charge",
@@ -640,14 +634,14 @@
"layers": "Layers" "layers": "Layers"
}, },
"octoprint": { "octoprint": {
"printer_state": "Status", "printer_state": "Stato",
"temp_tool": "Tool temp", "temp_tool": "Tool temp",
"temp_bed": "Bed temp", "temp_bed": "Bed temp",
"job_completion": "Completion" "job_completion": "Completion"
}, },
"cloudflared": { "cloudflared": {
"origin_ip": "Origin IP", "origin_ip": "Origin IP",
"status": "Status" "status": "Stato"
}, },
"pfsense": { "pfsense": {
"load": "Load Avg", "load": "Load Avg",
@@ -662,11 +656,11 @@
"proxmoxbackupserver": { "proxmoxbackupserver": {
"datastore_usage": "Datastore", "datastore_usage": "Datastore",
"failed_tasks_24h": "Failed Tasks 24h", "failed_tasks_24h": "Failed Tasks 24h",
"cpu_usage": "CPU", "cpu_usage": "Ĉefprocesoro",
"memory_usage": "Memory" "memory_usage": "Memory"
}, },
"immich": { "immich": {
"users": "Users", "users": "Uzantoj",
"photos": "Photos", "photos": "Photos",
"videos": "Videos", "videos": "Videos",
"storage": "Storage" "storage": "Storage"
@@ -679,23 +673,23 @@
"m": "m" "m": "m"
}, },
"atsumeru": { "atsumeru": {
"series": "Series", "series": "Serioj",
"archives": "Archives", "archives": "Archives",
"chapters": "Chapters", "chapters": "Chapters",
"categories": "Categories" "categories": "Categories"
}, },
"komga": { "komga": {
"libraries": "Libraries", "libraries": "Libraries",
"series": "Series", "series": "Serioj",
"books": "Books" "books": "Libroj"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Tagoj",
"uptime": "Uptime", "uptime": "Uptime",
"volumeAvailable": "Available" "volumeAvailable": "Havebla"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Serioj",
"issues": "Issues", "issues": "Issues",
"wanted": "Wanted" "wanted": "Wanted"
}, },
@@ -730,7 +724,7 @@
"numshares": "Shared Items" "numshares": "Shared Items"
}, },
"kopia": { "kopia": {
"status": "Status", "status": "Stato",
"size": "Size", "size": "Size",
"lastrun": "Last Run", "lastrun": "Last Run",
"nextrun": "Next Run", "nextrun": "Next Run",
@@ -762,7 +756,7 @@
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasts", "podcasts": "Podcasts",
"books": "Books", "books": "Libroj",
"podcastsDuration": "Duration", "podcastsDuration": "Duration",
"booksDuration": "Duration" "booksDuration": "Duration"
}, },
@@ -776,10 +770,10 @@
"updates": "Updates" "updates": "Updates"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "Libroj",
"authors": "Authors", "authors": "Authors",
"categories": "Categories", "categories": "Categories",
"series": "Series" "series": "Serioj"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "Queue",
@@ -788,12 +782,12 @@
"downloadSpeed": "Speed" "downloadSpeed": "Speed"
}, },
"kavita": { "kavita": {
"seriesCount": "Series", "seriesCount": "Serioj",
"totalFiles": "Files" "totalFiles": "Files"
}, },
"azuredevops": { "azuredevops": {
"result": "Result", "result": "Result",
"status": "Status", "status": "Stato",
"buildId": "Build ID", "buildId": "Build ID",
"succeeded": "Succeeded", "succeeded": "Succeeded",
"notStarted": "Not Started", "notStarted": "Not Started",
@@ -802,19 +796,19 @@
"inProgress": "In Progress", "inProgress": "In Progress",
"totalPrs": "Total PRs", "totalPrs": "Total PRs",
"myPrs": "My PRs", "myPrs": "My PRs",
"approved": "Approved" "approved": "Aprobita"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "Stato",
"online": "Online", "online": "Online",
"offline": "Offline", "offline": "Malkonekta",
"name": "Name", "name": "Name",
"map": "Map", "map": "Map",
"currentPlayers": "Current players", "currentPlayers": "Current players",
"players": "Players", "players": "Players",
"maxPlayers": "Max players", "maxPlayers": "Max players",
"bots": "Bots", "bots": "Bots",
"ping": "Ping" "ping": "Sondaĵo"
}, },
"urbackup": { "urbackup": {
"ok": "Ok", "ok": "Ok",
@@ -824,14 +818,14 @@
}, },
"mealie": { "mealie": {
"recipes": "Recipes", "recipes": "Recipes",
"users": "Users", "users": "Uzantoj",
"categories": "Categories", "categories": "Categories",
"tags": "Tags" "tags": "Tags"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Downloading", "downloading": "Downloading",
"total": "Total", "total": "Totalo",
"running": "Running", "running": "Rulata",
"stopped": "Stopped", "stopped": "Stopped",
"passed": "Passed", "passed": "Passed",
"failed": "Failed" "failed": "Failed"
@@ -845,7 +839,7 @@
"bytesRx": "Received" "bytesRx": "Received"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "Stato",
"uptime": "Uptime", "uptime": "Uptime",
"lastDown": "Last Downtime", "lastDown": "Last Downtime",
"downDuration": "Downtime Duration", "downDuration": "Downtime Duration",
@@ -856,7 +850,7 @@
"up": "Up", "up": "Up",
"seemsdown": "Seems Down", "seemsdown": "Seems Down",
"down": "Down", "down": "Down",
"unknown": "Unknown" "unknown": "Nekonata"
}, },
"calendar": { "calendar": {
"inCinemas": "In cinemas", "inCinemas": "In cinemas",
@@ -908,12 +902,12 @@
"galleries": "Galleries", "galleries": "Galleries",
"performers": "Performers", "performers": "Performers",
"studios": "Studios", "studios": "Studios",
"movies": "Movies", "movies": "Filmoj",
"tags": "Tags", "tags": "Tags",
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "Uzantoj",
"recipes": "Recipes", "recipes": "Recipes",
"keywords": "Keywords" "keywords": "Keywords"
}, },
@@ -922,7 +916,7 @@
"totalWithWarranty": "With Warranty", "totalWithWarranty": "With Warranty",
"locations": "Locations", "locations": "Locations",
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "Uzantoj",
"totalValue": "Total Value" "totalValue": "Total Value"
}, },
"crowdsec": { "crowdsec": {
@@ -933,7 +927,7 @@
"connected": "Connected", "connected": "Connected",
"enabled": "Enabled", "enabled": "Enabled",
"disabled": "Disabled", "disabled": "Disabled",
"total": "Total" "total": "Totalo"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
@@ -942,9 +936,9 @@
"banned": "Banned" "banned": "Banned"
}, },
"myspeed": { "myspeed": {
"ping": "Ping", "ping": "Sondaĵo",
"download": "Download", "download": "Elŝuti",
"upload": "Upload" "upload": "Alŝuti"
}, },
"stocks": { "stocks": {
"stocks": "Stocks", "stocks": "Stocks",
@@ -965,7 +959,7 @@
}, },
"zabbix": { "zabbix": {
"unclassified": "Not classified", "unclassified": "Not classified",
"information": "Information", "information": "Informo",
"warning": "Warning", "warning": "Warning",
"average": "Average", "average": "Average",
"high": "High", "high": "High",
@@ -989,9 +983,9 @@
"name": "Name", "name": "Name",
"address": "Address", "address": "Address",
"last_seen": "Last Seen", "last_seen": "Last Seen",
"status": "Status", "status": "Stato",
"online": "Online", "online": "Online",
"offline": "Offline" "offline": "Malkonekta"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Name",
@@ -1000,9 +994,9 @@
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"pending": "Pending", "pending": "Pending",
"status": "Status", "status": "Stato",
"updated": "Updated", "updated": "Updated",
"cpu": "CPU", "cpu": "Ĉefprocesoro",
"memory": "MEM", "memory": "MEM",
"disk": "Disk", "disk": "Disk",
"network": "NET" "network": "NET"
@@ -1011,7 +1005,7 @@
"apps": "Apps", "apps": "Apps",
"synced": "Synced", "synced": "Synced",
"outOfSync": "Out Of Sync", "outOfSync": "Out Of Sync",
"healthy": "Healthy", "healthy": "Sana",
"degraded": "Degraded", "degraded": "Degraded",
"progressing": "Progressing", "progressing": "Progressing",
"missing": "Missing", "missing": "Missing",
@@ -1027,8 +1021,8 @@
"projects": "Projects" "projects": "Projects"
}, },
"apcups": { "apcups": {
"status": "Status", "status": "Stato",
"load": "Load", "load": "Ŝarĝo",
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Time Left" "timeleft": "Time Left"
}, },
@@ -1045,43 +1039,20 @@
"connected": "Connected", "connected": "Connected",
"disconnected": "Disconnected", "disconnected": "Disconnected",
"updateStatus": "Update", "updateStatus": "Update",
"update_yes": "Available", "update_yes": "Havebla",
"update_no": "Up to Date", "update_no": "Up to Date",
"downloads": "Downloads", "downloads": "Downloads",
"uploads": "Uploads", "uploads": "Uploads",
"sharedFiles": "Files" "sharedFiles": "Files"
}, },
"jellystat": { "jellystat": {
"songs": "Songs", "songs": "Kantoj",
"movies": "Movies", "movies": "Filmoj",
"episodes": "Episodes", "episodes": "Epizodoj",
"other": "Other" "other": "Other"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -43,7 +43,7 @@
"mem": "MEM", "mem": "MEM",
"total": "Total", "total": "Total",
"free": "Libre", "free": "Libre",
"used": "Utilizado", "used": "Usado",
"load": "Carga", "load": "Carga",
"temp": "TEMP", "temp": "TEMP",
"max": "Máx.", "max": "Máx.",
@@ -63,7 +63,7 @@
"wlan_users": "Usuarios WLAN", "wlan_users": "Usuarios WLAN",
"up": "ACTIVO", "up": "ACTIVO",
"down": "CAÍDO", "down": "CAÍDO",
"wait": "Espere, por favor", "wait": "Espera, por favor",
"empty_data": "Se desconoce el estado del subsistema" "empty_data": "Se desconoce el estado del subsistema"
}, },
"docker": { "docker": {
@@ -83,7 +83,7 @@
"partial": "Parcial" "partial": "Parcial"
}, },
"ping": { "ping": {
"error": "Error", "error": "Fallo",
"ping": "Ping", "ping": "Ping",
"down": "Inactivo", "down": "Inactivo",
"up": "Activo", "up": "Activo",
@@ -91,10 +91,10 @@
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "Estado HTTP", "http_status": "Estado HTTP",
"error": "Error", "error": "Fallo",
"response": "Respuesta", "response": "Respuesta",
"down": "Inactivo", "down": "Inactivo",
"up": "Activos", "up": "Activo",
"not_available": "No disponible" "not_available": "No disponible"
}, },
"emby": { "emby": {
@@ -108,8 +108,8 @@
"songs": "Canciones" "songs": "Canciones"
}, },
"esphome": { "esphome": {
"offline": "Fuera de línea", "offline": "Desconectado",
"offline_alt": "Fuera de línea", "offline_alt": "Desconectado",
"online": "En línea", "online": "En línea",
"total": "Total", "total": "Total",
"unknown": "Desconocido" "unknown": "Desconocido"
@@ -145,7 +145,7 @@
"maxDown": "Descarga máxima", "maxDown": "Descarga máxima",
"maxUp": "Subida máxima", "maxUp": "Subida máxima",
"down": "Inactivo", "down": "Inactivo",
"up": "Activos", "up": "Activo",
"received": "Recibido", "received": "Recibido",
"sent": "Enviado", "sent": "Enviado",
"externalIPAddress": "IP ext.", "externalIPAddress": "IP ext.",
@@ -205,13 +205,13 @@
"transmission": { "transmission": {
"download": "Descarga", "download": "Descarga",
"upload": "Subida", "upload": "Subida",
"leech": "Descargando", "leech": "Descargas",
"seed": "Semillas" "seed": "Semillas"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Descarga", "download": "Descarga",
"upload": "Subida", "upload": "Subida",
"leech": "Descargando", "leech": "Descargas",
"seed": "Semillas" "seed": "Semillas"
}, },
"qnap": { "qnap": {
@@ -225,7 +225,7 @@
"deluge": { "deluge": {
"download": "Descarga", "download": "Descarga",
"upload": "Subida", "upload": "Subida",
"leech": "Descargando", "leech": "Descargas",
"seed": "Semillas" "seed": "Semillas"
}, },
"develancacheui": { "develancacheui": {
@@ -235,14 +235,14 @@
"downloadstation": { "downloadstation": {
"download": "Descarga", "download": "Descarga",
"upload": "Subida", "upload": "Subida",
"leech": "Descargando", "leech": "Descargas",
"seed": "Semillas" "seed": "Semillas"
}, },
"sonarr": { "sonarr": {
"wanted": "Buscando", "wanted": "Buscando",
"queued": "En cola", "queued": "En cola",
"series": "Series", "series": "Series",
"queue": "Cola", "queue": "En cola",
"unknown": "Desconocido" "unknown": "Desconocido"
}, },
"radarr": { "radarr": {
@@ -250,7 +250,7 @@
"missing": "Faltantes", "missing": "Faltantes",
"queued": "En cola", "queued": "En cola",
"movies": "Películas", "movies": "Películas",
"queue": "Cola", "queue": "En cola",
"unknown": "Desconocido" "unknown": "Desconocido"
}, },
"lidarr": { "lidarr": {
@@ -307,15 +307,15 @@
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "En ejecución", "running": "Ejecutando",
"stopped": "Detenido", "stopped": "Detenido",
"total": "Total" "total": "Total"
}, },
"suwayomi": { "suwayomi": {
"download": "Descargado", "download": "Descargado",
"nondownload": "No descargado", "nondownload": "No descargado",
"read": "Leído", "read": "Leer",
"unread": "No leídos", "unread": "Sin leer",
"downloadedread": "Descargado y leído", "downloadedread": "Descargado y leído",
"downloadedunread": "Descargado y no leído", "downloadedunread": "Descargado y no leído",
"nondownloadedread": "No descargado y leído", "nondownloadedread": "No descargado y leído",
@@ -349,7 +349,7 @@
"totalClients": "Clientes" "totalClients": "Clientes"
}, },
"tdarr": { "tdarr": {
"queue": "Cola", "queue": "En cola",
"processed": "Procesado", "processed": "Procesado",
"errored": "Error", "errored": "Error",
"saved": "Guardado" "saved": "Guardado"
@@ -359,19 +359,13 @@
"services": "Servicios", "services": "Servicios",
"middleware": "Software intermedio" "middleware": "Software intermedio"
}, },
"trilium": {
"version": "Versión",
"notesCount": "Notas",
"dbSize": "Tamaño de la base de datos",
"unknown": "Desconocido"
},
"navidrome": { "navidrome": {
"nothing_streaming": "Sin transmisiones activas", "nothing_streaming": "Sin transmisiones activas",
"please_wait": "Por favor, espera" "please_wait": "Por favor, espera"
}, },
"npm": { "npm": {
"enabled": "Activos", "enabled": "Activado",
"disabled": "Inactivos", "disabled": "Desactivado",
"total": "Total" "total": "Total"
}, },
"coinmarketcap": { "coinmarketcap": {
@@ -395,7 +389,7 @@
}, },
"jackett": { "jackett": {
"configured": "Configurado", "configured": "Configurado",
"errored": "Con fallo" "errored": "Error"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Sesiones", "numActiveSessions": "Sesiones",
@@ -418,7 +412,7 @@
"version": "Versión", "version": "Versión",
"status": "Estado", "status": "Estado",
"up": "En línea", "up": "En línea",
"down": "Fuera de línea" "down": "Desconectado"
}, },
"miniflux": { "miniflux": {
"read": "Leer", "read": "Leer",
@@ -438,7 +432,7 @@
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Carga", "load": "Carga",
"wait": "Por favor, espera", "wait": "Espera, por favor",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temperatura", "_temp": "Temperatura",
"warn": "Advertir", "warn": "Advertir",
@@ -449,7 +443,7 @@
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Crít.", "crit": "Crít.",
"read": "Leído", "read": "Leer",
"write": "Escribir", "write": "Escribir",
"gpu": "GPU", "gpu": "GPU",
"mem": "Memoria", "mem": "Memoria",
@@ -461,7 +455,7 @@
"search": "Buscar", "search": "Buscar",
"custom": "Personalizado", "custom": "Personalizado",
"visit": "Visitar", "visit": "Visitar",
"url": "URL", "url": "Enlace",
"searchsuggestion": "Sugerencia" "searchsuggestion": "Sugerencia"
}, },
"wmo": { "wmo": {
@@ -470,13 +464,13 @@
"1-day": "Mayormente soleado", "1-day": "Mayormente soleado",
"1-night": "Mayormente despejado", "1-night": "Mayormente despejado",
"2-day": "Parcialmente nuboso", "2-day": "Parcialmente nuboso",
"2-night": "Parcialmente nublado", "2-night": "Parcialmente nuboso",
"3-day": "Nublado", "3-day": "Nublado",
"3-night": "Nublado", "3-night": "Nublado",
"45-day": "Niebla", "45-day": "Niebla",
"45-night": "Neblinoso", "45-night": "Niebla",
"48-day": "Neblinoso", "48-day": "Niebla",
"48-night": "Neblinoso", "48-night": "Niebla",
"51-day": "Llovizna ligera", "51-day": "Llovizna ligera",
"51-night": "Llovizna ligera", "51-night": "Llovizna ligera",
"53-day": "Llovizna", "53-day": "Llovizna",
@@ -492,29 +486,29 @@
"63-day": "Lluvia", "63-day": "Lluvia",
"63-night": "Lluvia", "63-night": "Lluvia",
"65-day": "Lluvia torrencial", "65-day": "Lluvia torrencial",
"65-night": "Lluvia fuerte", "65-night": "Lluvia torrencial",
"66-day": "Granizo", "66-day": "Granizo",
"66-night": "Lluvia helada", "66-night": "Granizo",
"67-day": "Lluvia helada", "67-day": "Granizo",
"67-night": "Lluvia helada", "67-night": "Granizo",
"71-day": "Nevada leve", "71-day": "Nevada leve",
"71-night": "Nieve ligera", "71-night": "Nevada leve",
"73-day": "Nevada", "73-day": "Nevada",
"73-night": "Nieve", "73-night": "Nevada",
"75-day": "Nevada intensa", "75-day": "Nevada intensa",
"75-night": "Nieve intensa", "75-night": "Nevada intensa",
"77-day": "Granizada", "77-day": "Granizada",
"77-night": "Granizada", "77-night": "Granizada",
"80-day": "Llovizna", "80-day": "Llovizna",
"80-night": "Chubascos ligeros", "80-night": "Llovizna",
"81-day": "Lluvia", "81-day": "Lluvia",
"81-night": "Chubascos", "81-night": "Lluvia",
"82-day": "Lluvias torrenciales", "82-day": "Lluvias torrenciales",
"82-night": "Chubascos fuertes", "82-night": "Lluvias torrenciales",
"85-day": "Lluvia de nieve", "85-day": "Lluvia de nieve",
"85-night": "Chubascos de nieve", "85-night": "Lluvia de nieve",
"86-day": "Chubascos de nieve", "86-day": "Lluvia de nieve",
"86-night": "Chubascos de nieve", "86-night": "Lluvia de nieve",
"95-day": "Tormenta", "95-day": "Tormenta",
"95-night": "Tormenta", "95-night": "Tormenta",
"96-day": "Tormenta con granizo", "96-day": "Tormenta con granizo",
@@ -555,7 +549,7 @@
"indexers": "Indexadores" "indexers": "Indexadores"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Cola", "downloads": "En cola",
"videos": "Videos", "videos": "Videos",
"channels": "Canales", "channels": "Canales",
"playlists": "Listas de reproducción" "playlists": "Listas de reproducción"
@@ -568,14 +562,14 @@
"pyload": { "pyload": {
"speed": "Velocidad", "speed": "Velocidad",
"active": "Activo", "active": "Activo",
"queue": "Cola", "queue": "En cola",
"total": "Total" "total": "Total"
}, },
"gluetun": { "gluetun": {
"public_ip": "IP pública", "public_ip": "IP pública",
"region": "Región", "region": "Región",
"country": "País", "country": "País",
"port_forwarded": "Puerto redireccionado" "port_forwarded": "Port Forwarded"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Canales", "channels": "Canales",
@@ -655,7 +649,7 @@
"wanStatus": "Estado de la WAN", "wanStatus": "Estado de la WAN",
"up": "Activo", "up": "Activo",
"down": "Inactivo", "down": "Inactivo",
"temp": "Temp", "temp": "Temperatura",
"disk": "Uso del disco", "disk": "Uso del disco",
"wanIP": "IP de la WAN" "wanIP": "IP de la WAN"
}, },
@@ -706,7 +700,7 @@
"people": "Personas" "people": "Personas"
}, },
"fileflows": { "fileflows": {
"queue": "Cola", "queue": "En cola",
"processing": "Procesando", "processing": "Procesando",
"processed": "Procesado", "processed": "Procesado",
"time": "Tiempo" "time": "Tiempo"
@@ -800,21 +794,21 @@
"failed": "Fallido", "failed": "Fallido",
"canceled": "Cancelado", "canceled": "Cancelado",
"inProgress": "En curso", "inProgress": "En curso",
"totalPrs": "PRs totales", "totalPrs": "RP totales",
"myPrs": "Mis PRs", "myPrs": "Mis logros",
"approved": "Aprobado" "approved": "Aprobado"
}, },
"gamedig": { "gamedig": {
"status": "Estado", "status": "Estado",
"online": "En línea", "online": "En línea",
"offline": "Fuera de línea", "offline": "Desconectado",
"name": "Nombre", "name": "Nombre",
"map": "Mapa", "map": "Mapa",
"currentPlayers": "Jugadores actuales", "currentPlayers": "Jugadores actuales",
"players": "Jugadores", "players": "Jugadores",
"maxPlayers": "Jugadores máximos", "maxPlayers": "Jugadores máximos",
"bots": "Bots", "bots": "Bots",
"ping": "Latencia" "ping": "Ping"
}, },
"urbackup": { "urbackup": {
"ok": "OK", "ok": "OK",
@@ -852,19 +846,19 @@
"sitesUp": "Sitios activos", "sitesUp": "Sitios activos",
"sitesDown": "Sitios inactivos", "sitesDown": "Sitios inactivos",
"paused": "Pausado", "paused": "Pausado",
"notyetchecked": "Aún no comprobado", "notyetchecked": "Aún no verificado",
"up": "Activo", "up": "Activo",
"seemsdown": "Parece caído", "seemsdown": "Parece caída",
"down": "Inactivo", "down": "Inactivo",
"unknown": "Desconocido" "unknown": "Desconocido"
}, },
"calendar": { "calendar": {
"inCinemas": "En cines", "inCinemas": "En cine",
"physicalRelease": "Lanzamiento en físico", "physicalRelease": "Lanzamiento en físico",
"digitalRelease": "Lanzamiento en digital", "digitalRelease": "Lanzamiento en digital",
"noEventsToday": "¡Sin eventos para hoy!", "noEventsToday": "¡Sin eventos para hoy!",
"noEventsFound": "No se encontraron eventos", "noEventsFound": "No se encontraron eventos",
"errorWhenLoadingData": "Error al cargar los datos del calendario" "errorWhenLoadingData": "Error when loading calendar data"
}, },
"romm": { "romm": {
"platforms": "Plataformas", "platforms": "Plataformas",
@@ -892,7 +886,7 @@
}, },
"gitea": { "gitea": {
"notifications": "Notificaciones", "notifications": "Notificaciones",
"issues": "Incidencias", "issues": "Números",
"pulls": "Solicitudes de cambios", "pulls": "Solicitudes de cambios",
"repositories": "Repositorios" "repositories": "Repositorios"
}, },
@@ -930,9 +924,9 @@
"bans": "Baneos" "bans": "Baneos"
}, },
"wgeasy": { "wgeasy": {
"connected": "Conectados", "connected": "Conectado",
"enabled": "Activo", "enabled": "Activado",
"disabled": "Inactivos", "disabled": "Desactivado",
"total": "Total" "total": "Total"
}, },
"swagdashboard": { "swagdashboard": {
@@ -942,7 +936,7 @@
"banned": "Baneado" "banned": "Baneado"
}, },
"myspeed": { "myspeed": {
"ping": "Latencia", "ping": "Ping",
"download": "Descarga", "download": "Descarga",
"upload": "Subida" "upload": "Subida"
}, },
@@ -991,7 +985,7 @@
"last_seen": "Visto por última vez", "last_seen": "Visto por última vez",
"status": "Estado", "status": "Estado",
"online": "En línea", "online": "En línea",
"offline": "Fuera de línea" "offline": "Desconectado"
}, },
"beszel": { "beszel": {
"name": "Nombre", "name": "Nombre",
@@ -1022,7 +1016,7 @@
}, },
"gitlab": { "gitlab": {
"groups": "Grupos", "groups": "Grupos",
"issues": "Incidencias", "issues": "Números",
"merges": "Solicitudes de fusión", "merges": "Solicitudes de fusión",
"projects": "Proyectos" "projects": "Proyectos"
}, },
@@ -1058,30 +1052,7 @@
"other": "Otros" "other": "Otros"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Problemas de servicio", "serviceErrors": "Service issues",
"hostErrors": "Problemas de host" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "En ejecución",
"stopped": "Detenido",
"down": "Inactivo",
"unhealthy": "En mal estado",
"unknown": "Desconocido",
"servers": "Servidores",
"stacks": "Stacks",
"containers": "Contenedores"
},
"filebrowser": {
"available": "Disponible",
"used": "Usado",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Suscripciones",
"thisMonthlyCost": "Este mes",
"nextMonthlyCost": "Próximo mes",
"previousMonthlyCost": "Mes anterior",
"nextRenewingSubscription": "Próximo pago"
} }
} }

View File

@@ -63,7 +63,7 @@
"wlan_users": "WLAN Erabiltzaileak", "wlan_users": "WLAN Erabiltzaileak",
"up": "UP", "up": "UP",
"down": "DOWN", "down": "DOWN",
"wait": "Please wait", "wait": "Itxaron mesedez",
"empty_data": "Subsystem status unknown" "empty_data": "Subsystem status unknown"
}, },
"docker": { "docker": {
@@ -93,8 +93,8 @@
"http_status": "HTTP status", "http_status": "HTTP status",
"error": "Error", "error": "Error",
"response": "Erantzuna", "response": "Erantzuna",
"down": "Down", "down": "Behera",
"up": "Up", "up": "Gora",
"not_available": "Not Available" "not_available": "Not Available"
}, },
"emby": { "emby": {
@@ -111,8 +111,8 @@
"offline": "Offline", "offline": "Offline",
"offline_alt": "Offline", "offline_alt": "Offline",
"online": "Online", "online": "Online",
"total": "Total", "total": "Guztira",
"unknown": "Unknown" "unknown": "Ezezaguna"
}, },
"evcc": { "evcc": {
"pv_power": "Produkzioak", "pv_power": "Produkzioak",
@@ -144,8 +144,8 @@
"uptime": "Uptime", "uptime": "Uptime",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
"down": "Down", "down": "Behera",
"up": "Up", "up": "Gora",
"received": "Received", "received": "Received",
"sent": "Bidalita", "sent": "Bidalita",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP",
@@ -170,7 +170,7 @@
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "Playing",
"transcoding": "Transcoding", "transcoding": "Transcoding",
"bitrate": "Bitrate", "bitrate": "Bit-tasa",
"no_active": "No Active Streams", "no_active": "No Active Streams",
"plex_connection_error": "Check Plex Connection" "plex_connection_error": "Check Plex Connection"
}, },
@@ -189,7 +189,7 @@
"plex": { "plex": {
"streams": "Active Streams", "streams": "Active Streams",
"albums": "Albums", "albums": "Albums",
"movies": "Movies", "movies": "Filmak",
"tv": "TV Shows" "tv": "TV Shows"
}, },
"sabnzbd": { "sabnzbd": {
@@ -199,18 +199,18 @@
}, },
"rutorrent": { "rutorrent": {
"active": "Active", "active": "Active",
"upload": "Upload", "upload": "Kargatu",
"download": "Download" "download": "Jeitsierak"
}, },
"transmission": { "transmission": {
"download": "Download", "download": "Jeitsierak",
"upload": "Upload", "upload": "Kargatu",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Download", "download": "Jeitsierak",
"upload": "Upload", "upload": "Kargatu",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -223,8 +223,8 @@
"invalid": "Invalid" "invalid": "Invalid"
}, },
"deluge": { "deluge": {
"download": "Download", "download": "Jeitsierak",
"upload": "Upload", "upload": "Kargatu",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -233,25 +233,25 @@
"cachemissbytes": "Cache Miss Bytes" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Jeitsierak",
"upload": "Upload", "upload": "Kargatu",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"sonarr": { "sonarr": {
"wanted": "Wanted", "wanted": "Wanted",
"queued": "Queued", "queued": "Queued",
"series": "Series", "series": "Serieak",
"queue": "Queue", "queue": "Queue",
"unknown": "Unknown" "unknown": "Ezezaguna"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Wanted",
"missing": "Missing", "missing": "Missing",
"queued": "Queued", "queued": "Queued",
"movies": "Movies", "movies": "Filmak",
"queue": "Queue", "queue": "Queue",
"unknown": "Unknown" "unknown": "Ezezaguna"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Wanted",
@@ -284,8 +284,8 @@
"available": "Available" "available": "Available"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Guztira",
"connected": "Connected", "connected": "Konektatuta",
"new_devices": "New Devices", "new_devices": "New Devices",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
}, },
@@ -302,20 +302,20 @@
"latency": "Latency" "latency": "Latency"
}, },
"speedtest": { "speedtest": {
"upload": "Upload", "upload": "Kargatu",
"download": "Download", "download": "Jeitsierak",
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "Running",
"stopped": "Stopped", "stopped": "Stopped",
"total": "Total" "total": "Guztira"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Downloaded",
"nondownload": "Non-Downloaded", "nondownload": "Non-Downloaded",
"read": "Read", "read": "Read",
"unread": "Unread", "unread": "Irakurri gabe",
"downloadedread": "Downloaded & Read", "downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread", "downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read", "nondownloadedread": "Non-Downloaded & Read",
@@ -359,12 +359,6 @@
"services": "Services", "services": "Services",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "No Active Streams",
"please_wait": "Please Wait" "please_wait": "Please Wait"
@@ -372,7 +366,7 @@
"npm": { "npm": {
"enabled": "Enabled", "enabled": "Enabled",
"disabled": "Disabled", "disabled": "Disabled",
"total": "Total" "total": "Guztira"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Configure one or more crypto currencies to track", "configure": "Configure one or more crypto currencies to track",
@@ -411,7 +405,7 @@
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "Wanted",
"queued": "Queued", "queued": "Queued",
"series": "Series" "series": "Serieak"
}, },
"minecraft": { "minecraft": {
"players": "Jokalariak", "players": "Jokalariak",
@@ -422,7 +416,7 @@
}, },
"miniflux": { "miniflux": {
"read": "Read", "read": "Read",
"unread": "Unread" "unread": "Irakurri gabe"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "Users",
@@ -438,14 +432,14 @@
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Load", "load": "Load",
"wait": "Please wait", "wait": "Itxaron mesedez",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temp", "_temp": "Temp",
"warn": "Warn", "warn": "Warn",
"uptime": "UP", "uptime": "UP",
"total": "Total", "total": "Guztira",
"free": "Free", "free": "Free",
"used": "Used", "used": "Erabilita",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Crit", "crit": "Crit",
@@ -529,15 +523,15 @@
"up_to_date": "Up to Date", "up_to_date": "Up to Date",
"child_bridges": "Child Bridges", "child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Gora",
"pending": "Pending", "pending": "Pending",
"down": "Down" "down": "Behera"
}, },
"healthchecks": { "healthchecks": {
"new": "New", "new": "New",
"up": "Up", "up": "Gora",
"grace": "In Grace Period", "grace": "In Grace Period",
"down": "Down", "down": "Behera",
"paused": "Paused", "paused": "Paused",
"status": "Status", "status": "Status",
"last_ping": "Last Ping", "last_ping": "Last Ping",
@@ -569,7 +563,7 @@
"speed": "Speed", "speed": "Speed",
"active": "Active", "active": "Active",
"queue": "Queue", "queue": "Queue",
"total": "Total" "total": "Guztira"
}, },
"gluetun": { "gluetun": {
"public_ip": "Public IP", "public_ip": "Public IP",
@@ -586,17 +580,17 @@
"signalStrength": "Strength", "signalStrength": "Strength",
"signalQuality": "Quality", "signalQuality": "Quality",
"symbolQuality": "Quality", "symbolQuality": "Quality",
"networkRate": "Bitrate", "networkRate": "Bit-tasa",
"clientIP": "Client" "clientIP": "Client"
}, },
"scrutiny": { "scrutiny": {
"passed": "Passed", "passed": "Passed",
"failed": "Failed", "failed": "Failed",
"unknown": "Unknown" "unknown": "Ezezaguna"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Inbox", "inbox": "Inbox",
"total": "Total" "total": "Guztira"
}, },
"peanut": { "peanut": {
"battery_charge": "Battery Charge", "battery_charge": "Battery Charge",
@@ -653,8 +647,8 @@
"load": "Load Avg", "load": "Load Avg",
"memory": "Mem Usage", "memory": "Mem Usage",
"wanStatus": "WAN Status", "wanStatus": "WAN Status",
"up": "Up", "up": "Gora",
"down": "Down", "down": "Behera",
"temp": "Temp", "temp": "Temp",
"disk": "Disk Usage", "disk": "Disk Usage",
"wanIP": "WAN IP" "wanIP": "WAN IP"
@@ -679,29 +673,29 @@
"m": "m" "m": "m"
}, },
"atsumeru": { "atsumeru": {
"series": "Series", "series": "Serieak",
"archives": "Archives", "archives": "Archives",
"chapters": "Chapters", "chapters": "Chapters",
"categories": "Categories" "categories": "Categories"
}, },
"komga": { "komga": {
"libraries": "Libraries", "libraries": "Libraries",
"series": "Series", "series": "Serieak",
"books": "Books" "books": "Books"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Egun",
"uptime": "Uptime", "uptime": "Uptime",
"volumeAvailable": "Available" "volumeAvailable": "Available"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Serieak",
"issues": "Arazoak", "issues": "Arazoak",
"wanted": "Wanted" "wanted": "Wanted"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Albums",
"photos": "Photos", "photos": "Argazkiak",
"videos": "Videos", "videos": "Videos",
"people": "People" "people": "People"
}, },
@@ -779,7 +773,7 @@
"books": "Books", "books": "Books",
"authors": "Authors", "authors": "Authors",
"categories": "Categories", "categories": "Categories",
"series": "Series" "series": "Serieak"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "Queue",
@@ -788,7 +782,7 @@
"downloadSpeed": "Speed" "downloadSpeed": "Speed"
}, },
"kavita": { "kavita": {
"seriesCount": "Series", "seriesCount": "Serieak",
"totalFiles": "Files" "totalFiles": "Files"
}, },
"azuredevops": { "azuredevops": {
@@ -811,7 +805,7 @@
"name": "Izena", "name": "Izena",
"map": "Mapa", "map": "Mapa",
"currentPlayers": "Current players", "currentPlayers": "Current players",
"players": "Players", "players": "Jokalariak",
"maxPlayers": "Max players", "maxPlayers": "Max players",
"bots": "Bots", "bots": "Bots",
"ping": "Ping" "ping": "Ping"
@@ -830,7 +824,7 @@
}, },
"openmediavault": { "openmediavault": {
"downloading": "Deskargatzen", "downloading": "Deskargatzen",
"total": "Total", "total": "Guztira",
"running": "Running", "running": "Running",
"stopped": "Stopped", "stopped": "Stopped",
"passed": "Passed", "passed": "Passed",
@@ -839,8 +833,8 @@
"openwrt": { "openwrt": {
"uptime": "Uptime", "uptime": "Uptime",
"cpuLoad": "CPU Load Avg (5m)", "cpuLoad": "CPU Load Avg (5m)",
"up": "Up", "up": "Gora",
"down": "Down", "down": "Behera",
"bytesTx": "Transmitted", "bytesTx": "Transmitted",
"bytesRx": "Received" "bytesRx": "Received"
}, },
@@ -853,10 +847,10 @@
"sitesDown": "Sites Down", "sitesDown": "Sites Down",
"paused": "Paused", "paused": "Paused",
"notyetchecked": "Not Yet Checked", "notyetchecked": "Not Yet Checked",
"up": "Up", "up": "Gora",
"seemsdown": "Seems Down", "seemsdown": "Seems Down",
"down": "Down", "down": "Behera",
"unknown": "Unknown" "unknown": "Ezezaguna"
}, },
"calendar": { "calendar": {
"inCinemas": "In cinemas", "inCinemas": "In cinemas",
@@ -887,12 +881,12 @@
"plantit": { "plantit": {
"events": "Ekitaldiak", "events": "Ekitaldiak",
"plants": "Landareak", "plants": "Landareak",
"photos": "Photos", "photos": "Argazkiak",
"species": "Species" "species": "Species"
}, },
"gitea": { "gitea": {
"notifications": "Jakinarazpenak", "notifications": "Jakinarazpenak",
"issues": "Issues", "issues": "Arazoak",
"pulls": "Pull Requests", "pulls": "Pull Requests",
"repositories": "Repositories" "repositories": "Repositories"
}, },
@@ -908,8 +902,8 @@
"galleries": "Galleries", "galleries": "Galleries",
"performers": "Performers", "performers": "Performers",
"studios": "Studios", "studios": "Studios",
"movies": "Movies", "movies": "Filmak",
"tags": "Tags", "tags": "Etiketak",
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
@@ -930,10 +924,10 @@
"bans": "Bans" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Konektatuta",
"enabled": "Enabled", "enabled": "Enabled",
"disabled": "Disabled", "disabled": "Disabled",
"total": "Total" "total": "Guztira"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
@@ -943,8 +937,8 @@
}, },
"myspeed": { "myspeed": {
"ping": "Ping", "ping": "Ping",
"download": "Download", "download": "Jeitsierak",
"upload": "Upload" "upload": "Kargatu"
}, },
"stocks": { "stocks": {
"stocks": "Stocks", "stocks": "Stocks",
@@ -961,11 +955,11 @@
"linkwarden": { "linkwarden": {
"links": "Links", "links": "Links",
"collections": "Bildumak", "collections": "Bildumak",
"tags": "Tags" "tags": "Etiketak"
}, },
"zabbix": { "zabbix": {
"unclassified": "Not classified", "unclassified": "Not classified",
"information": "Information", "information": "Informazioa",
"warning": "Abisua", "warning": "Abisua",
"average": "Batez besteko", "average": "Batez besteko",
"high": "Altua", "high": "Altua",
@@ -986,7 +980,7 @@
"tasksInProgress": "Tasks In Progress" "tasksInProgress": "Tasks In Progress"
}, },
"headscale": { "headscale": {
"name": "Name", "name": "Izena",
"address": "Address", "address": "Address",
"last_seen": "Last Seen", "last_seen": "Last Seen",
"status": "Status", "status": "Status",
@@ -994,10 +988,10 @@
"offline": "Offline" "offline": "Offline"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Izena",
"systems": "Systems", "systems": "Systems",
"up": "Up", "up": "Gora",
"down": "Down", "down": "Behera",
"paused": "Paused", "paused": "Paused",
"pending": "Pending", "pending": "Pending",
"status": "Status", "status": "Status",
@@ -1011,7 +1005,7 @@
"apps": "Aplikazioak", "apps": "Aplikazioak",
"synced": "Sinkronizatuta", "synced": "Sinkronizatuta",
"outOfSync": "Out Of Sync", "outOfSync": "Out Of Sync",
"healthy": "Healthy", "healthy": "Osasuntsu",
"degraded": "Degraded", "degraded": "Degraded",
"progressing": "Progressing", "progressing": "Progressing",
"missing": "Missing", "missing": "Missing",
@@ -1022,7 +1016,7 @@
}, },
"gitlab": { "gitlab": {
"groups": "Taldeak", "groups": "Taldeak",
"issues": "Issues", "issues": "Arazoak",
"merges": "Merge Requests", "merges": "Merge Requests",
"projects": "Proiektuak" "projects": "Proiektuak"
}, },
@@ -1038,12 +1032,12 @@
"archived": "Archived", "archived": "Archived",
"highlights": "Highlights", "highlights": "Highlights",
"lists": "Lists", "lists": "Lists",
"tags": "Tags" "tags": "Etiketak"
}, },
"slskd": { "slskd": {
"slskStatus": "Network", "slskStatus": "Network",
"connected": "Connected", "connected": "Konektatuta",
"disconnected": "Disconnected", "disconnected": "Deskonektatuta",
"updateStatus": "Update", "updateStatus": "Update",
"update_yes": "Available", "update_yes": "Available",
"update_no": "Up to Date", "update_no": "Up to Date",
@@ -1052,36 +1046,13 @@
"sharedFiles": "Files" "sharedFiles": "Files"
}, },
"jellystat": { "jellystat": {
"songs": "Songs", "songs": "Abestiak",
"movies": "Movies", "movies": "Filmak",
"episodes": "Episodes", "episodes": "Episodes",
"other": "Other" "other": "Other"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -63,7 +63,7 @@
"wlan_users": "WLAN Users", "wlan_users": "WLAN Users",
"up": "UP", "up": "UP",
"down": "DOWN", "down": "DOWN",
"wait": "Please wait", "wait": "Odota, ole hyvä",
"empty_data": "Subsystem status unknown" "empty_data": "Subsystem status unknown"
}, },
"docker": { "docker": {
@@ -111,7 +111,7 @@
"offline": "Offline", "offline": "Offline",
"offline_alt": "Offline", "offline_alt": "Offline",
"online": "Online", "online": "Online",
"total": "Total", "total": "Yhteensä",
"unknown": "Unknown" "unknown": "Unknown"
}, },
"evcc": { "evcc": {
@@ -133,7 +133,7 @@
"unread": "Unread" "unread": "Unread"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Status", "connectionStatus": "Tila",
"connectionStatusUnconfigured": "Unconfigured", "connectionStatusUnconfigured": "Unconfigured",
"connectionStatusConnecting": "Connecting", "connectionStatusConnecting": "Connecting",
"connectionStatusAuthenticating": "Authenticating", "connectionStatusAuthenticating": "Authenticating",
@@ -168,10 +168,10 @@
"passes": "Passes" "passes": "Passes"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "Toistaa",
"transcoding": "Transcoding", "transcoding": "Transkoodaa",
"bitrate": "Bitrate", "bitrate": "Bittinopeus",
"no_active": "No Active Streams", "no_active": "Ei aktiivisia striimejä",
"plex_connection_error": "Check Plex Connection" "plex_connection_error": "Check Plex Connection"
}, },
"omada": { "omada": {
@@ -193,7 +193,7 @@
"tv": "TV Shows" "tv": "TV Shows"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "Nopeus",
"queue": "Jono", "queue": "Jono",
"timeleft": "Aikaa jäljellä" "timeleft": "Aikaa jäljellä"
}, },
@@ -242,25 +242,25 @@
"wanted": "Haluttu", "wanted": "Haluttu",
"queued": "Jonossa", "queued": "Jonossa",
"series": "Series", "series": "Series",
"queue": "Queue", "queue": "Jono",
"unknown": "Unknown" "unknown": "Unknown"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Haluttu",
"missing": "Missing", "missing": "Missing",
"queued": "Queued", "queued": "Jonossa",
"movies": "Movies", "movies": "Movies",
"queue": "Queue", "queue": "Jono",
"unknown": "Unknown" "unknown": "Unknown"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Haluttu",
"queued": "Queued", "queued": "Jonossa",
"artists": "Artists" "artists": "Artists"
}, },
"readarr": { "readarr": {
"wanted": "Wanted", "wanted": "Haluttu",
"queued": "Queued", "queued": "Jonossa",
"books": "Kirjoja" "books": "Kirjoja"
}, },
"bazarr": { "bazarr": {
@@ -273,18 +273,18 @@
"available": "Saatavilla" "available": "Saatavilla"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pending", "pending": "Vireillä",
"approved": "Approved", "approved": "Hyväksytty",
"available": "Available" "available": "Saatavilla"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "Vireillä",
"processing": "Processing", "processing": "Processing",
"approved": "Approved", "approved": "Hyväksytty",
"available": "Available" "available": "Saatavilla"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Yhteensä",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
@@ -296,8 +296,8 @@
"gravity": "Vakavuus" "gravity": "Vakavuus"
}, },
"adguard": { "adguard": {
"queries": "Queries", "queries": "Kyselyjä",
"blocked": "Blocked", "blocked": "Estetty",
"filtered": "Suodatettu", "filtered": "Suodatettu",
"latency": "Viive" "latency": "Viive"
}, },
@@ -309,10 +309,10 @@
"portainer": { "portainer": {
"running": "Running", "running": "Running",
"stopped": "Pysäytetty", "stopped": "Pysäytetty",
"total": "Total" "total": "Yhteensä"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Ladattu",
"nondownload": "Non-Downloaded", "nondownload": "Non-Downloaded",
"read": "Read", "read": "Read",
"unread": "Unread", "unread": "Unread",
@@ -336,7 +336,7 @@
"ago": "{{value}} Ago" "ago": "{{value}} Ago"
}, },
"technitium": { "technitium": {
"totalQueries": "Queries", "totalQueries": "Kyselyjä",
"totalNoError": "Success", "totalNoError": "Success",
"totalServerFailure": "Failures", "totalServerFailure": "Failures",
"totalNxDomain": "NX Domains", "totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative", "totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive", "totalRecursive": "Recursive",
"totalCached": "Cached", "totalCached": "Cached",
"totalBlocked": "Blocked", "totalBlocked": "Estetty",
"totalDropped": "Dropped", "totalDropped": "Dropped",
"totalClients": "Asiakasohjelmia" "totalClients": "Asiakasohjelmia"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "Jono",
"processed": "Processed", "processed": "Processed",
"errored": "Errored", "errored": "Errored",
"saved": "Saved" "saved": "Saved"
@@ -359,20 +359,14 @@
"services": "Palveluja", "services": "Palveluja",
"middleware": "Middlewareja" "middleware": "Middlewareja"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "Ei aktiivisia striimejä",
"please_wait": "Odota, ole hyvä" "please_wait": "Odota, ole hyvä"
}, },
"npm": { "npm": {
"enabled": "Käytössä", "enabled": "Käytössä",
"disabled": "Poissa käytöstä", "disabled": "Poissa käytöstä",
"total": "Total" "total": "Yhteensä"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Määritä yksi tai useampi kryptovaluutta seurattavaksi", "configure": "Määritä yksi tai useampi kryptovaluutta seurattavaksi",
@@ -383,13 +377,13 @@
}, },
"gotify": { "gotify": {
"apps": "Sovelluksia", "apps": "Sovelluksia",
"clients": "Clients", "clients": "Asiakasohjelmia",
"messages": "Viestejä" "messages": "Viestejä"
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "Indeksoijia", "enableIndexers": "Indeksoijia",
"numberOfGrabs": "Nappauksia", "numberOfGrabs": "Nappauksia",
"numberOfQueries": "Queries", "numberOfQueries": "Kyselyjä",
"numberOfFailGrabs": "Epäonnistuneita nappauksia", "numberOfFailGrabs": "Epäonnistuneita nappauksia",
"numberOfFailQueries": "Epäonnistuneita kyselyjä" "numberOfFailQueries": "Epäonnistuneita kyselyjä"
}, },
@@ -401,7 +395,7 @@
"numActiveSessions": "Istuntoja", "numActiveSessions": "Istuntoja",
"numConnections": "Yhteyksiä", "numConnections": "Yhteyksiä",
"dataRelayed": "Välitetty", "dataRelayed": "Välitetty",
"transferRate": "Rate" "transferRate": "Nopeus"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "Users",
@@ -409,14 +403,14 @@
"domain_count": "Verkkotunnuksia" "domain_count": "Verkkotunnuksia"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "Haluttu",
"queued": "Queued", "queued": "Jonossa",
"series": "Series" "series": "Series"
}, },
"minecraft": { "minecraft": {
"players": "Players", "players": "Players",
"version": "Version", "version": "Version",
"status": "Status", "status": "Tila",
"up": "Online", "up": "Online",
"down": "Offline" "down": "Offline"
}, },
@@ -437,15 +431,15 @@
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Load", "load": "Kuorma",
"wait": "Please wait", "wait": "Odota, ole hyvä",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temp", "_temp": "Temp",
"warn": "Warn", "warn": "Warn",
"uptime": "UP", "uptime": "UP",
"total": "Total", "total": "Yhteensä",
"free": "Free", "free": "Vapaana",
"used": "Used", "used": "Käytetty",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Crit", "crit": "Crit",
@@ -530,7 +524,7 @@
"child_bridges": "Child Bridges", "child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Up",
"pending": "Pending", "pending": "Vireillä",
"down": "Down" "down": "Down"
}, },
"healthchecks": { "healthchecks": {
@@ -539,7 +533,7 @@
"grace": "In Grace Period", "grace": "In Grace Period",
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"status": "Status", "status": "Tila",
"last_ping": "Last Ping", "last_ping": "Last Ping",
"never": "No pings yet" "never": "No pings yet"
}, },
@@ -549,13 +543,13 @@
"containers_failed": "Failed" "containers_failed": "Failed"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "Hyväksytty",
"rejectedPushes": "Rejected", "rejectedPushes": "Rejected",
"filters": "Filters", "filters": "Filters",
"indexers": "Indexers" "indexers": "Indeksoijia"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "Jono",
"videos": "Videos", "videos": "Videos",
"channels": "Channels", "channels": "Channels",
"playlists": "Playlists" "playlists": "Playlists"
@@ -567,9 +561,9 @@
}, },
"pyload": { "pyload": {
"speed": "Speed", "speed": "Speed",
"active": "Active", "active": "Aktiivinen",
"queue": "Queue", "queue": "Jono",
"total": "Total" "total": "Yhteensä"
}, },
"gluetun": { "gluetun": {
"public_ip": "Public IP", "public_ip": "Public IP",
@@ -586,7 +580,7 @@
"signalStrength": "Strength", "signalStrength": "Strength",
"signalQuality": "Quality", "signalQuality": "Quality",
"symbolQuality": "Quality", "symbolQuality": "Quality",
"networkRate": "Bitrate", "networkRate": "Bittinopeus",
"clientIP": "Client" "clientIP": "Client"
}, },
"scrutiny": { "scrutiny": {
@@ -596,7 +590,7 @@
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Inbox", "inbox": "Inbox",
"total": "Total" "total": "Yhteensä"
}, },
"peanut": { "peanut": {
"battery_charge": "Battery Charge", "battery_charge": "Battery Charge",
@@ -607,7 +601,7 @@
"low_battery": "Low Battery" "low_battery": "Low Battery"
}, },
"nextdns": { "nextdns": {
"wait": "Please Wait", "wait": "Odota, ole hyvä",
"no_devices": "No Device Data Received" "no_devices": "No Device Data Received"
}, },
"mikrotik": { "mikrotik": {
@@ -640,14 +634,14 @@
"layers": "Layers" "layers": "Layers"
}, },
"octoprint": { "octoprint": {
"printer_state": "Status", "printer_state": "Tila",
"temp_tool": "Tool temp", "temp_tool": "Tool temp",
"temp_bed": "Bed temp", "temp_bed": "Bed temp",
"job_completion": "Completion" "job_completion": "Completion"
}, },
"cloudflared": { "cloudflared": {
"origin_ip": "Origin IP", "origin_ip": "Origin IP",
"status": "Status" "status": "Tila"
}, },
"pfsense": { "pfsense": {
"load": "Load Avg", "load": "Load Avg",
@@ -687,17 +681,17 @@
"komga": { "komga": {
"libraries": "Libraries", "libraries": "Libraries",
"series": "Series", "series": "Series",
"books": "Books" "books": "Kirjoja"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Days",
"uptime": "Uptime", "uptime": "Uptime",
"volumeAvailable": "Available" "volumeAvailable": "Saatavilla"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Series",
"issues": "Issues", "issues": "Issues",
"wanted": "Wanted" "wanted": "Haluttu"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Albums",
@@ -706,7 +700,7 @@
"people": "People" "people": "People"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "Jono",
"processing": "Processing", "processing": "Processing",
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
@@ -730,7 +724,7 @@
"numshares": "Shared Items" "numshares": "Shared Items"
}, },
"kopia": { "kopia": {
"status": "Status", "status": "Tila",
"size": "Size", "size": "Size",
"lastrun": "Last Run", "lastrun": "Last Run",
"nextrun": "Next Run", "nextrun": "Next Run",
@@ -762,7 +756,7 @@
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasts", "podcasts": "Podcasts",
"books": "Books", "books": "Kirjoja",
"podcastsDuration": "Duration", "podcastsDuration": "Duration",
"booksDuration": "Duration" "booksDuration": "Duration"
}, },
@@ -776,14 +770,14 @@
"updates": "Updates" "updates": "Updates"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "Kirjoja",
"authors": "Authors", "authors": "Authors",
"categories": "Categories", "categories": "Categories",
"series": "Series" "series": "Series"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "Jono",
"downloadBytesRemaining": "Remaining", "downloadBytesRemaining": "Jäljellä",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Size",
"downloadSpeed": "Speed" "downloadSpeed": "Speed"
}, },
@@ -793,7 +787,7 @@
}, },
"azuredevops": { "azuredevops": {
"result": "Result", "result": "Result",
"status": "Status", "status": "Tila",
"buildId": "Build ID", "buildId": "Build ID",
"succeeded": "Succeeded", "succeeded": "Succeeded",
"notStarted": "Not Started", "notStarted": "Not Started",
@@ -802,10 +796,10 @@
"inProgress": "In Progress", "inProgress": "In Progress",
"totalPrs": "Total PRs", "totalPrs": "Total PRs",
"myPrs": "My PRs", "myPrs": "My PRs",
"approved": "Approved" "approved": "Hyväksytty"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "Tila",
"online": "Online", "online": "Online",
"offline": "Offline", "offline": "Offline",
"name": "Name", "name": "Name",
@@ -830,9 +824,9 @@
}, },
"openmediavault": { "openmediavault": {
"downloading": "Downloading", "downloading": "Downloading",
"total": "Total", "total": "Yhteensä",
"running": "Running", "running": "Running",
"stopped": "Stopped", "stopped": "Pysäytetty",
"passed": "Passed", "passed": "Passed",
"failed": "Failed" "failed": "Failed"
}, },
@@ -845,7 +839,7 @@
"bytesRx": "Received" "bytesRx": "Received"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "Tila",
"uptime": "Uptime", "uptime": "Uptime",
"lastDown": "Last Downtime", "lastDown": "Last Downtime",
"downDuration": "Downtime Duration", "downDuration": "Downtime Duration",
@@ -875,7 +869,7 @@
"totalfilesize": "Total Size" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Domains", "domains": "Verkkotunnuksia",
"mailboxes": "Mailboxes", "mailboxes": "Mailboxes",
"mails": "Mails", "mails": "Mails",
"storage": "Storage" "storage": "Storage"
@@ -931,9 +925,9 @@
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Connected",
"enabled": "Enabled", "enabled": "Käytössä",
"disabled": "Disabled", "disabled": "Poissa käytöstä",
"total": "Total" "total": "Yhteensä"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
@@ -989,7 +983,7 @@
"name": "Name", "name": "Name",
"address": "Address", "address": "Address",
"last_seen": "Last Seen", "last_seen": "Last Seen",
"status": "Status", "status": "Tila",
"online": "Online", "online": "Online",
"offline": "Offline" "offline": "Offline"
}, },
@@ -999,8 +993,8 @@
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"pending": "Pending", "pending": "Vireillä",
"status": "Status", "status": "Tila",
"updated": "Updated", "updated": "Updated",
"cpu": "CPU", "cpu": "CPU",
"memory": "MEM", "memory": "MEM",
@@ -1027,10 +1021,10 @@
"projects": "Projects" "projects": "Projects"
}, },
"apcups": { "apcups": {
"status": "Status", "status": "Tila",
"load": "Load", "load": "Kuorma",
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Time Left" "timeleft": "Aikaa jäljellä"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
@@ -1045,7 +1039,7 @@
"connected": "Connected", "connected": "Connected",
"disconnected": "Disconnected", "disconnected": "Disconnected",
"updateStatus": "Update", "updateStatus": "Update",
"update_yes": "Available", "update_yes": "Saatavilla",
"update_no": "Up to Date", "update_no": "Up to Date",
"downloads": "Downloads", "downloads": "Downloads",
"uploads": "Uploads", "uploads": "Uploads",
@@ -1060,28 +1054,5 @@
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -24,13 +24,13 @@
"missing_type": "Type de widget manquant: {{type}}", "missing_type": "Type de widget manquant: {{type}}",
"api_error": "Erreur API", "api_error": "Erreur API",
"information": "Informations", "information": "Informations",
"status": "État", "status": "Statut",
"url": "URL", "url": "URL",
"raw_error": "Erreur brute", "raw_error": "Erreur brute",
"response_data": "Données de réponse" "response_data": "Données de réponse"
}, },
"weather": { "weather": {
"current": "Emplacement actuel", "current": "Localisation actuelle",
"allow": "Cliquez pour autoriser", "allow": "Cliquez pour autoriser",
"updating": "Mise à jour", "updating": "Mise à jour",
"wait": "Veuillez patienter" "wait": "Veuillez patienter"
@@ -40,14 +40,14 @@
}, },
"resources": { "resources": {
"cpu": "CPU", "cpu": "CPU",
"mem": "RAM", "mem": "M",
"total": "Total", "total": "Total",
"free": "Libre", "free": "Libre",
"used": "Utilisé", "used": "Utilisé",
"load": "Charge", "load": "Charge",
"temp": "Température", "temp": "Temp",
"max": "Max", "max": "Max",
"uptime": "Actif" "uptime": "Up"
}, },
"unifi": { "unifi": {
"users": "Utilisateurs", "users": "Utilisateurs",
@@ -61,7 +61,7 @@
"wlan_devices": "Périphériques WLAN", "wlan_devices": "Périphériques WLAN",
"lan_users": "Utilisateurs LAN", "lan_users": "Utilisateurs LAN",
"wlan_users": "Utilisateurs WLAN", "wlan_users": "Utilisateurs WLAN",
"up": "ACTIF", "up": "Up",
"down": "INACTIF", "down": "INACTIF",
"wait": "Veuillez patienter", "wait": "Veuillez patienter",
"empty_data": "Statut du sous-système inconnu" "empty_data": "Statut du sous-système inconnu"
@@ -69,43 +69,43 @@
"docker": { "docker": {
"rx": "Rx", "rx": "Rx",
"tx": "Tx", "tx": "Tx",
"mem": "RAM", "mem": "M",
"cpu": "CPU", "cpu": "CPU",
"running": "Démarré", "running": "Démarré",
"offline": "Stoppé", "offline": "Hors ligne",
"error": "Erreur", "error": "Erreur",
"unknown": "Inconnu", "unknown": "Inconnu",
"healthy": "Fonctionnel", "healthy": "Fonctionnel",
"starting": "Démarrage", "starting": "Démarrage",
"unhealthy": "Mauvaise santé", "unhealthy": "Mauvaise santé",
"not_found": "Inconnu", "not_found": "Introuvable",
"exited": "Arrêté", "exited": "Arrêté",
"partial": "Partiel" "partial": "Partiel"
}, },
"ping": { "ping": {
"error": "Erreur", "error": "Erreur",
"ping": "Latence", "ping": "Latence",
"down": "Hors ligne", "down": "Down",
"up": "En ligne", "up": "Up",
"not_available": "Non disponible" "not_available": "Non disponible"
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "Statut HTTP", "http_status": "Statut HTTP",
"error": "Erreur", "error": "Erreur",
"response": "Réponse", "response": "Réponse",
"down": "Hors ligne", "down": "Down",
"up": "En ligne", "up": "Up",
"not_available": "Non disponible" "not_available": "Non disponible"
}, },
"emby": { "emby": {
"playing": "En lecture", "playing": "En lecture",
"transcoding": "Transcodage", "transcoding": "Transcodage",
"bitrate": "Débit", "bitrate": "Débit",
"no_active": "Aucune lecture en cours", "no_active": "Aucun flux actif",
"movies": "Films", "movies": "Films",
"series": "Séries", "series": "Séries",
"episodes": "Épisodes", "episodes": "Épisodes",
"songs": "Morceaux" "songs": "Chansons"
}, },
"esphome": { "esphome": {
"offline": "Hors ligne", "offline": "Hors ligne",
@@ -117,35 +117,35 @@
"evcc": { "evcc": {
"pv_power": "Production", "pv_power": "Production",
"battery_soc": "Batterie", "battery_soc": "Batterie",
"grid_power": "Réseau", "grid_power": "Grille",
"home_power": "Consommation", "home_power": "Consommation",
"charge_power": "Charge", "charge_power": "Chargeur",
"kilowatt": "kW" "kilowatt": "kW"
}, },
"flood": { "flood": {
"download": "Récep.", "download": "Récep.",
"upload": "Envoi", "upload": "Téléverser",
"leech": "En téléchargement", "leech": "Leech",
"seed": "En partage" "seed": "Seed"
}, },
"freshrss": { "freshrss": {
"subscriptions": "Abonnements", "subscriptions": "Abonnements",
"unread": "Non lu" "unread": "Non lu"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "État", "connectionStatus": "Statut",
"connectionStatusUnconfigured": "Non configuré", "connectionStatusUnconfigured": "Non-configuré",
"connectionStatusConnecting": "Connexion en cours", "connectionStatusConnecting": "Connexion en cours",
"connectionStatusAuthenticating": "En cours d'authentification", "connectionStatusAuthenticating": "Authentification en cours",
"connectionStatusPendingDisconnect": "Déconnexion en attente", "connectionStatusPendingDisconnect": "Déconnexion en attente",
"connectionStatusDisconnecting": "Déconnexion en cours", "connectionStatusDisconnecting": "Déconnexion en cours",
"connectionStatusDisconnected": "Déconnecté", "connectionStatusDisconnected": "Déconnecté",
"connectionStatusConnected": "Connecté", "connectionStatusConnected": "Connecté",
"uptime": "Démarré depuis", "uptime": "Démarré depuis",
"maxDown": "Réception max.", "maxDown": "Max. Down",
"maxUp": "Envoi max.", "maxUp": "Max. Up",
"down": "Réception", "down": "Down",
"up": "Envoi", "up": "Up",
"received": "Reçu", "received": "Reçu",
"sent": "Envoyé", "sent": "Envoyé",
"externalIPAddress": "IP externe", "externalIPAddress": "IP externe",
@@ -153,12 +153,12 @@
"externalIPv6Prefix": "Préfixe IPv6 externe" "externalIPv6Prefix": "Préfixe IPv6 externe"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "En amont",
"requests": "Requêtes en cours", "requests": "Demandes en cours",
"requests_failed": "Requêtes échouées" "requests_failed": "Demandes échouées"
}, },
"changedetectionio": { "changedetectionio": {
"totalObserved": "Total observé", "totalObserved": "Total Observé",
"diffsDetected": "Différences détectées" "diffsDetected": "Différences détectées"
}, },
"channelsdvrserver": { "channelsdvrserver": {
@@ -168,14 +168,14 @@
"passes": "Passes" "passes": "Passes"
}, },
"tautulli": { "tautulli": {
"playing": "En cours de lecture", "playing": "En lecture",
"transcoding": "Transcodage", "transcoding": "Transcodage",
"bitrate": "Débit", "bitrate": "Débit",
"no_active": "Aucune lecture en cours", "no_active": "Aucun flux actif",
"plex_connection_error": "Vérifier la connexion à Plex" "plex_connection_error": "Vérifier la connexion à Plex"
}, },
"omada": { "omada": {
"connectedAp": "APs connectées", "connectedAp": "AP connectés",
"activeUser": "Périphériques actifs", "activeUser": "Périphériques actifs",
"alerts": "Alertes", "alerts": "Alertes",
"connectedGateways": "Passerelles connectées", "connectedGateways": "Passerelles connectées",
@@ -187,80 +187,80 @@
"downloaded": "Téléchargé" "downloaded": "Téléchargé"
}, },
"plex": { "plex": {
"streams": "Lectures en cours", "streams": "Flux actif",
"albums": "Albums", "albums": "Albums",
"movies": "Films", "movies": "Films",
"tv": "Séries" "tv": "Séries"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Débit", "rate": "Débit",
"queue": "File d'attente", "queue": "En attente",
"timeleft": "Temps restant" "timeleft": "Temps restant"
}, },
"rutorrent": { "rutorrent": {
"active": "Actif", "active": "Actif",
"upload": "Envoi", "upload": "Téléverser",
"download": "Réception" "download": "Récep."
}, },
"transmission": { "transmission": {
"download": "Réception", "download": "Récep.",
"upload": "Envoi", "upload": "Téléverser",
"leech": "En téléchargement", "leech": "Leech",
"seed": "En partage" "seed": "Seed"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Réception", "download": "Récep.",
"upload": "Envoi", "upload": "Téléverser",
"leech": "En téléchargement", "leech": "Leech",
"seed": "En partage" "seed": "Seed"
}, },
"qnap": { "qnap": {
"cpuUsage": "Utilisation CPU", "cpuUsage": "Processeur utilisé",
"memUsage": "RAM utilisée", "memUsage": "Mémoire utilisée",
"systemTempC": "Température système", "systemTempC": "Température système",
"poolUsage": "Utilisation de la pool", "poolUsage": "Utilisation de la pool",
"volumeUsage": "Utilisation du volume", "volumeUsage": "Utilisation du volume",
"invalid": "Invalide" "invalid": "Invalide"
}, },
"deluge": { "deluge": {
"download": "Réception", "download": "Récep.",
"upload": "Envoi", "upload": "Téléverser",
"leech": "En téléchargement", "leech": "Leech",
"seed": "En partage" "seed": "Seed"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "Cache Hit (B)", "cachehitbytes": "Octets de la mémoire cache",
"cachemissbytes": "Cache Miss (B)" "cachemissbytes": "Octets manquants du cache"
}, },
"downloadstation": { "downloadstation": {
"download": "Réception", "download": "Récep.",
"upload": "Envoi", "upload": "Téléverser",
"leech": "En téléchargement", "leech": "Leech",
"seed": "En partage" "seed": "Seed"
}, },
"sonarr": { "sonarr": {
"wanted": "Recherché", "wanted": "Demandé",
"queued": "En attente", "queued": "En file d'attente",
"series": "Séries", "series": "Séries",
"queue": "File d'attente", "queue": "En attente",
"unknown": "Inconnu" "unknown": "Inconnu"
}, },
"radarr": { "radarr": {
"wanted": "Recherché", "wanted": "Demandé",
"missing": "Manquant", "missing": "Manquant",
"queued": "En attente", "queued": "En file d'attente",
"movies": "Films", "movies": "Films",
"queue": "File d'attente", "queue": "En attente",
"unknown": "Inconnu" "unknown": "Inconnu"
}, },
"lidarr": { "lidarr": {
"wanted": "Recherché", "wanted": "Demandé",
"queued": "En attente", "queued": "En file d'attente",
"artists": "Artistes" "artists": "Artistes"
}, },
"readarr": { "readarr": {
"wanted": "Recherché", "wanted": "Demandé",
"queued": "En attente", "queued": "En file d'attente",
"books": "Livres" "books": "Livres"
}, },
"bazarr": { "bazarr": {
@@ -302,12 +302,12 @@
"latency": "Latence" "latency": "Latence"
}, },
"speedtest": { "speedtest": {
"upload": "Envoi", "upload": "Téléverser",
"download": "Réception", "download": "Récep.",
"ping": "Latence" "ping": "Latence"
}, },
"portainer": { "portainer": {
"running": "En cours d'exécution", "running": "Démarré",
"stopped": "Arrêté", "stopped": "Arrêté",
"total": "Total" "total": "Total"
}, },
@@ -315,7 +315,7 @@
"download": "Téléchargé", "download": "Téléchargé",
"nondownload": "Non téléchargé", "nondownload": "Non téléchargé",
"read": "Lu", "read": "Lu",
"unread": "Non llu", "unread": "Non lu",
"downloadedread": "Téléchargé et lu", "downloadedread": "Téléchargé et lu",
"downloadedunread": "Téléchargé et non lu", "downloadedunread": "Téléchargé et non lu",
"nondownloadedread": "Non téléchargé et lu", "nondownloadedread": "Non téléchargé et lu",
@@ -349,7 +349,7 @@
"totalClients": "Clients" "totalClients": "Clients"
}, },
"tdarr": { "tdarr": {
"queue": "File d'attente", "queue": "En attente",
"processed": "Traité", "processed": "Traité",
"errored": "Erroné", "errored": "Erroné",
"saved": "Enregistré" "saved": "Enregistré"
@@ -359,14 +359,8 @@
"services": "Services", "services": "Services",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Taille de la base de données",
"unknown": "Inconnu"
},
"navidrome": { "navidrome": {
"nothing_streaming": "Aucune lecture en cours", "nothing_streaming": "Aucun flux actif",
"please_wait": "Merci de patienter" "please_wait": "Merci de patienter"
}, },
"npm": { "npm": {
@@ -395,13 +389,13 @@
}, },
"jackett": { "jackett": {
"configured": "Configuré", "configured": "Configuré",
"errored": "Échoué" "errored": "Erroné"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Sessions", "numActiveSessions": "Sessions",
"numConnections": "Connexions", "numConnections": "Connexions",
"dataRelayed": "Relayé", "dataRelayed": "Relayé",
"transferRate": "Taux de transfert" "transferRate": "Débit"
}, },
"mastodon": { "mastodon": {
"user_count": "Utilisateurs", "user_count": "Utilisateurs",
@@ -409,8 +403,8 @@
"domain_count": "Domaines" "domain_count": "Domaines"
}, },
"medusa": { "medusa": {
"wanted": "Recherché", "wanted": "Demandé",
"queued": "En attente", "queued": "En file d'attente",
"series": "Séries" "series": "Séries"
}, },
"minecraft": { "minecraft": {
@@ -430,7 +424,7 @@
"failedLoginsLast24H": "Connexions échouées (24 h)" "failedLoginsLast24H": "Connexions échouées (24 h)"
}, },
"proxmox": { "proxmox": {
"mem": "RAM", "mem": "M",
"cpu": "CPU", "cpu": "CPU",
"lxc": "LXC", "lxc": "LXC",
"vms": "VMs" "vms": "VMs"
@@ -439,10 +433,10 @@
"cpu": "CPU", "cpu": "CPU",
"load": "Charge", "load": "Charge",
"wait": "Veuillez patienter", "wait": "Veuillez patienter",
"temp": "Température", "temp": "Temp",
"_temp": "Température", "_temp": "Température",
"warn": "Alerte", "warn": "Alerte",
"uptime": "Démarré depuis", "uptime": "Up",
"total": "Total", "total": "Total",
"free": "Libre", "free": "Libre",
"used": "Utilisé", "used": "Utilisé",
@@ -474,17 +468,17 @@
"3-day": "Nuageux", "3-day": "Nuageux",
"3-night": "Nuageux", "3-night": "Nuageux",
"45-day": "Brumeux", "45-day": "Brumeux",
"45-night": "Brouillard", "45-night": "Brumeux",
"48-day": "Brouillard", "48-day": "Brumeux",
"48-night": "Brouillard", "48-night": "Brumeux",
"51-day": "Bruine légère", "51-day": "Bruine légère",
"51-night": "Faible bruine", "51-night": "Bruine légère",
"53-day": "Bruine", "53-day": "Bruine",
"53-night": "Bruine", "53-night": "Bruine",
"55-day": "Bruine épaisse", "55-day": "Bruine épaisse",
"55-night": "Bruine épaisse", "55-night": "Bruine épaisse",
"56-day": "Légère bruine verglaçante", "56-day": "Légère bruine verglaçante",
"56-night": "Faible bruine verglaçante", "56-night": "Légère bruine verglaçante",
"57-day": "Bruine verglaçante", "57-day": "Bruine verglaçante",
"57-night": "Bruine verglaçante", "57-night": "Bruine verglaçante",
"61-day": "Pluie légère", "61-day": "Pluie légère",
@@ -502,15 +496,15 @@
"73-day": "Neige", "73-day": "Neige",
"73-night": "Neige", "73-night": "Neige",
"75-day": "Neige abondante", "75-day": "Neige abondante",
"75-night": "Fortes chutes de neige", "75-night": "Neige abondante",
"77-day": "Grains de neige", "77-day": "Grains de neige",
"77-night": "Neige en grains", "77-night": "Grains de neige",
"80-day": "Averses légères", "80-day": "Averses légères",
"80-night": "Averses légères", "80-night": "Averses légères",
"81-day": "Averses", "81-day": "Averses",
"81-night": "Averses", "81-night": "Averses",
"82-day": "Averses fortes", "82-day": "Averses fortes",
"82-night": "Fortes averses", "82-night": "Averses fortes",
"85-day": "Averses de neige", "85-day": "Averses de neige",
"85-night": "Averses de neige", "85-night": "Averses de neige",
"86-day": "Averses de neige", "86-day": "Averses de neige",
@@ -529,15 +523,15 @@
"up_to_date": "À jour", "up_to_date": "À jour",
"child_bridges": "Child Bridges", "child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "En ligne", "up": "Up",
"pending": "En attente", "pending": "En attente",
"down": "Hors ligne" "down": "Down"
}, },
"healthchecks": { "healthchecks": {
"new": "Nouveau", "new": "Nouveau",
"up": "En ligne", "up": "Up",
"grace": "En Période de Grâce", "grace": "En Période de Grâce",
"down": "Hors ligne", "down": "Down",
"paused": "En Pause", "paused": "En Pause",
"status": "Statut", "status": "Statut",
"last_ping": "Dernier Ping", "last_ping": "Dernier Ping",
@@ -552,10 +546,10 @@
"approvedPushes": "Approuvé", "approvedPushes": "Approuvé",
"rejectedPushes": "Rejeté", "rejectedPushes": "Rejeté",
"filters": "Filtres", "filters": "Filtres",
"indexers": "Indexeurs" "indexers": "Indexeur"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "File d'attente", "downloads": "En attente",
"videos": "Vidéos", "videos": "Vidéos",
"channels": "Chaînes", "channels": "Chaînes",
"playlists": "Listes de lecture" "playlists": "Listes de lecture"
@@ -568,7 +562,7 @@
"pyload": { "pyload": {
"speed": "Débit", "speed": "Débit",
"active": "Actif", "active": "Actif",
"queue": "File d'attente", "queue": "En attente",
"total": "Total" "total": "Total"
}, },
"gluetun": { "gluetun": {
@@ -607,7 +601,7 @@
"low_battery": "Batterie Faible" "low_battery": "Batterie Faible"
}, },
"nextdns": { "nextdns": {
"wait": "Veuillez patienter", "wait": "Merci de patienter",
"no_devices": "Aucune donnée d'appareil reçue" "no_devices": "Aucune donnée d'appareil reçue"
}, },
"mikrotik": { "mikrotik": {
@@ -618,7 +612,7 @@
}, },
"xteve": { "xteve": {
"streams_all": "Tous les flux", "streams_all": "Tous les flux",
"streams_active": "Lectures en cours", "streams_active": "Flux actif",
"streams_xepg": "Canal XEPG" "streams_xepg": "Canal XEPG"
}, },
"opendtu": { "opendtu": {
@@ -628,9 +622,9 @@
"limit": "Limite" "limit": "Limite"
}, },
"opnsense": { "opnsense": {
"cpu": "Charge CPU", "cpu": "Charge du processeur",
"memory": "Mémoire utilisée", "memory": "Mémoire utilisée",
"wanUpload": "Envoi WAN", "wanUpload": "WAN Envoi",
"wanDownload": "WAN Récep." "wanDownload": "WAN Récep."
}, },
"moonraker": { "moonraker": {
@@ -653,8 +647,8 @@
"load": "Charge moy.", "load": "Charge moy.",
"memory": "Util. Mém.", "memory": "Util. Mém.",
"wanStatus": "Statut WAN", "wanStatus": "Statut WAN",
"up": "Haut", "up": "Up",
"down": "Bas", "down": "Down",
"temp": "Température", "temp": "Température",
"disk": "Util. Disque", "disk": "Util. Disque",
"wanIP": "IP WAN" "wanIP": "IP WAN"
@@ -672,8 +666,8 @@
"storage": "Stockage" "storage": "Stockage"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Sites actifs", "up": "En ligne",
"down": "Sites inactifs", "down": "Hors ligne",
"uptime": "Démarré depuis", "uptime": "Démarré depuis",
"incident": "Incident", "incident": "Incident",
"m": "m" "m": "m"
@@ -691,13 +685,13 @@
}, },
"diskstation": { "diskstation": {
"days": "Jours", "days": "Jours",
"uptime": "Disponibilité", "uptime": "Démarré depuis",
"volumeAvailable": "Disponible" "volumeAvailable": "Disponible"
}, },
"mylar": { "mylar": {
"series": "Séries", "series": "Séries",
"issues": "Anomalies", "issues": "Anomalies",
"wanted": "Recherché" "wanted": "Demandé"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Albums",
@@ -706,8 +700,8 @@
"people": "Personnes" "people": "Personnes"
}, },
"fileflows": { "fileflows": {
"queue": "File d'attente", "queue": "En attente",
"processing": "En traitement", "processing": "En cours de traitement",
"processed": "Traité", "processed": "Traité",
"time": "Temps" "time": "Temps"
}, },
@@ -753,7 +747,7 @@
"gatus": { "gatus": {
"up": "En ligne", "up": "En ligne",
"down": "Hors ligne", "down": "Hors ligne",
"uptime": "Disponibilité" "uptime": "Démarré depuis"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Aujourd'hui", "gross_percent_today": "Aujourd'hui",
@@ -782,10 +776,10 @@
"series": "Séries" "series": "Séries"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "File d'attente", "downloadCount": "En attente",
"downloadBytesRemaining": "Restant", "downloadBytesRemaining": "Restant",
"downloadTotalBytes": "Taille", "downloadTotalBytes": "Taille",
"downloadSpeed": "Vitesse" "downloadSpeed": "Débit"
}, },
"kavita": { "kavita": {
"seriesCount": "Séries", "seriesCount": "Séries",
@@ -831,31 +825,31 @@
"openmediavault": { "openmediavault": {
"downloading": "Téléchargement", "downloading": "Téléchargement",
"total": "Total", "total": "Total",
"running": "Actif", "running": "Démarré",
"stopped": "Arrêté", "stopped": "Arrêté",
"passed": "Réussi", "passed": "Réussi",
"failed": "Échoué" "failed": "Échoué"
}, },
"openwrt": { "openwrt": {
"uptime": "Disponibilité", "uptime": "Démarré depuis",
"cpuLoad": "Charge moyenne CPU (5 min)", "cpuLoad": "Charge moyenne CPU (5 min)",
"up": "Actif", "up": "Up",
"down": "Inactif", "down": "Down",
"bytesTx": "Transmis", "bytesTx": "Transmis",
"bytesRx": "Reçu" "bytesRx": "Reçu"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Statut", "status": "Statut",
"uptime": "Disponibilité", "uptime": "Démarré depuis",
"lastDown": "Dernière interruption", "lastDown": "Dernière interruption",
"downDuration": "Durée d'interruption", "downDuration": "Durée d'interruption",
"sitesUp": "Sites actifs", "sitesUp": "En ligne",
"sitesDown": "Sites inactifs", "sitesDown": "Hors ligne",
"paused": "En pause", "paused": "En Pause",
"notyetchecked": "Non vérifié", "notyetchecked": "Non vérifié",
"up": "En ligne", "up": "Up",
"seemsdown": "Semble hors ligne", "seemsdown": "Semble hors ligne",
"down": "Hors ligne", "down": "Down",
"unknown": "Inconnu" "unknown": "Inconnu"
}, },
"calendar": { "calendar": {
@@ -864,7 +858,7 @@
"digitalRelease": "Sortie numérique", "digitalRelease": "Sortie numérique",
"noEventsToday": "Rien pour aujourd'hui !", "noEventsToday": "Rien pour aujourd'hui !",
"noEventsFound": "Aucun événement trouvé", "noEventsFound": "Aucun événement trouvé",
"errorWhenLoadingData": "Erreur lors du chargement du calendrier" "errorWhenLoadingData": "Error when loading calendar data"
}, },
"romm": { "romm": {
"platforms": "Plateformes", "platforms": "Plateformes",
@@ -892,7 +886,7 @@
}, },
"gitea": { "gitea": {
"notifications": "Notifications", "notifications": "Notifications",
"issues": "Tickets", "issues": "Anomalies",
"pulls": "Demandes de tirage", "pulls": "Demandes de tirage",
"repositories": "Dépôts" "repositories": "Dépôts"
}, },
@@ -909,7 +903,7 @@
"performers": "Acteurs", "performers": "Acteurs",
"studios": "Studios", "studios": "Studios",
"movies": "Films", "movies": "Films",
"tags": "Tags", "tags": "Étiquettes",
"oCount": "0 Compte" "oCount": "0 Compte"
}, },
"tandoor": { "tandoor": {
@@ -943,8 +937,8 @@
}, },
"myspeed": { "myspeed": {
"ping": "Latence", "ping": "Latence",
"download": "Réception", "download": "Récep.",
"upload": "Envoi" "upload": "Téléverser"
}, },
"stocks": { "stocks": {
"stocks": "Stocks", "stocks": "Stocks",
@@ -955,13 +949,13 @@
}, },
"frigate": { "frigate": {
"cameras": "Caméras", "cameras": "Caméras",
"uptime": "Disponibilité", "uptime": "Démarré depuis",
"version": "Version" "version": "Version"
}, },
"linkwarden": { "linkwarden": {
"links": "Liens", "links": "Liens",
"collections": "Collections", "collections": "Collections",
"tags": "Tags" "tags": "Étiquettes"
}, },
"zabbix": { "zabbix": {
"unclassified": "Non classé", "unclassified": "Non classé",
@@ -996,14 +990,14 @@
"beszel": { "beszel": {
"name": "Nom", "name": "Nom",
"systems": "Systèmes", "systems": "Systèmes",
"up": "En ligne", "up": "Up",
"down": "Hors ligne", "down": "Down",
"paused": "En pause", "paused": "En Pause",
"pending": "En attente", "pending": "En attente",
"status": "Statut", "status": "Statut",
"updated": "Mis à jour", "updated": "Mis à jour",
"cpu": "CPU", "cpu": "CPU",
"memory": "RAM", "memory": "M",
"disk": "Disque", "disk": "Disque",
"network": "Réseau" "network": "Réseau"
}, },
@@ -1022,7 +1016,7 @@
}, },
"gitlab": { "gitlab": {
"groups": "Groupes", "groups": "Groupes",
"issues": "Tickets", "issues": "Anomalies",
"merges": "Demandes de fusion de branches", "merges": "Demandes de fusion de branches",
"projects": "Projets" "projects": "Projets"
}, },
@@ -1038,7 +1032,7 @@
"archived": "Archivé", "archived": "Archivé",
"highlights": "À la une", "highlights": "À la une",
"lists": "Listes", "lists": "Listes",
"tags": "Tags" "tags": "Étiquettes"
}, },
"slskd": { "slskd": {
"slskStatus": "Réseau", "slskStatus": "Réseau",
@@ -1048,11 +1042,11 @@
"update_yes": "Disponible", "update_yes": "Disponible",
"update_no": "À jour", "update_no": "À jour",
"downloads": "Téléchargements", "downloads": "Téléchargements",
"uploads": "Envois", "uploads": "Téléversements",
"sharedFiles": "Fichiers" "sharedFiles": "Fichiers"
}, },
"jellystat": { "jellystat": {
"songs": "Morceaux", "songs": "Chansons",
"movies": "Films", "movies": "Films",
"episodes": "Épisodes", "episodes": "Épisodes",
"other": "Autres" "other": "Autres"
@@ -1060,28 +1054,5 @@
"checkmk": { "checkmk": {
"serviceErrors": "Problèmes de service", "serviceErrors": "Problèmes de service",
"hostErrors": "Problèmes d'hôte" "hostErrors": "Problèmes d'hôte"
},
"komodo": {
"total": "Total",
"running": "Démarré",
"stopped": "Arrêté",
"down": "Hors ligne",
"unhealthy": "Non fonctionnel",
"unknown": "Inconnu",
"servers": "Serveurs",
"stacks": "Stacks",
"containers": "Conteneurs"
},
"filebrowser": {
"available": "Disponible",
"used": "Utilisé",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Abonnements",
"thisMonthlyCost": "Ce mois",
"nextMonthlyCost": "Mois prochain",
"previousMonthlyCost": "Mois précédent",
"nextRenewingSubscription": "Prochain paiement"
} }
} }

View File

@@ -14,11 +14,11 @@
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "duration": "{{value, duration}}",
"months": "חודשים", "months": "חודש",
"days": "ימים", "days": "יום",
"hours": "שעות", "hours": "שעה",
"minutes": "דקות", "minutes": "דקה",
"seconds": "שניות" "seconds": "שניה"
}, },
"widget": { "widget": {
"missing_type": "סוג ווידג'ט חסר: {{type}}", "missing_type": "סוג ווידג'ט חסר: {{type}}",
@@ -61,16 +61,16 @@
"wlan_devices": "מכשירים ב-WAN", "wlan_devices": "מכשירים ב-WAN",
"lan_users": "משתמשים ב-LAN", "lan_users": "משתמשים ב-LAN",
"wlan_users": "משתמשים ב-WLAN", "wlan_users": "משתמשים ב-WLAN",
"up": "למעלה", "up": "זמן פעילות",
"down": "כבוי", "down": "כבוי",
"wait": "נא להמתין", "wait": "המתן בבקשה",
"empty_data": "מצב תת-מערכת לא ידוע" "empty_data": "מצב תת-מערכת לא ידוע"
}, },
"docker": { "docker": {
"rx": "RX", "rx": "RX",
"tx": "TX", "tx": "TX",
"mem": "זיכרון", "mem": "זיכרון",
"cpu": "ניצול מעבד", "cpu": "מעבד",
"running": "רץ", "running": "רץ",
"offline": "לא מקוון", "offline": "לא מקוון",
"error": "שגיאה", "error": "שגיאה",
@@ -108,8 +108,8 @@
"songs": "שירים" "songs": "שירים"
}, },
"esphome": { "esphome": {
"offline": "מכובה", "offline": "לא מקוון",
"offline_alt": "מכובה", "offline_alt": "לא מקוון",
"online": "מקוון", "online": "מקוון",
"total": "סה\"כ", "total": "סה\"כ",
"unknown": "לא ידוע" "unknown": "לא ידוע"
@@ -169,8 +169,8 @@
}, },
"tautulli": { "tautulli": {
"playing": "מנגן", "playing": "מנגן",
"transcoding": "המרת קידוד", "transcoding": "מקודד",
"bitrate": "קצב נתונים", "bitrate": "סיביות",
"no_active": "אין הזרמות פעילות", "no_active": "אין הזרמות פעילות",
"plex_connection_error": "בדוק חיבור ל-Plex" "plex_connection_error": "בדוק חיבור ל-Plex"
}, },
@@ -178,7 +178,7 @@
"connectedAp": "נקודות גישה מחוברות", "connectedAp": "נקודות גישה מחוברות",
"activeUser": "מכשירים פעילים", "activeUser": "מכשירים פעילים",
"alerts": "התראות", "alerts": "התראות",
"connectedGateways": "נתבים מחוברים", "connectedGateways": "שערי רשת מחוברים (Gateway)",
"connectedSwitches": "נתבים מחוברים" "connectedSwitches": "נתבים מחוברים"
}, },
"nzbget": { "nzbget": {
@@ -193,7 +193,7 @@
"tv": "תוכניות טלוויזיה" "tv": "תוכניות טלוויזיה"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "קצב", "rate": "יחס",
"queue": "תור", "queue": "תור",
"timeleft": "זמן שנותר" "timeleft": "זמן שנותר"
}, },
@@ -206,13 +206,13 @@
"download": "הורדה", "download": "הורדה",
"upload": "העלאה", "upload": "העלאה",
"leech": "עלוקה", "leech": "עלוקה",
"seed": ורע" "seed": "זרע"
}, },
"qbittorrent": { "qbittorrent": {
"download": "הורדה", "download": "הורדה",
"upload": "העלאה", "upload": "העלאה",
"leech": "עלוקה", "leech": "עלוקה",
"seed": ורע" "seed": "זרע"
}, },
"qnap": { "qnap": {
"cpuUsage": "שימוש במעבד", "cpuUsage": "שימוש במעבד",
@@ -226,7 +226,7 @@
"download": "הורדה", "download": "הורדה",
"upload": "העלאה", "upload": "העלאה",
"leech": "עלוקה", "leech": "עלוקה",
"seed": ורע" "seed": "זרע"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "Cache Hit Bytes", "cachehitbytes": "Cache Hit Bytes",
@@ -236,7 +236,7 @@
"download": "הורדה", "download": "הורדה",
"upload": "העלאה", "upload": "העלאה",
"leech": "עלוקה", "leech": "עלוקה",
"seed": ורע" "seed": "זרע"
}, },
"sonarr": { "sonarr": {
"wanted": "מבוקש", "wanted": "מבוקש",
@@ -273,12 +273,12 @@
"available": "זמין" "available": "זמין"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "ממתין לאישור", "pending": "ממתין",
"approved": "מאושר", "approved": "מאושר",
"available": "זמין" "available": "זמין"
}, },
"overseerr": { "overseerr": {
"pending": "ממתין לאישור", "pending": "ממתין",
"processing": "מעבד", "processing": "מעבד",
"approved": "מאושר", "approved": "מאושר",
"available": "זמין" "available": "זמין"
@@ -304,7 +304,7 @@
"speedtest": { "speedtest": {
"upload": "העלאה", "upload": "העלאה",
"download": "הורדה", "download": "הורדה",
"ping": "זמן תגובה" "ping": "פינג"
}, },
"portainer": { "portainer": {
"running": "רץ", "running": "רץ",
@@ -312,10 +312,10 @@
"total": "סה\"כ" "total": "סה\"כ"
}, },
"suwayomi": { "suwayomi": {
"download": "ירד", "download": "הורד",
"nondownload": "לא הורד", "nondownload": "לא הורד",
"read": "נקראו", "read": "נקרא",
"unread": "לא נקראו", "unread": "לא נקרא",
"downloadedread": "ירד ונקרא", "downloadedread": "ירד ונקרא",
"downloadedunread": "ירד ולא נקרא", "downloadedunread": "ירד ולא נקרא",
"nondownloadedread": "לא ירד ונקרא", "nondownloadedread": "לא ירד ונקרא",
@@ -344,7 +344,7 @@
"totalAuthoritative": "Authoritative", "totalAuthoritative": "Authoritative",
"totalRecursive": "רקורסיבי", "totalRecursive": "רקורסיבי",
"totalCached": "נשמר במטמון", "totalCached": "נשמר במטמון",
"totalBlocked": "חסומות", "totalBlocked": "נחסם",
"totalDropped": "נפל", "totalDropped": "נפל",
"totalClients": "לקוחות" "totalClients": "לקוחות"
}, },
@@ -359,12 +359,6 @@
"services": "שירותים", "services": "שירותים",
"middleware": "מתווך" "middleware": "מתווך"
}, },
"trilium": {
"version": "גרסה",
"notesCount": "הערות",
"dbSize": "גודל מסד הנתונים",
"unknown": "לא ידוע"
},
"navidrome": { "navidrome": {
"nothing_streaming": "אין הזרמות פעילות", "nothing_streaming": "אין הזרמות פעילות",
"please_wait": "המתן בבקשה" "please_wait": "המתן בבקשה"
@@ -395,13 +389,13 @@
}, },
"jackett": { "jackett": {
"configured": "מוגדר", "configured": "מוגדר",
"errored": "שגיאות" "errored": "נכשל"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "סשנים פעילים", "numActiveSessions": "סשנים פעילים",
"numConnections": "חיבורים", "numConnections": "חיבורים",
"dataRelayed": "דאטה שהועבר", "dataRelayed": "דאטה שהועבר",
"transferRate": "קצב" "transferRate": "יחס"
}, },
"mastodon": { "mastodon": {
"user_count": "משתמשים", "user_count": "משתמשים",
@@ -409,7 +403,7 @@
"domain_count": "דומיינים" "domain_count": "דומיינים"
}, },
"medusa": { "medusa": {
"wanted": "רצוי", "wanted": "מבוקש",
"queued": "בתור", "queued": "בתור",
"series": "סדרות" "series": "סדרות"
}, },
@@ -422,7 +416,7 @@
}, },
"miniflux": { "miniflux": {
"read": "נקרא", "read": "נקרא",
"unread": "לא נקראו" "unread": "לא נקרא"
}, },
"authentik": { "authentik": {
"users": "משתמשים", "users": "משתמשים",
@@ -431,14 +425,14 @@
}, },
"proxmox": { "proxmox": {
"mem": "זיכרון", "mem": "זיכרון",
"cpu": "ניצול מעבד", "cpu": "מעבד",
"lxc": "LXC", "lxc": "LXC",
"vms": "VMs" "vms": "VMs"
}, },
"glances": { "glances": {
"cpu": "ניצול מעבד", "cpu": "מעבד",
"load": "עומס", "load": "עומס",
"wait": "נא להמתין", "wait": "המתן בבקשה",
"temp": "טמפ׳", "temp": "טמפ׳",
"_temp": "טמפ׳", "_temp": "טמפ׳",
"warn": "אזהרה", "warn": "אזהרה",
@@ -446,8 +440,8 @@
"total": "סה\"כ", "total": "סה\"כ",
"free": "פנוי", "free": "פנוי",
"used": "בשימוש", "used": "בשימוש",
"days": "ימים", "days": "יום",
"hours": "שעות", "hours": "שעה",
"crit": "Crit", "crit": "Crit",
"read": "נקרא", "read": "נקרא",
"write": "כתיבה", "write": "כתיבה",
@@ -504,23 +498,23 @@
"75-day": "שלג כבד", "75-day": "שלג כבד",
"75-night": "שלג כבד", "75-night": "שלג כבד",
"77-day": "גרגרי שלג", "77-day": "גרגרי שלג",
"77-night": "פתיתי שלג", "77-night": "גרגרי שלג",
"80-day": "ממטרים קלים", "80-day": "ממטרים קלים",
"80-night": "גשם קל", "80-night": "ממטרים קלים",
"81-day": "ממטרים", "81-day": "ממטרים",
"81-night": "גשם", "81-night": "ממטרים",
"82-day": "ממטרים כבדים", "82-day": "ממטרים כבדים",
"82-night": "גשם כבד", "82-night": "ממטרים כבדים",
"85-day": "ממטרי שלג", "85-day": "ממטרי שלג",
"85-night": "גשם מושלג", "85-night": "ממטרי שלג",
"86-day": "גשם מושלג", "86-day": "ממטרי שלג",
"86-night": "גשם מושלג", "86-night": "ממטרי שלג",
"95-day": "סופת רעמים", "95-day": "סופת רעמים",
"95-night": "סופת ברקים", "95-night": "סופת רעמים",
"96-day": "סופת רעמים עם ברד", "96-day": "סופת רעמים עם ברד",
"96-night": "סופת ברקים וברד", "96-night": "סופת רעמים עם ברד",
"99-day": "סופת ברקים וברד", "99-day": "סופת רעמים עם ברד",
"99-night": "סופת ברקים וברד" "99-night": "סופת רעמים עם ברד"
}, },
"homebridge": { "homebridge": {
"available_update": "מערכת", "available_update": "מערכת",
@@ -549,7 +543,7 @@
"containers_failed": "נכשל" "containers_failed": "נכשל"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "אושרו", "approvedPushes": "מאושר",
"rejectedPushes": "נדחה", "rejectedPushes": "נדחה",
"filters": "פילטרים", "filters": "פילטרים",
"indexers": "אינדקסים" "indexers": "אינדקסים"
@@ -567,7 +561,7 @@
}, },
"pyload": { "pyload": {
"speed": "מהירות", "speed": "מהירות",
"active": "פעילות", "active": "פעיל",
"queue": "תור", "queue": "תור",
"total": "סה\"כ" "total": "סה\"כ"
}, },
@@ -586,12 +580,12 @@
"signalStrength": "עוצמה", "signalStrength": "עוצמה",
"signalQuality": "איכות", "signalQuality": "איכות",
"symbolQuality": "איכות", "symbolQuality": "איכות",
"networkRate": "קצב נתונים", "networkRate": "סיביות",
"clientIP": "לקוח" "clientIP": "לקוח"
}, },
"scrutiny": { "scrutiny": {
"passed": "עבר", "passed": "עבר",
"failed": "נכשלו", "failed": "נכשל",
"unknown": "לא ידוע" "unknown": "לא ידוע"
}, },
"paperlessngx": { "paperlessngx": {
@@ -602,12 +596,12 @@
"battery_charge": "טעינת סוללה", "battery_charge": "טעינת סוללה",
"ups_load": "עומס UPS", "ups_load": "עומס UPS",
"ups_status": "סטטוס UPS", "ups_status": "סטטוס UPS",
"online": חובר", "online": קוון",
"on_battery": "על סוללה", "on_battery": "על סוללה",
"low_battery": "סוללה חלשה" "low_battery": "סוללה חלשה"
}, },
"nextdns": { "nextdns": {
"wait": "נא להמתין", "wait": "המתן בבקשה",
"no_devices": "אין מכשירים" "no_devices": "אין מכשירים"
}, },
"mikrotik": { "mikrotik": {
@@ -662,7 +656,7 @@
"proxmoxbackupserver": { "proxmoxbackupserver": {
"datastore_usage": "Datastore", "datastore_usage": "Datastore",
"failed_tasks_24h": "משימות שנכשלו 24h", "failed_tasks_24h": "משימות שנכשלו 24h",
"cpu_usage": "ניצול מעבד", "cpu_usage": "מעבד",
"memory_usage": "זיכרון" "memory_usage": "זיכרון"
}, },
"immich": { "immich": {
@@ -676,7 +670,7 @@
"down": "אתרים לא פעילים", "down": "אתרים לא פעילים",
"uptime": "זמן פעילות", "uptime": "זמן פעילות",
"incident": "תקריות", "incident": "תקריות",
"m": "דקות" "m": "דקה"
}, },
"atsumeru": { "atsumeru": {
"series": "סדרות", "series": "סדרות",
@@ -707,8 +701,8 @@
}, },
"fileflows": { "fileflows": {
"queue": "תור", "queue": "תור",
"processing": עיבוד", "processing": "מעבד",
"processed": "עובדו", "processed": "עובד",
"time": "זמן" "time": "זמן"
}, },
"firefly": { "firefly": {
@@ -734,7 +728,7 @@
"size": "גודל", "size": "גודל",
"lastrun": "הרצה אחרונה", "lastrun": "הרצה אחרונה",
"nextrun": "הרצה הבאה", "nextrun": "הרצה הבאה",
"failed": "נכשלו" "failed": "נכשל"
}, },
"unmanic": { "unmanic": {
"active_workers": "עובדים פעילים", "active_workers": "עובדים פעילים",
@@ -751,8 +745,8 @@
"targets_total": "סה\"כ מטרות" "targets_total": "סה\"כ מטרות"
}, },
"gatus": { "gatus": {
"up": "אתרים למעלה", "up": "אתרים פעילים",
"down": "אתרים למטה", "down": "אתרים לא פעילים",
"uptime": "זמן פעילות" "uptime": "זמן פעילות"
}, },
"ghostfolio": { "ghostfolio": {
@@ -764,7 +758,7 @@
"podcasts": "פודקאסטים", "podcasts": "פודקאסטים",
"books": "ספרים", "books": "ספרים",
"podcastsDuration": "משך פודקאסטים", "podcastsDuration": "משך פודקאסטים",
"booksDuration": "משך זמן" "booksDuration": "משך פודקאסטים"
}, },
"homeassistant": { "homeassistant": {
"people_home": "אנשים בבית", "people_home": "אנשים בבית",
@@ -797,17 +791,17 @@
"buildId": "Build ID", "buildId": "Build ID",
"succeeded": "הצליח", "succeeded": "הצליח",
"notStarted": "לא התחיל", "notStarted": "לא התחיל",
"failed": "נכשלו", "failed": "נכשל",
"canceled": "בוטל", "canceled": "בוטל",
"inProgress": "בתהליך", "inProgress": "בתהליך",
"totalPrs": "סה\"כ PRs", "totalPrs": "סה\"כ PRs",
"myPrs": "PRs שלי", "myPrs": "PRs שלי",
"approved": "אושרו" "approved": "מאושר"
}, },
"gamedig": { "gamedig": {
"status": "סטטוס", "status": "סטטוס",
"online": חובר", "online": קוון",
"offline": "מנותק", "offline": "לא מקוון",
"name": "שם", "name": "שם",
"map": "מפה", "map": "מפה",
"currentPlayers": "שחקנים נוכחיים", "currentPlayers": "שחקנים נוכחיים",
@@ -819,7 +813,7 @@
"urbackup": { "urbackup": {
"ok": "Ok", "ok": "Ok",
"errored": "שגיאות", "errored": "שגיאות",
"noRecent": "לא עדכני", "noRecent": לא תאריך",
"totalUsed": "אחסון בשימוש" "totalUsed": "אחסון בשימוש"
}, },
"mealie": { "mealie": {
@@ -831,10 +825,10 @@
"openmediavault": { "openmediavault": {
"downloading": "מוריד", "downloading": "מוריד",
"total": "סה\"כ", "total": "סה\"כ",
"running": צים", "running": ץ",
"stopped": "נעצרו", "stopped": "נעצר",
"passed": "עברו", "passed": "עבר",
"failed": "נכשלו" "failed": "נכשל"
}, },
"openwrt": { "openwrt": {
"uptime": "זמן פעילות", "uptime": "זמן פעילות",
@@ -845,12 +839,12 @@
"bytesRx": "התקבל" "bytesRx": "התקבל"
}, },
"uptimerobot": { "uptimerobot": {
"status": "זמן פעילות", "status": "סטטוס",
"uptime": "זמן פעילות", "uptime": "זמן פעילות",
"lastDown": "זמן השבתה אחרון", "lastDown": "זמן השבתה אחרון",
"downDuration": "משך השבתה", "downDuration": "משך השבתה",
"sitesUp": "אתרים למעלה", "sitesUp": "אתרים פעילים",
"sitesDown": "אתרים למטה", "sitesDown": "אתרים לא פעילים",
"paused": "מושהה", "paused": "מושהה",
"notyetchecked": "לא נבדק עדיין", "notyetchecked": "לא נבדק עדיין",
"up": "למעלה", "up": "למעלה",
@@ -892,7 +886,7 @@
}, },
"gitea": { "gitea": {
"notifications": "התראות", "notifications": "התראות",
"issues": "נושאים", "issues": "גיליונות",
"pulls": "בקשות משיכה", "pulls": "בקשות משיכה",
"repositories": "מאגרי מידע" "repositories": "מאגרי מידע"
}, },
@@ -909,7 +903,7 @@
"performers": "מבצעים", "performers": "מבצעים",
"studios": "אולפנים", "studios": "אולפנים",
"movies": "סרטים", "movies": "סרטים",
"tags": "תגיות", "tags": "טגיות",
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
@@ -932,7 +926,7 @@
"wgeasy": { "wgeasy": {
"connected": "מחובר", "connected": "מחובר",
"enabled": "מופעל", "enabled": "מופעל",
"disabled": ושבת", "disabled": בוטל",
"total": "סה\"כ" "total": "סה\"כ"
}, },
"swagdashboard": { "swagdashboard": {
@@ -961,7 +955,7 @@
"linkwarden": { "linkwarden": {
"links": "קישורים", "links": "קישורים",
"collections": "אוספים", "collections": "אוספים",
"tags": "תגיות" "tags": "טגיות"
}, },
"zabbix": { "zabbix": {
"unclassified": "לא ממויין", "unclassified": "לא ממויין",
@@ -990,8 +984,8 @@
"address": "כתובת", "address": "כתובת",
"last_seen": "נראה לאחרונה", "last_seen": "נראה לאחרונה",
"status": "סטטוס", "status": "סטטוס",
"online": חובר", "online": קוון",
"offline": "מנותק" "offline": "לא מקוון"
}, },
"beszel": { "beszel": {
"name": "שם", "name": "שם",
@@ -1001,7 +995,7 @@
"paused": "מושהה", "paused": "מושהה",
"pending": "ממתין", "pending": "ממתין",
"status": "סטטוס", "status": "סטטוס",
"updated": "מעודכן", "updated": "עודכן",
"cpu": "מעבד", "cpu": "מעבד",
"memory": "זיכרון", "memory": "זיכרון",
"disk": "דיסק", "disk": "דיסק",
@@ -1014,7 +1008,7 @@
"healthy": "בריא", "healthy": "בריא",
"degraded": "פגום", "degraded": "פגום",
"progressing": "מתקדם", "progressing": "מתקדם",
"missing": "חסר", "missing": "חסרים",
"suspended": "מושהה" "suspended": "מושהה"
}, },
"spoolman": { "spoolman": {
@@ -1022,7 +1016,7 @@
}, },
"gitlab": { "gitlab": {
"groups": "קבוצות", "groups": "קבוצות",
"issues": "נושאים", "issues": "גיליונות",
"merges": "Merge Requests", "merges": "Merge Requests",
"projects": "פרוייקטים" "projects": "פרוייקטים"
}, },
@@ -1038,7 +1032,7 @@
"archived": "ארכיון", "archived": "ארכיון",
"highlights": "הדגשות", "highlights": "הדגשות",
"lists": "רשימות", "lists": "רשימות",
"tags": "תגיות" "tags": "טגיות"
}, },
"slskd": { "slskd": {
"slskStatus": "רשת", "slskStatus": "רשת",
@@ -1046,7 +1040,7 @@
"disconnected": "מנותק", "disconnected": "מנותק",
"updateStatus": "עדכן", "updateStatus": "עדכן",
"update_yes": "זמין", "update_yes": "זמין",
"update_no": "מעודכן", "update_no": "עדכני",
"downloads": "הורדות", "downloads": "הורדות",
"uploads": "העלאות", "uploads": "העלאות",
"sharedFiles": "קבצים" "sharedFiles": "קבצים"
@@ -1060,28 +1054,5 @@
"checkmk": { "checkmk": {
"serviceErrors": "שגיאות שירות", "serviceErrors": "שגיאות שירות",
"hostErrors": "שגיאות מארח" "hostErrors": "שגיאות מארח"
},
"komodo": {
"total": "סה\"כ",
"running": "רץ",
"stopped": "עצר",
"down": "למטה",
"unhealthy": "לא בריא",
"unknown": "לא ידוע",
"servers": "שרתים",
"stacks": "ערימות",
"containers": "קונטיינרים"
},
"filebrowser": {
"available": "פנוי",
"used": "בשימוש",
"total": "סה\"כ"
},
"wallos": {
"activeSubscriptions": "מנויים",
"thisMonthlyCost": "החודש",
"nextMonthlyCost": "חודש הבא",
"previousMonthlyCost": "חודש קודם",
"nextRenewingSubscription": "תשלום הבא"
} }
} }

View File

@@ -359,12 +359,6 @@
"services": "Services", "services": "Services",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "No Active Streams",
"please_wait": "Please Wait" "please_wait": "Please Wait"
@@ -447,7 +441,7 @@
"free": "Free", "free": "Free",
"used": "Used", "used": "Used",
"days": "d", "days": "d",
"hours": "h", "hours": "घं.",
"crit": "Crit", "crit": "Crit",
"read": "Read", "read": "Read",
"write": "Write", "write": "Write",
@@ -1060,28 +1054,5 @@
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -61,9 +61,9 @@
"wlan_devices": "Perangkat WLAN", "wlan_devices": "Perangkat WLAN",
"lan_users": "Pengguna LAN", "lan_users": "Pengguna LAN",
"wlan_users": "Pengguna WLAN", "wlan_users": "Pengguna WLAN",
"up": "UP", "up": "Waktu Aktif",
"down": "Mati", "down": "Mati",
"wait": "Please wait", "wait": "Harap tunggu",
"empty_data": "Status subsistem tdk diketahui" "empty_data": "Status subsistem tdk diketahui"
}, },
"docker": { "docker": {
@@ -93,9 +93,9 @@
"http_status": "HTTP Status", "http_status": "HTTP Status",
"error": "Error", "error": "Error",
"response": "Respons", "response": "Respons",
"down": "Down", "down": "Mati",
"up": "Up", "up": "Hidup",
"not_available": "Not Available" "not_available": "Tidak Tersedia"
}, },
"emby": { "emby": {
"playing": "Sedang Diputar", "playing": "Sedang Diputar",
@@ -112,7 +112,7 @@
"offline_alt": "Offline", "offline_alt": "Offline",
"online": "Online", "online": "Online",
"total": "Total", "total": "Total",
"unknown": "Unknown" "unknown": "Tidak Diketahui"
}, },
"evcc": { "evcc": {
"pv_power": "Produksi", "pv_power": "Produksi",
@@ -141,11 +141,11 @@
"connectionStatusDisconnecting": "Sedan Memutus", "connectionStatusDisconnecting": "Sedan Memutus",
"connectionStatusDisconnected": "Terputus", "connectionStatusDisconnected": "Terputus",
"connectionStatusConnected": "Tersambung", "connectionStatusConnected": "Tersambung",
"uptime": "Uptime", "uptime": "Waktu Aktif",
"maxDown": "Maks Unduh", "maxDown": "Maks Unduh",
"maxUp": "Maks Unggah", "maxUp": "Maks Unggah",
"down": "Down", "down": "Mati",
"up": "Up", "up": "Hidup",
"received": "Diterima", "received": "Diterima",
"sent": "Terkirim", "sent": "Terkirim",
"externalIPAddress": "IP Eksternal", "externalIPAddress": "IP Eksternal",
@@ -168,10 +168,10 @@
"passes": "Tiket" "passes": "Tiket"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "Sedang Diputar",
"transcoding": "Transcoding", "transcoding": "Mentranskode",
"bitrate": "Bitrate", "bitrate": "Bitrate",
"no_active": "No Active Streams", "no_active": "Tidak ada Strim Aktif",
"plex_connection_error": "Cek Koneksi ke Plex" "plex_connection_error": "Cek Koneksi ke Plex"
}, },
"omada": { "omada": {
@@ -189,28 +189,28 @@
"plex": { "plex": {
"streams": "Stream Berjalan", "streams": "Stream Berjalan",
"albums": "Albums", "albums": "Albums",
"movies": "Movies", "movies": "Film",
"tv": "Acara TV" "tv": "Acara TV"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "Laju Bandwidth",
"queue": "Antrian", "queue": "Antrian",
"timeleft": "Sisa Waktu" "timeleft": "Sisa Waktu"
}, },
"rutorrent": { "rutorrent": {
"active": "Aktif", "active": "Aktif",
"upload": "Upload", "upload": "Unggah",
"download": "Download" "download": "Unduh"
}, },
"transmission": { "transmission": {
"download": "Download", "download": "Unduh",
"upload": "Upload", "upload": "Unggah",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Download", "download": "Unduh",
"upload": "Upload", "upload": "Unggah",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -223,8 +223,8 @@
"invalid": "Tidak valid" "invalid": "Tidak valid"
}, },
"deluge": { "deluge": {
"download": "Download", "download": "Unduh",
"upload": "Upload", "upload": "Unggah",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -233,34 +233,34 @@
"cachemissbytes": "Cache Miss Bytes" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Unduh",
"upload": "Upload", "upload": "Unggah",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"sonarr": { "sonarr": {
"wanted": "Dicari", "wanted": "Dicari",
"queued": "Terantrikan", "queued": "Terantrikan",
"series": "Series", "series": "Seri",
"queue": "Queue", "queue": "Antrian",
"unknown": "Unknown" "unknown": "Tidak Diketahui"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Dicari",
"missing": "Tidak Ditemukan", "missing": "Tidak Ditemukan",
"queued": "Queued", "queued": "Terantrikan",
"movies": "Movies", "movies": "Film",
"queue": "Queue", "queue": "Antrian",
"unknown": "Unknown" "unknown": "Tidak Diketahui"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Dicari",
"queued": "Queued", "queued": "Terantrikan",
"artists": "Artis" "artists": "Artis"
}, },
"readarr": { "readarr": {
"wanted": "Wanted", "wanted": "Dicari",
"queued": "Queued", "queued": "Terantrikan",
"books": "Buku" "books": "Buku"
}, },
"bazarr": { "bazarr": {
@@ -274,18 +274,18 @@
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pending", "pending": "Pending",
"approved": "Approved", "approved": "Tersetujui",
"available": "Available" "available": "Tersedia"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "Pending",
"processing": "Memproses", "processing": "Memproses",
"approved": "Approved", "approved": "Tersetujui",
"available": "Available" "available": "Tersedia"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Connected", "connected": "Tersambung",
"new_devices": "Perangkat Baru", "new_devices": "Perangkat Baru",
"down_alerts": "Peringatan Pemadaman" "down_alerts": "Peringatan Pemadaman"
}, },
@@ -296,26 +296,26 @@
"gravity": "Gravitasi" "gravity": "Gravitasi"
}, },
"adguard": { "adguard": {
"queries": "Queries", "queries": "Kueri",
"blocked": "Blocked", "blocked": "Terblokir",
"filtered": "Terfilter", "filtered": "Terfilter",
"latency": "Latensi" "latency": "Latensi"
}, },
"speedtest": { "speedtest": {
"upload": "Upload", "upload": "Unggah",
"download": "Download", "download": "Unduh",
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "Berjalan",
"stopped": "Terhenti", "stopped": "Terhenti",
"total": "Total" "total": "Total"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Terunduh",
"nondownload": "Belum Diunduh", "nondownload": "Belum Diunduh",
"read": "Read", "read": "Baca",
"unread": "Unread", "unread": "Belum Dibaca",
"downloadedread": "Diunduh & Dibaca", "downloadedread": "Diunduh & Dibaca",
"downloadedunread": "Diunduh & Belum Dibaca", "downloadedunread": "Diunduh & Belum Dibaca",
"nondownloadedread": "Belum Diunduh & Dibaca", "nondownloadedread": "Belum Diunduh & Dibaca",
@@ -336,7 +336,7 @@
"ago": "{{value}} Yang Lalu" "ago": "{{value}} Yang Lalu"
}, },
"technitium": { "technitium": {
"totalQueries": "Queries", "totalQueries": "Kueri",
"totalNoError": "Berhasil", "totalNoError": "Berhasil",
"totalServerFailure": "Gagal", "totalServerFailure": "Gagal",
"totalNxDomain": "Domain NX", "totalNxDomain": "Domain NX",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative", "totalAuthoritative": "Authoritative",
"totalRecursive": "Rekursif", "totalRecursive": "Rekursif",
"totalCached": "Cached", "totalCached": "Cached",
"totalBlocked": "Blocked", "totalBlocked": "Terblokir",
"totalDropped": "Dropped", "totalDropped": "Dropped",
"totalClients": "Klien" "totalClients": "Klien"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "Antrian",
"processed": "Terproses", "processed": "Terproses",
"errored": "Error", "errored": "Error",
"saved": "Tersimpan" "saved": "Tersimpan"
@@ -359,14 +359,8 @@
"services": "Layanan", "services": "Layanan",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "Tidak ada Strim Aktif",
"please_wait": "Mohon menunggu" "please_wait": "Mohon menunggu"
}, },
"npm": { "npm": {
@@ -383,35 +377,35 @@
}, },
"gotify": { "gotify": {
"apps": "Aplikasi", "apps": "Aplikasi",
"clients": "Clients", "clients": "Klien",
"messages": "Pesan" "messages": "Pesan"
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "Pengindeks", "enableIndexers": "Pengindeks",
"numberOfGrabs": "Jumlah Ambilan", "numberOfGrabs": "Jumlah Ambilan",
"numberOfQueries": "Queries", "numberOfQueries": "Kueri",
"numberOfFailGrabs": "Ambilan Gagal", "numberOfFailGrabs": "Ambilan Gagal",
"numberOfFailQueries": "Jumlah Kueri Gagal" "numberOfFailQueries": "Jumlah Kueri Gagal"
}, },
"jackett": { "jackett": {
"configured": "Konfigurasi", "configured": "Konfigurasi",
"errored": "Errored" "errored": "Error"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Sesi", "numActiveSessions": "Sesi",
"numConnections": "Jumlah Koneksi", "numConnections": "Jumlah Koneksi",
"dataRelayed": "Data Diteruskan", "dataRelayed": "Data Diteruskan",
"transferRate": "Rate" "transferRate": "Laju Bandwidth"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "Pengguna",
"status_count": "Jumlah Posting", "status_count": "Jumlah Posting",
"domain_count": "Jumlah Domain" "domain_count": "Jumlah Domain"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "Dicari",
"queued": "Queued", "queued": "Terantrikan",
"series": "Series" "series": "Seri"
}, },
"minecraft": { "minecraft": {
"players": "Jumlah Pemain", "players": "Jumlah Pemain",
@@ -422,10 +416,10 @@
}, },
"miniflux": { "miniflux": {
"read": "Baca", "read": "Baca",
"unread": "Unread" "unread": "Belum Dibaca"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "Pengguna",
"loginsLast24H": "Login (24j)", "loginsLast24H": "Login (24j)",
"failedLoginsLast24H": "Login Gagal (24j)" "failedLoginsLast24H": "Login Gagal (24j)"
}, },
@@ -437,19 +431,19 @@
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Load", "load": "Beban",
"wait": "Please wait", "wait": "Harap tunggu",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Suhu", "_temp": "Suhu",
"warn": "Peringatan", "warn": "Peringatan",
"uptime": "UP", "uptime": "Waktu Aktif",
"total": "Total", "total": "Total",
"free": "Free", "free": "Luang",
"used": "Used", "used": "Digunakan",
"days": "d", "days": "h",
"hours": "h", "hours": "j",
"crit": "Penting", "crit": "Penting",
"read": "Read", "read": "Baca",
"write": "Tulis", "write": "Tulis",
"gpu": "GPU", "gpu": "GPU",
"mem": "Mem", "mem": "Mem",
@@ -470,57 +464,57 @@
"1-day": "Cerah", "1-day": "Cerah",
"1-night": "Cerah", "1-night": "Cerah",
"2-day": "Sedikit Berawan", "2-day": "Sedikit Berawan",
"2-night": "Partly Cloudy", "2-night": "Sedikit Berawan",
"3-day": "Berawan", "3-day": "Berawan",
"3-night": "Cloudy", "3-night": "Berawan",
"45-day": "Berkabut", "45-day": "Berkabut",
"45-night": "Foggy", "45-night": "Berkabut",
"48-day": "Foggy", "48-day": "Berkabut",
"48-night": "Foggy", "48-night": "Berkabut",
"51-day": "Gerimis Ringan", "51-day": "Gerimis Ringan",
"51-night": "Light Drizzle", "51-night": "Gerimis Ringan",
"53-day": "Gerimis", "53-day": "Gerimis",
"53-night": "Drizzle", "53-night": "Gerimis",
"55-day": "Gerimis Lebat", "55-day": "Gerimis Lebat",
"55-night": "Heavy Drizzle", "55-night": "Gerimis Lebat",
"56-day": "Gerimis Membeku Ringan", "56-day": "Gerimis Membeku Ringan",
"56-night": "Light Freezing Drizzle", "56-night": "Gerimis Membeku Ringan",
"57-day": "Gerimis Membeku", "57-day": "Gerimis Membeku",
"57-night": "Freezing Drizzle", "57-night": "Gerimis Membeku",
"61-day": "Hujan Ringan", "61-day": "Hujan Ringan",
"61-night": "Light Rain", "61-night": "Hujan Ringan",
"63-day": "Hujan", "63-day": "Hujan",
"63-night": "Rain", "63-night": "Hujan",
"65-day": "Hujan Deras", "65-day": "Hujan Deras",
"65-night": "Heavy Rain", "65-night": "Hujan Deras",
"66-day": "Hujan Dingin", "66-day": "Hujan Dingin",
"66-night": "Freezing Rain", "66-night": "Hujan Dingin",
"67-day": "Freezing Rain", "67-day": "Hujan Dingin",
"67-night": "Freezing Rain", "67-night": "Hujan Dingin",
"71-day": "Hujan Salju Ringan", "71-day": "Hujan Salju Ringan",
"71-night": "Light Snow", "71-night": "Hujan Salju Ringan",
"73-day": "Hujan Salju", "73-day": "Hujan Salju",
"73-night": "Snow", "73-night": "Hujan Salju",
"75-day": "Hujan Salju Lebat", "75-day": "Hujan Salju Lebat",
"75-night": "Heavy Snow", "75-night": "Hujan Salju Lebat",
"77-day": "Hujan Salju Butiran", "77-day": "Hujan Salju Butiran",
"77-night": "Snow Grains", "77-night": "Hujan Salju Butiran",
"80-day": "Hujan Ringan", "80-day": "Hujan Ringan",
"80-night": "Light Showers", "80-night": "Hujan Ringan",
"81-day": "Hujan", "81-day": "Hujan",
"81-night": "Showers", "81-night": "Hujan",
"82-day": "Hujan Lebat", "82-day": "Hujan Lebat",
"82-night": "Heavy Showers", "82-night": "Hujan Lebat",
"85-day": "Hujan Salju", "85-day": "Hujan Salju",
"85-night": "Snow Showers", "85-night": "Hujan Salju",
"86-day": "Snow Showers", "86-day": "Hujan Salju",
"86-night": "Snow Showers", "86-night": "Hujan Salju",
"95-day": "Badai Petir", "95-day": "Badai Petir",
"95-night": "Thunderstorm", "95-night": "Badai Petir",
"96-day": "Badai Petir Hujan Es", "96-day": "Badai Petir Hujan Es",
"96-night": "Thunderstorm With Hail", "96-night": "Badai Petir Hujan Es",
"99-day": "Thunderstorm With Hail", "99-day": "Badai Petir Hujan Es",
"99-night": "Thunderstorm With Hail" "99-night": "Badai Petir Hujan Es"
}, },
"homebridge": { "homebridge": {
"available_update": "Sistem", "available_update": "Sistem",
@@ -529,15 +523,15 @@
"up_to_date": "Terbaru", "up_to_date": "Terbaru",
"child_bridges": "Bridge Turunan", "child_bridges": "Bridge Turunan",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Hidup",
"pending": "Pending", "pending": "Pending",
"down": "Down" "down": "Mati"
}, },
"healthchecks": { "healthchecks": {
"new": "Baru", "new": "Baru",
"up": "Up", "up": "Hidup",
"grace": "Dalam Masa Tenggang", "grace": "Dalam Masa Tenggang",
"down": "Down", "down": "Mati",
"paused": "Pause", "paused": "Pause",
"status": "Status", "status": "Status",
"last_ping": "Ping Terakhir", "last_ping": "Ping Terakhir",
@@ -549,26 +543,26 @@
"containers_failed": "Gagal" "containers_failed": "Gagal"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "Tersetujui",
"rejectedPushes": "Tertolak", "rejectedPushes": "Tertolak",
"filters": "Filter", "filters": "Filter",
"indexers": "Indexers" "indexers": "Pengindeks"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "Antrian",
"videos": "Video", "videos": "Video",
"channels": "Channel", "channels": "Channel",
"playlists": "Daftar Putar" "playlists": "Daftar Putar"
}, },
"truenas": { "truenas": {
"load": "Beban Sistem", "load": "Beban Sistem",
"uptime": "Uptime", "uptime": "Waktu Aktif",
"alerts": "Alerts" "alerts": "Peringatan"
}, },
"pyload": { "pyload": {
"speed": "Kecepatan", "speed": "Kecepatan",
"active": "Active", "active": "Aktif",
"queue": "Queue", "queue": "Antrian",
"total": "Total" "total": "Total"
}, },
"gluetun": { "gluetun": {
@@ -578,21 +572,21 @@
"port_forwarded": "Port Forwarded" "port_forwarded": "Port Forwarded"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Channels", "channels": "Channel",
"hd": "HD", "hd": "HD",
"tunerCount": "Tuner", "tunerCount": "Tuner",
"channelNumber": "Channel", "channelNumber": "Channel",
"channelNetwork": "Jaringan", "channelNetwork": "Jaringan",
"signalStrength": "Kekuatan Signal", "signalStrength": "Kekuatan Signal",
"signalQuality": "Kualitas", "signalQuality": "Kualitas",
"symbolQuality": "Quality", "symbolQuality": "Kualitas",
"networkRate": "Bitrate", "networkRate": "Bitrate",
"clientIP": "Klien" "clientIP": "Klien"
}, },
"scrutiny": { "scrutiny": {
"passed": "Sukses", "passed": "Sukses",
"failed": "Failed", "failed": "Gagal",
"unknown": "Unknown" "unknown": "Tidak Diketahui"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Kotak Masuk", "inbox": "Kotak Masuk",
@@ -607,18 +601,18 @@
"low_battery": "Baterai Lemah" "low_battery": "Baterai Lemah"
}, },
"nextdns": { "nextdns": {
"wait": "Please Wait", "wait": "Mohon menunggu",
"no_devices": "Tidak ada Data Perangkat Diterima" "no_devices": "Tidak ada Data Perangkat Diterima"
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "Beban CPU", "cpuLoad": "Beban CPU",
"memoryUsed": "Memori Terpakai", "memoryUsed": "Memori Terpakai",
"uptime": "Uptime", "uptime": "Waktu Aktif",
"numberOfLeases": "Leases" "numberOfLeases": "Leases"
}, },
"xteve": { "xteve": {
"streams_all": "Semua Strim", "streams_all": "Semua Strim",
"streams_active": "Active Streams", "streams_active": "Stream Berjalan",
"streams_xepg": "Channel XEPG" "streams_xepg": "Channel XEPG"
}, },
"opendtu": { "opendtu": {
@@ -628,7 +622,7 @@
"limit": "Batas" "limit": "Batas"
}, },
"opnsense": { "opnsense": {
"cpu": "CPU Load", "cpu": "Beban CPU",
"memory": "Memori Aktif", "memory": "Memori Aktif",
"wanUpload": "WAN Unggan", "wanUpload": "WAN Unggan",
"wanDownload": "WAN Unduh" "wanDownload": "WAN Unduh"
@@ -653,9 +647,9 @@
"load": "Beban Rata-rata", "load": "Beban Rata-rata",
"memory": "Penggunaan Memory", "memory": "Penggunaan Memory",
"wanStatus": "Status WAN", "wanStatus": "Status WAN",
"up": "Up", "up": "Hidup",
"down": "Down", "down": "Mati",
"temp": "Temp", "temp": "Suhu",
"disk": "Penggunaan Disk", "disk": "Penggunaan Disk",
"wanIP": "IP WAN" "wanIP": "IP WAN"
}, },
@@ -666,49 +660,49 @@
"memory_usage": "Memory" "memory_usage": "Memory"
}, },
"immich": { "immich": {
"users": "Users", "users": "Pengguna",
"photos": "Foto", "photos": "Foto",
"videos": "Videos", "videos": "Video",
"storage": "Penyimpanan" "storage": "Penyimpanan"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Situs Hidup", "up": "Situs Hidup",
"down": "Situs Mati", "down": "Situs Mati",
"uptime": "Uptime", "uptime": "Waktu Aktif",
"incident": "Insiden", "incident": "Insiden",
"m": "m" "m": "m"
}, },
"atsumeru": { "atsumeru": {
"series": "Series", "series": "Seri",
"archives": "Arsip", "archives": "Arsip",
"chapters": "Bab", "chapters": "Bab",
"categories": "Kategori" "categories": "Kategori"
}, },
"komga": { "komga": {
"libraries": "Perpustakaan", "libraries": "Perpustakaan",
"series": "Series", "series": "Seri",
"books": "Books" "books": "Buku"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Hari-hari",
"uptime": "Uptime", "uptime": "Waktu Aktif",
"volumeAvailable": "Available" "volumeAvailable": "Tersedia"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Seri",
"issues": "Isu", "issues": "Isu",
"wanted": "Wanted" "wanted": "Dicari"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Albums",
"photos": "Photos", "photos": "Foto",
"videos": "Videos", "videos": "Video",
"people": "Orang" "people": "Orang"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "Antrian",
"processing": "Processing", "processing": "Memproses",
"processed": "Processed", "processed": "Terproses",
"time": "Waktu" "time": "Waktu"
}, },
"firefly": { "firefly": {
@@ -734,7 +728,7 @@
"size": "Ukuran", "size": "Ukuran",
"lastrun": "Terakhir Dijalankan", "lastrun": "Terakhir Dijalankan",
"nextrun": "Akan Dijalankan Dalam", "nextrun": "Akan Dijalankan Dalam",
"failed": "Failed" "failed": "Gagal"
}, },
"unmanic": { "unmanic": {
"active_workers": "Pengguna Aktif", "active_workers": "Pengguna Aktif",
@@ -751,20 +745,20 @@
"targets_total": "Target Total" "targets_total": "Target Total"
}, },
"gatus": { "gatus": {
"up": "Sites Up", "up": "Situs Hidup",
"down": "Sites Down", "down": "Situs Mati",
"uptime": "Uptime" "uptime": "Waktu Aktif"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Today", "gross_percent_today": "Hari ini",
"gross_percent_1y": "Satu Tahun", "gross_percent_1y": "Satu Tahun",
"gross_percent_max": "Sepanjang Masa" "gross_percent_max": "Sepanjang Masa"
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcast", "podcasts": "Podcast",
"books": "Books", "books": "Buku",
"podcastsDuration": "Durasi", "podcastsDuration": "Durasi",
"booksDuration": "Duration" "booksDuration": "Durasi"
}, },
"homeassistant": { "homeassistant": {
"people_home": "Orang Di Rumah", "people_home": "Orang Di Rumah",
@@ -773,23 +767,23 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Pengawasan", "monitoring": "Pengawasan",
"updates": "Updates" "updates": "Pembaruan"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "Buku",
"authors": "Penulis", "authors": "Penulis",
"categories": "Categories", "categories": "Kategori",
"series": "Series" "series": "Seri"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "Antrian",
"downloadBytesRemaining": "Remaining", "downloadBytesRemaining": "Sisa",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Ukuran",
"downloadSpeed": "Speed" "downloadSpeed": "Kecepatan"
}, },
"kavita": { "kavita": {
"seriesCount": "Series", "seriesCount": "Seri",
"totalFiles": "Files" "totalFiles": "File"
}, },
"azuredevops": { "azuredevops": {
"result": "Hasil", "result": "Hasil",
@@ -797,12 +791,12 @@
"buildId": "Build ID", "buildId": "Build ID",
"succeeded": "Berhasil", "succeeded": "Berhasil",
"notStarted": "Belum Dimulai", "notStarted": "Belum Dimulai",
"failed": "Failed", "failed": "Gagal",
"canceled": "Dibatalkan", "canceled": "Dibatalkan",
"inProgress": "Sedang Berlangsung", "inProgress": "Sedang Berlangsung",
"totalPrs": "PR Total", "totalPrs": "PR Total",
"myPrs": "PR Saya", "myPrs": "PR Saya",
"approved": "Approved" "approved": "Tersetujui"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "Status",
@@ -811,7 +805,7 @@
"name": "Nama", "name": "Nama",
"map": "Peta", "map": "Peta",
"currentPlayers": "Jumlah pemain", "currentPlayers": "Jumlah pemain",
"players": "Players", "players": "Jumlah Pemain",
"maxPlayers": "Maksimum pemain", "maxPlayers": "Maksimum pemain",
"bots": "Bot", "bots": "Bot",
"ping": "Ping" "ping": "Ping"
@@ -824,39 +818,39 @@
}, },
"mealie": { "mealie": {
"recipes": "Resep", "recipes": "Resep",
"users": "Users", "users": "Pengguna",
"categories": "Categories", "categories": "Kategori",
"tags": "Tag" "tags": "Tag"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Mengunduh", "downloading": "Mengunduh",
"total": "Total", "total": "Total",
"running": "Running", "running": "Berjalan",
"stopped": "Stopped", "stopped": "Terhenti",
"passed": "Passed", "passed": "Sukses",
"failed": "Failed" "failed": "Gagal"
}, },
"openwrt": { "openwrt": {
"uptime": "Uptime", "uptime": "Waktu Aktif",
"cpuLoad": "Beban rata2 CPU (5m)", "cpuLoad": "Beban rata2 CPU (5m)",
"up": "Up", "up": "Hidup",
"down": "Down", "down": "Mati",
"bytesTx": "Tersalur", "bytesTx": "Tersalur",
"bytesRx": "Received" "bytesRx": "Diterima"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "Status",
"uptime": "Uptime", "uptime": "Waktu Aktif",
"lastDown": "Terakhir Terhenti", "lastDown": "Terakhir Terhenti",
"downDuration": "Jumlah Waktu Terhenti", "downDuration": "Jumlah Waktu Terhenti",
"sitesUp": "Sites Up", "sitesUp": "Situs Hidup",
"sitesDown": "Sites Down", "sitesDown": "Situs Mati",
"paused": "Paused", "paused": "Pause",
"notyetchecked": "Belum Di Cek", "notyetchecked": "Belum Di Cek",
"up": "Up", "up": "Hidup",
"seemsdown": "Sepertinya Mati", "seemsdown": "Sepertinya Mati",
"down": "Down", "down": "Mati",
"unknown": "Unknown" "unknown": "Tidak Diketahui"
}, },
"calendar": { "calendar": {
"inCinemas": "Tersedia Di Bioskop", "inCinemas": "Tersedia Di Bioskop",
@@ -875,10 +869,10 @@
"totalfilesize": "Total Ukuran" "totalfilesize": "Total Ukuran"
}, },
"mailcow": { "mailcow": {
"domains": "Domains", "domains": "Jumlah Domain",
"mailboxes": "Kotak surat", "mailboxes": "Kotak surat",
"mails": "Surat", "mails": "Surat",
"storage": "Storage" "storage": "Penyimpanan"
}, },
"netdata": { "netdata": {
"warnings": "Peringatan", "warnings": "Peringatan",
@@ -887,12 +881,12 @@
"plantit": { "plantit": {
"events": "Acara", "events": "Acara",
"plants": "Tanaman", "plants": "Tanaman",
"photos": "Photos", "photos": "Foto",
"species": "Spesies" "species": "Spesies"
}, },
"gitea": { "gitea": {
"notifications": "Notifikasi", "notifications": "Notifikasi",
"issues": "Issues", "issues": "Isu",
"pulls": "Pull Requests", "pulls": "Pull Requests",
"repositories": "Repositories" "repositories": "Repositories"
}, },
@@ -908,13 +902,13 @@
"galleries": "Galeri", "galleries": "Galeri",
"performers": "Pemain", "performers": "Pemain",
"studios": "Studio", "studios": "Studio",
"movies": "Movies", "movies": "Film",
"tags": "Tags", "tags": "Tag",
"oCount": "Jumlah O" "oCount": "Jumlah O"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "Pengguna",
"recipes": "Recipes", "recipes": "Resep",
"keywords": "Kata Kunci" "keywords": "Kata Kunci"
}, },
"homebox": { "homebox": {
@@ -922,17 +916,17 @@
"totalWithWarranty": "Dengan Garansi", "totalWithWarranty": "Dengan Garansi",
"locations": "Lokasi", "locations": "Lokasi",
"labels": "Label", "labels": "Label",
"users": "Users", "users": "Pengguna",
"totalValue": "Total Nilai" "totalValue": "Total Nilai"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alerts", "alerts": "Peringatan",
"bans": "Bans" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Tersambung",
"enabled": "Enabled", "enabled": "Aktif",
"disabled": "Disabled", "disabled": "Nonaktif",
"total": "Total" "total": "Total"
}, },
"swagdashboard": { "swagdashboard": {
@@ -943,8 +937,8 @@
}, },
"myspeed": { "myspeed": {
"ping": "Ping", "ping": "Ping",
"download": "Download", "download": "Unduh",
"upload": "Upload" "upload": "Unggah"
}, },
"stocks": { "stocks": {
"stocks": "Saham", "stocks": "Saham",
@@ -955,17 +949,17 @@
}, },
"frigate": { "frigate": {
"cameras": "Kamera", "cameras": "Kamera",
"uptime": "Uptime", "uptime": "Waktu Aktif",
"version": "Version" "version": "Versi"
}, },
"linkwarden": { "linkwarden": {
"links": "Tautan", "links": "Tautan",
"collections": "Koleksi", "collections": "Koleksi",
"tags": "Tags" "tags": "Tag"
}, },
"zabbix": { "zabbix": {
"unclassified": "Not classified", "unclassified": "Not classified",
"information": "Information", "information": "Informasi",
"warning": "Peringatan", "warning": "Peringatan",
"average": "Rata-rata", "average": "Rata-rata",
"high": "Tinggi", "high": "Tinggi",
@@ -986,22 +980,22 @@
"tasksInProgress": "Tugas Berlangsung" "tasksInProgress": "Tugas Berlangsung"
}, },
"headscale": { "headscale": {
"name": "Name", "name": "Nama",
"address": "Address", "address": "Alamat",
"last_seen": "Last Seen", "last_seen": "Terakhir terlihat",
"status": "Status", "status": "Status",
"online": "Online", "online": "Online",
"offline": "Offline" "offline": "Offline"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Nama",
"systems": "Sistem", "systems": "Sistem",
"up": "Up", "up": "Hidup",
"down": "Down", "down": "Mati",
"paused": "Paused", "paused": "Pause",
"pending": "Pending", "pending": "Pending",
"status": "Status", "status": "Status",
"updated": "Updated", "updated": "Terbarui",
"cpu": "CPU", "cpu": "CPU",
"memory": "MEM", "memory": "MEM",
"disk": "Diska", "disk": "Diska",
@@ -1011,26 +1005,26 @@
"apps": "Apl", "apps": "Apl",
"synced": "Tersinkron", "synced": "Tersinkron",
"outOfSync": "Tidak Sinkron", "outOfSync": "Tidak Sinkron",
"healthy": "Healthy", "healthy": "Lancar",
"degraded": "Terdegradasi", "degraded": "Terdegradasi",
"progressing": "Progressing", "progressing": "Progressing",
"missing": "Missing", "missing": "Tidak Ditemukan",
"suspended": "Ditangguhkan" "suspended": "Ditangguhkan"
}, },
"spoolman": { "spoolman": {
"loading": "Loading" "loading": "Memuat"
}, },
"gitlab": { "gitlab": {
"groups": "Grup", "groups": "Grup",
"issues": "Issues", "issues": "Isu",
"merges": "Merge Requests", "merges": "Merge Requests",
"projects": "Proyek" "projects": "Proyek"
}, },
"apcups": { "apcups": {
"status": "Status", "status": "Status",
"load": "Load", "load": "Beban",
"bcharge": "Battery Charge", "bcharge": "Sisa Baterai",
"timeleft": "Time Left" "timeleft": "Sisa Waktu"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
@@ -1038,50 +1032,27 @@
"archived": "Archived", "archived": "Archived",
"highlights": "Highlights", "highlights": "Highlights",
"lists": "Lists", "lists": "Lists",
"tags": "Tags" "tags": "Tag"
}, },
"slskd": { "slskd": {
"slskStatus": "Network", "slskStatus": "Jaringan",
"connected": "Connected", "connected": "Tersambung",
"disconnected": "Disconnected", "disconnected": "Terputus",
"updateStatus": "Update", "updateStatus": "Update",
"update_yes": "Available", "update_yes": "Tersedia",
"update_no": "Up to Date", "update_no": "Terbaru",
"downloads": "Downloads", "downloads": "Downloads",
"uploads": "Uploads", "uploads": "Uploads",
"sharedFiles": "Files" "sharedFiles": "File"
}, },
"jellystat": { "jellystat": {
"songs": "Songs", "songs": "Lagu",
"movies": "Movies", "movies": "Film",
"episodes": "Episodes", "episodes": "Episode",
"other": "Other" "other": "Other"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -63,7 +63,7 @@
"wlan_users": "Utenti WLAN", "wlan_users": "Utenti WLAN",
"up": "UP", "up": "UP",
"down": "DOWN", "down": "DOWN",
"wait": "Please wait", "wait": "Attendi per favore",
"empty_data": "Stato del sottosistema sconosciuto" "empty_data": "Stato del sottosistema sconosciuto"
}, },
"docker": { "docker": {
@@ -83,7 +83,7 @@
"partial": "Parziale" "partial": "Parziale"
}, },
"ping": { "ping": {
"error": "Error", "error": "Errore",
"ping": "Ping", "ping": "Ping",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
@@ -91,11 +91,11 @@
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "Stato HTTP", "http_status": "Stato HTTP",
"error": "Error", "error": "Errore",
"response": "Risposta", "response": "Risposta",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
"not_available": "Not Available" "not_available": "Non disponibile"
}, },
"emby": { "emby": {
"playing": "In riproduzione", "playing": "In riproduzione",
@@ -108,11 +108,11 @@
"songs": "Canzoni" "songs": "Canzoni"
}, },
"esphome": { "esphome": {
"offline": "Offline", "offline": "Non in linea",
"offline_alt": "Offline", "offline_alt": "Non in linea",
"online": "Online", "online": "Online",
"total": "Total", "total": "Totale",
"unknown": "Unknown" "unknown": "Sconosciuto"
}, },
"evcc": { "evcc": {
"pv_power": "Produzione", "pv_power": "Produzione",
@@ -133,7 +133,7 @@
"unread": "Non letto" "unread": "Non letto"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Status", "connectionStatus": "Stato",
"connectionStatusUnconfigured": "Non configurato", "connectionStatusUnconfigured": "Non configurato",
"connectionStatusConnecting": "Connessione in corso", "connectionStatusConnecting": "Connessione in corso",
"connectionStatusAuthenticating": "In fase di autenticazione", "connectionStatusAuthenticating": "In fase di autenticazione",
@@ -141,7 +141,7 @@
"connectionStatusDisconnecting": "Disconnessione in corso", "connectionStatusDisconnecting": "Disconnessione in corso",
"connectionStatusDisconnected": "Disconnesso", "connectionStatusDisconnected": "Disconnesso",
"connectionStatusConnected": "Connesso", "connectionStatusConnected": "Connesso",
"uptime": "Uptime", "uptime": "Tempo di attività",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
"down": "Down", "down": "Down",
@@ -168,10 +168,10 @@
"passes": "Tessere" "passes": "Tessere"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "In riproduzione",
"transcoding": "Transcoding", "transcoding": "Transcodifica",
"bitrate": "Bitrate", "bitrate": "Bitrate",
"no_active": "No Active Streams", "no_active": "Nessuno Stream Attivo",
"plex_connection_error": "Controllare la connessione a Plex" "plex_connection_error": "Controllare la connessione a Plex"
}, },
"omada": { "omada": {
@@ -189,11 +189,11 @@
"plex": { "plex": {
"streams": "Trasmissioni attive", "streams": "Trasmissioni attive",
"albums": "Album", "albums": "Album",
"movies": "Movies", "movies": "Film",
"tv": "Programmi televisivi" "tv": "Programmi televisivi"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "Rapporto",
"queue": "Coda", "queue": "Coda",
"timeleft": "Tempo Rimanente" "timeleft": "Tempo Rimanente"
}, },
@@ -205,13 +205,13 @@
"transmission": { "transmission": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
"leech": "Leech", "leech": "In download",
"seed": "Seed" "seed": "Seed"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
"leech": "Leech", "leech": "In download",
"seed": "Seed" "seed": "Seed"
}, },
"qnap": { "qnap": {
@@ -225,7 +225,7 @@
"deluge": { "deluge": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
"leech": "Leech", "leech": "In download",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": { "develancacheui": {
@@ -235,32 +235,32 @@
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
"leech": "Leech", "leech": "In download",
"seed": "Seed" "seed": "Seed"
}, },
"sonarr": { "sonarr": {
"wanted": "Richiesti", "wanted": "Richiesti",
"queued": "In coda", "queued": "In coda",
"series": "Series", "series": "Serie",
"queue": "Queue", "queue": "Coda",
"unknown": "Unknown" "unknown": "Sconosciuto"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Richiesti",
"missing": "Mancanti", "missing": "Mancanti",
"queued": "Queued", "queued": "In coda",
"movies": "Movies", "movies": "Film",
"queue": "Queue", "queue": "Coda",
"unknown": "Unknown" "unknown": "Sconosciuto"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Richiesti",
"queued": "Queued", "queued": "In coda",
"artists": "Artisti" "artists": "Artisti"
}, },
"readarr": { "readarr": {
"wanted": "Wanted", "wanted": "Richiesti",
"queued": "Queued", "queued": "In coda",
"books": "Libri" "books": "Libri"
}, },
"bazarr": { "bazarr": {
@@ -273,19 +273,19 @@
"available": "Disponibili" "available": "Disponibili"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pending", "pending": "In attesa",
"approved": "Approved", "approved": "Approvati",
"available": "Available" "available": "Disponibili"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "In attesa",
"processing": "In lavorazione", "processing": "In lavorazione",
"approved": "Approved", "approved": "Approvati",
"available": "Available" "available": "Disponibili"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Totale",
"connected": "Connected", "connected": "Connesso",
"new_devices": "Nuovi Dispositivi", "new_devices": "Nuovi Dispositivi",
"down_alerts": "Avvisi di Disservizio" "down_alerts": "Avvisi di Disservizio"
}, },
@@ -296,8 +296,8 @@
"gravity": "Gravity" "gravity": "Gravity"
}, },
"adguard": { "adguard": {
"queries": "Queries", "queries": "Richieste",
"blocked": "Blocked", "blocked": "Bloccati",
"filtered": "Filtrati", "filtered": "Filtrati",
"latency": "Latenza" "latency": "Latenza"
}, },
@@ -307,15 +307,15 @@
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "In esecuzione",
"stopped": "Fermati", "stopped": "Fermati",
"total": "Total" "total": "Totale"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Scaricato",
"nondownload": "Non Scaricato", "nondownload": "Non Scaricato",
"read": "Read", "read": "Letti",
"unread": "Unread", "unread": "Non letto",
"downloadedread": "Scaricato E Letto", "downloadedread": "Scaricato E Letto",
"downloadedunread": "Scaricato E Non Letto", "downloadedunread": "Scaricato E Non Letto",
"nondownloadedread": "Non Scaricato E Letto", "nondownloadedread": "Non Scaricato E Letto",
@@ -336,7 +336,7 @@
"ago": "{{value}} Fa" "ago": "{{value}} Fa"
}, },
"technitium": { "technitium": {
"totalQueries": "Queries", "totalQueries": "Richieste",
"totalNoError": "Successo", "totalNoError": "Successo",
"totalServerFailure": "Fallimenti", "totalServerFailure": "Fallimenti",
"totalNxDomain": "Domini NX", "totalNxDomain": "Domini NX",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Autoritario", "totalAuthoritative": "Autoritario",
"totalRecursive": "Ricorsivo", "totalRecursive": "Ricorsivo",
"totalCached": "In cache", "totalCached": "In cache",
"totalBlocked": "Blocked", "totalBlocked": "Bloccati",
"totalDropped": "Saltati", "totalDropped": "Saltati",
"totalClients": "Client" "totalClients": "Client"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "Coda",
"processed": "Elaborati", "processed": "Elaborati",
"errored": "In errore", "errored": "In errore",
"saved": "Salvati" "saved": "Salvati"
@@ -359,20 +359,14 @@
"services": "Servizi", "services": "Servizi",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "Nessuno Stream Attivo",
"please_wait": "Attendere prego" "please_wait": "Attendere prego"
}, },
"npm": { "npm": {
"enabled": "Abilitato", "enabled": "Abilitato",
"disabled": "Disabilitati", "disabled": "Disabilitati",
"total": "Total" "total": "Totale"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Configurare una o più criptomonete da seguire", "configure": "Configurare una o più criptomonete da seguire",
@@ -383,49 +377,49 @@
}, },
"gotify": { "gotify": {
"apps": "Applicazioni", "apps": "Applicazioni",
"clients": "Clients", "clients": "Client",
"messages": "Messaggi" "messages": "Messaggi"
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "Indicizzatori", "enableIndexers": "Indicizzatori",
"numberOfGrabs": "Grab", "numberOfGrabs": "Grab",
"numberOfQueries": "Queries", "numberOfQueries": "Richieste",
"numberOfFailGrabs": "Grabs Falliti", "numberOfFailGrabs": "Grabs Falliti",
"numberOfFailQueries": "Queries Fallite" "numberOfFailQueries": "Queries Fallite"
}, },
"jackett": { "jackett": {
"configured": "Configurato", "configured": "Configurato",
"errored": "Errored" "errored": "In errore"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Sessioni", "numActiveSessions": "Sessioni",
"numConnections": "Connessioni", "numConnections": "Connessioni",
"dataRelayed": "Ritrasmessi", "dataRelayed": "Ritrasmessi",
"transferRate": "Rate" "transferRate": "Rapporto"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "Utenti",
"status_count": "Messaggi", "status_count": "Messaggi",
"domain_count": "Domini" "domain_count": "Domini"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "Richiesti",
"queued": "Queued", "queued": "In coda",
"series": "Series" "series": "Serie"
}, },
"minecraft": { "minecraft": {
"players": "Giocatori", "players": "Giocatori",
"version": "Versione", "version": "Versione",
"status": "Status", "status": "Stato",
"up": "Online", "up": "Online",
"down": "Offline" "down": "Non in linea"
}, },
"miniflux": { "miniflux": {
"read": "Letti", "read": "Letti",
"unread": "Unread" "unread": "Non letto"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "Utenti",
"loginsLast24H": "Accessi (24h)", "loginsLast24H": "Accessi (24h)",
"failedLoginsLast24H": "Accessi Falliti (24h)" "failedLoginsLast24H": "Accessi Falliti (24h)"
}, },
@@ -437,19 +431,19 @@
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Load", "load": "Carico",
"wait": "Please wait", "wait": "Attendi per favore",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temp.", "_temp": "Temp.",
"warn": "Avviso", "warn": "Avviso",
"uptime": "UP", "uptime": "UP",
"total": "Total", "total": "Totale",
"free": "Free", "free": "Libero",
"used": "Used", "used": "In utilizzo",
"days": "d", "days": "g",
"hours": "h", "hours": "o",
"crit": "Critico", "crit": "Critico",
"read": "Read", "read": "Letti",
"write": "Scrittura", "write": "Scrittura",
"gpu": "GPU", "gpu": "GPU",
"mem": "Mem.", "mem": "Mem.",
@@ -470,57 +464,57 @@
"1-day": "Prevalentemente Soleggiato", "1-day": "Prevalentemente Soleggiato",
"1-night": "Prevalentemente Sereno", "1-night": "Prevalentemente Sereno",
"2-day": "Parzialmente Nuvoloso", "2-day": "Parzialmente Nuvoloso",
"2-night": "Partly Cloudy", "2-night": "Parzialmente Nuvoloso",
"3-day": "Nuvoloso", "3-day": "Nuvoloso",
"3-night": "Cloudy", "3-night": "Nuvoloso",
"45-day": "Nebbioso", "45-day": "Nebbioso",
"45-night": "Foggy", "45-night": "Nebbioso",
"48-day": "Foggy", "48-day": "Nebbioso",
"48-night": "Foggy", "48-night": "Nebbioso",
"51-day": "Pioggerella Leggera", "51-day": "Pioggerella Leggera",
"51-night": "Light Drizzle", "51-night": "Pioggerella Leggera",
"53-day": "Pioggerella", "53-day": "Pioggerella",
"53-night": "Drizzle", "53-night": "Pioggerella",
"55-day": "Pioggerella Pesante", "55-day": "Pioggerella Pesante",
"55-night": "Heavy Drizzle", "55-night": "Pioggerella Pesante",
"56-day": "Leggera Pioggia Gelata", "56-day": "Leggera Pioggia Gelata",
"56-night": "Light Freezing Drizzle", "56-night": "Leggera Pioggia Gelata",
"57-day": "Pioggerella Gelata", "57-day": "Pioggerella Gelata",
"57-night": "Freezing Drizzle", "57-night": "Pioggerella Gelata",
"61-day": "Pioggia Leggera", "61-day": "Pioggia Leggera",
"61-night": "Light Rain", "61-night": "Pioggia Leggera",
"63-day": "Pioggia", "63-day": "Pioggia",
"63-night": "Rain", "63-night": "Pioggia",
"65-day": "Pioggia Intensa", "65-day": "Pioggia Intensa",
"65-night": "Heavy Rain", "65-night": "Pioggia Intensa",
"66-day": "Grandine", "66-day": "Grandine",
"66-night": "Freezing Rain", "66-night": "Grandine",
"67-day": "Freezing Rain", "67-day": "Grandine",
"67-night": "Freezing Rain", "67-night": "Grandine",
"71-day": "Leggera Nevicata", "71-day": "Leggera Nevicata",
"71-night": "Light Snow", "71-night": "Leggera Nevicata",
"73-day": "Neve", "73-day": "Neve",
"73-night": "Snow", "73-night": "Neve",
"75-day": "Nevicata Intensa", "75-day": "Nevicata Intensa",
"75-night": "Heavy Snow", "75-night": "Nevicata Intensa",
"77-day": "Fiocchi di Neve", "77-day": "Fiocchi di Neve",
"77-night": "Snow Grains", "77-night": "Fiocchi di Neve",
"80-day": "Leggeri Rovesci", "80-day": "Leggeri Rovesci",
"80-night": "Light Showers", "80-night": "Leggeri Rovesci",
"81-day": "Rovesci", "81-day": "Rovesci",
"81-night": "Showers", "81-night": "Rovesci",
"82-day": "Intensi Rovesci", "82-day": "Intensi Rovesci",
"82-night": "Heavy Showers", "82-night": "Intensi Rovesci",
"85-day": "Rovesci di Neve", "85-day": "Rovesci di Neve",
"85-night": "Snow Showers", "85-night": "Rovesci di Neve",
"86-day": "Snow Showers", "86-day": "Rovesci di Neve",
"86-night": "Snow Showers", "86-night": "Rovesci di Neve",
"95-day": "Temporale", "95-day": "Temporale",
"95-night": "Thunderstorm", "95-night": "Temporale",
"96-day": "Temporale con grandine", "96-day": "Temporale con grandine",
"96-night": "Thunderstorm With Hail", "96-night": "Temporale con grandine",
"99-day": "Thunderstorm With Hail", "99-day": "Temporale con grandine",
"99-night": "Thunderstorm With Hail" "99-night": "Temporale con grandine"
}, },
"homebridge": { "homebridge": {
"available_update": "Sistema", "available_update": "Sistema",
@@ -530,7 +524,7 @@
"child_bridges": "Bridge Figli", "child_bridges": "Bridge Figli",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Up",
"pending": "Pending", "pending": "In attesa",
"down": "Down" "down": "Down"
}, },
"healthchecks": { "healthchecks": {
@@ -539,7 +533,7 @@
"grace": "Periodo di Tolleranza", "grace": "Periodo di Tolleranza",
"down": "Down", "down": "Down",
"paused": "In Pausa", "paused": "In Pausa",
"status": "Status", "status": "Stato",
"last_ping": "Ultimo Ping", "last_ping": "Ultimo Ping",
"never": "Ancora nessun ping" "never": "Ancora nessun ping"
}, },
@@ -549,27 +543,27 @@
"containers_failed": "Fallito" "containers_failed": "Fallito"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "Approvati",
"rejectedPushes": "Rifiutato", "rejectedPushes": "Rifiutato",
"filters": "Filtri", "filters": "Filtri",
"indexers": "Indexers" "indexers": "Indicizzatori"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "Coda",
"videos": "Video", "videos": "Video",
"channels": "Canali", "channels": "Canali",
"playlists": "Playlist" "playlists": "Playlist"
}, },
"truenas": { "truenas": {
"load": "Carico di Sistema", "load": "Carico di Sistema",
"uptime": "Uptime", "uptime": "Tempo di attività",
"alerts": "Alerts" "alerts": "Allarmi"
}, },
"pyload": { "pyload": {
"speed": "Velocità", "speed": "Velocità",
"active": "Active", "active": "Attivo",
"queue": "Queue", "queue": "Coda",
"total": "Total" "total": "Totale"
}, },
"gluetun": { "gluetun": {
"public_ip": "IP pubblico", "public_ip": "IP pubblico",
@@ -578,25 +572,25 @@
"port_forwarded": "Port Forwarded" "port_forwarded": "Port Forwarded"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Channels", "channels": "Canali",
"hd": "HD", "hd": "HD",
"tunerCount": "Regolatori", "tunerCount": "Regolatori",
"channelNumber": "Canale", "channelNumber": "Canale",
"channelNetwork": "Rete", "channelNetwork": "Rete",
"signalStrength": "Intensità", "signalStrength": "Intensità",
"signalQuality": "Qualità", "signalQuality": "Qualità",
"symbolQuality": "Quality", "symbolQuality": "Qualità",
"networkRate": "Bitrate", "networkRate": "Bitrate",
"clientIP": "Client" "clientIP": "Client"
}, },
"scrutiny": { "scrutiny": {
"passed": "Passati", "passed": "Passati",
"failed": "Failed", "failed": "Fallito",
"unknown": "Unknown" "unknown": "Sconosciuto"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "In arrivo", "inbox": "In arrivo",
"total": "Total" "total": "Totale"
}, },
"peanut": { "peanut": {
"battery_charge": "Carica Batteria", "battery_charge": "Carica Batteria",
@@ -607,18 +601,18 @@
"low_battery": "Batteria Quasi Scarica" "low_battery": "Batteria Quasi Scarica"
}, },
"nextdns": { "nextdns": {
"wait": "Please Wait", "wait": "Attendere prego",
"no_devices": "Nessun dato del dispositivo ricevuto" "no_devices": "Nessun dato del dispositivo ricevuto"
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "Carico della CPU", "cpuLoad": "Carico della CPU",
"memoryUsed": "Memoria Utilizzata", "memoryUsed": "Memoria Utilizzata",
"uptime": "Uptime", "uptime": "Tempo di attività",
"numberOfLeases": "Rilasci" "numberOfLeases": "Rilasci"
}, },
"xteve": { "xteve": {
"streams_all": "Tutti gli stream", "streams_all": "Tutti gli stream",
"streams_active": "Active Streams", "streams_active": "Trasmissioni attive",
"streams_xepg": "Canali XEPG" "streams_xepg": "Canali XEPG"
}, },
"opendtu": { "opendtu": {
@@ -628,7 +622,7 @@
"limit": "Limite" "limit": "Limite"
}, },
"opnsense": { "opnsense": {
"cpu": "CPU Load", "cpu": "Carico della CPU",
"memory": "Memoria in uso", "memory": "Memoria in uso",
"wanUpload": "WAN Upload", "wanUpload": "WAN Upload",
"wanDownload": "WAN Download" "wanDownload": "WAN Download"
@@ -640,14 +634,14 @@
"layers": "Livelli" "layers": "Livelli"
}, },
"octoprint": { "octoprint": {
"printer_state": "Status", "printer_state": "Stato",
"temp_tool": "Temp. utensile", "temp_tool": "Temp. utensile",
"temp_bed": "Temp. letto", "temp_bed": "Temp. letto",
"job_completion": "Completamento" "job_completion": "Completamento"
}, },
"cloudflared": { "cloudflared": {
"origin_ip": "IP sorgente", "origin_ip": "IP sorgente",
"status": "Status" "status": "Stato"
}, },
"pfsense": { "pfsense": {
"load": "Carico Medio", "load": "Carico Medio",
@@ -655,7 +649,7 @@
"wanStatus": "Stato WAN", "wanStatus": "Stato WAN",
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"temp": "Temp", "temp": "Temp.",
"disk": "Uso Disco", "disk": "Uso Disco",
"wanIP": "IP WAN" "wanIP": "IP WAN"
}, },
@@ -666,49 +660,49 @@
"memory_usage": "Memoria" "memory_usage": "Memoria"
}, },
"immich": { "immich": {
"users": "Users", "users": "Utenti",
"photos": "Foto", "photos": "Foto",
"videos": "Videos", "videos": "Video",
"storage": "Archiviazione" "storage": "Archiviazione"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Siti On", "up": "Siti On",
"down": "Siti Down", "down": "Siti Down",
"uptime": "Uptime", "uptime": "Tempo di attività",
"incident": "Incidente", "incident": "Incidente",
"m": "m" "m": "m"
}, },
"atsumeru": { "atsumeru": {
"series": "Series", "series": "Serie",
"archives": "Archivi", "archives": "Archivi",
"chapters": "Capitoli", "chapters": "Capitoli",
"categories": "Categorie" "categories": "Categorie"
}, },
"komga": { "komga": {
"libraries": "Librerie", "libraries": "Librerie",
"series": "Series", "series": "Serie",
"books": "Books" "books": "Libri"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Giorni",
"uptime": "Uptime", "uptime": "Tempo di attività",
"volumeAvailable": "Available" "volumeAvailable": "Disponibili"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Serie",
"issues": "Problemi", "issues": "Problemi",
"wanted": "Wanted" "wanted": "Richiesti"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Album",
"photos": "Photos", "photos": "Foto",
"videos": "Videos", "videos": "Video",
"people": "Persone" "people": "Persone"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "Coda",
"processing": "Processing", "processing": "In lavorazione",
"processed": "Processed", "processed": "Elaborati",
"time": "Tempo" "time": "Tempo"
}, },
"firefly": { "firefly": {
@@ -730,11 +724,11 @@
"numshares": "Oggetti Condivisi" "numshares": "Oggetti Condivisi"
}, },
"kopia": { "kopia": {
"status": "Status", "status": "Stato",
"size": "Dimensione", "size": "Dimensione",
"lastrun": "Ultima esecuzione", "lastrun": "Ultima esecuzione",
"nextrun": "Prossima esecuzione", "nextrun": "Prossima esecuzione",
"failed": "Failed" "failed": "Fallito"
}, },
"unmanic": { "unmanic": {
"active_workers": "Lavoratori Attivi", "active_workers": "Lavoratori Attivi",
@@ -751,20 +745,20 @@
"targets_total": "Targets Totali" "targets_total": "Targets Totali"
}, },
"gatus": { "gatus": {
"up": "Sites Up", "up": "Siti On",
"down": "Sites Down", "down": "Siti Down",
"uptime": "Uptime" "uptime": "Tempo di attività"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Today", "gross_percent_today": "Oggi",
"gross_percent_1y": "Un anno", "gross_percent_1y": "Un anno",
"gross_percent_max": "Sempre" "gross_percent_max": "Sempre"
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcast", "podcasts": "Podcast",
"books": "Books", "books": "Libri",
"podcastsDuration": "Durata", "podcastsDuration": "Durata",
"booksDuration": "Duration" "booksDuration": "Durata"
}, },
"homeassistant": { "homeassistant": {
"people_home": "Persone a Casa", "people_home": "Persone a Casa",
@@ -773,45 +767,45 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Monitoraggio", "monitoring": "Monitoraggio",
"updates": "Updates" "updates": "Aggiornamenti"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "Libri",
"authors": "Autori", "authors": "Autori",
"categories": "Categories", "categories": "Categorie",
"series": "Series" "series": "Serie"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "Coda",
"downloadBytesRemaining": "Remaining", "downloadBytesRemaining": "Rimanente",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Dimensione",
"downloadSpeed": "Speed" "downloadSpeed": "Velocità"
}, },
"kavita": { "kavita": {
"seriesCount": "Series", "seriesCount": "Serie",
"totalFiles": "Files" "totalFiles": "File"
}, },
"azuredevops": { "azuredevops": {
"result": "Risultato", "result": "Risultato",
"status": "Status", "status": "Stato",
"buildId": "ID Build", "buildId": "ID Build",
"succeeded": "Riuscito", "succeeded": "Riuscito",
"notStarted": "Non Avviato", "notStarted": "Non Avviato",
"failed": "Failed", "failed": "Fallito",
"canceled": "Cancellato", "canceled": "Cancellato",
"inProgress": "In corso", "inProgress": "In corso",
"totalPrs": "PR Totali", "totalPrs": "PR Totali",
"myPrs": "Miei PR", "myPrs": "Miei PR",
"approved": "Approved" "approved": "Approvati"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "Stato",
"online": "Online", "online": "Online",
"offline": "Offline", "offline": "Non in linea",
"name": "Nome", "name": "Nome",
"map": "Mappa", "map": "Mappa",
"currentPlayers": "Giocatori attuali", "currentPlayers": "Giocatori attuali",
"players": "Players", "players": "Giocatori",
"maxPlayers": "Giocatori max", "maxPlayers": "Giocatori max",
"bots": "Bot", "bots": "Bot",
"ping": "Ping" "ping": "Ping"
@@ -824,39 +818,39 @@
}, },
"mealie": { "mealie": {
"recipes": "Ricette", "recipes": "Ricette",
"users": "Users", "users": "Utenti",
"categories": "Categories", "categories": "Categorie",
"tags": "Tag" "tags": "Tag"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Download in corso", "downloading": "Download in corso",
"total": "Total", "total": "Totale",
"running": "Running", "running": "In esecuzione",
"stopped": "Stopped", "stopped": "Fermati",
"passed": "Passed", "passed": "Passati",
"failed": "Failed" "failed": "Fallito"
}, },
"openwrt": { "openwrt": {
"uptime": "Uptime", "uptime": "Tempo di attività",
"cpuLoad": "Media Carico Cpu (5m)", "cpuLoad": "Media Carico Cpu (5m)",
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"bytesTx": "Trasmessi", "bytesTx": "Trasmessi",
"bytesRx": "Received" "bytesRx": "Ricevuti"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "Stato",
"uptime": "Uptime", "uptime": "Tempo di attività",
"lastDown": "Ultimo periodo di inattività", "lastDown": "Ultimo periodo di inattività",
"downDuration": "Durata inattività", "downDuration": "Durata inattività",
"sitesUp": "Sites Up", "sitesUp": "Siti On",
"sitesDown": "Sites Down", "sitesDown": "Siti Down",
"paused": "Paused", "paused": "In Pausa",
"notyetchecked": "Non ancora controllati", "notyetchecked": "Non ancora controllati",
"up": "Up", "up": "Up",
"seemsdown": "Sembrano non attivi", "seemsdown": "Sembrano non attivi",
"down": "Down", "down": "Down",
"unknown": "Unknown" "unknown": "Sconosciuto"
}, },
"calendar": { "calendar": {
"inCinemas": "Al cinema", "inCinemas": "Al cinema",
@@ -875,10 +869,10 @@
"totalfilesize": "Dimensioni totali" "totalfilesize": "Dimensioni totali"
}, },
"mailcow": { "mailcow": {
"domains": "Domains", "domains": "Domini",
"mailboxes": "Caselle di posta", "mailboxes": "Caselle di posta",
"mails": "Mail", "mails": "Mail",
"storage": "Storage" "storage": "Archiviazione"
}, },
"netdata": { "netdata": {
"warnings": "Avvisi", "warnings": "Avvisi",
@@ -887,12 +881,12 @@
"plantit": { "plantit": {
"events": "Eventi", "events": "Eventi",
"plants": "Piante", "plants": "Piante",
"photos": "Photos", "photos": "Foto",
"species": "Specie" "species": "Specie"
}, },
"gitea": { "gitea": {
"notifications": "Notifiche", "notifications": "Notifiche",
"issues": "Issues", "issues": "Problemi",
"pulls": "Richieste di Pull", "pulls": "Richieste di Pull",
"repositories": "Repository" "repositories": "Repository"
}, },
@@ -908,13 +902,13 @@
"galleries": "Gallerie", "galleries": "Gallerie",
"performers": "Esecutori", "performers": "Esecutori",
"studios": "Studi", "studios": "Studi",
"movies": "Movies", "movies": "Film",
"tags": "Tags", "tags": "Tag",
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "Utenti",
"recipes": "Recipes", "recipes": "Ricette",
"keywords": "Parole chiave" "keywords": "Parole chiave"
}, },
"homebox": { "homebox": {
@@ -922,18 +916,18 @@
"totalWithWarranty": "Con Garanzia", "totalWithWarranty": "Con Garanzia",
"locations": "Luoghi", "locations": "Luoghi",
"labels": "Etichette", "labels": "Etichette",
"users": "Users", "users": "Utenti",
"totalValue": "Valore totale" "totalValue": "Valore totale"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alerts", "alerts": "Allarmi",
"bans": "Bannati" "bans": "Bannati"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Connesso",
"enabled": "Enabled", "enabled": "Abilitato",
"disabled": "Disabled", "disabled": "Disabilitati",
"total": "Total" "total": "Totale"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxato", "proxied": "Proxato",
@@ -955,17 +949,17 @@
}, },
"frigate": { "frigate": {
"cameras": "Telecamere", "cameras": "Telecamere",
"uptime": "Uptime", "uptime": "Tempo di attività",
"version": "Version" "version": "Versione"
}, },
"linkwarden": { "linkwarden": {
"links": "Collegamenti", "links": "Collegamenti",
"collections": "Raccolte", "collections": "Raccolte",
"tags": "Tags" "tags": "Tag"
}, },
"zabbix": { "zabbix": {
"unclassified": "Non classificato", "unclassified": "Non classificato",
"information": "Information", "information": "Informazioni",
"warning": "Avviso", "warning": "Avviso",
"average": "Media", "average": "Media",
"high": "Alto", "high": "Alto",
@@ -986,22 +980,22 @@
"tasksInProgress": "Task In Corso" "tasksInProgress": "Task In Corso"
}, },
"headscale": { "headscale": {
"name": "Name", "name": "Nome",
"address": "Address", "address": "Indirizzo",
"last_seen": "Last Seen", "last_seen": "Ultima visualizzazione",
"status": "Status", "status": "Stato",
"online": "Online", "online": "Online",
"offline": "Offline" "offline": "Non in linea"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Nome",
"systems": "Sistemi", "systems": "Sistemi",
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "In Pausa",
"pending": "Pending", "pending": "In attesa",
"status": "Status", "status": "Stato",
"updated": "Updated", "updated": "Aggiornato",
"cpu": "CPU", "cpu": "CPU",
"memory": "MEM", "memory": "MEM",
"disk": "Disco", "disk": "Disco",
@@ -1011,26 +1005,26 @@
"apps": "Applicazioni", "apps": "Applicazioni",
"synced": "Sincronizzato", "synced": "Sincronizzato",
"outOfSync": "Non Sincronizzato", "outOfSync": "Non Sincronizzato",
"healthy": "Healthy", "healthy": "Sano",
"degraded": "Degradato", "degraded": "Degradato",
"progressing": "Progressione", "progressing": "Progressione",
"missing": "Missing", "missing": "Mancanti",
"suspended": "Sospeso" "suspended": "Sospeso"
}, },
"spoolman": { "spoolman": {
"loading": "Loading" "loading": "Caricamento"
}, },
"gitlab": { "gitlab": {
"groups": "Gruppi", "groups": "Gruppi",
"issues": "Issues", "issues": "Problemi",
"merges": "Richieste di merge", "merges": "Richieste di merge",
"projects": "Progetti" "projects": "Progetti"
}, },
"apcups": { "apcups": {
"status": "Status", "status": "Stato",
"load": "Load", "load": "Carico",
"bcharge": "Battery Charge", "bcharge": "Carica Batteria",
"timeleft": "Time Left" "timeleft": "Tempo Rimanente"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Segnalibri", "bookmarks": "Segnalibri",
@@ -1038,50 +1032,27 @@
"archived": "Archiviato", "archived": "Archiviato",
"highlights": "Highlights", "highlights": "Highlights",
"lists": "Liste", "lists": "Liste",
"tags": "Tags" "tags": "Tag"
}, },
"slskd": { "slskd": {
"slskStatus": "Network", "slskStatus": "Rete",
"connected": "Connected", "connected": "Connesso",
"disconnected": "Disconnected", "disconnected": "Disconnesso",
"updateStatus": "Aggiornamento", "updateStatus": "Aggiornamento",
"update_yes": "Available", "update_yes": "Disponibili",
"update_no": "Up to Date", "update_no": "Aggiornato",
"downloads": "Download", "downloads": "Download",
"uploads": "Caricamenti", "uploads": "Caricamenti",
"sharedFiles": "Files" "sharedFiles": "File"
}, },
"jellystat": { "jellystat": {
"songs": "Songs", "songs": "Canzoni",
"movies": "Movies", "movies": "Film",
"episodes": "Episodes", "episodes": "Episodi",
"other": "Altro" "other": "Altro"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Problemi di servizio", "serviceErrors": "Problemi di servizio",
"hostErrors": "Problemi di host" "hostErrors": "Problemi di host"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

File diff suppressed because it is too large Load Diff

View File

@@ -61,9 +61,9 @@
"wlan_devices": "WLAN 장치", "wlan_devices": "WLAN 장치",
"lan_users": "LAN 사용자", "lan_users": "LAN 사용자",
"wlan_users": "WLAN 사용자", "wlan_users": "WLAN 사용자",
"up": "UP", "up": "가동",
"down": "DOWN", "down": "DOWN",
"wait": "Please wait", "wait": "잠시만 기다리세요",
"empty_data": "서브시스템 상태 알 수 없음" "empty_data": "서브시스템 상태 알 수 없음"
}, },
"docker": { "docker": {
@@ -83,7 +83,7 @@
"partial": "부분적" "partial": "부분적"
}, },
"ping": { "ping": {
"error": "Error", "error": "오류",
"ping": "Ping", "ping": "Ping",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
@@ -91,11 +91,11 @@
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "HTTP 상태", "http_status": "HTTP 상태",
"error": "Error", "error": "오류",
"response": "응답", "response": "응답",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
"not_available": "Not Available" "not_available": "사용할 수 없음"
}, },
"emby": { "emby": {
"playing": "재생 중", "playing": "재생 중",
@@ -108,11 +108,11 @@
"songs": "음악" "songs": "음악"
}, },
"esphome": { "esphome": {
"offline": "Offline", "offline": "중지",
"offline_alt": "Offline", "offline_alt": "중지",
"online": "온라인", "online": "온라인",
"total": "Total", "total": "총합",
"unknown": "Unknown" "unknown": "알 수 없음"
}, },
"evcc": { "evcc": {
"pv_power": "Production", "pv_power": "Production",
@@ -133,7 +133,7 @@
"unread": "미열람" "unread": "미열람"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Status", "connectionStatus": "상태",
"connectionStatusUnconfigured": "구성되지 않음", "connectionStatusUnconfigured": "구성되지 않음",
"connectionStatusConnecting": "연결중", "connectionStatusConnecting": "연결중",
"connectionStatusAuthenticating": "인증", "connectionStatusAuthenticating": "인증",
@@ -141,7 +141,7 @@
"connectionStatusDisconnecting": "연결을 끊는 중...", "connectionStatusDisconnecting": "연결을 끊는 중...",
"connectionStatusDisconnected": "연결 끊김", "connectionStatusDisconnected": "연결 끊김",
"connectionStatusConnected": "연결됨", "connectionStatusConnected": "연결됨",
"uptime": "Uptime", "uptime": "가동 시간",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
"down": "Down", "down": "Down",
@@ -168,10 +168,10 @@
"passes": "Passes" "passes": "Passes"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "재생 중",
"transcoding": "Transcoding", "transcoding": "트랜스코딩",
"bitrate": "Bitrate", "bitrate": "비트레이트",
"no_active": "No Active Streams", "no_active": "활성 스트림 없음",
"plex_connection_error": "Check Plex Connection" "plex_connection_error": "Check Plex Connection"
}, },
"omada": { "omada": {
@@ -189,30 +189,30 @@
"plex": { "plex": {
"streams": "활성 스트림", "streams": "활성 스트림",
"albums": "앨범", "albums": "앨범",
"movies": "Movies", "movies": "영화",
"tv": "TV 쇼" "tv": "TV 쇼"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "비율",
"queue": "대기열", "queue": "대기열",
"timeleft": "남은 시간" "timeleft": "남은 시간"
}, },
"rutorrent": { "rutorrent": {
"active": "활성", "active": "활성",
"upload": "Upload", "upload": "업로드",
"download": "Download" "download": "다운로드"
}, },
"transmission": { "transmission": {
"download": "Download", "download": "다운로드",
"upload": "Upload", "upload": "업로드",
"leech": "Leech", "leech": "리치",
"seed": "Seed" "seed": "시드"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Download", "download": "다운로드",
"upload": "Upload", "upload": "업로드",
"leech": "Leech", "leech": "리치",
"seed": "Seed" "seed": "시드"
}, },
"qnap": { "qnap": {
"cpuUsage": "CPU 사용", "cpuUsage": "CPU 사용",
@@ -223,44 +223,44 @@
"invalid": "잘못됨" "invalid": "잘못됨"
}, },
"deluge": { "deluge": {
"download": "Download", "download": "다운로드",
"upload": "Upload", "upload": "업로드",
"leech": "Leech", "leech": "리치",
"seed": "Seed" "seed": "시드"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "Cache Hit Bytes", "cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Download", "download": "다운로드",
"upload": "Upload", "upload": "업로드",
"leech": "Leech", "leech": "리치",
"seed": "Seed" "seed": "시드"
}, },
"sonarr": { "sonarr": {
"wanted": "요청", "wanted": "요청",
"queued": "대기 중", "queued": "대기 중",
"series": "Series", "series": "시리즈",
"queue": "Queue", "queue": "대기열",
"unknown": "Unknown" "unknown": "알 수 없음"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "요청",
"missing": "빠짐", "missing": "빠짐",
"queued": "Queued", "queued": "대기 중",
"movies": "Movies", "movies": "영화",
"queue": "Queue", "queue": "대기열",
"unknown": "Unknown" "unknown": "알 수 없음"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "요청",
"queued": "Queued", "queued": "대기 중",
"artists": "Artists" "artists": "Artists"
}, },
"readarr": { "readarr": {
"wanted": "Wanted", "wanted": "요청",
"queued": "Queued", "queued": "대기 중",
"books": "책" "books": "책"
}, },
"bazarr": { "bazarr": {
@@ -273,19 +273,19 @@
"available": "이용 가능" "available": "이용 가능"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pending", "pending": "대기 중",
"approved": "Approved", "approved": "승인됨",
"available": "Available" "available": "이용 가능"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "대기 중",
"processing": "처리 중", "processing": "처리 중",
"approved": "Approved", "approved": "승인됨",
"available": "Available" "available": "이용 가능"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "총합",
"connected": "Connected", "connected": "연결됨",
"new_devices": "New Devices", "new_devices": "New Devices",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
}, },
@@ -296,26 +296,26 @@
"gravity": "Gravity" "gravity": "Gravity"
}, },
"adguard": { "adguard": {
"queries": "Queries", "queries": "쿼리",
"blocked": "Blocked", "blocked": "차단됨",
"filtered": "필터링됨", "filtered": "필터링됨",
"latency": "지연" "latency": "지연"
}, },
"speedtest": { "speedtest": {
"upload": "Upload", "upload": "업로드",
"download": "Download", "download": "다운로드",
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "가동 중",
"stopped": "중지", "stopped": "중지",
"total": "Total" "total": "총합"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "다운로드됨",
"nondownload": "Non-Downloaded", "nondownload": "Non-Downloaded",
"read": "Read", "read": "읽음",
"unread": "Unread", "unread": "미열람",
"downloadedread": "Downloaded & Read", "downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread", "downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read", "nondownloadedread": "Non-Downloaded & Read",
@@ -336,7 +336,7 @@
"ago": "{{value}} 전" "ago": "{{value}} 전"
}, },
"technitium": { "technitium": {
"totalQueries": "Queries", "totalQueries": "쿼리",
"totalNoError": "Success", "totalNoError": "Success",
"totalServerFailure": "Failures", "totalServerFailure": "Failures",
"totalNxDomain": "NX Domains", "totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative", "totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive", "totalRecursive": "Recursive",
"totalCached": "Cached", "totalCached": "Cached",
"totalBlocked": "Blocked", "totalBlocked": "차단됨",
"totalDropped": "Dropped", "totalDropped": "Dropped",
"totalClients": "클라이언트" "totalClients": "클라이언트"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "대기열",
"processed": "처리됨", "processed": "처리됨",
"errored": "오류", "errored": "오류",
"saved": "저장됨" "saved": "저장됨"
@@ -359,20 +359,14 @@
"services": "서비스", "services": "서비스",
"middleware": "미들웨어" "middleware": "미들웨어"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "활성 스트림 없음",
"please_wait": "잠시만 기다리세요" "please_wait": "잠시만 기다리세요"
}, },
"npm": { "npm": {
"enabled": "활성", "enabled": "활성",
"disabled": "비활성", "disabled": "비활성",
"total": "Total" "total": "총합"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "한 개 이상의 가상화폐를 설정하여 추적", "configure": "한 개 이상의 가상화폐를 설정하여 추적",
@@ -383,49 +377,49 @@
}, },
"gotify": { "gotify": {
"apps": "어플리케이션", "apps": "어플리케이션",
"clients": "Clients", "clients": "클라이언트",
"messages": "메시지" "messages": "메시지"
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "인덱서", "enableIndexers": "인덱서",
"numberOfGrabs": "Grabs", "numberOfGrabs": "Grabs",
"numberOfQueries": "Queries", "numberOfQueries": "쿼리",
"numberOfFailGrabs": "Fail Grabs", "numberOfFailGrabs": "Fail Grabs",
"numberOfFailQueries": "Fail Queries" "numberOfFailQueries": "Fail Queries"
}, },
"jackett": { "jackett": {
"configured": "구성됨", "configured": "구성됨",
"errored": "Errored" "errored": "오류"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Sessions", "numActiveSessions": "Sessions",
"numConnections": "Connections", "numConnections": "Connections",
"dataRelayed": "Relayed", "dataRelayed": "Relayed",
"transferRate": "Rate" "transferRate": "비율"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "사용자",
"status_count": "게시글", "status_count": "게시글",
"domain_count": "Domains" "domain_count": "Domains"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "요청",
"queued": "Queued", "queued": "대기 중",
"series": "Series" "series": "시리즈"
}, },
"minecraft": { "minecraft": {
"players": "Players", "players": "Players",
"version": "버전", "version": "버전",
"status": "Status", "status": "상태",
"up": "Online", "up": "온라인",
"down": "Offline" "down": "중지"
}, },
"miniflux": { "miniflux": {
"read": "읽음", "read": "읽음",
"unread": "Unread" "unread": "미열람"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "사용자",
"loginsLast24H": "로그인 (24h)", "loginsLast24H": "로그인 (24h)",
"failedLoginsLast24H": "실패한 로그인 (24h)" "failedLoginsLast24H": "실패한 로그인 (24h)"
}, },
@@ -437,19 +431,19 @@
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Load", "load": "부하",
"wait": "Please wait", "wait": "잠시만 기다리세요",
"temp": "TEMP", "temp": "온도",
"_temp": "온도", "_temp": "온도",
"warn": "경고", "warn": "경고",
"uptime": "UP", "uptime": "가동",
"total": "Total", "total": "총합",
"free": "Free", "free": "남음",
"used": "Used", "used": "사용",
"days": "d", "days": "",
"hours": "h", "hours": "",
"crit": "Crit", "crit": "Crit",
"read": "Read", "read": "읽음",
"write": "쓰기", "write": "쓰기",
"gpu": "GPU", "gpu": "GPU",
"mem": "Men", "mem": "Men",
@@ -472,7 +466,7 @@
"2-day": "Partly Cloudy", "2-day": "Partly Cloudy",
"2-night": "Partly Cloudy", "2-night": "Partly Cloudy",
"3-day": "구름 낀", "3-day": "구름 낀",
"3-night": "Cloudy", "3-night": "구름 낀",
"45-day": "Foggy", "45-day": "Foggy",
"45-night": "Foggy", "45-night": "Foggy",
"48-day": "Foggy", "48-day": "Foggy",
@@ -498,13 +492,13 @@
"67-day": "Freezing Rain", "67-day": "Freezing Rain",
"67-night": "Freezing Rain", "67-night": "Freezing Rain",
"71-day": "약한 눈", "71-day": "약한 눈",
"71-night": "Light Snow", "71-night": "약한 눈",
"73-day": "Snow", "73-day": "Snow",
"73-night": "Snow", "73-night": "Snow",
"75-day": "폭설", "75-day": "폭설",
"75-night": "Heavy Snow", "75-night": "폭설",
"77-day": "싸락눈", "77-day": "싸락눈",
"77-night": "Snow Grains", "77-night": "싸락눈",
"80-day": "Light Showers", "80-day": "Light Showers",
"80-night": "Light Showers", "80-night": "Light Showers",
"81-day": "Showers", "81-day": "Showers",
@@ -530,7 +524,7 @@
"child_bridges": "Child Bridges", "child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Up",
"pending": "Pending", "pending": "대기 중",
"down": "Down" "down": "Down"
}, },
"healthchecks": { "healthchecks": {
@@ -539,7 +533,7 @@
"grace": "In Grace Period", "grace": "In Grace Period",
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"status": "Status", "status": "상태",
"last_ping": "Last Ping", "last_ping": "Last Ping",
"never": "No pings yet" "never": "No pings yet"
}, },
@@ -549,27 +543,27 @@
"containers_failed": "Failed" "containers_failed": "Failed"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "승인됨",
"rejectedPushes": "Rejected", "rejectedPushes": "Rejected",
"filters": "Filters", "filters": "Filters",
"indexers": "Indexers" "indexers": "인덱서"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "대기열",
"videos": "동영상", "videos": "동영상",
"channels": "채널", "channels": "채널",
"playlists": "재생 목록" "playlists": "재생 목록"
}, },
"truenas": { "truenas": {
"load": "System Load", "load": "System Load",
"uptime": "Uptime", "uptime": "가동 시간",
"alerts": "Alerts" "alerts": "경고"
}, },
"pyload": { "pyload": {
"speed": "Speed", "speed": "Speed",
"active": "Active", "active": "활성",
"queue": "Queue", "queue": "대기열",
"total": "Total" "total": "총합"
}, },
"gluetun": { "gluetun": {
"public_ip": "Public IP", "public_ip": "Public IP",
@@ -578,7 +572,7 @@
"port_forwarded": "Port Forwarded" "port_forwarded": "Port Forwarded"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Channels", "channels": "채널",
"hd": "HD", "hd": "HD",
"tunerCount": "Tuners", "tunerCount": "Tuners",
"channelNumber": "채널", "channelNumber": "채널",
@@ -586,39 +580,39 @@
"signalStrength": "Strength", "signalStrength": "Strength",
"signalQuality": "Quality", "signalQuality": "Quality",
"symbolQuality": "Quality", "symbolQuality": "Quality",
"networkRate": "Bitrate", "networkRate": "비트레이트",
"clientIP": "클라이언트" "clientIP": "클라이언트"
}, },
"scrutiny": { "scrutiny": {
"passed": "Passed", "passed": "Passed",
"failed": "Failed", "failed": "Failed",
"unknown": "Unknown" "unknown": "알 수 없음"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "받은메일함", "inbox": "받은메일함",
"total": "Total" "total": "총합"
}, },
"peanut": { "peanut": {
"battery_charge": "배터리 충전 중", "battery_charge": "배터리 충전 중",
"ups_load": "UPS Load", "ups_load": "UPS Load",
"ups_status": "UPS Status", "ups_status": "UPS Status",
"online": "Online", "online": "온라인",
"on_battery": "배터리 사용", "on_battery": "배터리 사용",
"low_battery": "배터리 부족" "low_battery": "배터리 부족"
}, },
"nextdns": { "nextdns": {
"wait": "Please Wait", "wait": "잠시만 기다리세요",
"no_devices": "No Device Data Received" "no_devices": "No Device Data Received"
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "CPU Load", "cpuLoad": "CPU Load",
"memoryUsed": "메모리 사용량", "memoryUsed": "메모리 사용량",
"uptime": "Uptime", "uptime": "가동 시간",
"numberOfLeases": "Leases" "numberOfLeases": "Leases"
}, },
"xteve": { "xteve": {
"streams_all": "모든 스트림", "streams_all": "모든 스트림",
"streams_active": "Active Streams", "streams_active": "활성 스트림",
"streams_xepg": "XEPG Channels" "streams_xepg": "XEPG Channels"
}, },
"opendtu": { "opendtu": {
@@ -640,14 +634,14 @@
"layers": "Layers" "layers": "Layers"
}, },
"octoprint": { "octoprint": {
"printer_state": "Status", "printer_state": "상태",
"temp_tool": "Tool temp", "temp_tool": "Tool temp",
"temp_bed": "Bed temp", "temp_bed": "Bed temp",
"job_completion": "Completion" "job_completion": "Completion"
}, },
"cloudflared": { "cloudflared": {
"origin_ip": "Origin IP", "origin_ip": "Origin IP",
"status": "Status" "status": "상태"
}, },
"pfsense": { "pfsense": {
"load": "Load Avg", "load": "Load Avg",
@@ -655,7 +649,7 @@
"wanStatus": "WAN Status", "wanStatus": "WAN Status",
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"temp": "Temp", "temp": "온도",
"disk": "Disk Usage", "disk": "Disk Usage",
"wanIP": "WAN IP" "wanIP": "WAN IP"
}, },
@@ -666,49 +660,49 @@
"memory_usage": "Memory" "memory_usage": "Memory"
}, },
"immich": { "immich": {
"users": "Users", "users": "사용자",
"photos": "사진", "photos": "사진",
"videos": "Videos", "videos": "동영상",
"storage": "저장됨" "storage": "저장됨"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Sites Up", "up": "Sites Up",
"down": "Sites Down", "down": "Sites Down",
"uptime": "Uptime", "uptime": "가동 시간",
"incident": "Incident", "incident": "Incident",
"m": "m" "m": ""
}, },
"atsumeru": { "atsumeru": {
"series": "Series", "series": "시리즈",
"archives": "Archives", "archives": "Archives",
"chapters": "Chapters", "chapters": "Chapters",
"categories": "분류" "categories": "분류"
}, },
"komga": { "komga": {
"libraries": "서재", "libraries": "서재",
"series": "Series", "series": "시리즈",
"books": "Books" "books": ""
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "",
"uptime": "Uptime", "uptime": "가동 시간",
"volumeAvailable": "Available" "volumeAvailable": "이용 가능"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "시리즈",
"issues": "Issues", "issues": "Issues",
"wanted": "Wanted" "wanted": "요청"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "앨범",
"photos": "Photos", "photos": "사진",
"videos": "Videos", "videos": "동영상",
"people": "People" "people": "People"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "대기열",
"processing": "Processing", "processing": "처리 중",
"processed": "Processed", "processed": "처리됨",
"time": "Time" "time": "Time"
}, },
"firefly": { "firefly": {
@@ -730,7 +724,7 @@
"numshares": "공유된 항목" "numshares": "공유된 항목"
}, },
"kopia": { "kopia": {
"status": "Status", "status": "상태",
"size": "Size", "size": "Size",
"lastrun": "Last Run", "lastrun": "Last Run",
"nextrun": "Next Run", "nextrun": "Next Run",
@@ -753,18 +747,18 @@
"gatus": { "gatus": {
"up": "Sites Up", "up": "Sites Up",
"down": "Sites Down", "down": "Sites Down",
"uptime": "Uptime" "uptime": "가동 시간"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Today", "gross_percent_today": "오늘",
"gross_percent_1y": "One year", "gross_percent_1y": "One year",
"gross_percent_max": "All time" "gross_percent_max": "All time"
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasts", "podcasts": "Podcasts",
"books": "Books", "books": "",
"podcastsDuration": "지속시간", "podcastsDuration": "지속시간",
"booksDuration": "Duration" "booksDuration": "지속시간"
}, },
"homeassistant": { "homeassistant": {
"people_home": "People Home", "people_home": "People Home",
@@ -773,27 +767,27 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Monitoring", "monitoring": "Monitoring",
"updates": "Updates" "updates": "업데이트"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "",
"authors": "저자", "authors": "저자",
"categories": "Categories", "categories": "분류",
"series": "Series" "series": "시리즈"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "대기열",
"downloadBytesRemaining": "Remaining", "downloadBytesRemaining": "남음",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Size",
"downloadSpeed": "Speed" "downloadSpeed": "Speed"
}, },
"kavita": { "kavita": {
"seriesCount": "Series", "seriesCount": "시리즈",
"totalFiles": "Files" "totalFiles": "파일"
}, },
"azuredevops": { "azuredevops": {
"result": "Result", "result": "Result",
"status": "Status", "status": "상태",
"buildId": "Build ID", "buildId": "Build ID",
"succeeded": "Succeeded", "succeeded": "Succeeded",
"notStarted": "Not Started", "notStarted": "Not Started",
@@ -802,12 +796,12 @@
"inProgress": "In Progress", "inProgress": "In Progress",
"totalPrs": "Total PRs", "totalPrs": "Total PRs",
"myPrs": "My PRs", "myPrs": "My PRs",
"approved": "Approved" "approved": "승인됨"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "상태",
"online": "Online", "online": "온라인",
"offline": "Offline", "offline": "중지",
"name": "이름", "name": "이름",
"map": "지도", "map": "지도",
"currentPlayers": "Current players", "currentPlayers": "Current players",
@@ -824,29 +818,29 @@
}, },
"mealie": { "mealie": {
"recipes": "레시피", "recipes": "레시피",
"users": "Users", "users": "사용자",
"categories": "Categories", "categories": "분류",
"tags": "태그" "tags": "태그"
}, },
"openmediavault": { "openmediavault": {
"downloading": "다운로드 중", "downloading": "다운로드 중",
"total": "Total", "total": "총합",
"running": "Running", "running": "가동 중",
"stopped": "Stopped", "stopped": "중지",
"passed": "Passed", "passed": "Passed",
"failed": "Failed" "failed": "Failed"
}, },
"openwrt": { "openwrt": {
"uptime": "Uptime", "uptime": "가동 시간",
"cpuLoad": "CPU Load Avg (5m)", "cpuLoad": "CPU Load Avg (5m)",
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"bytesTx": "Transmitted", "bytesTx": "Transmitted",
"bytesRx": "Received" "bytesRx": "수신됨"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "상태",
"uptime": "Uptime", "uptime": "가동 시간",
"lastDown": "Last Downtime", "lastDown": "Last Downtime",
"downDuration": "Downtime Duration", "downDuration": "Downtime Duration",
"sitesUp": "Sites Up", "sitesUp": "Sites Up",
@@ -856,7 +850,7 @@
"up": "Up", "up": "Up",
"seemsdown": "Seems Down", "seemsdown": "Seems Down",
"down": "Down", "down": "Down",
"unknown": "Unknown" "unknown": "알 수 없음"
}, },
"calendar": { "calendar": {
"inCinemas": "In cinemas", "inCinemas": "In cinemas",
@@ -878,7 +872,7 @@
"domains": "Domains", "domains": "Domains",
"mailboxes": "Mailboxes", "mailboxes": "Mailboxes",
"mails": "Mails", "mails": "Mails",
"storage": "Storage" "storage": "저장됨"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Warnings",
@@ -887,7 +881,7 @@
"plantit": { "plantit": {
"events": "Events", "events": "Events",
"plants": "Plants", "plants": "Plants",
"photos": "Photos", "photos": "사진",
"species": "Species" "species": "Species"
}, },
"gitea": { "gitea": {
@@ -908,13 +902,13 @@
"galleries": "Galleries", "galleries": "Galleries",
"performers": "Performers", "performers": "Performers",
"studios": "스튜디오", "studios": "스튜디오",
"movies": "Movies", "movies": "영화",
"tags": "Tags", "tags": "태그",
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "사용자",
"recipes": "Recipes", "recipes": "레시피",
"keywords": "키워드" "keywords": "키워드"
}, },
"homebox": { "homebox": {
@@ -922,18 +916,18 @@
"totalWithWarranty": "With Warranty", "totalWithWarranty": "With Warranty",
"locations": "Locations", "locations": "Locations",
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "사용자",
"totalValue": "Total Value" "totalValue": "Total Value"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alerts", "alerts": "경고",
"bans": "Bans" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "연결됨",
"enabled": "Enabled", "enabled": "활성",
"disabled": "Disabled", "disabled": "비활성",
"total": "Total" "total": "총합"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
@@ -943,8 +937,8 @@
}, },
"myspeed": { "myspeed": {
"ping": "Ping", "ping": "Ping",
"download": "Download", "download": "다운로드",
"upload": "Upload" "upload": "업로드"
}, },
"stocks": { "stocks": {
"stocks": "Stocks", "stocks": "Stocks",
@@ -955,17 +949,17 @@
}, },
"frigate": { "frigate": {
"cameras": "카메라", "cameras": "카메라",
"uptime": "Uptime", "uptime": "가동 시간",
"version": "Version" "version": "버전"
}, },
"linkwarden": { "linkwarden": {
"links": "Links", "links": "Links",
"collections": "Collections", "collections": "Collections",
"tags": "Tags" "tags": "태그"
}, },
"zabbix": { "zabbix": {
"unclassified": "Not classified", "unclassified": "Not classified",
"information": "Information", "information": "정보",
"warning": "Warning", "warning": "Warning",
"average": "Average", "average": "Average",
"high": "High", "high": "High",
@@ -986,21 +980,21 @@
"tasksInProgress": "Tasks In Progress" "tasksInProgress": "Tasks In Progress"
}, },
"headscale": { "headscale": {
"name": "Name", "name": "이름",
"address": "Address", "address": "주소",
"last_seen": "Last Seen", "last_seen": "마지막 접속",
"status": "Status", "status": "상태",
"online": "Online", "online": "온라인",
"offline": "Offline" "offline": "중지"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "이름",
"systems": "Systems", "systems": "Systems",
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"pending": "Pending", "pending": "대기 중",
"status": "Status", "status": "상태",
"updated": "Updated", "updated": "Updated",
"cpu": "CPU", "cpu": "CPU",
"memory": "MEM", "memory": "MEM",
@@ -1011,14 +1005,14 @@
"apps": "Apps", "apps": "Apps",
"synced": "Synced", "synced": "Synced",
"outOfSync": "Out Of Sync", "outOfSync": "Out Of Sync",
"healthy": "Healthy", "healthy": "좋음",
"degraded": "Degraded", "degraded": "Degraded",
"progressing": "Progressing", "progressing": "Progressing",
"missing": "Missing", "missing": "빠짐",
"suspended": "Suspended" "suspended": "Suspended"
}, },
"spoolman": { "spoolman": {
"loading": "Loading" "loading": "로드 중"
}, },
"gitlab": { "gitlab": {
"groups": "Groups", "groups": "Groups",
@@ -1027,10 +1021,10 @@
"projects": "Projects" "projects": "Projects"
}, },
"apcups": { "apcups": {
"status": "Status", "status": "상태",
"load": "Load", "load": "부하",
"bcharge": "Battery Charge", "bcharge": "배터리 충전 중",
"timeleft": "Time Left" "timeleft": "남은 시간"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
@@ -1038,50 +1032,27 @@
"archived": "Archived", "archived": "Archived",
"highlights": "Highlights", "highlights": "Highlights",
"lists": "Lists", "lists": "Lists",
"tags": "Tags" "tags": "태그"
}, },
"slskd": { "slskd": {
"slskStatus": "Network", "slskStatus": "네트워크",
"connected": "Connected", "connected": "연결됨",
"disconnected": "Disconnected", "disconnected": "연결 끊김",
"updateStatus": "Update", "updateStatus": "Update",
"update_yes": "Available", "update_yes": "이용 가능",
"update_no": "Up to Date", "update_no": "최신 상태",
"downloads": "Downloads", "downloads": "Downloads",
"uploads": "Uploads", "uploads": "Uploads",
"sharedFiles": "Files" "sharedFiles": "파일"
}, },
"jellystat": { "jellystat": {
"songs": "Songs", "songs": "음악",
"movies": "Movies", "movies": "영화",
"episodes": "Episodes", "episodes": "에피소드",
"other": "Other" "other": "Other"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -63,7 +63,7 @@
"wlan_users": "WLAN lietotāji", "wlan_users": "WLAN lietotāji",
"up": "UP", "up": "UP",
"down": "NEDARBOJAS", "down": "NEDARBOJAS",
"wait": "Please wait", "wait": "Lūdzu, uzgaidiet",
"empty_data": "Subsystem status unknown" "empty_data": "Subsystem status unknown"
}, },
"docker": { "docker": {
@@ -83,7 +83,7 @@
"partial": "Partial" "partial": "Partial"
}, },
"ping": { "ping": {
"error": "Error", "error": "Kļūda",
"ping": "Ping", "ping": "Ping",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
@@ -91,7 +91,7 @@
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "HTTP status", "http_status": "HTTP status",
"error": "Error", "error": "Kļūda",
"response": "Response", "response": "Response",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
@@ -108,11 +108,11 @@
"songs": "Songs" "songs": "Songs"
}, },
"esphome": { "esphome": {
"offline": "Offline", "offline": "Bezsaistē",
"offline_alt": "Offline", "offline_alt": "Bezsaistē",
"online": "Online", "online": "Online",
"total": "Total", "total": "Kopā",
"unknown": "Unknown" "unknown": "Nezināms"
}, },
"evcc": { "evcc": {
"pv_power": "Production", "pv_power": "Production",
@@ -133,7 +133,7 @@
"unread": "Unread" "unread": "Unread"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Status", "connectionStatus": "Statuss",
"connectionStatusUnconfigured": "Unconfigured", "connectionStatusUnconfigured": "Unconfigured",
"connectionStatusConnecting": "Connecting", "connectionStatusConnecting": "Connecting",
"connectionStatusAuthenticating": "Authenticating", "connectionStatusAuthenticating": "Authenticating",
@@ -168,10 +168,10 @@
"passes": "Passes" "passes": "Passes"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "Atskaņo",
"transcoding": "Transcoding", "transcoding": "Pārkodē",
"bitrate": "Bitrate", "bitrate": "Bitrate",
"no_active": "No Active Streams", "no_active": "Nav aktīvu straumju",
"plex_connection_error": "Check Plex Connection" "plex_connection_error": "Check Plex Connection"
}, },
"omada": { "omada": {
@@ -199,20 +199,20 @@
}, },
"rutorrent": { "rutorrent": {
"active": "Aktīvs", "active": "Aktīvs",
"upload": "Upload", "upload": "Augšupielāde",
"download": "Download" "download": "Lejupielāde"
}, },
"transmission": { "transmission": {
"download": "Download", "download": "Lejupielāde",
"upload": "Upload", "upload": "Augšupielāde",
"leech": "Leech", "leech": "Ņēmēji",
"seed": "Seed" "seed": "Devēji"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Download", "download": "Lejupielāde",
"upload": "Upload", "upload": "Augšupielāde",
"leech": "Leech", "leech": "Ņēmēji",
"seed": "Seed" "seed": "Devēji"
}, },
"qnap": { "qnap": {
"cpuUsage": "CPU Usage", "cpuUsage": "CPU Usage",
@@ -223,35 +223,35 @@
"invalid": "Invalid" "invalid": "Invalid"
}, },
"deluge": { "deluge": {
"download": "Download", "download": "Lejupielāde",
"upload": "Upload", "upload": "Augšupielāde",
"leech": "Leech", "leech": "Ņēmēji",
"seed": "Seed" "seed": "Devēji"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "Cache Hit Bytes", "cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Lejupielāde",
"upload": "Upload", "upload": "Augšupielāde",
"leech": "Leech", "leech": "Ņēmēji",
"seed": "Seed" "seed": "Devēji"
}, },
"sonarr": { "sonarr": {
"wanted": "Wanted", "wanted": "Wanted",
"queued": "Queued", "queued": "Queued",
"series": "Series", "series": "Series",
"queue": "Queue", "queue": "Rindā",
"unknown": "Unknown" "unknown": "Nezināms"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Wanted",
"missing": "Missing", "missing": "Missing",
"queued": "Queued", "queued": "Queued",
"movies": "Movies", "movies": "Movies",
"queue": "Queue", "queue": "Rindā",
"unknown": "Unknown" "unknown": "Nezināms"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Wanted",
@@ -284,7 +284,7 @@
"available": "Available" "available": "Available"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Kopā",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
@@ -302,17 +302,17 @@
"latency": "Latency" "latency": "Latency"
}, },
"speedtest": { "speedtest": {
"upload": "Upload", "upload": "Augšupielāde",
"download": "Download", "download": "Lejupielāde",
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "Running",
"stopped": "Stopped", "stopped": "Stopped",
"total": "Total" "total": "Kopā"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Lejupielādēts",
"nondownload": "Non-Downloaded", "nondownload": "Non-Downloaded",
"read": "Read", "read": "Read",
"unread": "Unread", "unread": "Unread",
@@ -349,7 +349,7 @@
"totalClients": "Clients" "totalClients": "Clients"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "Rindā",
"processed": "Processed", "processed": "Processed",
"errored": "Errored", "errored": "Errored",
"saved": "Saved" "saved": "Saved"
@@ -359,20 +359,14 @@
"services": "Services", "services": "Services",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "Nav aktīvu straumju",
"please_wait": "Please Wait" "please_wait": "Please Wait"
}, },
"npm": { "npm": {
"enabled": "Enabled", "enabled": "Enabled",
"disabled": "Disabled", "disabled": "Disabled",
"total": "Total" "total": "Kopā"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Configure one or more crypto currencies to track", "configure": "Configure one or more crypto currencies to track",
@@ -404,7 +398,7 @@
"transferRate": "Rate" "transferRate": "Rate"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "Lietotāji",
"status_count": "Posts", "status_count": "Posts",
"domain_count": "Domains" "domain_count": "Domains"
}, },
@@ -416,16 +410,16 @@
"minecraft": { "minecraft": {
"players": "Players", "players": "Players",
"version": "Version", "version": "Version",
"status": "Status", "status": "Statuss",
"up": "Online", "up": "Online",
"down": "Offline" "down": "Bezsaistē"
}, },
"miniflux": { "miniflux": {
"read": "Read", "read": "Read",
"unread": "Unread" "unread": "Unread"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "Lietotāji",
"loginsLast24H": "Logins (24h)", "loginsLast24H": "Logins (24h)",
"failedLoginsLast24H": "Failed Logins (24h)" "failedLoginsLast24H": "Failed Logins (24h)"
}, },
@@ -437,15 +431,15 @@
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Load", "load": "Ielādē",
"wait": "Please wait", "wait": "Lūdzu, uzgaidiet",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temp", "_temp": "Temp",
"warn": "Warn", "warn": "Warn",
"uptime": "UP", "uptime": "UP",
"total": "Total", "total": "Kopā",
"free": "Free", "free": "Brīvs",
"used": "Used", "used": "Izmantojas",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Crit", "crit": "Crit",
@@ -470,37 +464,37 @@
"1-day": "Galvenokārt saulains", "1-day": "Galvenokārt saulains",
"1-night": "Galvenokārt skaidrs", "1-night": "Galvenokārt skaidrs",
"2-day": "Daļēji apmācies", "2-day": "Daļēji apmācies",
"2-night": "Partly Cloudy", "2-night": "Daļēji apmācies",
"3-day": "Apmācies", "3-day": "Apmācies",
"3-night": "Cloudy", "3-night": "Apmācies",
"45-day": "Miglains", "45-day": "Miglains",
"45-night": "Foggy", "45-night": "Miglains",
"48-day": "Foggy", "48-day": "Miglains",
"48-night": "Foggy", "48-night": "Miglains",
"51-day": "Neliels lietus", "51-day": "Neliels lietus",
"51-night": "Light Drizzle", "51-night": "Neliels lietus",
"53-day": "Lietus", "53-day": "Lietus",
"53-night": "Drizzle", "53-night": "Lietus",
"55-day": "Spēcīgs lietus", "55-day": "Spēcīgs lietus",
"55-night": "Heavy Drizzle", "55-night": "Spēcīgs lietus",
"56-day": "Neliels stindzinošs lietus", "56-day": "Neliels stindzinošs lietus",
"56-night": "Light Freezing Drizzle", "56-night": "Neliels stindzinošs lietus",
"57-day": "Sasalstošs lietus", "57-day": "Sasalstošs lietus",
"57-night": "Freezing Drizzle", "57-night": "Sasalstošs lietus",
"61-day": "Viegls lietus", "61-day": "Viegls lietus",
"61-night": "Light Rain", "61-night": "Viegls lietus",
"63-day": "Lietus", "63-day": "Lietus",
"63-night": "Rain", "63-night": "Lietus",
"65-day": "Spēcīgs lietus", "65-day": "Spēcīgs lietus",
"65-night": "Heavy Rain", "65-night": "Spēcīgs lietus",
"66-day": "Ledains lietus", "66-day": "Ledains lietus",
"66-night": "Freezing Rain", "66-night": "Ledains lietus",
"67-day": "Freezing Rain", "67-day": "Ledains lietus",
"67-night": "Freezing Rain", "67-night": "Ledains lietus",
"71-day": "Neliels sniegs", "71-day": "Neliels sniegs",
"71-night": "Light Snow", "71-night": "Neliels sniegs",
"73-day": "Sniegs", "73-day": "Sniegs",
"73-night": "Snow", "73-night": "Sniegs",
"75-day": "Heavy Snow", "75-day": "Heavy Snow",
"75-night": "Heavy Snow", "75-night": "Heavy Snow",
"77-day": "Snow Grains", "77-day": "Snow Grains",
@@ -539,7 +533,7 @@
"grace": "In Grace Period", "grace": "In Grace Period",
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"status": "Status", "status": "Statuss",
"last_ping": "Last Ping", "last_ping": "Last Ping",
"never": "No pings yet" "never": "No pings yet"
}, },
@@ -555,7 +549,7 @@
"indexers": "Indexers" "indexers": "Indexers"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "Rindā",
"videos": "Videos", "videos": "Videos",
"channels": "Channels", "channels": "Channels",
"playlists": "Playlists" "playlists": "Playlists"
@@ -563,13 +557,13 @@
"truenas": { "truenas": {
"load": "System Load", "load": "System Load",
"uptime": "Uptime", "uptime": "Uptime",
"alerts": "Alerts" "alerts": "Paziņojumi"
}, },
"pyload": { "pyload": {
"speed": "Speed", "speed": "Speed",
"active": "Active", "active": "Aktīvs",
"queue": "Queue", "queue": "Rindā",
"total": "Total" "total": "Kopā"
}, },
"gluetun": { "gluetun": {
"public_ip": "Public IP", "public_ip": "Public IP",
@@ -592,11 +586,11 @@
"scrutiny": { "scrutiny": {
"passed": "Passed", "passed": "Passed",
"failed": "Failed", "failed": "Failed",
"unknown": "Unknown" "unknown": "Nezināms"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Inbox", "inbox": "Inbox",
"total": "Total" "total": "Kopā"
}, },
"peanut": { "peanut": {
"battery_charge": "Battery Charge", "battery_charge": "Battery Charge",
@@ -618,7 +612,7 @@
}, },
"xteve": { "xteve": {
"streams_all": "All Streams", "streams_all": "All Streams",
"streams_active": "Active Streams", "streams_active": "Aktīvās straumes",
"streams_xepg": "XEPG Channels" "streams_xepg": "XEPG Channels"
}, },
"opendtu": { "opendtu": {
@@ -640,14 +634,14 @@
"layers": "Layers" "layers": "Layers"
}, },
"octoprint": { "octoprint": {
"printer_state": "Status", "printer_state": "Statuss",
"temp_tool": "Tool temp", "temp_tool": "Tool temp",
"temp_bed": "Bed temp", "temp_bed": "Bed temp",
"job_completion": "Completion" "job_completion": "Completion"
}, },
"cloudflared": { "cloudflared": {
"origin_ip": "Origin IP", "origin_ip": "Origin IP",
"status": "Status" "status": "Statuss"
}, },
"pfsense": { "pfsense": {
"load": "Load Avg", "load": "Load Avg",
@@ -666,7 +660,7 @@
"memory_usage": "Memory" "memory_usage": "Memory"
}, },
"immich": { "immich": {
"users": "Users", "users": "Lietotāji",
"photos": "Photos", "photos": "Photos",
"videos": "Videos", "videos": "Videos",
"storage": "Storage" "storage": "Storage"
@@ -687,10 +681,10 @@
"komga": { "komga": {
"libraries": "Libraries", "libraries": "Libraries",
"series": "Series", "series": "Series",
"books": "Books" "books": "Grāmatas"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Dienas",
"uptime": "Uptime", "uptime": "Uptime",
"volumeAvailable": "Available" "volumeAvailable": "Available"
}, },
@@ -706,7 +700,7 @@
"people": "People" "people": "People"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "Rindā",
"processing": "Processing", "processing": "Processing",
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
@@ -730,7 +724,7 @@
"numshares": "Shared Items" "numshares": "Shared Items"
}, },
"kopia": { "kopia": {
"status": "Status", "status": "Statuss",
"size": "Size", "size": "Size",
"lastrun": "Last Run", "lastrun": "Last Run",
"nextrun": "Next Run", "nextrun": "Next Run",
@@ -762,7 +756,7 @@
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasts", "podcasts": "Podcasts",
"books": "Books", "books": "Grāmatas",
"podcastsDuration": "Duration", "podcastsDuration": "Duration",
"booksDuration": "Duration" "booksDuration": "Duration"
}, },
@@ -776,14 +770,14 @@
"updates": "Updates" "updates": "Updates"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "Grāmatas",
"authors": "Authors", "authors": "Authors",
"categories": "Categories", "categories": "Categories",
"series": "Series" "series": "Series"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "Rindā",
"downloadBytesRemaining": "Remaining", "downloadBytesRemaining": "Palika",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Size",
"downloadSpeed": "Speed" "downloadSpeed": "Speed"
}, },
@@ -793,7 +787,7 @@
}, },
"azuredevops": { "azuredevops": {
"result": "Result", "result": "Result",
"status": "Status", "status": "Statuss",
"buildId": "Build ID", "buildId": "Build ID",
"succeeded": "Succeeded", "succeeded": "Succeeded",
"notStarted": "Not Started", "notStarted": "Not Started",
@@ -805,9 +799,9 @@
"approved": "Approved" "approved": "Approved"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "Statuss",
"online": "Online", "online": "Online",
"offline": "Offline", "offline": "Bezsaistē",
"name": "Name", "name": "Name",
"map": "Map", "map": "Map",
"currentPlayers": "Current players", "currentPlayers": "Current players",
@@ -824,13 +818,13 @@
}, },
"mealie": { "mealie": {
"recipes": "Recipes", "recipes": "Recipes",
"users": "Users", "users": "Lietotāji",
"categories": "Categories", "categories": "Categories",
"tags": "Tags" "tags": "Tags"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Downloading", "downloading": "Downloading",
"total": "Total", "total": "Kopā",
"running": "Running", "running": "Running",
"stopped": "Stopped", "stopped": "Stopped",
"passed": "Passed", "passed": "Passed",
@@ -845,7 +839,7 @@
"bytesRx": "Received" "bytesRx": "Received"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "Statuss",
"uptime": "Uptime", "uptime": "Uptime",
"lastDown": "Last Downtime", "lastDown": "Last Downtime",
"downDuration": "Downtime Duration", "downDuration": "Downtime Duration",
@@ -856,7 +850,7 @@
"up": "Up", "up": "Up",
"seemsdown": "Seems Down", "seemsdown": "Seems Down",
"down": "Down", "down": "Down",
"unknown": "Unknown" "unknown": "Nezināms"
}, },
"calendar": { "calendar": {
"inCinemas": "In cinemas", "inCinemas": "In cinemas",
@@ -913,7 +907,7 @@
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "Lietotāji",
"recipes": "Recipes", "recipes": "Recipes",
"keywords": "Keywords" "keywords": "Keywords"
}, },
@@ -922,18 +916,18 @@
"totalWithWarranty": "With Warranty", "totalWithWarranty": "With Warranty",
"locations": "Locations", "locations": "Locations",
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "Lietotāji",
"totalValue": "Total Value" "totalValue": "Total Value"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alerts", "alerts": "Paziņojumi",
"bans": "Bans" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Connected",
"enabled": "Enabled", "enabled": "Enabled",
"disabled": "Disabled", "disabled": "Disabled",
"total": "Total" "total": "Kopā"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
@@ -943,8 +937,8 @@
}, },
"myspeed": { "myspeed": {
"ping": "Ping", "ping": "Ping",
"download": "Download", "download": "Lejupielāde",
"upload": "Upload" "upload": "Augšupielāde"
}, },
"stocks": { "stocks": {
"stocks": "Stocks", "stocks": "Stocks",
@@ -965,7 +959,7 @@
}, },
"zabbix": { "zabbix": {
"unclassified": "Not classified", "unclassified": "Not classified",
"information": "Information", "information": "Informācija",
"warning": "Warning", "warning": "Warning",
"average": "Average", "average": "Average",
"high": "High", "high": "High",
@@ -989,9 +983,9 @@
"name": "Name", "name": "Name",
"address": "Address", "address": "Address",
"last_seen": "Last Seen", "last_seen": "Last Seen",
"status": "Status", "status": "Statuss",
"online": "Online", "online": "Online",
"offline": "Offline" "offline": "Bezsaistē"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Name",
@@ -1000,7 +994,7 @@
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"pending": "Pending", "pending": "Pending",
"status": "Status", "status": "Statuss",
"updated": "Updated", "updated": "Updated",
"cpu": "CPU", "cpu": "CPU",
"memory": "MEM", "memory": "MEM",
@@ -1027,10 +1021,10 @@
"projects": "Projects" "projects": "Projects"
}, },
"apcups": { "apcups": {
"status": "Status", "status": "Statuss",
"load": "Load", "load": "Ielādē",
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Time Left" "timeleft": "Atlikušais laiks"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
@@ -1060,28 +1054,5 @@
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -61,9 +61,9 @@
"wlan_devices": "Peranti WLAN", "wlan_devices": "Peranti WLAN",
"lan_users": "Pengguna LAN", "lan_users": "Pengguna LAN",
"wlan_users": "Pengguna WLAN", "wlan_users": "Pengguna WLAN",
"up": "UP", "up": "HIDUP",
"down": "MATI", "down": "MATI",
"wait": "Please wait", "wait": "Sila tunggu",
"empty_data": "Status subsistem tak diketahui" "empty_data": "Status subsistem tak diketahui"
}, },
"docker": { "docker": {
@@ -83,7 +83,7 @@
"partial": "Sebahagian" "partial": "Sebahagian"
}, },
"ping": { "ping": {
"error": "Error", "error": "Ralat",
"ping": "Ping", "ping": "Ping",
"down": "Mati", "down": "Mati",
"up": "Hidup", "up": "Hidup",
@@ -91,11 +91,11 @@
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "Status HTTP", "http_status": "Status HTTP",
"error": "Error", "error": "Ralat",
"response": "Tindak balas", "response": "Tindak balas",
"down": "Down", "down": "Mati",
"up": "Up", "up": "Hidup",
"not_available": "Not Available" "not_available": "Tidak dijumpai"
}, },
"emby": { "emby": {
"playing": "Sedang dimainkan", "playing": "Sedang dimainkan",
@@ -108,11 +108,11 @@
"songs": "Lagu" "songs": "Lagu"
}, },
"esphome": { "esphome": {
"offline": "Offline", "offline": "Luar talian",
"offline_alt": "Offline", "offline_alt": "Luar talian",
"online": "Dalam Talian", "online": "Dalam Talian",
"total": "Total", "total": "Jumlah",
"unknown": "Unknown" "unknown": "Tidak Diketahui"
}, },
"evcc": { "evcc": {
"pv_power": "Produksi", "pv_power": "Produksi",
@@ -141,11 +141,11 @@
"connectionStatusDisconnecting": "Putuskan", "connectionStatusDisconnecting": "Putuskan",
"connectionStatusDisconnected": "Sambungan Terputus", "connectionStatusDisconnected": "Sambungan Terputus",
"connectionStatusConnected": "Connected", "connectionStatusConnected": "Connected",
"uptime": "Uptime", "uptime": "Masa Hidup",
"maxDown": "Mati Maksima", "maxDown": "Mati Maksima",
"maxUp": "Hidup Maksima", "maxUp": "Hidup Maksima",
"down": "Down", "down": "Mati",
"up": "Up", "up": "Hidup",
"received": "Diterima", "received": "Diterima",
"sent": "Telah dihantar", "sent": "Telah dihantar",
"externalIPAddress": "IP Luaran", "externalIPAddress": "IP Luaran",
@@ -168,10 +168,10 @@
"passes": "Lulus" "passes": "Lulus"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "Sedang dimainkan",
"transcoding": "Transcoding", "transcoding": "Transkoding",
"bitrate": "Bitrate", "bitrate": "Kadar bit",
"no_active": "No Active Streams", "no_active": "Tiada Strim Aktif",
"plex_connection_error": "Check Plex Connection" "plex_connection_error": "Check Plex Connection"
}, },
"omada": { "omada": {
@@ -189,28 +189,28 @@
"plex": { "plex": {
"streams": "Strim Aktif", "streams": "Strim Aktif",
"albums": "Album", "albums": "Album",
"movies": "Movies", "movies": "Filem",
"tv": "Rancangan TV" "tv": "Rancangan TV"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "Kadar",
"queue": "Barisan", "queue": "Barisan",
"timeleft": "Masa Tinggal" "timeleft": "Masa Tinggal"
}, },
"rutorrent": { "rutorrent": {
"active": "Aktif", "active": "Aktif",
"upload": "Upload", "upload": "Muat naik",
"download": "Download" "download": "Muat turun"
}, },
"transmission": { "transmission": {
"download": "Download", "download": "Muat turun",
"upload": "Upload", "upload": "Muat naik",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Download", "download": "Muat turun",
"upload": "Upload", "upload": "Muat naik",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -223,8 +223,8 @@
"invalid": "Invalid" "invalid": "Invalid"
}, },
"deluge": { "deluge": {
"download": "Download", "download": "Muat turun",
"upload": "Upload", "upload": "Muat naik",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -233,34 +233,34 @@
"cachemissbytes": "Cache Miss Bytes" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Muat turun",
"upload": "Upload", "upload": "Muat naik",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"sonarr": { "sonarr": {
"wanted": "Mahu", "wanted": "Mahu",
"queued": "Dibaris Gilir", "queued": "Dibaris Gilir",
"series": "Series", "series": "Siri",
"queue": "Queue", "queue": "Barisan",
"unknown": "Unknown" "unknown": "Tidak Diketahui"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Mahu",
"missing": "Hilang", "missing": "Hilang",
"queued": "Queued", "queued": "Dibaris Gilir",
"movies": "Movies", "movies": "Filem",
"queue": "Queue", "queue": "Barisan",
"unknown": "Unknown" "unknown": "Tidak Diketahui"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Mahu",
"queued": "Queued", "queued": "Dibaris Gilir",
"artists": "Artis" "artists": "Artis"
}, },
"readarr": { "readarr": {
"wanted": "Wanted", "wanted": "Mahu",
"queued": "Queued", "queued": "Dibaris Gilir",
"books": "Buku" "books": "Buku"
}, },
"bazarr": { "bazarr": {
@@ -273,18 +273,18 @@
"available": "Sudah Ada" "available": "Sudah Ada"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pending", "pending": "Tertunda",
"approved": "Approved", "approved": "Lulus",
"available": "Available" "available": "Sudah Ada"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "Tertunda",
"processing": "Processing", "processing": "Processing",
"approved": "Approved", "approved": "Lulus",
"available": "Available" "available": "Sudah Ada"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Jumlah",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
@@ -296,26 +296,26 @@
"gravity": "Gravity" "gravity": "Gravity"
}, },
"adguard": { "adguard": {
"queries": "Queries", "queries": "Permintaan",
"blocked": "Blocked", "blocked": "Disekat",
"filtered": "Ditapis", "filtered": "Ditapis",
"latency": "Kependaman" "latency": "Kependaman"
}, },
"speedtest": { "speedtest": {
"upload": "Upload", "upload": "Muat naik",
"download": "Download", "download": "Muat turun",
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "Sedang jalan",
"stopped": "Terhenti", "stopped": "Terhenti",
"total": "Total" "total": "Jumlah"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Telah Muat Turun",
"nondownload": "Non-Downloaded", "nondownload": "Non-Downloaded",
"read": "Read", "read": "Baca",
"unread": "Unread", "unread": "Belum dibaca",
"downloadedread": "Downloaded & Read", "downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread", "downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read", "nondownloadedread": "Non-Downloaded & Read",
@@ -336,7 +336,7 @@
"ago": "{{value}} Lepas" "ago": "{{value}} Lepas"
}, },
"technitium": { "technitium": {
"totalQueries": "Queries", "totalQueries": "Permintaan",
"totalNoError": "Success", "totalNoError": "Success",
"totalServerFailure": "Failures", "totalServerFailure": "Failures",
"totalNxDomain": "NX Domains", "totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative", "totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive", "totalRecursive": "Recursive",
"totalCached": "Cached", "totalCached": "Cached",
"totalBlocked": "Blocked", "totalBlocked": "Disekat",
"totalDropped": "Dropped", "totalDropped": "Dropped",
"totalClients": "Klien" "totalClients": "Klien"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "Barisan",
"processed": "Sudah diprosess", "processed": "Sudah diprosess",
"errored": "Ralat", "errored": "Ralat",
"saved": "Simpan" "saved": "Simpan"
@@ -359,20 +359,14 @@
"services": "Servis", "services": "Servis",
"middleware": "Perisian Tengah" "middleware": "Perisian Tengah"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "Tiada Strim Aktif",
"please_wait": "Sila tunggu" "please_wait": "Sila tunggu"
}, },
"npm": { "npm": {
"enabled": "Didayakan", "enabled": "Didayakan",
"disabled": "Dinyahdayakan", "disabled": "Dinyahdayakan",
"total": "Total" "total": "Jumlah"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Konfigurasikan satu atau lebih matawang crypto untuk dipantau", "configure": "Konfigurasikan satu atau lebih matawang crypto untuk dipantau",
@@ -383,49 +377,49 @@
}, },
"gotify": { "gotify": {
"apps": "Aplikasi", "apps": "Aplikasi",
"clients": "Clients", "clients": "Klien",
"messages": "Mesej" "messages": "Mesej"
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "Pengindeks", "enableIndexers": "Pengindeks",
"numberOfGrabs": "Capai", "numberOfGrabs": "Capai",
"numberOfQueries": "Queries", "numberOfQueries": "Permintaan",
"numberOfFailGrabs": "Capai Yang Ggagal", "numberOfFailGrabs": "Capai Yang Ggagal",
"numberOfFailQueries": "Permintaan Yang Gagal" "numberOfFailQueries": "Permintaan Yang Gagal"
}, },
"jackett": { "jackett": {
"configured": "Telah Dikonfigurasi", "configured": "Telah Dikonfigurasi",
"errored": "Errored" "errored": "Ralat"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Sesi", "numActiveSessions": "Sesi",
"numConnections": "Penyambungan", "numConnections": "Penyambungan",
"dataRelayed": "Disalurkan", "dataRelayed": "Disalurkan",
"transferRate": "Rate" "transferRate": "Kadar"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "Pengguna",
"status_count": "Pos", "status_count": "Pos",
"domain_count": "Domain" "domain_count": "Domain"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "Mahu",
"queued": "Queued", "queued": "Dibaris Gilir",
"series": "Series" "series": "Siri"
}, },
"minecraft": { "minecraft": {
"players": "Senarai pemain", "players": "Senarai pemain",
"version": "Versi", "version": "Versi",
"status": "Status", "status": "Status",
"up": "Online", "up": "Dalam Talian",
"down": "Offline" "down": "Luar talian"
}, },
"miniflux": { "miniflux": {
"read": "Baca", "read": "Baca",
"unread": "Unread" "unread": "Belum dibaca"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "Pengguna",
"loginsLast24H": "Logmasuk (24j)", "loginsLast24H": "Logmasuk (24j)",
"failedLoginsLast24H": "Logmasuk Gagal (24j)" "failedLoginsLast24H": "Logmasuk Gagal (24j)"
}, },
@@ -437,19 +431,19 @@
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Load", "load": "Beban",
"wait": "Please wait", "wait": "Sila tunggu",
"temp": "TEMP", "temp": "SUHU",
"_temp": "Suhu", "_temp": "Suhu",
"warn": "Amaran", "warn": "Amaran",
"uptime": "UP", "uptime": "HIDUP",
"total": "Total", "total": "Jumlah",
"free": "Free", "free": "Bebas",
"used": "Used", "used": "Telah diguna",
"days": "d", "days": "h",
"hours": "h", "hours": "j",
"crit": "Krit", "crit": "Krit",
"read": "Read", "read": "Baca",
"write": "Tulis", "write": "Tulis",
"gpu": "GPU", "gpu": "GPU",
"mem": "Mem", "mem": "Mem",
@@ -470,57 +464,57 @@
"1-day": "Sebahagian Besar Terik", "1-day": "Sebahagian Besar Terik",
"1-night": "Sebahagian Besar Cerah", "1-night": "Sebahagian Besar Cerah",
"2-day": "Sebahagian Mendung", "2-day": "Sebahagian Mendung",
"2-night": "Partly Cloudy", "2-night": "Sebahagian Mendung",
"3-day": "Mendung", "3-day": "Mendung",
"3-night": "Cloudy", "3-night": "Mendung",
"45-day": "Berkabus", "45-day": "Berkabus",
"45-night": "Foggy", "45-night": "Berkabus",
"48-day": "Foggy", "48-day": "Berkabus",
"48-night": "Foggy", "48-night": "Berkabus",
"51-day": "Gerimis", "51-day": "Gerimis",
"51-night": "Light Drizzle", "51-night": "Gerimis",
"53-day": "Renyai", "53-day": "Renyai",
"53-night": "Drizzle", "53-night": "Renyai",
"55-day": "Renyai Kuat", "55-day": "Renyai Kuat",
"55-night": "Heavy Drizzle", "55-night": "Renyai Kuat",
"56-day": "Gerimis Sejuk Ringan", "56-day": "Gerimis Sejuk Ringan",
"56-night": "Light Freezing Drizzle", "56-night": "Gerimis Sejuk Ringan",
"57-day": "Gerimis Sejuk", "57-day": "Gerimis Sejuk",
"57-night": "Freezing Drizzle", "57-night": "Gerimis Sejuk",
"61-day": "Hujan Renyai", "61-day": "Hujan Renyai",
"61-night": "Light Rain", "61-night": "Hujan Renyai",
"63-day": "Hujan", "63-day": "Hujan",
"63-night": "Rain", "63-night": "Hujan",
"65-day": "Hujan Lebat", "65-day": "Hujan Lebat",
"65-night": "Heavy Rain", "65-night": "Hujan Lebat",
"66-day": "Hujan Sejuk", "66-day": "Hujan Sejuk",
"66-night": "Freezing Rain", "66-night": "Hujan Sejuk",
"67-day": "Freezing Rain", "67-day": "Hujan Sejuk",
"67-night": "Freezing Rain", "67-night": "Hujan Sejuk",
"71-day": "Salji Ringan", "71-day": "Salji Ringan",
"71-night": "Light Snow", "71-night": "Salji Ringan",
"73-day": "Salji", "73-day": "Salji",
"73-night": "Snow", "73-night": "Salji",
"75-day": "Salji Lebat", "75-day": "Salji Lebat",
"75-night": "Heavy Snow", "75-night": "Salji Lebat",
"77-day": "Butiran Salji", "77-day": "Butiran Salji",
"77-night": "Snow Grains", "77-night": "Butiran Salji",
"80-day": "Rintik Ringan", "80-day": "Rintik Ringan",
"80-night": "Light Showers", "80-night": "Rintik Ringan",
"81-day": "Rintik", "81-day": "Rintik",
"81-night": "Showers", "81-night": "Rintik",
"82-day": "Rintik Lebat", "82-day": "Rintik Lebat",
"82-night": "Heavy Showers", "82-night": "Rintik Lebat",
"85-day": "Rintik Salji", "85-day": "Rintik Salji",
"85-night": "Snow Showers", "85-night": "Rintik Salji",
"86-day": "Snow Showers", "86-day": "Rintik Salji",
"86-night": "Snow Showers", "86-night": "Rintik Salji",
"95-day": "Ribut", "95-day": "Ribut",
"95-night": "Thunderstorm", "95-night": "Ribut",
"96-day": "Ribut Hujan Batu", "96-day": "Ribut Hujan Batu",
"96-night": "Thunderstorm With Hail", "96-night": "Ribut Hujan Batu",
"99-day": "Thunderstorm With Hail", "99-day": "Ribut Hujan Batu",
"99-night": "Thunderstorm With Hail" "99-night": "Ribut Hujan Batu"
}, },
"homebridge": { "homebridge": {
"available_update": "Sistem", "available_update": "Sistem",
@@ -529,15 +523,15 @@
"up_to_date": "Terkemaskini", "up_to_date": "Terkemaskini",
"child_bridges": "Jambatan Anak", "child_bridges": "Jambatan Anak",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Hidup",
"pending": "Pending", "pending": "Tertunda",
"down": "Down" "down": "Mati"
}, },
"healthchecks": { "healthchecks": {
"new": "Baharu", "new": "Baharu",
"up": "Up", "up": "Hidup",
"grace": "Tempoh Aman", "grace": "Tempoh Aman",
"down": "Down", "down": "Mati",
"paused": "Tangguh", "paused": "Tangguh",
"status": "Status", "status": "Status",
"last_ping": "Ping terakhir", "last_ping": "Ping terakhir",
@@ -549,27 +543,27 @@
"containers_failed": "Gagal" "containers_failed": "Gagal"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "Lulus",
"rejectedPushes": "Ditolak", "rejectedPushes": "Ditolak",
"filters": "Tapisan", "filters": "Tapisan",
"indexers": "Indexers" "indexers": "Pengindeks"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "Barisan",
"videos": "Video", "videos": "Video",
"channels": "Saluran", "channels": "Saluran",
"playlists": "Senarai Siar" "playlists": "Senarai Siar"
}, },
"truenas": { "truenas": {
"load": "Beban Sistem", "load": "Beban Sistem",
"uptime": "Uptime", "uptime": "Masa Hidup",
"alerts": "Alerts" "alerts": "Perhatian"
}, },
"pyload": { "pyload": {
"speed": "Kelajuan", "speed": "Kelajuan",
"active": "Active", "active": "Aktif",
"queue": "Queue", "queue": "Barisan",
"total": "Total" "total": "Jumlah"
}, },
"gluetun": { "gluetun": {
"public_ip": "IP Awam", "public_ip": "IP Awam",
@@ -578,47 +572,47 @@
"port_forwarded": "Port Forwarded" "port_forwarded": "Port Forwarded"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Channels", "channels": "Saluran",
"hd": "HD", "hd": "HD",
"tunerCount": "Penala", "tunerCount": "Penala",
"channelNumber": "Saluran", "channelNumber": "Saluran",
"channelNetwork": "Rangkaian", "channelNetwork": "Rangkaian",
"signalStrength": "Kekuatan", "signalStrength": "Kekuatan",
"signalQuality": "Kualiti", "signalQuality": "Kualiti",
"symbolQuality": "Quality", "symbolQuality": "Kualiti",
"networkRate": "Bitrate", "networkRate": "Kadar bit",
"clientIP": "Klien" "clientIP": "Klien"
}, },
"scrutiny": { "scrutiny": {
"passed": "Lulus", "passed": "Lulus",
"failed": "Failed", "failed": "Gagal",
"unknown": "Unknown" "unknown": "Tidak Diketahui"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Peti Masuk", "inbox": "Peti Masuk",
"total": "Total" "total": "Jumlah"
}, },
"peanut": { "peanut": {
"battery_charge": "Bateri dicas", "battery_charge": "Bateri dicas",
"ups_load": "Beban UPS", "ups_load": "Beban UPS",
"ups_status": "Status UPS", "ups_status": "Status UPS",
"online": "Online", "online": "Dalam Talian",
"on_battery": "Guna bateri", "on_battery": "Guna bateri",
"low_battery": "Bateri lemah" "low_battery": "Bateri lemah"
}, },
"nextdns": { "nextdns": {
"wait": "Please Wait", "wait": "Sila tunggu",
"no_devices": "Tiada Data Diterima Peranti" "no_devices": "Tiada Data Diterima Peranti"
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "Beban CPU", "cpuLoad": "Beban CPU",
"memoryUsed": "Penggunaan memori", "memoryUsed": "Penggunaan memori",
"uptime": "Uptime", "uptime": "Masa Hidup",
"numberOfLeases": "Sewaan" "numberOfLeases": "Sewaan"
}, },
"xteve": { "xteve": {
"streams_all": "Semua Strim", "streams_all": "Semua Strim",
"streams_active": "Active Streams", "streams_active": "Strim Aktif",
"streams_xepg": "Saluran XEPG" "streams_xepg": "Saluran XEPG"
}, },
"opendtu": { "opendtu": {
@@ -628,7 +622,7 @@
"limit": "Had/Batas" "limit": "Had/Batas"
}, },
"opnsense": { "opnsense": {
"cpu": "CPU Load", "cpu": "Beban CPU",
"memory": "Active Memory", "memory": "Active Memory",
"wanUpload": "WAN Upload", "wanUpload": "WAN Upload",
"wanDownload": "WAN Download" "wanDownload": "WAN Download"
@@ -653,9 +647,9 @@
"load": "Load Avg", "load": "Load Avg",
"memory": "Mem Usage", "memory": "Mem Usage",
"wanStatus": "WAN Status", "wanStatus": "WAN Status",
"up": "Up", "up": "Hidup",
"down": "Down", "down": "Mati",
"temp": "Temp", "temp": "Suhu",
"disk": "Disk Usage", "disk": "Disk Usage",
"wanIP": "WAN IP" "wanIP": "WAN IP"
}, },
@@ -666,49 +660,49 @@
"memory_usage": "Memory" "memory_usage": "Memory"
}, },
"immich": { "immich": {
"users": "Users", "users": "Pengguna",
"photos": "Gambar", "photos": "Gambar",
"videos": "Videos", "videos": "Video",
"storage": "Storage" "storage": "Storage"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Sites Up", "up": "Sites Up",
"down": "Sites Down", "down": "Sites Down",
"uptime": "Uptime", "uptime": "Masa Hidup",
"incident": "Incident", "incident": "Incident",
"m": "m" "m": "m"
}, },
"atsumeru": { "atsumeru": {
"series": "Series", "series": "Siri",
"archives": "Archives", "archives": "Archives",
"chapters": "Chapters", "chapters": "Chapters",
"categories": "Memori" "categories": "Memori"
}, },
"komga": { "komga": {
"libraries": "Libraries", "libraries": "Libraries",
"series": "Series", "series": "Siri",
"books": "Books" "books": "Buku"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Hari",
"uptime": "Uptime", "uptime": "Masa Hidup",
"volumeAvailable": "Available" "volumeAvailable": "Sudah Ada"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Siri",
"issues": "Issues", "issues": "Issues",
"wanted": "Wanted" "wanted": "Mahu"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Album",
"photos": "Photos", "photos": "Gambar",
"videos": "Videos", "videos": "Video",
"people": "People" "people": "People"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "Barisan",
"processing": "Processing", "processing": "Processing",
"processed": "Processed", "processed": "Sudah diprosess",
"time": "Time" "time": "Time"
}, },
"firefly": { "firefly": {
@@ -734,7 +728,7 @@
"size": "Size", "size": "Size",
"lastrun": "Last Run", "lastrun": "Last Run",
"nextrun": "Next Run", "nextrun": "Next Run",
"failed": "Failed" "failed": "Gagal"
}, },
"unmanic": { "unmanic": {
"active_workers": "Active Workers", "active_workers": "Active Workers",
@@ -753,18 +747,18 @@
"gatus": { "gatus": {
"up": "Sites Up", "up": "Sites Up",
"down": "Sites Down", "down": "Sites Down",
"uptime": "Uptime" "uptime": "Masa Hidup"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Today", "gross_percent_today": "Hari ini",
"gross_percent_1y": "Satu tahun", "gross_percent_1y": "Satu tahun",
"gross_percent_max": "Sepanjang masa" "gross_percent_max": "Sepanjang masa"
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podkas", "podcasts": "Podkas",
"books": "Books", "books": "Buku",
"podcastsDuration": "Tempoh", "podcastsDuration": "Tempoh",
"booksDuration": "Duration" "booksDuration": "Tempoh"
}, },
"homeassistant": { "homeassistant": {
"people_home": "Orang Dirumah", "people_home": "Orang Dirumah",
@@ -773,22 +767,22 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Pemantauan", "monitoring": "Pemantauan",
"updates": "Updates" "updates": "Kemaskini"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "Buku",
"authors": "Pengarang/Penulis", "authors": "Pengarang/Penulis",
"categories": "Categories", "categories": "Memori",
"series": "Series" "series": "Siri"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "Barisan",
"downloadBytesRemaining": "Remaining", "downloadBytesRemaining": "Baki",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Size",
"downloadSpeed": "Speed" "downloadSpeed": "Kelajuan"
}, },
"kavita": { "kavita": {
"seriesCount": "Series", "seriesCount": "Siri",
"totalFiles": "Files" "totalFiles": "Files"
}, },
"azuredevops": { "azuredevops": {
@@ -797,21 +791,21 @@
"buildId": "ID Binaan", "buildId": "ID Binaan",
"succeeded": "Berjaya", "succeeded": "Berjaya",
"notStarted": "Belum Bermula", "notStarted": "Belum Bermula",
"failed": "Failed", "failed": "Gagal",
"canceled": "Dibatalkan", "canceled": "Dibatalkan",
"inProgress": "Sedang Diproses", "inProgress": "Sedang Diproses",
"totalPrs": "Jumlah PR", "totalPrs": "Jumlah PR",
"myPrs": "PR Sendiri", "myPrs": "PR Sendiri",
"approved": "Approved" "approved": "Lulus"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "Status",
"online": "Online", "online": "Dalam Talian",
"offline": "Offline", "offline": "Luar talian",
"name": "Nama", "name": "Nama",
"map": "Peta", "map": "Peta",
"currentPlayers": "Pemain Semasa", "currentPlayers": "Pemain Semasa",
"players": "Players", "players": "Senarai pemain",
"maxPlayers": "Bilangan peserta maksimum", "maxPlayers": "Bilangan peserta maksimum",
"bots": "Bot", "bots": "Bot",
"ping": "Ping" "ping": "Ping"
@@ -824,39 +818,39 @@
}, },
"mealie": { "mealie": {
"recipes": "Resipi", "recipes": "Resipi",
"users": "Users", "users": "Pengguna",
"categories": "Categories", "categories": "Memori",
"tags": "Tanda nama" "tags": "Tanda nama"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Sedang muat turun", "downloading": "Sedang muat turun",
"total": "Total", "total": "Jumlah",
"running": "Running", "running": "Sedang jalan",
"stopped": "Stopped", "stopped": "Terhenti",
"passed": "Passed", "passed": "Lulus",
"failed": "Failed" "failed": "Gagal"
}, },
"openwrt": { "openwrt": {
"uptime": "Uptime", "uptime": "Masa Hidup",
"cpuLoad": "Purata Beban CPU (5m)", "cpuLoad": "Purata Beban CPU (5m)",
"up": "Up", "up": "Hidup",
"down": "Down", "down": "Mati",
"bytesTx": "Terpancar", "bytesTx": "Terpancar",
"bytesRx": "Received" "bytesRx": "Diterima"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "Status",
"uptime": "Uptime", "uptime": "Masa Hidup",
"lastDown": "Masa Mati Terakhir", "lastDown": "Masa Mati Terakhir",
"downDuration": "Jangkamasa Kematian", "downDuration": "Jangkamasa Kematian",
"sitesUp": "Sites Up", "sitesUp": "Sites Up",
"sitesDown": "Sites Down", "sitesDown": "Sites Down",
"paused": "Paused", "paused": "Tangguh",
"notyetchecked": "Belum Disemak", "notyetchecked": "Belum Disemak",
"up": "Up", "up": "Hidup",
"seemsdown": "Seperti Mati", "seemsdown": "Seperti Mati",
"down": "Down", "down": "Mati",
"unknown": "Unknown" "unknown": "Tidak Diketahui"
}, },
"calendar": { "calendar": {
"inCinemas": "Di pawagam", "inCinemas": "Di pawagam",
@@ -875,7 +869,7 @@
"totalfilesize": "Total Size" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Domains", "domains": "Domain",
"mailboxes": "Mailboxes", "mailboxes": "Mailboxes",
"mails": "Mails", "mails": "Mails",
"storage": "Storage" "storage": "Storage"
@@ -887,7 +881,7 @@
"plantit": { "plantit": {
"events": "Events", "events": "Events",
"plants": "Plants", "plants": "Plants",
"photos": "Photos", "photos": "Gambar",
"species": "Species" "species": "Species"
}, },
"gitea": { "gitea": {
@@ -908,13 +902,13 @@
"galleries": "Galleries", "galleries": "Galleries",
"performers": "Performers", "performers": "Performers",
"studios": "Studios", "studios": "Studios",
"movies": "Movies", "movies": "Filem",
"tags": "Tags", "tags": "Tanda nama",
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "Pengguna",
"recipes": "Recipes", "recipes": "Resipi",
"keywords": "Keywords" "keywords": "Keywords"
}, },
"homebox": { "homebox": {
@@ -922,18 +916,18 @@
"totalWithWarranty": "With Warranty", "totalWithWarranty": "With Warranty",
"locations": "Lokasi", "locations": "Lokasi",
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "Pengguna",
"totalValue": "Jumlah nilai" "totalValue": "Jumlah nilai"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alerts", "alerts": "Perhatian",
"bans": "Bans" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Connected",
"enabled": "Enabled", "enabled": "Didayakan",
"disabled": "Disabled", "disabled": "Dinyahdayakan",
"total": "Total" "total": "Jumlah"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
@@ -943,8 +937,8 @@
}, },
"myspeed": { "myspeed": {
"ping": "Ping", "ping": "Ping",
"download": "Download", "download": "Muat turun",
"upload": "Upload" "upload": "Muat naik"
}, },
"stocks": { "stocks": {
"stocks": "Stocks", "stocks": "Stocks",
@@ -955,17 +949,17 @@
}, },
"frigate": { "frigate": {
"cameras": "Cameras", "cameras": "Cameras",
"uptime": "Uptime", "uptime": "Masa Hidup",
"version": "Version" "version": "Versi"
}, },
"linkwarden": { "linkwarden": {
"links": "Links", "links": "Links",
"collections": "Collections", "collections": "Collections",
"tags": "Tags" "tags": "Tanda nama"
}, },
"zabbix": { "zabbix": {
"unclassified": "Not classified", "unclassified": "Not classified",
"information": "Information", "information": "Informasi",
"warning": "Warning", "warning": "Warning",
"average": "Average", "average": "Average",
"high": "High", "high": "High",
@@ -986,22 +980,22 @@
"tasksInProgress": "Tasks In Progress" "tasksInProgress": "Tasks In Progress"
}, },
"headscale": { "headscale": {
"name": "Name", "name": "Nama",
"address": "Address", "address": "Address",
"last_seen": "Last Seen", "last_seen": "Last Seen",
"status": "Status", "status": "Status",
"online": "Online", "online": "Dalam Talian",
"offline": "Offline" "offline": "Luar talian"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Nama",
"systems": "Systems", "systems": "Systems",
"up": "Up", "up": "Hidup",
"down": "Down", "down": "Mati",
"paused": "Paused", "paused": "Tangguh",
"pending": "Pending", "pending": "Tertunda",
"status": "Status", "status": "Status",
"updated": "Updated", "updated": "Dikemaskini",
"cpu": "CPU", "cpu": "CPU",
"memory": "MEM", "memory": "MEM",
"disk": "Disk", "disk": "Disk",
@@ -1011,10 +1005,10 @@
"apps": "Apps", "apps": "Apps",
"synced": "Synced", "synced": "Synced",
"outOfSync": "Out Of Sync", "outOfSync": "Out Of Sync",
"healthy": "Healthy", "healthy": "Sihat",
"degraded": "Degraded", "degraded": "Degraded",
"progressing": "Progressing", "progressing": "Progressing",
"missing": "Missing", "missing": "Hilang",
"suspended": "Suspended" "suspended": "Suspended"
}, },
"spoolman": { "spoolman": {
@@ -1028,9 +1022,9 @@
}, },
"apcups": { "apcups": {
"status": "Status", "status": "Status",
"load": "Load", "load": "Beban",
"bcharge": "Battery Charge", "bcharge": "Bateri dicas",
"timeleft": "Time Left" "timeleft": "Masa Tinggal"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
@@ -1038,50 +1032,27 @@
"archived": "Archived", "archived": "Archived",
"highlights": "Highlights", "highlights": "Highlights",
"lists": "Lists", "lists": "Lists",
"tags": "Tags" "tags": "Tanda nama"
}, },
"slskd": { "slskd": {
"slskStatus": "Network", "slskStatus": "Rangkaian",
"connected": "Connected", "connected": "Connected",
"disconnected": "Disconnected", "disconnected": "Sambungan Terputus",
"updateStatus": "Update", "updateStatus": "Update",
"update_yes": "Available", "update_yes": "Sudah Ada",
"update_no": "Up to Date", "update_no": "Terkemaskini",
"downloads": "Downloads", "downloads": "Downloads",
"uploads": "Uploads", "uploads": "Uploads",
"sharedFiles": "Files" "sharedFiles": "Files"
}, },
"jellystat": { "jellystat": {
"songs": "Songs", "songs": "Lagu",
"movies": "Movies", "movies": "Filem",
"episodes": "Episodes", "episodes": "Episod",
"other": "Other" "other": "Other"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -63,13 +63,13 @@
"wlan_users": "WLAN Gebruikers", "wlan_users": "WLAN Gebruikers",
"up": "UP", "up": "UP",
"down": "OFFLINE", "down": "OFFLINE",
"wait": "Please wait", "wait": "Even geduld",
"empty_data": "Subsysteem status onbekend" "empty_data": "Subsysteem status onbekend"
}, },
"docker": { "docker": {
"rx": "RX", "rx": "RX",
"tx": "TX", "tx": "TX",
"mem": "MEM", "mem": "GEH",
"cpu": "CPU", "cpu": "CPU",
"running": "Actief", "running": "Actief",
"offline": "Offline", "offline": "Offline",
@@ -83,7 +83,7 @@
"partial": "Gedeeltelijk" "partial": "Gedeeltelijk"
}, },
"ping": { "ping": {
"error": "Error", "error": "Fout",
"ping": "Ping", "ping": "Ping",
"down": "Offline", "down": "Offline",
"up": "Online", "up": "Online",
@@ -91,11 +91,11 @@
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "HTTP status", "http_status": "HTTP status",
"error": "Error", "error": "Fout",
"response": "Reactie", "response": "Reactie",
"down": "Down", "down": "Offline",
"up": "Up", "up": "Online",
"not_available": "Not Available" "not_available": "Niet Beschikbaar"
}, },
"emby": { "emby": {
"playing": "Afspelen", "playing": "Afspelen",
@@ -111,8 +111,8 @@
"offline": "Offline", "offline": "Offline",
"offline_alt": "Offline", "offline_alt": "Offline",
"online": "Bereikbaar", "online": "Bereikbaar",
"total": "Total", "total": "Totaal",
"unknown": "Unknown" "unknown": "Onbekend"
}, },
"evcc": { "evcc": {
"pv_power": "Productie", "pv_power": "Productie",
@@ -141,11 +141,11 @@
"connectionStatusDisconnecting": "Verbinding verbreken", "connectionStatusDisconnecting": "Verbinding verbreken",
"connectionStatusDisconnected": "Verbinding verbroken", "connectionStatusDisconnected": "Verbinding verbroken",
"connectionStatusConnected": "Verbonden", "connectionStatusConnected": "Verbonden",
"uptime": "Uptime", "uptime": "Online",
"maxDown": "Max. Download", "maxDown": "Max. Download",
"maxUp": "Max. Upload", "maxUp": "Max. Upload",
"down": "Down", "down": "Offline",
"up": "Up", "up": "Online",
"received": "Ontvangen", "received": "Ontvangen",
"sent": "Verzonden", "sent": "Verzonden",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP",
@@ -168,10 +168,10 @@
"passes": "Gepasseerd" "passes": "Gepasseerd"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "Afspelen",
"transcoding": "Transcoding", "transcoding": "Transcodering",
"bitrate": "Bitrate", "bitrate": "Bitrate",
"no_active": "No Active Streams", "no_active": "Geen Actieve Streams",
"plex_connection_error": "Controleer Plex Connectie" "plex_connection_error": "Controleer Plex Connectie"
}, },
"omada": { "omada": {
@@ -189,7 +189,7 @@
"plex": { "plex": {
"streams": "Actieve Streams", "streams": "Actieve Streams",
"albums": "Albums", "albums": "Albums",
"movies": "Movies", "movies": "Films",
"tv": "TV Series" "tv": "TV Series"
}, },
"sabnzbd": { "sabnzbd": {
@@ -206,13 +206,13 @@
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Delen"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Delen"
}, },
"qnap": { "qnap": {
"cpuUsage": "CPU Verbruik", "cpuUsage": "CPU Verbruik",
@@ -226,7 +226,7 @@
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Delen"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "Cache Hit Bytes", "cachehitbytes": "Cache Hit Bytes",
@@ -236,31 +236,31 @@
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Delen"
}, },
"sonarr": { "sonarr": {
"wanted": "Gezocht", "wanted": "Gezocht",
"queued": "Wachtrij", "queued": "Wachtrij",
"series": "Series", "series": "Series",
"queue": "Queue", "queue": "Wachtrij",
"unknown": "Unknown" "unknown": "Onbekend"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Gezocht",
"missing": "Ontbreekt", "missing": "Ontbreekt",
"queued": "Queued", "queued": "Wachtrij",
"movies": "Movies", "movies": "Films",
"queue": "Queue", "queue": "Wachtrij",
"unknown": "Unknown" "unknown": "Onbekend"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Gezocht",
"queued": "Queued", "queued": "Wachtrij",
"artists": "Artiesten" "artists": "Artiesten"
}, },
"readarr": { "readarr": {
"wanted": "Wanted", "wanted": "Gezocht",
"queued": "Queued", "queued": "Wachtrij",
"books": "Boeken" "books": "Boeken"
}, },
"bazarr": { "bazarr": {
@@ -273,19 +273,19 @@
"available": "Beschikbaar" "available": "Beschikbaar"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pending", "pending": "In afwachting",
"approved": "Approved", "approved": "Goedgekeurd",
"available": "Available" "available": "Beschikbaar"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "In afwachting",
"processing": "Verwerken", "processing": "Verwerken",
"approved": "Approved", "approved": "Goedgekeurd",
"available": "Available" "available": "Beschikbaar"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Totaal",
"connected": "Connected", "connected": "Verbonden",
"new_devices": "Nieuwe Apparaten", "new_devices": "Nieuwe Apparaten",
"down_alerts": "Geen verbinding" "down_alerts": "Geen verbinding"
}, },
@@ -296,8 +296,8 @@
"gravity": "Gravity" "gravity": "Gravity"
}, },
"adguard": { "adguard": {
"queries": "Queries", "queries": "Verzoeken",
"blocked": "Blocked", "blocked": "Geblokkeerd",
"filtered": "Gefilterd", "filtered": "Gefilterd",
"latency": "Latentie" "latency": "Latentie"
}, },
@@ -307,15 +307,15 @@
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "Actief",
"stopped": "Gestopt", "stopped": "Gestopt",
"total": "Total" "total": "Totaal"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Gedownload",
"nondownload": "Niet gedownload", "nondownload": "Niet gedownload",
"read": "Read", "read": "Gelezen",
"unread": "Unread", "unread": "Ongelezen",
"downloadedread": "Gedownload & gelezen", "downloadedread": "Gedownload & gelezen",
"downloadedunread": "Gedownload & ongelezen", "downloadedunread": "Gedownload & ongelezen",
"nondownloadedread": "Niet-gedownload & gelezen", "nondownloadedread": "Niet-gedownload & gelezen",
@@ -336,7 +336,7 @@
"ago": "{{value}} Geleden" "ago": "{{value}} Geleden"
}, },
"technitium": { "technitium": {
"totalQueries": "Queries", "totalQueries": "Verzoeken",
"totalNoError": "Geslaagd", "totalNoError": "Geslaagd",
"totalServerFailure": "Gefaald", "totalServerFailure": "Gefaald",
"totalNxDomain": "NX Domains", "totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative", "totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive", "totalRecursive": "Recursive",
"totalCached": "Gecached", "totalCached": "Gecached",
"totalBlocked": "Blocked", "totalBlocked": "Geblokkeerd",
"totalDropped": "Dropped", "totalDropped": "Dropped",
"totalClients": "Cliënten" "totalClients": "Cliënten"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "Wachtrij",
"processed": "Verwerkt", "processed": "Verwerkt",
"errored": "Fout", "errored": "Fout",
"saved": "Opgeslagen" "saved": "Opgeslagen"
@@ -359,20 +359,14 @@
"services": "Diensten", "services": "Diensten",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "Geen Actieve Streams",
"please_wait": "Even geduld aub" "please_wait": "Even geduld aub"
}, },
"npm": { "npm": {
"enabled": "Ingeschakeld", "enabled": "Ingeschakeld",
"disabled": "Uitgeschakeld", "disabled": "Uitgeschakeld",
"total": "Total" "total": "Totaal"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Configureer een of meer crypto eenheden om bij te houden", "configure": "Configureer een of meer crypto eenheden om bij te houden",
@@ -383,19 +377,19 @@
}, },
"gotify": { "gotify": {
"apps": "Applicaties", "apps": "Applicaties",
"clients": "Clients", "clients": "Cliënten",
"messages": "Berichten" "messages": "Berichten"
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "Indexeerders", "enableIndexers": "Indexeerders",
"numberOfGrabs": "Grabs", "numberOfGrabs": "Grabs",
"numberOfQueries": "Queries", "numberOfQueries": "Verzoeken",
"numberOfFailGrabs": "Ophalen mislukt", "numberOfFailGrabs": "Ophalen mislukt",
"numberOfFailQueries": "Mislukte verzoeken" "numberOfFailQueries": "Mislukte verzoeken"
}, },
"jackett": { "jackett": {
"configured": "Geconfigureerd", "configured": "Geconfigureerd",
"errored": "Errored" "errored": "Fout"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Sessies", "numActiveSessions": "Sessies",
@@ -404,52 +398,52 @@
"transferRate": "Rate" "transferRate": "Rate"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "Gebruikers",
"status_count": "Berichten", "status_count": "Berichten",
"domain_count": "Domeinen" "domain_count": "Domeinen"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "Gezocht",
"queued": "Queued", "queued": "Wachtrij",
"series": "Series" "series": "Series"
}, },
"minecraft": { "minecraft": {
"players": "Spelers", "players": "Spelers",
"version": "Versie", "version": "Versie",
"status": "Status", "status": "Status",
"up": "Online", "up": "Bereikbaar",
"down": "Offline" "down": "Offline"
}, },
"miniflux": { "miniflux": {
"read": "Gelezen", "read": "Gelezen",
"unread": "Unread" "unread": "Ongelezen"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "Gebruikers",
"loginsLast24H": "Logins (24u)", "loginsLast24H": "Logins (24u)",
"failedLoginsLast24H": "Mislukte Logins (24u)" "failedLoginsLast24H": "Mislukte Logins (24u)"
}, },
"proxmox": { "proxmox": {
"mem": "MEM", "mem": "GEH",
"cpu": "CPU", "cpu": "CPU",
"lxc": "LXC", "lxc": "LXC",
"vms": "VM's" "vms": "VM's"
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Load", "load": "Belasting",
"wait": "Please wait", "wait": "Even geduld",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temp", "_temp": "Temp",
"warn": "Waarschuwing", "warn": "Waarschuwing",
"uptime": "UP", "uptime": "UP",
"total": "Total", "total": "Totaal",
"free": "Free", "free": "Vrij",
"used": "Used", "used": "Gebruikt",
"days": "d", "days": "d",
"hours": "h", "hours": "u",
"crit": "Kritiek", "crit": "Kritiek",
"read": "Read", "read": "Gelezen",
"write": "Schrijven", "write": "Schrijven",
"gpu": "GPU", "gpu": "GPU",
"mem": "Mem", "mem": "Mem",
@@ -470,57 +464,57 @@
"1-day": "Overwegend Zonnig", "1-day": "Overwegend Zonnig",
"1-night": "Overwegend Helder", "1-night": "Overwegend Helder",
"2-day": "Gedeeltelijk Bewolkt", "2-day": "Gedeeltelijk Bewolkt",
"2-night": "Partly Cloudy", "2-night": "Gedeeltelijk Bewolkt",
"3-day": "Bewolkt", "3-day": "Bewolkt",
"3-night": "Cloudy", "3-night": "Bewolkt",
"45-day": "Mistig", "45-day": "Mistig",
"45-night": "Foggy", "45-night": "Mistig",
"48-day": "Foggy", "48-day": "Mistig",
"48-night": "Foggy", "48-night": "Mistig",
"51-day": "Motregen", "51-day": "Motregen",
"51-night": "Light Drizzle", "51-night": "Motregen",
"53-day": "Druilerig", "53-day": "Druilerig",
"53-night": "Drizzle", "53-night": "Druilerig",
"55-day": "Zware motregen", "55-day": "Zware motregen",
"55-night": "Heavy Drizzle", "55-night": "Zware motregen",
"56-day": "Lichte opvriezende motregen", "56-day": "Lichte opvriezende motregen",
"56-night": "Light Freezing Drizzle", "56-night": "Lichte opvriezende motregen",
"57-day": "Opvriezende motregen", "57-day": "Opvriezende motregen",
"57-night": "Freezing Drizzle", "57-night": "Opvriezende motregen",
"61-day": "Lichte Regen", "61-day": "Lichte Regen",
"61-night": "Light Rain", "61-night": "Lichte Regen",
"63-day": "Regen", "63-day": "Regen",
"63-night": "Rain", "63-night": "Regen",
"65-day": "Hevige Regen", "65-day": "Hevige Regen",
"65-night": "Heavy Rain", "65-night": "Hevige Regen",
"66-day": "Opvriezende regen", "66-day": "Opvriezende regen",
"66-night": "Freezing Rain", "66-night": "Opvriezende regen",
"67-day": "Freezing Rain", "67-day": "Opvriezende regen",
"67-night": "Freezing Rain", "67-night": "Opvriezende regen",
"71-day": "Lichte Sneeuw", "71-day": "Lichte Sneeuw",
"71-night": "Light Snow", "71-night": "Lichte Sneeuw",
"73-day": "Sneeuw", "73-day": "Sneeuw",
"73-night": "Snow", "73-night": "Sneeuw",
"75-day": "Hevige Sneeuw", "75-day": "Hevige Sneeuw",
"75-night": "Heavy Snow", "75-night": "Hevige Sneeuw",
"77-day": "Sneeuw korrels", "77-day": "Sneeuw korrels",
"77-night": "Snow Grains", "77-night": "Sneeuw korrels",
"80-day": "Lichte regenbui", "80-day": "Lichte regenbui",
"80-night": "Light Showers", "80-night": "Lichte regenbui",
"81-day": "Regenbui", "81-day": "Regenbui",
"81-night": "Showers", "81-night": "Regenbui",
"82-day": "Zware Regenbuien", "82-day": "Zware Regenbuien",
"82-night": "Heavy Showers", "82-night": "Zware Regenbuien",
"85-day": "Sneeuwbuien", "85-day": "Sneeuwbuien",
"85-night": "Snow Showers", "85-night": "Sneeuwbuien",
"86-day": "Snow Showers", "86-day": "Sneeuwbuien",
"86-night": "Snow Showers", "86-night": "Sneeuwbuien",
"95-day": "Onweersbui", "95-day": "Onweersbui",
"95-night": "Thunderstorm", "95-night": "Onweersbui",
"96-day": "Onweersbui Met Hagel", "96-day": "Onweersbui Met Hagel",
"96-night": "Thunderstorm With Hail", "96-night": "Onweersbui Met Hagel",
"99-day": "Thunderstorm With Hail", "99-day": "Onweersbui Met Hagel",
"99-night": "Thunderstorm With Hail" "99-night": "Onweersbui Met Hagel"
}, },
"homebridge": { "homebridge": {
"available_update": "Systeem", "available_update": "Systeem",
@@ -529,15 +523,15 @@
"up_to_date": "Bijgewerkt", "up_to_date": "Bijgewerkt",
"child_bridges": "Onderliggende bridges", "child_bridges": "Onderliggende bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Online",
"pending": "Pending", "pending": "In afwachting",
"down": "Down" "down": "Offline"
}, },
"healthchecks": { "healthchecks": {
"new": "Nieuw", "new": "Nieuw",
"up": "Up", "up": "Online",
"grace": "In de respijt periode", "grace": "In de respijt periode",
"down": "Down", "down": "Offline",
"paused": "Gepauzeerd", "paused": "Gepauzeerd",
"status": "Status", "status": "Status",
"last_ping": "Laatste Ping", "last_ping": "Laatste Ping",
@@ -549,27 +543,27 @@
"containers_failed": "Gefaald" "containers_failed": "Gefaald"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "Goedgekeurd",
"rejectedPushes": "Afgewezen", "rejectedPushes": "Afgewezen",
"filters": "Filters", "filters": "Filters",
"indexers": "Indexers" "indexers": "Indexeerders"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "Wachtrij",
"videos": "Video's", "videos": "Video's",
"channels": "Kanalen", "channels": "Kanalen",
"playlists": "Speellijsten" "playlists": "Speellijsten"
}, },
"truenas": { "truenas": {
"load": "Belasting", "load": "Belasting",
"uptime": "Uptime", "uptime": "Online",
"alerts": "Alerts" "alerts": "Meldingen"
}, },
"pyload": { "pyload": {
"speed": "Snelheid", "speed": "Snelheid",
"active": "Active", "active": "Actief",
"queue": "Queue", "queue": "Wachtrij",
"total": "Total" "total": "Totaal"
}, },
"gluetun": { "gluetun": {
"public_ip": "Publiek IP", "public_ip": "Publiek IP",
@@ -578,47 +572,47 @@
"port_forwarded": "Port Forwarded" "port_forwarded": "Port Forwarded"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Channels", "channels": "Kanalen",
"hd": "HD", "hd": "HD",
"tunerCount": "Tuners", "tunerCount": "Tuners",
"channelNumber": "Kanaal", "channelNumber": "Kanaal",
"channelNetwork": "Netwerk", "channelNetwork": "Netwerk",
"signalStrength": "Sterkte", "signalStrength": "Sterkte",
"signalQuality": "Kwaliteit", "signalQuality": "Kwaliteit",
"symbolQuality": "Quality", "symbolQuality": "Kwaliteit",
"networkRate": "Bitrate", "networkRate": "Bitrate",
"clientIP": "Client" "clientIP": "Client"
}, },
"scrutiny": { "scrutiny": {
"passed": "Geslaagd", "passed": "Geslaagd",
"failed": "Failed", "failed": "Gefaald",
"unknown": "Unknown" "unknown": "Onbekend"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Postvak In", "inbox": "Postvak In",
"total": "Total" "total": "Totaal"
}, },
"peanut": { "peanut": {
"battery_charge": "Batterij opladen", "battery_charge": "Batterij opladen",
"ups_load": "UPS-belasting", "ups_load": "UPS-belasting",
"ups_status": "UPS status", "ups_status": "UPS status",
"online": "Online", "online": "Bereikbaar",
"on_battery": "Op batterij", "on_battery": "Op batterij",
"low_battery": "Batterij bijna leeg" "low_battery": "Batterij bijna leeg"
}, },
"nextdns": { "nextdns": {
"wait": "Please Wait", "wait": "Even geduld aub",
"no_devices": "Geen Apparaat Data Ontvangen" "no_devices": "Geen Apparaat Data Ontvangen"
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "CPU Belasting", "cpuLoad": "CPU Belasting",
"memoryUsed": "Geheugen Gebruikt", "memoryUsed": "Geheugen Gebruikt",
"uptime": "Uptime", "uptime": "Online",
"numberOfLeases": "Leases" "numberOfLeases": "Leases"
}, },
"xteve": { "xteve": {
"streams_all": "Alle Streams", "streams_all": "Alle Streams",
"streams_active": "Active Streams", "streams_active": "Actieve Streams",
"streams_xepg": "XEPG Kanalen" "streams_xepg": "XEPG Kanalen"
}, },
"opendtu": { "opendtu": {
@@ -628,7 +622,7 @@
"limit": "Limiet" "limit": "Limiet"
}, },
"opnsense": { "opnsense": {
"cpu": "CPU Load", "cpu": "CPU Belasting",
"memory": "Actief Geheugen", "memory": "Actief Geheugen",
"wanUpload": "WAN Upload", "wanUpload": "WAN Upload",
"wanDownload": "WAN Download" "wanDownload": "WAN Download"
@@ -653,8 +647,8 @@
"load": "Gem. Load", "load": "Gem. Load",
"memory": "Mem Gebruik", "memory": "Mem Gebruik",
"wanStatus": "WAN Status", "wanStatus": "WAN Status",
"up": "Up", "up": "Online",
"down": "Down", "down": "Offline",
"temp": "Temp", "temp": "Temp",
"disk": "Schijf Gebruik", "disk": "Schijf Gebruik",
"wanIP": "WAN IP" "wanIP": "WAN IP"
@@ -666,15 +660,15 @@
"memory_usage": "Geheugen" "memory_usage": "Geheugen"
}, },
"immich": { "immich": {
"users": "Users", "users": "Gebruikers",
"photos": "Foto's", "photos": "Foto's",
"videos": "Videos", "videos": "Video's",
"storage": "Opslag" "storage": "Opslag"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Sites Bereikbaar", "up": "Sites Bereikbaar",
"down": "Sites Onbereikbaar", "down": "Sites Onbereikbaar",
"uptime": "Uptime", "uptime": "Online",
"incident": "Incident", "incident": "Incident",
"m": "m" "m": "m"
}, },
@@ -687,28 +681,28 @@
"komga": { "komga": {
"libraries": "Bibliotheken", "libraries": "Bibliotheken",
"series": "Series", "series": "Series",
"books": "Books" "books": "Boeken"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Dagen",
"uptime": "Uptime", "uptime": "Online",
"volumeAvailable": "Available" "volumeAvailable": "Beschikbaar"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Series",
"issues": "Problemen", "issues": "Problemen",
"wanted": "Wanted" "wanted": "Gezocht"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Albums",
"photos": "Photos", "photos": "Foto's",
"videos": "Videos", "videos": "Video's",
"people": "Personen" "people": "Personen"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "Wachtrij",
"processing": "Processing", "processing": "Verwerken",
"processed": "Processed", "processed": "Verwerkt",
"time": "Tijd" "time": "Tijd"
}, },
"firefly": { "firefly": {
@@ -734,7 +728,7 @@
"size": "Grootte", "size": "Grootte",
"lastrun": "Laatste Run", "lastrun": "Laatste Run",
"nextrun": "Volgende Run", "nextrun": "Volgende Run",
"failed": "Failed" "failed": "Gefaald"
}, },
"unmanic": { "unmanic": {
"active_workers": "Actieve Werkers", "active_workers": "Actieve Werkers",
@@ -751,20 +745,20 @@
"targets_total": "Totaal aantal doelen" "targets_total": "Totaal aantal doelen"
}, },
"gatus": { "gatus": {
"up": "Sites Up", "up": "Sites Bereikbaar",
"down": "Sites Down", "down": "Sites Onbereikbaar",
"uptime": "Uptime" "uptime": "Online"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Today", "gross_percent_today": "Vandaag",
"gross_percent_1y": "Een jaar", "gross_percent_1y": "Een jaar",
"gross_percent_max": "Altijd" "gross_percent_max": "Altijd"
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasts", "podcasts": "Podcasts",
"books": "Books", "books": "Boeken",
"podcastsDuration": "Duur", "podcastsDuration": "Duur",
"booksDuration": "Duration" "booksDuration": "Duur"
}, },
"homeassistant": { "homeassistant": {
"people_home": "Mensen thuis", "people_home": "Mensen thuis",
@@ -776,20 +770,20 @@
"updates": "Updates" "updates": "Updates"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "Boeken",
"authors": "Auteurs", "authors": "Auteurs",
"categories": "Categories", "categories": "Categorieën",
"series": "Series" "series": "Series"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "Wachtrij",
"downloadBytesRemaining": "Remaining", "downloadBytesRemaining": "Resterend",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Grootte",
"downloadSpeed": "Speed" "downloadSpeed": "Snelheid"
}, },
"kavita": { "kavita": {
"seriesCount": "Series", "seriesCount": "Series",
"totalFiles": "Files" "totalFiles": "Bestanden"
}, },
"azuredevops": { "azuredevops": {
"result": "Resultaat", "result": "Resultaat",
@@ -797,21 +791,21 @@
"buildId": "Build ID", "buildId": "Build ID",
"succeeded": "Geslaagd", "succeeded": "Geslaagd",
"notStarted": "Niet gestart", "notStarted": "Niet gestart",
"failed": "Failed", "failed": "Gefaald",
"canceled": "Afgebroken", "canceled": "Afgebroken",
"inProgress": "Voortgaand", "inProgress": "Voortgaand",
"totalPrs": "Totaal PRs", "totalPrs": "Totaal PRs",
"myPrs": "Mijn PR's", "myPrs": "Mijn PR's",
"approved": "Approved" "approved": "Goedgekeurd"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "Status",
"online": "Online", "online": "Bereikbaar",
"offline": "Offline", "offline": "Offline",
"name": "Naam", "name": "Naam",
"map": "Kaart", "map": "Kaart",
"currentPlayers": "Huidige spelers", "currentPlayers": "Huidige spelers",
"players": "Players", "players": "Spelers",
"maxPlayers": "Max spelers", "maxPlayers": "Max spelers",
"bots": "Bots", "bots": "Bots",
"ping": "Ping" "ping": "Ping"
@@ -824,39 +818,39 @@
}, },
"mealie": { "mealie": {
"recipes": "Recepten", "recipes": "Recepten",
"users": "Users", "users": "Gebruikers",
"categories": "Categories", "categories": "Categorieën",
"tags": "Label" "tags": "Label"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Downloaden", "downloading": "Downloaden",
"total": "Total", "total": "Totaal",
"running": "Running", "running": "Actief",
"stopped": "Stopped", "stopped": "Gestopt",
"passed": "Passed", "passed": "Geslaagd",
"failed": "Failed" "failed": "Gefaald"
}, },
"openwrt": { "openwrt": {
"uptime": "Uptime", "uptime": "Online",
"cpuLoad": "CPU Load Gem. (5m)", "cpuLoad": "CPU Load Gem. (5m)",
"up": "Up", "up": "Online",
"down": "Down", "down": "Offline",
"bytesTx": "Verzonden", "bytesTx": "Verzonden",
"bytesRx": "Received" "bytesRx": "Ontvangen"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "Status",
"uptime": "Uptime", "uptime": "Online",
"lastDown": "Laatste Downtime", "lastDown": "Laatste Downtime",
"downDuration": "Duur Downtime", "downDuration": "Duur Downtime",
"sitesUp": "Sites Up", "sitesUp": "Sites Bereikbaar",
"sitesDown": "Sites Down", "sitesDown": "Sites Onbereikbaar",
"paused": "Paused", "paused": "Gepauzeerd",
"notyetchecked": "Nog niet gecontroleerd", "notyetchecked": "Nog niet gecontroleerd",
"up": "Up", "up": "Online",
"seemsdown": "Lijkt onbereikbaar", "seemsdown": "Lijkt onbereikbaar",
"down": "Down", "down": "Offline",
"unknown": "Unknown" "unknown": "Onbekend"
}, },
"calendar": { "calendar": {
"inCinemas": "In de bioscoop", "inCinemas": "In de bioscoop",
@@ -875,10 +869,10 @@
"totalfilesize": "Totale grootte" "totalfilesize": "Totale grootte"
}, },
"mailcow": { "mailcow": {
"domains": "Domains", "domains": "Domeinen",
"mailboxes": "Mailboxen", "mailboxes": "Mailboxen",
"mails": "Mails", "mails": "Mails",
"storage": "Storage" "storage": "Opslag"
}, },
"netdata": { "netdata": {
"warnings": "Waarschuwingen", "warnings": "Waarschuwingen",
@@ -887,12 +881,12 @@
"plantit": { "plantit": {
"events": "Gebeurtenissen", "events": "Gebeurtenissen",
"plants": "Planten", "plants": "Planten",
"photos": "Photos", "photos": "Foto's",
"species": "Soorten" "species": "Soorten"
}, },
"gitea": { "gitea": {
"notifications": "Notificaties", "notifications": "Notificaties",
"issues": "Issues", "issues": "Problemen",
"pulls": "Pull Requests", "pulls": "Pull Requests",
"repositories": "Repositories" "repositories": "Repositories"
}, },
@@ -908,13 +902,13 @@
"galleries": "Galerijen", "galleries": "Galerijen",
"performers": "Uitvoerenden", "performers": "Uitvoerenden",
"studios": "Studio's", "studios": "Studio's",
"movies": "Movies", "movies": "Films",
"tags": "Tags", "tags": "Label",
"oCount": "O Aantal" "oCount": "O Aantal"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "Gebruikers",
"recipes": "Recipes", "recipes": "Recepten",
"keywords": "Trefwoorden" "keywords": "Trefwoorden"
}, },
"homebox": { "homebox": {
@@ -922,18 +916,18 @@
"totalWithWarranty": "Met garantie", "totalWithWarranty": "Met garantie",
"locations": "Locaties", "locations": "Locaties",
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "Gebruikers",
"totalValue": "Totale waarde" "totalValue": "Totale waarde"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alerts", "alerts": "Meldingen",
"bans": "Bans" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Verbonden",
"enabled": "Enabled", "enabled": "Ingeschakeld",
"disabled": "Disabled", "disabled": "Uitgeschakeld",
"total": "Total" "total": "Totaal"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
@@ -955,17 +949,17 @@
}, },
"frigate": { "frigate": {
"cameras": "Camera's", "cameras": "Camera's",
"uptime": "Uptime", "uptime": "Online",
"version": "Version" "version": "Versie"
}, },
"linkwarden": { "linkwarden": {
"links": "Links", "links": "Links",
"collections": "Collections", "collections": "Collections",
"tags": "Tags" "tags": "Label"
}, },
"zabbix": { "zabbix": {
"unclassified": "Niet geclassificeerd", "unclassified": "Niet geclassificeerd",
"information": "Information", "information": "Informatie",
"warning": "Waarschuwingen", "warning": "Waarschuwingen",
"average": "Average", "average": "Average",
"high": "High", "high": "High",
@@ -986,24 +980,24 @@
"tasksInProgress": "Taken In Uitvoering" "tasksInProgress": "Taken In Uitvoering"
}, },
"headscale": { "headscale": {
"name": "Name", "name": "Naam",
"address": "Address", "address": "Adres",
"last_seen": "Last Seen", "last_seen": "Laatst Gezien",
"status": "Status", "status": "Status",
"online": "Online", "online": "Bereikbaar",
"offline": "Offline" "offline": "Offline"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Naam",
"systems": "Systemen", "systems": "Systemen",
"up": "Up", "up": "Online",
"down": "Down", "down": "Offline",
"paused": "Paused", "paused": "Gepauzeerd",
"pending": "Pending", "pending": "In afwachting",
"status": "Status", "status": "Status",
"updated": "Updated", "updated": "Bijgewerkt",
"cpu": "CPU", "cpu": "CPU",
"memory": "MEM", "memory": "GEH",
"disk": "Schijf", "disk": "Schijf",
"network": "NET" "network": "NET"
}, },
@@ -1011,26 +1005,26 @@
"apps": "Apps", "apps": "Apps",
"synced": "Gesynchroniseerd", "synced": "Gesynchroniseerd",
"outOfSync": "Niet gesynchroniseerd", "outOfSync": "Niet gesynchroniseerd",
"healthy": "Healthy", "healthy": "Gezond",
"degraded": "Gedegradeerd", "degraded": "Gedegradeerd",
"progressing": "Doorvoeren", "progressing": "Doorvoeren",
"missing": "Missing", "missing": "Ontbreekt",
"suspended": "Onderbroken" "suspended": "Onderbroken"
}, },
"spoolman": { "spoolman": {
"loading": "Loading" "loading": "Laden"
}, },
"gitlab": { "gitlab": {
"groups": "Groepen", "groups": "Groepen",
"issues": "Issues", "issues": "Problemen",
"merges": "Merge Verzoeken", "merges": "Merge Verzoeken",
"projects": "Projecten" "projects": "Projecten"
}, },
"apcups": { "apcups": {
"status": "Status", "status": "Status",
"load": "Load", "load": "Belasting",
"bcharge": "Battery Charge", "bcharge": "Batterij opladen",
"timeleft": "Time Left" "timeleft": "Resterende Tijd"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
@@ -1038,50 +1032,27 @@
"archived": "Archived", "archived": "Archived",
"highlights": "Highlights", "highlights": "Highlights",
"lists": "Lists", "lists": "Lists",
"tags": "Tags" "tags": "Label"
}, },
"slskd": { "slskd": {
"slskStatus": "Network", "slskStatus": "Netwerk",
"connected": "Connected", "connected": "Verbonden",
"disconnected": "Disconnected", "disconnected": "Verbinding verbroken",
"updateStatus": "Update", "updateStatus": "Update",
"update_yes": "Available", "update_yes": "Beschikbaar",
"update_no": "Up to Date", "update_no": "Bijgewerkt",
"downloads": "Downloads", "downloads": "Downloads",
"uploads": "Uploads", "uploads": "Uploads",
"sharedFiles": "Files" "sharedFiles": "Bestanden"
}, },
"jellystat": { "jellystat": {
"songs": "Songs", "songs": "Nummers",
"movies": "Movies", "movies": "Films",
"episodes": "Episodes", "episodes": "Afleveringen",
"other": "Other" "other": "Other"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -61,9 +61,9 @@
"wlan_devices": "WLAN-enheter", "wlan_devices": "WLAN-enheter",
"lan_users": "LAN Brukere", "lan_users": "LAN Brukere",
"wlan_users": "WLAN Brukere", "wlan_users": "WLAN Brukere",
"up": "UP", "up": "OPP",
"down": "NEDE", "down": "NEDE",
"wait": "Please wait", "wait": "Vennligst vent",
"empty_data": "Ukjent undersystemstatus" "empty_data": "Ukjent undersystemstatus"
}, },
"docker": { "docker": {
@@ -83,7 +83,7 @@
"partial": "Delvis" "partial": "Delvis"
}, },
"ping": { "ping": {
"error": "Error", "error": "Feil",
"ping": "Responstid", "ping": "Responstid",
"down": "Nede", "down": "Nede",
"up": "Oppe", "up": "Oppe",
@@ -91,11 +91,11 @@
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "HTTP status", "http_status": "HTTP status",
"error": "Error", "error": "Feil",
"response": "Svar", "response": "Svar",
"down": "Down", "down": "Nede",
"up": "Up", "up": "Oppe",
"not_available": "Not Available" "not_available": "Ikke tilgjengelig"
}, },
"emby": { "emby": {
"playing": "Spiller", "playing": "Spiller",
@@ -108,11 +108,11 @@
"songs": "Sanger" "songs": "Sanger"
}, },
"esphome": { "esphome": {
"offline": "Offline", "offline": "Frakoblet",
"offline_alt": "Offline", "offline_alt": "Frakoblet",
"online": "På nett", "online": "På nett",
"total": "Total", "total": "Totalt",
"unknown": "Unknown" "unknown": "Ukjent"
}, },
"evcc": { "evcc": {
"pv_power": "Produksjon", "pv_power": "Produksjon",
@@ -141,11 +141,11 @@
"connectionStatusDisconnecting": "Kobler fra", "connectionStatusDisconnecting": "Kobler fra",
"connectionStatusDisconnected": "Frakoblet", "connectionStatusDisconnected": "Frakoblet",
"connectionStatusConnected": "Tilkoblet", "connectionStatusConnected": "Tilkoblet",
"uptime": "Uptime", "uptime": "Oppetid",
"maxDown": "Maks. Ned", "maxDown": "Maks. Ned",
"maxUp": "Max. Opp", "maxUp": "Max. Opp",
"down": "Down", "down": "Nede",
"up": "Up", "up": "Oppe",
"received": "Mottatt", "received": "Mottatt",
"sent": "Sendt", "sent": "Sendt",
"externalIPAddress": "Ekstern IP", "externalIPAddress": "Ekstern IP",
@@ -168,10 +168,10 @@
"passes": "Pasninger" "passes": "Pasninger"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "Spiller",
"transcoding": "Transcoding", "transcoding": "Transkoding",
"bitrate": "Bitrate", "bitrate": "Bitrate",
"no_active": "No Active Streams", "no_active": "Ingen aktive strømminger",
"plex_connection_error": "Kontroller Plex tilkoblingen" "plex_connection_error": "Kontroller Plex tilkoblingen"
}, },
"omada": { "omada": {
@@ -189,28 +189,28 @@
"plex": { "plex": {
"streams": "Aktive strømmninger", "streams": "Aktive strømmninger",
"albums": "Album", "albums": "Album",
"movies": "Movies", "movies": "Film",
"tv": "TV serier" "tv": "TV serier"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "Ranger",
"queue": "Kø", "queue": "Kø",
"timeleft": "Gjenstående tid" "timeleft": "Gjenstående tid"
}, },
"rutorrent": { "rutorrent": {
"active": "Aktiv", "active": "Aktiv",
"upload": "Upload", "upload": "Opplastning",
"download": "Download" "download": "Last ned"
}, },
"transmission": { "transmission": {
"download": "Download", "download": "Last ned",
"upload": "Upload", "upload": "Opplastning",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Download", "download": "Last ned",
"upload": "Upload", "upload": "Opplastning",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -223,8 +223,8 @@
"invalid": "Ugyldig" "invalid": "Ugyldig"
}, },
"deluge": { "deluge": {
"download": "Download", "download": "Last ned",
"upload": "Upload", "upload": "Opplastning",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -233,34 +233,34 @@
"cachemissbytes": "Cache Miss Bytes" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Last ned",
"upload": "Upload", "upload": "Opplastning",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"sonarr": { "sonarr": {
"wanted": "Ønsket", "wanted": "Ønsket",
"queued": "Ventende", "queued": "Ventende",
"series": "Series", "series": "Serie",
"queue": "Queue", "queue": "",
"unknown": "Unknown" "unknown": "Ukjent"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Ønsket",
"missing": "Mangler", "missing": "Mangler",
"queued": "Queued", "queued": "Ventende",
"movies": "Movies", "movies": "Film",
"queue": "Queue", "queue": "",
"unknown": "Unknown" "unknown": "Ukjent"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Ønsket",
"queued": "Queued", "queued": "Ventende",
"artists": "Artister" "artists": "Artister"
}, },
"readarr": { "readarr": {
"wanted": "Wanted", "wanted": "Ønsket",
"queued": "Queued", "queued": "Ventende",
"books": "Bøker" "books": "Bøker"
}, },
"bazarr": { "bazarr": {
@@ -273,19 +273,19 @@
"available": "Tilgjengelig" "available": "Tilgjengelig"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pending", "pending": "Ventende",
"approved": "Approved", "approved": "Godkjent",
"available": "Available" "available": "Tilgjengelig"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "Ventende",
"processing": "Behandler", "processing": "Behandler",
"approved": "Approved", "approved": "Godkjent",
"available": "Available" "available": "Tilgjengelig"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Totalt",
"connected": "Connected", "connected": "Tilkoblet",
"new_devices": "Nye enheter", "new_devices": "Nye enheter",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
}, },
@@ -296,26 +296,26 @@
"gravity": "Gravitasjon" "gravity": "Gravitasjon"
}, },
"adguard": { "adguard": {
"queries": "Queries", "queries": "Spørringer",
"blocked": "Blocked", "blocked": "Blokkert",
"filtered": "Filtrert", "filtered": "Filtrert",
"latency": "Responstid" "latency": "Responstid"
}, },
"speedtest": { "speedtest": {
"upload": "Upload", "upload": "Opplastning",
"download": "Download", "download": "Last ned",
"ping": "Ping" "ping": "Responstid"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "Kjører",
"stopped": "Stoppet", "stopped": "Stoppet",
"total": "Total" "total": "Totalt"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Nedlastede",
"nondownload": "Non-Downloaded", "nondownload": "Non-Downloaded",
"read": "Read", "read": "Read",
"unread": "Unread", "unread": "Ulest",
"downloadedread": "Downloaded & Read", "downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread", "downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read", "nondownloadedread": "Non-Downloaded & Read",
@@ -336,7 +336,7 @@
"ago": "{{value}} Ago" "ago": "{{value}} Ago"
}, },
"technitium": { "technitium": {
"totalQueries": "Queries", "totalQueries": "Spørringer",
"totalNoError": "Success", "totalNoError": "Success",
"totalServerFailure": "Failures", "totalServerFailure": "Failures",
"totalNxDomain": "NX Domains", "totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative", "totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive", "totalRecursive": "Recursive",
"totalCached": "Cached", "totalCached": "Cached",
"totalBlocked": "Blocked", "totalBlocked": "Blokkert",
"totalDropped": "Dropped", "totalDropped": "Dropped",
"totalClients": "Klienter" "totalClients": "Klienter"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "",
"processed": "Behandlet", "processed": "Behandlet",
"errored": "Feilet", "errored": "Feilet",
"saved": "Lagret" "saved": "Lagret"
@@ -359,20 +359,14 @@
"services": "Tjenester", "services": "Tjenester",
"middleware": "Mellomvare" "middleware": "Mellomvare"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "Ingen aktive strømminger",
"please_wait": "Vennligst vent" "please_wait": "Vennligst vent"
}, },
"npm": { "npm": {
"enabled": "Aktivert", "enabled": "Aktivert",
"disabled": "Deaktivert", "disabled": "Deaktivert",
"total": "Total" "total": "Totalt"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Konfigurer én eller flere krypteringsvalutaer som skal spores", "configure": "Konfigurer én eller flere krypteringsvalutaer som skal spores",
@@ -383,49 +377,49 @@
}, },
"gotify": { "gotify": {
"apps": "Applikasjoner", "apps": "Applikasjoner",
"clients": "Clients", "clients": "Klienter",
"messages": "Meldinger" "messages": "Meldinger"
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "Indeksere", "enableIndexers": "Indeksere",
"numberOfGrabs": "Tatt", "numberOfGrabs": "Tatt",
"numberOfQueries": "Queries", "numberOfQueries": "Spørringer",
"numberOfFailGrabs": "Feil ved henting", "numberOfFailGrabs": "Feil ved henting",
"numberOfFailQueries": "Spørring mislyktes" "numberOfFailQueries": "Spørring mislyktes"
}, },
"jackett": { "jackett": {
"configured": "Konfigurert", "configured": "Konfigurert",
"errored": "Errored" "errored": "Feilet"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Sesjoner", "numActiveSessions": "Sesjoner",
"numConnections": "Tilkoblinger", "numConnections": "Tilkoblinger",
"dataRelayed": "Videresendt", "dataRelayed": "Videresendt",
"transferRate": "Rate" "transferRate": "Ranger"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "Brukere",
"status_count": "Innlegg", "status_count": "Innlegg",
"domain_count": "Domener" "domain_count": "Domener"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "Ønsket",
"queued": "Queued", "queued": "Ventende",
"series": "Series" "series": "Serie"
}, },
"minecraft": { "minecraft": {
"players": "Spillere", "players": "Spillere",
"version": "Versjon", "version": "Versjon",
"status": "Status", "status": "Status",
"up": "Online", "up": "På nett",
"down": "Offline" "down": "Frakoblet"
}, },
"miniflux": { "miniflux": {
"read": "Read", "read": "Read",
"unread": "Unread" "unread": "Ulest"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "Brukere",
"loginsLast24H": "Logins (24h)", "loginsLast24H": "Logins (24h)",
"failedLoginsLast24H": "Mislykket innlogginger (24t)" "failedLoginsLast24H": "Mislykket innlogginger (24t)"
}, },
@@ -437,17 +431,17 @@
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Load", "load": "Last",
"wait": "Please wait", "wait": "Vennligst vent",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temp", "_temp": "Temp",
"warn": "Advarsel", "warn": "Advarsel",
"uptime": "UP", "uptime": "OPP",
"total": "Total", "total": "Totalt",
"free": "Free", "free": "Ledig",
"used": "Used", "used": "Brukt",
"days": "d", "days": "d",
"hours": "h", "hours": "t",
"crit": "Crit", "crit": "Crit",
"read": "Read", "read": "Read",
"write": "Skriv", "write": "Skriv",
@@ -461,7 +455,7 @@
"search": "Søk", "search": "Søk",
"custom": "Egendefinert", "custom": "Egendefinert",
"visit": "Besøk", "visit": "Besøk",
"url": "URL", "url": "Nettadresse",
"searchsuggestion": "Forslag" "searchsuggestion": "Forslag"
}, },
"wmo": { "wmo": {
@@ -470,57 +464,57 @@
"1-day": "Lettskyet", "1-day": "Lettskyet",
"1-night": "Lettskyet", "1-night": "Lettskyet",
"2-day": "Delvis skyet", "2-day": "Delvis skyet",
"2-night": "Partly Cloudy", "2-night": "Delvis skyet",
"3-day": "Skyet", "3-day": "Skyet",
"3-night": "Cloudy", "3-night": "Skyet",
"45-day": "Tåke", "45-day": "Tåke",
"45-night": "Foggy", "45-night": "Tåke",
"48-day": "Foggy", "48-day": "Tåke",
"48-night": "Foggy", "48-night": "Tåke",
"51-day": "Lett yr", "51-day": "Lett yr",
"51-night": "Light Drizzle", "51-night": "Lett yr",
"53-day": "Yr", "53-day": "Yr",
"53-night": "Drizzle", "53-night": "Yr",
"55-day": "Tungt Regn", "55-day": "Tungt Regn",
"55-night": "Heavy Drizzle", "55-night": "Tungt Regn",
"56-day": "Lett underkjølt regn", "56-day": "Lett underkjølt regn",
"56-night": "Light Freezing Drizzle", "56-night": "Lett underkjølt regn",
"57-day": "Underkjølt Regn", "57-day": "Underkjølt Regn",
"57-night": "Freezing Drizzle", "57-night": "Underkjølt Regn",
"61-day": "Lett regn", "61-day": "Lett regn",
"61-night": "Light Rain", "61-night": "Lett regn",
"63-day": "Regn", "63-day": "Regn",
"63-night": "Rain", "63-night": "Regn",
"65-day": "Kraftig regn", "65-day": "Kraftig regn",
"65-night": "Heavy Rain", "65-night": "Kraftig regn",
"66-day": "Underkjølt regn", "66-day": "Underkjølt regn",
"66-night": "Freezing Rain", "66-night": "Underkjølt regn",
"67-day": "Freezing Rain", "67-day": "Underkjølt regn",
"67-night": "Freezing Rain", "67-night": "Underkjølt regn",
"71-day": "Lett snøvær", "71-day": "Lett snøvær",
"71-night": "Light Snow", "71-night": "Lett snøvær",
"73-day": "Snø", "73-day": "Snø",
"73-night": "Snow", "73-night": "Snø",
"75-day": "Tett snø", "75-day": "Tett snø",
"75-night": "Heavy Snow", "75-night": "Tett snø",
"77-day": "Snøkorn", "77-day": "Snøkorn",
"77-night": "Snow Grains", "77-night": "Snøkorn",
"80-day": "Lette Regnbyger", "80-day": "Lette Regnbyger",
"80-night": "Light Showers", "80-night": "Lette Regnbyger",
"81-day": "Regnbyger", "81-day": "Regnbyger",
"81-night": "Showers", "81-night": "Regnbyger",
"82-day": "Tunge regnbyger", "82-day": "Tunge regnbyger",
"82-night": "Heavy Showers", "82-night": "Tunge regnbyger",
"85-day": "Snøbyger", "85-day": "Snøbyger",
"85-night": "Snow Showers", "85-night": "Snøbyger",
"86-day": "Snow Showers", "86-day": "Snøbyger",
"86-night": "Snow Showers", "86-night": "Snøbyger",
"95-day": "Tordenbyger", "95-day": "Tordenbyger",
"95-night": "Thunderstorm", "95-night": "Tordenbyger",
"96-day": "Tordenvær med hagl", "96-day": "Tordenvær med hagl",
"96-night": "Thunderstorm With Hail", "96-night": "Tordenvær med hagl",
"99-day": "Thunderstorm With Hail", "99-day": "Tordenvær med hagl",
"99-night": "Thunderstorm With Hail" "99-night": "Tordenvær med hagl"
}, },
"homebridge": { "homebridge": {
"available_update": "System", "available_update": "System",
@@ -529,15 +523,15 @@
"up_to_date": "Oppdatert", "up_to_date": "Oppdatert",
"child_bridges": "Child Bridges", "child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Oppe",
"pending": "Pending", "pending": "Ventende",
"down": "Down" "down": "Nede"
}, },
"healthchecks": { "healthchecks": {
"new": "Ny", "new": "Ny",
"up": "Up", "up": "Oppe",
"grace": "I rammeperiode", "grace": "I rammeperiode",
"down": "Down", "down": "Nede",
"paused": "Pauset", "paused": "Pauset",
"status": "Status", "status": "Status",
"last_ping": "Siste Ping", "last_ping": "Siste Ping",
@@ -549,27 +543,27 @@
"containers_failed": "Mislyktes" "containers_failed": "Mislyktes"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "Godkjent",
"rejectedPushes": "Avvist", "rejectedPushes": "Avvist",
"filters": "Filtre", "filters": "Filtre",
"indexers": "Indexers" "indexers": "Indeksere"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "",
"videos": "Videoer", "videos": "Videoer",
"channels": "Kanal", "channels": "Kanal",
"playlists": "Spillelister" "playlists": "Spillelister"
}, },
"truenas": { "truenas": {
"load": "Last på systemet", "load": "Last på systemet",
"uptime": "Uptime", "uptime": "Oppetid",
"alerts": "Alerts" "alerts": "Varsler"
}, },
"pyload": { "pyload": {
"speed": "Hastighet", "speed": "Hastighet",
"active": "Active", "active": "Aktiv",
"queue": "Queue", "queue": "",
"total": "Total" "total": "Totalt"
}, },
"gluetun": { "gluetun": {
"public_ip": "Offentlig IP", "public_ip": "Offentlig IP",
@@ -578,47 +572,47 @@
"port_forwarded": "Port Forwarded" "port_forwarded": "Port Forwarded"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Channels", "channels": "Kanal",
"hd": "HD", "hd": "HD",
"tunerCount": "Tunere", "tunerCount": "Tunere",
"channelNumber": "Kanal", "channelNumber": "Kanal",
"channelNetwork": "Nettverk", "channelNetwork": "Nettverk",
"signalStrength": "Styrke", "signalStrength": "Styrke",
"signalQuality": "Kvalitet", "signalQuality": "Kvalitet",
"symbolQuality": "Quality", "symbolQuality": "Kvalitet",
"networkRate": "Bitrate", "networkRate": "Bitrate",
"clientIP": "Klient" "clientIP": "Klient"
}, },
"scrutiny": { "scrutiny": {
"passed": "Bestått", "passed": "Bestått",
"failed": "Failed", "failed": "Mislyktes",
"unknown": "Unknown" "unknown": "Ukjent"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Innboks", "inbox": "Innboks",
"total": "Total" "total": "Totalt"
}, },
"peanut": { "peanut": {
"battery_charge": "Batteriladning", "battery_charge": "Batteriladning",
"ups_load": "UPS last", "ups_load": "UPS last",
"ups_status": "UPS status", "ups_status": "UPS status",
"online": "Online", "online": "På nett",
"on_battery": "På batteri", "on_battery": "På batteri",
"low_battery": "Lavt batterinivå" "low_battery": "Lavt batterinivå"
}, },
"nextdns": { "nextdns": {
"wait": "Please Wait", "wait": "Vennligst vent",
"no_devices": "Ingen enhetsdata mottatt" "no_devices": "Ingen enhetsdata mottatt"
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "Prosessorbelastning", "cpuLoad": "Prosessorbelastning",
"memoryUsed": "Minne brukt", "memoryUsed": "Minne brukt",
"uptime": "Uptime", "uptime": "Oppetid",
"numberOfLeases": "Leases" "numberOfLeases": "Leases"
}, },
"xteve": { "xteve": {
"streams_all": "Alle strømminger", "streams_all": "Alle strømminger",
"streams_active": "Active Streams", "streams_active": "Aktive strømmninger",
"streams_xepg": "XEPG Kanaler" "streams_xepg": "XEPG Kanaler"
}, },
"opendtu": { "opendtu": {
@@ -628,7 +622,7 @@
"limit": "Grense" "limit": "Grense"
}, },
"opnsense": { "opnsense": {
"cpu": "CPU Load", "cpu": "Prosessorbelastning",
"memory": "Aktiv minne", "memory": "Aktiv minne",
"wanUpload": "WAN Opplasting", "wanUpload": "WAN Opplasting",
"wanDownload": "WAN Nedlasting" "wanDownload": "WAN Nedlasting"
@@ -653,8 +647,8 @@
"load": "Load Avg", "load": "Load Avg",
"memory": "Mem Usage", "memory": "Mem Usage",
"wanStatus": "WAN Status", "wanStatus": "WAN Status",
"up": "Up", "up": "Oppe",
"down": "Down", "down": "Nede",
"temp": "Temp", "temp": "Temp",
"disk": "Disk Usage", "disk": "Disk Usage",
"wanIP": "WAN IP" "wanIP": "WAN IP"
@@ -666,49 +660,49 @@
"memory_usage": "Memory" "memory_usage": "Memory"
}, },
"immich": { "immich": {
"users": "Users", "users": "Brukere",
"photos": "Photos", "photos": "Photos",
"videos": "Videos", "videos": "Videoer",
"storage": "Lagring" "storage": "Lagring"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Nettsteder opp", "up": "Nettsteder opp",
"down": "Sites Down", "down": "Sites Down",
"uptime": "Uptime", "uptime": "Oppetid",
"incident": "Incident", "incident": "Incident",
"m": "m" "m": "m"
}, },
"atsumeru": { "atsumeru": {
"series": "Series", "series": "Serie",
"archives": "Archives", "archives": "Archives",
"chapters": "Chapters", "chapters": "Chapters",
"categories": "Categories" "categories": "Categories"
}, },
"komga": { "komga": {
"libraries": "Libraries", "libraries": "Libraries",
"series": "Series", "series": "Serie",
"books": "Books" "books": "Bøker"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Dager",
"uptime": "Uptime", "uptime": "Oppetid",
"volumeAvailable": "Available" "volumeAvailable": "Tilgjengelig"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Serie",
"issues": "Issues", "issues": "Issues",
"wanted": "Wanted" "wanted": "Ønsket"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Album",
"photos": "Photos", "photos": "Photos",
"videos": "Videos", "videos": "Videoer",
"people": "People" "people": "People"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "",
"processing": "Processing", "processing": "Behandler",
"processed": "Processed", "processed": "Behandlet",
"time": "Time" "time": "Time"
}, },
"firefly": { "firefly": {
@@ -734,7 +728,7 @@
"size": "Size", "size": "Size",
"lastrun": "Last Run", "lastrun": "Last Run",
"nextrun": "Next Run", "nextrun": "Next Run",
"failed": "Failed" "failed": "Mislyktes"
}, },
"unmanic": { "unmanic": {
"active_workers": "Active Workers", "active_workers": "Active Workers",
@@ -751,20 +745,20 @@
"targets_total": "Totalt antall mål" "targets_total": "Totalt antall mål"
}, },
"gatus": { "gatus": {
"up": "Sites Up", "up": "Nettsteder opp",
"down": "Sites Down", "down": "Sites Down",
"uptime": "Uptime" "uptime": "Oppetid"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Today", "gross_percent_today": "Idag",
"gross_percent_1y": "Ett år", "gross_percent_1y": "Ett år",
"gross_percent_max": "Gjennom tidene" "gross_percent_max": "Gjennom tidene"
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podkaster", "podcasts": "Podkaster",
"books": "Books", "books": "Bøker",
"podcastsDuration": "Varighet", "podcastsDuration": "Varighet",
"booksDuration": "Duration" "booksDuration": "Varighet"
}, },
"homeassistant": { "homeassistant": {
"people_home": "Personer hjemme", "people_home": "Personer hjemme",
@@ -773,22 +767,22 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Overvåker", "monitoring": "Overvåker",
"updates": "Updates" "updates": "Oppdateringer"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "Bøker",
"authors": "Forfattere", "authors": "Forfattere",
"categories": "Categories", "categories": "Categories",
"series": "Series" "series": "Serie"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "",
"downloadBytesRemaining": "Remaining", "downloadBytesRemaining": "Gjenstående",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Size",
"downloadSpeed": "Speed" "downloadSpeed": "Hastighet"
}, },
"kavita": { "kavita": {
"seriesCount": "Series", "seriesCount": "Serie",
"totalFiles": "Files" "totalFiles": "Files"
}, },
"azuredevops": { "azuredevops": {
@@ -797,24 +791,24 @@
"buildId": "Produksjons ID", "buildId": "Produksjons ID",
"succeeded": "Vellykket", "succeeded": "Vellykket",
"notStarted": "Ikke startet", "notStarted": "Ikke startet",
"failed": "Failed", "failed": "Mislyktes",
"canceled": "Avbrutt", "canceled": "Avbrutt",
"inProgress": "Pågående", "inProgress": "Pågående",
"totalPrs": "Totalt PR-er", "totalPrs": "Totalt PR-er",
"myPrs": "Mine PR'er", "myPrs": "Mine PR'er",
"approved": "Approved" "approved": "Godkjent"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "Status",
"online": "Online", "online": "På nett",
"offline": "Offline", "offline": "Frakoblet",
"name": "Navn", "name": "Navn",
"map": "Kart", "map": "Kart",
"currentPlayers": "Aktuelle spillere", "currentPlayers": "Aktuelle spillere",
"players": "Players", "players": "Spillere",
"maxPlayers": "Maks spillere", "maxPlayers": "Maks spillere",
"bots": "Bots", "bots": "Bots",
"ping": "Ping" "ping": "Responstid"
}, },
"urbackup": { "urbackup": {
"ok": "Ok", "ok": "Ok",
@@ -824,39 +818,39 @@
}, },
"mealie": { "mealie": {
"recipes": "Oppskrifter", "recipes": "Oppskrifter",
"users": "Users", "users": "Brukere",
"categories": "Categories", "categories": "Categories",
"tags": "Stikkord" "tags": "Stikkord"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Nedlaster", "downloading": "Nedlaster",
"total": "Total", "total": "Totalt",
"running": "Running", "running": "Kjører",
"stopped": "Stopped", "stopped": "Stoppet",
"passed": "Passed", "passed": "Bestått",
"failed": "Failed" "failed": "Mislyktes"
}, },
"openwrt": { "openwrt": {
"uptime": "Uptime", "uptime": "Oppetid",
"cpuLoad": "CPU-belastning snitt (5m)", "cpuLoad": "CPU-belastning snitt (5m)",
"up": "Up", "up": "Oppe",
"down": "Down", "down": "Nede",
"bytesTx": "Sendt", "bytesTx": "Sendt",
"bytesRx": "Received" "bytesRx": "Mottatt"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "Status",
"uptime": "Uptime", "uptime": "Oppetid",
"lastDown": "Siste nedetid", "lastDown": "Siste nedetid",
"downDuration": "Varighet på nedetid", "downDuration": "Varighet på nedetid",
"sitesUp": "Sites Up", "sitesUp": "Nettsteder opp",
"sitesDown": "Sites Down", "sitesDown": "Sites Down",
"paused": "Paused", "paused": "Pauset",
"notyetchecked": "Ikke sjekket enda", "notyetchecked": "Ikke sjekket enda",
"up": "Up", "up": "Oppe",
"seemsdown": "Virker nede", "seemsdown": "Virker nede",
"down": "Down", "down": "Nede",
"unknown": "Unknown" "unknown": "Ukjent"
}, },
"calendar": { "calendar": {
"inCinemas": "På Kino", "inCinemas": "På Kino",
@@ -875,10 +869,10 @@
"totalfilesize": "Total Size" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Domains", "domains": "Domener",
"mailboxes": "Mailboxes", "mailboxes": "Mailboxes",
"mails": "Mails", "mails": "Mails",
"storage": "Storage" "storage": "Lagring"
}, },
"netdata": { "netdata": {
"warnings": "Advarsler", "warnings": "Advarsler",
@@ -908,13 +902,13 @@
"galleries": "Gallerier", "galleries": "Gallerier",
"performers": "Utøvere", "performers": "Utøvere",
"studios": "Studios", "studios": "Studios",
"movies": "Movies", "movies": "Film",
"tags": "Tags", "tags": "Stikkord",
"oCount": "O antall" "oCount": "O antall"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "Brukere",
"recipes": "Recipes", "recipes": "Oppskrifter",
"keywords": "Nøkkelord" "keywords": "Nøkkelord"
}, },
"homebox": { "homebox": {
@@ -922,18 +916,18 @@
"totalWithWarranty": "Med garanti", "totalWithWarranty": "Med garanti",
"locations": "Posisjon", "locations": "Posisjon",
"labels": "Etiketter", "labels": "Etiketter",
"users": "Users", "users": "Brukere",
"totalValue": "Totalverdi" "totalValue": "Totalverdi"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alerts", "alerts": "Varsler",
"bans": "Utestengelse" "bans": "Utestengelse"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Tilkoblet",
"enabled": "Enabled", "enabled": "Aktivert",
"disabled": "Disabled", "disabled": "Deaktivert",
"total": "Total" "total": "Totalt"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
@@ -942,9 +936,9 @@
"banned": "Banned" "banned": "Banned"
}, },
"myspeed": { "myspeed": {
"ping": "Ping", "ping": "Responstid",
"download": "Download", "download": "Last ned",
"upload": "Upload" "upload": "Opplastning"
}, },
"stocks": { "stocks": {
"stocks": "Stocks", "stocks": "Stocks",
@@ -955,17 +949,17 @@
}, },
"frigate": { "frigate": {
"cameras": "Cameras", "cameras": "Cameras",
"uptime": "Uptime", "uptime": "Oppetid",
"version": "Version" "version": "Versjon"
}, },
"linkwarden": { "linkwarden": {
"links": "Links", "links": "Links",
"collections": "Collections", "collections": "Collections",
"tags": "Tags" "tags": "Stikkord"
}, },
"zabbix": { "zabbix": {
"unclassified": "Not classified", "unclassified": "Not classified",
"information": "Information", "information": "Informasjon",
"warning": "Warning", "warning": "Warning",
"average": "Average", "average": "Average",
"high": "High", "high": "High",
@@ -986,22 +980,22 @@
"tasksInProgress": "Tasks In Progress" "tasksInProgress": "Tasks In Progress"
}, },
"headscale": { "headscale": {
"name": "Name", "name": "Navn",
"address": "Address", "address": "Adresse",
"last_seen": "Last Seen", "last_seen": "Sist sett",
"status": "Status", "status": "Status",
"online": "Online", "online": "På nett",
"offline": "Offline" "offline": "Frakoblet"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Navn",
"systems": "Systems", "systems": "Systems",
"up": "Up", "up": "Oppe",
"down": "Down", "down": "Nede",
"paused": "Paused", "paused": "Pauset",
"pending": "Pending", "pending": "Ventende",
"status": "Status", "status": "Status",
"updated": "Updated", "updated": "Oppdatert",
"cpu": "CPU", "cpu": "CPU",
"memory": "MEM", "memory": "MEM",
"disk": "Disk", "disk": "Disk",
@@ -1011,10 +1005,10 @@
"apps": "Apps", "apps": "Apps",
"synced": "Synced", "synced": "Synced",
"outOfSync": "Out Of Sync", "outOfSync": "Out Of Sync",
"healthy": "Healthy", "healthy": "Friskt",
"degraded": "Degraded", "degraded": "Degraded",
"progressing": "Progressing", "progressing": "Progressing",
"missing": "Missing", "missing": "Mangler",
"suspended": "Suspended" "suspended": "Suspended"
}, },
"spoolman": { "spoolman": {
@@ -1028,9 +1022,9 @@
}, },
"apcups": { "apcups": {
"status": "Status", "status": "Status",
"load": "Load", "load": "Last",
"bcharge": "Battery Charge", "bcharge": "Batteriladning",
"timeleft": "Time Left" "timeleft": "Gjenstående tid"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
@@ -1038,50 +1032,27 @@
"archived": "Archived", "archived": "Archived",
"highlights": "Highlights", "highlights": "Highlights",
"lists": "Lists", "lists": "Lists",
"tags": "Tags" "tags": "Stikkord"
}, },
"slskd": { "slskd": {
"slskStatus": "Network", "slskStatus": "Nettverk",
"connected": "Connected", "connected": "Tilkoblet",
"disconnected": "Disconnected", "disconnected": "Frakoblet",
"updateStatus": "Update", "updateStatus": "Update",
"update_yes": "Available", "update_yes": "Tilgjengelig",
"update_no": "Up to Date", "update_no": "Oppdatert",
"downloads": "Downloads", "downloads": "Downloads",
"uploads": "Uploads", "uploads": "Uploads",
"sharedFiles": "Files" "sharedFiles": "Files"
}, },
"jellystat": { "jellystat": {
"songs": "Songs", "songs": "Sanger",
"movies": "Movies", "movies": "Film",
"episodes": "Episodes", "episodes": "Episoder",
"other": "Other" "other": "Other"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -61,7 +61,7 @@
"wlan_devices": "Urządzenia WLAN", "wlan_devices": "Urządzenia WLAN",
"lan_users": "Użytkownicy LAN", "lan_users": "Użytkownicy LAN",
"wlan_users": "Użytkownicy WLAN", "wlan_users": "Użytkownicy WLAN",
"up": "UP", "up": "CZAS",
"down": "Pobieranie", "down": "Pobieranie",
"wait": "Proszę czekać", "wait": "Proszę czekać",
"empty_data": "Status podsystemu nieznany" "empty_data": "Status podsystemu nieznany"
@@ -69,7 +69,7 @@
"docker": { "docker": {
"rx": "Rx", "rx": "Rx",
"tx": "Tx", "tx": "Tx",
"mem": "MEM", "mem": "RAM",
"cpu": "Procesor", "cpu": "Procesor",
"running": "Działa", "running": "Działa",
"offline": "Nieosiągalny", "offline": "Nieosiągalny",
@@ -93,8 +93,8 @@
"http_status": "Status HTTP", "http_status": "Status HTTP",
"error": "Błąd", "error": "Błąd",
"response": "Odpowiedź", "response": "Odpowiedź",
"down": "Down", "down": "Niedostępny",
"up": "Up", "up": "Dostępny",
"not_available": "Niedostępny" "not_available": "Niedostępny"
}, },
"emby": { "emby": {
@@ -108,11 +108,11 @@
"songs": "Piosenki" "songs": "Piosenki"
}, },
"esphome": { "esphome": {
"offline": "Offline", "offline": "Nieosiągalny",
"offline_alt": "Offline", "offline_alt": "Nieosiągalny",
"online": "Dostępny", "online": "Dostępny",
"total": "Total", "total": "Całkowite",
"unknown": "Unknown" "unknown": "Nieznany"
}, },
"evcc": { "evcc": {
"pv_power": "Produkcja", "pv_power": "Produkcja",
@@ -133,7 +133,7 @@
"unread": "Nieprzeczytane" "unread": "Nieprzeczytane"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Status", "connectionStatus": "Stan",
"connectionStatusUnconfigured": "Nieskonfigurowane", "connectionStatusUnconfigured": "Nieskonfigurowane",
"connectionStatusConnecting": "Łączenie", "connectionStatusConnecting": "Łączenie",
"connectionStatusAuthenticating": "Uwierzytelnianie", "connectionStatusAuthenticating": "Uwierzytelnianie",
@@ -141,11 +141,11 @@
"connectionStatusDisconnecting": "Rozłączanie", "connectionStatusDisconnecting": "Rozłączanie",
"connectionStatusDisconnected": "Rozłączono", "connectionStatusDisconnected": "Rozłączono",
"connectionStatusConnected": "Połączono", "connectionStatusConnected": "Połączono",
"uptime": "Uptime", "uptime": "Czas działania",
"maxDown": "Maks. Pobieranie", "maxDown": "Maks. Pobieranie",
"maxUp": "Maks. Wysyłanie", "maxUp": "Maks. Wysyłanie",
"down": "Down", "down": "Niedostępny",
"up": "Up", "up": "Dostępny",
"received": "Odebrane", "received": "Odebrane",
"sent": "Wysłane", "sent": "Wysłane",
"externalIPAddress": "Pub. IP", "externalIPAddress": "Pub. IP",
@@ -168,10 +168,10 @@
"passes": "Przebiegi" "passes": "Przebiegi"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "Odtwarzanie",
"transcoding": "Transcoding", "transcoding": "Transkodowanie",
"bitrate": "Bitrate", "bitrate": "Bitrate",
"no_active": "No Active Streams", "no_active": "Brak aktywnych strumieni",
"plex_connection_error": "Sprawdź połączenie z Plex" "plex_connection_error": "Sprawdź połączenie z Plex"
}, },
"omada": { "omada": {
@@ -193,24 +193,24 @@
"tv": "Seriale" "tv": "Seriale"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "Szybkość",
"queue": "Kolejka", "queue": "Kolejka",
"timeleft": "Pozostało" "timeleft": "Pozostało"
}, },
"rutorrent": { "rutorrent": {
"active": "Aktywny", "active": "Aktywny",
"upload": "Upload", "upload": "Wysyłanie",
"download": "Pobieranie" "download": "Pobieranie"
}, },
"transmission": { "transmission": {
"download": "Pobieranie", "download": "Pobieranie",
"upload": "Upload", "upload": "Wysyłanie",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Download", "download": "Pobieranie",
"upload": "Upload", "upload": "Wysyłanie",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -223,8 +223,8 @@
"invalid": "Nieprawidłowy" "invalid": "Nieprawidłowy"
}, },
"deluge": { "deluge": {
"download": "Download", "download": "Pobieranie",
"upload": "Upload", "upload": "Wysyłanie",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -233,34 +233,34 @@
"cachemissbytes": "Straty cache'u" "cachemissbytes": "Straty cache'u"
}, },
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Pobieranie",
"upload": "Upload", "upload": "Wysyłanie",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"sonarr": { "sonarr": {
"wanted": "Poszukiwane", "wanted": "Poszukiwane",
"queued": "W kolejce", "queued": "W kolejce",
"series": "Series", "series": "Seriale",
"queue": "Queue", "queue": "Kolejka",
"unknown": "Unknown" "unknown": "Nieznany"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Poszukiwane",
"missing": "Brakujące", "missing": "Brakujące",
"queued": "Queued", "queued": "W kolejce",
"movies": "Movies", "movies": "Filmy",
"queue": "Queue", "queue": "Kolejka",
"unknown": "Unknown" "unknown": "Nieznany"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Poszukiwane",
"queued": "Queued", "queued": "W kolejce",
"artists": "Artyści" "artists": "Artyści"
}, },
"readarr": { "readarr": {
"wanted": "Wanted", "wanted": "Poszukiwane",
"queued": "Queued", "queued": "W kolejce",
"books": "Książki" "books": "Książki"
}, },
"bazarr": { "bazarr": {
@@ -273,19 +273,19 @@
"available": "Dostępne" "available": "Dostępne"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pending", "pending": "Oczekiwane",
"approved": "Approved", "approved": "Zaakceptowane",
"available": "Available" "available": "Dostępne"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "Oczekiwane",
"processing": "Przetwarzane", "processing": "Przetwarzane",
"approved": "Approved", "approved": "Zaakceptowane",
"available": "Available" "available": "Dostępne"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Całkowite",
"connected": "Connected", "connected": "Połączono",
"new_devices": "Nowe urządzenia", "new_devices": "Nowe urządzenia",
"down_alerts": "Alerty niedostępności" "down_alerts": "Alerty niedostępności"
}, },
@@ -296,26 +296,26 @@
"gravity": "Grawitacja" "gravity": "Grawitacja"
}, },
"adguard": { "adguard": {
"queries": "Queries", "queries": "Zapytania",
"blocked": "Blocked", "blocked": "Zablokowane",
"filtered": "Przefiltrowane", "filtered": "Przefiltrowane",
"latency": "Opóźnienia" "latency": "Opóźnienia"
}, },
"speedtest": { "speedtest": {
"upload": "Upload", "upload": "Wysyłanie",
"download": "Download", "download": "Pobieranie",
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "Działa",
"stopped": "Zatrzymane", "stopped": "Zatrzymane",
"total": "Total" "total": "Całkowite"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Pobrano",
"nondownload": "Niepobrane", "nondownload": "Niepobrane",
"read": "Read", "read": "Przeczytane",
"unread": "Unread", "unread": "Nieprzeczytane",
"downloadedread": "Pobrane i przeczytane", "downloadedread": "Pobrane i przeczytane",
"downloadedunread": "Pobrane i nieprzeczytane", "downloadedunread": "Pobrane i nieprzeczytane",
"nondownloadedread": "Niepobrane i przeczytane", "nondownloadedread": "Niepobrane i przeczytane",
@@ -336,43 +336,37 @@
"ago": "{{value}} temu" "ago": "{{value}} temu"
}, },
"technitium": { "technitium": {
"totalQueries": "Queries", "totalQueries": "Zapytania",
"totalNoError": "Sukces", "totalNoError": "Sukces",
"totalServerFailure": "Porażki", "totalServerFailure": "Porażki",
"totalNxDomain": "Domeny NX", "totalNxDomain": "Domeny NX",
"totalRefused": "Odrzuconych", "totalRefused": "Odrzucone",
"totalAuthoritative": "Autorytatywne", "totalAuthoritative": "Autorytatywne",
"totalRecursive": "Rekursywne", "totalRecursive": "Rekursywne",
"totalCached": "Zbuforowane", "totalCached": "Zbuforowane",
"totalBlocked": "Blocked", "totalBlocked": "Zablokowane",
"totalDropped": "Upuszczone", "totalDropped": "Upuszczone",
"totalClients": "Klienci" "totalClients": "Klienci"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "Kolejka",
"processed": "Przetworzone", "processed": "Przetworzone",
"errored": "Błędne", "errored": "Błędne",
"saved": "Zapisane" "saved": "Zapisane"
}, },
"traefik": { "traefik": {
"routers": "Routery", "routers": "Routery",
"services": "Usługi", "services": "Serwisy",
"middleware": "Pośrednicy" "middleware": "Pośrednicy"
}, },
"trilium": {
"version": "Wersja",
"notesCount": "Notatki",
"dbSize": "Rozmiar bazy danych",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "Brak aktywnych strumieni",
"please_wait": "Proszę czekać" "please_wait": "Proszę czekać"
}, },
"npm": { "npm": {
"enabled": "Włączone", "enabled": "Włączone",
"disabled": "Wyłączone", "disabled": "Wyłączone",
"total": "Total" "total": "Całkowite"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Wybierz jedną lub więcej kryptowalut do śledzenia", "configure": "Wybierz jedną lub więcej kryptowalut do śledzenia",
@@ -389,19 +383,19 @@
"prowlarr": { "prowlarr": {
"enableIndexers": "Indeksery", "enableIndexers": "Indeksery",
"numberOfGrabs": "Pochwycenia", "numberOfGrabs": "Pochwycenia",
"numberOfQueries": "Queries", "numberOfQueries": "Zapytania",
"numberOfFailGrabs": "Nieudane pochwycenia", "numberOfFailGrabs": "Nieudane pochwycenia",
"numberOfFailQueries": "Nieudane zapytania" "numberOfFailQueries": "Nieudane zapytania"
}, },
"jackett": { "jackett": {
"configured": "Skonfigurowane", "configured": "Skonfigurowane",
"errored": "Errored" "errored": "Błędne"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Sesje", "numActiveSessions": "Sesje",
"numConnections": "Połączenia", "numConnections": "Połączenia",
"dataRelayed": "Przekazane", "dataRelayed": "Przekazane",
"transferRate": "Rate" "transferRate": "Szybkość"
}, },
"mastodon": { "mastodon": {
"user_count": "Użytkownicy", "user_count": "Użytkownicy",
@@ -409,49 +403,49 @@
"domain_count": "Domeny" "domain_count": "Domeny"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "Poszukiwane",
"queued": "Queued", "queued": "W kolejce",
"series": "Series" "series": "Seriale"
}, },
"minecraft": { "minecraft": {
"players": "Gracze", "players": "Gracze",
"version": "Wersja", "version": "Wersja",
"status": "Status", "status": "Stan",
"up": "Online", "up": "Dostępny",
"down": "Offline" "down": "Nieosiągalny"
}, },
"miniflux": { "miniflux": {
"read": "Przeczytane", "read": "Przeczytane",
"unread": "Unread" "unread": "Nieprzeczytane"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "Użytkownicy",
"loginsLast24H": "Logowania (24h)", "loginsLast24H": "Logowania (24h)",
"failedLoginsLast24H": "Nieudane logowania (24h)" "failedLoginsLast24H": "Nieudane logowania (24h)"
}, },
"proxmox": { "proxmox": {
"mem": "MEM", "mem": "RAM",
"cpu": "Procesor", "cpu": "Procesor",
"lxc": "Kontenery LXC", "lxc": "Kontenery LXC",
"vms": "Maszyn wirtualnych" "vms": "Maszyn wirtualnych"
}, },
"glances": { "glances": {
"cpu": "Procesor", "cpu": "Procesor",
"load": "Load", "load": "Obciążenie",
"wait": "Proszę czekać", "wait": "Proszę czekać",
"temp": "TEMP", "temp": "TEMP.",
"_temp": "Temperatura", "_temp": "Temperatura",
"warn": "Ostrzeżenie", "warn": "Ostrzeżenie",
"uptime": "UP", "uptime": "CZAS",
"total": "Total", "total": "Całkowite",
"free": "Free", "free": "Wolne",
"used": "Used", "used": "Użyte",
"days": "d", "days": "d",
"hours": "h", "hours": "g",
"crit": "Krytyczyny", "crit": "Krytyczyny",
"read": "Read", "read": "Przeczytane",
"write": "Zapis", "write": "Zapis",
"gpu": "GPU", "gpu": "Karta graficzna",
"mem": "Pamięć", "mem": "Pamięć",
"swap": "Swap" "swap": "Swap"
}, },
@@ -461,7 +455,7 @@
"search": "Wyszukaj", "search": "Wyszukaj",
"custom": "Niestandardowe", "custom": "Niestandardowe",
"visit": "Odwiedź", "visit": "Odwiedź",
"url": "URL", "url": "Adres URL",
"searchsuggestion": "Sugestia" "searchsuggestion": "Sugestia"
}, },
"wmo": { "wmo": {
@@ -470,57 +464,57 @@
"1-day": "Głównie słoneczny", "1-day": "Głównie słoneczny",
"1-night": "Głównie bezchmurny", "1-night": "Głównie bezchmurny",
"2-day": "Częściowo pochmurnie", "2-day": "Częściowo pochmurnie",
"2-night": "Partly Cloudy", "2-night": "Częściowo pochmurnie",
"3-day": "Pochmurnie", "3-day": "Pochmurnie",
"3-night": "Cloudy", "3-night": "Pochmurnie",
"45-day": "Mgliście", "45-day": "Mgliście",
"45-night": "Foggy", "45-night": "Mgliście",
"48-day": "Foggy", "48-day": "Mgliście",
"48-night": "Foggy", "48-night": "Mgliście",
"51-day": "Lekka mżawka", "51-day": "Lekka mżawka",
"51-night": "Light Drizzle", "51-night": "Lekka mżawka",
"53-day": "Mżawka", "53-day": "Mżawka",
"53-night": "Drizzle", "53-night": "Mżawka",
"55-day": "Gęsta mżawka", "55-day": "Gęsta mżawka",
"55-night": "Heavy Drizzle", "55-night": "Gęsta mżawka",
"56-day": "Lekko chłodna mżawka", "56-day": "Lekko chłodna mżawka",
"56-night": "Light Freezing Drizzle", "56-night": "Lekko chłodna mżawka",
"57-day": "Chłodna mżawka", "57-day": "Chłodna mżawka",
"57-night": "Freezing Drizzle", "57-night": "Chłodna mżawka",
"61-day": "Lekki deszcz", "61-day": "Lekki deszcz",
"61-night": "Light Rain", "61-night": "Lekki deszcz",
"63-day": "Deszcz", "63-day": "Deszcz",
"63-night": "Rain", "63-night": "Deszcz",
"65-day": "Ciężki deszcz", "65-day": "Ciężki deszcz",
"65-night": "Heavy Rain", "65-night": "Ciężki deszcz",
"66-day": "Mroźny deszcz", "66-day": "Mroźny deszcz",
"66-night": "Freezing Rain", "66-night": "Mroźny deszcz",
"67-day": "Freezing Rain", "67-day": "Mroźny deszcz",
"67-night": "Freezing Rain", "67-night": "Mroźny deszcz",
"71-day": "Lekki śnieg", "71-day": "Lekki śnieg",
"71-night": "Light Snow", "71-night": "Lekki śnieg",
"73-day": "Śnieg", "73-day": "Śnieg",
"73-night": "Snow", "73-night": "Śnieg",
"75-day": "Ciężki śnieg", "75-day": "Ciężki śnieg",
"75-night": "Heavy Snow", "75-night": "Ciężki śnieg",
"77-day": "Ziarnisty śnieg", "77-day": "Ziarnisty śnieg",
"77-night": "Snow Grains", "77-night": "Ziarnisty śnieg",
"80-day": "Lekkie opady", "80-day": "Lekkie opady",
"80-night": "Light Showers", "80-night": "Lekkie opady",
"81-day": "Opady", "81-day": "Opady",
"81-night": "Showers", "81-night": "Opady",
"82-day": "Ciężkie opady", "82-day": "Ciężkie opady",
"82-night": "Heavy Showers", "82-night": "Ciężkie opady",
"85-day": "Opady śniegu", "85-day": "Opady śniegu",
"85-night": "Snow Showers", "85-night": "Opady śniegu",
"86-day": "Snow Showers", "86-day": "Opady śniegu",
"86-night": "Snow Showers", "86-night": "Opady śniegu",
"95-day": "Burze z piorunami", "95-day": "Burze z piorunami",
"95-night": "Thunderstorm", "95-night": "Burze z piorunami",
"96-day": "Burza z gradobiciem", "96-day": "Burza z gradobiciem",
"96-night": "Thunderstorm With Hail", "96-night": "Burza z gradobiciem",
"99-day": "Thunderstorm With Hail", "99-day": "Burza z gradobiciem",
"99-night": "Thunderstorm With Hail" "99-night": "Burza z gradobiciem"
}, },
"homebridge": { "homebridge": {
"available_update": "System", "available_update": "System",
@@ -529,17 +523,17 @@
"up_to_date": "Aktualny", "up_to_date": "Aktualny",
"child_bridges": "Mostki podrzędne", "child_bridges": "Mostki podrzędne",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Dostępny",
"pending": "Pending", "pending": "Oczekiwane",
"down": "Down" "down": "Niedostępny"
}, },
"healthchecks": { "healthchecks": {
"new": "Nowy", "new": "Nowy",
"up": "Up", "up": "Dostępny",
"grace": "W okresie karencji", "grace": "W okresie karencji",
"down": "Down", "down": "Niedostępny",
"paused": "Wstrzymane", "paused": "Zatrzymane",
"status": "Status", "status": "Stan",
"last_ping": "Ostatni ping", "last_ping": "Ostatni ping",
"never": "Brak pingów" "never": "Brak pingów"
}, },
@@ -549,27 +543,27 @@
"containers_failed": "Niepowodzenie" "containers_failed": "Niepowodzenie"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "Zaakceptowane",
"rejectedPushes": "Odrzucone", "rejectedPushes": "Odrzucone",
"filters": "Filtry", "filters": "Filtry",
"indexers": "Indexers" "indexers": "Indeksery"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "Kolejka",
"videos": "Pliki wideo", "videos": "Pliki wideo",
"channels": "Kanały", "channels": "Kanały",
"playlists": "Playlisty" "playlists": "Playlisty"
}, },
"truenas": { "truenas": {
"load": "Obciążenie systemu", "load": "Obciążenie systemu",
"uptime": "Uptime", "uptime": "Czas działania",
"alerts": "Alerts" "alerts": "Alarmy"
}, },
"pyload": { "pyload": {
"speed": "Prędkość", "speed": "Prędkość",
"active": "Active", "active": "Aktywny",
"queue": "Queue", "queue": "Kolejka",
"total": "Total" "total": "Całkowite"
}, },
"gluetun": { "gluetun": {
"public_ip": "Adres publiczny", "public_ip": "Adres publiczny",
@@ -578,47 +572,47 @@
"port_forwarded": "Port Forwarded" "port_forwarded": "Port Forwarded"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Channels", "channels": "Kanały",
"hd": "HD", "hd": "HD",
"tunerCount": "Tunery", "tunerCount": "Tunery",
"channelNumber": "Kanał", "channelNumber": "Kanał",
"channelNetwork": "Sieć", "channelNetwork": "Sieć",
"signalStrength": "Siła sygnału", "signalStrength": "Siła",
"signalQuality": "Jakość", "signalQuality": "Jakość",
"symbolQuality": "Quality", "symbolQuality": "Jakość",
"networkRate": "Bitrate", "networkRate": "Bitrate",
"clientIP": "Klient" "clientIP": "Klient"
}, },
"scrutiny": { "scrutiny": {
"passed": "Powodzenie", "passed": "Powodzenie",
"failed": "Failed", "failed": "Niepowodzenie",
"unknown": "Unknown" "unknown": "Nieznany"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Skrzynka odbiorcza", "inbox": "Skrzynka odbiorcza",
"total": "Total" "total": "Całkowite"
}, },
"peanut": { "peanut": {
"battery_charge": "Stan baterii", "battery_charge": "Stan baterii",
"ups_load": "Obciążenie UPS", "ups_load": "Obciążenie UPS",
"ups_status": "Status UPS", "ups_status": "Status UPS",
"online": "Online", "online": "Dostępny",
"on_battery": "Na baterii", "on_battery": "Na baterii",
"low_battery": "Niski poziom baterii" "low_battery": "Niski poziom baterii"
}, },
"nextdns": { "nextdns": {
"wait": "Please Wait", "wait": "Proszę czekać",
"no_devices": "Nie otrzymano danych urządzenia" "no_devices": "Nie otrzymano danych urządzenia"
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "Obciążenie procesora", "cpuLoad": "Obciążenie procesora",
"memoryUsed": "Zużyta pamięć", "memoryUsed": "Zużyta pamięć",
"uptime": "Uptime", "uptime": "Czas działania",
"numberOfLeases": "Dzierżawy" "numberOfLeases": "Dzierżawy"
}, },
"xteve": { "xteve": {
"streams_all": "Wszystkie strumienie", "streams_all": "Wszystkie strumienie",
"streams_active": "Active Streams", "streams_active": "Aktywne strumienie",
"streams_xepg": "Kanały XEPG" "streams_xepg": "Kanały XEPG"
}, },
"opendtu": { "opendtu": {
@@ -628,7 +622,7 @@
"limit": "Limit" "limit": "Limit"
}, },
"opnsense": { "opnsense": {
"cpu": "Procesor", "cpu": "Obciążenie procesora",
"memory": "Pamięć rzeczywista", "memory": "Pamięć rzeczywista",
"wanUpload": "WAN wysyłanie", "wanUpload": "WAN wysyłanie",
"wanDownload": "WAN pobieranie" "wanDownload": "WAN pobieranie"
@@ -640,22 +634,22 @@
"layers": "Warstwy" "layers": "Warstwy"
}, },
"octoprint": { "octoprint": {
"printer_state": "Status", "printer_state": "Stan",
"temp_tool": "Temperatura narzędzia", "temp_tool": "Temperatura narzędzia",
"temp_bed": "Temp. łóżka", "temp_bed": "Temp. łóżka",
"job_completion": "Ukończono" "job_completion": "Ukończono"
}, },
"cloudflared": { "cloudflared": {
"origin_ip": "IP Źródła", "origin_ip": "IP Źródła",
"status": "Status" "status": "Stan"
}, },
"pfsense": { "pfsense": {
"load": "Śr. Obciążenie", "load": "Śr. Obciążenie",
"memory": "Użycie pamięci", "memory": "Użycie pamięci",
"wanStatus": "Status WAN", "wanStatus": "Status WAN",
"up": "Up", "up": "Dostępny",
"down": "Down", "down": "Niedostępny",
"temp": "Temp", "temp": "Temperatura",
"disk": "Użycie dysku", "disk": "Użycie dysku",
"wanIP": "WAN IP" "wanIP": "WAN IP"
}, },
@@ -666,38 +660,38 @@
"memory_usage": "Pamięć" "memory_usage": "Pamięć"
}, },
"immich": { "immich": {
"users": "Users", "users": "Użytkownicy",
"photos": "Zdjęcia", "photos": "Zdjęcia",
"videos": "Videos", "videos": "Pliki wideo",
"storage": "Pamięć" "storage": "Pamięć"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Działające", "up": "Działające",
"down": "Niedziałające", "down": "Niedziałające",
"uptime": "Uptime", "uptime": "Czas działania",
"incident": "Incydent", "incident": "Incydent",
"m": "m" "m": "m"
}, },
"atsumeru": { "atsumeru": {
"series": "Series", "series": "Seriale",
"archives": "Archiwa", "archives": "Archiwa",
"chapters": "Rozdziały", "chapters": "Rozdziały",
"categories": "Kategorie" "categories": "Kategorie"
}, },
"komga": { "komga": {
"libraries": "Biblioteki", "libraries": "Biblioteki",
"series": "Series", "series": "Seriale",
"books": "Books" "books": "Książki"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Dni",
"uptime": "Uptime", "uptime": "Czas działania",
"volumeAvailable": "Available" "volumeAvailable": "Dostępne"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Seriale",
"issues": "Zgłoszenia", "issues": "Zgłoszenia",
"wanted": "Wanted" "wanted": "Poszukiwane"
}, },
"photoprism": { "photoprism": {
"albums": "Albumy", "albums": "Albumy",
@@ -706,9 +700,9 @@
"people": "Ludzie" "people": "Ludzie"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "Kolejka",
"processing": "Processing", "processing": "Przetwarzane",
"processed": "Processed", "processed": "Przetworzone",
"time": "Czas" "time": "Czas"
}, },
"firefly": { "firefly": {
@@ -730,11 +724,11 @@
"numshares": "Udostępnione elementy" "numshares": "Udostępnione elementy"
}, },
"kopia": { "kopia": {
"status": "Status", "status": "Stan",
"size": "Rozmiar", "size": "Rozmiar",
"lastrun": "Ostatnie uruchomienie", "lastrun": "Ostatnie uruchomienie",
"nextrun": "Następne uruchomienie", "nextrun": "Następne uruchomienie",
"failed": "Failed" "failed": "Niepowodzenie"
}, },
"unmanic": { "unmanic": {
"active_workers": "Aktywni pracownicy", "active_workers": "Aktywni pracownicy",
@@ -751,9 +745,9 @@
"targets_total": "Wszystkich Celi" "targets_total": "Wszystkich Celi"
}, },
"gatus": { "gatus": {
"up": "Sites Up", "up": "Działające",
"down": "Sites Down", "down": "Niedziałające",
"uptime": "Uptime" "uptime": "Czas działania"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Dzisiaj", "gross_percent_today": "Dzisiaj",
@@ -773,27 +767,27 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Monitoring", "monitoring": "Monitoring",
"updates": "Updates" "updates": "Aktualizacje"
}, },
"calibreweb": { "calibreweb": {
"books": "Książki", "books": "Książki",
"authors": "Autorzy", "authors": "Autorzy",
"categories": "Kategorie", "categories": "Kategorie",
"series": "Series" "series": "Seriale"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "Kolejka",
"downloadBytesRemaining": "Remaining", "downloadBytesRemaining": "Pozostało",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Rozmiar",
"downloadSpeed": "Prędkość" "downloadSpeed": "Prędkość"
}, },
"kavita": { "kavita": {
"seriesCount": "Series", "seriesCount": "Seriale",
"totalFiles": "Pliki" "totalFiles": "Pliki"
}, },
"azuredevops": { "azuredevops": {
"result": "Wynik", "result": "Wynik",
"status": "Status", "status": "Stan",
"buildId": "ID kompilacji", "buildId": "ID kompilacji",
"succeeded": "Ukończono", "succeeded": "Ukończono",
"notStarted": "Nierozpoczęte", "notStarted": "Nierozpoczęte",
@@ -802,12 +796,12 @@
"inProgress": "W trakcie", "inProgress": "W trakcie",
"totalPrs": "Łącznie PRs", "totalPrs": "Łącznie PRs",
"myPrs": "Moje PRs", "myPrs": "Moje PRs",
"approved": "Approved" "approved": "Zaakceptowane"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "Stan",
"online": "Online", "online": "Dostępny",
"offline": "Offline", "offline": "Nieosiągalny",
"name": "Nazwa", "name": "Nazwa",
"map": "Mapa", "map": "Mapa",
"currentPlayers": "Gracze online", "currentPlayers": "Gracze online",
@@ -830,33 +824,33 @@
}, },
"openmediavault": { "openmediavault": {
"downloading": "Pobieranie", "downloading": "Pobieranie",
"total": "Total", "total": "Całkowite",
"running": "Running", "running": "Działa",
"stopped": "Stopped", "stopped": "Zatrzymane",
"passed": "Passed", "passed": "Powodzenie",
"failed": "Failed" "failed": "Niepowodzenie"
}, },
"openwrt": { "openwrt": {
"uptime": "Uptime", "uptime": "Czas działania",
"cpuLoad": "Śr. obciążenie CPU (5m)", "cpuLoad": "Śr. obciążenie CPU (5m)",
"up": "Up", "up": "Dostępny",
"down": "Down", "down": "Niedostępny",
"bytesTx": "Przesłane", "bytesTx": "Przesłane",
"bytesRx": "Received" "bytesRx": "Odebrane"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "Stan",
"uptime": "Uptime", "uptime": "Czas działania",
"lastDown": "Ostatni downtime", "lastDown": "Ostatni downtime",
"downDuration": "Długość downtime'u", "downDuration": "Długość downtime'u",
"sitesUp": "Sites Up", "sitesUp": "Działające",
"sitesDown": "Sites Down", "sitesDown": "Niedziałające",
"paused": "Paused", "paused": "Zatrzymane",
"notyetchecked": "Nie sprawdzono", "notyetchecked": "Nie sprawdzono",
"up": "Up", "up": "Dostępny",
"seemsdown": "Możliwe, że wyłączony", "seemsdown": "Możliwe, że wyłączony",
"down": "Down", "down": "Niedostępny",
"unknown": "Unknown" "unknown": "Nieznany"
}, },
"calendar": { "calendar": {
"inCinemas": "W kinach", "inCinemas": "W kinach",
@@ -875,10 +869,10 @@
"totalfilesize": "Rozmiar całkowity" "totalfilesize": "Rozmiar całkowity"
}, },
"mailcow": { "mailcow": {
"domains": "Domains", "domains": "Domeny",
"mailboxes": "Skrzynki", "mailboxes": "Skrzynki",
"mails": "Poczta", "mails": "Poczta",
"storage": "Storage" "storage": "Pamięć"
}, },
"netdata": { "netdata": {
"warnings": "Ostrzeżenia", "warnings": "Ostrzeżenia",
@@ -887,12 +881,12 @@
"plantit": { "plantit": {
"events": "Wydarzenia", "events": "Wydarzenia",
"plants": "Rośliny", "plants": "Rośliny",
"photos": "Photos", "photos": "Zdjęcia",
"species": "Gatunki" "species": "Gatunki"
}, },
"gitea": { "gitea": {
"notifications": "Powiadomienia", "notifications": "Powiadomienia",
"issues": "Issues", "issues": "Zgłoszenia",
"pulls": "Żądania Pull", "pulls": "Żądania Pull",
"repositories": "Repozytoria" "repositories": "Repozytoria"
}, },
@@ -908,13 +902,13 @@
"galleries": "Galerie", "galleries": "Galerie",
"performers": "Artyści", "performers": "Artyści",
"studios": "Studia", "studios": "Studia",
"movies": "Movies", "movies": "Filmy",
"tags": "Tags", "tags": "Tagi",
"oCount": "O Licznik" "oCount": "O Licznik"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "Użytkownicy",
"recipes": "Recipes", "recipes": "Przepisy",
"keywords": "Słowa kluczowe" "keywords": "Słowa kluczowe"
}, },
"homebox": { "homebox": {
@@ -922,18 +916,18 @@
"totalWithWarranty": "Z gwarancją", "totalWithWarranty": "Z gwarancją",
"locations": "Lokalizacje", "locations": "Lokalizacje",
"labels": "Etykiety", "labels": "Etykiety",
"users": "Users", "users": "Użytkownicy",
"totalValue": "Wartość całkowita" "totalValue": "Wartość całkowita"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alerts", "alerts": "Alarmy",
"bans": "Bany" "bans": "Bany"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Połączono",
"enabled": "Enabled", "enabled": "Włączone",
"disabled": "Disabled", "disabled": "Wyłączone",
"total": "Total" "total": "Całkowite"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxy", "proxied": "Proxy",
@@ -955,17 +949,17 @@
}, },
"frigate": { "frigate": {
"cameras": "Kamery", "cameras": "Kamery",
"uptime": "Uptime", "uptime": "Czas działania",
"version": "Wersja" "version": "Wersja"
}, },
"linkwarden": { "linkwarden": {
"links": "Zapisane linki", "links": "Łącza",
"collections": "Kolekcje", "collections": "Kolekcje",
"tags": "Tagi" "tags": "Tagi"
}, },
"zabbix": { "zabbix": {
"unclassified": "Niezaklasyfikowane", "unclassified": "Niezaklasyfikowane",
"information": "Information", "information": "Informacje",
"warning": "Ostrzeżenie", "warning": "Ostrzeżenie",
"average": "Średnia", "average": "Średnia",
"high": "Wysokie", "high": "Wysokie",
@@ -989,21 +983,21 @@
"name": "Nazwa", "name": "Nazwa",
"address": "Adres", "address": "Adres",
"last_seen": "Ostatnio dostępny", "last_seen": "Ostatnio dostępny",
"status": "Status", "status": "Stan",
"online": "Online", "online": "Dostępny",
"offline": "Offline" "offline": "Nieosiągalny"
}, },
"beszel": { "beszel": {
"name": "Nazwa", "name": "Nazwa",
"systems": "Systemy", "systems": "Systemy",
"up": "Up", "up": "Dostępny",
"down": "Down", "down": "Niedostępny",
"paused": "Paused", "paused": "Zatrzymane",
"pending": "Pending", "pending": "Oczekiwane",
"status": "Status", "status": "Stan",
"updated": "Updated", "updated": "Zaktualizowane",
"cpu": "Procesor", "cpu": "Procesor",
"memory": "MEM", "memory": "RAM",
"disk": "Dysk", "disk": "Dysk",
"network": "NET" "network": "NET"
}, },
@@ -1011,14 +1005,14 @@
"apps": "Aplikacje", "apps": "Aplikacje",
"synced": "Synchronizowane", "synced": "Synchronizowane",
"outOfSync": "Bez synchronizacji", "outOfSync": "Bez synchronizacji",
"healthy": "Healthy", "healthy": "Zdrowy",
"degraded": "Zdegradowane", "degraded": "Zdegradowane",
"progressing": "Postępujące", "progressing": "Postępujące",
"missing": "Missing", "missing": "Brakujące",
"suspended": "Zawieszone" "suspended": "Zawieszone"
}, },
"spoolman": { "spoolman": {
"loading": "Loading" "loading": "Wczytywanie"
}, },
"gitlab": { "gitlab": {
"groups": "Grupy", "groups": "Grupy",
@@ -1027,10 +1021,10 @@
"projects": "Projekty" "projects": "Projekty"
}, },
"apcups": { "apcups": {
"status": "Status", "status": "Stan",
"load": "Load", "load": "Obciążenie",
"bcharge": "Battery Charge", "bcharge": "Stan baterii",
"timeleft": "Time Left" "timeleft": "Pozostało"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Zakładki", "bookmarks": "Zakładki",
@@ -1041,11 +1035,11 @@
"tags": "Tagi" "tags": "Tagi"
}, },
"slskd": { "slskd": {
"slskStatus": "Network", "slskStatus": "Sieć",
"connected": "Connected", "connected": "Połączono",
"disconnected": "Disconnected", "disconnected": "Rozłączono",
"updateStatus": "Aktualizacja", "updateStatus": "Aktualizacja",
"update_yes": "Available", "update_yes": "Dostępne",
"update_no": "Aktualny", "update_no": "Aktualny",
"downloads": "Pobieranie", "downloads": "Pobieranie",
"uploads": "Przesyłanie", "uploads": "Przesyłanie",
@@ -1060,28 +1054,5 @@
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Serwery",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -63,14 +63,14 @@
"wlan_users": "Utilizatori WLAN", "wlan_users": "Utilizatori WLAN",
"up": "UP", "up": "UP",
"down": "Oprit", "down": "Oprit",
"wait": "Please wait", "wait": "Va rugăm așteptați",
"empty_data": "Starea subsistemului este necunoscut" "empty_data": "Starea subsistemului este necunoscut"
}, },
"docker": { "docker": {
"rx": "RX", "rx": "RX",
"tx": "TX", "tx": "TX",
"mem": "MEM", "mem": "MEM",
"cpu": "CPU", "cpu": "Procesor",
"running": "Rulează", "running": "Rulează",
"offline": "Offline", "offline": "Offline",
"error": "Eroare", "error": "Eroare",
@@ -83,7 +83,7 @@
"partial": "Parțial" "partial": "Parțial"
}, },
"ping": { "ping": {
"error": "Error", "error": "Eroare",
"ping": "Ping", "ping": "Ping",
"down": "Jos", "down": "Jos",
"up": "Sus", "up": "Sus",
@@ -91,11 +91,11 @@
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "Stare HTTP", "http_status": "Stare HTTP",
"error": "Error", "error": "Eroare",
"response": "Răspuns", "response": "Răspuns",
"down": "Down", "down": "Jos",
"up": "Up", "up": "Sus",
"not_available": "Not Available" "not_available": "Indisponibil"
}, },
"emby": { "emby": {
"playing": "Activ", "playing": "Activ",
@@ -112,7 +112,7 @@
"offline_alt": "Offline", "offline_alt": "Offline",
"online": "Online", "online": "Online",
"total": "Total", "total": "Total",
"unknown": "Unknown" "unknown": "Necunoscut"
}, },
"evcc": { "evcc": {
"pv_power": "Producție", "pv_power": "Producție",
@@ -133,7 +133,7 @@
"unread": "Necitit" "unread": "Necitit"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Status", "connectionStatus": "Stare",
"connectionStatusUnconfigured": "Neconfigurat", "connectionStatusUnconfigured": "Neconfigurat",
"connectionStatusConnecting": "Connecting", "connectionStatusConnecting": "Connecting",
"connectionStatusAuthenticating": "Authenticating", "connectionStatusAuthenticating": "Authenticating",
@@ -144,8 +144,8 @@
"uptime": "Uptime", "uptime": "Uptime",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
"down": "Down", "down": "Jos",
"up": "Up", "up": "Sus",
"received": "Primit", "received": "Primit",
"sent": "Trimis", "sent": "Trimis",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP",
@@ -168,10 +168,10 @@
"passes": "Passes" "passes": "Passes"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "Activ",
"transcoding": "Transcoding", "transcoding": "Transcodare",
"bitrate": "Bitrate", "bitrate": "Rata de biți",
"no_active": "No Active Streams", "no_active": "Niciun stream activ",
"plex_connection_error": "Check Plex Connection" "plex_connection_error": "Check Plex Connection"
}, },
"omada": { "omada": {
@@ -189,28 +189,28 @@
"plex": { "plex": {
"streams": "Fluxuri active", "streams": "Fluxuri active",
"albums": "Albume", "albums": "Albume",
"movies": "Movies", "movies": "Filme",
"tv": "Seriale" "tv": "Seriale"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "Rată",
"queue": "Coadă", "queue": "Coadă",
"timeleft": "Timp rămas" "timeleft": "Timp rămas"
}, },
"rutorrent": { "rutorrent": {
"active": "Activ", "active": "Activ",
"upload": "Upload", "upload": "Încarcă",
"download": "Download" "download": "Descarcă"
}, },
"transmission": { "transmission": {
"download": "Download", "download": "Descarcă",
"upload": "Upload", "upload": "Încarcă",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Download", "download": "Descarcă",
"upload": "Upload", "upload": "Încarcă",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -223,8 +223,8 @@
"invalid": "Invalid" "invalid": "Invalid"
}, },
"deluge": { "deluge": {
"download": "Download", "download": "Descarcă",
"upload": "Upload", "upload": "Încarcă",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -233,34 +233,34 @@
"cachemissbytes": "Cache Miss Bytes" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Descarcă",
"upload": "Upload", "upload": "Încarcă",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"sonarr": { "sonarr": {
"wanted": "Dorite", "wanted": "Dorite",
"queued": "În coadă", "queued": "În coadă",
"series": "Series", "series": "Serie",
"queue": "Queue", "queue": "Coadă",
"unknown": "Unknown" "unknown": "Necunoscut"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Dorite",
"missing": "Lipsește", "missing": "Lipsește",
"queued": "Queued", "queued": "În coadă",
"movies": "Movies", "movies": "Filme",
"queue": "Queue", "queue": "Coadă",
"unknown": "Unknown" "unknown": "Necunoscut"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Dorite",
"queued": "Queued", "queued": "În coadă",
"artists": "Artiști" "artists": "Artiști"
}, },
"readarr": { "readarr": {
"wanted": "Wanted", "wanted": "Dorite",
"queued": "Queued", "queued": "În coadă",
"books": "Cărți" "books": "Cărți"
}, },
"bazarr": { "bazarr": {
@@ -273,19 +273,19 @@
"available": "Disponibile" "available": "Disponibile"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pending", "pending": "În așteptare",
"approved": "Approved", "approved": "Aprobate",
"available": "Available" "available": "Disponibile"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "În așteptare",
"processing": "Procesare", "processing": "Procesare",
"approved": "Approved", "approved": "Aprobate",
"available": "Available" "available": "Disponibile"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Connected", "connected": "Conectat",
"new_devices": "Dispozitive Noi", "new_devices": "Dispozitive Noi",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
}, },
@@ -296,26 +296,26 @@
"gravity": "Gravitație" "gravity": "Gravitație"
}, },
"adguard": { "adguard": {
"queries": "Queries", "queries": "Cereri",
"blocked": "Blocked", "blocked": "Blocate",
"filtered": "Filtrate", "filtered": "Filtrate",
"latency": "Latentă" "latency": "Latentă"
}, },
"speedtest": { "speedtest": {
"upload": "Upload", "upload": "Încarcă",
"download": "Download", "download": "Descarcă",
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "Rulează",
"stopped": "Oprit", "stopped": "Oprit",
"total": "Total" "total": "Total"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Descărcat",
"nondownload": "Non-Downloaded", "nondownload": "Non-Downloaded",
"read": "Read", "read": "Read",
"unread": "Unread", "unread": "Necitit",
"downloadedread": "Downloaded & Read", "downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread", "downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read", "nondownloadedread": "Non-Downloaded & Read",
@@ -336,7 +336,7 @@
"ago": "{{value}} Ago" "ago": "{{value}} Ago"
}, },
"technitium": { "technitium": {
"totalQueries": "Queries", "totalQueries": "Cereri",
"totalNoError": "Success", "totalNoError": "Success",
"totalServerFailure": "Failures", "totalServerFailure": "Failures",
"totalNxDomain": "NX Domains", "totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative", "totalAuthoritative": "Authoritative",
"totalRecursive": "Recursiv", "totalRecursive": "Recursiv",
"totalCached": "Cached", "totalCached": "Cached",
"totalBlocked": "Blocked", "totalBlocked": "Blocate",
"totalDropped": "Dropped", "totalDropped": "Dropped",
"totalClients": "Clienți" "totalClients": "Clienți"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "Coadă",
"processed": "Processed", "processed": "Processed",
"errored": "Errored", "errored": "Errored",
"saved": "Salvat" "saved": "Salvat"
@@ -359,14 +359,8 @@
"services": "Servicii", "services": "Servicii",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "Niciun stream activ",
"please_wait": "Please Wait" "please_wait": "Please Wait"
}, },
"npm": { "npm": {
@@ -383,13 +377,13 @@
}, },
"gotify": { "gotify": {
"apps": "Aplicații", "apps": "Aplicații",
"clients": "Clients", "clients": "Clienți",
"messages": "Mesaje" "messages": "Mesaje"
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "Indexatori", "enableIndexers": "Indexatori",
"numberOfGrabs": "Descărcate", "numberOfGrabs": "Descărcate",
"numberOfQueries": "Queries", "numberOfQueries": "Cereri",
"numberOfFailGrabs": "Descărcări eșuate", "numberOfFailGrabs": "Descărcări eșuate",
"numberOfFailQueries": "Cereri eșuate" "numberOfFailQueries": "Cereri eșuate"
}, },
@@ -401,51 +395,51 @@
"numActiveSessions": "Sesiuni", "numActiveSessions": "Sesiuni",
"numConnections": "Conexiuni", "numConnections": "Conexiuni",
"dataRelayed": "Retransmise", "dataRelayed": "Retransmise",
"transferRate": "Rate" "transferRate": "Rată"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "Utilizatori",
"status_count": "Postări", "status_count": "Postări",
"domain_count": "Domenii" "domain_count": "Domenii"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "Dorite",
"queued": "Queued", "queued": "În coadă",
"series": "Series" "series": "Serie"
}, },
"minecraft": { "minecraft": {
"players": "Jucători", "players": "Jucători",
"version": "Versiune", "version": "Versiune",
"status": "Status", "status": "Stare",
"up": "Online", "up": "Online",
"down": "Offline" "down": "Offline"
}, },
"miniflux": { "miniflux": {
"read": "Read", "read": "Read",
"unread": "Unread" "unread": "Necitit"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "Utilizatori",
"loginsLast24H": "Autentificări (24h)", "loginsLast24H": "Autentificări (24h)",
"failedLoginsLast24H": "Conectări eșuate (24h)" "failedLoginsLast24H": "Conectări eșuate (24h)"
}, },
"proxmox": { "proxmox": {
"mem": "MEM", "mem": "MEM",
"cpu": "CPU", "cpu": "Procesor",
"lxc": "Container", "lxc": "Container",
"vms": "Masini Virtuale" "vms": "Masini Virtuale"
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "Procesor",
"load": "Load", "load": "Sarcină",
"wait": "Please wait", "wait": "Va rugăm așteptați",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temperatură", "_temp": "Temperatură",
"warn": "Warn", "warn": "Warn",
"uptime": "UP", "uptime": "UP",
"total": "Total", "total": "Total",
"free": "Free", "free": "Disponibili",
"used": "Used", "used": "Utilizați",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Crit", "crit": "Crit",
@@ -470,13 +464,13 @@
"1-day": "Aproape însorit", "1-day": "Aproape însorit",
"1-night": "Aproape fără nori", "1-night": "Aproape fără nori",
"2-day": "Parţial Înnorat", "2-day": "Parţial Înnorat",
"2-night": "Partly Cloudy", "2-night": "Parţial Înnorat",
"3-day": "Înnorat", "3-day": "Înnorat",
"3-night": "Cloudy", "3-night": "Înnorat",
"45-day": "Ceaţă", "45-day": "Ceaţă",
"45-night": "Foggy", "45-night": "Ceaţă",
"48-day": "Foggy", "48-day": "Ceaţă",
"48-night": "Foggy", "48-night": "Ceaţă",
"51-day": "Light Drizzle", "51-day": "Light Drizzle",
"51-night": "Light Drizzle", "51-night": "Light Drizzle",
"53-day": "Drizzle", "53-day": "Drizzle",
@@ -488,9 +482,9 @@
"57-day": "Freezing Drizzle", "57-day": "Freezing Drizzle",
"57-night": "Freezing Drizzle", "57-night": "Freezing Drizzle",
"61-day": "Ploaie Ușoară", "61-day": "Ploaie Ușoară",
"61-night": "Light Rain", "61-night": "Ploaie Ușoară",
"63-day": "Ploaie", "63-day": "Ploaie",
"63-night": "Rain", "63-night": "Ploaie",
"65-day": "Heavy Rain", "65-day": "Heavy Rain",
"65-night": "Heavy Rain", "65-night": "Heavy Rain",
"66-day": "Freezing Rain", "66-day": "Freezing Rain",
@@ -529,17 +523,17 @@
"up_to_date": "Actualizat", "up_to_date": "Actualizat",
"child_bridges": "Child Bridges", "child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Sus",
"pending": "Pending", "pending": "În așteptare",
"down": "Down" "down": "Jos"
}, },
"healthchecks": { "healthchecks": {
"new": "Nou", "new": "Nou",
"up": "Up", "up": "Sus",
"grace": "In Grace Period", "grace": "In Grace Period",
"down": "Down", "down": "Jos",
"paused": "Pauză", "paused": "Pauză",
"status": "Status", "status": "Stare",
"last_ping": "Ultimul Ping", "last_ping": "Ultimul Ping",
"never": "No pings yet" "never": "No pings yet"
}, },
@@ -549,13 +543,13 @@
"containers_failed": "Eșuat" "containers_failed": "Eșuat"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "Aprobate",
"rejectedPushes": "Respinse", "rejectedPushes": "Respinse",
"filters": "Filtre", "filters": "Filtre",
"indexers": "Indexers" "indexers": "Indexatori"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "Coadă",
"videos": "Videos", "videos": "Videos",
"channels": "Canale", "channels": "Canale",
"playlists": "Playlists" "playlists": "Playlists"
@@ -563,12 +557,12 @@
"truenas": { "truenas": {
"load": "System Load", "load": "System Load",
"uptime": "Uptime", "uptime": "Uptime",
"alerts": "Alerts" "alerts": "Alerte"
}, },
"pyload": { "pyload": {
"speed": "Viteză", "speed": "Viteză",
"active": "Active", "active": "Activ",
"queue": "Queue", "queue": "Coadă",
"total": "Total" "total": "Total"
}, },
"gluetun": { "gluetun": {
@@ -578,21 +572,21 @@
"port_forwarded": "Port Forwarded" "port_forwarded": "Port Forwarded"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Channels", "channels": "Canale",
"hd": "HD", "hd": "HD",
"tunerCount": "Tunere", "tunerCount": "Tunere",
"channelNumber": "Canal", "channelNumber": "Canal",
"channelNetwork": "Rețea", "channelNetwork": "Rețea",
"signalStrength": "Putere", "signalStrength": "Putere",
"signalQuality": "Calitate", "signalQuality": "Calitate",
"symbolQuality": "Quality", "symbolQuality": "Calitate",
"networkRate": "Bitrate", "networkRate": "Rata de biți",
"clientIP": "Client" "clientIP": "Client"
}, },
"scrutiny": { "scrutiny": {
"passed": "Passed", "passed": "Passed",
"failed": "Failed", "failed": "Eșuat",
"unknown": "Unknown" "unknown": "Necunoscut"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Inbox", "inbox": "Inbox",
@@ -618,7 +612,7 @@
}, },
"xteve": { "xteve": {
"streams_all": "All Streams", "streams_all": "All Streams",
"streams_active": "Active Streams", "streams_active": "Fluxuri active",
"streams_xepg": "XEPG Channels" "streams_xepg": "XEPG Channels"
}, },
"opendtu": { "opendtu": {
@@ -640,33 +634,33 @@
"layers": "Straturi" "layers": "Straturi"
}, },
"octoprint": { "octoprint": {
"printer_state": "Status", "printer_state": "Stare",
"temp_tool": "Tool temp", "temp_tool": "Tool temp",
"temp_bed": "Bed temp", "temp_bed": "Bed temp",
"job_completion": "Completion" "job_completion": "Completion"
}, },
"cloudflared": { "cloudflared": {
"origin_ip": "Origin IP", "origin_ip": "Origin IP",
"status": "Status" "status": "Stare"
}, },
"pfsense": { "pfsense": {
"load": "Load Avg", "load": "Load Avg",
"memory": "Mem Usage", "memory": "Mem Usage",
"wanStatus": "WAN Status", "wanStatus": "WAN Status",
"up": "Up", "up": "Sus",
"down": "Down", "down": "Jos",
"temp": "Temp", "temp": "Temperatură",
"disk": "Utilizare Disc", "disk": "Utilizare Disc",
"wanIP": "WAN IP" "wanIP": "WAN IP"
}, },
"proxmoxbackupserver": { "proxmoxbackupserver": {
"datastore_usage": "Datastore", "datastore_usage": "Datastore",
"failed_tasks_24h": "Failed Tasks 24h", "failed_tasks_24h": "Failed Tasks 24h",
"cpu_usage": "CPU", "cpu_usage": "Procesor",
"memory_usage": "Memorie" "memory_usage": "Memorie"
}, },
"immich": { "immich": {
"users": "Users", "users": "Utilizatori",
"photos": "Fotografii", "photos": "Fotografii",
"videos": "Videos", "videos": "Videos",
"storage": "Storage" "storage": "Storage"
@@ -679,35 +673,35 @@
"m": "m" "m": "m"
}, },
"atsumeru": { "atsumeru": {
"series": "Series", "series": "Serie",
"archives": "Arhive", "archives": "Arhive",
"chapters": "Chapters", "chapters": "Chapters",
"categories": "Categorii" "categories": "Categorii"
}, },
"komga": { "komga": {
"libraries": "Biblioteci", "libraries": "Biblioteci",
"series": "Series", "series": "Serie",
"books": "Books" "books": "Cărți"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Zile",
"uptime": "Uptime", "uptime": "Uptime",
"volumeAvailable": "Available" "volumeAvailable": "Disponibile"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Serie",
"issues": "Issues", "issues": "Issues",
"wanted": "Wanted" "wanted": "Dorite"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Albume",
"photos": "Photos", "photos": "Fotografii",
"videos": "Videos", "videos": "Videos",
"people": "Oameni" "people": "Oameni"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "Coadă",
"processing": "Processing", "processing": "Procesare",
"processed": "Processed", "processed": "Processed",
"time": "Timp" "time": "Timp"
}, },
@@ -730,11 +724,11 @@
"numshares": "Articole Partajate" "numshares": "Articole Partajate"
}, },
"kopia": { "kopia": {
"status": "Status", "status": "Stare",
"size": "Mărime", "size": "Mărime",
"lastrun": "Ultima Rulare", "lastrun": "Ultima Rulare",
"nextrun": "Următoarea Rulare", "nextrun": "Următoarea Rulare",
"failed": "Failed" "failed": "Eșuat"
}, },
"unmanic": { "unmanic": {
"active_workers": "Muncitori activi", "active_workers": "Muncitori activi",
@@ -756,15 +750,15 @@
"uptime": "Uptime" "uptime": "Uptime"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Today", "gross_percent_today": "Astăzi",
"gross_percent_1y": "Un an", "gross_percent_1y": "Un an",
"gross_percent_max": "Tot timpul" "gross_percent_max": "Tot timpul"
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasturi", "podcasts": "Podcasturi",
"books": "Books", "books": "Cărți",
"podcastsDuration": "Durată", "podcastsDuration": "Durată",
"booksDuration": "Duration" "booksDuration": "Durată"
}, },
"homeassistant": { "homeassistant": {
"people_home": "People Home", "people_home": "People Home",
@@ -773,45 +767,45 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Monitoring", "monitoring": "Monitoring",
"updates": "Updates" "updates": "Actualizări"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "Cărți",
"authors": "Autori", "authors": "Autori",
"categories": "Categories", "categories": "Categorii",
"series": "Series" "series": "Serie"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "Coadă",
"downloadBytesRemaining": "Remaining", "downloadBytesRemaining": "Rămas",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Mărime",
"downloadSpeed": "Speed" "downloadSpeed": "Viteză"
}, },
"kavita": { "kavita": {
"seriesCount": "Series", "seriesCount": "Serie",
"totalFiles": "Files" "totalFiles": "Fișiere"
}, },
"azuredevops": { "azuredevops": {
"result": "Rezultat", "result": "Rezultat",
"status": "Status", "status": "Stare",
"buildId": "Build ID", "buildId": "Build ID",
"succeeded": "Succeeded", "succeeded": "Succeeded",
"notStarted": "Not Started", "notStarted": "Not Started",
"failed": "Failed", "failed": "Eșuat",
"canceled": "Anulat", "canceled": "Anulat",
"inProgress": "În Progres", "inProgress": "În Progres",
"totalPrs": "Total PRs", "totalPrs": "Total PRs",
"myPrs": "My PRs", "myPrs": "My PRs",
"approved": "Approved" "approved": "Aprobate"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "Stare",
"online": "Online", "online": "Online",
"offline": "Offline", "offline": "Offline",
"name": "Nume", "name": "Nume",
"map": "Hartă", "map": "Hartă",
"currentPlayers": "Current players", "currentPlayers": "Current players",
"players": "Players", "players": "Jucători",
"maxPlayers": "Max players", "maxPlayers": "Max players",
"bots": "Boți", "bots": "Boți",
"ping": "Ping" "ping": "Ping"
@@ -824,39 +818,39 @@
}, },
"mealie": { "mealie": {
"recipes": "Recipes", "recipes": "Recipes",
"users": "Users", "users": "Utilizatori",
"categories": "Categories", "categories": "Categorii",
"tags": "Etichete" "tags": "Etichete"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Downloading", "downloading": "Downloading",
"total": "Total", "total": "Total",
"running": "Running", "running": "Rulează",
"stopped": "Stopped", "stopped": "Oprit",
"passed": "Passed", "passed": "Passed",
"failed": "Failed" "failed": "Eșuat"
}, },
"openwrt": { "openwrt": {
"uptime": "Uptime", "uptime": "Uptime",
"cpuLoad": "CPU Load Avg (5m)", "cpuLoad": "CPU Load Avg (5m)",
"up": "Up", "up": "Sus",
"down": "Down", "down": "Jos",
"bytesTx": "Transmis", "bytesTx": "Transmis",
"bytesRx": "Received" "bytesRx": "Primit"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "Stare",
"uptime": "Uptime", "uptime": "Uptime",
"lastDown": "Last Downtime", "lastDown": "Last Downtime",
"downDuration": "Downtime Duration", "downDuration": "Downtime Duration",
"sitesUp": "Sites Up", "sitesUp": "Sites Up",
"sitesDown": "Sites Down", "sitesDown": "Sites Down",
"paused": "Paused", "paused": "Pau",
"notyetchecked": "Not Yet Checked", "notyetchecked": "Not Yet Checked",
"up": "Up", "up": "Sus",
"seemsdown": "Seems Down", "seemsdown": "Seems Down",
"down": "Down", "down": "Jos",
"unknown": "Unknown" "unknown": "Necunoscut"
}, },
"calendar": { "calendar": {
"inCinemas": "În cinematografe", "inCinemas": "În cinematografe",
@@ -875,7 +869,7 @@
"totalfilesize": "Mărime Totală" "totalfilesize": "Mărime Totală"
}, },
"mailcow": { "mailcow": {
"domains": "Domains", "domains": "Domenii",
"mailboxes": "Cutii poştale", "mailboxes": "Cutii poştale",
"mails": "Mails", "mails": "Mails",
"storage": "Storage" "storage": "Storage"
@@ -887,7 +881,7 @@
"plantit": { "plantit": {
"events": "Evenimente", "events": "Evenimente",
"plants": "Plante", "plants": "Plante",
"photos": "Photos", "photos": "Fotografii",
"species": "Specii" "species": "Specii"
}, },
"gitea": { "gitea": {
@@ -908,12 +902,12 @@
"galleries": "Galerii", "galleries": "Galerii",
"performers": "Performers", "performers": "Performers",
"studios": "Studios", "studios": "Studios",
"movies": "Movies", "movies": "Filme",
"tags": "Tags", "tags": "Etichete",
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "Utilizatori",
"recipes": "Recipes", "recipes": "Recipes",
"keywords": "Cuvinte cheie" "keywords": "Cuvinte cheie"
}, },
@@ -922,17 +916,17 @@
"totalWithWarranty": "Cu Garanție", "totalWithWarranty": "Cu Garanție",
"locations": "Locaţii", "locations": "Locaţii",
"labels": "Etichete", "labels": "Etichete",
"users": "Users", "users": "Utilizatori",
"totalValue": "Total Value" "totalValue": "Total Value"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alerts", "alerts": "Alerte",
"bans": "Bans" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Conectat",
"enabled": "Enabled", "enabled": "Activat",
"disabled": "Disabled", "disabled": "Dezactivat",
"total": "Total" "total": "Total"
}, },
"swagdashboard": { "swagdashboard": {
@@ -943,8 +937,8 @@
}, },
"myspeed": { "myspeed": {
"ping": "Ping", "ping": "Ping",
"download": "Download", "download": "Descarcă",
"upload": "Upload" "upload": "Încarcă"
}, },
"stocks": { "stocks": {
"stocks": "Acțiuni", "stocks": "Acțiuni",
@@ -956,16 +950,16 @@
"frigate": { "frigate": {
"cameras": "Camere", "cameras": "Camere",
"uptime": "Uptime", "uptime": "Uptime",
"version": "Version" "version": "Versiune"
}, },
"linkwarden": { "linkwarden": {
"links": "Links", "links": "Links",
"collections": "Colecții", "collections": "Colecții",
"tags": "Tags" "tags": "Etichete"
}, },
"zabbix": { "zabbix": {
"unclassified": "Not classified", "unclassified": "Not classified",
"information": "Information", "information": "Informație",
"warning": "Atenție", "warning": "Atenție",
"average": "Medie", "average": "Medie",
"high": "Înalt", "high": "Înalt",
@@ -986,23 +980,23 @@
"tasksInProgress": "Tasks In Progress" "tasksInProgress": "Tasks In Progress"
}, },
"headscale": { "headscale": {
"name": "Name", "name": "Nume",
"address": "Address", "address": "Adresă",
"last_seen": "Last Seen", "last_seen": "Last Seen",
"status": "Status", "status": "Stare",
"online": "Online", "online": "Online",
"offline": "Offline" "offline": "Offline"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Nume",
"systems": "Sistem", "systems": "Sistem",
"up": "Up", "up": "Sus",
"down": "Down", "down": "Jos",
"paused": "Paused", "paused": "Pau",
"pending": "Pending", "pending": "În așteptare",
"status": "Status", "status": "Stare",
"updated": "Updated", "updated": "Actualizat",
"cpu": "CPU", "cpu": "Procesor",
"memory": "MEM", "memory": "MEM",
"disk": "Disk", "disk": "Disk",
"network": "NET" "network": "NET"
@@ -1011,10 +1005,10 @@
"apps": "Aplicaţii", "apps": "Aplicaţii",
"synced": "Synced", "synced": "Synced",
"outOfSync": "Out Of Sync", "outOfSync": "Out Of Sync",
"healthy": "Healthy", "healthy": "Sănătos",
"degraded": "Degraded", "degraded": "Degraded",
"progressing": "Progressing", "progressing": "Progressing",
"missing": "Missing", "missing": "Lipsește",
"suspended": "Suspendat" "suspended": "Suspendat"
}, },
"spoolman": { "spoolman": {
@@ -1027,10 +1021,10 @@
"projects": "Proiecte" "projects": "Proiecte"
}, },
"apcups": { "apcups": {
"status": "Status", "status": "Stare",
"load": "Load", "load": "Sarcină",
"bcharge": "Battery Charge", "bcharge": "Încărcare Baterie",
"timeleft": "Time Left" "timeleft": "Timp rămas"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Marcaje", "bookmarks": "Marcaje",
@@ -1038,50 +1032,27 @@
"archived": "Arhivat", "archived": "Arhivat",
"highlights": "Highlights", "highlights": "Highlights",
"lists": "Liste", "lists": "Liste",
"tags": "Tags" "tags": "Etichete"
}, },
"slskd": { "slskd": {
"slskStatus": "Network", "slskStatus": "Rețea",
"connected": "Connected", "connected": "Conectat",
"disconnected": "Disconnected", "disconnected": "Deconectat",
"updateStatus": "Update", "updateStatus": "Update",
"update_yes": "Available", "update_yes": "Disponibile",
"update_no": "Up to Date", "update_no": "Actualizat",
"downloads": "Downloads", "downloads": "Downloads",
"uploads": "Uploads", "uploads": "Uploads",
"sharedFiles": "Files" "sharedFiles": "Fișiere"
}, },
"jellystat": { "jellystat": {
"songs": "Songs", "songs": "Melodii",
"movies": "Movies", "movies": "Filme",
"episodes": "Episodes", "episodes": "Episoade",
"other": "Altele" "other": "Altele"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -61,7 +61,7 @@
"wlan_devices": "WLAN устройства", "wlan_devices": "WLAN устройства",
"lan_users": "LAN пользователи", "lan_users": "LAN пользователи",
"wlan_users": "WLAN пользователи", "wlan_users": "WLAN пользователи",
"up": "В сети", "up": "Онлайн",
"down": "Скачивание", "down": "Скачивание",
"wait": "Пожалуйста, подождите", "wait": "Пожалуйста, подождите",
"empty_data": "Статус подсистемы неизвестен" "empty_data": "Статус подсистемы неизвестен"
@@ -69,7 +69,7 @@
"docker": { "docker": {
"rx": "RX", "rx": "RX",
"tx": "TX", "tx": "TX",
"mem": "Память", "mem": "ОЗУ",
"cpu": "ЦП", "cpu": "ЦП",
"running": "Запущено", "running": "Запущено",
"offline": "Не в сети", "offline": "Не в сети",
@@ -93,8 +93,8 @@
"http_status": "HTTP статус", "http_status": "HTTP статус",
"error": "Ошибка", "error": "Ошибка",
"response": "Ответ", "response": "Ответ",
"down": "Не в сети", "down": "Офлайн",
"up": "В сети", "up": "Онлайн",
"not_available": "Недоступен" "not_available": "Недоступен"
}, },
"emby": { "emby": {
@@ -112,7 +112,7 @@
"offline_alt": "Не в сети", "offline_alt": "Не в сети",
"online": "В сети", "online": "В сети",
"total": "Всего", "total": "Всего",
"unknown": "Неизвестно" "unknown": "Неизвестен"
}, },
"evcc": { "evcc": {
"pv_power": "Прод", "pv_power": "Прод",
@@ -144,8 +144,8 @@
"uptime": "Время работы", "uptime": "Время работы",
"maxDown": "Макс. Загрузка", "maxDown": "Макс. Загрузка",
"maxUp": "Макс. Отдача", "maxUp": "Макс. Отдача",
"down": "Не в сети", "down": "Офлайн",
"up": "В сети", "up": "Онлайн",
"received": "Получено", "received": "Получено",
"sent": "Отправлено", "sent": "Отправлено",
"externalIPAddress": "Внеш. IP", "externalIPAddress": "Внеш. IP",
@@ -168,10 +168,10 @@
"passes": "Пропущено" "passes": "Пропущено"
}, },
"tautulli": { "tautulli": {
"playing": "Играет", "playing": "Воспроизводится",
"transcoding": "Транскодируется", "transcoding": "Перекодирование",
"bitrate": "Битрейт", "bitrate": "Битрейт",
"no_active": "Нет активных стримов", "no_active": "Нет активных потоков",
"plex_connection_error": "Проверка соединения Plex" "plex_connection_error": "Проверка соединения Plex"
}, },
"omada": { "omada": {
@@ -193,7 +193,7 @@
"tv": "Сериалы" "tv": "Сериалы"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "Скорость",
"queue": "Очередь", "queue": "Очередь",
"timeleft": "Осталось" "timeleft": "Осталось"
}, },
@@ -241,25 +241,25 @@
"sonarr": { "sonarr": {
"wanted": "Розыск", "wanted": "Розыск",
"queued": "В очереди", "queued": "В очереди",
"series": "Сериалы", "series": "Серии",
"queue": "Очередь", "queue": "Очередь",
"unknown": "Неизвестно" "unknown": "Неизвестен"
}, },
"radarr": { "radarr": {
"wanted": "Требуется", "wanted": "Розыск",
"missing": "Отсутствует", "missing": "Отсутствует",
"queued": "В очереди", "queued": "В очереди",
"movies": "Фильмы", "movies": "Фильмы",
"queue": "Очередь", "queue": "Очередь",
"unknown": "Неизвестно" "unknown": "Неизвестен"
}, },
"lidarr": { "lidarr": {
"wanted": "Требуется", "wanted": "Розыск",
"queued": "В очереди", "queued": "В очереди",
"artists": "Исполнители" "artists": "Исполнители"
}, },
"readarr": { "readarr": {
"wanted": "Требуется", "wanted": "Розыск",
"queued": "В очереди", "queued": "В очереди",
"books": "Книги" "books": "Книги"
}, },
@@ -273,12 +273,12 @@
"available": "Доступно" "available": "Доступно"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Ожидают", "pending": "В обработке",
"approved": "Одобрено", "approved": "Одобрено",
"available": "Доступно" "available": "Доступно"
}, },
"overseerr": { "overseerr": {
"pending": "Ожидают", "pending": "В обработке",
"processing": "В процессе", "processing": "В процессе",
"approved": "Одобрено", "approved": "Одобрено",
"available": "Доступно" "available": "Доступно"
@@ -359,14 +359,8 @@
"services": "Сервисы", "services": "Сервисы",
"middleware": "Связующее ПО" "middleware": "Связующее ПО"
}, },
"trilium": {
"version": "Версия",
"notesCount": "Заметки",
"dbSize": "Размер БД",
"unknown": "Неизвестно"
},
"navidrome": { "navidrome": {
"nothing_streaming": "Нет активных стримов", "nothing_streaming": "Нет активных потоков",
"please_wait": "Пожалуйста, подождите" "please_wait": "Пожалуйста, подождите"
}, },
"npm": { "npm": {
@@ -401,7 +395,7 @@
"numActiveSessions": "Сессии", "numActiveSessions": "Сессии",
"numConnections": "Соединения", "numConnections": "Соединения",
"dataRelayed": "Ретранслировано", "dataRelayed": "Ретранслировано",
"transferRate": "Rate" "transferRate": "Скорость"
}, },
"mastodon": { "mastodon": {
"user_count": "Пользователи", "user_count": "Пользователи",
@@ -409,7 +403,7 @@
"domain_count": "Домены" "domain_count": "Домены"
}, },
"medusa": { "medusa": {
"wanted": "Требуется", "wanted": "Розыск",
"queued": "В очереди", "queued": "В очереди",
"series": "Серии" "series": "Серии"
}, },
@@ -430,7 +424,7 @@
"failedLoginsLast24H": "Неудачные входы (24ч)" "failedLoginsLast24H": "Неудачные входы (24ч)"
}, },
"proxmox": { "proxmox": {
"mem": "Память", "mem": "ОЗУ",
"cpu": "ЦП", "cpu": "ЦП",
"lxc": "LXC", "lxc": "LXC",
"vms": "Виртуальные машины" "vms": "Виртуальные машины"
@@ -442,14 +436,14 @@
"temp": "Температура", "temp": "Температура",
"_temp": "Температура", "_temp": "Температура",
"warn": "Предупреждение", "warn": "Предупреждение",
"uptime": "Время работы", "uptime": "Онлайн",
"total": "Всего", "total": "Всего",
"free": "Свободно", "free": "Свободно",
"used": "Использовано", "used": "Использовано",
"days": "д", "days": ней",
"hours": "ч", "hours": ас",
"crit": "Крит", "crit": "Крит",
"read": "Чтение", "read": "Прочитано",
"write": "Запись", "write": "Запись",
"gpu": "ГП", "gpu": "ГП",
"mem": "ОЗУ", "mem": "ОЗУ",
@@ -461,7 +455,7 @@
"search": "Поиск", "search": "Поиск",
"custom": "Пользовательский", "custom": "Пользовательский",
"visit": "Посетите", "visit": "Посетите",
"url": "URL", "url": "Ссылка",
"searchsuggestion": "Предложение" "searchsuggestion": "Предложение"
}, },
"wmo": { "wmo": {
@@ -478,15 +472,15 @@
"48-day": "Туманно", "48-day": "Туманно",
"48-night": "Туманно", "48-night": "Туманно",
"51-day": "Легкая морось", "51-day": "Легкая морось",
"51-night": "Легкая изморось", "51-night": "Легкая морось",
"53-day": "Морось", "53-day": "Морось",
"53-night": "Изморось", "53-night": "Морось",
"55-day": "Сильная морось", "55-day": "Сильная морось",
"55-night": "Сильная изморось", "55-night": "Сильная морось",
"56-day": "Легкая морозная морось", "56-day": "Легкая морозная морось",
"56-night": "Легкая морозная изморось", "56-night": "Легкая морозная морось",
"57-day": "Морозная морось", "57-day": "Морозная морось",
"57-night": "Морозная изморось", "57-night": "Морозная морось",
"61-day": "Слабый дождь", "61-day": "Слабый дождь",
"61-night": "Слабый дождь", "61-night": "Слабый дождь",
"63-day": "Дождь", "63-day": "Дождь",
@@ -494,9 +488,9 @@
"65-day": "Сильный дождь", "65-day": "Сильный дождь",
"65-night": "Сильный дождь", "65-night": "Сильный дождь",
"66-day": "Град", "66-day": "Град",
"66-night": "Ледяной дождь", "66-night": "Град",
"67-day": "Ледяной дождь", "67-day": "Град",
"67-night": "Ледяной дождь", "67-night": "Град",
"71-day": "Легкий снег", "71-day": "Легкий снег",
"71-night": "Легкий снег", "71-night": "Легкий снег",
"73-day": "Снег", "73-day": "Снег",
@@ -506,15 +500,15 @@
"77-day": "Снежная крупа", "77-day": "Снежная крупа",
"77-night": "Снежная крупа", "77-night": "Снежная крупа",
"80-day": "Лёгкие ливни", "80-day": "Лёгкие ливни",
"80-night": егкие ливни", "80-night": ёгкие ливни",
"81-day": "Ливни", "81-day": "Ливни",
"81-night": "Ливни", "81-night": "Ливни",
"82-day": "Сильные ливни", "82-day": "Сильные ливни",
"82-night": "Сильные ливни", "82-night": "Сильные ливни",
"85-day": "Снегопады", "85-day": "Снегопады",
"85-night": "Снегопад", "85-night": "Снегопады",
"86-day": "Снегопад", "86-day": "Снегопады",
"86-night": "Снегопад", "86-night": "Снегопады",
"95-day": "Гроза", "95-day": "Гроза",
"95-night": "Гроза", "95-night": "Гроза",
"96-day": "Гроза с градом", "96-day": "Гроза с градом",
@@ -529,15 +523,15 @@
"up_to_date": "Последняя версия", "up_to_date": "Последняя версия",
"child_bridges": "Дочерние мосты", "child_bridges": "Дочерние мосты",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "В сети", "up": "Онлайн",
"pending": "Ожидают", "pending": "В обработке",
"down": "Не в сети" "down": "Офлайн"
}, },
"healthchecks": { "healthchecks": {
"new": "Новый", "new": "Новый",
"up": "В сети", "up": "Онлайн",
"grace": "Пробный период", "grace": "Пробный период",
"down": "Не в сети", "down": "Офлайн",
"paused": "Приостановлено", "paused": "Приостановлено",
"status": "Статус", "status": "Статус",
"last_ping": "Последний пинг", "last_ping": "Последний пинг",
@@ -563,7 +557,7 @@
"truenas": { "truenas": {
"load": "Нагрузка системы", "load": "Нагрузка системы",
"uptime": "Время работы", "uptime": "Время работы",
"alerts": "Оповещения" "alerts": "Предупреждения"
}, },
"pyload": { "pyload": {
"speed": "Скорость", "speed": "Скорость",
@@ -592,7 +586,7 @@
"scrutiny": { "scrutiny": {
"passed": "Успешно", "passed": "Успешно",
"failed": "Провалено", "failed": "Провалено",
"unknown": "Неизвестно" "unknown": "Неизвестен"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Входящие", "inbox": "Входящие",
@@ -618,7 +612,7 @@
}, },
"xteve": { "xteve": {
"streams_all": "Все потоки", "streams_all": "Все потоки",
"streams_active": "Активные стримы", "streams_active": "Активные потоки",
"streams_xepg": "Каналы XEPG" "streams_xepg": "Каналы XEPG"
}, },
"opendtu": { "opendtu": {
@@ -628,7 +622,7 @@
"limit": "Лимит" "limit": "Лимит"
}, },
"opnsense": { "opnsense": {
"cpu": "ЦП", "cpu": "Загрузка ЦПУ",
"memory": "Активно ОЗУ", "memory": "Активно ОЗУ",
"wanUpload": "WAN Загрузка", "wanUpload": "WAN Загрузка",
"wanDownload": "WAN скачивание" "wanDownload": "WAN скачивание"
@@ -653,8 +647,8 @@
"load": "Средняя нагрузка", "load": "Средняя нагрузка",
"memory": "Использование ОЗУ", "memory": "Использование ОЗУ",
"wanStatus": "Статус WAN", "wanStatus": "Статус WAN",
"up": "В сети", "up": "Онлайн",
"down": "Не в сети", "down": "Офлайн",
"temp": "Температура", "temp": "Температура",
"disk": "Использование диска", "disk": "Использование диска",
"wanIP": "WAN IP" "wanIP": "WAN IP"
@@ -676,7 +670,7 @@
"down": "Неактивные сайты", "down": "Неактивные сайты",
"uptime": "Время работы", "uptime": "Время работы",
"incident": "Происшествия", "incident": "Происшествия",
"m": "м" "m": ин"
}, },
"atsumeru": { "atsumeru": {
"series": "Серии", "series": "Серии",
@@ -697,7 +691,7 @@
"mylar": { "mylar": {
"series": "Серии", "series": "Серии",
"issues": "Вопросы", "issues": "Вопросы",
"wanted": "Требуется" "wanted": "Розыск"
}, },
"photoprism": { "photoprism": {
"albums": "Альбомы", "albums": "Альбомы",
@@ -707,7 +701,7 @@
}, },
"fileflows": { "fileflows": {
"queue": "Очередь", "queue": "Очередь",
"processing": "Обрабатывается", "processing": "В процессе",
"processed": "Обработано", "processed": "Обработано",
"time": "Время" "time": "Время"
}, },
@@ -811,7 +805,7 @@
"name": "Имя", "name": "Имя",
"map": "Карта", "map": "Карта",
"currentPlayers": "Текущее количество игроков", "currentPlayers": "Текущее количество игроков",
"players": "Игроков", "players": "Игроки",
"maxPlayers": "Максимум игроков", "maxPlayers": "Максимум игроков",
"bots": "Ботов", "bots": "Ботов",
"ping": "Пинг" "ping": "Пинг"
@@ -839,8 +833,8 @@
"openwrt": { "openwrt": {
"uptime": "Время работы", "uptime": "Время работы",
"cpuLoad": "Средняя нагрузка ЦП (5м)", "cpuLoad": "Средняя нагрузка ЦП (5м)",
"up": "В сети", "up": "Онлайн",
"down": "Не в сети", "down": "Офлайн",
"bytesTx": "Передано", "bytesTx": "Передано",
"bytesRx": "Получено" "bytesRx": "Получено"
}, },
@@ -851,12 +845,12 @@
"downDuration": "Длительность падения", "downDuration": "Длительность падения",
"sitesUp": "Активные сайты", "sitesUp": "Активные сайты",
"sitesDown": "Неактивные сайты", "sitesDown": "Неактивные сайты",
"paused": "Приостановлен", "paused": "Приостановлено",
"notyetchecked": "Ещё не проверено", "notyetchecked": "Ещё не проверено",
"up": "В сети", "up": "Онлайн",
"seemsdown": "Кажется упал :с", "seemsdown": "Кажется упал :с",
"down": "Не в сети", "down": "Офлайн",
"unknown": "Неизвестно" "unknown": "Неизвестен"
}, },
"calendar": { "calendar": {
"inCinemas": "В кинотеатрах", "inCinemas": "В кинотеатрах",
@@ -892,7 +886,7 @@
}, },
"gitea": { "gitea": {
"notifications": "Уведомления", "notifications": "Уведомления",
"issues": "Проблемы", "issues": "Вопросы",
"pulls": "Запросы на слияние (Pull Request)", "pulls": "Запросы на слияние (Pull Request)",
"repositories": "Репозитории" "repositories": "Репозитории"
}, },
@@ -926,13 +920,13 @@
"totalValue": "Общая стоимость" "totalValue": "Общая стоимость"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Оповещения", "alerts": "Предупреждения",
"bans": "Блокировки" "bans": "Блокировки"
}, },
"wgeasy": { "wgeasy": {
"connected": "Подключено", "connected": "Подключено",
"enabled": "Включено", "enabled": "Включено",
"disabled": "Отключено", "disabled": "Выключено",
"total": "Всего" "total": "Всего"
}, },
"swagdashboard": { "swagdashboard": {
@@ -988,7 +982,7 @@
"headscale": { "headscale": {
"name": "Имя", "name": "Имя",
"address": "Адрес", "address": "Адрес",
"last_seen": "Был в посл. раз", "last_seen": "Последнее посещение",
"status": "Статус", "status": "Статус",
"online": "В сети", "online": "В сети",
"offline": "Не в сети" "offline": "Не в сети"
@@ -996,14 +990,14 @@
"beszel": { "beszel": {
"name": "Имя", "name": "Имя",
"systems": "Системы", "systems": "Системы",
"up": "В сети", "up": "Онлайн",
"down": "Не в сети", "down": "Офлайн",
"paused": "На паузе", "paused": "Приостановлено",
"pending": "Ожидают", "pending": "В обработке",
"status": "Статус", "status": "Статус",
"updated": "Обновлено", "updated": "Обновленно",
"cpu": "ЦП", "cpu": "ЦП",
"memory": "Память", "memory": "ОЗУ",
"disk": "Диск", "disk": "Диск",
"network": "Сеть" "network": "Сеть"
}, },
@@ -1011,24 +1005,24 @@
"apps": "Приложения", "apps": "Приложения",
"synced": "Синхронизированные", "synced": "Синхронизированные",
"outOfSync": "Не синхронизированные", "outOfSync": "Не синхронизированные",
"healthy": "Healthy", "healthy": "Здоровый",
"degraded": "Деградированные", "degraded": "Деградированные",
"progressing": "Выполняются", "progressing": "Выполняются",
"missing": "Отсутствует", "missing": "Отсутствует",
"suspended": "Приостановленные" "suspended": "Приостановленные"
}, },
"spoolman": { "spoolman": {
"loading": "Идет загрузка" "loading": "Загрузка"
}, },
"gitlab": { "gitlab": {
"groups": "Группы", "groups": "Группы",
"issues": "Issues", "issues": "Вопросы",
"merges": "Мердж-реквесты", "merges": "Мердж-реквесты",
"projects": "Проекты" "projects": "Проекты"
}, },
"apcups": { "apcups": {
"status": "Статус", "status": "Статус",
"load": "Нагрузка", "load": "Загрузка",
"bcharge": "Заряд батареи", "bcharge": "Заряд батареи",
"timeleft": "Осталось" "timeleft": "Осталось"
}, },
@@ -1046,7 +1040,7 @@
"disconnected": "Отключено", "disconnected": "Отключено",
"updateStatus": "Обновление", "updateStatus": "Обновление",
"update_yes": "Доступно", "update_yes": "Доступно",
"update_no": "Актуально", "update_no": "Последняя версия",
"downloads": "Скачивания", "downloads": "Скачивания",
"uploads": "Загрузки", "uploads": "Загрузки",
"sharedFiles": "Файлов" "sharedFiles": "Файлов"
@@ -1055,33 +1049,10 @@
"songs": "Песни", "songs": "Песни",
"movies": "Фильмы", "movies": "Фильмы",
"episodes": "Эпизоды", "episodes": "Эпизоды",
"other": "Другое" "other": "Другой"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Всего",
"running": "Запущено",
"stopped": "Остановлено",
"down": "Не в сети",
"unhealthy": "Unhealthy",
"unknown": "Неизвестно",
"servers": "Серверы",
"stacks": "Stacks",
"containers": "Контейнеры"
},
"filebrowser": {
"available": "Доступно",
"used": "Использовано",
"total": "Всего"
},
"wallos": {
"activeSubscriptions": "Подписки",
"thisMonthlyCost": "Этот месяц",
"nextMonthlyCost": "Следующий месяц",
"previousMonthlyCost": "Прошлый месяц",
"nextRenewingSubscription": "Следующая оплата"
} }
} }

View File

@@ -31,7 +31,7 @@
}, },
"weather": { "weather": {
"current": "Aktuálna poloha", "current": "Aktuálna poloha",
"allow": "Kliknutím povolíte", "allow": "Klikni pre povolenie",
"updating": "Prebieha aktualizácia", "updating": "Prebieha aktualizácia",
"wait": "Počkajte prosím" "wait": "Počkajte prosím"
}, },
@@ -63,12 +63,12 @@
"wlan_users": "Použ. WLAN", "wlan_users": "Použ. WLAN",
"up": "BEŽÍ", "up": "BEŽÍ",
"down": "NEBEŽÍ", "down": "NEBEŽÍ",
"wait": "Čakajte, prosím", "wait": "Počkajte prosím",
"empty_data": "Stav podsystému neznámy" "empty_data": "Stav podsystému neznámy"
}, },
"docker": { "docker": {
"rx": "Prijaté", "rx": "RX",
"tx": "Odoslané", "tx": "TX",
"mem": "RAM", "mem": "RAM",
"cpu": "CPU", "cpu": "CPU",
"running": "Beží", "running": "Beží",
@@ -93,9 +93,9 @@
"http_status": "HTTP stavový kód", "http_status": "HTTP stavový kód",
"error": "Chyba", "error": "Chyba",
"response": "Odpoveď", "response": "Odpoveď",
"down": "Down", "down": "Sťahovanie",
"up": "Beží", "up": "Nahrávanie",
"not_available": "Nedostupné" "not_available": "Nedostupný"
}, },
"emby": { "emby": {
"playing": "Prehrávané", "playing": "Prehrávané",
@@ -108,10 +108,10 @@
"songs": "Skladby" "songs": "Skladby"
}, },
"esphome": { "esphome": {
"offline": "Offline", "offline": "Nedostupný",
"offline_alt": "Offline", "offline_alt": "Nedostupný",
"online": "Online", "online": "Online",
"total": "Celkom", "total": "Celkovo",
"unknown": "Neznáme" "unknown": "Neznáme"
}, },
"evcc": { "evcc": {
@@ -141,11 +141,11 @@
"connectionStatusDisconnecting": "Odpájanie", "connectionStatusDisconnecting": "Odpájanie",
"connectionStatusDisconnected": "Odpojené", "connectionStatusDisconnected": "Odpojené",
"connectionStatusConnected": "Pripojené", "connectionStatusConnected": "Pripojené",
"uptime": "Dostupnosť", "uptime": "Prevádzka",
"maxDown": "Max. sťahovanie", "maxDown": "Max. sťahovanie",
"maxUp": "Max. nahrávanie", "maxUp": "Max. nahrávanie",
"down": "Down", "down": "Sťahovanie",
"up": "Beží", "up": "Nahrávanie",
"received": "Prijaté", "received": "Prijaté",
"sent": "Odoslané", "sent": "Odoslané",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP",
@@ -168,10 +168,10 @@
"passes": "Odvysielané" "passes": "Odvysielané"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "Prehrávané",
"transcoding": "Transcoding", "transcoding": "Prekódovávané",
"bitrate": "Bitrate", "bitrate": "Prenosová rýchlosť",
"no_active": "No Active Streams", "no_active": "Žiadny aktívny stream",
"plex_connection_error": "Skontroluj spojenie s Plex" "plex_connection_error": "Skontroluj spojenie s Plex"
}, },
"omada": { "omada": {
@@ -189,30 +189,30 @@
"plex": { "plex": {
"streams": "Aktívne vysielanie", "streams": "Aktívne vysielanie",
"albums": "Albumy", "albums": "Albumy",
"movies": "Filmov", "movies": "Filmy",
"tv": "Seriály" "tv": "Seriály"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "Rýchlosť",
"queue": "V poradí", "queue": "V poradí",
"timeleft": "Zostávajúci čas" "timeleft": "Zostávajúci čas"
}, },
"rutorrent": { "rutorrent": {
"active": "Aktívne", "active": "Aktívne",
"upload": "Nahrávanie", "upload": "Nahrávanie",
"download": "Download" "download": "Sťahovanie"
}, },
"transmission": { "transmission": {
"download": "Download", "download": "Sťahovanie",
"upload": "Nahrávanie", "upload": "Nahrávanie",
"leech": "Leech", "leech": "Leechované",
"seed": "Seed" "seed": "Seedované"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Download", "download": "Sťahovanie",
"upload": "Nahrávanie", "upload": "Nahrávanie",
"leech": "Leech", "leech": "Leechované",
"seed": "Seed" "seed": "Seedované"
}, },
"qnap": { "qnap": {
"cpuUsage": "Využitie CPU", "cpuUsage": "Využitie CPU",
@@ -223,43 +223,43 @@
"invalid": "Neplatný" "invalid": "Neplatný"
}, },
"deluge": { "deluge": {
"download": "Download", "download": "Sťahovanie",
"upload": "Nahrávanie", "upload": "Nahrávanie",
"leech": "Leech", "leech": "Leechované",
"seed": "Seed" "seed": "Seedované"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "Cache Hit Bytes", "cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Sťahovanie",
"upload": "Nahrávanie", "upload": "Nahrávanie",
"leech": "Leech", "leech": "Leechované",
"seed": "Seed" "seed": "Seedované"
}, },
"sonarr": { "sonarr": {
"wanted": "Žiadané", "wanted": "Žiadané",
"queued": "V poradí", "queued": "V poradí",
"series": "Series", "series": "Seriály",
"queue": "Poradie", "queue": "V poradí",
"unknown": "Neznáme" "unknown": "Neznáme"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Žiadané",
"missing": "Chýbajúce", "missing": "Chýbajúce",
"queued": "V poradí", "queued": "V poradí",
"movies": "Filmov", "movies": "Filmy",
"queue": "Poradie", "queue": "V poradí",
"unknown": "Neznáme" "unknown": "Neznáme"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Žiadané",
"queued": "V poradí", "queued": "V poradí",
"artists": "Interpreti" "artists": "Interpreti"
}, },
"readarr": { "readarr": {
"wanted": "Wanted", "wanted": "Žiadané",
"queued": "V poradí", "queued": "V poradí",
"books": "Knihy" "books": "Knihy"
}, },
@@ -284,7 +284,7 @@
"available": "Dostupné" "available": "Dostupné"
}, },
"netalertx": { "netalertx": {
"total": "Celkom", "total": "Celkovo",
"connected": "Pripojené", "connected": "Pripojené",
"new_devices": "Nové zariadenia", "new_devices": "Nové zariadenia",
"down_alerts": "Upozornenia o výpadkoch" "down_alerts": "Upozornenia o výpadkoch"
@@ -296,25 +296,25 @@
"gravity": "Gravity" "gravity": "Gravity"
}, },
"adguard": { "adguard": {
"queries": "Požiadaviek", "queries": "Dopyty",
"blocked": "Blokované", "blocked": "Zablokované",
"filtered": "Filtrované", "filtered": "Filtrované",
"latency": "Odozva" "latency": "Odozva"
}, },
"speedtest": { "speedtest": {
"upload": "Nahrávanie", "upload": "Nahrávanie",
"download": "Download", "download": "Sťahovanie",
"ping": "Odozva" "ping": "Odozva"
}, },
"portainer": { "portainer": {
"running": "Beží", "running": "Beží",
"stopped": "Zastavené", "stopped": "Zastavené",
"total": "Celkom" "total": "Celkovo"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Stiahnuté",
"nondownload": "Non-Downloaded", "nondownload": "Non-Downloaded",
"read": "Read", "read": "Prečítané",
"unread": "Neprečítané", "unread": "Neprečítané",
"downloadedread": "Downloaded & Read", "downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread", "downloadedunread": "Downloaded & Unread",
@@ -336,7 +336,7 @@
"ago": "Pred {{value}}" "ago": "Pred {{value}}"
}, },
"technitium": { "technitium": {
"totalQueries": "Požiadaviek", "totalQueries": "Dopyty",
"totalNoError": "Success", "totalNoError": "Success",
"totalServerFailure": "Failures", "totalServerFailure": "Failures",
"totalNxDomain": "NX Domains", "totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative", "totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive", "totalRecursive": "Recursive",
"totalCached": "Cached", "totalCached": "Cached",
"totalBlocked": "Blokované", "totalBlocked": "Zablokované",
"totalDropped": "Dropped", "totalDropped": "Dropped",
"totalClients": "Klienti" "totalClients": "Klienti"
}, },
"tdarr": { "tdarr": {
"queue": "Poradie", "queue": "V poradí",
"processed": "Spracované", "processed": "Spracované",
"errored": "Chybné", "errored": "Chybné",
"saved": "Uložené" "saved": "Uložené"
@@ -359,20 +359,14 @@
"services": "Služby", "services": "Služby",
"middleware": "Midlvér" "middleware": "Midlvér"
}, },
"trilium": {
"version": "Verzia",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Neznáme"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "Žiadny aktívny stream",
"please_wait": "Počkajte prosím" "please_wait": "Počkajte prosím"
}, },
"npm": { "npm": {
"enabled": "Povolené", "enabled": "Povolené",
"disabled": "Zakázané", "disabled": "Zakázané",
"total": "Celkom" "total": "Celkovo"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Nastavte jednu alebo viac kryptomien na sledovanie", "configure": "Nastavte jednu alebo viac kryptomien na sledovanie",
@@ -389,43 +383,43 @@
"prowlarr": { "prowlarr": {
"enableIndexers": "Indexery", "enableIndexers": "Indexery",
"numberOfGrabs": "Zachytení", "numberOfGrabs": "Zachytení",
"numberOfQueries": "Požiadaviek", "numberOfQueries": "Dopyty",
"numberOfFailGrabs": "Neúspešné zachytenia", "numberOfFailGrabs": "Neúspešné zachytenia",
"numberOfFailQueries": "Neúspešné dopyty" "numberOfFailQueries": "Neúspešné dopyty"
}, },
"jackett": { "jackett": {
"configured": "Nastavený", "configured": "Nastavený",
"errored": "Errored" "errored": "Chybné"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Relácie", "numActiveSessions": "Relácie",
"numConnections": "Spojenia", "numConnections": "Spojenia",
"dataRelayed": "Prenesené", "dataRelayed": "Prenesené",
"transferRate": "Rate" "transferRate": "Rýchlosť"
}, },
"mastodon": { "mastodon": {
"user_count": "Používateľov", "user_count": "Používatelia",
"status_count": "Príspevky", "status_count": "Príspevky",
"domain_count": "Domény" "domain_count": "Domény"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "Žiadané",
"queued": "V poradí", "queued": "V poradí",
"series": "Series" "series": "Seriály"
}, },
"minecraft": { "minecraft": {
"players": "Hráči", "players": "Hráči",
"version": "Verzia", "version": "Verzia",
"status": "Stav", "status": "Stav",
"up": "Online", "up": "Online",
"down": "Offline" "down": "Nedostupný"
}, },
"miniflux": { "miniflux": {
"read": "Prečítané", "read": "Prečítané",
"unread": "Neprečítané" "unread": "Neprečítané"
}, },
"authentik": { "authentik": {
"users": "Používateľov", "users": "Používatelia",
"loginsLast24H": "Prihlás. (24 hod.)", "loginsLast24H": "Prihlás. (24 hod.)",
"failedLoginsLast24H": "Neúspešné prihlás. (24 hod.)" "failedLoginsLast24H": "Neúspešné prihlás. (24 hod.)"
}, },
@@ -438,18 +432,18 @@
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Záťaž", "load": "Záťaž",
"wait": "Čakajte, prosím", "wait": "Počkajte prosím",
"temp": "TEMP", "temp": "TEPLOTA",
"_temp": "Teplota", "_temp": "Teplota",
"warn": "Upozornení", "warn": "Upozornení",
"uptime": "BEŽÍ", "uptime": "BEŽÍ",
"total": "Celkom", "total": "Celkovo",
"free": "Voľné", "free": "Voľné",
"used": "Využité", "used": "Využité",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Kritické", "crit": "Kritické",
"read": "Read", "read": "Prečítané",
"write": "Zápis", "write": "Zápis",
"gpu": "GPU", "gpu": "GPU",
"mem": "Pamäť", "mem": "Pamäť",
@@ -461,7 +455,7 @@
"search": "Hľadať", "search": "Hľadať",
"custom": "Vlastné", "custom": "Vlastné",
"visit": "Navštíviť", "visit": "Navštíviť",
"url": "URL adresa", "url": "Odkaz",
"searchsuggestion": "Návrh" "searchsuggestion": "Návrh"
}, },
"wmo": { "wmo": {
@@ -470,23 +464,23 @@
"1-day": "Prevažne slnečno", "1-day": "Prevažne slnečno",
"1-night": "Prevažne jasno", "1-night": "Prevažne jasno",
"2-day": "Čiastočne zamračené", "2-day": "Čiastočne zamračené",
"2-night": "Partly Cloudy", "2-night": "Čiastočne zamračené",
"3-day": "Oblačno", "3-day": "Oblačno",
"3-night": "Cloudy", "3-night": "Oblačno",
"45-day": "Hmlisto", "45-day": "Hmlisto",
"45-night": "Hmlisto", "45-night": "Hmlisto",
"48-day": "Hmlisto", "48-day": "Hmlisto",
"48-night": "Hmlisto", "48-night": "Hmlisto",
"51-day": "Mierne mrholenie", "51-day": "Mierne mrholenie",
"51-night": "Light Drizzle", "51-night": "Mierne mrholenie",
"53-day": "Mrholenie", "53-day": "Mrholenie",
"53-night": "Drizzle", "53-night": "Mrholenie",
"55-day": "Silné mrholenie", "55-day": "Silné mrholenie",
"55-night": "Silné mrholenie", "55-night": "Silné mrholenie",
"56-day": "Mierne mrazivé mrholenie", "56-day": "Mierne mrazivé mrholenie",
"56-night": "Light Freezing Drizzle", "56-night": "Mierne mrazivé mrholenie",
"57-day": "Mrazivé mrholenie", "57-day": "Mrazivé mrholenie",
"57-night": "Freezing Drizzle", "57-night": "Mrazivé mrholenie",
"61-day": "Slabý dážď", "61-day": "Slabý dážď",
"61-night": "Slabý dážď", "61-night": "Slabý dážď",
"63-day": "Dážď", "63-day": "Dážď",
@@ -494,17 +488,17 @@
"65-day": "Silný dážď", "65-day": "Silný dážď",
"65-night": "Silný dážď", "65-night": "Silný dážď",
"66-day": "Mrazivý dážď", "66-day": "Mrazivý dážď",
"66-night": "Mrznúci dážď", "66-night": "Mrazivý dážď",
"67-day": "Mrznúci dážď", "67-day": "Mrazivý dážď",
"67-night": "Mrznúci dážď", "67-night": "Mrazivý dážď",
"71-day": "Mierne sneženie", "71-day": "Mierne sneženie",
"71-night": "Slabé sneženie", "71-night": "Mierne sneženie",
"73-day": "Sneženie", "73-day": "Sneženie",
"73-night": "Sneženie", "73-night": "Sneženie",
"75-day": "Silné sneženie", "75-day": "Silné sneženie",
"75-night": "Husté sneženie", "75-night": "Silné sneženie",
"77-day": "Snehové vločky", "77-day": "Snehové vločky",
"77-night": "Snow Grains", "77-night": "Snehové vločky",
"80-day": "Mierne prehánky", "80-day": "Mierne prehánky",
"80-night": "Mierne prehánky", "80-night": "Mierne prehánky",
"81-day": "Prehánky", "81-day": "Prehánky",
@@ -518,9 +512,9 @@
"95-day": "Búrka", "95-day": "Búrka",
"95-night": "Búrka", "95-night": "Búrka",
"96-day": "Búrka s krupobitím", "96-day": "Búrka s krupobitím",
"96-night": "Thunderstorm With Hail", "96-night": "Búrka s krupobitím",
"99-day": "Thunderstorm With Hail", "99-day": "Búrka s krupobitím",
"99-night": "Thunderstorm With Hail" "99-night": "Búrka s krupobitím"
}, },
"homebridge": { "homebridge": {
"available_update": "Systém", "available_update": "Systém",
@@ -529,15 +523,15 @@
"up_to_date": "Aktuálny", "up_to_date": "Aktuálny",
"child_bridges": "Podradené premostenia", "child_bridges": "Podradené premostenia",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Beží", "up": "Nahrávanie",
"pending": "Čakajúce", "pending": "Čakajúce",
"down": "Down" "down": "Sťahovanie"
}, },
"healthchecks": { "healthchecks": {
"new": "Nový", "new": "Nový",
"up": "Beží", "up": "Nahrávanie",
"grace": "V dodatočnej lehote", "grace": "V dodatočnej lehote",
"down": "Down", "down": "Sťahovanie",
"paused": "Pozastavené", "paused": "Pozastavené",
"status": "Stav", "status": "Stav",
"last_ping": "Poslendný ping", "last_ping": "Poslendný ping",
@@ -552,24 +546,24 @@
"approvedPushes": "Schválené", "approvedPushes": "Schválené",
"rejectedPushes": "Odmietnuté", "rejectedPushes": "Odmietnuté",
"filters": "Filtre", "filters": "Filtre",
"indexers": "Indexers" "indexers": "Indexery"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Poradie", "downloads": "V poradí",
"videos": "Videá", "videos": "Videá",
"channels": "Kanály", "channels": "Kanály",
"playlists": "Playlisty" "playlists": "Playlisty"
}, },
"truenas": { "truenas": {
"load": "Záťaž systému", "load": "Záťaž systému",
"uptime": "Dostupnosť", "uptime": "Prevádzka",
"alerts": "Upozornenia" "alerts": "Upozornenia"
}, },
"pyload": { "pyload": {
"speed": "Rýchlosť", "speed": "Rýchlosť",
"active": "Active", "active": "Aktívne",
"queue": "Poradie", "queue": "V poradí",
"total": "Celkom" "total": "Celkovo"
}, },
"gluetun": { "gluetun": {
"public_ip": "Verejná IP", "public_ip": "Verejná IP",
@@ -578,7 +572,7 @@
"port_forwarded": "Port Forwarded" "port_forwarded": "Port Forwarded"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Channels", "channels": "Kanály",
"hd": "HD", "hd": "HD",
"tunerCount": "Tunery", "tunerCount": "Tunery",
"channelNumber": "Kanál", "channelNumber": "Kanál",
@@ -586,17 +580,17 @@
"signalStrength": "Sila", "signalStrength": "Sila",
"signalQuality": "Kvalita", "signalQuality": "Kvalita",
"symbolQuality": "Kvalita", "symbolQuality": "Kvalita",
"networkRate": "Bitrate", "networkRate": "Prenosová rýchlosť",
"clientIP": "Klient" "clientIP": "Klient"
}, },
"scrutiny": { "scrutiny": {
"passed": "Úspešný", "passed": "Úspešný",
"failed": "Failed", "failed": "Zlyhané",
"unknown": "Neznáme" "unknown": "Neznáme"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Schránka správ", "inbox": "Schránka správ",
"total": "Celkom" "total": "Celkovo"
}, },
"peanut": { "peanut": {
"battery_charge": "Nabitie batérie", "battery_charge": "Nabitie batérie",
@@ -607,18 +601,18 @@
"low_battery": "Slabá batéria" "low_battery": "Slabá batéria"
}, },
"nextdns": { "nextdns": {
"wait": "Čakajte, prosím", "wait": "Počkajte prosím",
"no_devices": "Informácie o zariadení nezískané" "no_devices": "Informácie o zariadení nezískané"
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "Využitie CPU", "cpuLoad": "Využitie CPU",
"memoryUsed": "Využitie pamäte", "memoryUsed": "Využitie pamäte",
"uptime": "Dostupnosť", "uptime": "Prevádzka",
"numberOfLeases": "Pridelené adresy" "numberOfLeases": "Pridelené adresy"
}, },
"xteve": { "xteve": {
"streams_all": "Všetky vysielania", "streams_all": "Všetky vysielania",
"streams_active": "Active Streams", "streams_active": "Aktívne vysielanie",
"streams_xepg": "XEPG kanály" "streams_xepg": "XEPG kanály"
}, },
"opendtu": { "opendtu": {
@@ -628,7 +622,7 @@
"limit": "Limit" "limit": "Limit"
}, },
"opnsense": { "opnsense": {
"cpu": "Zátaž procesora", "cpu": "Využitie CPU",
"memory": "Aktívna pamäť", "memory": "Aktívna pamäť",
"wanUpload": "WAN nahrávanie", "wanUpload": "WAN nahrávanie",
"wanDownload": "WAN sťahovanie" "wanDownload": "WAN sťahovanie"
@@ -653,9 +647,9 @@
"load": "Priemerné zaťaženie", "load": "Priemerné zaťaženie",
"memory": "Využitie pamäte", "memory": "Využitie pamäte",
"wanStatus": "Stav WAN", "wanStatus": "Stav WAN",
"up": "Beží", "up": "Nahrávanie",
"down": "Down", "down": "Sťahovanie",
"temp": "Temp", "temp": "Teplota",
"disk": "Využitie disku", "disk": "Využitie disku",
"wanIP": "IP adresa WAN" "wanIP": "IP adresa WAN"
}, },
@@ -666,48 +660,48 @@
"memory_usage": "Pamäť" "memory_usage": "Pamäť"
}, },
"immich": { "immich": {
"users": "Používateľov", "users": "Používatelia",
"photos": "Fotografií", "photos": "Fotografie",
"videos": "Videí", "videos": "Videá",
"storage": "Úložisko" "storage": "Úložisko"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Weby dostupné", "up": "Weby dostupné",
"down": "Weby nedostupné", "down": "Weby nedostupné",
"uptime": "Dostupnosť", "uptime": "Prevádzka",
"incident": "Udalosť", "incident": "Udalosť",
"m": "m" "m": "m"
}, },
"atsumeru": { "atsumeru": {
"series": "Series", "series": "Seriály",
"archives": "Archívy", "archives": "Archívy",
"chapters": "Kapitoly", "chapters": "Kapitoly",
"categories": "Kategórie" "categories": "Kategórie"
}, },
"komga": { "komga": {
"libraries": "Knižnice", "libraries": "Knižnice",
"series": "Series", "series": "Seriály",
"books": "Books" "books": "Knihy"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "D",
"uptime": "Dostupnosť", "uptime": "Prevádzka",
"volumeAvailable": "Dostupné" "volumeAvailable": "Dostupné"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Seriály",
"issues": "Problémy", "issues": "Problémy",
"wanted": "Wanted" "wanted": "Žiadané"
}, },
"photoprism": { "photoprism": {
"albums": "Albumov", "albums": "Albumy",
"photos": "Fotografií", "photos": "Fotografie",
"videos": "Videí", "videos": "Videá",
"people": "Ľudia" "people": "Ľudia"
}, },
"fileflows": { "fileflows": {
"queue": "Poradie", "queue": "V poradí",
"processing": "Processing", "processing": "Spracovávané",
"processed": "Spracované", "processed": "Spracované",
"time": "Čas" "time": "Čas"
}, },
@@ -734,7 +728,7 @@
"size": "Veľkosť", "size": "Veľkosť",
"lastrun": "Naposledy spustené", "lastrun": "Naposledy spustené",
"nextrun": "Nasledujúce spustenie", "nextrun": "Nasledujúce spustenie",
"failed": "Failed" "failed": "Zlyhané"
}, },
"unmanic": { "unmanic": {
"active_workers": "Aktívne Worker-y", "active_workers": "Aktívne Worker-y",
@@ -751,9 +745,9 @@
"targets_total": "Cieľov spolu" "targets_total": "Cieľov spolu"
}, },
"gatus": { "gatus": {
"up": "Sites Up", "up": "Weby dostupné",
"down": "Sites Down", "down": "Weby nedostupné",
"uptime": "Dostupnosť" "uptime": "Prevádzka"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Dnes", "gross_percent_today": "Dnes",
@@ -762,9 +756,9 @@
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasty", "podcasts": "Podcasty",
"books": "Books", "books": "Knihy",
"podcastsDuration": "Dĺžka", "podcastsDuration": "Dĺžka",
"booksDuration": "Duration" "booksDuration": "Dĺžka"
}, },
"homeassistant": { "homeassistant": {
"people_home": "Ľudia doma", "people_home": "Ľudia doma",
@@ -773,22 +767,22 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Monitoring", "monitoring": "Monitoring",
"updates": "Updates" "updates": "Aktualizácie"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "Knihy",
"authors": "Autori", "authors": "Autori",
"categories": "Kategórie", "categories": "Kategórie",
"series": "Series" "series": "Seriály"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Poradie", "downloadCount": "V poradí",
"downloadBytesRemaining": "Zostávajúce", "downloadBytesRemaining": "Zostávajúce",
"downloadTotalBytes": "Veľkosť", "downloadTotalBytes": "Veľkosť",
"downloadSpeed": "Speed" "downloadSpeed": "Rýchlosť"
}, },
"kavita": { "kavita": {
"seriesCount": "Series", "seriesCount": "Seriály",
"totalFiles": "Súborov" "totalFiles": "Súborov"
}, },
"azuredevops": { "azuredevops": {
@@ -797,7 +791,7 @@
"buildId": "ID zostavy", "buildId": "ID zostavy",
"succeeded": "Úspešný", "succeeded": "Úspešný",
"notStarted": "Nespustený", "notStarted": "Nespustený",
"failed": "Failed", "failed": "Zlyhané",
"canceled": "Zrušený", "canceled": "Zrušený",
"inProgress": "Prebieha", "inProgress": "Prebieha",
"totalPrs": "Počet PR-ok", "totalPrs": "Počet PR-ok",
@@ -807,11 +801,11 @@
"gamedig": { "gamedig": {
"status": "Stav", "status": "Stav",
"online": "Online", "online": "Online",
"offline": "Offline", "offline": "Nedostupný",
"name": "Meno", "name": "Meno",
"map": "Mapa", "map": "Mapa",
"currentPlayers": "Počet hráčov", "currentPlayers": "Počet hráčov",
"players": "Players", "players": "Hráči",
"maxPlayers": "Maximálny počet hráčov", "maxPlayers": "Maximálny počet hráčov",
"bots": "Boti", "bots": "Boti",
"ping": "Odozva" "ping": "Odozva"
@@ -824,38 +818,38 @@
}, },
"mealie": { "mealie": {
"recipes": "Recepty", "recipes": "Recepty",
"users": "Používateľov", "users": "Používatelia",
"categories": "Kategórie", "categories": "Kategórie",
"tags": "Štítky" "tags": "Štítky"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Sťahovanie", "downloading": "Sťahovanie",
"total": "Celkom", "total": "Celkovo",
"running": "Beží", "running": "Beží",
"stopped": "Stopped", "stopped": "Zastavené",
"passed": "Passed", "passed": "Úspešný",
"failed": "Failed" "failed": "Zlyhané"
}, },
"openwrt": { "openwrt": {
"uptime": "Dostupnosť", "uptime": "Prevádzka",
"cpuLoad": "Záťaž CPU priem. (5m)", "cpuLoad": "Záťaž CPU priem. (5m)",
"up": "Beží", "up": "Nahrávanie",
"down": "Down", "down": "Sťahovanie",
"bytesTx": "Prenesených", "bytesTx": "Prenesených",
"bytesRx": "Prijaté" "bytesRx": "Prijaté"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Stav", "status": "Stav",
"uptime": "Dostupnosť", "uptime": "Prevádzka",
"lastDown": "Posledný čas nedostupnosti", "lastDown": "Posledný čas nedostupnosti",
"downDuration": "Trvanie nedostupnosti", "downDuration": "Trvanie nedostupnosti",
"sitesUp": "Sites Up", "sitesUp": "Weby dostupné",
"sitesDown": "Sites Down", "sitesDown": "Weby nedostupné",
"paused": "Pozastavené", "paused": "Pozastavené",
"notyetchecked": "Neskontrolované", "notyetchecked": "Neskontrolované",
"up": "Beží", "up": "Nahrávanie",
"seemsdown": "Javí sa nedostupný", "seemsdown": "Javí sa nedostupný",
"down": "Down", "down": "Sťahovanie",
"unknown": "Neznáme" "unknown": "Neznáme"
}, },
"calendar": { "calendar": {
@@ -872,10 +866,10 @@
"saves": "Saves", "saves": "Saves",
"states": "States", "states": "States",
"screenshots": "Screenshots", "screenshots": "Screenshots",
"totalfilesize": "Celková veľkosť" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Domains", "domains": "Domény",
"mailboxes": "Mailboxes", "mailboxes": "Mailboxes",
"mails": "Mails", "mails": "Mails",
"storage": "Úložisko" "storage": "Úložisko"
@@ -887,12 +881,12 @@
"plantit": { "plantit": {
"events": "Udalosti", "events": "Udalosti",
"plants": "Rastliny", "plants": "Rastliny",
"photos": "Fotografií", "photos": "Fotografie",
"species": "Druhy" "species": "Druhy"
}, },
"gitea": { "gitea": {
"notifications": "Oznámenia", "notifications": "Oznámenia",
"issues": "Issues", "issues": "Problémy",
"pulls": "Pull requesty", "pulls": "Pull requesty",
"repositories": "Repositories" "repositories": "Repositories"
}, },
@@ -908,12 +902,12 @@
"galleries": "Galérie", "galleries": "Galérie",
"performers": "Herci", "performers": "Herci",
"studios": "Štúdiá", "studios": "Štúdiá",
"movies": "Filmov", "movies": "Filmy",
"tags": "Štítky", "tags": "Štítky",
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Používateľov", "users": "Používatelia",
"recipes": "Recepty", "recipes": "Recepty",
"keywords": "Kľúčové slová" "keywords": "Kľúčové slová"
}, },
@@ -922,7 +916,7 @@
"totalWithWarranty": "So zárukou", "totalWithWarranty": "So zárukou",
"locations": "Umiestnenia", "locations": "Umiestnenia",
"labels": "Štítky", "labels": "Štítky",
"users": "Používateľov", "users": "Používatelia",
"totalValue": "Celková hodnota" "totalValue": "Celková hodnota"
}, },
"crowdsec": { "crowdsec": {
@@ -931,9 +925,9 @@
}, },
"wgeasy": { "wgeasy": {
"connected": "Pripojené", "connected": "Pripojené",
"enabled": "Enabled", "enabled": "Povolené",
"disabled": "Disabled", "disabled": "Zakázané",
"total": "Celkom" "total": "Celkovo"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
@@ -943,65 +937,65 @@
}, },
"myspeed": { "myspeed": {
"ping": "Odozva", "ping": "Odozva",
"download": "Download", "download": "Sťahovanie",
"upload": "Nahrávanie" "upload": "Nahrávanie"
}, },
"stocks": { "stocks": {
"stocks": "Stocks", "stocks": "Stocks",
"loading": "Načítava sa", "loading": "Loading",
"open": "Open - US Market", "open": "Open - US Market",
"closed": "Closed - US Market", "closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration" "invalidConfiguration": "Invalid Configuration"
}, },
"frigate": { "frigate": {
"cameras": "Cameras", "cameras": "Cameras",
"uptime": "Dostupnosť", "uptime": "Prevádzka",
"version": "Verzia" "version": "Verzia"
}, },
"linkwarden": { "linkwarden": {
"links": "Odkazy", "links": "Links",
"collections": "Collections", "collections": "Collections",
"tags": "Štítky" "tags": "Štítky"
}, },
"zabbix": { "zabbix": {
"unclassified": "Not classified", "unclassified": "Not classified",
"information": "Information", "information": "Informácia",
"warning": "Warning", "warning": "Warning",
"average": "Average", "average": "Average",
"high": "High", "high": "High",
"disaster": "Disaster" "disaster": "Disaster"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "Vozidlo", "vehicle": "Vehicle",
"vehicles": "Vozidlá", "vehicles": "Vehicles",
"serviceRecords": "Service Records", "serviceRecords": "Service Records",
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "Žiadne" "none": "None"
}, },
"vikunja": { "vikunja": {
"projects": "Aktívne projekty", "projects": "Active Projects",
"tasks7d": "Tasks Due This Week", "tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks", "tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress" "tasksInProgress": "Tasks In Progress"
}, },
"headscale": { "headscale": {
"name": "Name", "name": "Meno",
"address": "Adresa", "address": "Adresa",
"last_seen": "Last Seen", "last_seen": "Naposledy videné",
"status": "Stav", "status": "Stav",
"online": "Online", "online": "Online",
"offline": "Offline" "offline": "Nedostupný"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Meno",
"systems": "Systems", "systems": "Systems",
"up": "Beží", "up": "Nahrávanie",
"down": "Down", "down": "Sťahovanie",
"paused": "Pozastavené", "paused": "Pozastavené",
"pending": "Čakajúce", "pending": "Čakajúce",
"status": "Stav", "status": "Stav",
"updated": "Updated", "updated": "Aktualizované",
"cpu": "CPU", "cpu": "CPU",
"memory": "RAM", "memory": "RAM",
"disk": "Disk", "disk": "Disk",
@@ -1014,74 +1008,51 @@
"healthy": "Zdravý", "healthy": "Zdravý",
"degraded": "Degraded", "degraded": "Degraded",
"progressing": "Progressing", "progressing": "Progressing",
"missing": "Missing", "missing": "Chýbajúce",
"suspended": "Suspended" "suspended": "Suspended"
}, },
"spoolman": { "spoolman": {
"loading": "Načítava sa" "loading": "Loading"
}, },
"gitlab": { "gitlab": {
"groups": "Groups", "groups": "Groups",
"issues": "Issues", "issues": "Problémy",
"merges": "Merge Requests", "merges": "Merge Requests",
"projects": "Projects" "projects": "Projects"
}, },
"apcups": { "apcups": {
"status": "Stav", "status": "Stav",
"load": "Záťaž", "load": "Záťaž",
"bcharge": "Battery Charge", "bcharge": "Nabitie batérie",
"timeleft": "Time Left" "timeleft": "Zostávajúci čas"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",
"highlights": "Highlights", "highlights": "Highlights",
"lists": "Zoznamy", "lists": "Lists",
"tags": "Štítky" "tags": "Štítky"
}, },
"slskd": { "slskd": {
"slskStatus": "Network", "slskStatus": "Sieť",
"connected": "Pripojené", "connected": "Pripojené",
"disconnected": "Odpojené", "disconnected": "Odpojené",
"updateStatus": "Update", "updateStatus": "Update",
"update_yes": "Dostupné", "update_yes": "Dostupné",
"update_no": "Up to Date", "update_no": "Aktuálny",
"downloads": "Downloads", "downloads": "Downloads",
"uploads": "Uploads", "uploads": "Uploads",
"sharedFiles": "Files" "sharedFiles": "Súborov"
}, },
"jellystat": { "jellystat": {
"songs": "Skladieb", "songs": "Skladby",
"movies": "Filmov", "movies": "Filmy",
"episodes": "Epizód", "episodes": "Epizódy",
"other": "Ostatné" "other": "Other"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Celkom",
"running": "Beží",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Nezdravý",
"unknown": "Neznáme",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Dostupné",
"used": "Využité",
"total": "Celkom"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

File diff suppressed because it is too large Load Diff

View File

@@ -25,7 +25,7 @@
"api_error": "API Грешка", "api_error": "API Грешка",
"information": "Информација", "information": "Информација",
"status": "Стање", "status": "Стање",
"url": "URL адреса", "url": "УРЛ адреса",
"raw_error": "Оригинална грешка", "raw_error": "Оригинална грешка",
"response_data": "Подаци о одговору" "response_data": "Подаци о одговору"
}, },
@@ -359,12 +359,6 @@
"services": "Сервиси", "services": "Сервиси",
"middleware": "Мидлвер" "middleware": "Мидлвер"
}, },
"trilium": {
"version": "Верзија",
"notesCount": "Белешке",
"dbSize": "Величина базе података",
"unknown": "Непознато"
},
"navidrome": { "navidrome": {
"nothing_streaming": "Нема активних стримова", "nothing_streaming": "Нема активних стримова",
"please_wait": "Молим сачекајте" "please_wait": "Молим сачекајте"
@@ -572,7 +566,7 @@
"total": "Укупно" "total": "Укупно"
}, },
"gluetun": { "gluetun": {
"public_ip": "Јавна IP адреса", "public_ip": "Јавна ИП адреса",
"region": "Регион", "region": "Регион",
"country": "Држава", "country": "Држава",
"port_forwarded": "Порт прослеђен" "port_forwarded": "Порт прослеђен"
@@ -1060,28 +1054,5 @@
"checkmk": { "checkmk": {
"serviceErrors": "Проблеми са услугом", "serviceErrors": "Проблеми са услугом",
"hostErrors": "Проблеми са хостом" "hostErrors": "Проблеми са хостом"
},
"komodo": {
"total": "Укупно",
"running": "Покренуто",
"stopped": "Заустављено",
"down": "Доле",
"unhealthy": "Нездравих",
"unknown": "Непознато",
"servers": "Сервери",
"stacks": "Стекови",
"containers": "Контејнера"
},
"filebrowser": {
"available": "Доступно",
"used": "У употреби",
"total": "Укупно"
},
"wallos": {
"activeSubscriptions": "Претплате",
"thisMonthlyCost": "Овај мјесец",
"nextMonthlyCost": "Следећи месец",
"previousMonthlyCost": "Претходни месец",
"nextRenewingSubscription": "Следећа уплата"
} }
} }

View File

@@ -63,7 +63,7 @@
"wlan_users": "WLAN-användare", "wlan_users": "WLAN-användare",
"up": "UP", "up": "UP",
"down": "MOTTAGIT", "down": "MOTTAGIT",
"wait": "Please wait", "wait": "Vänligen vänta",
"empty_data": "Subsystem status unknown" "empty_data": "Subsystem status unknown"
}, },
"docker": { "docker": {
@@ -168,10 +168,10 @@
"passes": "Passes" "passes": "Passes"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "Spelar",
"transcoding": "Transcoding", "transcoding": "Omkodning",
"bitrate": "Bitrate", "bitrate": "Bitrate",
"no_active": "No Active Streams", "no_active": "Inga aktiva strömmar",
"plex_connection_error": "Check Plex Connection" "plex_connection_error": "Check Plex Connection"
}, },
"omada": { "omada": {
@@ -193,7 +193,7 @@
"tv": "TV-serier" "tv": "TV-serier"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "Hastighet",
"queue": "Kö", "queue": "Kö",
"timeleft": "Tid kvar" "timeleft": "Tid kvar"
}, },
@@ -242,25 +242,25 @@
"wanted": "Eftersöker", "wanted": "Eftersöker",
"queued": "I kö", "queued": "I kö",
"series": "Series", "series": "Series",
"queue": "Queue", "queue": "",
"unknown": "Unknown" "unknown": "Unknown"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Eftersöker",
"missing": "Missing", "missing": "Missing",
"queued": "Queued", "queued": "I kö",
"movies": "Movies", "movies": "Movies",
"queue": "Queue", "queue": "",
"unknown": "Unknown" "unknown": "Unknown"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Eftersöker",
"queued": "Queued", "queued": "I kö",
"artists": "Artists" "artists": "Artists"
}, },
"readarr": { "readarr": {
"wanted": "Wanted", "wanted": "Eftersöker",
"queued": "Queued", "queued": "I kö",
"books": "Böcker" "books": "Böcker"
}, },
"bazarr": { "bazarr": {
@@ -273,15 +273,15 @@
"available": "Tillgänglig" "available": "Tillgänglig"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pending", "pending": "Avvaktar",
"approved": "Approved", "approved": "Godkända",
"available": "Available" "available": "Tillgänglig"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "Avvaktar",
"processing": "Processing", "processing": "Processing",
"approved": "Approved", "approved": "Godkända",
"available": "Available" "available": "Tillgänglig"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Total",
@@ -296,8 +296,8 @@
"gravity": "Gravity" "gravity": "Gravity"
}, },
"adguard": { "adguard": {
"queries": "Queries", "queries": "Förfrågningar",
"blocked": "Blocked", "blocked": "Blockerad",
"filtered": "Filtrerad", "filtered": "Filtrerad",
"latency": "Svarstid" "latency": "Svarstid"
}, },
@@ -312,7 +312,7 @@
"total": "Total" "total": "Total"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Nedladdat",
"nondownload": "Non-Downloaded", "nondownload": "Non-Downloaded",
"read": "Read", "read": "Read",
"unread": "Unread", "unread": "Unread",
@@ -336,7 +336,7 @@
"ago": "{{value}} Ago" "ago": "{{value}} Ago"
}, },
"technitium": { "technitium": {
"totalQueries": "Queries", "totalQueries": "Förfrågningar",
"totalNoError": "Success", "totalNoError": "Success",
"totalServerFailure": "Failures", "totalServerFailure": "Failures",
"totalNxDomain": "NX Domains", "totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative", "totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive", "totalRecursive": "Recursive",
"totalCached": "Cached", "totalCached": "Cached",
"totalBlocked": "Blocked", "totalBlocked": "Blockerad",
"totalDropped": "Dropped", "totalDropped": "Dropped",
"totalClients": "Klienter" "totalClients": "Klienter"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "",
"processed": "Processed", "processed": "Processed",
"errored": "Errored", "errored": "Errored",
"saved": "Saved" "saved": "Saved"
@@ -359,14 +359,8 @@
"services": "Tjänster", "services": "Tjänster",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "Inga aktiva strömmar",
"please_wait": "Please Wait" "please_wait": "Please Wait"
}, },
"npm": { "npm": {
@@ -383,13 +377,13 @@
}, },
"gotify": { "gotify": {
"apps": "Program", "apps": "Program",
"clients": "Clients", "clients": "Klienter",
"messages": "Meddelande" "messages": "Meddelande"
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "Indexerare", "enableIndexers": "Indexerare",
"numberOfGrabs": "Hämtningar", "numberOfGrabs": "Hämtningar",
"numberOfQueries": "Queries", "numberOfQueries": "Förfrågningar",
"numberOfFailGrabs": "Misslyckade hämtningar", "numberOfFailGrabs": "Misslyckade hämtningar",
"numberOfFailQueries": "Misslyckade hämtningar" "numberOfFailQueries": "Misslyckade hämtningar"
}, },
@@ -401,16 +395,16 @@
"numActiveSessions": "Sessioner", "numActiveSessions": "Sessioner",
"numConnections": "Anslutningar", "numConnections": "Anslutningar",
"dataRelayed": "Relayed", "dataRelayed": "Relayed",
"transferRate": "Rate" "transferRate": "Hastighet"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "Användare",
"status_count": "Posts", "status_count": "Posts",
"domain_count": "Domains" "domain_count": "Domains"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "Eftersöker",
"queued": "Queued", "queued": "I kö",
"series": "Series" "series": "Series"
}, },
"minecraft": { "minecraft": {
@@ -425,7 +419,7 @@
"unread": "Unread" "unread": "Unread"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "Användare",
"loginsLast24H": "Inloggningar (24h)", "loginsLast24H": "Inloggningar (24h)",
"failedLoginsLast24H": "Misslyckade inloggningar (24h)" "failedLoginsLast24H": "Misslyckade inloggningar (24h)"
}, },
@@ -437,15 +431,15 @@
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Load", "load": "Laddar",
"wait": "Please wait", "wait": "Vänligen vänta",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temp", "_temp": "Temp",
"warn": "Warn", "warn": "Warn",
"uptime": "UP", "uptime": "UP",
"total": "Total", "total": "Total",
"free": "Free", "free": "Ledigt",
"used": "Used", "used": "Använt",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Crit", "crit": "Crit",
@@ -530,7 +524,7 @@
"child_bridges": "Child Bridges", "child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Up",
"pending": "Pending", "pending": "Avvaktar",
"down": "Down" "down": "Down"
}, },
"healthchecks": { "healthchecks": {
@@ -549,13 +543,13 @@
"containers_failed": "Failed" "containers_failed": "Failed"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "Godkända",
"rejectedPushes": "Rejected", "rejectedPushes": "Rejected",
"filters": "Filters", "filters": "Filters",
"indexers": "Indexers" "indexers": "Indexerare"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "",
"videos": "Videos", "videos": "Videos",
"channels": "Channels", "channels": "Channels",
"playlists": "Playlists" "playlists": "Playlists"
@@ -567,8 +561,8 @@
}, },
"pyload": { "pyload": {
"speed": "Speed", "speed": "Speed",
"active": "Active", "active": "Aktiva",
"queue": "Queue", "queue": "",
"total": "Total" "total": "Total"
}, },
"gluetun": { "gluetun": {
@@ -618,7 +612,7 @@
}, },
"xteve": { "xteve": {
"streams_all": "All Streams", "streams_all": "All Streams",
"streams_active": "Active Streams", "streams_active": "Aktiva strömmar",
"streams_xepg": "XEPG Channels" "streams_xepg": "XEPG Channels"
}, },
"opendtu": { "opendtu": {
@@ -666,7 +660,7 @@
"memory_usage": "Memory" "memory_usage": "Memory"
}, },
"immich": { "immich": {
"users": "Users", "users": "Användare",
"photos": "Photos", "photos": "Photos",
"videos": "Videos", "videos": "Videos",
"storage": "Storage" "storage": "Storage"
@@ -687,17 +681,17 @@
"komga": { "komga": {
"libraries": "Libraries", "libraries": "Libraries",
"series": "Series", "series": "Series",
"books": "Books" "books": "Böcker"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Dagar",
"uptime": "Uptime", "uptime": "Uptime",
"volumeAvailable": "Available" "volumeAvailable": "Tillgänglig"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Series",
"issues": "Issues", "issues": "Issues",
"wanted": "Wanted" "wanted": "Eftersöker"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Albums",
@@ -706,7 +700,7 @@
"people": "People" "people": "People"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "",
"processing": "Processing", "processing": "Processing",
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
@@ -762,7 +756,7 @@
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasts", "podcasts": "Podcasts",
"books": "Books", "books": "Böcker",
"podcastsDuration": "Duration", "podcastsDuration": "Duration",
"booksDuration": "Duration" "booksDuration": "Duration"
}, },
@@ -776,14 +770,14 @@
"updates": "Updates" "updates": "Updates"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "Böcker",
"authors": "Authors", "authors": "Authors",
"categories": "Categories", "categories": "Categories",
"series": "Series" "series": "Series"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "",
"downloadBytesRemaining": "Remaining", "downloadBytesRemaining": "Återstående",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Size",
"downloadSpeed": "Speed" "downloadSpeed": "Speed"
}, },
@@ -802,7 +796,7 @@
"inProgress": "In Progress", "inProgress": "In Progress",
"totalPrs": "Total PRs", "totalPrs": "Total PRs",
"myPrs": "My PRs", "myPrs": "My PRs",
"approved": "Approved" "approved": "Godkända"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "Status",
@@ -824,7 +818,7 @@
}, },
"mealie": { "mealie": {
"recipes": "Recipes", "recipes": "Recipes",
"users": "Users", "users": "Användare",
"categories": "Categories", "categories": "Categories",
"tags": "Tags" "tags": "Tags"
}, },
@@ -832,7 +826,7 @@
"downloading": "Downloading", "downloading": "Downloading",
"total": "Total", "total": "Total",
"running": "Running", "running": "Running",
"stopped": "Stopped", "stopped": "Stoppade",
"passed": "Passed", "passed": "Passed",
"failed": "Failed" "failed": "Failed"
}, },
@@ -913,7 +907,7 @@
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "Användare",
"recipes": "Recipes", "recipes": "Recipes",
"keywords": "Keywords" "keywords": "Keywords"
}, },
@@ -922,7 +916,7 @@
"totalWithWarranty": "With Warranty", "totalWithWarranty": "With Warranty",
"locations": "Locations", "locations": "Locations",
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "Användare",
"totalValue": "Total Value" "totalValue": "Total Value"
}, },
"crowdsec": { "crowdsec": {
@@ -931,8 +925,8 @@
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Connected",
"enabled": "Enabled", "enabled": "Aktiverad",
"disabled": "Disabled", "disabled": "Inaktiverad",
"total": "Total" "total": "Total"
}, },
"swagdashboard": { "swagdashboard": {
@@ -999,7 +993,7 @@
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"pending": "Pending", "pending": "Avvaktar",
"status": "Status", "status": "Status",
"updated": "Updated", "updated": "Updated",
"cpu": "CPU", "cpu": "CPU",
@@ -1028,9 +1022,9 @@
}, },
"apcups": { "apcups": {
"status": "Status", "status": "Status",
"load": "Load", "load": "Laddar",
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Time Left" "timeleft": "Tid kvar"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
@@ -1045,7 +1039,7 @@
"connected": "Connected", "connected": "Connected",
"disconnected": "Disconnected", "disconnected": "Disconnected",
"updateStatus": "Update", "updateStatus": "Update",
"update_yes": "Available", "update_yes": "Tillgänglig",
"update_no": "Up to Date", "update_no": "Up to Date",
"downloads": "Downloads", "downloads": "Downloads",
"uploads": "Uploads", "uploads": "Uploads",
@@ -1054,34 +1048,11 @@
"jellystat": { "jellystat": {
"songs": "Songs", "songs": "Songs",
"movies": "Movies", "movies": "Movies",
"episodes": "Episodes", "episodes": "Avsnitt",
"other": "Other" "other": "Other"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -63,14 +63,14 @@
"wlan_users": "WLAN వినియోగదారులు", "wlan_users": "WLAN వినియోగదారులు",
"up": "UP", "up": "UP",
"down": "డౌన్", "down": "డౌన్",
"wait": "Please wait", "wait": "దయచేసి వేచి ఉండండి",
"empty_data": "Subsystem status unknown" "empty_data": "Subsystem status unknown"
}, },
"docker": { "docker": {
"rx": "RX", "rx": "RX",
"tx": "TX", "tx": "TX",
"mem": "MEM", "mem": "MEM",
"cpu": "CPU", "cpu": "సీపియూ",
"running": "Running", "running": "Running",
"offline": "ఆఫ్‌లైన్", "offline": "ఆఫ్‌లైన్",
"error": "Error", "error": "Error",
@@ -108,10 +108,10 @@
"songs": "Songs" "songs": "Songs"
}, },
"esphome": { "esphome": {
"offline": "Offline", "offline": "ఆఫ్‌లైన్",
"offline_alt": "Offline", "offline_alt": "ఆఫ్‌లైన్",
"online": "Online", "online": "Online",
"total": "Total", "total": "మొత్తం",
"unknown": "Unknown" "unknown": "Unknown"
}, },
"evcc": { "evcc": {
@@ -133,7 +133,7 @@
"unread": "Unread" "unread": "Unread"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Status", "connectionStatus": "హోదా",
"connectionStatusUnconfigured": "Unconfigured", "connectionStatusUnconfigured": "Unconfigured",
"connectionStatusConnecting": "Connecting", "connectionStatusConnecting": "Connecting",
"connectionStatusAuthenticating": "Authenticating", "connectionStatusAuthenticating": "Authenticating",
@@ -168,10 +168,10 @@
"passes": "Passes" "passes": "Passes"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "ఆడుతున్నారు",
"transcoding": "Transcoding", "transcoding": "ట్రాన్స్‌కోడింగ్",
"bitrate": "Bitrate", "bitrate": "బిట్రేట్",
"no_active": "No Active Streams", "no_active": "యాక్టివ్ స్ట్రీమ్‌లు లేవు",
"plex_connection_error": "Check Plex Connection" "plex_connection_error": "Check Plex Connection"
}, },
"omada": { "omada": {
@@ -193,7 +193,7 @@
"tv": "దూరదర్శిని కార్యక్రమాలు" "tv": "దూరదర్శిని కార్యక్రమాలు"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "రేట్",
"queue": "వరుస", "queue": "వరుస",
"timeleft": "మిగిలి వున్న సమయం" "timeleft": "మిగిలి వున్న సమయం"
}, },
@@ -242,25 +242,25 @@
"wanted": "కావలెను", "wanted": "కావలెను",
"queued": "క్యూయూఎడ్", "queued": "క్యూయూఎడ్",
"series": "Series", "series": "Series",
"queue": "Queue", "queue": "వరుస",
"unknown": "Unknown" "unknown": "Unknown"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "కావలెను",
"missing": "మిస్సింగ్", "missing": "మిస్సింగ్",
"queued": "Queued", "queued": "క్యూయూఎడ్",
"movies": "Movies", "movies": "Movies",
"queue": "Queue", "queue": "వరుస",
"unknown": "Unknown" "unknown": "Unknown"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "కావలెను",
"queued": "Queued", "queued": "క్యూయూఎడ్",
"artists": "Artists" "artists": "Artists"
}, },
"readarr": { "readarr": {
"wanted": "Wanted", "wanted": "కావలెను",
"queued": "Queued", "queued": "క్యూయూఎడ్",
"books": "పుస్తకాలు" "books": "పుస్తకాలు"
}, },
"bazarr": { "bazarr": {
@@ -273,18 +273,18 @@
"available": "అందుబాటులో వున్నవి" "available": "అందుబాటులో వున్నవి"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pending", "pending": "పెండింగ్",
"approved": "Approved", "approved": "ఆమోదించబడింది",
"available": "Available" "available": "అందుబాటులో వున్నవి"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "పెండింగ్",
"processing": "Processing", "processing": "Processing",
"approved": "Approved", "approved": "ఆమోదించబడింది",
"available": "Available" "available": "అందుబాటులో వున్నవి"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "మొత్తం",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
@@ -296,8 +296,8 @@
"gravity": "గురుత్వాకర్షణ" "gravity": "గురుత్వాకర్షణ"
}, },
"adguard": { "adguard": {
"queries": "Queries", "queries": "ప్రశ్నలు",
"blocked": "Blocked", "blocked": "నిరోధించబడింది",
"filtered": "ఫిల్టర్ చేయబడింది", "filtered": "ఫిల్టర్ చేయబడింది",
"latency": "జాప్యం" "latency": "జాప్యం"
}, },
@@ -309,10 +309,10 @@
"portainer": { "portainer": {
"running": "Running", "running": "Running",
"stopped": "ఆగిపోయినవి", "stopped": "ఆగిపోయినవి",
"total": "Total" "total": "మొత్తం"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "డౌన్‌లోడ్ చేయబడింది",
"nondownload": "Non-Downloaded", "nondownload": "Non-Downloaded",
"read": "Read", "read": "Read",
"unread": "Unread", "unread": "Unread",
@@ -336,7 +336,7 @@
"ago": "{{value}} Ago" "ago": "{{value}} Ago"
}, },
"technitium": { "technitium": {
"totalQueries": "Queries", "totalQueries": "ప్రశ్నలు",
"totalNoError": "Success", "totalNoError": "Success",
"totalServerFailure": "Failures", "totalServerFailure": "Failures",
"totalNxDomain": "NX Domains", "totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative", "totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive", "totalRecursive": "Recursive",
"totalCached": "Cached", "totalCached": "Cached",
"totalBlocked": "Blocked", "totalBlocked": "నిరోధించబడింది",
"totalDropped": "Dropped", "totalDropped": "Dropped",
"totalClients": "ఖాతాదారులు" "totalClients": "ఖాతాదారులు"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "వరుస",
"processed": "Processed", "processed": "Processed",
"errored": "Errored", "errored": "Errored",
"saved": "Saved" "saved": "Saved"
@@ -359,20 +359,14 @@
"services": "సేవలు", "services": "సేవలు",
"middleware": "మిడిల్వేర్" "middleware": "మిడిల్వేర్"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "యాక్టివ్ స్ట్రీమ్‌లు లేవు",
"please_wait": "Please Wait" "please_wait": "Please Wait"
}, },
"npm": { "npm": {
"enabled": "ప్రారంభించబడింది", "enabled": "ప్రారంభించబడింది",
"disabled": "డిసేబ్లెడ్", "disabled": "డిసేబ్లెడ్",
"total": "Total" "total": "మొత్తం"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "ట్రాక్ చేయడానికి ఒకటి లేదా అంతకంటే ఎక్కువ క్రిప్టో కరెన్సీలను కాన్ఫిగర్ చేయండి", "configure": "ట్రాక్ చేయడానికి ఒకటి లేదా అంతకంటే ఎక్కువ క్రిప్టో కరెన్సీలను కాన్ఫిగర్ చేయండి",
@@ -383,13 +377,13 @@
}, },
"gotify": { "gotify": {
"apps": "అప్లికేషన్లు", "apps": "అప్లికేషన్లు",
"clients": "Clients", "clients": "ఖాతాదారులు",
"messages": "సందేశాలు" "messages": "సందేశాలు"
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "సూచికలు", "enableIndexers": "సూచికలు",
"numberOfGrabs": "గ్రాబ్స్", "numberOfGrabs": "గ్రాబ్స్",
"numberOfQueries": "Queries", "numberOfQueries": "ప్రశ్నలు",
"numberOfFailGrabs": "ఫెయిల్ గ్రాబ్స్", "numberOfFailGrabs": "ఫెయిల్ గ్రాబ్స్",
"numberOfFailQueries": "విఫలమైన ప్రశ్నలు" "numberOfFailQueries": "విఫలమైన ప్రశ్నలు"
}, },
@@ -401,51 +395,51 @@
"numActiveSessions": "సెషన్స్", "numActiveSessions": "సెషన్స్",
"numConnections": "కనెక్షన్లు", "numConnections": "కనెక్షన్లు",
"dataRelayed": "రెలయెడఁ", "dataRelayed": "రెలయెడఁ",
"transferRate": "Rate" "transferRate": "రేట్"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "వినియోగదారులు",
"status_count": "పోస్ట్‌లు", "status_count": "పోస్ట్‌లు",
"domain_count": "డొమైన్‌లు" "domain_count": "డొమైన్‌లు"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "కావలెను",
"queued": "Queued", "queued": "క్యూయూఎడ్",
"series": "Series" "series": "Series"
}, },
"minecraft": { "minecraft": {
"players": "Players", "players": "Players",
"version": "Version", "version": "Version",
"status": "Status", "status": "హోదా",
"up": "Online", "up": "Online",
"down": "Offline" "down": "ఆఫ్‌లైన్"
}, },
"miniflux": { "miniflux": {
"read": "Read", "read": "Read",
"unread": "Unread" "unread": "Unread"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "వినియోగదారులు",
"loginsLast24H": "లాగిన్లు (24గ)", "loginsLast24H": "లాగిన్లు (24గ)",
"failedLoginsLast24H": "విఫలమైన లాగిన్‌లు (24గ)" "failedLoginsLast24H": "విఫలమైన లాగిన్‌లు (24గ)"
}, },
"proxmox": { "proxmox": {
"mem": "MEM", "mem": "MEM",
"cpu": "CPU", "cpu": "సీపియూ",
"lxc": "LXC", "lxc": "LXC",
"vms": "విఎంలు" "vms": "విఎంలు"
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "సీపియూ",
"load": "Load", "load": "లోడ్",
"wait": "Please wait", "wait": "దయచేసి వేచి ఉండండి",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temp", "_temp": "Temp",
"warn": "Warn", "warn": "Warn",
"uptime": "UP", "uptime": "UP",
"total": "Total", "total": "మొత్తం",
"free": "Free", "free": "మిగిలింది",
"used": "Used", "used": "ఉపయోగించబడిన",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Crit", "crit": "Crit",
@@ -470,57 +464,57 @@
"1-day": "ప్రధానంగా ఎండ", "1-day": "ప్రధానంగా ఎండ",
"1-night": "ప్రధానంగా స్పష్టంగా", "1-night": "ప్రధానంగా స్పష్టంగా",
"2-day": "పాక్షికంగా మేఘావృతమై ఉంటుంది", "2-day": "పాక్షికంగా మేఘావృతమై ఉంటుంది",
"2-night": "Partly Cloudy", "2-night": "పాక్షికంగా మేఘావృతమై ఉంటుంది",
"3-day": "మేఘావృతం", "3-day": "మేఘావృతం",
"3-night": "Cloudy", "3-night": "మేఘావృతం",
"45-day": "పొగమంచు", "45-day": "పొగమంచు",
"45-night": "Foggy", "45-night": "పొగమంచు",
"48-day": "Foggy", "48-day": "పొగమంచు",
"48-night": "Foggy", "48-night": "పొగమంచు",
"51-day": "తేలికపాటి చినుకులు", "51-day": "తేలికపాటి చినుకులు",
"51-night": "Light Drizzle", "51-night": "తేలికపాటి చినుకులు",
"53-day": "చినుకులు", "53-day": "చినుకులు",
"53-night": "Drizzle", "53-night": "చినుకులు",
"55-day": "భారీ చినుకులు", "55-day": "భారీ చినుకులు",
"55-night": "Heavy Drizzle", "55-night": "భారీ చినుకులు",
"56-day": "తేలికపాటి గడ్డకట్టే చినుకులు", "56-day": "తేలికపాటి గడ్డకట్టే చినుకులు",
"56-night": "Light Freezing Drizzle", "56-night": "తేలికపాటి గడ్డకట్టే చినుకులు",
"57-day": "గడ్డకట్టే చినుకులు", "57-day": "గడ్డకట్టే చినుకులు",
"57-night": "Freezing Drizzle", "57-night": "గడ్డకట్టే చినుకులు",
"61-day": "తేలికపాటి వర్షం", "61-day": "తేలికపాటి వర్షం",
"61-night": "Light Rain", "61-night": "తేలికపాటి వర్షం",
"63-day": "వర్షం", "63-day": "వర్షం",
"63-night": "Rain", "63-night": "వర్షం",
"65-day": "భారీవర్షం", "65-day": "భారీవర్షం",
"65-night": "Heavy Rain", "65-night": "భారీవర్షం",
"66-day": "గడ్డకట్టే వర్షం", "66-day": "గడ్డకట్టే వర్షం",
"66-night": "Freezing Rain", "66-night": "గడ్డకట్టే వర్షం",
"67-day": "Freezing Rain", "67-day": "గడ్డకట్టే వర్షం",
"67-night": "Freezing Rain", "67-night": "గడ్డకట్టే వర్షం",
"71-day": "తేలికపాటి మంచు", "71-day": "తేలికపాటి మంచు",
"71-night": "Light Snow", "71-night": "తేలికపాటి మంచు",
"73-day": "మంచు", "73-day": "మంచు",
"73-night": "Snow", "73-night": "మంచు",
"75-day": "భారీ మంచు", "75-day": "భారీ మంచు",
"75-night": "Heavy Snow", "75-night": "భారీ మంచు",
"77-day": "మంచు గింజలు", "77-day": "మంచు గింజలు",
"77-night": "Snow Grains", "77-night": "మంచు గింజలు",
"80-day": "తేలికపాటి జల్లులు", "80-day": "తేలికపాటి జల్లులు",
"80-night": "Light Showers", "80-night": "తేలికపాటి జల్లులు",
"81-day": "జల్లులు", "81-day": "జల్లులు",
"81-night": "Showers", "81-night": "జల్లులు",
"82-day": "భారీ వర్షాలు", "82-day": "భారీ వర్షాలు",
"82-night": "Heavy Showers", "82-night": "భారీ వర్షాలు",
"85-day": "మంచు జల్లులు", "85-day": "మంచు జల్లులు",
"85-night": "Snow Showers", "85-night": "మంచు జల్లులు",
"86-day": "Snow Showers", "86-day": "మంచు జల్లులు",
"86-night": "Snow Showers", "86-night": "మంచు జల్లులు",
"95-day": "ఉరుము", "95-day": "ఉరుము",
"95-night": "Thunderstorm", "95-night": "ఉరుము",
"96-day": "వడగళ్లతో కూడిన ఉరుములతో కూడిన వర్షం", "96-day": "వడగళ్లతో కూడిన ఉరుములతో కూడిన వర్షం",
"96-night": "Thunderstorm With Hail", "96-night": "వడగళ్లతో కూడిన ఉరుములతో కూడిన వర్షం",
"99-day": "Thunderstorm With Hail", "99-day": "వడగళ్లతో కూడిన ఉరుములతో కూడిన వర్షం",
"99-night": "Thunderstorm With Hail" "99-night": "వడగళ్లతో కూడిన ఉరుములతో కూడిన వర్షం"
}, },
"homebridge": { "homebridge": {
"available_update": "వ్యవస్థ", "available_update": "వ్యవస్థ",
@@ -530,7 +524,7 @@
"child_bridges": "పిల్ల వంతెనలు", "child_bridges": "పిల్ల వంతెనలు",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Up",
"pending": "Pending", "pending": "పెండింగ్",
"down": "Down" "down": "Down"
}, },
"healthchecks": { "healthchecks": {
@@ -539,7 +533,7 @@
"grace": "In Grace Period", "grace": "In Grace Period",
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"status": "Status", "status": "హోదా",
"last_ping": "Last Ping", "last_ping": "Last Ping",
"never": "No pings yet" "never": "No pings yet"
}, },
@@ -549,13 +543,13 @@
"containers_failed": "విఫలమయ్యారు" "containers_failed": "విఫలమయ్యారు"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "ఆమోదించబడింది",
"rejectedPushes": "తిరస్కరించారు", "rejectedPushes": "తిరస్కరించారు",
"filters": "ఫిల్టర్లు", "filters": "ఫిల్టర్లు",
"indexers": "Indexers" "indexers": "సూచికలు"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "వరుస",
"videos": "Videos", "videos": "Videos",
"channels": "Channels", "channels": "Channels",
"playlists": "Playlists" "playlists": "Playlists"
@@ -567,9 +561,9 @@
}, },
"pyload": { "pyload": {
"speed": "Speed", "speed": "Speed",
"active": "Active", "active": "చురుకుగా",
"queue": "Queue", "queue": "వరుస",
"total": "Total" "total": "మొత్తం"
}, },
"gluetun": { "gluetun": {
"public_ip": "Public IP", "public_ip": "Public IP",
@@ -586,17 +580,17 @@
"signalStrength": "Strength", "signalStrength": "Strength",
"signalQuality": "Quality", "signalQuality": "Quality",
"symbolQuality": "Quality", "symbolQuality": "Quality",
"networkRate": "Bitrate", "networkRate": "బిట్రేట్",
"clientIP": "Client" "clientIP": "Client"
}, },
"scrutiny": { "scrutiny": {
"passed": "Passed", "passed": "Passed",
"failed": "Failed", "failed": "విఫలమయ్యారు",
"unknown": "Unknown" "unknown": "Unknown"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Inbox", "inbox": "Inbox",
"total": "Total" "total": "మొత్తం"
}, },
"peanut": { "peanut": {
"battery_charge": "Battery Charge", "battery_charge": "Battery Charge",
@@ -618,7 +612,7 @@
}, },
"xteve": { "xteve": {
"streams_all": "All Streams", "streams_all": "All Streams",
"streams_active": "Active Streams", "streams_active": "యాక్టివ్ స్ట్రీమ్‌లు",
"streams_xepg": "XEPG Channels" "streams_xepg": "XEPG Channels"
}, },
"opendtu": { "opendtu": {
@@ -640,14 +634,14 @@
"layers": "Layers" "layers": "Layers"
}, },
"octoprint": { "octoprint": {
"printer_state": "Status", "printer_state": "హోదా",
"temp_tool": "Tool temp", "temp_tool": "Tool temp",
"temp_bed": "Bed temp", "temp_bed": "Bed temp",
"job_completion": "Completion" "job_completion": "Completion"
}, },
"cloudflared": { "cloudflared": {
"origin_ip": "Origin IP", "origin_ip": "Origin IP",
"status": "Status" "status": "హోదా"
}, },
"pfsense": { "pfsense": {
"load": "Load Avg", "load": "Load Avg",
@@ -662,11 +656,11 @@
"proxmoxbackupserver": { "proxmoxbackupserver": {
"datastore_usage": "Datastore", "datastore_usage": "Datastore",
"failed_tasks_24h": "Failed Tasks 24h", "failed_tasks_24h": "Failed Tasks 24h",
"cpu_usage": "CPU", "cpu_usage": "సీపియూ",
"memory_usage": "Memory" "memory_usage": "Memory"
}, },
"immich": { "immich": {
"users": "Users", "users": "వినియోగదారులు",
"photos": "Photos", "photos": "Photos",
"videos": "Videos", "videos": "Videos",
"storage": "Storage" "storage": "Storage"
@@ -687,17 +681,17 @@
"komga": { "komga": {
"libraries": "Libraries", "libraries": "Libraries",
"series": "Series", "series": "Series",
"books": "Books" "books": "పుస్తకాలు"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "రోజులు",
"uptime": "Uptime", "uptime": "Uptime",
"volumeAvailable": "Available" "volumeAvailable": "అందుబాటులో వున్నవి"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Series",
"issues": "Issues", "issues": "Issues",
"wanted": "Wanted" "wanted": "కావలెను"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Albums",
@@ -706,7 +700,7 @@
"people": "People" "people": "People"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "వరుస",
"processing": "Processing", "processing": "Processing",
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
@@ -730,11 +724,11 @@
"numshares": "Shared Items" "numshares": "Shared Items"
}, },
"kopia": { "kopia": {
"status": "Status", "status": "హోదా",
"size": "Size", "size": "Size",
"lastrun": "Last Run", "lastrun": "Last Run",
"nextrun": "Next Run", "nextrun": "Next Run",
"failed": "Failed" "failed": "విఫలమయ్యారు"
}, },
"unmanic": { "unmanic": {
"active_workers": "Active Workers", "active_workers": "Active Workers",
@@ -762,7 +756,7 @@
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasts", "podcasts": "Podcasts",
"books": "Books", "books": "పుస్తకాలు",
"podcastsDuration": "Duration", "podcastsDuration": "Duration",
"booksDuration": "Duration" "booksDuration": "Duration"
}, },
@@ -773,17 +767,17 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Monitoring", "monitoring": "Monitoring",
"updates": "Updates" "updates": "నవీకరణలు"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "పుస్తకాలు",
"authors": "Authors", "authors": "Authors",
"categories": "Categories", "categories": "Categories",
"series": "Series" "series": "Series"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "వరుస",
"downloadBytesRemaining": "Remaining", "downloadBytesRemaining": "మిగిలింది",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Size",
"downloadSpeed": "Speed" "downloadSpeed": "Speed"
}, },
@@ -793,21 +787,21 @@
}, },
"azuredevops": { "azuredevops": {
"result": "Result", "result": "Result",
"status": "Status", "status": "హోదా",
"buildId": "Build ID", "buildId": "Build ID",
"succeeded": "Succeeded", "succeeded": "Succeeded",
"notStarted": "Not Started", "notStarted": "Not Started",
"failed": "Failed", "failed": "విఫలమయ్యారు",
"canceled": "Canceled", "canceled": "Canceled",
"inProgress": "In Progress", "inProgress": "In Progress",
"totalPrs": "Total PRs", "totalPrs": "Total PRs",
"myPrs": "My PRs", "myPrs": "My PRs",
"approved": "Approved" "approved": "ఆమోదించబడింది"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "హోదా",
"online": "Online", "online": "Online",
"offline": "Offline", "offline": "ఆఫ్‌లైన్",
"name": "Name", "name": "Name",
"map": "Map", "map": "Map",
"currentPlayers": "Current players", "currentPlayers": "Current players",
@@ -824,17 +818,17 @@
}, },
"mealie": { "mealie": {
"recipes": "Recipes", "recipes": "Recipes",
"users": "Users", "users": "వినియోగదారులు",
"categories": "Categories", "categories": "Categories",
"tags": "Tags" "tags": "Tags"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Downloading", "downloading": "Downloading",
"total": "Total", "total": "మొత్తం",
"running": "Running", "running": "Running",
"stopped": "Stopped", "stopped": "ఆగిపోయినవి",
"passed": "Passed", "passed": "Passed",
"failed": "Failed" "failed": "విఫలమయ్యారు"
}, },
"openwrt": { "openwrt": {
"uptime": "Uptime", "uptime": "Uptime",
@@ -845,7 +839,7 @@
"bytesRx": "Received" "bytesRx": "Received"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "హోదా",
"uptime": "Uptime", "uptime": "Uptime",
"lastDown": "Last Downtime", "lastDown": "Last Downtime",
"downDuration": "Downtime Duration", "downDuration": "Downtime Duration",
@@ -875,7 +869,7 @@
"totalfilesize": "Total Size" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Domains", "domains": "డొమైన్‌లు",
"mailboxes": "Mailboxes", "mailboxes": "Mailboxes",
"mails": "Mails", "mails": "Mails",
"storage": "Storage" "storage": "Storage"
@@ -913,7 +907,7 @@
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "వినియోగదారులు",
"recipes": "Recipes", "recipes": "Recipes",
"keywords": "Keywords" "keywords": "Keywords"
}, },
@@ -922,7 +916,7 @@
"totalWithWarranty": "With Warranty", "totalWithWarranty": "With Warranty",
"locations": "Locations", "locations": "Locations",
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "వినియోగదారులు",
"totalValue": "Total Value" "totalValue": "Total Value"
}, },
"crowdsec": { "crowdsec": {
@@ -931,9 +925,9 @@
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Connected",
"enabled": "Enabled", "enabled": "ప్రారంభించబడింది",
"disabled": "Disabled", "disabled": "డిసేబ్లెడ్",
"total": "Total" "total": "మొత్తం"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
@@ -989,9 +983,9 @@
"name": "Name", "name": "Name",
"address": "Address", "address": "Address",
"last_seen": "Last Seen", "last_seen": "Last Seen",
"status": "Status", "status": "హోదా",
"online": "Online", "online": "Online",
"offline": "Offline" "offline": "ఆఫ్‌లైన్"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Name",
@@ -999,10 +993,10 @@
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"pending": "Pending", "pending": "పెండింగ్",
"status": "Status", "status": "హోదా",
"updated": "Updated", "updated": "నవీకరించబడింది",
"cpu": "CPU", "cpu": "సీపియూ",
"memory": "MEM", "memory": "MEM",
"disk": "Disk", "disk": "Disk",
"network": "NET" "network": "NET"
@@ -1014,7 +1008,7 @@
"healthy": "Healthy", "healthy": "Healthy",
"degraded": "Degraded", "degraded": "Degraded",
"progressing": "Progressing", "progressing": "Progressing",
"missing": "Missing", "missing": "మిస్సింగ్",
"suspended": "Suspended" "suspended": "Suspended"
}, },
"spoolman": { "spoolman": {
@@ -1027,10 +1021,10 @@
"projects": "Projects" "projects": "Projects"
}, },
"apcups": { "apcups": {
"status": "Status", "status": "హోదా",
"load": "Load", "load": "లోడ్",
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Time Left" "timeleft": "మిగిలి వున్న సమయం"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
@@ -1045,8 +1039,8 @@
"connected": "Connected", "connected": "Connected",
"disconnected": "Disconnected", "disconnected": "Disconnected",
"updateStatus": "Update", "updateStatus": "Update",
"update_yes": "Available", "update_yes": "అందుబాటులో వున్నవి",
"update_no": "Up to Date", "update_no": "తాజాగా",
"downloads": "Downloads", "downloads": "Downloads",
"uploads": "Uploads", "uploads": "Uploads",
"sharedFiles": "Files" "sharedFiles": "Files"
@@ -1060,28 +1054,5 @@
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -63,14 +63,14 @@
"wlan_users": "WLAN Users", "wlan_users": "WLAN Users",
"up": "UP", "up": "UP",
"down": "DOWN", "down": "DOWN",
"wait": "Please wait", "wait": "โปรดรอ",
"empty_data": "Subsystem status unknown" "empty_data": "Subsystem status unknown"
}, },
"docker": { "docker": {
"rx": "RX", "rx": "RX",
"tx": "TX", "tx": "TX",
"mem": "MEM", "mem": "เมม",
"cpu": "CPU", "cpu": "ซีพียู",
"running": "Running", "running": "Running",
"offline": "ออฟไลน์", "offline": "ออฟไลน์",
"error": "ข้อผิดพลาด", "error": "ข้อผิดพลาด",
@@ -83,7 +83,7 @@
"partial": "Partial" "partial": "Partial"
}, },
"ping": { "ping": {
"error": "Error", "error": "ข้อผิดพลาด",
"ping": "ปิง", "ping": "ปิง",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
@@ -91,7 +91,7 @@
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "HTTP status", "http_status": "HTTP status",
"error": "Error", "error": "ข้อผิดพลาด",
"response": "Response", "response": "Response",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
@@ -108,11 +108,11 @@
"songs": "Songs" "songs": "Songs"
}, },
"esphome": { "esphome": {
"offline": "Offline", "offline": "ออฟไลน์",
"offline_alt": "Offline", "offline_alt": "ออฟไลน์",
"online": "ออนไลน์", "online": "ออนไลน์",
"total": "Total", "total": "ทั้งหมด",
"unknown": "Unknown" "unknown": "ไม่ทราบ"
}, },
"evcc": { "evcc": {
"pv_power": "Production", "pv_power": "Production",
@@ -133,7 +133,7 @@
"unread": "ยังไม่ได้อ่าน" "unread": "ยังไม่ได้อ่าน"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Status", "connectionStatus": "สถานะ",
"connectionStatusUnconfigured": "ยังไม่ได้กำหนดค่า", "connectionStatusUnconfigured": "ยังไม่ได้กำหนดค่า",
"connectionStatusConnecting": "กำลังเชื่อมต่อ", "connectionStatusConnecting": "กำลังเชื่อมต่อ",
"connectionStatusAuthenticating": "Authenticating", "connectionStatusAuthenticating": "Authenticating",
@@ -168,10 +168,10 @@
"passes": "Passes" "passes": "Passes"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "กำลังเล่น",
"transcoding": "Transcoding", "transcoding": "การแปลงรหัส",
"bitrate": "Bitrate", "bitrate": "อัตราบิต",
"no_active": "No Active Streams", "no_active": "ไม่มีสตรีมที่ใช้งานอยู่",
"plex_connection_error": "Check Plex Connection" "plex_connection_error": "Check Plex Connection"
}, },
"omada": { "omada": {
@@ -199,18 +199,18 @@
}, },
"rutorrent": { "rutorrent": {
"active": "Active", "active": "Active",
"upload": "Upload", "upload": "อัพโหลด",
"download": "Download" "download": "ดาวน์โหลด"
}, },
"transmission": { "transmission": {
"download": "Download", "download": "ดาวน์โหลด",
"upload": "Upload", "upload": "อัพโหลด",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Download", "download": "ดาวน์โหลด",
"upload": "Upload", "upload": "อัพโหลด",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -223,8 +223,8 @@
"invalid": "Invalid" "invalid": "Invalid"
}, },
"deluge": { "deluge": {
"download": "Download", "download": "ดาวน์โหลด",
"upload": "Upload", "upload": "อัพโหลด",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -233,8 +233,8 @@
"cachemissbytes": "Cache Miss Bytes" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Download", "download": "ดาวน์โหลด",
"upload": "Upload", "upload": "อัพโหลด",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -243,7 +243,7 @@
"queued": "Queued", "queued": "Queued",
"series": "Series", "series": "Series",
"queue": "Queue", "queue": "Queue",
"unknown": "Unknown" "unknown": "ไม่ทราบ"
}, },
"radarr": { "radarr": {
"wanted": "Wanted", "wanted": "Wanted",
@@ -251,7 +251,7 @@
"queued": "Queued", "queued": "Queued",
"movies": "Movies", "movies": "Movies",
"queue": "Queue", "queue": "Queue",
"unknown": "Unknown" "unknown": "ไม่ทราบ"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "Wanted",
@@ -284,7 +284,7 @@
"available": "Available" "available": "Available"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "ทั้งหมด",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
@@ -302,20 +302,20 @@
"latency": "Latency" "latency": "Latency"
}, },
"speedtest": { "speedtest": {
"upload": "Upload", "upload": "อัพโหลด",
"download": "Download", "download": "ดาวน์โหลด",
"ping": "Ping" "ping": "ปิง"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "Running",
"stopped": "Stopped", "stopped": "Stopped",
"total": "Total" "total": "ทั้งหมด"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Downloaded",
"nondownload": "Non-Downloaded", "nondownload": "Non-Downloaded",
"read": "Read", "read": "Read",
"unread": "Unread", "unread": "ยังไม่ได้อ่าน",
"downloadedread": "Downloaded & Read", "downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread", "downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read", "nondownloadedread": "Non-Downloaded & Read",
@@ -359,20 +359,14 @@
"services": "Services", "services": "Services",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "ไม่มีสตรีมที่ใช้งานอยู่",
"please_wait": "Please Wait" "please_wait": "Please Wait"
}, },
"npm": { "npm": {
"enabled": "เปิด", "enabled": "เปิด",
"disabled": "ปิด", "disabled": "ปิด",
"total": "Total" "total": "ทั้งหมด"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Configure one or more crypto currencies to track", "configure": "Configure one or more crypto currencies to track",
@@ -404,7 +398,7 @@
"transferRate": "Rate" "transferRate": "Rate"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "ผู้ใช้",
"status_count": "Posts", "status_count": "Posts",
"domain_count": "Domains" "domain_count": "Domains"
}, },
@@ -416,36 +410,36 @@
"minecraft": { "minecraft": {
"players": "Players", "players": "Players",
"version": "เวอร์ชั่น", "version": "เวอร์ชั่น",
"status": "Status", "status": "สถานะ",
"up": "Online", "up": "ออนไลน์",
"down": "Offline" "down": "ออฟไลน์"
}, },
"miniflux": { "miniflux": {
"read": "Read", "read": "Read",
"unread": "Unread" "unread": "ยังไม่ได้อ่าน"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "ผู้ใช้",
"loginsLast24H": "Logins (24h)", "loginsLast24H": "Logins (24h)",
"failedLoginsLast24H": "Failed Logins (24h)" "failedLoginsLast24H": "Failed Logins (24h)"
}, },
"proxmox": { "proxmox": {
"mem": "MEM", "mem": "เมม",
"cpu": "CPU", "cpu": "ซีพียู",
"lxc": "LXC", "lxc": "LXC",
"vms": "VMs" "vms": "VMs"
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "ซีพียู",
"load": "Load", "load": "โหลด",
"wait": "Please wait", "wait": "โปรดรอ",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temp", "_temp": "Temp",
"warn": "Warn", "warn": "Warn",
"uptime": "UP", "uptime": "UP",
"total": "Total", "total": "ทั้งหมด",
"free": "Free", "free": "ฟรี",
"used": "Used", "used": "ใช้แล้ว",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Crit", "crit": "Crit",
@@ -539,7 +533,7 @@
"grace": "In Grace Period", "grace": "In Grace Period",
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"status": "Status", "status": "สถานะ",
"last_ping": "Last Ping", "last_ping": "Last Ping",
"never": "No pings yet" "never": "No pings yet"
}, },
@@ -569,7 +563,7 @@
"speed": "Speed", "speed": "Speed",
"active": "Active", "active": "Active",
"queue": "Queue", "queue": "Queue",
"total": "Total" "total": "ทั้งหมด"
}, },
"gluetun": { "gluetun": {
"public_ip": "Public IP", "public_ip": "Public IP",
@@ -586,23 +580,23 @@
"signalStrength": "Strength", "signalStrength": "Strength",
"signalQuality": "Quality", "signalQuality": "Quality",
"symbolQuality": "Quality", "symbolQuality": "Quality",
"networkRate": "Bitrate", "networkRate": "อัตราบิต",
"clientIP": "Client" "clientIP": "Client"
}, },
"scrutiny": { "scrutiny": {
"passed": "Passed", "passed": "Passed",
"failed": "Failed", "failed": "Failed",
"unknown": "Unknown" "unknown": "ไม่ทราบ"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Inbox", "inbox": "Inbox",
"total": "Total" "total": "ทั้งหมด"
}, },
"peanut": { "peanut": {
"battery_charge": "Battery Charge", "battery_charge": "Battery Charge",
"ups_load": "UPS Load", "ups_load": "UPS Load",
"ups_status": "UPS Status", "ups_status": "UPS Status",
"online": "Online", "online": "ออนไลน์",
"on_battery": "On Battery", "on_battery": "On Battery",
"low_battery": "Low Battery" "low_battery": "Low Battery"
}, },
@@ -640,14 +634,14 @@
"layers": "Layers" "layers": "Layers"
}, },
"octoprint": { "octoprint": {
"printer_state": "Status", "printer_state": "สถานะ",
"temp_tool": "Tool temp", "temp_tool": "Tool temp",
"temp_bed": "Bed temp", "temp_bed": "Bed temp",
"job_completion": "Completion" "job_completion": "Completion"
}, },
"cloudflared": { "cloudflared": {
"origin_ip": "Origin IP", "origin_ip": "Origin IP",
"status": "Status" "status": "สถานะ"
}, },
"pfsense": { "pfsense": {
"load": "Load Avg", "load": "Load Avg",
@@ -662,11 +656,11 @@
"proxmoxbackupserver": { "proxmoxbackupserver": {
"datastore_usage": "Datastore", "datastore_usage": "Datastore",
"failed_tasks_24h": "Failed Tasks 24h", "failed_tasks_24h": "Failed Tasks 24h",
"cpu_usage": "CPU", "cpu_usage": "ซีพียู",
"memory_usage": "Memory" "memory_usage": "Memory"
}, },
"immich": { "immich": {
"users": "Users", "users": "ผู้ใช้",
"photos": "Photos", "photos": "Photos",
"videos": "Videos", "videos": "Videos",
"storage": "Storage" "storage": "Storage"
@@ -690,7 +684,7 @@
"books": "Books" "books": "Books"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "วัน",
"uptime": "Uptime", "uptime": "Uptime",
"volumeAvailable": "Available" "volumeAvailable": "Available"
}, },
@@ -730,7 +724,7 @@
"numshares": "Shared Items" "numshares": "Shared Items"
}, },
"kopia": { "kopia": {
"status": "Status", "status": "สถานะ",
"size": "Size", "size": "Size",
"lastrun": "Last Run", "lastrun": "Last Run",
"nextrun": "Next Run", "nextrun": "Next Run",
@@ -752,7 +746,7 @@
}, },
"gatus": { "gatus": {
"up": "Sites Up", "up": "Sites Up",
"down": "Sites Down", "down": "เว็บไซต์ ล่ม",
"uptime": "Uptime" "uptime": "Uptime"
}, },
"ghostfolio": { "ghostfolio": {
@@ -793,7 +787,7 @@
}, },
"azuredevops": { "azuredevops": {
"result": "Result", "result": "Result",
"status": "Status", "status": "สถานะ",
"buildId": "Build ID", "buildId": "Build ID",
"succeeded": "Succeeded", "succeeded": "Succeeded",
"notStarted": "Not Started", "notStarted": "Not Started",
@@ -805,16 +799,16 @@
"approved": "Approved" "approved": "Approved"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "สถานะ",
"online": "Online", "online": "ออนไลน์",
"offline": "Offline", "offline": "ออฟไลน์",
"name": "Name", "name": "Name",
"map": "Map", "map": "Map",
"currentPlayers": "Current players", "currentPlayers": "Current players",
"players": "Players", "players": "Players",
"maxPlayers": "Max players", "maxPlayers": "Max players",
"bots": "Bots", "bots": "Bots",
"ping": "Ping" "ping": "ปิง"
}, },
"urbackup": { "urbackup": {
"ok": "Ok", "ok": "Ok",
@@ -824,13 +818,13 @@
}, },
"mealie": { "mealie": {
"recipes": "Recipes", "recipes": "Recipes",
"users": "Users", "users": "ผู้ใช้",
"categories": "Categories", "categories": "Categories",
"tags": "Tags" "tags": "Tags"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Downloading", "downloading": "Downloading",
"total": "Total", "total": "ทั้งหมด",
"running": "Running", "running": "Running",
"stopped": "Stopped", "stopped": "Stopped",
"passed": "Passed", "passed": "Passed",
@@ -845,18 +839,18 @@
"bytesRx": "Received" "bytesRx": "Received"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "สถานะ",
"uptime": "Uptime", "uptime": "Uptime",
"lastDown": "Last Downtime", "lastDown": "Last Downtime",
"downDuration": "Downtime Duration", "downDuration": "Downtime Duration",
"sitesUp": "Sites Up", "sitesUp": "Sites Up",
"sitesDown": "Sites Down", "sitesDown": "เว็บไซต์ ล่ม",
"paused": "Paused", "paused": "Paused",
"notyetchecked": "Not Yet Checked", "notyetchecked": "Not Yet Checked",
"up": "Up", "up": "Up",
"seemsdown": "Seems Down", "seemsdown": "Seems Down",
"down": "Down", "down": "Down",
"unknown": "Unknown" "unknown": "ไม่ทราบ"
}, },
"calendar": { "calendar": {
"inCinemas": "In cinemas", "inCinemas": "In cinemas",
@@ -913,7 +907,7 @@
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "ผู้ใช้",
"recipes": "Recipes", "recipes": "Recipes",
"keywords": "Keywords" "keywords": "Keywords"
}, },
@@ -922,7 +916,7 @@
"totalWithWarranty": "With Warranty", "totalWithWarranty": "With Warranty",
"locations": "Locations", "locations": "Locations",
"labels": "Labels", "labels": "Labels",
"users": "Users", "users": "ผู้ใช้",
"totalValue": "Total Value" "totalValue": "Total Value"
}, },
"crowdsec": { "crowdsec": {
@@ -931,9 +925,9 @@
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Connected",
"enabled": "Enabled", "enabled": "เปิด",
"disabled": "Disabled", "disabled": "ปิด",
"total": "Total" "total": "ทั้งหมด"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
@@ -942,9 +936,9 @@
"banned": "Banned" "banned": "Banned"
}, },
"myspeed": { "myspeed": {
"ping": "Ping", "ping": "ปิง",
"download": "Download", "download": "ดาวน์โหลด",
"upload": "Upload" "upload": "อัพโหลด"
}, },
"stocks": { "stocks": {
"stocks": "Stocks", "stocks": "Stocks",
@@ -956,7 +950,7 @@
"frigate": { "frigate": {
"cameras": "Cameras", "cameras": "Cameras",
"uptime": "Uptime", "uptime": "Uptime",
"version": "Version" "version": "เวอร์ชั่น"
}, },
"linkwarden": { "linkwarden": {
"links": "Links", "links": "Links",
@@ -965,7 +959,7 @@
}, },
"zabbix": { "zabbix": {
"unclassified": "Not classified", "unclassified": "Not classified",
"information": "Information", "information": "ข้อมูล",
"warning": "Warning", "warning": "Warning",
"average": "Average", "average": "Average",
"high": "High", "high": "High",
@@ -989,9 +983,9 @@
"name": "Name", "name": "Name",
"address": "Address", "address": "Address",
"last_seen": "Last Seen", "last_seen": "Last Seen",
"status": "Status", "status": "สถานะ",
"online": "Online", "online": "ออนไลน์",
"offline": "Offline" "offline": "ออฟไลน์"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Name",
@@ -1000,10 +994,10 @@
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"pending": "Pending", "pending": "Pending",
"status": "Status", "status": "สถานะ",
"updated": "Updated", "updated": "Updated",
"cpu": "CPU", "cpu": "ซีพียู",
"memory": "MEM", "memory": "เมม",
"disk": "Disk", "disk": "Disk",
"network": "NET" "network": "NET"
}, },
@@ -1014,7 +1008,7 @@
"healthy": "Healthy", "healthy": "Healthy",
"degraded": "Degraded", "degraded": "Degraded",
"progressing": "Progressing", "progressing": "Progressing",
"missing": "Missing", "missing": "หายไป",
"suspended": "Suspended" "suspended": "Suspended"
}, },
"spoolman": { "spoolman": {
@@ -1027,8 +1021,8 @@
"projects": "Projects" "projects": "Projects"
}, },
"apcups": { "apcups": {
"status": "Status", "status": "สถานะ",
"load": "Load", "load": "โหลด",
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Time Left" "timeleft": "Time Left"
}, },
@@ -1060,28 +1054,5 @@
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

View File

@@ -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": "UP", "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"
@@ -93,8 +93,8 @@
"http_status": "HTTPS durumu", "http_status": "HTTPS durumu",
"error": "Hata", "error": "Hata",
"response": "Yanıt", "response": "Yanıt",
"down": "Down", "down": "İndirme",
"up": "Up", "up": "Yükleme",
"not_available": "Mevcut Değil" "not_available": "Mevcut Değil"
}, },
"emby": { "emby": {
@@ -144,8 +144,8 @@
"uptime": "Çalışma Süresi", "uptime": "Çalışma Süresi",
"maxDown": "Max. Indirme", "maxDown": "Max. Indirme",
"maxUp": "Max. Gönderme", "maxUp": "Max. Gönderme",
"down": "Down", "down": "İndirme",
"up": "Up", "up": "Yükleme",
"received": "Alınan", "received": "Alınan",
"sent": "Gönderilen", "sent": "Gönderilen",
"externalIPAddress": "Harici IP", "externalIPAddress": "Harici IP",
@@ -178,7 +178,7 @@
"connectedAp": "Bağlı AP'ler", "connectedAp": "Bağlı AP'ler",
"activeUser": "Aktif cihazlar", "activeUser": "Aktif cihazlar",
"alerts": "Alarmlar", "alerts": "Alarmlar",
"connectedGateways": "Bağlı ağ geçitleri", "connectedGateways": "Connected gateways",
"connectedSwitches": "Bağlı anahtarlar" "connectedSwitches": "Bağlı anahtarlar"
}, },
"nzbget": { "nzbget": {
@@ -224,9 +224,9 @@
}, },
"deluge": { "deluge": {
"download": "İndirme", "download": "İndirme",
"upload": "Upload", "upload": "Yükleme",
"leech": "Leech", "leech": "Tüketici",
"seed": "Seed" "seed": "Sağlayıcı"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "Önbellek İsabetli Byte", "cachehitbytes": "Önbellek İsabetli Byte",
@@ -241,26 +241,26 @@
"sonarr": { "sonarr": {
"wanted": "İstendi", "wanted": "İstendi",
"queued": "Sırada", "queued": "Sırada",
"series": "Seriler", "series": "Diziler",
"queue": "Kuyruk", "queue": "Kuyruk",
"unknown": "Bilinmeyen" "unknown": "Bilinmiyor"
}, },
"radarr": { "radarr": {
"wanted": "İstendi", "wanted": "İstendi",
"missing": "Eksik", "missing": "Eksik",
"queued": "Kuyrukta", "queued": "Sırada",
"movies": "Filmler", "movies": "Filmler",
"queue": "Kuyruk", "queue": "Kuyruk",
"unknown": "Bilinmeyen" "unknown": "Bilinmiyor"
}, },
"lidarr": { "lidarr": {
"wanted": "Wanted", "wanted": "İstendi",
"queued": "Queued", "queued": "Sırada",
"artists": "Sanatçılar" "artists": "Sanatçılar"
}, },
"readarr": { "readarr": {
"wanted": "Wanted", "wanted": "İstendi",
"queued": "Queued", "queued": "Sırada",
"books": "Kitaplar" "books": "Kitaplar"
}, },
"bazarr": { "bazarr": {
@@ -278,14 +278,14 @@
"available": "Kullanılabilir" "available": "Kullanılabilir"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "Bekleyen",
"processing": "İşleniyor", "processing": "İşleniyor",
"approved": "Approved", "approved": "Onaylı",
"available": "Available" "available": "Kullanılabilir"
}, },
"netalertx": { "netalertx": {
"total": "Toplam", "total": "Toplam",
"connected": "Connected", "connected": "Bağlandı",
"new_devices": "Yeni Cihazlar", "new_devices": "Yeni Cihazlar",
"down_alerts": "Hata Uyarıları" "down_alerts": "Hata Uyarıları"
}, },
@@ -296,8 +296,8 @@
"gravity": "Gravity" "gravity": "Gravity"
}, },
"adguard": { "adguard": {
"queries": "Queries", "queries": "Sorgular",
"blocked": "Blocked", "blocked": "Engellenen",
"filtered": "Filtrelendi", "filtered": "Filtrelendi",
"latency": "Gecikme" "latency": "Gecikme"
}, },
@@ -313,13 +313,13 @@
}, },
"suwayomi": { "suwayomi": {
"download": "İndirilen", "download": "İndirilen",
"nondownload": "İndirilmemiş", "nondownload": "Non-Downloaded",
"read": "Okunan", "read": "Okunan",
"unread": "Okunmamış", "unread": "Okunmamış",
"downloadedread": "İndirildi & Okundu", "downloadedread": "Downloaded & Read",
"downloadedunread": "İndirildi & Okunmadı", "downloadedunread": "Downloaded & Unread",
"nondownloadedread": "İndirilmedi & Okundu", "nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "İndirilmedi & Okunmadı" "nondownloadedunread": "Non-Downloaded & Unread"
}, },
"tailscale": { "tailscale": {
"address": "Adres", "address": "Adres",
@@ -359,12 +359,6 @@
"services": "Hizmetler", "services": "Hizmetler",
"middleware": "Ara Katman" "middleware": "Ara Katman"
}, },
"trilium": {
"version": "Sürüm",
"notesCount": "Notlar",
"dbSize": "Veritabanı Boyutu",
"unknown": "Bilinmeyen"
},
"navidrome": { "navidrome": {
"nothing_streaming": "Aktif akış yok", "nothing_streaming": "Aktif akış yok",
"please_wait": "Lütfen Bekleyin" "please_wait": "Lütfen Bekleyin"
@@ -383,11 +377,11 @@
}, },
"gotify": { "gotify": {
"apps": "Uygulamalar", "apps": "Uygulamalar",
"clients": "İstemciler", "clients": "Alıcılar",
"messages": "İletiler" "messages": "İletiler"
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "İndeksleyici", "enableIndexers": "Dizin Oluşturucular",
"numberOfGrabs": "Yakalamalar", "numberOfGrabs": "Yakalamalar",
"numberOfQueries": "Sorgular", "numberOfQueries": "Sorgular",
"numberOfFailGrabs": "Başarısız Yakalamalar", "numberOfFailGrabs": "Başarısız Yakalamalar",
@@ -411,21 +405,21 @@
"medusa": { "medusa": {
"wanted": "İstendi", "wanted": "İstendi",
"queued": "Sırada", "queued": "Sırada",
"series": "Series" "series": "Diziler"
}, },
"minecraft": { "minecraft": {
"players": "Oyuncular", "players": "Oyuncular",
"version": "Versiyon", "version": "Versiyon",
"status": "Durum", "status": "Durum",
"up": "Online", "up": "Çevrimiçi",
"down": "Offline" "down": "Çevrimdışı"
}, },
"miniflux": { "miniflux": {
"read": "Okunmuş", "read": "Okunan",
"unread": "Okunmamış" "unread": "Okunmamış"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "Kullanıcılar",
"loginsLast24H": "Girişler (24 Saat)", "loginsLast24H": "Girişler (24 Saat)",
"failedLoginsLast24H": "Başarısız Girişler (24 Saat)" "failedLoginsLast24H": "Başarısız Girişler (24 Saat)"
}, },
@@ -437,19 +431,19 @@
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Load", "load": "Yük",
"wait": "Please wait", "wait": "Lütfen bekleyin",
"temp": "TEMP", "temp": "Sıcaklık",
"_temp": "Sıcaklık", "_temp": "Sıcaklık",
"warn": "Uyarı", "warn": "Uyarı",
"uptime": "UP", "uptime": "Çalışıyor",
"total": "Toplam", "total": "Toplam",
"free": "Free", "free": "Boş",
"used": "Used", "used": "Kullanımda",
"days": "d", "days": "g",
"hours": "h", "hours": "sa",
"crit": "Kritik", "crit": "Kritik",
"read": "Read", "read": "Okunan",
"write": "Yazma", "write": "Yazma",
"gpu": "GPU", "gpu": "GPU",
"mem": "Hafıza", "mem": "Hafıza",
@@ -478,21 +472,21 @@
"48-day": "Sisli", "48-day": "Sisli",
"48-night": "Sisli", "48-night": "Sisli",
"51-day": "Az Çiseleyen Yağmur", "51-day": "Az Çiseleyen Yağmur",
"51-night": "Hafif Çiseleme", "51-night": "Az Çiseleyen Yağmur",
"53-day": "Çiseleyen Yağmur", "53-day": "Çiseleyen Yağmur",
"53-night": "Çiseleme", "53-night": "Çiseleyen Yağmur",
"55-day": "Çok Çiseleyen Yağmur", "55-day": "Çok Çiseleyen Yağmur",
"55-night": "Yoğun Çiseleme", "55-night": "Çok Çiseleyen Yağmur",
"56-day": "Soğuk Az Çiseleyen Yağmur", "56-day": "Soğuk Az Çiseleyen Yağmur",
"56-night": "Hafif Dondurucu Çiseleme", "56-night": "Soğuk Az Çiseleyen Yağmur",
"57-day": "Soğuk Çiseleyen Yağmur", "57-day": "Soğuk Çiseleyen Yağmur",
"57-night": "Dondurucu Çiseleme", "57-night": "Soğuk Çiseleyen Yağmur",
"61-day": "Hafif Yağmur", "61-day": "Hafif Yağmur",
"61-night": "Hafif Yağmur", "61-night": "Hafif Yağmur",
"63-day": "Yağmur", "63-day": "Yağmur",
"63-night": "Yağmur", "63-night": "Yağmur",
"65-day": "Çok Yağmur", "65-day": "Çok Yağmur",
"65-night": "Şiddetli Yağmur", "65-night": "Çok Yağmur",
"66-day": "Dondurucu Yağmur", "66-day": "Dondurucu Yağmur",
"66-night": "Dondurucu Yağmur", "66-night": "Dondurucu Yağmur",
"67-day": "Dondurucu Yağmur", "67-day": "Dondurucu Yağmur",
@@ -502,7 +496,7 @@
"73-day": "Kar", "73-day": "Kar",
"73-night": "Kar", "73-night": "Kar",
"75-day": "Çok Kar", "75-day": "Çok Kar",
"75-night": "Yoğun Kar", "75-night": "Çok Kar",
"77-day": "Kar Taneleri", "77-day": "Kar Taneleri",
"77-night": "Kar Taneleri", "77-night": "Kar Taneleri",
"80-day": "Hafif Sağanak", "80-day": "Hafif Sağanak",
@@ -516,11 +510,11 @@
"86-day": "Karlı Sağanak", "86-day": "Karlı Sağanak",
"86-night": "Karlı Sağanak", "86-night": "Karlı Sağanak",
"95-day": "Gök Gürültülü Fırtına", "95-day": "Gök Gürültülü Fırtına",
"95-night": "Fırtına", "95-night": "Gök Gürültülü Fırtına",
"96-day": "Dolu İle Gök Gürültülü Fırtına", "96-day": "Dolu İle Gök Gürültülü Fırtına",
"96-night": "Dolu Yağışlı Fırtına", "96-night": "Dolu İle Gök Gürültülü Fırtına",
"99-day": "Dolu Yağışlı Fırtına", "99-day": "Dolu İle Gök Gürültülü Fırtına",
"99-night": "Dolu Yağışlı Fırtına" "99-night": "Dolu İle Gök Gürültülü Fırtına"
}, },
"homebridge": { "homebridge": {
"available_update": "Sistem", "available_update": "Sistem",
@@ -529,15 +523,15 @@
"up_to_date": "Güncel", "up_to_date": "Güncel",
"child_bridges": "Alt Köprüler", "child_bridges": "Alt Köprüler",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Yükleme",
"pending": "Bekleyen", "pending": "Bekleyen",
"down": "Down" "down": "İndirme"
}, },
"healthchecks": { "healthchecks": {
"new": "Yeni", "new": "Yeni",
"up": "Up", "up": "Yükleme",
"grace": "Tolerans Döneminde", "grace": "Tolerans Döneminde",
"down": "Down", "down": "İndirme",
"paused": "Duraklatıldı", "paused": "Duraklatıldı",
"status": "Durum", "status": "Durum",
"last_ping": "Son Ping", "last_ping": "Son Ping",
@@ -552,7 +546,7 @@
"approvedPushes": "Onaylı", "approvedPushes": "Onaylı",
"rejectedPushes": "Reddedildi", "rejectedPushes": "Reddedildi",
"filters": "Süzgeçler", "filters": "Süzgeçler",
"indexers": "İndeksleyici" "indexers": "Dizin Oluşturucular"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Kuyruk", "downloads": "Kuyruk",
@@ -575,7 +569,7 @@
"public_ip": "Açık IP", "public_ip": "Açık IP",
"region": "Bölge", "region": "Bölge",
"country": "Ülke", "country": "Ülke",
"port_forwarded": "Yönlendirilen Port" "port_forwarded": "Port Forwarded"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Kanallar", "channels": "Kanallar",
@@ -592,7 +586,7 @@
"scrutiny": { "scrutiny": {
"passed": "Geçti", "passed": "Geçti",
"failed": "Başarısız", "failed": "Başarısız",
"unknown": "Bilinmeyen" "unknown": "Bilinmiyor"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Gelen Kutusu", "inbox": "Gelen Kutusu",
@@ -613,12 +607,12 @@
"mikrotik": { "mikrotik": {
"cpuLoad": "CPU Yükü", "cpuLoad": "CPU Yükü",
"memoryUsed": "Bellek Kullanımı", "memoryUsed": "Bellek Kullanımı",
"uptime": "Uptime", "uptime": "Çalışma Süresi",
"numberOfLeases": "Kiralama" "numberOfLeases": "Kiralama"
}, },
"xteve": { "xteve": {
"streams_all": "Tüm Akışlar", "streams_all": "Tüm Akışlar",
"streams_active": "Active Streams", "streams_active": "Aktif Akış",
"streams_xepg": "XEPG Kanalları" "streams_xepg": "XEPG Kanalları"
}, },
"opendtu": { "opendtu": {
@@ -628,7 +622,7 @@
"limit": "Limit" "limit": "Limit"
}, },
"opnsense": { "opnsense": {
"cpu": "CPU Load", "cpu": "CPU Yükü",
"memory": "Aktif Bellek", "memory": "Aktif Bellek",
"wanUpload": "WAN Yükleme", "wanUpload": "WAN Yükleme",
"wanDownload": "WAN İndirme" "wanDownload": "WAN İndirme"
@@ -653,9 +647,9 @@
"load": "Ort. Yükleme", "load": "Ort. Yükleme",
"memory": "Bellek Kullanımı", "memory": "Bellek Kullanımı",
"wanStatus": "WAN Durumu", "wanStatus": "WAN Durumu",
"up": "Up", "up": "Yükleme",
"down": "Down", "down": "İndirme",
"temp": "Temp", "temp": "Sıcaklık",
"disk": "Disk Kullanımı", "disk": "Disk Kullanımı",
"wanIP": "WAN IP" "wanIP": "WAN IP"
}, },
@@ -666,43 +660,43 @@
"memory_usage": "Bellek" "memory_usage": "Bellek"
}, },
"immich": { "immich": {
"users": "Users", "users": "Kullanıcılar",
"photos": "Fotoğraflar", "photos": "Fotoğraflar",
"videos": "Videos", "videos": "Videolar",
"storage": "Depo" "storage": "Depo"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Siteler Çalışıyor", "up": "Siteler Çalışıyor",
"down": "Siteler Çalışmıyor", "down": "Siteler Çalışmıyor",
"uptime": "Uptime", "uptime": "Çalışma Süresi",
"incident": "Olay", "incident": "Olay",
"m": "m" "m": "dk"
}, },
"atsumeru": { "atsumeru": {
"series": "Series", "series": "Diziler",
"archives": "Arşivler", "archives": "Arşivler",
"chapters": "Bölümler", "chapters": "Bölümler",
"categories": "Kategoriler" "categories": "Kategoriler"
}, },
"komga": { "komga": {
"libraries": "Kütüphane", "libraries": "Kütüphane",
"series": "Series", "series": "Diziler",
"books": "Books" "books": "Kitaplar"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Günler",
"uptime": "Uptime", "uptime": "Çalışma Süresi",
"volumeAvailable": "Available" "volumeAvailable": "Kullanılabilir"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "Diziler",
"issues": "Sorunlar", "issues": "Sorunlar",
"wanted": "Wanted" "wanted": "İstendi"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Albümler",
"photos": "Photos", "photos": "Fotoğraflar",
"videos": "Videos", "videos": "Videolar",
"people": "İnsan" "people": "İnsan"
}, },
"fileflows": { "fileflows": {
@@ -734,7 +728,7 @@
"size": "Boyut", "size": "Boyut",
"lastrun": "Son Çalışma", "lastrun": "Son Çalışma",
"nextrun": "Sonraki Çalışma", "nextrun": "Sonraki Çalışma",
"failed": "Failed" "failed": "Başarısız"
}, },
"unmanic": { "unmanic": {
"active_workers": "Aktif Kullanıcılar", "active_workers": "Aktif Kullanıcılar",
@@ -751,20 +745,20 @@
"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": "Uptime" "uptime": "Çalışma Süresi"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Today", "gross_percent_today": "Bugün",
"gross_percent_1y": "Bir yıl", "gross_percent_1y": "Bir yıl",
"gross_percent_max": "Tüm zaman" "gross_percent_max": "Tüm zaman"
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcast", "podcasts": "Podcast",
"books": "Books", "books": "Kitaplar",
"podcastsDuration": "Süre", "podcastsDuration": "Süre",
"booksDuration": "Duration" "booksDuration": "Süre"
}, },
"homeassistant": { "homeassistant": {
"people_home": "Evdeki İnsanlar", "people_home": "Evdeki İnsanlar",
@@ -779,7 +773,7 @@
"books": "Kitaplar", "books": "Kitaplar",
"authors": "Yazarlar", "authors": "Yazarlar",
"categories": "Kategoriler", "categories": "Kategoriler",
"series": "Seriler" "series": "Diziler"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Kuyruk", "downloadCount": "Kuyruk",
@@ -788,7 +782,7 @@
"downloadSpeed": "Hız" "downloadSpeed": "Hız"
}, },
"kavita": { "kavita": {
"seriesCount": "Series", "seriesCount": "Diziler",
"totalFiles": "Dosyalar" "totalFiles": "Dosyalar"
}, },
"azuredevops": { "azuredevops": {
@@ -797,24 +791,24 @@
"buildId": "Yapı Kimliği", "buildId": "Yapı Kimliği",
"succeeded": "Başarılı", "succeeded": "Başarılı",
"notStarted": "Henüz Başlamadı", "notStarted": "Henüz Başlamadı",
"failed": "Failed", "failed": "Başarısız",
"canceled": "İptal edildi", "canceled": "İptal edildi",
"inProgress": "Sürüyor", "inProgress": "Sürüyor",
"totalPrs": "Toplam Çekme İstekleri", "totalPrs": "Toplam Çekme İstekleri",
"myPrs": "Benim Çekme İsteklerim", "myPrs": "Benim Çekme İsteklerim",
"approved": "Approved" "approved": "Onaylı"
}, },
"gamedig": { "gamedig": {
"status": "Durum", "status": "Durum",
"online": "Online", "online": "Çevrimiçi",
"offline": "Offline", "offline": "Çevrimdışı",
"name": "İsim", "name": "İsim",
"map": "Harita", "map": "Harita",
"currentPlayers": "Mevcut oyuncular", "currentPlayers": "Mevcut oyuncular",
"players": "Players", "players": "Oyuncular",
"maxPlayers": "Maks. oyuncu", "maxPlayers": "Maks. oyuncu",
"bots": "Botlar", "bots": "Botlar",
"ping": "Ping" "ping": "Gecikme"
}, },
"urbackup": { "urbackup": {
"ok": "Tamam", "ok": "Tamam",
@@ -824,39 +818,39 @@
}, },
"mealie": { "mealie": {
"recipes": "Tarifler", "recipes": "Tarifler",
"users": "Users", "users": "Kullanıcılar",
"categories": "Categories", "categories": "Kategoriler",
"tags": "Etiketler" "tags": "Etiketler"
}, },
"openmediavault": { "openmediavault": {
"downloading": "İndiriliyor", "downloading": "İndiriliyor",
"total": "Toplam", "total": "Toplam",
"running": "Running", "running": "Çalışıyor",
"stopped": "Stopped", "stopped": "Durduruldu",
"passed": "Passed", "passed": "Geçti",
"failed": "Failed" "failed": "Başarısız"
}, },
"openwrt": { "openwrt": {
"uptime": "Uptime", "uptime": "Çalışma Süresi",
"cpuLoad": "CPU Yükü Ortalaması (5dk)", "cpuLoad": "CPU Yükü Ortalaması (5dk)",
"up": "Up", "up": "Yükleme",
"down": "Down", "down": "İndirme",
"bytesTx": "İletilen", "bytesTx": "İletilen",
"bytesRx": "Received" "bytesRx": "Alınan"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Durum", "status": "Durum",
"uptime": "Uptime", "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": "Paused", "paused": "Duraklatıldı",
"notyetchecked": "Henüz Kontrol Edilmedi", "notyetchecked": "Henüz Kontrol Edilmedi",
"up": "Up", "up": "Yükleme",
"seemsdown": "Kapalı görünüyor", "seemsdown": "Kapalı görünüyor",
"down": "Down", "down": "İndirme",
"unknown": "Unknown" "unknown": "Bilinmiyor"
}, },
"calendar": { "calendar": {
"inCinemas": "Sinemalarda", "inCinemas": "Sinemalarda",
@@ -875,10 +869,10 @@
"totalfilesize": "Toplam Kapasite" "totalfilesize": "Toplam Kapasite"
}, },
"mailcow": { "mailcow": {
"domains": "Domains", "domains": "Etki Alanları",
"mailboxes": "Mailboxes", "mailboxes": "Mailboxes",
"mails": "Postalar", "mails": "Postalar",
"storage": "Storage" "storage": "Depo"
}, },
"netdata": { "netdata": {
"warnings": "Uyarılar", "warnings": "Uyarılar",
@@ -887,12 +881,12 @@
"plantit": { "plantit": {
"events": "Etkinlikler", "events": "Etkinlikler",
"plants": "Bitkiler", "plants": "Bitkiler",
"photos": "Photos", "photos": "Fotoğraflar",
"species": "Türler" "species": "Türler"
}, },
"gitea": { "gitea": {
"notifications": "Bildirimler", "notifications": "Bildirimler",
"issues": "Issues", "issues": "Sorunlar",
"pulls": "Değişiklik İstekleri", "pulls": "Değişiklik İstekleri",
"repositories": "Repositories" "repositories": "Repositories"
}, },
@@ -908,13 +902,13 @@
"galleries": "Galeriler", "galleries": "Galeriler",
"performers": "Oyuncu", "performers": "Oyuncu",
"studios": "Stüdyolar", "studios": "Stüdyolar",
"movies": "Movies", "movies": "Filmler",
"tags": "Tags", "tags": "Etiketler",
"oCount": "O Sayısı" "oCount": "O Sayısı"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "Kullanıcılar",
"recipes": "Recipes", "recipes": "Tarifler",
"keywords": "Anahtar Sözcükler" "keywords": "Anahtar Sözcükler"
}, },
"homebox": { "homebox": {
@@ -922,17 +916,17 @@
"totalWithWarranty": "Garantili", "totalWithWarranty": "Garantili",
"locations": "Konum", "locations": "Konum",
"labels": "Etiketler", "labels": "Etiketler",
"users": "Users", "users": "Kullanıcılar",
"totalValue": "Toplam Değer" "totalValue": "Toplam Değer"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alerts", "alerts": "Alarmlar",
"bans": "Yasaklar" "bans": "Yasaklar"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Bağlandı",
"enabled": "Enabled", "enabled": "Etkin",
"disabled": "Disabled", "disabled": "Devre Dışı",
"total": "Toplam" "total": "Toplam"
}, },
"swagdashboard": { "swagdashboard": {
@@ -942,9 +936,9 @@
"banned": "Yasaklı" "banned": "Yasaklı"
}, },
"myspeed": { "myspeed": {
"ping": "Ping", "ping": "Gecikme",
"download": "İndirme", "download": "İndirme",
"upload": "Upload" "upload": "Yükleme"
}, },
"stocks": { "stocks": {
"stocks": "Hisse Senetleri", "stocks": "Hisse Senetleri",
@@ -955,17 +949,17 @@
}, },
"frigate": { "frigate": {
"cameras": "Kameralar", "cameras": "Kameralar",
"uptime": "Uptime", "uptime": "Çalışma Süresi",
"version": "Version" "version": "Versiyon"
}, },
"linkwarden": { "linkwarden": {
"links": "Bağlantılar", "links": "Bağlantılar",
"collections": "Koleksiyonlar", "collections": "Koleksiyonlar",
"tags": "Tags" "tags": "Etiketler"
}, },
"zabbix": { "zabbix": {
"unclassified": "Not classified", "unclassified": "Not classified",
"information": "Information", "information": "Bilgi",
"warning": "Uyarı", "warning": "Uyarı",
"average": "Ortalama", "average": "Ortalama",
"high": "Yüksek", "high": "Yüksek",
@@ -986,22 +980,22 @@
"tasksInProgress": "Tasks In Progress" "tasksInProgress": "Tasks In Progress"
}, },
"headscale": { "headscale": {
"name": "Name", "name": "İsim",
"address": "Address", "address": "Adres",
"last_seen": "Last Seen", "last_seen": "Son Görülme",
"status": "Durum", "status": "Durum",
"online": "Online", "online": "Çevrimiçi",
"offline": "Offline" "offline": "Çevrimdışı"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "İsim",
"systems": "Systems", "systems": "Systems",
"up": "Up", "up": "Yükleme",
"down": "Down", "down": "İndirme",
"paused": "Paused", "paused": "Duraklatıldı",
"pending": "Pending", "pending": "Bekleyen",
"status": "Durum", "status": "Durum",
"updated": "Updated", "updated": "Güncellendi",
"cpu": "CPU", "cpu": "CPU",
"memory": "MEM", "memory": "MEM",
"disk": "Disk", "disk": "Disk",
@@ -1011,26 +1005,26 @@
"apps": "Apps", "apps": "Apps",
"synced": "Synced", "synced": "Synced",
"outOfSync": "Out Of Sync", "outOfSync": "Out Of Sync",
"healthy": "Healthy", "healthy": "Sağlıklı",
"degraded": "Degraded", "degraded": "Degraded",
"progressing": "Progressing", "progressing": "Progressing",
"missing": "Missing", "missing": "Eksik",
"suspended": "Suspended" "suspended": "Suspended"
}, },
"spoolman": { "spoolman": {
"loading": "Loading" "loading": "Yükleniyor"
}, },
"gitlab": { "gitlab": {
"groups": "Groups", "groups": "Groups",
"issues": "Issues", "issues": "Sorunlar",
"merges": "Merge Requests", "merges": "Merge Requests",
"projects": "Projects" "projects": "Projects"
}, },
"apcups": { "apcups": {
"status": "Durum", "status": "Durum",
"load": "Load", "load": "Yük",
"bcharge": "Battery Charge", "bcharge": "Pil Yüzdesi",
"timeleft": "Time Left" "timeleft": "Kalan Zaman"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
@@ -1038,50 +1032,27 @@
"archived": "Archived", "archived": "Archived",
"highlights": "Highlights", "highlights": "Highlights",
"lists": "Lists", "lists": "Lists",
"tags": "Tags" "tags": "Etiketler"
}, },
"slskd": { "slskd": {
"slskStatus": "Ağ", "slskStatus": "Ağ",
"connected": "Connected", "connected": "Bağlandı",
"disconnected": "Disconnected", "disconnected": "Bağlantı kesildi",
"updateStatus": "Güncelleme", "updateStatus": "Update",
"update_yes": "Available", "update_yes": "Kullanılabilir",
"update_no": "Up to Date", "update_no": "Güncel",
"downloads": "İndirmeler", "downloads": "Downloads",
"uploads": "Uploads", "uploads": "Uploads",
"sharedFiles": "Files" "sharedFiles": "Dosyalar"
}, },
"jellystat": { "jellystat": {
"songs": "Songs", "songs": "Şarkılar",
"movies": "Movies", "movies": "Filmler",
"episodes": "Episodes", "episodes": "Bölümler",
"other": "Other" "other": "Other"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Toplam",
"running": "Çalışıyor",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Toplam"
},
"wallos": {
"activeSubscriptions": "Abonelikler",
"thisMonthlyCost": "Bu Ay",
"nextMonthlyCost": "Sonraki Ay",
"previousMonthlyCost": "Önceki Ay",
"nextRenewingSubscription": "Sonraki Ödeme"
} }
} }

File diff suppressed because it is too large Load Diff

View File

@@ -63,7 +63,7 @@
"wlan_users": "WLAN Users", "wlan_users": "WLAN Users",
"up": "UP", "up": "UP",
"down": "DOWN", "down": "DOWN",
"wait": "Please wait", "wait": "Vui lòng chờ",
"empty_data": "Subsystem status unknown" "empty_data": "Subsystem status unknown"
}, },
"docker": { "docker": {
@@ -95,7 +95,7 @@
"response": "Response", "response": "Response",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
"not_available": "Not Available" "not_available": "Không khả dụng"
}, },
"emby": { "emby": {
"playing": "Đang chơi", "playing": "Đang chơi",
@@ -108,10 +108,10 @@
"songs": "Songs" "songs": "Songs"
}, },
"esphome": { "esphome": {
"offline": "Offline", "offline": "Ngoại tuyến",
"offline_alt": "Offline", "offline_alt": "Ngoại tuyến",
"online": "Online", "online": "Online",
"total": "Total", "total": "Tổng",
"unknown": "Unknown" "unknown": "Unknown"
}, },
"evcc": { "evcc": {
@@ -133,7 +133,7 @@
"unread": "Unread" "unread": "Unread"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Status", "connectionStatus": "Trạng thái",
"connectionStatusUnconfigured": "Unconfigured", "connectionStatusUnconfigured": "Unconfigured",
"connectionStatusConnecting": "Connecting", "connectionStatusConnecting": "Connecting",
"connectionStatusAuthenticating": "Authenticating", "connectionStatusAuthenticating": "Authenticating",
@@ -168,8 +168,8 @@
"passes": "Passes" "passes": "Passes"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "Đang chơi",
"transcoding": "Transcoding", "transcoding": "Chuyển định dạng",
"bitrate": "Bitrate", "bitrate": "Bitrate",
"no_active": "No Active Streams", "no_active": "No Active Streams",
"plex_connection_error": "Check Plex Connection" "plex_connection_error": "Check Plex Connection"
@@ -242,7 +242,7 @@
"wanted": "Wanted", "wanted": "Wanted",
"queued": "Queued", "queued": "Queued",
"series": "Series", "series": "Series",
"queue": "Queue", "queue": "Hàng chờ",
"unknown": "Unknown" "unknown": "Unknown"
}, },
"radarr": { "radarr": {
@@ -250,7 +250,7 @@
"missing": "Missing", "missing": "Missing",
"queued": "Queued", "queued": "Queued",
"movies": "Movies", "movies": "Movies",
"queue": "Queue", "queue": "Hàng chờ",
"unknown": "Unknown" "unknown": "Unknown"
}, },
"lidarr": { "lidarr": {
@@ -273,18 +273,18 @@
"available": "Available" "available": "Available"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pending", "pending": "Đang xử lý",
"approved": "Approved", "approved": "Đã duyệt",
"available": "Available" "available": "Available"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "Đang xử lý",
"processing": "Processing", "processing": "Processing",
"approved": "Approved", "approved": "Đã duyệt",
"available": "Available" "available": "Available"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Tổng",
"connected": "Connected", "connected": "Connected",
"new_devices": "New Devices", "new_devices": "New Devices",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
@@ -309,10 +309,10 @@
"portainer": { "portainer": {
"running": "Running", "running": "Running",
"stopped": "Stopped", "stopped": "Stopped",
"total": "Total" "total": "Tổng"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "Đã tải",
"nondownload": "Non-Downloaded", "nondownload": "Non-Downloaded",
"read": "Read", "read": "Read",
"unread": "Unread", "unread": "Unread",
@@ -349,7 +349,7 @@
"totalClients": "Clients" "totalClients": "Clients"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "Hàng chờ",
"processed": "Processed", "processed": "Processed",
"errored": "Errored", "errored": "Errored",
"saved": "Saved" "saved": "Saved"
@@ -359,12 +359,6 @@
"services": "Services", "services": "Services",
"middleware": "Middleware" "middleware": "Middleware"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "No Active Streams",
"please_wait": "Please Wait" "please_wait": "Please Wait"
@@ -372,7 +366,7 @@
"npm": { "npm": {
"enabled": "Enabled", "enabled": "Enabled",
"disabled": "Disabled", "disabled": "Disabled",
"total": "Total" "total": "Tổng"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Configure one or more crypto currencies to track", "configure": "Configure one or more crypto currencies to track",
@@ -416,9 +410,9 @@
"minecraft": { "minecraft": {
"players": "Players", "players": "Players",
"version": "Version", "version": "Version",
"status": "Status", "status": "Trạng thái",
"up": "Online", "up": "Online",
"down": "Offline" "down": "Ngoại tuyến"
}, },
"miniflux": { "miniflux": {
"read": "Read", "read": "Read",
@@ -438,14 +432,14 @@
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Load", "load": "Load",
"wait": "Please wait", "wait": "Vui lòng chờ",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temp", "_temp": "Temp",
"warn": "Warn", "warn": "Warn",
"uptime": "UP", "uptime": "UP",
"total": "Total", "total": "Tổng",
"free": "Free", "free": "",
"used": "Used", "used": "Đã dùng",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Crit", "crit": "Crit",
@@ -530,7 +524,7 @@
"child_bridges": "Child Bridges", "child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Up",
"pending": "Pending", "pending": "Đang xử lý",
"down": "Down" "down": "Down"
}, },
"healthchecks": { "healthchecks": {
@@ -539,7 +533,7 @@
"grace": "In Grace Period", "grace": "In Grace Period",
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"status": "Status", "status": "Trạng thái",
"last_ping": "Last Ping", "last_ping": "Last Ping",
"never": "No pings yet" "never": "No pings yet"
}, },
@@ -549,13 +543,13 @@
"containers_failed": "Failed" "containers_failed": "Failed"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "Đã duyệt",
"rejectedPushes": "Rejected", "rejectedPushes": "Rejected",
"filters": "Filters", "filters": "Filters",
"indexers": "Indexers" "indexers": "Indexers"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "Hàng chờ",
"videos": "Videos", "videos": "Videos",
"channels": "Channels", "channels": "Channels",
"playlists": "Playlists" "playlists": "Playlists"
@@ -567,9 +561,9 @@
}, },
"pyload": { "pyload": {
"speed": "Speed", "speed": "Speed",
"active": "Active", "active": "Hoạt động",
"queue": "Queue", "queue": "Hàng chờ",
"total": "Total" "total": "Tổng"
}, },
"gluetun": { "gluetun": {
"public_ip": "Public IP", "public_ip": "Public IP",
@@ -596,7 +590,7 @@
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Inbox", "inbox": "Inbox",
"total": "Total" "total": "Tổng"
}, },
"peanut": { "peanut": {
"battery_charge": "Battery Charge", "battery_charge": "Battery Charge",
@@ -640,14 +634,14 @@
"layers": "Layers" "layers": "Layers"
}, },
"octoprint": { "octoprint": {
"printer_state": "Status", "printer_state": "Trạng thái",
"temp_tool": "Tool temp", "temp_tool": "Tool temp",
"temp_bed": "Bed temp", "temp_bed": "Bed temp",
"job_completion": "Completion" "job_completion": "Completion"
}, },
"cloudflared": { "cloudflared": {
"origin_ip": "Origin IP", "origin_ip": "Origin IP",
"status": "Status" "status": "Trạng thái"
}, },
"pfsense": { "pfsense": {
"load": "Load Avg", "load": "Load Avg",
@@ -687,7 +681,7 @@
"komga": { "komga": {
"libraries": "Libraries", "libraries": "Libraries",
"series": "Series", "series": "Series",
"books": "Books" "books": "Sách"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "Days",
@@ -706,7 +700,7 @@
"people": "People" "people": "People"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "Hàng chờ",
"processing": "Processing", "processing": "Processing",
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
@@ -730,7 +724,7 @@
"numshares": "Shared Items" "numshares": "Shared Items"
}, },
"kopia": { "kopia": {
"status": "Status", "status": "Trạng thái",
"size": "Size", "size": "Size",
"lastrun": "Last Run", "lastrun": "Last Run",
"nextrun": "Next Run", "nextrun": "Next Run",
@@ -762,7 +756,7 @@
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasts", "podcasts": "Podcasts",
"books": "Books", "books": "Sách",
"podcastsDuration": "Duration", "podcastsDuration": "Duration",
"booksDuration": "Duration" "booksDuration": "Duration"
}, },
@@ -776,13 +770,13 @@
"updates": "Updates" "updates": "Updates"
}, },
"calibreweb": { "calibreweb": {
"books": "Books", "books": "Sách",
"authors": "Authors", "authors": "Authors",
"categories": "Categories", "categories": "Categories",
"series": "Series" "series": "Series"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "Queue", "downloadCount": "Hàng chờ",
"downloadBytesRemaining": "Remaining", "downloadBytesRemaining": "Remaining",
"downloadTotalBytes": "Size", "downloadTotalBytes": "Size",
"downloadSpeed": "Speed" "downloadSpeed": "Speed"
@@ -793,7 +787,7 @@
}, },
"azuredevops": { "azuredevops": {
"result": "Result", "result": "Result",
"status": "Status", "status": "Trạng thái",
"buildId": "Build ID", "buildId": "Build ID",
"succeeded": "Succeeded", "succeeded": "Succeeded",
"notStarted": "Not Started", "notStarted": "Not Started",
@@ -802,12 +796,12 @@
"inProgress": "In Progress", "inProgress": "In Progress",
"totalPrs": "Total PRs", "totalPrs": "Total PRs",
"myPrs": "My PRs", "myPrs": "My PRs",
"approved": "Approved" "approved": "Đã duyệt"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "Trạng thái",
"online": "Online", "online": "Online",
"offline": "Offline", "offline": "Ngoại tuyến",
"name": "Name", "name": "Name",
"map": "Map", "map": "Map",
"currentPlayers": "Current players", "currentPlayers": "Current players",
@@ -830,7 +824,7 @@
}, },
"openmediavault": { "openmediavault": {
"downloading": "Downloading", "downloading": "Downloading",
"total": "Total", "total": "Tổng",
"running": "Running", "running": "Running",
"stopped": "Stopped", "stopped": "Stopped",
"passed": "Passed", "passed": "Passed",
@@ -845,7 +839,7 @@
"bytesRx": "Received" "bytesRx": "Received"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "Trạng thái",
"uptime": "Uptime", "uptime": "Uptime",
"lastDown": "Last Downtime", "lastDown": "Last Downtime",
"downDuration": "Downtime Duration", "downDuration": "Downtime Duration",
@@ -933,7 +927,7 @@
"connected": "Connected", "connected": "Connected",
"enabled": "Enabled", "enabled": "Enabled",
"disabled": "Disabled", "disabled": "Disabled",
"total": "Total" "total": "Tổng"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
@@ -989,9 +983,9 @@
"name": "Name", "name": "Name",
"address": "Address", "address": "Address",
"last_seen": "Last Seen", "last_seen": "Last Seen",
"status": "Status", "status": "Trạng thái",
"online": "Online", "online": "Online",
"offline": "Offline" "offline": "Ngoại tuyến"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Name",
@@ -999,8 +993,8 @@
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "Paused",
"pending": "Pending", "pending": "Đang xử lý",
"status": "Status", "status": "Trạng thái",
"updated": "Updated", "updated": "Updated",
"cpu": "CPU", "cpu": "CPU",
"memory": "MEM", "memory": "MEM",
@@ -1027,10 +1021,10 @@
"projects": "Projects" "projects": "Projects"
}, },
"apcups": { "apcups": {
"status": "Status", "status": "Trạng thái",
"load": "Load", "load": "Load",
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Time Left" "timeleft": "Thời gian còn lại"
}, },
"karakeep": { "karakeep": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
@@ -1060,28 +1054,5 @@
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

File diff suppressed because it is too large Load Diff

View File

@@ -61,7 +61,7 @@
"wlan_devices": "无线局域网设备", "wlan_devices": "无线局域网设备",
"lan_users": "局域网用户", "lan_users": "局域网用户",
"wlan_users": "无线局域网用户", "wlan_users": "无线局域网用户",
"up": "UP", "up": "运行时间",
"down": "离线", "down": "离线",
"wait": "请稍候", "wait": "请稍候",
"empty_data": "子系统状态未知" "empty_data": "子系统状态未知"
@@ -84,17 +84,17 @@
}, },
"ping": { "ping": {
"error": "错误", "error": "错误",
"ping": "延迟", "ping": "Ping",
"down": "离线", "down": "Down",
"up": "在线", "up": "Up",
"not_available": "不可用" "not_available": "不可用"
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "HTTP 状态", "http_status": "HTTP 状态",
"error": "错误", "error": "错误",
"response": "响应", "response": "响应",
"down": "离线", "down": "Down",
"up": "在线", "up": "Up",
"not_available": "不可用" "not_available": "不可用"
}, },
"emby": { "emby": {
@@ -111,12 +111,12 @@
"offline": "离线", "offline": "离线",
"offline_alt": "离线", "offline_alt": "离线",
"online": "在线的", "online": "在线的",
"total": "Total", "total": "总计",
"unknown": "Unknown" "unknown": "未知"
}, },
"evcc": { "evcc": {
"pv_power": "正式环境", "pv_power": "正式环境",
"battery_soc": "电量", "battery_soc": "Battery",
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
@@ -133,7 +133,7 @@
"unread": "未读" "unread": "未读"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Status", "connectionStatus": "状态",
"connectionStatusUnconfigured": "未配置", "connectionStatusUnconfigured": "未配置",
"connectionStatusConnecting": "连接中", "connectionStatusConnecting": "连接中",
"connectionStatusAuthenticating": "认证中", "connectionStatusAuthenticating": "认证中",
@@ -141,9 +141,9 @@
"connectionStatusDisconnecting": "正在断开连接", "connectionStatusDisconnecting": "正在断开连接",
"connectionStatusDisconnected": "未连接", "connectionStatusDisconnected": "未连接",
"connectionStatusConnected": "已连接", "connectionStatusConnected": "已连接",
"uptime": "Uptime", "uptime": "运行时间",
"maxDown": "最大下载速度", "maxDown": "最大下载速度",
"maxUp": "最大上传速度", "maxUp": "",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
"received": "已接收", "received": "已接收",
@@ -168,10 +168,10 @@
"passes": "通行证" "passes": "通行证"
}, },
"tautulli": { "tautulli": {
"playing": "Playing", "playing": "播放中",
"transcoding": "Transcoding", "transcoding": "转码",
"bitrate": "Bitrate", "bitrate": "比特率",
"no_active": "No Active Streams", "no_active": "暂无播放",
"plex_connection_error": "Check Plex Connection" "plex_connection_error": "Check Plex Connection"
}, },
"omada": { "omada": {
@@ -193,23 +193,23 @@
"tv": "电视节目" "tv": "电视节目"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Rate", "rate": "速率",
"queue": "队列", "queue": "队列",
"timeleft": "剩余时间" "timeleft": "剩余时间"
}, },
"rutorrent": { "rutorrent": {
"active": "活动中", "active": "活动中",
"upload": "Upload", "upload": "上传速率",
"download": "Download" "download": "下载"
}, },
"transmission": { "transmission": {
"download": "Download", "download": "下载",
"upload": "", "upload": "上传速率",
"leech": "Leech", "leech": "下载中",
"seed": "Seed" "seed": "做种"
}, },
"qbittorrent": { "qbittorrent": {
"download": "下载速率", "download": "下载",
"upload": "上传速率", "upload": "上传速率",
"leech": "下载中", "leech": "下载中",
"seed": "做种" "seed": "做种"
@@ -223,19 +223,19 @@
"invalid": "Invalid" "invalid": "Invalid"
}, },
"deluge": { "deluge": {
"download": "Download", "download": "下载",
"upload": "Upload", "upload": "上传速率",
"leech": "Leech", "leech": "下载中",
"seed": "Seed" "seed": "做种"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "缓存命中字节", "cachehitbytes": "缓存命中字节",
"cachemissbytes": "缓存Bytes失败" "cachemissbytes": "缓存Bytes失败"
}, },
"downloadstation": { "downloadstation": {
"download": "Download", "download": "下载",
"upload": "Upload", "upload": "上传速率",
"leech": "Leech", "leech": "下载中",
"seed": "做种" "seed": "做种"
}, },
"sonarr": { "sonarr": {
@@ -248,19 +248,19 @@
"radarr": { "radarr": {
"wanted": "想看", "wanted": "想看",
"missing": "丢失", "missing": "丢失",
"queued": "队列中", "queued": "队",
"movies": "电影", "movies": "电影",
"queue": "队列", "queue": "队列",
"unknown": "未知" "unknown": "未知"
}, },
"lidarr": { "lidarr": {
"wanted": "想看", "wanted": "想看",
"queued": "队列中", "queued": "队",
"artists": "Artists" "artists": "Artists"
}, },
"readarr": { "readarr": {
"wanted": "想看", "wanted": "想看",
"queued": "队列中", "queued": "队",
"books": "书籍" "books": "书籍"
}, },
"bazarr": { "bazarr": {
@@ -274,18 +274,18 @@
}, },
"jellyseerr": { "jellyseerr": {
"pending": "待办的", "pending": "待办的",
"approved": "Approved", "approved": "已批准",
"available": "Available" "available": "可用"
}, },
"overseerr": { "overseerr": {
"pending": "Pending", "pending": "待办的",
"processing": "处理中", "processing": "处理中",
"approved": "Approved", "approved": "已批准",
"available": "Available" "available": "可用"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "总计",
"connected": "Connected", "connected": "已连接",
"new_devices": "新设备", "new_devices": "新设备",
"down_alerts": "离线警报" "down_alerts": "离线警报"
}, },
@@ -296,26 +296,26 @@
"gravity": "屏蔽列表" "gravity": "屏蔽列表"
}, },
"adguard": { "adguard": {
"queries": "Queries", "queries": "查询",
"blocked": "Blocked", "blocked": "阻止",
"filtered": "过滤", "filtered": "过滤",
"latency": "延迟" "latency": "延迟"
}, },
"speedtest": { "speedtest": {
"upload": "Upload", "upload": "上传速率",
"download": "Download", "download": "下载",
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Running", "running": "运行中",
"stopped": "停止", "stopped": "停止",
"total": "Total" "total": "总计"
}, },
"suwayomi": { "suwayomi": {
"download": "Downloaded", "download": "下载",
"nondownload": "未下载", "nondownload": "未下载",
"read": "Read", "read": "已读",
"unread": "Unread", "unread": "未读",
"downloadedread": "已下载 & 已读", "downloadedread": "已下载 & 已读",
"downloadedunread": "已下载 & 未读", "downloadedunread": "已下载 & 未读",
"nondownloadedread": "未下载 & 已读", "nondownloadedread": "未下载 & 已读",
@@ -336,7 +336,7 @@
"ago": "{{value}} 以前" "ago": "{{value}} 以前"
}, },
"technitium": { "technitium": {
"totalQueries": "Queries", "totalQueries": "查询",
"totalNoError": "成功", "totalNoError": "成功",
"totalServerFailure": "失败", "totalServerFailure": "失败",
"totalNxDomain": "域", "totalNxDomain": "域",
@@ -344,12 +344,12 @@
"totalAuthoritative": "权威", "totalAuthoritative": "权威",
"totalRecursive": "递归", "totalRecursive": "递归",
"totalCached": "缓存", "totalCached": "缓存",
"totalBlocked": "Blocked", "totalBlocked": "阻止",
"totalDropped": "丢弃", "totalDropped": "丢弃",
"totalClients": "客户端" "totalClients": "客户端"
}, },
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "队列",
"processed": "已处理", "processed": "已处理",
"errored": "出错", "errored": "出错",
"saved": "已保存" "saved": "已保存"
@@ -359,20 +359,14 @@
"services": "服务", "services": "服务",
"middleware": "中间件" "middleware": "中间件"
}, },
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": { "navidrome": {
"nothing_streaming": "No Active Streams", "nothing_streaming": "暂无播放",
"please_wait": "请等待" "please_wait": "请等待"
}, },
"npm": { "npm": {
"enabled": "已启用", "enabled": "已启用",
"disabled": "禁用", "disabled": "禁用",
"total": "Total" "total": "总计"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "配置一个或多个需要追踪的加密", "configure": "配置一个或多个需要追踪的加密",
@@ -383,54 +377,54 @@
}, },
"gotify": { "gotify": {
"apps": "应用", "apps": "应用",
"clients": "Clients", "clients": "客户端",
"messages": "信息" "messages": "信息"
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "索引器", "enableIndexers": "索引器",
"numberOfGrabs": "抓取", "numberOfGrabs": "抓取",
"numberOfQueries": "Queries", "numberOfQueries": "查询",
"numberOfFailGrabs": "抓取失败", "numberOfFailGrabs": "抓取失败",
"numberOfFailQueries": "查询失败" "numberOfFailQueries": "查询失败"
}, },
"jackett": { "jackett": {
"configured": "已配置", "configured": "已配置",
"errored": "Errored" "errored": "出错"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "会话", "numActiveSessions": "会话",
"numConnections": "连接", "numConnections": "连接",
"dataRelayed": "中继", "dataRelayed": "中继",
"transferRate": "Rate" "transferRate": "速率"
}, },
"mastodon": { "mastodon": {
"user_count": "Users", "user_count": "用户",
"status_count": "帖子", "status_count": "帖子",
"domain_count": "域" "domain_count": "域"
}, },
"medusa": { "medusa": {
"wanted": "Wanted", "wanted": "想看",
"queued": "Queued", "queued": "排队",
"series": "Series" "series": "系列"
}, },
"minecraft": { "minecraft": {
"players": "玩家", "players": "玩家",
"version": "版本", "version": "版本",
"status": "Status", "status": "状态",
"up": "Online", "up": "在线的",
"down": "Offline" "down": "离线"
}, },
"miniflux": { "miniflux": {
"read": "已读", "read": "已读",
"unread": "Unread" "unread": "未读"
}, },
"authentik": { "authentik": {
"users": "Users", "users": "用户",
"loginsLast24H": "登录 (24h)", "loginsLast24H": "登录 (24h)",
"failedLoginsLast24H": "登录失败 (24h)" "failedLoginsLast24H": "登录失败 (24h)"
}, },
"proxmox": { "proxmox": {
"mem": "MEM", "mem": "内存",
"cpu": "CPU", "cpu": "CPU",
"lxc": "容器", "lxc": "容器",
"vms": "虚拟机" "vms": "虚拟机"
@@ -449,8 +443,8 @@
"days": "日", "days": "日",
"hours": "时", "hours": "时",
"crit": "Crit", "crit": "Crit",
"read": "Read", "read": "已读",
"write": "写入", "write": "Write",
"gpu": "GPU", "gpu": "GPU",
"mem": "Mem", "mem": "Mem",
"swap": "Swap" "swap": "Swap"
@@ -470,57 +464,57 @@
"1-day": "主要是晴天", "1-day": "主要是晴天",
"1-night": "大部晴朗", "1-night": "大部晴朗",
"2-day": "多云", "2-day": "多云",
"2-night": "Partly Cloudy", "2-night": "多云",
"3-day": "阴天", "3-day": "阴天",
"3-night": "Cloudy", "3-night": "阴天",
"45-day": "有雾", "45-day": "有雾",
"45-night": "Foggy", "45-night": "有雾",
"48-day": "Foggy", "48-day": "有雾",
"48-night": "Foggy", "48-night": "有雾",
"51-day": "小雨", "51-day": "小雨",
"51-night": "Light Drizzle", "51-night": "小雨",
"53-day": "小雨", "53-day": "小雨",
"53-night": "Drizzle", "53-night": "小雨",
"55-day": "毛毛雨", "55-day": "毛毛雨",
"55-night": "Heavy Drizzle", "55-night": "毛毛雨",
"56-day": "小冻毛雨", "56-day": "小冻毛雨",
"56-night": "Light Freezing Drizzle", "56-night": "小冻毛雨",
"57-day": "冻毛雨", "57-day": "冻毛雨",
"57-night": "Freezing Drizzle", "57-night": "冻毛雨",
"61-day": "小雨", "61-day": "小雨",
"61-night": "Light Rain", "61-night": "小雨",
"63-day": "雨", "63-day": "雨",
"63-night": "Rain", "63-night": "",
"65-day": "大雨", "65-day": "大雨",
"65-night": "Heavy Rain", "65-night": "大雨",
"66-day": "冻雨", "66-day": "冻雨",
"66-night": "Freezing Rain", "66-night": "冻雨",
"67-day": "Freezing Rain", "67-day": "冻雨",
"67-night": "Freezing Rain", "67-night": "冻雨",
"71-day": "小雪", "71-day": "小雪",
"71-night": "Light Snow", "71-night": "小雪",
"73-day": "中雪", "73-day": "中雪",
"73-night": "Snow", "73-night": "中雪",
"75-day": "大雪", "75-day": "大雪",
"75-night": "Heavy Snow", "75-night": "大雪",
"77-day": "雪粒", "77-day": "雪粒",
"77-night": "Snow Grains", "77-night": "雪粒",
"80-day": "微阵雨", "80-day": "微阵雨",
"80-night": "Light Showers", "80-night": "微阵雨",
"81-day": "阵雨", "81-day": "阵雨",
"81-night": "Showers", "81-night": "阵雨",
"82-day": "强阵雨", "82-day": "强阵雨",
"82-night": "Heavy Showers", "82-night": "强阵雨",
"85-day": "阵雪", "85-day": "阵雪",
"85-night": "Snow Showers", "85-night": "阵雪",
"86-day": "Snow Showers", "86-day": "阵雪",
"86-night": "Snow Showers", "86-night": "阵雪",
"95-day": "雷雨", "95-day": "雷雨",
"95-night": "Thunderstorm", "95-night": "雷雨",
"96-day": "雷雨伴随冰雹", "96-day": "雷雨伴随冰雹",
"96-night": "Thunderstorm With Hail", "96-night": "雷雨伴随冰雹",
"99-day": "Thunderstorm With Hail", "99-day": "雷雨伴随冰雹",
"99-night": "Thunderstorm With Hail" "99-night": "雷雨伴随冰雹"
}, },
"homebridge": { "homebridge": {
"available_update": "System", "available_update": "System",
@@ -530,7 +524,7 @@
"child_bridges": "子网桥", "child_bridges": "子网桥",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Up",
"pending": "Pending", "pending": "待办的",
"down": "Down" "down": "Down"
}, },
"healthchecks": { "healthchecks": {
@@ -539,7 +533,7 @@
"grace": "延缓中", "grace": "延缓中",
"down": "Down", "down": "Down",
"paused": "暂停", "paused": "暂停",
"status": "Status", "status": "状态",
"last_ping": "上次检查", "last_ping": "上次检查",
"never": "尚未检查" "never": "尚未检查"
}, },
@@ -549,27 +543,27 @@
"containers_failed": "失败" "containers_failed": "失败"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approved", "approvedPushes": "已批准",
"rejectedPushes": "拒绝", "rejectedPushes": "拒绝",
"filters": "Filters", "filters": "Filters",
"indexers": "Indexers" "indexers": "索引器"
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "Queue", "downloads": "队列",
"videos": "影片", "videos": "影片",
"channels": "频道", "channels": "频道",
"playlists": "播放清单" "playlists": "播放清单"
}, },
"truenas": { "truenas": {
"load": "系统负载", "load": "系统负载",
"uptime": "Uptime", "uptime": "运行时间",
"alerts": "Alerts" "alerts": "警报"
}, },
"pyload": { "pyload": {
"speed": "速度", "speed": "速度",
"active": "Active", "active": "活动中",
"queue": "Queue", "queue": "队列",
"total": "Total" "total": "总计"
}, },
"gluetun": { "gluetun": {
"public_ip": "公网 IP", "public_ip": "公网 IP",
@@ -578,47 +572,47 @@
"port_forwarded": "Port Forwarded" "port_forwarded": "Port Forwarded"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Channels", "channels": "频道",
"hd": "HD", "hd": "HD",
"tunerCount": "电台数", "tunerCount": "电台数",
"channelNumber": "频道数", "channelNumber": "频道数",
"channelNetwork": "网络", "channelNetwork": "网络",
"signalStrength": "强度", "signalStrength": "强度",
"signalQuality": "质量", "signalQuality": "质量",
"symbolQuality": "Quality", "symbolQuality": "质量",
"networkRate": "Bitrate", "networkRate": "比特率",
"clientIP": "客户端" "clientIP": "客户端"
}, },
"scrutiny": { "scrutiny": {
"passed": "通过", "passed": "通过",
"failed": "Failed", "failed": "失败",
"unknown": "Unknown" "unknown": "未知"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "收件箱", "inbox": "收件箱",
"total": "Total" "total": "总计"
}, },
"peanut": { "peanut": {
"battery_charge": "充电中", "battery_charge": "充电中",
"ups_load": "UPS 负载", "ups_load": "UPS 负载",
"ups_status": "UPS 状态", "ups_status": "UPS 状态",
"online": "Online", "online": "在线的",
"on_battery": "电池供电", "on_battery": "电池供电",
"low_battery": "电量低" "low_battery": "电量低"
}, },
"nextdns": { "nextdns": {
"wait": "Please Wait", "wait": "请等待",
"no_devices": "没有接收到设备数据" "no_devices": "没有接收到设备数据"
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "处理器", "cpuLoad": "处理器",
"memoryUsed": "内存", "memoryUsed": "内存",
"uptime": "Uptime", "uptime": "运行时间",
"numberOfLeases": "租约" "numberOfLeases": "租约"
}, },
"xteve": { "xteve": {
"streams_all": "所有播放活动", "streams_all": "所有播放活动",
"streams_active": "Active Streams", "streams_active": "活动流",
"streams_xepg": "XEPG 频道" "streams_xepg": "XEPG 频道"
}, },
"opendtu": { "opendtu": {
@@ -628,7 +622,7 @@
"limit": "Limit" "limit": "Limit"
}, },
"opnsense": { "opnsense": {
"cpu": "CPU Load", "cpu": "处理器",
"memory": "内存", "memory": "内存",
"wanUpload": "WAN上传", "wanUpload": "WAN上传",
"wanDownload": "WAN下载" "wanDownload": "WAN下载"
@@ -640,14 +634,14 @@
"layers": "层" "layers": "层"
}, },
"octoprint": { "octoprint": {
"printer_state": "Status", "printer_state": "状态",
"temp_tool": "喷头温度", "temp_tool": "喷头温度",
"temp_bed": "平台温度", "temp_bed": "平台温度",
"job_completion": "完成度" "job_completion": "完成度"
}, },
"cloudflared": { "cloudflared": {
"origin_ip": "源IP", "origin_ip": "源IP",
"status": "Status" "status": "状态"
}, },
"pfsense": { "pfsense": {
"load": "平均负载", "load": "平均负载",
@@ -666,53 +660,53 @@
"memory_usage": "内存" "memory_usage": "内存"
}, },
"immich": { "immich": {
"users": "Users", "users": "用户",
"photos": "照片", "photos": "照片",
"videos": "Videos", "videos": "影片",
"storage": "储存空间" "storage": "储存空间"
}, },
"uptimekuma": { "uptimekuma": {
"up": "在线网站", "up": "在线网站",
"down": "离线网站", "down": "离线网站",
"uptime": "Uptime", "uptime": "运行时间",
"incident": "严重事件", "incident": "严重事件",
"m": "m" "m": ""
}, },
"atsumeru": { "atsumeru": {
"series": "Series", "series": "系列",
"archives": "Archives", "archives": "Archives",
"chapters": "Chapters", "chapters": "Chapters",
"categories": "Categories" "categories": "Categories"
}, },
"komga": { "komga": {
"libraries": "书库", "libraries": "书库",
"series": "Series", "series": "系列",
"books": "Books" "books": "书籍"
}, },
"diskstation": { "diskstation": {
"days": "Days", "days": "",
"uptime": "Uptime", "uptime": "运行时间",
"volumeAvailable": "Available" "volumeAvailable": "可用"
}, },
"mylar": { "mylar": {
"series": "Series", "series": "系列",
"issues": "问题", "issues": "问题",
"wanted": "Wanted" "wanted": "想看"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "专辑",
"photos": "Photos", "photos": "照片",
"videos": "Videos", "videos": "影片",
"people": "人物" "people": "人物"
}, },
"fileflows": { "fileflows": {
"queue": "Queue", "queue": "队列",
"processing": "Processing", "processing": "处理中",
"processed": "Processed", "processed": "已处理",
"time": "时间" "time": "时间"
}, },
"firefly": { "firefly": {
"networth": "净值", "networth": "Net Worth",
"budget": "Budget" "budget": "Budget"
}, },
"grafana": { "grafana": {
@@ -730,11 +724,11 @@
"numshares": "共享项目" "numshares": "共享项目"
}, },
"kopia": { "kopia": {
"status": "Status", "status": "状态",
"size": "大小", "size": "大小",
"lastrun": "最后运行", "lastrun": "最后运行",
"nextrun": "下次运行", "nextrun": "下次运行",
"failed": "Failed" "failed": "失败"
}, },
"unmanic": { "unmanic": {
"active_workers": "在线工作节点", "active_workers": "在线工作节点",
@@ -751,9 +745,9 @@
"targets_total": "总目标" "targets_total": "总目标"
}, },
"gatus": { "gatus": {
"up": "Sites Up", "up": "在线网站",
"down": "Sites Down", "down": "离线网站",
"uptime": "Uptime" "uptime": "运行时间"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Today", "gross_percent_today": "Today",
@@ -762,9 +756,9 @@
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "播客", "podcasts": "播客",
"books": "Books", "books": "书籍",
"podcastsDuration": "持续时间", "podcastsDuration": "持续时间",
"booksDuration": "Duration" "booksDuration": "持续时间"
}, },
"homeassistant": { "homeassistant": {
"people_home": "在家人数", "people_home": "在家人数",
@@ -773,12 +767,12 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "监测中", "monitoring": "监测中",
"updates": "Updates" "updates": "更新"
}, },
"calibreweb": { "calibreweb": {
"books": "书籍", "books": "书籍",
"authors": "作者", "authors": "作者",
"categories": "分类", "categories": "Categories",
"series": "系列" "series": "系列"
}, },
"jdownloader": { "jdownloader": {
@@ -789,11 +783,11 @@
}, },
"kavita": { "kavita": {
"seriesCount": "系列", "seriesCount": "系列",
"totalFiles": "Files" "totalFiles": "文件"
}, },
"azuredevops": { "azuredevops": {
"result": "Result", "result": "Result",
"status": "Status", "status": "状态",
"buildId": "Build ID", "buildId": "Build ID",
"succeeded": "Succeeded", "succeeded": "Succeeded",
"notStarted": "Not Started", "notStarted": "Not Started",
@@ -802,16 +796,16 @@
"inProgress": "In Progress", "inProgress": "In Progress",
"totalPrs": "Total PRs", "totalPrs": "Total PRs",
"myPrs": "My PRs", "myPrs": "My PRs",
"approved": "Approved" "approved": "已批准"
}, },
"gamedig": { "gamedig": {
"status": "Status", "status": "状态",
"online": "Online", "online": "在线的",
"offline": "Offline", "offline": "离线",
"name": "Name", "name": "Name",
"map": "Map", "map": "Map",
"currentPlayers": "Current players", "currentPlayers": "Current players",
"players": "Players", "players": "玩家",
"maxPlayers": "Max players", "maxPlayers": "Max players",
"bots": "Bots", "bots": "Bots",
"ping": "Ping" "ping": "Ping"
@@ -824,39 +818,39 @@
}, },
"mealie": { "mealie": {
"recipes": "Recipes", "recipes": "Recipes",
"users": "Users", "users": "用户",
"categories": "Categories", "categories": "Categories",
"tags": "Tags" "tags": "Tags"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Downloading", "downloading": "Downloading",
"total": "Total", "total": "总计",
"running": "Running", "running": "运行中",
"stopped": "Stopped", "stopped": "停止",
"passed": "Passed", "passed": "通过",
"failed": "Failed" "failed": "失败"
}, },
"openwrt": { "openwrt": {
"uptime": "Uptime", "uptime": "运行时间",
"cpuLoad": "CPU 负载平均值(5m)", "cpuLoad": "CPU 负载平均值(5m)",
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"bytesTx": "已传输", "bytesTx": "已传输",
"bytesRx": "Received" "bytesRx": "已接收"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Status", "status": "状态",
"uptime": "Uptime", "uptime": "运行时间",
"lastDown": "Last Downtime", "lastDown": "Last Downtime",
"downDuration": "Downtime Duration", "downDuration": "Downtime Duration",
"sitesUp": "Sites Up", "sitesUp": "在线网站",
"sitesDown": "Sites Down", "sitesDown": "离线网站",
"paused": "Paused", "paused": "暂停",
"notyetchecked": "Not Yet Checked", "notyetchecked": "Not Yet Checked",
"up": "Up", "up": "Up",
"seemsdown": "Seems Down", "seemsdown": "Seems Down",
"down": "Down", "down": "Down",
"unknown": "Unknown" "unknown": "未知"
}, },
"calendar": { "calendar": {
"inCinemas": "In cinemas", "inCinemas": "In cinemas",
@@ -875,10 +869,10 @@
"totalfilesize": "总大小" "totalfilesize": "总大小"
}, },
"mailcow": { "mailcow": {
"domains": "Domains", "domains": "",
"mailboxes": "邮箱", "mailboxes": "邮箱",
"mails": "邮件", "mails": "邮件",
"storage": "Storage" "storage": "储存空间"
}, },
"netdata": { "netdata": {
"warnings": "警告", "warnings": "警告",
@@ -887,12 +881,12 @@
"plantit": { "plantit": {
"events": "事件", "events": "事件",
"plants": "植物", "plants": "植物",
"photos": "Photos", "photos": "照片",
"species": "物种" "species": "物种"
}, },
"gitea": { "gitea": {
"notifications": "通知", "notifications": "通知",
"issues": "题", "issues": "题",
"pulls": "PR", "pulls": "PR",
"repositories": "代码仓库" "repositories": "代码仓库"
}, },
@@ -908,12 +902,12 @@
"galleries": "图库", "galleries": "图库",
"performers": "演员", "performers": "演员",
"studios": "工作室", "studios": "工作室",
"movies": "Movies", "movies": "电影",
"tags": "Tags", "tags": "Tags",
"oCount": "O 个" "oCount": "O 个"
}, },
"tandoor": { "tandoor": {
"users": "Users", "users": "用户",
"recipes": "Recipes", "recipes": "Recipes",
"keywords": "关键词" "keywords": "关键词"
}, },
@@ -922,18 +916,18 @@
"totalWithWarranty": "有保证", "totalWithWarranty": "有保证",
"locations": "位置", "locations": "位置",
"labels": "标签", "labels": "标签",
"users": "Users", "users": "用户",
"totalValue": "总计" "totalValue": "总计"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alerts", "alerts": "警报",
"bans": "禁用" "bans": "禁用"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "已连接",
"enabled": "Enabled", "enabled": "已启用",
"disabled": "禁用", "disabled": "禁用",
"total": "Total" "total": "总计"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "已代理", "proxied": "已代理",
@@ -943,8 +937,8 @@
}, },
"myspeed": { "myspeed": {
"ping": "Ping", "ping": "Ping",
"download": "Download", "download": "下载",
"upload": "Upload" "upload": "上传速率"
}, },
"stocks": { "stocks": {
"stocks": "库存", "stocks": "库存",
@@ -955,8 +949,8 @@
}, },
"frigate": { "frigate": {
"cameras": "摄像头", "cameras": "摄像头",
"uptime": "Uptime", "uptime": "运行时间",
"version": "Version" "version": "版本"
}, },
"linkwarden": { "linkwarden": {
"links": "链接", "links": "链接",
@@ -965,7 +959,7 @@
}, },
"zabbix": { "zabbix": {
"unclassified": "未分类", "unclassified": "未分类",
"information": "Information", "information": "信息",
"warning": "警告", "warning": "警告",
"average": "平均红包", "average": "平均红包",
"high": "高", "high": "高",
@@ -987,23 +981,23 @@
}, },
"headscale": { "headscale": {
"name": "Name", "name": "Name",
"address": "Address", "address": "地址",
"last_seen": "Last Seen", "last_seen": "最后上线",
"status": "Status", "status": "状态",
"online": "Online", "online": "在线的",
"offline": "Offline" "offline": "离线"
}, },
"beszel": { "beszel": {
"name": "Name", "name": "Name",
"systems": "系统", "systems": "系统",
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"paused": "Paused", "paused": "暂停",
"pending": "Pending", "pending": "待办的",
"status": "Status", "status": "状态",
"updated": "Updated", "updated": "已升级",
"cpu": "CPU", "cpu": "CPU",
"memory": "MEM", "memory": "内存",
"disk": "磁盘", "disk": "磁盘",
"network": "网络" "network": "网络"
}, },
@@ -1011,77 +1005,54 @@
"apps": "应用程序", "apps": "应用程序",
"synced": "已同步", "synced": "已同步",
"outOfSync": "未同步", "outOfSync": "未同步",
"healthy": "Healthy", "healthy": "健康",
"degraded": "已降级", "degraded": "已降级",
"progressing": "进行中", "progressing": "进行中",
"missing": "Missing", "missing": "丢失",
"suspended": "已停用" "suspended": "已停用"
}, },
"spoolman": { "spoolman": {
"loading": "Loading" "loading": "正在加载"
}, },
"gitlab": { "gitlab": {
"groups": "群组", "groups": "群组",
"issues": "题", "issues": "题",
"merges": "合并请求", "merges": "合并请求",
"projects": "项目" "projects": "项目"
}, },
"apcups": { "apcups": {
"status": "Status", "status": "状态",
"load": "Load", "load": "负载",
"bcharge": "Battery Charge", "bcharge": "充电中",
"timeleft": "Time Left" "timeleft": "剩余时间"
}, },
"karakeep": { "karakeep": {
"bookmarks": "书签", "bookmarks": "Bookmarks",
"favorites": "我的最爱", "favorites": "Favorites",
"archived": "已归档", "archived": "Archived",
"highlights": "标记", "highlights": "Highlights",
"lists": "列表", "lists": "Lists",
"tags": "Tags" "tags": "Tags"
}, },
"slskd": { "slskd": {
"slskStatus": "Network", "slskStatus": "网络",
"connected": "Connected", "connected": "已连接",
"disconnected": "Disconnected", "disconnected": "未连接",
"updateStatus": "更新", "updateStatus": "Update",
"update_yes": "Available", "update_yes": "可用",
"update_no": "Up to Date", "update_no": "Up to Date",
"downloads": "下载", "downloads": "Downloads",
"uploads": "上传", "uploads": "Uploads",
"sharedFiles": "Files" "sharedFiles": "文件"
}, },
"jellystat": { "jellystat": {
"songs": "Songs", "songs": "歌曲",
"movies": "Movies", "movies": "电影",
"episodes": "Episodes", "episodes": "剧集",
"other": "其他" "other": "Other"
}, },
"checkmk": { "checkmk": {
"serviceErrors": "Service issues", "serviceErrors": "Service issues",
"hostErrors": "Host issues" "hostErrors": "Host issues"
},
"komodo": {
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"down": "Down",
"unhealthy": "Unhealthy",
"unknown": "Unknown",
"servers": "Servers",
"stacks": "Stacks",
"containers": "Containers"
},
"filebrowser": {
"available": "Available",
"used": "Used",
"total": "Total"
},
"wallos": {
"activeSubscriptions": "Subscriptions",
"thisMonthlyCost": "This Month",
"nextMonthlyCost": "Next Month",
"previousMonthlyCost": "Prev. Month",
"nextRenewingSubscription": "Next Payment"
} }
} }

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,5 @@
import { useTranslation } from "next-i18next"; import { useTranslation } from "next-i18next";
import { useCallback, useEffect, useState } from "react"; import { useState } from "react";
import { MdLocationDisabled, MdLocationSearching } from "react-icons/md"; import { MdLocationDisabled, MdLocationSearching } from "react-icons/md";
import { WiCloudDown } from "react-icons/wi"; import { WiCloudDown } from "react-icons/wi";
import useSWR from "swr"; import useSWR from "swr";
@@ -64,7 +64,7 @@ export default function OpenMeteo({ options }) {
setLocation({ latitude: options.latitude, longitude: options.longitude }); setLocation({ latitude: options.latitude, longitude: options.longitude });
} }
const requestLocation = useCallback(() => { const requestLocation = () => {
setRequesting(true); setRequesting(true);
if (typeof window !== "undefined") { if (typeof window !== "undefined") {
navigator.geolocation.getCurrentPosition( navigator.geolocation.getCurrentPosition(
@@ -82,17 +82,7 @@ export default function OpenMeteo({ options }) {
}, },
); );
} }
}, []); };
useEffect(() => {
if (!options.latitude && !options.longitude && typeof navigator !== "undefined") {
navigator.permissions?.query({ name: "geolocation" }).then((result) => {
if (result.state === "granted") {
requestLocation();
}
});
}
}, [options.latitude, options.longitude, requestLocation]);
if (!location) { if (!location) {
return ( return (

View File

@@ -1,5 +1,5 @@
import { useTranslation } from "next-i18next"; import { useTranslation } from "next-i18next";
import { useCallback, useEffect, useState } from "react"; import { useState } from "react";
import { MdLocationDisabled, MdLocationSearching } from "react-icons/md"; import { MdLocationDisabled, MdLocationSearching } from "react-icons/md";
import { WiCloudDown } from "react-icons/wi"; import { WiCloudDown } from "react-icons/wi";
import useSWR from "swr"; import useSWR from "swr";
@@ -59,7 +59,7 @@ export default function OpenWeatherMap({ options }) {
setLocation({ latitude: options.latitude, longitude: options.longitude }); setLocation({ latitude: options.latitude, longitude: options.longitude });
} }
const requestLocation = useCallback(() => { const requestLocation = () => {
setRequesting(true); setRequesting(true);
if (typeof window !== "undefined") { if (typeof window !== "undefined") {
navigator.geolocation.getCurrentPosition( navigator.geolocation.getCurrentPosition(
@@ -77,17 +77,7 @@ export default function OpenWeatherMap({ options }) {
}, },
); );
} }
}, []); };
useEffect(() => {
if (!options.latitude && !options.longitude && typeof navigator !== "undefined") {
navigator.permissions?.query({ name: "geolocation" }).then((result) => {
if (result.state === "granted") {
requestLocation();
}
});
}
}, [options.latitude, options.longitude, requestLocation]);
if (!location) { if (!location) {
return ( return (

View File

@@ -1,5 +1,5 @@
import { useTranslation } from "next-i18next"; import { useTranslation } from "next-i18next";
import { useCallback, useEffect, useState } from "react"; import { useState } from "react";
import { MdLocationDisabled, MdLocationSearching } from "react-icons/md"; import { MdLocationDisabled, MdLocationSearching } from "react-icons/md";
import { WiCloudDown } from "react-icons/wi"; import { WiCloudDown } from "react-icons/wi";
import useSWR from "swr"; import useSWR from "swr";
@@ -63,7 +63,7 @@ export default function WeatherApi({ options }) {
setLocation({ latitude: options.latitude, longitude: options.longitude }); setLocation({ latitude: options.latitude, longitude: options.longitude });
} }
const requestLocation = useCallback(() => { const requestLocation = () => {
setRequesting(true); setRequesting(true);
if (typeof window !== "undefined") { if (typeof window !== "undefined") {
navigator.geolocation.getCurrentPosition( navigator.geolocation.getCurrentPosition(
@@ -81,17 +81,7 @@ export default function WeatherApi({ options }) {
}, },
); );
} }
}, []); };
useEffect(() => {
if (!options.latitude && !options.longitude && typeof navigator !== "undefined") {
navigator.permissions?.query({ name: "geolocation" }).then((result) => {
if (result.state === "granted") {
requestLocation();
}
});
}
}, [options.latitude, options.longitude, requestLocation]);
if (!location) { if (!location) {
return ( return (

View File

@@ -1,3 +1,5 @@
import { existsSync } from "fs";
import createLogger from "utils/logger"; import createLogger from "utils/logger";
const logger = createLogger("resources"); const logger = createLogger("resources");
@@ -18,20 +20,17 @@ export default async function handler(req, res) {
} }
if (type === "disk") { if (type === "disk") {
const requested = typeof target === "string" && target ? target : "/"; if (!existsSync(target)) {
const fsSize = await si.fsSize(); return res.status(404).json({
logger.debug("fsSize:", JSON.stringify(fsSize)); error: "Target not found",
const drive = fsSize.find((fs) => {
return fs.mount === requested;
}); });
if (!drive) {
logger.warn(`Drive not found for target: ${requested}`);
return res.status(404).json({ error: "Resource not available." });
} }
return res.status(200).json({ drive }); const fsSize = await si.fsSize();
logger.debug("fsSize:", JSON.stringify(fsSize));
return res.status(200).json({
drive: fsSize.find((fs) => fs.mount === target) ?? fsSize.find((fs) => fs.mount === "/"),
});
} }
if (type === "memory") { if (type === "memory") {

View File

@@ -498,63 +498,54 @@ function Home({ initialSettings }) {
} }
export default function Wrapper({ initialSettings, fallback }) { export default function Wrapper({ initialSettings, fallback }) {
const { theme } = useContext(ThemeContext); const { themeContext } = useContext(ThemeContext);
let backgroundImage = ""; const wrappedStyle = {};
let opacity = initialSettings?.backgroundOpacity ?? 0;
let backgroundBlur = false; let backgroundBlur = false;
let backgroundSaturate = false; let backgroundSaturate = false;
let backgroundBrightness = false; let backgroundBrightness = false;
if (initialSettings?.background) { if (initialSettings && initialSettings.background) {
const bg = initialSettings.background; let opacity = initialSettings.backgroundOpacity ?? 1;
if (typeof bg === "object") { let backgroundImage = initialSettings.background;
backgroundImage = bg.image || ""; if (typeof initialSettings.background === "object") {
if (bg.opacity !== undefined) { backgroundImage = initialSettings.background.image;
opacity = 1 - bg.opacity / 100; backgroundBlur = initialSettings.background.blur !== undefined;
backgroundSaturate = initialSettings.background.saturate !== undefined;
backgroundBrightness = initialSettings.background.brightness !== undefined;
if (initialSettings.background.opacity !== undefined) opacity = initialSettings.background.opacity / 100;
} }
backgroundBlur = bg.blur !== undefined; const opacityValue = 1 - opacity;
backgroundSaturate = bg.saturate !== undefined; wrappedStyle.backgroundImage = `
backgroundBrightness = bg.brightness !== undefined; linear-gradient(
} else { rgb(var(--bg-color) / ${opacityValue}),
backgroundImage = bg; rgb(var(--bg-color) / ${opacityValue})
),
url('${backgroundImage}')`;
wrappedStyle.backgroundPosition = "center";
wrappedStyle.backgroundSize = "cover";
} }
}
useEffect(() => {
const html = document.documentElement;
const body = document.body;
html.classList.remove("dark", "scheme-dark", "scheme-light");
html.classList.toggle("dark", theme === "dark");
html.classList.add(theme === "dark" ? "scheme-dark" : "scheme-light");
html.classList.remove(...Array.from(html.classList).filter((cls) => cls.startsWith("theme-")));
html.classList.add(`theme-${initialSettings.color || "slate"}`);
// Remove any previously applied inline styles
body.style.backgroundImage = "";
body.style.backgroundColor = "";
body.style.backgroundAttachment = "";
}, [backgroundImage, opacity, theme, initialSettings.color]);
return ( return (
<>
{backgroundImage && (
<div <div
id="background" id="page_wrapper"
aria-hidden="true" className={classNames(
style={{ "relative",
backgroundImage: `linear-gradient(rgb(var(--bg-color) / ${opacity}), rgb(var(--bg-color) / ${opacity})), url('${backgroundImage}')`, initialSettings.theme && initialSettings.theme,
}} initialSettings.color && `theme-${initialSettings.color}`,
/> themeContext === "dark" ? "scheme-dark" : "scheme-light",
)} )}
<div id="page_wrapper" className="relative h-full"> >
<div
id="page_container"
className="fixed overflow-auto w-full h-full bg-theme-50 dark:bg-theme-800 transition-all"
style={wrappedStyle}
>
<div <div
id="inner_wrapper" id="inner_wrapper"
tabIndex="-1" tabIndex="-1"
className={classNames( className={classNames(
"w-full h-full overflow-auto", "fixed overflow-auto w-full h-full",
backgroundBlur && backgroundBlur &&
`backdrop-blur${initialSettings.background.blur?.length ? `-${initialSettings.background.blur}` : ""}`, `backdrop-blur${initialSettings.background.blur.length ? "-" : ""}${initialSettings.background.blur}`,
backgroundSaturate && `backdrop-saturate-${initialSettings.background.saturate}`, backgroundSaturate && `backdrop-saturate-${initialSettings.background.saturate}`,
backgroundBrightness && `backdrop-brightness-${initialSettings.background.brightness}`, backgroundBrightness && `backdrop-brightness-${initialSettings.background.brightness}`,
)} )}
@@ -562,6 +553,6 @@ export default function Wrapper({ initialSettings, fallback }) {
<Index initialSettings={initialSettings} fallback={fallback} /> <Index initialSettings={initialSettings} fallback={fallback} />
</div> </div>
</div> </div>
</> </div>
); );
} }

View File

@@ -24,39 +24,26 @@
} }
} }
html,
body,
#__next { #__next {
width: 100%;
height: 100%; height: 100%;
margin: 0; margin: 0;
padding: 0; padding: 0;
background-color: rgb(var(--bg-color));
}
#background {
position: fixed;
inset: 0;
z-index: 0;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: scroll;
pointer-events: none;
} }
html, html,
body { body {
font-family: Manrope, "Manrope-Fallback", Arial, sans-serif; font-family: Manrope, "Manrope-Fallback", Arial, sans-serif;
height: 100%; overflow: hidden;
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
letter-spacing: 0.1px; letter-spacing: 0.1px;
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
} }
#page_wrapper { #page_wrapper {
width: 100%; width: 100vw;
height: 100vh;
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
@@ -73,6 +60,15 @@ body {
--scrollbar-track: rgb(var(--color-700)); --scrollbar-track: rgb(var(--color-700));
} }
#page_container {
overflow: auto;
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
::-webkit-scrollbar {
width: 0.75em;
}
dialog ::-webkit-scrollbar { dialog ::-webkit-scrollbar {
display: none; display: none;
} }

View File

@@ -308,7 +308,7 @@ export function cleanServiceGroups(groups) {
// gamedig // gamedig
gameToken, gameToken,
// authentik, beszel, glances, immich, komga, mealie, pihole, pfsense, speedtest // beszel, glances, immich, komga, mealie, pihole, pfsense, speedtest
version, version,
// glances // glances
@@ -518,7 +518,6 @@ export function cleanServiceGroups(groups) {
} }
if ( if (
[ [
"authentik",
"beszel", "beszel",
"glances", "glances",
"immich", "immich",

View File

@@ -20,7 +20,7 @@ export function ColorProvider({ initialTheme, children }) {
const [color, setColor] = useState(getInitialColor); const [color, setColor] = useState(getInitialColor);
const rawSetColor = (rawColor) => { const rawSetColor = (rawColor) => {
const root = window.document.documentElement; const root = window.document.getElementById("page_wrapper");
root.classList.remove(`theme-${lastColor}`); root.classList.remove(`theme-${lastColor}`);
root.classList.add(`theme-${rawColor}`); root.classList.add(`theme-${rawColor}`);

View File

@@ -22,7 +22,7 @@ export function ThemeProvider({ initialTheme, children }) {
const [theme, setTheme] = useState(getInitialTheme); const [theme, setTheme] = useState(getInitialTheme);
const rawSetTheme = (rawTheme) => { const rawSetTheme = (rawTheme) => {
const root = window.document.documentElement; const root = window.document.getElementById("page_wrapper");
const isDark = rawTheme === "dark"; const isDark = rawTheme === "dark";
root.classList.remove(isDark ? "light" : "dark"); root.classList.remove(isDark ? "light" : "dark");

View File

@@ -10,12 +10,8 @@ export default function Component({ service }) {
const { widget } = service; const { widget } = service;
const { data: usersData, error: usersError } = useWidgetAPI(widget, "users"); const { data: usersData, error: usersError } = useWidgetAPI(widget, "users");
const { data: loginsData, error: loginsError } = useWidgetAPI(widget, "login");
const loginsEndpoint = widget.version === 2 ? "loginv2" : "login"; const { data: failedLoginsData, error: failedLoginsError } = useWidgetAPI(widget, "login_failed");
const { data: loginsData, error: loginsError } = useWidgetAPI(widget, loginsEndpoint);
const failedLoginsEndpoint = widget.version === 2 ? "login_failedv2" : "login_failed";
const { data: failedLoginsData, error: failedLoginsError } = useWidgetAPI(widget, failedLoginsEndpoint);
if (usersError || loginsError || failedLoginsError) { if (usersError || loginsError || failedLoginsError) {
const finalError = usersError ?? loginsError ?? failedLoginsError; const finalError = usersError ?? loginsError ?? failedLoginsError;
@@ -32,25 +28,15 @@ export default function Component({ service }) {
); );
} }
let loginsLast24H;
let failedLoginsLast24H;
switch (widget.version) {
case 1:
const yesterday = new Date(Date.now()).setHours(-24); const yesterday = new Date(Date.now()).setHours(-24);
loginsLast24H = loginsData.reduce( const loginsLast24H = loginsData.reduce(
(total, current) => (current.x_cord >= yesterday ? total + current.y_cord : total), (total, current) => (current.x_cord >= yesterday ? total + current.y_cord : total),
0, 0,
); );
failedLoginsLast24H = failedLoginsData.reduce( const failedLoginsLast24H = failedLoginsData.reduce(
(total, current) => (current.x_cord >= yesterday ? total + current.y_cord : total), (total, current) => (current.x_cord >= yesterday ? total + current.y_cord : total),
0, 0,
); );
break;
case 2:
loginsLast24H = loginsData[0]?.count || 0;
failedLoginsLast24H = failedLoginsData[0]?.count || 0;
break;
}
return ( return (
<Container service={service}> <Container service={service}>

View File

@@ -11,15 +11,9 @@ const widget = {
login: { login: {
endpoint: "events/events/per_month/?action=login", endpoint: "events/events/per_month/?action=login",
}, },
loginv2: {
endpoint: "events/events/volume/?action=login&&history_days=1",
},
login_failed: { login_failed: {
endpoint: "events/events/per_month/?action=login_failed", endpoint: "events/events/per_month/?action=login_failed",
}, },
login_failedv2: {
endpoint: "events/events/volume/?action=login_failed&&history_days=1",
},
}, },
}; };

View File

@@ -31,7 +31,6 @@ const components = {
emby: dynamic(() => import("./emby/component")), emby: dynamic(() => import("./emby/component")),
esphome: dynamic(() => import("./esphome/component")), esphome: dynamic(() => import("./esphome/component")),
evcc: dynamic(() => import("./evcc/component")), evcc: dynamic(() => import("./evcc/component")),
filebrowser: dynamic(() => import("./filebrowser/component")),
fileflows: dynamic(() => import("./fileflows/component")), fileflows: dynamic(() => import("./fileflows/component")),
firefly: dynamic(() => import("./firefly/component")), firefly: dynamic(() => import("./firefly/component")),
flood: dynamic(() => import("./flood/component")), flood: dynamic(() => import("./flood/component")),
@@ -143,7 +142,6 @@ const components = {
uptimerobot: dynamic(() => import("./uptimerobot/component")), uptimerobot: dynamic(() => import("./uptimerobot/component")),
urbackup: dynamic(() => import("./urbackup/component")), urbackup: dynamic(() => import("./urbackup/component")),
vikunja: dynamic(() => import("./vikunja/component")), vikunja: dynamic(() => import("./vikunja/component")),
wallos: dynamic(() => import("./wallos/component")),
watchtower: dynamic(() => import("./watchtower/component")), watchtower: dynamic(() => import("./watchtower/component")),
wgeasy: dynamic(() => import("./wgeasy/component")), wgeasy: dynamic(() => import("./wgeasy/component")),
whatsupdocker: dynamic(() => import("./whatsupdocker/component")), whatsupdocker: dynamic(() => import("./whatsupdocker/component")),

View File

@@ -29,7 +29,7 @@ function ticksToString(ticks) {
function generateStreamTitle(session, enableUser, showEpisodeNumber) { function generateStreamTitle(session, enableUser, showEpisodeNumber) {
const { const {
NowPlayingItem: { Name, SeriesName, Type, ParentIndexNumber, IndexNumber, AlbumArtist, Album }, NowPlayingItem: { Name, SeriesName, Type, ParentIndexNumber, IndexNumber },
UserName, UserName,
} = session; } = session;
let streamTitle = ""; let streamTitle = "";
@@ -38,8 +38,6 @@ function generateStreamTitle(session, enableUser, showEpisodeNumber) {
const seasonStr = ParentIndexNumber ? `S${ParentIndexNumber.toString().padStart(2, "0")}` : ""; const seasonStr = ParentIndexNumber ? `S${ParentIndexNumber.toString().padStart(2, "0")}` : "";
const episodeStr = IndexNumber ? `E${IndexNumber.toString().padStart(2, "0")}` : ""; const episodeStr = IndexNumber ? `E${IndexNumber.toString().padStart(2, "0")}` : "";
streamTitle = `${SeriesName}: ${seasonStr} · ${episodeStr} - ${Name}`; streamTitle = `${SeriesName}: ${seasonStr} · ${episodeStr} - ${Name}`;
} else if (Type === "Audio") {
streamTitle = `${AlbumArtist} - ${Album} - ${Name}`;
} else { } else {
streamTitle = `${Name}${SeriesName ? ` - ${SeriesName}` : ""}`; streamTitle = `${Name}${SeriesName ? ` - ${SeriesName}` : ""}`;
} }

View File

@@ -29,23 +29,18 @@ export default function Component({ service }) {
); );
} }
// evcc v0.207 changed the API structure so its no longer under 'result'
const data = stateData.result ?? stateData;
// broken by evcc v0.133.0 https://github.com/evcc-io/evcc/commit/9dcb1fa0a7c08dd926b79309aa1f676a5fc6c8aa // broken by evcc v0.133.0 https://github.com/evcc-io/evcc/commit/9dcb1fa0a7c08dd926b79309aa1f676a5fc6c8aa
const gridPower = data.gridPower ?? data.grid?.power ?? 0; const gridPower = stateData.result.gridPower ?? stateData.result.grid?.power ?? 0;
// Sum chargePower of all loadpoints
const totalChargePower = Array.isArray(data.loadpoints)
? data.loadpoints.reduce((sum, lp) => sum + (lp.chargePower ?? 0), 0)
: 0;
return ( return (
<Container service={service}> <Container service={service}>
<Block label="evcc.pv_power" value={`${toKilowatts(t, data.pvPower)} ${t("evcc.kilowatt")}`} /> <Block label="evcc.pv_power" value={`${toKilowatts(t, stateData.result.pvPower)} ${t("evcc.kilowatt")}`} />
<Block label="evcc.grid_power" value={`${toKilowatts(t, gridPower)} ${t("evcc.kilowatt")}`} /> <Block label="evcc.grid_power" value={`${toKilowatts(t, gridPower)} ${t("evcc.kilowatt")}`} />
<Block label="evcc.home_power" value={`${toKilowatts(t, data.homePower)} ${t("evcc.kilowatt")}`} /> <Block label="evcc.home_power" value={`${toKilowatts(t, stateData.result.homePower)} ${t("evcc.kilowatt")}`} />
<Block label="evcc.charge_power" value={`${toKilowatts(t, totalChargePower)} ${t("evcc.kilowatt")}`} /> <Block
label="evcc.charge_power"
value={`${toKilowatts(t, stateData.result.loadpoints[0].chargePower)} ${t("evcc.kilowatt")}`}
/>
</Container> </Container>
); );
} }

View File

@@ -1,38 +0,0 @@
import Block from "components/services/widget/block";
import Container from "components/services/widget/container";
import { useTranslation } from "next-i18next";
import useWidgetAPI from "utils/proxy/use-widget-api";
export default function Component({ service }) {
const { t } = useTranslation();
const { widget } = service;
const { data: usage, error: usageError } = useWidgetAPI(widget, "usage");
if (usageError) {
return <Container service={service} error={usageError} />;
}
if (!usage) {
return (
<Container service={service}>
<Block label="filebrowser.available" />
<Block label="filebrowser.used" />
<Block label="filebrowser.total" />
</Container>
);
}
return (
<Container service={service}>
<Block
label="filebrowser.available"
value={t("common.bytes", { value: (usage?.total ?? 0) - (usage?.used ?? 0) })}
/>
<Block label="filebrowser.used" value={t("common.bytes", { value: usage?.used ?? 0 })} />
<Block label="filebrowser.total" value={t("common.bytes", { value: usage?.total ?? 0 })} />
</Container>
);
}

View File

@@ -1,80 +0,0 @@
import getServiceWidget from "utils/config/service-helpers";
import createLogger from "utils/logger";
import { formatApiCall } from "utils/proxy/api-helpers";
import { httpProxy } from "utils/proxy/http";
import widgets from "widgets/widgets";
const proxyName = "filebrowserProxyHandler";
const logger = createLogger(proxyName);
async function login(widget, service) {
const url = formatApiCall(widgets[widget.type].api, { ...widget, endpoint: "login" });
const headers = {};
if (widget.authHeader) {
headers[widget.authHeader] = widget.username;
}
const [status, , data] = await httpProxy(url, {
method: "POST",
headers,
body: JSON.stringify({
username: widget.username,
password: widget.password,
}),
});
switch (status) {
case 200:
return data;
case 401:
logger.error("Unauthorized access to Filebrowser API for service '%s'. Check credentials.", service);
break;
default:
logger.error("Unexpected status code %d when logging in to Filebrowser API for service '%s'", status, service);
break;
}
}
export default async function filebrowserProxyHandler(req, res) {
const { group, service, endpoint, index } = req.query;
if (!group || !service) {
logger.error("Invalid or missing service '%s' or group '%s'", service, group);
return res.status(400).json({ error: "Invalid proxy service type" });
}
const widget = await getServiceWidget(group, service, index);
if (!widget || !widgets[widget.type].api) {
logger.error("Invalid or missing widget for service '%s' in group '%s'", service, group);
return res.status(400).json({ error: "Invalid widget configuration" });
}
const token = await login(widget, service);
if (!token) {
return res.status(500).json({ error: "Failed to authenticate with Filebrowser" });
}
const url = new URL(formatApiCall(widgets[widget.type].api, { endpoint, ...widget }));
try {
const params = {
method: "GET",
headers: {
"X-AUTH": token,
},
};
logger.debug("Calling Filebrowser API endpoint: %s", endpoint);
const [status, , data] = await httpProxy(url, params);
if (status !== 200) {
logger.error("Error calling Filebrowser API: %d. Data: %s", status, data);
return res.status(status).json({ error: "Filebrowser API Error", data });
}
return res.status(status).send(data);
} catch (error) {
logger.error("Exception calling Filebrowser API: %s", error.message);
return res.status(500).json({ error: "Filebrowser API Error", message: error.message });
}
}

View File

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

View File

@@ -24,7 +24,7 @@ export default function Component({ service }) {
<Container service={service}> <Container service={service}>
<div <div
className={classNames( className={classNames(
"bg-theme-200/50 dark:bg-theme-900/20 rounded-sm m-1 flex-1 flex flex-col items-center justify-center text-center scheme-light", "bg-theme-200/50 dark:bg-theme-900/20 rounded-sm m-1 flex-1 flex flex-col items-center justify-center text-center",
"service-block", "service-block",
)} )}
> >

View File

@@ -34,10 +34,10 @@ export default function Component({ service }) {
); );
if (widget.kubernetes) { if (widget.kubernetes) {
const error = applicationsError ?? servicesError ?? namespacesError;
// count can be an error object // count can be an error object
if (error || typeof applicationsCount === "object") { const error = applicationsError ?? servicesError ?? namespacesError ?? applicationsCount;
return <Container service={service} error={error ?? applicationsCount} />; if (error) {
return <Container service={service} error={error} />;
} }
if (applicationsCount == undefined || servicesCount == undefined || namespacesCount == undefined) { if (applicationsCount == undefined || servicesCount == undefined || namespacesCount == undefined) {

View File

@@ -25,7 +25,7 @@ export default function ProxmoxVM({ service }) {
return ( return (
<Container service={service}> <Container service={service}>
<Block label="resources.cpu" value={t("common.percent", { value: data.cpu * 100 })} /> <Block label="resources.cpu" value={t("common.percent", { value: data.cpu })} />
<Block label="resources.mem" value={t("common.bytes", { value: data.mem })} /> <Block label="resources.mem" value={t("common.bytes", { value: data.mem })} />
</Container> </Container>
); );

View File

@@ -43,10 +43,7 @@ export default function Component({ service }) {
<Block label="romm.saves" value={t("common.number", { value: response.SAVES })} /> <Block label="romm.saves" value={t("common.number", { value: response.SAVES })} />
<Block label="romm.states" value={t("common.number", { value: response.STATES })} /> <Block label="romm.states" value={t("common.number", { value: response.STATES })} />
<Block label="romm.screenshots" value={t("common.number", { value: response.SCREENSHOTS })} /> <Block label="romm.screenshots" value={t("common.number", { value: response.SCREENSHOTS })} />
<Block <Block label="romm.totalfilesize" value={t("common.bytes", { value: response.FILESIZE })} />
label="romm.totalfilesize"
value={t("common.bytes", { value: response.FILESIZE ?? response.TOTAL_FILESIZE_BYTES })}
/>
</Container> </Container>
); );
} }

View File

@@ -23,13 +23,10 @@ export default function Component({ service }) {
</Container> </Container>
); );
} }
const space = spaceData.results ? spaceData.results[0] : spaceData[0];
return ( return (
<Container service={service}> <Container service={service}>
<Block label="tandoor.users" value={space?.user_count} /> <Block label="tandoor.users" value={spaceData[0]?.user_count} />
<Block label="tandoor.recipes" value={space?.recipe_count} /> <Block label="tandoor.recipes" value={spaceData[0]?.recipe_count} />
<Block label="tandoor.keywords" value={keywordData.count} /> <Block label="tandoor.keywords" value={keywordData.count} />
</Container> </Container>
); );

View File

@@ -31,10 +31,6 @@ export default function Component({ service }) {
); );
} }
if (uptimerobotData.error) {
return <Container service={service} error={uptimerobotData.error} />;
}
// multiple monitors // multiple monitors
if (uptimerobotData.pagination?.total > 1) { if (uptimerobotData.pagination?.total > 1) {
const sitesUp = uptimerobotData.monitors.filter((m) => m.status === 2).length; const sitesUp = uptimerobotData.monitors.filter((m) => m.status === 2).length;

View File

@@ -1,100 +0,0 @@
import Block from "components/services/widget/block";
import Container from "components/services/widget/container";
import { useTranslation } from "next-i18next";
import useWidgetAPI from "utils/proxy/use-widget-api";
const MAX_ALLOWED_FIELDS = 4;
export default function Component({ service }) {
const todayDate = new Date();
const { t } = useTranslation();
const { widget } = service;
if (!widget.fields) {
widget.fields = ["activeSubscriptions", "nextRenewingSubscription", "thisMonthlyCost", "nextMonthlyCost"];
} else if (widget.fields?.length > MAX_ALLOWED_FIELDS) {
widget.fields = widget.fields.slice(0, MAX_ALLOWED_FIELDS);
}
const subscriptionsEndPoint =
widget.fields.includes("activeSubscriptions") || widget.fields.includes("nextRenewingSubscription")
? "get_subscriptions"
: "";
const { data: subscriptionsData, error: subscriptionsError } = useWidgetAPI(widget, subscriptionsEndPoint, {
state: 0,
sort: "next_payment",
});
const subscriptionsThisMonthlyEndpoint = widget.fields.includes("thisMonthlyCost") ? "get_monthly_cost" : "";
const { data: subscriptionsThisMonthlyCostData, error: subscriptionsThisMonthlyCostError } = useWidgetAPI(
widget,
subscriptionsThisMonthlyEndpoint,
{
month: todayDate.getMonth(),
year: todayDate.getFullYear(),
},
);
const subscriptionsNextMonthlyEndpoint = widget.fields.includes("nextMonthlyCost") ? "get_monthly_cost" : "";
const { data: subscriptionsNextMonthlyCostData, error: subscriptionsNextMonthlyCostError } = useWidgetAPI(
widget,
subscriptionsNextMonthlyEndpoint,
{
month: todayDate.getMonth() + 1,
year: todayDate.getFullYear(),
},
);
const subscriptionsPreviousMonthlyEndpoint = widget.fields.includes("previousMonthlyCost") ? "get_monthly_cost" : "";
const { data: subscriptionsPreviousMonthlyCostData, error: subscriptionsPreviousMonthlyCostError } = useWidgetAPI(
widget,
subscriptionsPreviousMonthlyEndpoint,
{
month: todayDate.getMonth() - 1,
year: todayDate.getFullYear(),
},
);
if (
subscriptionsError ||
subscriptionsThisMonthlyCostError ||
subscriptionsNextMonthlyCostError ||
subscriptionsPreviousMonthlyCostError
) {
const finalError =
subscriptionsError ??
subscriptionsThisMonthlyCostError ??
subscriptionsNextMonthlyCostError ??
subscriptionsPreviousMonthlyCostError;
return <Container service={service} error={finalError} />;
}
if (
(!subscriptionsData &&
(widget.fields.includes("activeSubscriptions") || widget.fields.includes("nextRenewingSubscription"))) ||
(!subscriptionsThisMonthlyCostData && widget.fields.includes("thisMonthlyCost")) ||
(!subscriptionsNextMonthlyCostData && widget.fields.includes("nextMonthlyCost")) ||
(!subscriptionsPreviousMonthlyCostData && widget.fields.includes("previousMonthlyCost"))
) {
return (
<Container service={service}>
<Block label="wallos.activeSubscriptions" />
<Block label="wallos.nextRenewingSubscription" />
<Block label="wallos.previousMonthlyCost" />
<Block label="wallos.thisMonthlyCost" />
<Block label="wallos.nextMonthlyCost" />
</Container>
);
}
return (
<Container service={service}>
<Block
label="wallos.activeSubscriptions"
value={t("common.number", { value: subscriptionsData?.subscriptions?.length })}
/>
<Block label="wallos.nextRenewingSubscription" value={subscriptionsData?.subscriptions[0]?.name} />
<Block label="wallos.previousMonthlyCost" value={subscriptionsPreviousMonthlyCostData?.localized_monthly_cost} />
<Block label="wallos.thisMonthlyCost" value={subscriptionsThisMonthlyCostData?.localized_monthly_cost} />
<Block label="wallos.nextMonthlyCost" value={subscriptionsNextMonthlyCostData?.localized_monthly_cost} />
</Container>
);
}

View File

@@ -1,21 +0,0 @@
import genericProxyHandler from "utils/proxy/handlers/generic";
const widget = {
api: "{url}/api/{endpoint}?api_key={key}",
proxyHandler: genericProxyHandler,
mappings: {
get_monthly_cost: {
endpoint: "subscriptions/get_monthly_cost.php",
validate: ["localized_monthly_cost", "currency_symbol"],
params: ["month", "year"],
},
get_subscriptions: {
endpoint: "subscriptions/get_subscriptions.php",
validate: ["subscriptions"],
params: ["state", "sort"],
},
},
};
export default widget;

View File

@@ -25,7 +25,6 @@ import downloadstation from "./downloadstation/widget";
import emby from "./emby/widget"; import emby from "./emby/widget";
import esphome from "./esphome/widget"; import esphome from "./esphome/widget";
import evcc from "./evcc/widget"; import evcc from "./evcc/widget";
import filebrowser from "./filebrowser/widget";
import fileflows from "./fileflows/widget"; import fileflows from "./fileflows/widget";
import firefly from "./firefly/widget"; import firefly from "./firefly/widget";
import flood from "./flood/widget"; import flood from "./flood/widget";
@@ -134,7 +133,6 @@ import uptimekuma from "./uptimekuma/widget";
import uptimerobot from "./uptimerobot/widget"; import uptimerobot from "./uptimerobot/widget";
import urbackup from "./urbackup/widget"; import urbackup from "./urbackup/widget";
import vikunja from "./vikunja/widget"; import vikunja from "./vikunja/widget";
import wallos from "./wallos/widget";
import watchtower from "./watchtower/widget"; import watchtower from "./watchtower/widget";
import wgeasy from "./wgeasy/widget"; import wgeasy from "./wgeasy/widget";
import whatsupdocker from "./whatsupdocker/widget"; import whatsupdocker from "./whatsupdocker/widget";
@@ -168,7 +166,6 @@ const widgets = {
emby, emby,
esphome, esphome,
evcc, evcc,
filebrowser,
fileflows, fileflows,
firefly, firefly,
flood, flood,
@@ -282,7 +279,6 @@ const widgets = {
uptimerobot, uptimerobot,
urbackup, urbackup,
vikunja, vikunja,
wallos,
watchtower, watchtower,
wgeasy, wgeasy,
whatsupdocker, whatsupdocker,