Compare commits

..

1 Commits

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

View File

@@ -17,13 +17,15 @@ if [ -e /app/config ]; then
CURRENT_UID=$(stat -c %u /app/config)
CURRENT_GID=$(stat -c %g /app/config)
if [ "$CURRENT_UID" -ne "$PUID" ] || [ "$CURRENT_GID" -ne "$PGID" ]; then
echo "Fixing ownership of /app/config"
if ! chown -R "$PUID:$PGID" /app/config 2>/dev/null; then
echo "Warning: Could not chown /app/config; continuing anyway"
if [ "$CURRENT_UID" -eq "$PUID" ] && [ "$CURRENT_GID" -eq "$PGID" ]; then
echo "/app/config already owned by correct UID/GID, skipping chown"
if ! [ -w /app/config ]; then
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
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
else
echo "/app/config does not exist; skipping ownership check"

View File

@@ -225,8 +225,20 @@ const widgetExample = {
#### `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
widget API and require the use of a custom proxy.
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`.
```js
const widgetExample = {
api: "{url}/api/{endpoint}",
mappings: {
// `/api/stats`
stats: {
endpoint: "stats",
method: "POST",
},
},
};
```
#### `headers`
@@ -239,6 +251,7 @@ const widgetExample = {
// `/api/stats`
stats: {
endpoint: "stats",
method: "POST",
headers: {
"Content-Type": "application/json",
},
@@ -258,6 +271,7 @@ const widgetExample = {
// `/api/graphql`
stats: {
endpoint: "graphql",
method: "POST",
body: {
query: `
query {

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.
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 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`.
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.
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)
- 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.

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"]`.
Note that API key must be from admin user.
```yaml
widget:
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)
- [ChangeDetection.io](changedetectionio.md)
- [Channels DVR Server](channelsdvrserver.md)
- [Checkmk](checkmk.md)
- [Cloudflared](cloudflared.md)
- [Coin Market Cap](coin-market-cap.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)
- [ESPHome](esphome.md)
- [EVCC](evcc.md)
- [Filebrowser](filebrowser.md)
- [Fileflows](fileflows.md)
- [Firefly III](firefly.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)
- [Jellyfin](jellyfin.md)
- [Jellyseerr](jellyseerr.md)
- [Jellystat](jellystat.md)
- [Kavita](kavita.md)
- [Komga](komga.md)
- [Komodo](komodo.md)
- [Kopia](kopia.md)
- [Lidarr](lidarr.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)
- [Traefik](traefik.md)
- [Transmission](transmission.md)
- [Trilium](trilium.md)
- [TrueNAS](truenas.md)
- [TubeArchivist](tubearchivist.md)
- [UniFi Controller](unifi-controller.md)

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

View File

@@ -1,6 +1,6 @@
{
"name": "homepage",
"version": "1.4.2",
"version": "1.3.2",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
@@ -15,8 +15,8 @@
"@kubernetes/client-node": "^1.0.0",
"classnames": "^2.5.1",
"compare-versions": "^6.1.1",
"dockerode": "^4.0.7",
"follow-redirects": "^1.15.11",
"dockerode": "^4.0.4",
"follow-redirects": "^1.15.9",
"gamedig": "^5.2.0",
"i18next": "^24.2.3",
"ical.js": "^2.1.0",
@@ -25,7 +25,7 @@
"luxon": "^3.6.1",
"memory-cache": "^0.2.0",
"minecraftstatuspinger": "^1.2.2",
"next": "^15.4.5",
"next": "^15.3.1",
"next-i18next": "^12.1.0",
"ping": "^0.4.4",
"pretty-bytes": "^6.1.1",
@@ -48,12 +48,12 @@
"eslint": "^9.25.1",
"eslint-config-next": "^15.2.4",
"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-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"postcss": "^8.5.6",
"postcss": "^8.5.3",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.1.0",
"tailwind-scrollbar": "^4.0.2",

794
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -108,8 +108,8 @@
"songs": "Liedjies"
},
"esphome": {
"offline": "Vanlyn af",
"offline_alt": "Vanlyn af",
"offline": "Vanlyn",
"offline_alt": "Vanlyn",
"online": "Aanlyn",
"total": "Totaal",
"unknown": "Onbekend"
@@ -189,7 +189,7 @@
"plex": {
"streams": "Aktiewe Strome",
"albums": "Albums",
"movies": "Movies",
"movies": "Flieks",
"tv": "TV Programme"
},
"sabnzbd": {
@@ -242,15 +242,15 @@
"wanted": "Gesoek",
"queued": "In ry",
"series": "Reekse",
"queue": "Toustaan",
"queue": "Tou",
"unknown": "Onbekend"
},
"radarr": {
"wanted": "Gesoek",
"missing": "Vermis",
"queued": "In ry",
"movies": "Movies",
"queue": "Toustaan",
"movies": "Flieks",
"queue": "Tou",
"unknown": "Onbekend"
},
"lidarr": {
@@ -302,7 +302,7 @@
"latency": "Latensie"
},
"speedtest": {
"upload": "Oplaai",
"upload": "Laai Op",
"download": "Aflaai",
"ping": "Pieng"
},
@@ -359,14 +359,8 @@
"services": "Dienste",
"middleware": "Filtreerprogramme"
},
"trilium": {
"version": "Weergawe",
"notesCount": "Notas",
"dbSize": "Databasis Grootte",
"unknown": "Onbekend"
},
"navidrome": {
"nothing_streaming": "Geen Aktiewe Strome",
"nothing_streaming": "Geen aktiewe strome nie",
"please_wait": "Wag Asseblief"
},
"npm": {
@@ -395,7 +389,7 @@
},
"jackett": {
"configured": "Opgestel",
"errored": "Gefout"
"errored": "Fout"
},
"strelaysrv": {
"numActiveSessions": "Sessies",
@@ -418,7 +412,7 @@
"version": "Weergawe",
"status": "Status",
"up": "Aanlyn",
"down": "Vanlyn af"
"down": "Vanlyn"
},
"miniflux": {
"read": "Gelees",
@@ -555,7 +549,7 @@
"indexers": "Indekseerders"
},
"tubearchivist": {
"downloads": "Toustaan",
"downloads": "Tou",
"videos": "Videos",
"channels": "Kanale",
"playlists": "Snitlyste"
@@ -563,7 +557,7 @@
"truenas": {
"load": "Stelsellading",
"uptime": "Optyd",
"alerts": "Opletberigte"
"alerts": "Waarskuwings"
},
"pyload": {
"speed": "Spoed",
@@ -773,7 +767,7 @@
},
"whatsupdocker": {
"monitoring": "Monitering",
"updates": "Opdaterings"
"updates": "Opdatering"
},
"calibreweb": {
"books": "Boeke",
@@ -807,7 +801,7 @@
"gamedig": {
"status": "Status",
"online": "Aanlyn",
"offline": "Vanlyn af",
"offline": "Vanlyn",
"name": "Naam",
"map": "Kaart",
"currentPlayers": "Huidige Spelers",
@@ -878,7 +872,7 @@
"domains": "Domeine",
"mailboxes": "Posbusse",
"mails": "E-posse",
"storage": "Stoor plek"
"storage": "Bergplek"
},
"netdata": {
"warnings": "Waarskuwings",
@@ -908,7 +902,7 @@
"galleries": "Galerye",
"performers": "Kunstenaars",
"studios": "Ateljees",
"movies": "Movies",
"movies": "Flieks",
"tags": "Merkers",
"oCount": "O Tel"
},
@@ -926,13 +920,13 @@
"totalValue": "Totale Waarde"
},
"crowdsec": {
"alerts": "Opletberigte",
"alerts": "Waarskuwings",
"bans": "Verbanne"
},
"wgeasy": {
"connected": "Gekoppel",
"enabled": "Geaktiveer",
"disabled": "Gediaktiveer",
"disabled": "Onaktief",
"total": "Totaal"
},
"swagdashboard": {
@@ -944,7 +938,7 @@
"myspeed": {
"ping": "Pieng",
"download": "Aflaai",
"upload": "Oplaai"
"upload": "Laai Op"
},
"stocks": {
"stocks": "Aandele",
@@ -965,7 +959,7 @@
},
"zabbix": {
"unclassified": "Nie geklassifiseer nie",
"information": "Inligting",
"information": "Informasie",
"warning": "Waarskuwing",
"average": "Gemiddeld",
"high": "Hoog",
@@ -988,7 +982,7 @@
"headscale": {
"name": "Naam",
"address": "Adres",
"last_seen": "Laas gesien",
"last_seen": "Laaste Gesien",
"status": "Status",
"online": "Aanlyn",
"offline": "Vanlyn"
@@ -1014,7 +1008,7 @@
"healthy": "Gesond",
"degraded": "Gedegradeer",
"progressing": "Vorderend",
"missing": "Afwesig",
"missing": "Vermis",
"suspended": "Geskors"
},
"spoolman": {
@@ -1053,35 +1047,12 @@
},
"jellystat": {
"songs": "Liedjies",
"movies": "Movies",
"episodes": "Episode",
"movies": "Flieks",
"episodes": "Episodes",
"other": "Ander"
},
"checkmk": {
"serviceErrors": "Diensprobleme",
"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",
"lan_users": "LAN Brugere",
"wlan_users": "WLAN Brugere",
"up": "UP",
"up": "OP",
"down": "NED",
"wait": "Please wait",
"wait": "Vent venligst",
"empty_data": "Subsystem status ukendt"
},
"docker": {
"rx": "RX",
"tx": "TX",
"mem": "MEM",
"mem": "RAM",
"cpu": "CPU",
"running": "Kører",
"offline": "Offline",
@@ -83,7 +83,7 @@
"partial": "Delvis"
},
"ping": {
"error": "Error",
"error": "Fejl",
"ping": "Ping",
"down": "Ned",
"up": "Op",
@@ -91,11 +91,11 @@
},
"siteMonitor": {
"http_status": "HTTP-status",
"error": "Error",
"error": "Fejl",
"response": "Response",
"down": "Down",
"up": "Up",
"not_available": "Not Available"
"down": "Ned",
"up": "Op",
"not_available": "Ikke tilgængelig"
},
"emby": {
"playing": "Afspiller",
@@ -112,7 +112,7 @@
"offline_alt": "Offline",
"online": "Online",
"total": "Total",
"unknown": "Unknown"
"unknown": "Ukendt"
},
"evcc": {
"pv_power": "Produktion",
@@ -141,11 +141,11 @@
"connectionStatusDisconnecting": "Disconnecting",
"connectionStatusDisconnected": "Disconnected",
"connectionStatusConnected": "Connected",
"uptime": "Uptime",
"uptime": "Oppetid",
"maxDown": "Max. Down",
"maxUp": "Max. Up",
"down": "Down",
"up": "Up",
"down": "Ned",
"up": "Op",
"received": "Modtaget",
"sent": "Sendt",
"externalIPAddress": "Ekstern IP",
@@ -168,10 +168,10 @@
"passes": "Bestået"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"playing": "Afspiller",
"transcoding": "Transcoder",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"no_active": "Ingen Aktive Streams",
"plex_connection_error": "Tjek Plex-forbindelse"
},
"omada": {
@@ -189,11 +189,11 @@
"plex": {
"streams": "Aktive Streams",
"albums": "Albums",
"movies": "Movies",
"movies": "Film",
"tv": "TV-Shows"
},
"sabnzbd": {
"rate": "Rate",
"rate": "Sats",
"queue": "Kø",
"timeleft": "Resterende tid"
},
@@ -241,26 +241,26 @@
"sonarr": {
"wanted": "Ønsket",
"queued": "I Kø",
"series": "Series",
"queue": "Queue",
"unknown": "Unknown"
"series": "Serier",
"queue": "",
"unknown": "Ukendt"
},
"radarr": {
"wanted": "Wanted",
"wanted": "Ønsket",
"missing": "Mangler",
"queued": "Queued",
"movies": "Movies",
"queue": "Queue",
"unknown": "Unknown"
"queued": "I Kø",
"movies": "Film",
"queue": "",
"unknown": "Ukendt"
},
"lidarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Ønsket",
"queued": "I Kø",
"artists": "Artister"
},
"readarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Ønsket",
"queued": "I Kø",
"books": "Bøger"
},
"bazarr": {
@@ -273,15 +273,15 @@
"available": "Tilgængelig"
},
"jellyseerr": {
"pending": "Pending",
"approved": "Approved",
"available": "Available"
"pending": "Afventer",
"approved": "Godkendt",
"available": "Tilgængelig"
},
"overseerr": {
"pending": "Pending",
"pending": "Afventer",
"processing": "Behandler",
"approved": "Approved",
"available": "Available"
"approved": "Godkendt",
"available": "Tilgængelig"
},
"netalertx": {
"total": "Total",
@@ -296,8 +296,8 @@
"gravity": "Tyngdekraft"
},
"adguard": {
"queries": "Queries",
"blocked": "Blocked",
"queries": "Forespørgsler",
"blocked": "Blokerede",
"filtered": "Filtreret",
"latency": "Latenstid"
},
@@ -307,15 +307,15 @@
"ping": "Ping"
},
"portainer": {
"running": "Running",
"running": "Kører",
"stopped": "Stoppede",
"total": "Total"
},
"suwayomi": {
"download": "Downloaded",
"download": "Hentet",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"read": "Læst",
"unread": "Ulæst",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
@@ -336,7 +336,7 @@
"ago": "{{value}} Siden"
},
"technitium": {
"totalQueries": "Queries",
"totalQueries": "Forespørgsler",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blocked",
"totalBlocked": "Blokerede",
"totalDropped": "Dropped",
"totalClients": "Klienter"
},
"tdarr": {
"queue": "Queue",
"queue": "",
"processed": "Behandlet",
"errored": "Fejlet",
"saved": "Gemt"
@@ -359,14 +359,8 @@
"services": "Tjenester",
"middleware": "Middleware"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"nothing_streaming": "Ingen Aktive Streams",
"please_wait": "Vent venligst"
},
"npm": {
@@ -383,35 +377,35 @@
},
"gotify": {
"apps": "Applikationer",
"clients": "Clients",
"clients": "Klienter",
"messages": "Beskeder"
},
"prowlarr": {
"enableIndexers": "Indeksører",
"numberOfGrabs": "Grab",
"numberOfQueries": "Queries",
"numberOfQueries": "Forespørgsler",
"numberOfFailGrabs": "Fejl Grabs",
"numberOfFailQueries": "Fejl Forespørgsler"
},
"jackett": {
"configured": "Konfigureret",
"errored": "Errored"
"errored": "Fejlet"
},
"strelaysrv": {
"numActiveSessions": "Sessioner",
"numConnections": "Forbindelser",
"dataRelayed": "Videresendt",
"transferRate": "Rate"
"transferRate": "Sats"
},
"mastodon": {
"user_count": "Users",
"user_count": "Brugere",
"status_count": "Indlæg",
"domain_count": "Domæner"
},
"medusa": {
"wanted": "Wanted",
"queued": "Queued",
"series": "Series"
"wanted": "Ønsket",
"queued": "I Kø",
"series": "Serier"
},
"minecraft": {
"players": "Afspillere",
@@ -422,34 +416,34 @@
},
"miniflux": {
"read": "Læst",
"unread": "Unread"
"unread": "Ulæst"
},
"authentik": {
"users": "Users",
"users": "Brugere",
"loginsLast24H": "Login (24 timer)",
"failedLoginsLast24H": "Mislykkede logins (24 timer)"
},
"proxmox": {
"mem": "MEM",
"mem": "RAM",
"cpu": "CPU",
"lxc": "LXC",
"vms": "VMs"
},
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"load": "Belastning",
"wait": "Vent venligst",
"temp": "TEMP",
"_temp": "Temp",
"warn": "Advar",
"uptime": "UP",
"uptime": "OP",
"total": "Total",
"free": "Free",
"used": "Used",
"free": "Fri",
"used": "Brugt",
"days": "d",
"hours": "h",
"hours": "t",
"crit": "Crit",
"read": "Read",
"read": "Læst",
"write": "Skriv",
"gpu": "GPU",
"mem": "Ram",
@@ -470,57 +464,57 @@
"1-day": "Overvejende Solrigt",
"1-night": "Overvejende Skyfrit",
"2-day": "Delvist Overskyet",
"2-night": "Partly Cloudy",
"2-night": "Delvist Overskyet",
"3-day": "Skyet",
"3-night": "Cloudy",
"3-night": "Skyet",
"45-day": "Tåget",
"45-night": "Foggy",
"48-day": "Foggy",
"48-night": "Foggy",
"45-night": "Tåget",
"48-day": "Tåget",
"48-night": "Tåget",
"51-day": "Let Støvregn",
"51-night": "Light Drizzle",
"51-night": "Let Støvregn",
"53-day": "Støvregn",
"53-night": "Drizzle",
"53-night": "Støvregn",
"55-day": "Kraftig Støvregn",
"55-night": "Heavy Drizzle",
"55-night": "Kraftig 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-night": "Freezing Drizzle",
"57-night": "Frysende Støvregn",
"61-day": "Let Regn",
"61-night": "Light Rain",
"61-night": "Let Regn",
"63-day": "Regn",
"63-night": "Rain",
"63-night": "Regn",
"65-day": "Kraftig Regn",
"65-night": "Heavy Rain",
"65-night": "Kraftig Regn",
"66-day": "Frysende Regn",
"66-night": "Freezing Rain",
"67-day": "Freezing Rain",
"67-night": "Freezing Rain",
"66-night": "Frysende Regn",
"67-day": "Frysende Regn",
"67-night": "Frysende Regn",
"71-day": "Let Sne",
"71-night": "Light Snow",
"71-night": "Let Sne",
"73-day": "Sne",
"73-night": "Snow",
"73-night": "Sne",
"75-day": "Kraftig Sne",
"75-night": "Heavy Snow",
"75-night": "Kraftig Sne",
"77-day": "Snekorn",
"77-night": "Snow Grains",
"77-night": "Snekorn",
"80-day": "Lette Byger",
"80-night": "Light Showers",
"80-night": "Lette Byger",
"81-day": "Byger",
"81-night": "Showers",
"81-night": "Byger",
"82-day": "Kraftige Byger",
"82-night": "Heavy Showers",
"82-night": "Kraftige Byger",
"85-day": "Snebyger",
"85-night": "Snow Showers",
"86-day": "Snow Showers",
"86-night": "Snow Showers",
"85-night": "Snebyger",
"86-day": "Snebyger",
"86-night": "Snebyger",
"95-day": "Tordenvejr",
"95-night": "Thunderstorm",
"95-night": "Tordenvejr",
"96-day": "Tordenvejr Med Hagl",
"96-night": "Thunderstorm With Hail",
"99-day": "Thunderstorm With Hail",
"99-night": "Thunderstorm With Hail"
"96-night": "Tordenvejr Med Hagl",
"99-day": "Tordenvejr Med Hagl",
"99-night": "Tordenvejr Med Hagl"
},
"homebridge": {
"available_update": "System",
@@ -529,15 +523,15 @@
"up_to_date": "Opdateret",
"child_bridges": "Underbroer",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "Up",
"pending": "Pending",
"down": "Down"
"up": "Op",
"pending": "Afventer",
"down": "Ned"
},
"healthchecks": {
"new": "Ny",
"up": "Up",
"up": "Op",
"grace": "Henstandsperiode",
"down": "Down",
"down": "Ned",
"paused": "Pause",
"status": "Status",
"last_ping": "Sidste Ping",
@@ -549,26 +543,26 @@
"containers_failed": "Fejlet"
},
"autobrr": {
"approvedPushes": "Approved",
"approvedPushes": "Godkendt",
"rejectedPushes": "Afviste",
"filters": "Filtre",
"indexers": "Indexers"
"indexers": "Indeksører"
},
"tubearchivist": {
"downloads": "Queue",
"downloads": "",
"videos": "Videoer",
"channels": "Kanaler",
"playlists": "Afspilningslister"
},
"truenas": {
"load": "Systembelastning",
"uptime": "Uptime",
"alerts": "Alerts"
"uptime": "Oppetid",
"alerts": "Advarsler"
},
"pyload": {
"speed": "Hastighed",
"active": "Active",
"queue": "Queue",
"active": "Aktive",
"queue": "",
"total": "Total"
},
"gluetun": {
@@ -578,7 +572,7 @@
"port_forwarded": "Port Forwarded"
},
"hdhomerun": {
"channels": "Channels",
"channels": "Kanaler",
"hd": "HD",
"tunerCount": "Tuners",
"channelNumber": "Channel",
@@ -591,8 +585,8 @@
},
"scrutiny": {
"passed": "Bestået",
"failed": "Failed",
"unknown": "Unknown"
"failed": "Fejlet",
"unknown": "Ukendt"
},
"paperlessngx": {
"inbox": "Indbakke",
@@ -607,18 +601,18 @@
"low_battery": "Lavt batteriniveau"
},
"nextdns": {
"wait": "Please Wait",
"wait": "Vent venligst",
"no_devices": "Ingen Enhedsdata Modtaget"
},
"mikrotik": {
"cpuLoad": "CPU Belastning",
"memoryUsed": "Hukommelse Brugt",
"uptime": "Uptime",
"uptime": "Oppetid",
"numberOfLeases": "Leasinger"
},
"xteve": {
"streams_all": "Alle Streams",
"streams_active": "Active Streams",
"streams_active": "Aktive Streams",
"streams_xepg": "XEPG Kanaler"
},
"opendtu": {
@@ -628,7 +622,7 @@
"limit": "Begrænsning"
},
"opnsense": {
"cpu": "CPU Load",
"cpu": "CPU Belastning",
"memory": "Aktiv Hukommelse",
"wanUpload": "WAN Upload",
"wanDownload": "WAN Download"
@@ -653,8 +647,8 @@
"load": "Belastning Gns",
"memory": "Hukommelse Forbrug",
"wanStatus": "WAN Status",
"up": "Up",
"down": "Down",
"up": "Op",
"down": "Ned",
"temp": "Temp",
"disk": "Disk Forbrug",
"wanIP": "WAN IP"
@@ -666,49 +660,49 @@
"memory_usage": "Hukommelse"
},
"immich": {
"users": "Users",
"users": "Brugere",
"photos": "Billeder",
"videos": "Videos",
"videos": "Videoer",
"storage": "Lager"
},
"uptimekuma": {
"up": "Sider Oppe",
"down": "Sider Nede",
"uptime": "Uptime",
"uptime": "Oppetid",
"incident": "Hændelse",
"m": "m"
},
"atsumeru": {
"series": "Series",
"series": "Serier",
"archives": "Arkiver",
"chapters": "Kapitler",
"categories": "Kategorier"
},
"komga": {
"libraries": "Biblioteker",
"series": "Series",
"books": "Books"
"series": "Serier",
"books": "Bøger"
},
"diskstation": {
"days": "Days",
"uptime": "Uptime",
"volumeAvailable": "Available"
"days": "Dage",
"uptime": "Oppetid",
"volumeAvailable": "Tilgængelig"
},
"mylar": {
"series": "Series",
"series": "Serier",
"issues": "Problemer",
"wanted": "Wanted"
"wanted": "Ønsket"
},
"photoprism": {
"albums": "Albums",
"photos": "Photos",
"videos": "Videos",
"photos": "Billeder",
"videos": "Videoer",
"people": "Mennesker"
},
"fileflows": {
"queue": "Queue",
"processing": "Processing",
"processed": "Processed",
"queue": "",
"processing": "Behandler",
"processed": "Behandlet",
"time": "Tid"
},
"firefly": {
@@ -734,7 +728,7 @@
"size": "Størrelse",
"lastrun": "Sidst Kørt",
"nextrun": "Næste Kørsel",
"failed": "Failed"
"failed": "Fejlet"
},
"unmanic": {
"active_workers": "Aktive Arbejdere",
@@ -751,20 +745,20 @@
"targets_total": "Totale Mål"
},
"gatus": {
"up": "Sites Up",
"down": "Sites Down",
"uptime": "Uptime"
"up": "Sider Oppe",
"down": "Sider Nede",
"uptime": "Oppetid"
},
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_today": "I dag",
"gross_percent_1y": "Et År",
"gross_percent_max": "Altid"
},
"audiobookshelf": {
"podcasts": "Podcasts",
"books": "Books",
"books": "Bøger",
"podcastsDuration": "Varighed",
"booksDuration": "Duration"
"booksDuration": "Varighed"
},
"homeassistant": {
"people_home": "Personer Hjemme",
@@ -773,23 +767,23 @@
},
"whatsupdocker": {
"monitoring": "Overvåger",
"updates": "Updates"
"updates": "Opdateringer"
},
"calibreweb": {
"books": "Books",
"books": "Bøger",
"authors": "Forfattere",
"categories": "Categories",
"series": "Series"
"categories": "Kategorier",
"series": "Serier"
},
"jdownloader": {
"downloadCount": "Queue",
"downloadBytesRemaining": "Remaining",
"downloadTotalBytes": "Size",
"downloadSpeed": "Speed"
"downloadCount": "",
"downloadBytesRemaining": "Manglende",
"downloadTotalBytes": "Størrelse",
"downloadSpeed": "Hastighed"
},
"kavita": {
"seriesCount": "Series",
"totalFiles": "Files"
"seriesCount": "Serier",
"totalFiles": "Filer"
},
"azuredevops": {
"result": "Resultat",
@@ -797,12 +791,12 @@
"buildId": "Build ID",
"succeeded": "Lykkedes",
"notStarted": "Ikke Startet",
"failed": "Failed",
"failed": "Fejlet",
"canceled": "Annulleret",
"inProgress": "I Gang",
"totalPrs": "Total PRs",
"myPrs": "Mine PRs",
"approved": "Approved"
"approved": "Godkendt"
},
"gamedig": {
"status": "Status",
@@ -811,7 +805,7 @@
"name": "Navn",
"map": "Kort",
"currentPlayers": "Nuværende Spillere",
"players": "Players",
"players": "Afspillere",
"maxPlayers": "Maks spillere",
"bots": "Bots",
"ping": "Ping"
@@ -824,39 +818,39 @@
},
"mealie": {
"recipes": "Opskrifter",
"users": "Users",
"categories": "Categories",
"users": "Brugere",
"categories": "Kategorier",
"tags": "Tags"
},
"openmediavault": {
"downloading": "Downloader",
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"passed": "Passed",
"failed": "Failed"
"running": "Kører",
"stopped": "Stoppede",
"passed": "Bestået",
"failed": "Fejlet"
},
"openwrt": {
"uptime": "Uptime",
"uptime": "Oppetid",
"cpuLoad": "CPU Load Avg (5m)",
"up": "Up",
"down": "Down",
"up": "Op",
"down": "Ned",
"bytesTx": "Transmitted",
"bytesRx": "Received"
"bytesRx": "Modtaget"
},
"uptimerobot": {
"status": "Status",
"uptime": "Uptime",
"uptime": "Oppetid",
"lastDown": "Seneste Nedetid",
"downDuration": "Nedetid Varighed",
"sitesUp": "Sites Up",
"sitesDown": "Sites Down",
"paused": "Paused",
"sitesUp": "Sider Oppe",
"sitesDown": "Sider Nede",
"paused": "Pause",
"notyetchecked": "Endnu Ikke Kontrolleret",
"up": "Up",
"up": "Op",
"seemsdown": "Synes Ned",
"down": "Down",
"unknown": "Unknown"
"down": "Ned",
"unknown": "Ukendt"
},
"calendar": {
"inCinemas": "I biografen",
@@ -875,10 +869,10 @@
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domains",
"domains": "Domæner",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
"storage": "Lager"
},
"netdata": {
"warnings": "Advarsler",
@@ -887,12 +881,12 @@
"plantit": {
"events": "Events",
"plants": "Plants",
"photos": "Photos",
"photos": "Billeder",
"species": "Species"
},
"gitea": {
"notifications": "Notifications",
"issues": "Issues",
"issues": "Problemer",
"pulls": "Pull Requests",
"repositories": "Repositories"
},
@@ -908,13 +902,13 @@
"galleries": "Galleries",
"performers": "Performers",
"studios": "Studios",
"movies": "Movies",
"movies": "Film",
"tags": "Tags",
"oCount": "O Count"
},
"tandoor": {
"users": "Users",
"recipes": "Recipes",
"users": "Brugere",
"recipes": "Opskrifter",
"keywords": "Keywords"
},
"homebox": {
@@ -922,17 +916,17 @@
"totalWithWarranty": "With Warranty",
"locations": "Locations",
"labels": "Labels",
"users": "Users",
"users": "Brugere",
"totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"alerts": "Advarsler",
"bans": "Bans"
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"enabled": "Aktiveret",
"disabled": "Deaktiveret",
"total": "Total"
},
"swagdashboard": {
@@ -955,7 +949,7 @@
},
"frigate": {
"cameras": "Cameras",
"uptime": "Uptime",
"uptime": "Oppetid",
"version": "Version"
},
"linkwarden": {
@@ -986,24 +980,24 @@
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"name": "Navn",
"address": "Adresse",
"last_seen": "Sidst Set",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"name": "Navn",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"up": "Op",
"down": "Ned",
"paused": "Pause",
"pending": "Afventer",
"status": "Status",
"updated": "Updated",
"updated": "Opdateret",
"cpu": "CPU",
"memory": "MEM",
"memory": "RAM",
"disk": "Disk",
"network": "NET"
},
@@ -1011,10 +1005,10 @@
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"healthy": "Sund",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"missing": "Mangler",
"suspended": "Suspended"
},
"spoolman": {
@@ -1022,15 +1016,15 @@
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"issues": "Problemer",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Load",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
"load": "Belastning",
"bcharge": "Batteriniveau",
"timeleft": "Resterende tid"
},
"karakeep": {
"bookmarks": "Bookmarks",
@@ -1045,43 +1039,20 @@
"connected": "Connected",
"disconnected": "Disconnected",
"updateStatus": "Update",
"update_yes": "Available",
"update_no": "Up to Date",
"update_yes": "Tilgængelig",
"update_no": "Opdateret",
"downloads": "Downloads",
"uploads": "Uploads",
"sharedFiles": "Files"
"sharedFiles": "Filer"
},
"jellystat": {
"songs": "Songs",
"movies": "Movies",
"episodes": "Episodes",
"songs": "Sange",
"movies": "Film",
"episodes": "Episoder",
"other": "Other"
},
"checkmk": {
"serviceErrors": "Service 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",
"lan_users": "LAN-Benutzer",
"wlan_users": "WLAN-Benutzer",
"up": "Gesendet",
"up": "BETRIEBSZEIT",
"down": "EMPFANGEN",
"wait": "Bitte warten",
"empty_data": "Subsystem-Status unbekannt"
@@ -93,8 +93,8 @@
"http_status": "HTTP-Status",
"error": "Fehler",
"response": "Antwort",
"down": "Online",
"up": "Offline",
"down": "Offline",
"up": "Online",
"not_available": "Nicht verfügbar"
},
"emby": {
@@ -111,7 +111,7 @@
"offline": "Offline",
"offline_alt": "Offline",
"online": "Online",
"total": "Total",
"total": "Gesamt",
"unknown": "Unbekannt"
},
"evcc": {
@@ -144,13 +144,13 @@
"uptime": "Betriebszeit",
"maxDown": "Max. Down",
"maxUp": "Max. Up",
"down": "Download",
"up": "Upload",
"down": "Offline",
"up": "Online",
"received": "Empfangen",
"sent": "Gesendet",
"externalIPAddress": "Externe IP",
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Präfix"
"externalIPv6Address": "Externe IPv6",
"externalIPv6Prefix": "Externes IPv6-Präfix"
},
"caddy": {
"upstreams": "Upstreams",
@@ -165,10 +165,10 @@
"shows": "Serien",
"recordings": "Aufnahmen",
"scheduled": "Geplant",
"passes": "Durchläufe"
"passes": "Pässe"
},
"tautulli": {
"playing": "Spielt",
"playing": "Wiedergabe",
"transcoding": "Transcodiert",
"bitrate": "Bitrate",
"no_active": "Keine aktiven Streams",
@@ -193,7 +193,7 @@
"tv": "TV-Serien"
},
"sabnzbd": {
"rate": "Rate",
"rate": "Datenrate",
"queue": "Warteschlange",
"timeleft": "Verbleibende Zeit"
},
@@ -273,18 +273,18 @@
"available": "Verfügbar"
},
"jellyseerr": {
"pending": "Wartend",
"pending": "Ausstehend",
"approved": "Genehmigt",
"available": "Verfügbar"
},
"overseerr": {
"pending": "Wartend",
"pending": "Ausstehend",
"processing": "Wird verarbeitet",
"approved": "Genehmigt",
"available": "Verfügbar"
},
"netalertx": {
"total": "Total",
"total": "Gesamt",
"connected": "Verbunden",
"new_devices": "Neue Geräte",
"down_alerts": "Down-Warnungen"
@@ -309,7 +309,7 @@
"portainer": {
"running": "Wird ausgeführt",
"stopped": "Gestoppt",
"total": "Total"
"total": "Gesamt"
},
"suwayomi": {
"download": "Heruntergeladen",
@@ -359,12 +359,6 @@
"services": "Dienste",
"middleware": "Middleware"
},
"trilium": {
"version": "Version",
"notesCount": "Notizen",
"dbSize": "Datenbankgröße",
"unknown": "Unbekannt"
},
"navidrome": {
"nothing_streaming": "Keine aktiven Streams",
"please_wait": "Bitte warten"
@@ -372,7 +366,7 @@
"npm": {
"enabled": "Aktiviert",
"disabled": "Deaktiviert",
"total": "Total"
"total": "Gesamt"
},
"coinmarketcap": {
"configure": "Konfiguriere eine oder mehrere Kryptowährungen zur Beobachtung",
@@ -383,7 +377,7 @@
},
"gotify": {
"apps": "Programme",
"clients": "Endgeräte",
"clients": "Benutzer",
"messages": "Nachrichten"
},
"prowlarr": {
@@ -401,7 +395,7 @@
"numActiveSessions": "Sitzungen",
"numConnections": "Verbindungen",
"dataRelayed": "Weitergeleitet",
"transferRate": "Rate"
"transferRate": "Datenrate"
},
"mastodon": {
"user_count": "Benutzer",
@@ -439,17 +433,17 @@
"cpu": "CPU",
"load": "Last",
"wait": "Bitte warten",
"temp": "Temp",
"temp": "TEMP",
"_temp": "Temperatur",
"warn": "Warnung",
"uptime": "Betriebszeit",
"total": "Total",
"uptime": "BETRIEBSZEIT",
"total": "Gesamt",
"free": "Frei",
"used": "Benutzt",
"used": "In Benutzung",
"days": "d",
"hours": "h",
"crit": "Krit",
"read": "Lesen",
"read": "Gelesen",
"write": "Schreiben",
"gpu": "GPU",
"mem": "RAM",
@@ -474,37 +468,37 @@
"3-day": "Bewölkt",
"3-night": "Bewölkt",
"45-day": "neblig",
"45-night": "Nebel",
"48-day": "Nebel",
"48-night": "Nebel",
"45-night": "neblig",
"48-day": "neblig",
"48-night": "neblig",
"51-day": "leichter Nieselregen",
"51-night": "Leichter Nieselregen",
"51-night": "leichter Nieselregen",
"53-day": "Nieselregen",
"53-night": "Nieselregen",
"55-day": "starker Nieselregen",
"55-night": "Starker Nieselregen",
"55-night": "starker Nieselregen",
"56-day": "leichter gefrierender Nieselregen",
"56-night": "Leicht gefrierender Nieselregen",
"56-night": "leichter gefrierender Nieselregen",
"57-day": "gefrierender Nieselregen",
"57-night": "Gefrierender Nieselregen",
"57-night": "gefrierender Nieselregen",
"61-day": "leichter Regen",
"61-night": "Leichter Regen",
"61-night": "leichter Regen",
"63-day": "Regen",
"63-night": "Regen",
"65-day": "starker Regen",
"65-night": "Starker Regen",
"65-night": "starker Regen",
"66-day": "Gefrierender Regen",
"66-night": "Gefrierender Regen",
"67-day": "Gefrierender Regen",
"67-night": "Gefrierender Regen",
"71-day": "Leichter Schneefall",
"71-night": "Leichter Schnee",
"71-night": "Leichter Schneefall",
"73-day": "Schnee",
"73-night": "Schnee",
"75-day": "Starker Schneefall",
"75-night": "Starker Schnee",
"75-night": "Starker Schneefall",
"77-day": "Schneegriesel",
"77-night": "Schneekörner",
"77-night": "Schneegriesel",
"80-day": "Leichte Schauer",
"80-night": "Leichte Schauer",
"81-day": "Schauer",
@@ -516,11 +510,11 @@
"86-day": "Schneeschauer",
"86-night": "Schneeschauer",
"95-day": "Gewitter",
"95-night": "Sturm",
"95-night": "Gewitter",
"96-day": "Gewitter mit Hagel",
"96-night": "Sturm mit Hagel",
"99-day": "Sturm mit Hagel",
"99-night": "Sturm mit Hagel"
"96-night": "Gewitter mit Hagel",
"99-day": "Gewitter mit Hagel",
"99-night": "Gewitter mit Hagel"
},
"homebridge": {
"available_update": "System",
@@ -530,7 +524,7 @@
"child_bridges": "Unter-Bridges",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "Online",
"pending": "Wartend",
"pending": "Ausstehend",
"down": "Offline"
},
"healthchecks": {
@@ -552,7 +546,7 @@
"approvedPushes": "Genehmigt",
"rejectedPushes": "Abgelehnt",
"filters": "Filter",
"indexers": "Indexierer"
"indexers": "Indexer"
},
"tubearchivist": {
"downloads": "Warteschlange",
@@ -563,13 +557,13 @@
"truenas": {
"load": "Systemlast",
"uptime": "Betriebszeit",
"alerts": "Alarme"
"alerts": "Warnungen"
},
"pyload": {
"speed": "Datenrate",
"active": "Aktiv",
"queue": "Warteschlange",
"total": "Total"
"total": "Gesamt"
},
"gluetun": {
"public_ip": "Öffentliche IP",
@@ -591,12 +585,12 @@
},
"scrutiny": {
"passed": "Bestanden",
"failed": "Fehlerhaft",
"failed": "Fehlgeschlagen",
"unknown": "Unbekannt"
},
"paperlessngx": {
"inbox": "Posteingang",
"total": "Total"
"total": "Gesamt"
},
"peanut": {
"battery_charge": "Akkuladung",
@@ -628,7 +622,7 @@
"limit": "Grenze"
},
"opnsense": {
"cpu": "CPU-Last",
"cpu": "CPU-Auslastung",
"memory": "Aktiver RAM",
"wanUpload": "WAN-Upload",
"wanDownload": "WAN-Download"
@@ -655,7 +649,7 @@
"wanStatus": "WAN-Status",
"up": "Online",
"down": "Offline",
"temp": "Temp",
"temp": "Temperatur",
"disk": "Datenträgernutzung",
"wanIP": "WAN-IP"
},
@@ -676,7 +670,7 @@
"down": "Down",
"uptime": "Betriebszeit",
"incident": "Vorfall",
"m": "m"
"m": "min"
},
"atsumeru": {
"series": "Serien",
@@ -708,7 +702,7 @@
"fileflows": {
"queue": "Warteschlange",
"processing": "Wird verarbeitet",
"processed": "Wird verarbeitet",
"processed": "Verarbeitet",
"time": "Zeit"
},
"firefly": {
@@ -734,7 +728,7 @@
"size": "Größe",
"lastrun": "Letzter Durchlauf",
"nextrun": "Nächster Durchlauf",
"failed": "Fehlerhaft"
"failed": "Fehlgeschlagen"
},
"unmanic": {
"active_workers": "Aktive Worker",
@@ -751,8 +745,8 @@
"targets_total": "Alle Ziele"
},
"gatus": {
"up": "Seiten online",
"down": "Seiten offline",
"up": "Up",
"down": "Down",
"uptime": "Betriebszeit"
},
"ghostfolio": {
@@ -785,7 +779,7 @@
"downloadCount": "Warteschlange",
"downloadBytesRemaining": "Verbleibend",
"downloadTotalBytes": "Größe",
"downloadSpeed": "Geschwindigkeit"
"downloadSpeed": "Datenrate"
},
"kavita": {
"seriesCount": "Serien",
@@ -797,7 +791,7 @@
"buildId": "Build-ID",
"succeeded": "Erfolgreich",
"notStarted": "Nicht gestartet",
"failed": "Fehlerhaft",
"failed": "Fehlgeschlagen",
"canceled": "Abgebrochen",
"inProgress": "In Bearbeitung",
"totalPrs": "PRs gesamt",
@@ -830,11 +824,11 @@
},
"openmediavault": {
"downloading": "Wird heruntergeladen",
"total": "Total",
"total": "Gesamt",
"running": "Wird ausgeführt",
"stopped": "Gestoppt",
"passed": "Erfolgreich",
"failed": "Fehlerhaft"
"passed": "Bestanden",
"failed": "Fehlgeschlagen"
},
"openwrt": {
"uptime": "Betriebszeit",
@@ -849,13 +843,13 @@
"uptime": "Betriebszeit",
"lastDown": "Letzter Ausfall",
"downDuration": "Ausfalldauer",
"sitesUp": "Seiten online",
"sitesDown": "Seiten offline",
"sitesUp": "Up",
"sitesDown": "Down",
"paused": "Pausiert",
"notyetchecked": "Noch nicht geprüft",
"up": "Online",
"seemsdown": "Scheint nicht verfügbar",
"down": "Unbekannt",
"down": "Offline",
"unknown": "Unbekannt"
},
"calendar": {
@@ -875,7 +869,7 @@
"totalfilesize": "Gesamtgröße"
},
"mailcow": {
"domains": "Domains",
"domains": "Domänen",
"mailboxes": "Postfächer",
"mails": "E-Mails",
"storage": "Speicher"
@@ -909,7 +903,7 @@
"performers": "Darsteller",
"studios": "Studios",
"movies": "Filme",
"tags": "Tags",
"tags": "Schlagwörter",
"oCount": "O-Anzahl"
},
"tandoor": {
@@ -926,14 +920,14 @@
"totalValue": "Gesamtwert"
},
"crowdsec": {
"alerts": "Alarme",
"alerts": "Warnungen",
"bans": "Banns"
},
"wgeasy": {
"connected": "Verbunden",
"enabled": "Aktiviert",
"disabled": "Deaktiviert",
"total": "Total"
"total": "Gesamt"
},
"swagdashboard": {
"proxied": "Proxied",
@@ -961,11 +955,11 @@
"linkwarden": {
"links": "Links",
"collections": "Sammlungen",
"tags": "Tags"
"tags": "Schlagwörter"
},
"zabbix": {
"unclassified": "Nicht klassifiziert",
"information": "Information",
"information": "Informationen",
"warning": "Warnung",
"average": "Durchschnitt",
"high": "Hoch",
@@ -996,12 +990,12 @@
"beszel": {
"name": "Name",
"systems": "Systeme",
"up": "Offline",
"up": "Online",
"down": "Offline",
"paused": "Pausiert",
"pending": "Wartend",
"pending": "Ausstehend",
"status": "Status",
"updated": "Aktuell",
"updated": "Aktualisiert",
"cpu": "CPU",
"memory": "RAM",
"disk": "Festplatte",
@@ -1011,14 +1005,14 @@
"apps": "Anwendungen",
"synced": "Synchronisiert",
"outOfSync": "Nicht mehr synchronisiert",
"healthy": "Gesund",
"healthy": "Fehlerfrei",
"degraded": "Beeinträchtigt",
"progressing": "Fortschritt",
"missing": "Fehlend",
"suspended": "Unterbrochen"
},
"spoolman": {
"loading": "Lädt"
"loading": "Wird geladen"
},
"gitlab": {
"groups": "Gruppen",
@@ -1029,7 +1023,7 @@
"apcups": {
"status": "Status",
"load": "Last",
"bcharge": "Batterieladung",
"bcharge": "Akkuladung",
"timeleft": "Verbleibende Zeit"
},
"karakeep": {
@@ -1038,7 +1032,7 @@
"archived": "Archiviert",
"highlights": "Highlights",
"lists": "Listen",
"tags": "Tags"
"tags": "Schlagwörter"
},
"slskd": {
"slskStatus": "Netzwerk",
@@ -1060,28 +1054,5 @@
"checkmk": {
"serviceErrors": "Dienstprobleme",
"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",
"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-Uzantoj",
"up": "UP",
"down": "DOWN",
"wait": "Please wait",
"wait": "Bonvolu atendi",
"empty_data": "Subsistemostatuso nekonata"
},
"docker": {
"rx": "RX",
"tx": "TX",
"mem": "MEM",
"cpu": "CPU",
"cpu": "Ĉefprocesoro",
"running": "Rulata",
"offline": "Malkonekta",
"error": "Eraro",
@@ -83,7 +83,7 @@
"partial": "Parta"
},
"ping": {
"error": "Error",
"error": "Eraro",
"ping": "Sondaĵo",
"down": "Down",
"up": "Up",
@@ -91,7 +91,7 @@
},
"siteMonitor": {
"http_status": "HTTP status",
"error": "Error",
"error": "Eraro",
"response": "Response",
"down": "Down",
"up": "Up",
@@ -108,11 +108,11 @@
"songs": "Kantoj"
},
"esphome": {
"offline": "Offline",
"offline_alt": "Offline",
"offline": "Malkonekta",
"offline_alt": "Malkonekta",
"online": "Online",
"total": "Total",
"unknown": "Unknown"
"total": "Totalo",
"unknown": "Nekonata"
},
"evcc": {
"pv_power": "Production",
@@ -133,7 +133,7 @@
"unread": "Unread"
},
"fritzbox": {
"connectionStatus": "Status",
"connectionStatus": "Stato",
"connectionStatusUnconfigured": "Unconfigured",
"connectionStatusConnecting": "Connecting",
"connectionStatusAuthenticating": "Authenticating",
@@ -168,9 +168,9 @@
"passes": "Passes"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"bitrate": "Bitrate",
"playing": "Ludante",
"transcoding": "Transkodigo",
"bitrate": "Bitrapido",
"no_active": "No Active Streams",
"plex_connection_error": "Check Plex Connection"
},
@@ -189,7 +189,7 @@
"plex": {
"streams": "Active Streams",
"albums": "Albums",
"movies": "Movies",
"movies": "Filmoj",
"tv": "Televidprogramoj"
},
"sabnzbd": {
@@ -199,18 +199,18 @@
},
"rutorrent": {
"active": "Active",
"upload": "Upload",
"download": "Download"
"upload": "Alŝuti",
"download": "Elŝuti"
},
"transmission": {
"download": "Download",
"upload": "Upload",
"download": "Elŝuti",
"upload": "Alŝuti",
"leech": "Leech",
"seed": "Seed"
},
"qbittorrent": {
"download": "Download",
"upload": "Upload",
"download": "Elŝuti",
"upload": "Alŝuti",
"leech": "Leech",
"seed": "Seed"
},
@@ -223,8 +223,8 @@
"invalid": "Invalid"
},
"deluge": {
"download": "Download",
"upload": "Upload",
"download": "Elŝuti",
"upload": "Alŝuti",
"leech": "Leech",
"seed": "Seed"
},
@@ -233,25 +233,25 @@
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": {
"download": "Download",
"upload": "Upload",
"download": "Elŝuti",
"upload": "Alŝuti",
"leech": "Leech",
"seed": "Seed"
},
"sonarr": {
"wanted": "Wanted",
"queued": "Queued",
"series": "Series",
"series": "Serioj",
"queue": "Queue",
"unknown": "Unknown"
"unknown": "Nekonata"
},
"radarr": {
"wanted": "Wanted",
"missing": "Missing",
"queued": "Queued",
"movies": "Movies",
"movies": "Filmoj",
"queue": "Queue",
"unknown": "Unknown"
"unknown": "Nekonata"
},
"lidarr": {
"wanted": "Wanted",
@@ -274,17 +274,17 @@
},
"jellyseerr": {
"pending": "Pending",
"approved": "Approved",
"available": "Available"
"approved": "Aprobita",
"available": "Havebla"
},
"overseerr": {
"pending": "Pending",
"processing": "Processing",
"approved": "Approved",
"available": "Available"
"approved": "Aprobita",
"available": "Havebla"
},
"netalertx": {
"total": "Total",
"total": "Totalo",
"connected": "Connected",
"new_devices": "New Devices",
"down_alerts": "Down Alerts"
@@ -302,14 +302,14 @@
"latency": "Latency"
},
"speedtest": {
"upload": "Upload",
"download": "Download",
"ping": "Ping"
"upload": "Alŝuti",
"download": "Elŝuti",
"ping": "Sondaĵo"
},
"portainer": {
"running": "Running",
"running": "Rulata",
"stopped": "Stopped",
"total": "Total"
"total": "Totalo"
},
"suwayomi": {
"download": "Downloaded",
@@ -359,12 +359,6 @@
"services": "Servoj",
"middleware": "Middleware"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"please_wait": "Please Wait"
@@ -372,7 +366,7 @@
"npm": {
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"total": "Totalo"
},
"coinmarketcap": {
"configure": "Configure one or more crypto currencies to track",
@@ -383,7 +377,7 @@
},
"gotify": {
"apps": "Applications",
"clients": "Clients",
"clients": "Klientoj",
"messages": "Mesaĝoj"
},
"prowlarr": {
@@ -404,48 +398,48 @@
"transferRate": "Rate"
},
"mastodon": {
"user_count": "Users",
"user_count": "Uzantoj",
"status_count": "Afiŝoj",
"domain_count": "Domains"
},
"medusa": {
"wanted": "Wanted",
"queued": "Queued",
"series": "Series"
"series": "Serioj"
},
"minecraft": {
"players": "Players",
"version": "Version",
"status": "Status",
"status": "Stato",
"up": "Online",
"down": "Offline"
"down": "Malkonekta"
},
"miniflux": {
"read": "Read",
"unread": "Unread"
},
"authentik": {
"users": "Users",
"users": "Uzantoj",
"loginsLast24H": "Logins (24h)",
"failedLoginsLast24H": "Failed Logins (24h)"
},
"proxmox": {
"mem": "MEM",
"cpu": "CPU",
"cpu": "Ĉefprocesoro",
"lxc": "LXC",
"vms": "VMs"
},
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"cpu": "Ĉefprocesoro",
"load": "Ŝarĝo",
"wait": "Bonvolu atendi",
"temp": "TEMP",
"_temp": "Temp",
"warn": "Warn",
"uptime": "UP",
"total": "Total",
"free": "Free",
"used": "Used",
"total": "Totalo",
"free": "Libera",
"used": "Uzata",
"days": "d",
"hours": "h",
"crit": "Crit",
@@ -470,13 +464,13 @@
"1-day": "Mainly Sunny",
"1-night": "Mainly Clear",
"2-day": "Nubeta",
"2-night": "Partly Cloudy",
"2-night": "Nubeta",
"3-day": "Nuba",
"3-night": "Cloudy",
"3-night": "Nuba",
"45-day": "Nebula",
"45-night": "Foggy",
"48-day": "Foggy",
"48-night": "Foggy",
"45-night": "Nebula",
"48-day": "Nebula",
"48-night": "Nebula",
"51-day": "Light Drizzle",
"51-night": "Light Drizzle",
"53-day": "Drizzle",
@@ -490,19 +484,19 @@
"61-day": "Light Rain",
"61-night": "Light Rain",
"63-day": "Pluvo",
"63-night": "Rain",
"63-night": "Pluvo",
"65-day": "Pluvego",
"65-night": "Heavy Rain",
"65-night": "Pluvego",
"66-day": "Frosta pluvo",
"66-night": "Freezing Rain",
"67-day": "Freezing Rain",
"67-night": "Freezing Rain",
"66-night": "Frosta pluvo",
"67-day": "Frosta pluvo",
"67-night": "Frosta pluvo",
"71-day": "Light Snow",
"71-night": "Light Snow",
"73-day": "Neĝo",
"73-night": "Snow",
"73-night": "Neĝo",
"75-day": "Neĝego",
"75-night": "Heavy Snow",
"75-night": "Neĝego",
"77-day": "Snow Grains",
"77-night": "Snow Grains",
"80-day": "Light Showers",
@@ -516,11 +510,11 @@
"86-day": "Snow Showers",
"86-night": "Snow Showers",
"95-day": "Fulmotondro",
"95-night": "Thunderstorm",
"95-night": "Fulmotondro",
"96-day": "Fulmotondro kun hajlo",
"96-night": "Thunderstorm With Hail",
"99-day": "Thunderstorm With Hail",
"99-night": "Thunderstorm With Hail"
"96-night": "Fulmotondro kun hajlo",
"99-day": "Fulmotondro kun hajlo",
"99-night": "Fulmotondro kun hajlo"
},
"homebridge": {
"available_update": "Sistemo",
@@ -539,7 +533,7 @@
"grace": "In Grace Period",
"down": "Down",
"paused": "Paused",
"status": "Status",
"status": "Stato",
"last_ping": "Last Ping",
"never": "No pings yet"
},
@@ -549,7 +543,7 @@
"containers_failed": "Failed"
},
"autobrr": {
"approvedPushes": "Approved",
"approvedPushes": "Aprobita",
"rejectedPushes": "Rejected",
"filters": "Filtriloj",
"indexers": "Indexers"
@@ -569,7 +563,7 @@
"speed": "Speed",
"active": "Active",
"queue": "Queue",
"total": "Total"
"total": "Totalo"
},
"gluetun": {
"public_ip": "Public IP",
@@ -578,7 +572,7 @@
"port_forwarded": "Port Forwarded"
},
"hdhomerun": {
"channels": "Channels",
"channels": "Kanaloj",
"hd": "HD",
"tunerCount": "Tuners",
"channelNumber": "Channel",
@@ -586,17 +580,17 @@
"signalStrength": "Strength",
"signalQuality": "Quality",
"symbolQuality": "Quality",
"networkRate": "Bitrate",
"networkRate": "Bitrapido",
"clientIP": "Client"
},
"scrutiny": {
"passed": "Passed",
"failed": "Failed",
"unknown": "Unknown"
"unknown": "Nekonata"
},
"paperlessngx": {
"inbox": "Inbox",
"total": "Total"
"total": "Totalo"
},
"peanut": {
"battery_charge": "Battery Charge",
@@ -640,14 +634,14 @@
"layers": "Layers"
},
"octoprint": {
"printer_state": "Status",
"printer_state": "Stato",
"temp_tool": "Tool temp",
"temp_bed": "Bed temp",
"job_completion": "Completion"
},
"cloudflared": {
"origin_ip": "Origin IP",
"status": "Status"
"status": "Stato"
},
"pfsense": {
"load": "Load Avg",
@@ -662,11 +656,11 @@
"proxmoxbackupserver": {
"datastore_usage": "Datastore",
"failed_tasks_24h": "Failed Tasks 24h",
"cpu_usage": "CPU",
"cpu_usage": "Ĉefprocesoro",
"memory_usage": "Memory"
},
"immich": {
"users": "Users",
"users": "Uzantoj",
"photos": "Photos",
"videos": "Videos",
"storage": "Storage"
@@ -679,23 +673,23 @@
"m": "m"
},
"atsumeru": {
"series": "Series",
"series": "Serioj",
"archives": "Archives",
"chapters": "Chapters",
"categories": "Categories"
},
"komga": {
"libraries": "Libraries",
"series": "Series",
"books": "Books"
"series": "Serioj",
"books": "Libroj"
},
"diskstation": {
"days": "Days",
"days": "Tagoj",
"uptime": "Uptime",
"volumeAvailable": "Available"
"volumeAvailable": "Havebla"
},
"mylar": {
"series": "Series",
"series": "Serioj",
"issues": "Issues",
"wanted": "Wanted"
},
@@ -730,7 +724,7 @@
"numshares": "Shared Items"
},
"kopia": {
"status": "Status",
"status": "Stato",
"size": "Size",
"lastrun": "Last Run",
"nextrun": "Next Run",
@@ -762,7 +756,7 @@
},
"audiobookshelf": {
"podcasts": "Podcasts",
"books": "Books",
"books": "Libroj",
"podcastsDuration": "Duration",
"booksDuration": "Duration"
},
@@ -776,10 +770,10 @@
"updates": "Updates"
},
"calibreweb": {
"books": "Books",
"books": "Libroj",
"authors": "Authors",
"categories": "Categories",
"series": "Series"
"series": "Serioj"
},
"jdownloader": {
"downloadCount": "Queue",
@@ -788,12 +782,12 @@
"downloadSpeed": "Speed"
},
"kavita": {
"seriesCount": "Series",
"seriesCount": "Serioj",
"totalFiles": "Files"
},
"azuredevops": {
"result": "Result",
"status": "Status",
"status": "Stato",
"buildId": "Build ID",
"succeeded": "Succeeded",
"notStarted": "Not Started",
@@ -802,19 +796,19 @@
"inProgress": "In Progress",
"totalPrs": "Total PRs",
"myPrs": "My PRs",
"approved": "Approved"
"approved": "Aprobita"
},
"gamedig": {
"status": "Status",
"status": "Stato",
"online": "Online",
"offline": "Offline",
"offline": "Malkonekta",
"name": "Name",
"map": "Map",
"currentPlayers": "Current players",
"players": "Players",
"maxPlayers": "Max players",
"bots": "Bots",
"ping": "Ping"
"ping": "Sondaĵo"
},
"urbackup": {
"ok": "Ok",
@@ -824,14 +818,14 @@
},
"mealie": {
"recipes": "Recipes",
"users": "Users",
"users": "Uzantoj",
"categories": "Categories",
"tags": "Tags"
},
"openmediavault": {
"downloading": "Downloading",
"total": "Total",
"running": "Running",
"total": "Totalo",
"running": "Rulata",
"stopped": "Stopped",
"passed": "Passed",
"failed": "Failed"
@@ -845,7 +839,7 @@
"bytesRx": "Received"
},
"uptimerobot": {
"status": "Status",
"status": "Stato",
"uptime": "Uptime",
"lastDown": "Last Downtime",
"downDuration": "Downtime Duration",
@@ -856,7 +850,7 @@
"up": "Up",
"seemsdown": "Seems Down",
"down": "Down",
"unknown": "Unknown"
"unknown": "Nekonata"
},
"calendar": {
"inCinemas": "In cinemas",
@@ -908,12 +902,12 @@
"galleries": "Galleries",
"performers": "Performers",
"studios": "Studios",
"movies": "Movies",
"movies": "Filmoj",
"tags": "Tags",
"oCount": "O Count"
},
"tandoor": {
"users": "Users",
"users": "Uzantoj",
"recipes": "Recipes",
"keywords": "Keywords"
},
@@ -922,7 +916,7 @@
"totalWithWarranty": "With Warranty",
"locations": "Locations",
"labels": "Labels",
"users": "Users",
"users": "Uzantoj",
"totalValue": "Total Value"
},
"crowdsec": {
@@ -933,7 +927,7 @@
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"total": "Totalo"
},
"swagdashboard": {
"proxied": "Proxied",
@@ -942,9 +936,9 @@
"banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
"ping": "Sondaĵo",
"download": "Elŝuti",
"upload": "Alŝuti"
},
"stocks": {
"stocks": "Stocks",
@@ -965,7 +959,7 @@
},
"zabbix": {
"unclassified": "Not classified",
"information": "Information",
"information": "Informo",
"warning": "Warning",
"average": "Average",
"high": "High",
@@ -989,9 +983,9 @@
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"status": "Stato",
"online": "Online",
"offline": "Offline"
"offline": "Malkonekta"
},
"beszel": {
"name": "Name",
@@ -1000,9 +994,9 @@
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Status",
"status": "Stato",
"updated": "Updated",
"cpu": "CPU",
"cpu": "Ĉefprocesoro",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
@@ -1011,7 +1005,7 @@
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"healthy": "Sana",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
@@ -1027,8 +1021,8 @@
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Load",
"status": "Stato",
"load": "Ŝarĝo",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
},
@@ -1045,43 +1039,20 @@
"connected": "Connected",
"disconnected": "Disconnected",
"updateStatus": "Update",
"update_yes": "Available",
"update_yes": "Havebla",
"update_no": "Up to Date",
"downloads": "Downloads",
"uploads": "Uploads",
"sharedFiles": "Files"
},
"jellystat": {
"songs": "Songs",
"movies": "Movies",
"episodes": "Episodes",
"songs": "Kantoj",
"movies": "Filmoj",
"episodes": "Epizodoj",
"other": "Other"
},
"checkmk": {
"serviceErrors": "Service 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

@@ -63,7 +63,7 @@
"wlan_users": "WLAN Erabiltzaileak",
"up": "UP",
"down": "DOWN",
"wait": "Please wait",
"wait": "Itxaron mesedez",
"empty_data": "Subsystem status unknown"
},
"docker": {
@@ -93,8 +93,8 @@
"http_status": "HTTP status",
"error": "Error",
"response": "Erantzuna",
"down": "Down",
"up": "Up",
"down": "Behera",
"up": "Gora",
"not_available": "Not Available"
},
"emby": {
@@ -111,8 +111,8 @@
"offline": "Offline",
"offline_alt": "Offline",
"online": "Online",
"total": "Total",
"unknown": "Unknown"
"total": "Guztira",
"unknown": "Ezezaguna"
},
"evcc": {
"pv_power": "Produkzioak",
@@ -144,8 +144,8 @@
"uptime": "Uptime",
"maxDown": "Max. Down",
"maxUp": "Max. Up",
"down": "Down",
"up": "Up",
"down": "Behera",
"up": "Gora",
"received": "Received",
"sent": "Bidalita",
"externalIPAddress": "Ext. IP",
@@ -170,7 +170,7 @@
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"bitrate": "Bitrate",
"bitrate": "Bit-tasa",
"no_active": "No Active Streams",
"plex_connection_error": "Check Plex Connection"
},
@@ -189,7 +189,7 @@
"plex": {
"streams": "Active Streams",
"albums": "Albums",
"movies": "Movies",
"movies": "Filmak",
"tv": "TV Shows"
},
"sabnzbd": {
@@ -199,18 +199,18 @@
},
"rutorrent": {
"active": "Active",
"upload": "Upload",
"download": "Download"
"upload": "Kargatu",
"download": "Jeitsierak"
},
"transmission": {
"download": "Download",
"upload": "Upload",
"download": "Jeitsierak",
"upload": "Kargatu",
"leech": "Leech",
"seed": "Seed"
},
"qbittorrent": {
"download": "Download",
"upload": "Upload",
"download": "Jeitsierak",
"upload": "Kargatu",
"leech": "Leech",
"seed": "Seed"
},
@@ -223,8 +223,8 @@
"invalid": "Invalid"
},
"deluge": {
"download": "Download",
"upload": "Upload",
"download": "Jeitsierak",
"upload": "Kargatu",
"leech": "Leech",
"seed": "Seed"
},
@@ -233,25 +233,25 @@
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": {
"download": "Download",
"upload": "Upload",
"download": "Jeitsierak",
"upload": "Kargatu",
"leech": "Leech",
"seed": "Seed"
},
"sonarr": {
"wanted": "Wanted",
"queued": "Queued",
"series": "Series",
"series": "Serieak",
"queue": "Queue",
"unknown": "Unknown"
"unknown": "Ezezaguna"
},
"radarr": {
"wanted": "Wanted",
"missing": "Missing",
"queued": "Queued",
"movies": "Movies",
"movies": "Filmak",
"queue": "Queue",
"unknown": "Unknown"
"unknown": "Ezezaguna"
},
"lidarr": {
"wanted": "Wanted",
@@ -284,8 +284,8 @@
"available": "Available"
},
"netalertx": {
"total": "Total",
"connected": "Connected",
"total": "Guztira",
"connected": "Konektatuta",
"new_devices": "New Devices",
"down_alerts": "Down Alerts"
},
@@ -302,20 +302,20 @@
"latency": "Latency"
},
"speedtest": {
"upload": "Upload",
"download": "Download",
"upload": "Kargatu",
"download": "Jeitsierak",
"ping": "Ping"
},
"portainer": {
"running": "Running",
"stopped": "Stopped",
"total": "Total"
"total": "Guztira"
},
"suwayomi": {
"download": "Downloaded",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"unread": "Irakurri gabe",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
@@ -359,12 +359,6 @@
"services": "Services",
"middleware": "Middleware"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"please_wait": "Please Wait"
@@ -372,7 +366,7 @@
"npm": {
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"total": "Guztira"
},
"coinmarketcap": {
"configure": "Configure one or more crypto currencies to track",
@@ -411,7 +405,7 @@
"medusa": {
"wanted": "Wanted",
"queued": "Queued",
"series": "Series"
"series": "Serieak"
},
"minecraft": {
"players": "Jokalariak",
@@ -422,7 +416,7 @@
},
"miniflux": {
"read": "Read",
"unread": "Unread"
"unread": "Irakurri gabe"
},
"authentik": {
"users": "Users",
@@ -438,14 +432,14 @@
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"wait": "Itxaron mesedez",
"temp": "TEMP",
"_temp": "Temp",
"warn": "Warn",
"uptime": "UP",
"total": "Total",
"total": "Guztira",
"free": "Free",
"used": "Used",
"used": "Erabilita",
"days": "d",
"hours": "h",
"crit": "Crit",
@@ -529,15 +523,15 @@
"up_to_date": "Up to Date",
"child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "Up",
"up": "Gora",
"pending": "Pending",
"down": "Down"
"down": "Behera"
},
"healthchecks": {
"new": "New",
"up": "Up",
"up": "Gora",
"grace": "In Grace Period",
"down": "Down",
"down": "Behera",
"paused": "Paused",
"status": "Status",
"last_ping": "Last Ping",
@@ -569,7 +563,7 @@
"speed": "Speed",
"active": "Active",
"queue": "Queue",
"total": "Total"
"total": "Guztira"
},
"gluetun": {
"public_ip": "Public IP",
@@ -586,17 +580,17 @@
"signalStrength": "Strength",
"signalQuality": "Quality",
"symbolQuality": "Quality",
"networkRate": "Bitrate",
"networkRate": "Bit-tasa",
"clientIP": "Client"
},
"scrutiny": {
"passed": "Passed",
"failed": "Failed",
"unknown": "Unknown"
"unknown": "Ezezaguna"
},
"paperlessngx": {
"inbox": "Inbox",
"total": "Total"
"total": "Guztira"
},
"peanut": {
"battery_charge": "Battery Charge",
@@ -653,8 +647,8 @@
"load": "Load Avg",
"memory": "Mem Usage",
"wanStatus": "WAN Status",
"up": "Up",
"down": "Down",
"up": "Gora",
"down": "Behera",
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
@@ -679,29 +673,29 @@
"m": "m"
},
"atsumeru": {
"series": "Series",
"series": "Serieak",
"archives": "Archives",
"chapters": "Chapters",
"categories": "Categories"
},
"komga": {
"libraries": "Libraries",
"series": "Series",
"series": "Serieak",
"books": "Books"
},
"diskstation": {
"days": "Days",
"days": "Egun",
"uptime": "Uptime",
"volumeAvailable": "Available"
},
"mylar": {
"series": "Series",
"series": "Serieak",
"issues": "Arazoak",
"wanted": "Wanted"
},
"photoprism": {
"albums": "Albums",
"photos": "Photos",
"photos": "Argazkiak",
"videos": "Videos",
"people": "People"
},
@@ -779,7 +773,7 @@
"books": "Books",
"authors": "Authors",
"categories": "Categories",
"series": "Series"
"series": "Serieak"
},
"jdownloader": {
"downloadCount": "Queue",
@@ -788,7 +782,7 @@
"downloadSpeed": "Speed"
},
"kavita": {
"seriesCount": "Series",
"seriesCount": "Serieak",
"totalFiles": "Files"
},
"azuredevops": {
@@ -811,7 +805,7 @@
"name": "Izena",
"map": "Mapa",
"currentPlayers": "Current players",
"players": "Players",
"players": "Jokalariak",
"maxPlayers": "Max players",
"bots": "Bots",
"ping": "Ping"
@@ -830,7 +824,7 @@
},
"openmediavault": {
"downloading": "Deskargatzen",
"total": "Total",
"total": "Guztira",
"running": "Running",
"stopped": "Stopped",
"passed": "Passed",
@@ -839,8 +833,8 @@
"openwrt": {
"uptime": "Uptime",
"cpuLoad": "CPU Load Avg (5m)",
"up": "Up",
"down": "Down",
"up": "Gora",
"down": "Behera",
"bytesTx": "Transmitted",
"bytesRx": "Received"
},
@@ -853,10 +847,10 @@
"sitesDown": "Sites Down",
"paused": "Paused",
"notyetchecked": "Not Yet Checked",
"up": "Up",
"up": "Gora",
"seemsdown": "Seems Down",
"down": "Down",
"unknown": "Unknown"
"down": "Behera",
"unknown": "Ezezaguna"
},
"calendar": {
"inCinemas": "In cinemas",
@@ -887,12 +881,12 @@
"plantit": {
"events": "Ekitaldiak",
"plants": "Landareak",
"photos": "Photos",
"photos": "Argazkiak",
"species": "Species"
},
"gitea": {
"notifications": "Jakinarazpenak",
"issues": "Issues",
"issues": "Arazoak",
"pulls": "Pull Requests",
"repositories": "Repositories"
},
@@ -908,8 +902,8 @@
"galleries": "Galleries",
"performers": "Performers",
"studios": "Studios",
"movies": "Movies",
"tags": "Tags",
"movies": "Filmak",
"tags": "Etiketak",
"oCount": "O Count"
},
"tandoor": {
@@ -930,10 +924,10 @@
"bans": "Bans"
},
"wgeasy": {
"connected": "Connected",
"connected": "Konektatuta",
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"total": "Guztira"
},
"swagdashboard": {
"proxied": "Proxied",
@@ -943,8 +937,8 @@
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
"download": "Jeitsierak",
"upload": "Kargatu"
},
"stocks": {
"stocks": "Stocks",
@@ -961,11 +955,11 @@
"linkwarden": {
"links": "Links",
"collections": "Bildumak",
"tags": "Tags"
"tags": "Etiketak"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Information",
"information": "Informazioa",
"warning": "Abisua",
"average": "Batez besteko",
"high": "Altua",
@@ -986,7 +980,7 @@
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"name": "Izena",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
@@ -994,10 +988,10 @@
"offline": "Offline"
},
"beszel": {
"name": "Name",
"name": "Izena",
"systems": "Systems",
"up": "Up",
"down": "Down",
"up": "Gora",
"down": "Behera",
"paused": "Paused",
"pending": "Pending",
"status": "Status",
@@ -1011,7 +1005,7 @@
"apps": "Aplikazioak",
"synced": "Sinkronizatuta",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"healthy": "Osasuntsu",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
@@ -1022,7 +1016,7 @@
},
"gitlab": {
"groups": "Taldeak",
"issues": "Issues",
"issues": "Arazoak",
"merges": "Merge Requests",
"projects": "Proiektuak"
},
@@ -1038,12 +1032,12 @@
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
"tags": "Etiketak"
},
"slskd": {
"slskStatus": "Network",
"connected": "Connected",
"disconnected": "Disconnected",
"connected": "Konektatuta",
"disconnected": "Deskonektatuta",
"updateStatus": "Update",
"update_yes": "Available",
"update_no": "Up to Date",
@@ -1052,36 +1046,13 @@
"sharedFiles": "Files"
},
"jellystat": {
"songs": "Songs",
"movies": "Movies",
"songs": "Abestiak",
"movies": "Filmak",
"episodes": "Episodes",
"other": "Other"
},
"checkmk": {
"serviceErrors": "Service 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",
"up": "UP",
"down": "DOWN",
"wait": "Please wait",
"wait": "Odota, ole hyvä",
"empty_data": "Subsystem status unknown"
},
"docker": {
@@ -111,7 +111,7 @@
"offline": "Offline",
"offline_alt": "Offline",
"online": "Online",
"total": "Total",
"total": "Yhteensä",
"unknown": "Unknown"
},
"evcc": {
@@ -133,7 +133,7 @@
"unread": "Unread"
},
"fritzbox": {
"connectionStatus": "Status",
"connectionStatus": "Tila",
"connectionStatusUnconfigured": "Unconfigured",
"connectionStatusConnecting": "Connecting",
"connectionStatusAuthenticating": "Authenticating",
@@ -168,10 +168,10 @@
"passes": "Passes"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"playing": "Toistaa",
"transcoding": "Transkoodaa",
"bitrate": "Bittinopeus",
"no_active": "Ei aktiivisia striimejä",
"plex_connection_error": "Check Plex Connection"
},
"omada": {
@@ -193,7 +193,7 @@
"tv": "TV Shows"
},
"sabnzbd": {
"rate": "Rate",
"rate": "Nopeus",
"queue": "Jono",
"timeleft": "Aikaa jäljellä"
},
@@ -242,25 +242,25 @@
"wanted": "Haluttu",
"queued": "Jonossa",
"series": "Series",
"queue": "Queue",
"queue": "Jono",
"unknown": "Unknown"
},
"radarr": {
"wanted": "Wanted",
"wanted": "Haluttu",
"missing": "Missing",
"queued": "Queued",
"queued": "Jonossa",
"movies": "Movies",
"queue": "Queue",
"queue": "Jono",
"unknown": "Unknown"
},
"lidarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Haluttu",
"queued": "Jonossa",
"artists": "Artists"
},
"readarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Haluttu",
"queued": "Jonossa",
"books": "Kirjoja"
},
"bazarr": {
@@ -273,18 +273,18 @@
"available": "Saatavilla"
},
"jellyseerr": {
"pending": "Pending",
"approved": "Approved",
"available": "Available"
"pending": "Vireillä",
"approved": "Hyväksytty",
"available": "Saatavilla"
},
"overseerr": {
"pending": "Pending",
"pending": "Vireillä",
"processing": "Processing",
"approved": "Approved",
"available": "Available"
"approved": "Hyväksytty",
"available": "Saatavilla"
},
"netalertx": {
"total": "Total",
"total": "Yhteensä",
"connected": "Connected",
"new_devices": "New Devices",
"down_alerts": "Down Alerts"
@@ -296,8 +296,8 @@
"gravity": "Vakavuus"
},
"adguard": {
"queries": "Queries",
"blocked": "Blocked",
"queries": "Kyselyjä",
"blocked": "Estetty",
"filtered": "Suodatettu",
"latency": "Viive"
},
@@ -309,10 +309,10 @@
"portainer": {
"running": "Running",
"stopped": "Pysäytetty",
"total": "Total"
"total": "Yhteensä"
},
"suwayomi": {
"download": "Downloaded",
"download": "Ladattu",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
@@ -336,7 +336,7 @@
"ago": "{{value}} Ago"
},
"technitium": {
"totalQueries": "Queries",
"totalQueries": "Kyselyjä",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blocked",
"totalBlocked": "Estetty",
"totalDropped": "Dropped",
"totalClients": "Asiakasohjelmia"
},
"tdarr": {
"queue": "Queue",
"queue": "Jono",
"processed": "Processed",
"errored": "Errored",
"saved": "Saved"
@@ -359,20 +359,14 @@
"services": "Palveluja",
"middleware": "Middlewareja"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"nothing_streaming": "Ei aktiivisia striimejä",
"please_wait": "Odota, ole hyvä"
},
"npm": {
"enabled": "Käytössä",
"disabled": "Poissa käytöstä",
"total": "Total"
"total": "Yhteensä"
},
"coinmarketcap": {
"configure": "Määritä yksi tai useampi kryptovaluutta seurattavaksi",
@@ -383,13 +377,13 @@
},
"gotify": {
"apps": "Sovelluksia",
"clients": "Clients",
"clients": "Asiakasohjelmia",
"messages": "Viestejä"
},
"prowlarr": {
"enableIndexers": "Indeksoijia",
"numberOfGrabs": "Nappauksia",
"numberOfQueries": "Queries",
"numberOfQueries": "Kyselyjä",
"numberOfFailGrabs": "Epäonnistuneita nappauksia",
"numberOfFailQueries": "Epäonnistuneita kyselyjä"
},
@@ -401,7 +395,7 @@
"numActiveSessions": "Istuntoja",
"numConnections": "Yhteyksiä",
"dataRelayed": "Välitetty",
"transferRate": "Rate"
"transferRate": "Nopeus"
},
"mastodon": {
"user_count": "Users",
@@ -409,14 +403,14 @@
"domain_count": "Verkkotunnuksia"
},
"medusa": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Haluttu",
"queued": "Jonossa",
"series": "Series"
},
"minecraft": {
"players": "Players",
"version": "Version",
"status": "Status",
"status": "Tila",
"up": "Online",
"down": "Offline"
},
@@ -437,15 +431,15 @@
},
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"load": "Kuorma",
"wait": "Odota, ole hyvä",
"temp": "TEMP",
"_temp": "Temp",
"warn": "Warn",
"uptime": "UP",
"total": "Total",
"free": "Free",
"used": "Used",
"total": "Yhteensä",
"free": "Vapaana",
"used": "Käytetty",
"days": "d",
"hours": "h",
"crit": "Crit",
@@ -530,7 +524,7 @@
"child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "Up",
"pending": "Pending",
"pending": "Vireillä",
"down": "Down"
},
"healthchecks": {
@@ -539,7 +533,7 @@
"grace": "In Grace Period",
"down": "Down",
"paused": "Paused",
"status": "Status",
"status": "Tila",
"last_ping": "Last Ping",
"never": "No pings yet"
},
@@ -549,13 +543,13 @@
"containers_failed": "Failed"
},
"autobrr": {
"approvedPushes": "Approved",
"approvedPushes": "Hyväksytty",
"rejectedPushes": "Rejected",
"filters": "Filters",
"indexers": "Indexers"
"indexers": "Indeksoijia"
},
"tubearchivist": {
"downloads": "Queue",
"downloads": "Jono",
"videos": "Videos",
"channels": "Channels",
"playlists": "Playlists"
@@ -567,9 +561,9 @@
},
"pyload": {
"speed": "Speed",
"active": "Active",
"queue": "Queue",
"total": "Total"
"active": "Aktiivinen",
"queue": "Jono",
"total": "Yhteensä"
},
"gluetun": {
"public_ip": "Public IP",
@@ -586,7 +580,7 @@
"signalStrength": "Strength",
"signalQuality": "Quality",
"symbolQuality": "Quality",
"networkRate": "Bitrate",
"networkRate": "Bittinopeus",
"clientIP": "Client"
},
"scrutiny": {
@@ -596,7 +590,7 @@
},
"paperlessngx": {
"inbox": "Inbox",
"total": "Total"
"total": "Yhteensä"
},
"peanut": {
"battery_charge": "Battery Charge",
@@ -607,7 +601,7 @@
"low_battery": "Low Battery"
},
"nextdns": {
"wait": "Please Wait",
"wait": "Odota, ole hyvä",
"no_devices": "No Device Data Received"
},
"mikrotik": {
@@ -640,14 +634,14 @@
"layers": "Layers"
},
"octoprint": {
"printer_state": "Status",
"printer_state": "Tila",
"temp_tool": "Tool temp",
"temp_bed": "Bed temp",
"job_completion": "Completion"
},
"cloudflared": {
"origin_ip": "Origin IP",
"status": "Status"
"status": "Tila"
},
"pfsense": {
"load": "Load Avg",
@@ -687,17 +681,17 @@
"komga": {
"libraries": "Libraries",
"series": "Series",
"books": "Books"
"books": "Kirjoja"
},
"diskstation": {
"days": "Days",
"uptime": "Uptime",
"volumeAvailable": "Available"
"volumeAvailable": "Saatavilla"
},
"mylar": {
"series": "Series",
"issues": "Issues",
"wanted": "Wanted"
"wanted": "Haluttu"
},
"photoprism": {
"albums": "Albums",
@@ -706,7 +700,7 @@
"people": "People"
},
"fileflows": {
"queue": "Queue",
"queue": "Jono",
"processing": "Processing",
"processed": "Processed",
"time": "Time"
@@ -730,7 +724,7 @@
"numshares": "Shared Items"
},
"kopia": {
"status": "Status",
"status": "Tila",
"size": "Size",
"lastrun": "Last Run",
"nextrun": "Next Run",
@@ -762,7 +756,7 @@
},
"audiobookshelf": {
"podcasts": "Podcasts",
"books": "Books",
"books": "Kirjoja",
"podcastsDuration": "Duration",
"booksDuration": "Duration"
},
@@ -776,14 +770,14 @@
"updates": "Updates"
},
"calibreweb": {
"books": "Books",
"books": "Kirjoja",
"authors": "Authors",
"categories": "Categories",
"series": "Series"
},
"jdownloader": {
"downloadCount": "Queue",
"downloadBytesRemaining": "Remaining",
"downloadCount": "Jono",
"downloadBytesRemaining": "Jäljellä",
"downloadTotalBytes": "Size",
"downloadSpeed": "Speed"
},
@@ -793,7 +787,7 @@
},
"azuredevops": {
"result": "Result",
"status": "Status",
"status": "Tila",
"buildId": "Build ID",
"succeeded": "Succeeded",
"notStarted": "Not Started",
@@ -802,10 +796,10 @@
"inProgress": "In Progress",
"totalPrs": "Total PRs",
"myPrs": "My PRs",
"approved": "Approved"
"approved": "Hyväksytty"
},
"gamedig": {
"status": "Status",
"status": "Tila",
"online": "Online",
"offline": "Offline",
"name": "Name",
@@ -830,9 +824,9 @@
},
"openmediavault": {
"downloading": "Downloading",
"total": "Total",
"total": "Yhteensä",
"running": "Running",
"stopped": "Stopped",
"stopped": "Pysäytetty",
"passed": "Passed",
"failed": "Failed"
},
@@ -845,7 +839,7 @@
"bytesRx": "Received"
},
"uptimerobot": {
"status": "Status",
"status": "Tila",
"uptime": "Uptime",
"lastDown": "Last Downtime",
"downDuration": "Downtime Duration",
@@ -875,7 +869,7 @@
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domains",
"domains": "Verkkotunnuksia",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
@@ -931,9 +925,9 @@
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"enabled": "Käytössä",
"disabled": "Poissa käytöstä",
"total": "Yhteensä"
},
"swagdashboard": {
"proxied": "Proxied",
@@ -989,7 +983,7 @@
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"status": "Tila",
"online": "Online",
"offline": "Offline"
},
@@ -999,8 +993,8 @@
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Status",
"pending": "Vireillä",
"status": "Tila",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
@@ -1027,10 +1021,10 @@
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Load",
"status": "Tila",
"load": "Kuorma",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
"timeleft": "Aikaa jäljellä"
},
"karakeep": {
"bookmarks": "Bookmarks",
@@ -1045,7 +1039,7 @@
"connected": "Connected",
"disconnected": "Disconnected",
"updateStatus": "Update",
"update_yes": "Available",
"update_yes": "Saatavilla",
"update_no": "Up to Date",
"downloads": "Downloads",
"uploads": "Uploads",
@@ -1060,28 +1054,5 @@
"checkmk": {
"serviceErrors": "Service 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

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

View File

@@ -14,11 +14,11 @@
"date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}",
"months": "חודשים",
"days": "ימים",
"hours": "שעות",
"minutes": "דקות",
"seconds": "שניות"
"months": "חודש",
"days": "יום",
"hours": "שעה",
"minutes": "דקה",
"seconds": "שניה"
},
"widget": {
"missing_type": "סוג ווידג'ט חסר: {{type}}",
@@ -61,16 +61,16 @@
"wlan_devices": "מכשירים ב-WAN",
"lan_users": "משתמשים ב-LAN",
"wlan_users": "משתמשים ב-WLAN",
"up": "למעלה",
"up": "זמן פעילות",
"down": "כבוי",
"wait": "נא להמתין",
"wait": "המתן בבקשה",
"empty_data": "מצב תת-מערכת לא ידוע"
},
"docker": {
"rx": "RX",
"tx": "TX",
"mem": "זיכרון",
"cpu": "ניצול מעבד",
"cpu": "מעבד",
"running": "רץ",
"offline": "לא מקוון",
"error": "שגיאה",
@@ -108,8 +108,8 @@
"songs": "שירים"
},
"esphome": {
"offline": "מכובה",
"offline_alt": "מכובה",
"offline": "לא מקוון",
"offline_alt": "לא מקוון",
"online": "מקוון",
"total": "סה\"כ",
"unknown": "לא ידוע"
@@ -169,8 +169,8 @@
},
"tautulli": {
"playing": "מנגן",
"transcoding": "המרת קידוד",
"bitrate": "קצב נתונים",
"transcoding": "מקודד",
"bitrate": "סיביות",
"no_active": "אין הזרמות פעילות",
"plex_connection_error": "בדוק חיבור ל-Plex"
},
@@ -178,7 +178,7 @@
"connectedAp": "נקודות גישה מחוברות",
"activeUser": "מכשירים פעילים",
"alerts": "התראות",
"connectedGateways": "נתבים מחוברים",
"connectedGateways": "שערי רשת מחוברים (Gateway)",
"connectedSwitches": "נתבים מחוברים"
},
"nzbget": {
@@ -193,7 +193,7 @@
"tv": "תוכניות טלוויזיה"
},
"sabnzbd": {
"rate": "קצב",
"rate": "יחס",
"queue": "תור",
"timeleft": "זמן שנותר"
},
@@ -206,13 +206,13 @@
"download": "הורדה",
"upload": "העלאה",
"leech": "עלוקה",
"seed": ורע"
"seed": "זרע"
},
"qbittorrent": {
"download": "הורדה",
"upload": "העלאה",
"leech": "עלוקה",
"seed": ורע"
"seed": "זרע"
},
"qnap": {
"cpuUsage": "שימוש במעבד",
@@ -226,7 +226,7 @@
"download": "הורדה",
"upload": "העלאה",
"leech": "עלוקה",
"seed": ורע"
"seed": "זרע"
},
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
@@ -236,7 +236,7 @@
"download": "הורדה",
"upload": "העלאה",
"leech": "עלוקה",
"seed": ורע"
"seed": "זרע"
},
"sonarr": {
"wanted": "מבוקש",
@@ -273,12 +273,12 @@
"available": "זמין"
},
"jellyseerr": {
"pending": "ממתין לאישור",
"pending": "ממתין",
"approved": "מאושר",
"available": "זמין"
},
"overseerr": {
"pending": "ממתין לאישור",
"pending": "ממתין",
"processing": "מעבד",
"approved": "מאושר",
"available": "זמין"
@@ -304,7 +304,7 @@
"speedtest": {
"upload": "העלאה",
"download": "הורדה",
"ping": "זמן תגובה"
"ping": "פינג"
},
"portainer": {
"running": "רץ",
@@ -312,10 +312,10 @@
"total": "סה\"כ"
},
"suwayomi": {
"download": "ירד",
"download": "הורד",
"nondownload": "לא הורד",
"read": "נקראו",
"unread": "לא נקראו",
"read": "נקרא",
"unread": "לא נקרא",
"downloadedread": "ירד ונקרא",
"downloadedunread": "ירד ולא נקרא",
"nondownloadedread": "לא ירד ונקרא",
@@ -344,7 +344,7 @@
"totalAuthoritative": "Authoritative",
"totalRecursive": "רקורסיבי",
"totalCached": "נשמר במטמון",
"totalBlocked": "חסומות",
"totalBlocked": "נחסם",
"totalDropped": "נפל",
"totalClients": "לקוחות"
},
@@ -359,12 +359,6 @@
"services": "שירותים",
"middleware": "מתווך"
},
"trilium": {
"version": "גרסה",
"notesCount": "הערות",
"dbSize": "גודל מסד הנתונים",
"unknown": "לא ידוע"
},
"navidrome": {
"nothing_streaming": "אין הזרמות פעילות",
"please_wait": "המתן בבקשה"
@@ -395,13 +389,13 @@
},
"jackett": {
"configured": "מוגדר",
"errored": "שגיאות"
"errored": "נכשל"
},
"strelaysrv": {
"numActiveSessions": "סשנים פעילים",
"numConnections": "חיבורים",
"dataRelayed": "דאטה שהועבר",
"transferRate": "קצב"
"transferRate": "יחס"
},
"mastodon": {
"user_count": "משתמשים",
@@ -409,7 +403,7 @@
"domain_count": "דומיינים"
},
"medusa": {
"wanted": "רצוי",
"wanted": "מבוקש",
"queued": "בתור",
"series": "סדרות"
},
@@ -422,7 +416,7 @@
},
"miniflux": {
"read": "נקרא",
"unread": "לא נקראו"
"unread": "לא נקרא"
},
"authentik": {
"users": "משתמשים",
@@ -431,14 +425,14 @@
},
"proxmox": {
"mem": "זיכרון",
"cpu": "ניצול מעבד",
"cpu": "מעבד",
"lxc": "LXC",
"vms": "VMs"
},
"glances": {
"cpu": "ניצול מעבד",
"cpu": "מעבד",
"load": "עומס",
"wait": "נא להמתין",
"wait": "המתן בבקשה",
"temp": "טמפ׳",
"_temp": "טמפ׳",
"warn": "אזהרה",
@@ -446,8 +440,8 @@
"total": "סה\"כ",
"free": "פנוי",
"used": "בשימוש",
"days": "ימים",
"hours": "שעות",
"days": "יום",
"hours": "שעה",
"crit": "Crit",
"read": "נקרא",
"write": "כתיבה",
@@ -504,23 +498,23 @@
"75-day": "שלג כבד",
"75-night": "שלג כבד",
"77-day": "גרגרי שלג",
"77-night": "פתיתי שלג",
"77-night": "גרגרי שלג",
"80-day": "ממטרים קלים",
"80-night": "גשם קל",
"80-night": "ממטרים קלים",
"81-day": "ממטרים",
"81-night": "גשם",
"81-night": "ממטרים",
"82-day": "ממטרים כבדים",
"82-night": "גשם כבד",
"82-night": "ממטרים כבדים",
"85-day": "ממטרי שלג",
"85-night": "גשם מושלג",
"86-day": "גשם מושלג",
"86-night": "גשם מושלג",
"85-night": "ממטרי שלג",
"86-day": "ממטרי שלג",
"86-night": "ממטרי שלג",
"95-day": "סופת רעמים",
"95-night": "סופת ברקים",
"95-night": "סופת רעמים",
"96-day": "סופת רעמים עם ברד",
"96-night": "סופת ברקים וברד",
"99-day": "סופת ברקים וברד",
"99-night": "סופת ברקים וברד"
"96-night": "סופת רעמים עם ברד",
"99-day": "סופת רעמים עם ברד",
"99-night": "סופת רעמים עם ברד"
},
"homebridge": {
"available_update": "מערכת",
@@ -549,7 +543,7 @@
"containers_failed": "נכשל"
},
"autobrr": {
"approvedPushes": "אושרו",
"approvedPushes": "מאושר",
"rejectedPushes": "נדחה",
"filters": "פילטרים",
"indexers": "אינדקסים"
@@ -567,7 +561,7 @@
},
"pyload": {
"speed": "מהירות",
"active": "פעילות",
"active": "פעיל",
"queue": "תור",
"total": "סה\"כ"
},
@@ -586,12 +580,12 @@
"signalStrength": "עוצמה",
"signalQuality": "איכות",
"symbolQuality": "איכות",
"networkRate": "קצב נתונים",
"networkRate": "סיביות",
"clientIP": "לקוח"
},
"scrutiny": {
"passed": "עבר",
"failed": "נכשלו",
"failed": "נכשל",
"unknown": "לא ידוע"
},
"paperlessngx": {
@@ -602,12 +596,12 @@
"battery_charge": "טעינת סוללה",
"ups_load": "עומס UPS",
"ups_status": "סטטוס UPS",
"online": חובר",
"online": קוון",
"on_battery": "על סוללה",
"low_battery": "סוללה חלשה"
},
"nextdns": {
"wait": "נא להמתין",
"wait": "המתן בבקשה",
"no_devices": "אין מכשירים"
},
"mikrotik": {
@@ -662,7 +656,7 @@
"proxmoxbackupserver": {
"datastore_usage": "Datastore",
"failed_tasks_24h": "משימות שנכשלו 24h",
"cpu_usage": "ניצול מעבד",
"cpu_usage": "מעבד",
"memory_usage": "זיכרון"
},
"immich": {
@@ -676,7 +670,7 @@
"down": "אתרים לא פעילים",
"uptime": "זמן פעילות",
"incident": "תקריות",
"m": "דקות"
"m": "דקה"
},
"atsumeru": {
"series": "סדרות",
@@ -707,8 +701,8 @@
},
"fileflows": {
"queue": "תור",
"processing": עיבוד",
"processed": "עובדו",
"processing": "מעבד",
"processed": "עובד",
"time": "זמן"
},
"firefly": {
@@ -734,7 +728,7 @@
"size": "גודל",
"lastrun": "הרצה אחרונה",
"nextrun": "הרצה הבאה",
"failed": "נכשלו"
"failed": "נכשל"
},
"unmanic": {
"active_workers": "עובדים פעילים",
@@ -751,8 +745,8 @@
"targets_total": "סה\"כ מטרות"
},
"gatus": {
"up": "אתרים למעלה",
"down": "אתרים למטה",
"up": "אתרים פעילים",
"down": "אתרים לא פעילים",
"uptime": "זמן פעילות"
},
"ghostfolio": {
@@ -764,7 +758,7 @@
"podcasts": "פודקאסטים",
"books": "ספרים",
"podcastsDuration": "משך פודקאסטים",
"booksDuration": "משך זמן"
"booksDuration": "משך פודקאסטים"
},
"homeassistant": {
"people_home": "אנשים בבית",
@@ -797,17 +791,17 @@
"buildId": "Build ID",
"succeeded": "הצליח",
"notStarted": "לא התחיל",
"failed": "נכשלו",
"failed": "נכשל",
"canceled": "בוטל",
"inProgress": "בתהליך",
"totalPrs": "סה\"כ PRs",
"myPrs": "PRs שלי",
"approved": "אושרו"
"approved": "מאושר"
},
"gamedig": {
"status": "סטטוס",
"online": חובר",
"offline": "מנותק",
"online": קוון",
"offline": "לא מקוון",
"name": "שם",
"map": "מפה",
"currentPlayers": "שחקנים נוכחיים",
@@ -819,7 +813,7 @@
"urbackup": {
"ok": "Ok",
"errored": "שגיאות",
"noRecent": "לא עדכני",
"noRecent": לא תאריך",
"totalUsed": "אחסון בשימוש"
},
"mealie": {
@@ -831,10 +825,10 @@
"openmediavault": {
"downloading": "מוריד",
"total": "סה\"כ",
"running": צים",
"stopped": "נעצרו",
"passed": "עברו",
"failed": "נכשלו"
"running": ץ",
"stopped": "נעצר",
"passed": "עבר",
"failed": "נכשל"
},
"openwrt": {
"uptime": "זמן פעילות",
@@ -845,12 +839,12 @@
"bytesRx": "התקבל"
},
"uptimerobot": {
"status": "זמן פעילות",
"status": "סטטוס",
"uptime": "זמן פעילות",
"lastDown": "זמן השבתה אחרון",
"downDuration": "משך השבתה",
"sitesUp": "אתרים למעלה",
"sitesDown": "אתרים למטה",
"sitesUp": "אתרים פעילים",
"sitesDown": "אתרים לא פעילים",
"paused": "מושהה",
"notyetchecked": "לא נבדק עדיין",
"up": "למעלה",
@@ -892,7 +886,7 @@
},
"gitea": {
"notifications": "התראות",
"issues": "נושאים",
"issues": "גיליונות",
"pulls": "בקשות משיכה",
"repositories": "מאגרי מידע"
},
@@ -909,7 +903,7 @@
"performers": "מבצעים",
"studios": "אולפנים",
"movies": "סרטים",
"tags": "תגיות",
"tags": "טגיות",
"oCount": "O Count"
},
"tandoor": {
@@ -932,7 +926,7 @@
"wgeasy": {
"connected": "מחובר",
"enabled": "מופעל",
"disabled": ושבת",
"disabled": בוטל",
"total": "סה\"כ"
},
"swagdashboard": {
@@ -961,7 +955,7 @@
"linkwarden": {
"links": "קישורים",
"collections": "אוספים",
"tags": "תגיות"
"tags": "טגיות"
},
"zabbix": {
"unclassified": "לא ממויין",
@@ -990,8 +984,8 @@
"address": "כתובת",
"last_seen": "נראה לאחרונה",
"status": "סטטוס",
"online": חובר",
"offline": "מנותק"
"online": קוון",
"offline": "לא מקוון"
},
"beszel": {
"name": "שם",
@@ -1001,7 +995,7 @@
"paused": "מושהה",
"pending": "ממתין",
"status": "סטטוס",
"updated": "מעודכן",
"updated": "עודכן",
"cpu": "מעבד",
"memory": "זיכרון",
"disk": "דיסק",
@@ -1014,7 +1008,7 @@
"healthy": "בריא",
"degraded": "פגום",
"progressing": "מתקדם",
"missing": "חסר",
"missing": "חסרים",
"suspended": "מושהה"
},
"spoolman": {
@@ -1022,7 +1016,7 @@
},
"gitlab": {
"groups": "קבוצות",
"issues": "נושאים",
"issues": "גיליונות",
"merges": "Merge Requests",
"projects": "פרוייקטים"
},
@@ -1038,7 +1032,7 @@
"archived": "ארכיון",
"highlights": "הדגשות",
"lists": "רשימות",
"tags": "תגיות"
"tags": "טגיות"
},
"slskd": {
"slskStatus": "רשת",
@@ -1046,7 +1040,7 @@
"disconnected": "מנותק",
"updateStatus": "עדכן",
"update_yes": "זמין",
"update_no": "מעודכן",
"update_no": "עדכני",
"downloads": "הורדות",
"uploads": "העלאות",
"sharedFiles": "קבצים"
@@ -1060,28 +1054,5 @@
"checkmk": {
"serviceErrors": "שגיאות שירות",
"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",
"middleware": "Middleware"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"please_wait": "Please Wait"
@@ -447,7 +441,7 @@
"free": "Free",
"used": "Used",
"days": "d",
"hours": "h",
"hours": "घं.",
"crit": "Crit",
"read": "Read",
"write": "Write",
@@ -1060,28 +1054,5 @@
"checkmk": {
"serviceErrors": "Service 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",
"lan_users": "Pengguna LAN",
"wlan_users": "Pengguna WLAN",
"up": "UP",
"up": "Waktu Aktif",
"down": "Mati",
"wait": "Please wait",
"wait": "Harap tunggu",
"empty_data": "Status subsistem tdk diketahui"
},
"docker": {
@@ -93,9 +93,9 @@
"http_status": "HTTP Status",
"error": "Error",
"response": "Respons",
"down": "Down",
"up": "Up",
"not_available": "Not Available"
"down": "Mati",
"up": "Hidup",
"not_available": "Tidak Tersedia"
},
"emby": {
"playing": "Sedang Diputar",
@@ -112,7 +112,7 @@
"offline_alt": "Offline",
"online": "Online",
"total": "Total",
"unknown": "Unknown"
"unknown": "Tidak Diketahui"
},
"evcc": {
"pv_power": "Produksi",
@@ -141,11 +141,11 @@
"connectionStatusDisconnecting": "Sedan Memutus",
"connectionStatusDisconnected": "Terputus",
"connectionStatusConnected": "Tersambung",
"uptime": "Uptime",
"uptime": "Waktu Aktif",
"maxDown": "Maks Unduh",
"maxUp": "Maks Unggah",
"down": "Down",
"up": "Up",
"down": "Mati",
"up": "Hidup",
"received": "Diterima",
"sent": "Terkirim",
"externalIPAddress": "IP Eksternal",
@@ -168,10 +168,10 @@
"passes": "Tiket"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"playing": "Sedang Diputar",
"transcoding": "Mentranskode",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"no_active": "Tidak ada Strim Aktif",
"plex_connection_error": "Cek Koneksi ke Plex"
},
"omada": {
@@ -189,28 +189,28 @@
"plex": {
"streams": "Stream Berjalan",
"albums": "Albums",
"movies": "Movies",
"movies": "Film",
"tv": "Acara TV"
},
"sabnzbd": {
"rate": "Rate",
"rate": "Laju Bandwidth",
"queue": "Antrian",
"timeleft": "Sisa Waktu"
},
"rutorrent": {
"active": "Aktif",
"upload": "Upload",
"download": "Download"
"upload": "Unggah",
"download": "Unduh"
},
"transmission": {
"download": "Download",
"upload": "Upload",
"download": "Unduh",
"upload": "Unggah",
"leech": "Leech",
"seed": "Seed"
},
"qbittorrent": {
"download": "Download",
"upload": "Upload",
"download": "Unduh",
"upload": "Unggah",
"leech": "Leech",
"seed": "Seed"
},
@@ -223,8 +223,8 @@
"invalid": "Tidak valid"
},
"deluge": {
"download": "Download",
"upload": "Upload",
"download": "Unduh",
"upload": "Unggah",
"leech": "Leech",
"seed": "Seed"
},
@@ -233,34 +233,34 @@
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": {
"download": "Download",
"upload": "Upload",
"download": "Unduh",
"upload": "Unggah",
"leech": "Leech",
"seed": "Seed"
},
"sonarr": {
"wanted": "Dicari",
"queued": "Terantrikan",
"series": "Series",
"queue": "Queue",
"unknown": "Unknown"
"series": "Seri",
"queue": "Antrian",
"unknown": "Tidak Diketahui"
},
"radarr": {
"wanted": "Wanted",
"wanted": "Dicari",
"missing": "Tidak Ditemukan",
"queued": "Queued",
"movies": "Movies",
"queue": "Queue",
"unknown": "Unknown"
"queued": "Terantrikan",
"movies": "Film",
"queue": "Antrian",
"unknown": "Tidak Diketahui"
},
"lidarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Dicari",
"queued": "Terantrikan",
"artists": "Artis"
},
"readarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Dicari",
"queued": "Terantrikan",
"books": "Buku"
},
"bazarr": {
@@ -274,18 +274,18 @@
},
"jellyseerr": {
"pending": "Pending",
"approved": "Approved",
"available": "Available"
"approved": "Tersetujui",
"available": "Tersedia"
},
"overseerr": {
"pending": "Pending",
"processing": "Memproses",
"approved": "Approved",
"available": "Available"
"approved": "Tersetujui",
"available": "Tersedia"
},
"netalertx": {
"total": "Total",
"connected": "Connected",
"connected": "Tersambung",
"new_devices": "Perangkat Baru",
"down_alerts": "Peringatan Pemadaman"
},
@@ -296,26 +296,26 @@
"gravity": "Gravitasi"
},
"adguard": {
"queries": "Queries",
"blocked": "Blocked",
"queries": "Kueri",
"blocked": "Terblokir",
"filtered": "Terfilter",
"latency": "Latensi"
},
"speedtest": {
"upload": "Upload",
"download": "Download",
"upload": "Unggah",
"download": "Unduh",
"ping": "Ping"
},
"portainer": {
"running": "Running",
"running": "Berjalan",
"stopped": "Terhenti",
"total": "Total"
},
"suwayomi": {
"download": "Downloaded",
"download": "Terunduh",
"nondownload": "Belum Diunduh",
"read": "Read",
"unread": "Unread",
"read": "Baca",
"unread": "Belum Dibaca",
"downloadedread": "Diunduh & Dibaca",
"downloadedunread": "Diunduh & Belum Dibaca",
"nondownloadedread": "Belum Diunduh & Dibaca",
@@ -336,7 +336,7 @@
"ago": "{{value}} Yang Lalu"
},
"technitium": {
"totalQueries": "Queries",
"totalQueries": "Kueri",
"totalNoError": "Berhasil",
"totalServerFailure": "Gagal",
"totalNxDomain": "Domain NX",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative",
"totalRecursive": "Rekursif",
"totalCached": "Cached",
"totalBlocked": "Blocked",
"totalBlocked": "Terblokir",
"totalDropped": "Dropped",
"totalClients": "Klien"
},
"tdarr": {
"queue": "Queue",
"queue": "Antrian",
"processed": "Terproses",
"errored": "Error",
"saved": "Tersimpan"
@@ -359,14 +359,8 @@
"services": "Layanan",
"middleware": "Middleware"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"nothing_streaming": "Tidak ada Strim Aktif",
"please_wait": "Mohon menunggu"
},
"npm": {
@@ -383,35 +377,35 @@
},
"gotify": {
"apps": "Aplikasi",
"clients": "Clients",
"clients": "Klien",
"messages": "Pesan"
},
"prowlarr": {
"enableIndexers": "Pengindeks",
"numberOfGrabs": "Jumlah Ambilan",
"numberOfQueries": "Queries",
"numberOfQueries": "Kueri",
"numberOfFailGrabs": "Ambilan Gagal",
"numberOfFailQueries": "Jumlah Kueri Gagal"
},
"jackett": {
"configured": "Konfigurasi",
"errored": "Errored"
"errored": "Error"
},
"strelaysrv": {
"numActiveSessions": "Sesi",
"numConnections": "Jumlah Koneksi",
"dataRelayed": "Data Diteruskan",
"transferRate": "Rate"
"transferRate": "Laju Bandwidth"
},
"mastodon": {
"user_count": "Users",
"user_count": "Pengguna",
"status_count": "Jumlah Posting",
"domain_count": "Jumlah Domain"
},
"medusa": {
"wanted": "Wanted",
"queued": "Queued",
"series": "Series"
"wanted": "Dicari",
"queued": "Terantrikan",
"series": "Seri"
},
"minecraft": {
"players": "Jumlah Pemain",
@@ -422,10 +416,10 @@
},
"miniflux": {
"read": "Baca",
"unread": "Unread"
"unread": "Belum Dibaca"
},
"authentik": {
"users": "Users",
"users": "Pengguna",
"loginsLast24H": "Login (24j)",
"failedLoginsLast24H": "Login Gagal (24j)"
},
@@ -437,19 +431,19 @@
},
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"load": "Beban",
"wait": "Harap tunggu",
"temp": "TEMP",
"_temp": "Suhu",
"warn": "Peringatan",
"uptime": "UP",
"uptime": "Waktu Aktif",
"total": "Total",
"free": "Free",
"used": "Used",
"days": "d",
"hours": "h",
"free": "Luang",
"used": "Digunakan",
"days": "h",
"hours": "j",
"crit": "Penting",
"read": "Read",
"read": "Baca",
"write": "Tulis",
"gpu": "GPU",
"mem": "Mem",
@@ -470,57 +464,57 @@
"1-day": "Cerah",
"1-night": "Cerah",
"2-day": "Sedikit Berawan",
"2-night": "Partly Cloudy",
"2-night": "Sedikit Berawan",
"3-day": "Berawan",
"3-night": "Cloudy",
"3-night": "Berawan",
"45-day": "Berkabut",
"45-night": "Foggy",
"48-day": "Foggy",
"48-night": "Foggy",
"45-night": "Berkabut",
"48-day": "Berkabut",
"48-night": "Berkabut",
"51-day": "Gerimis Ringan",
"51-night": "Light Drizzle",
"51-night": "Gerimis Ringan",
"53-day": "Gerimis",
"53-night": "Drizzle",
"53-night": "Gerimis",
"55-day": "Gerimis Lebat",
"55-night": "Heavy Drizzle",
"55-night": "Gerimis Lebat",
"56-day": "Gerimis Membeku Ringan",
"56-night": "Light Freezing Drizzle",
"56-night": "Gerimis Membeku Ringan",
"57-day": "Gerimis Membeku",
"57-night": "Freezing Drizzle",
"57-night": "Gerimis Membeku",
"61-day": "Hujan Ringan",
"61-night": "Light Rain",
"61-night": "Hujan Ringan",
"63-day": "Hujan",
"63-night": "Rain",
"63-night": "Hujan",
"65-day": "Hujan Deras",
"65-night": "Heavy Rain",
"65-night": "Hujan Deras",
"66-day": "Hujan Dingin",
"66-night": "Freezing Rain",
"67-day": "Freezing Rain",
"67-night": "Freezing Rain",
"66-night": "Hujan Dingin",
"67-day": "Hujan Dingin",
"67-night": "Hujan Dingin",
"71-day": "Hujan Salju Ringan",
"71-night": "Light Snow",
"71-night": "Hujan Salju Ringan",
"73-day": "Hujan Salju",
"73-night": "Snow",
"73-night": "Hujan Salju",
"75-day": "Hujan Salju Lebat",
"75-night": "Heavy Snow",
"75-night": "Hujan Salju Lebat",
"77-day": "Hujan Salju Butiran",
"77-night": "Snow Grains",
"77-night": "Hujan Salju Butiran",
"80-day": "Hujan Ringan",
"80-night": "Light Showers",
"80-night": "Hujan Ringan",
"81-day": "Hujan",
"81-night": "Showers",
"81-night": "Hujan",
"82-day": "Hujan Lebat",
"82-night": "Heavy Showers",
"82-night": "Hujan Lebat",
"85-day": "Hujan Salju",
"85-night": "Snow Showers",
"86-day": "Snow Showers",
"86-night": "Snow Showers",
"85-night": "Hujan Salju",
"86-day": "Hujan Salju",
"86-night": "Hujan Salju",
"95-day": "Badai Petir",
"95-night": "Thunderstorm",
"95-night": "Badai Petir",
"96-day": "Badai Petir Hujan Es",
"96-night": "Thunderstorm With Hail",
"99-day": "Thunderstorm With Hail",
"99-night": "Thunderstorm With Hail"
"96-night": "Badai Petir Hujan Es",
"99-day": "Badai Petir Hujan Es",
"99-night": "Badai Petir Hujan Es"
},
"homebridge": {
"available_update": "Sistem",
@@ -529,15 +523,15 @@
"up_to_date": "Terbaru",
"child_bridges": "Bridge Turunan",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "Up",
"up": "Hidup",
"pending": "Pending",
"down": "Down"
"down": "Mati"
},
"healthchecks": {
"new": "Baru",
"up": "Up",
"up": "Hidup",
"grace": "Dalam Masa Tenggang",
"down": "Down",
"down": "Mati",
"paused": "Pause",
"status": "Status",
"last_ping": "Ping Terakhir",
@@ -549,26 +543,26 @@
"containers_failed": "Gagal"
},
"autobrr": {
"approvedPushes": "Approved",
"approvedPushes": "Tersetujui",
"rejectedPushes": "Tertolak",
"filters": "Filter",
"indexers": "Indexers"
"indexers": "Pengindeks"
},
"tubearchivist": {
"downloads": "Queue",
"downloads": "Antrian",
"videos": "Video",
"channels": "Channel",
"playlists": "Daftar Putar"
},
"truenas": {
"load": "Beban Sistem",
"uptime": "Uptime",
"alerts": "Alerts"
"uptime": "Waktu Aktif",
"alerts": "Peringatan"
},
"pyload": {
"speed": "Kecepatan",
"active": "Active",
"queue": "Queue",
"active": "Aktif",
"queue": "Antrian",
"total": "Total"
},
"gluetun": {
@@ -578,21 +572,21 @@
"port_forwarded": "Port Forwarded"
},
"hdhomerun": {
"channels": "Channels",
"channels": "Channel",
"hd": "HD",
"tunerCount": "Tuner",
"channelNumber": "Channel",
"channelNetwork": "Jaringan",
"signalStrength": "Kekuatan Signal",
"signalQuality": "Kualitas",
"symbolQuality": "Quality",
"symbolQuality": "Kualitas",
"networkRate": "Bitrate",
"clientIP": "Klien"
},
"scrutiny": {
"passed": "Sukses",
"failed": "Failed",
"unknown": "Unknown"
"failed": "Gagal",
"unknown": "Tidak Diketahui"
},
"paperlessngx": {
"inbox": "Kotak Masuk",
@@ -607,18 +601,18 @@
"low_battery": "Baterai Lemah"
},
"nextdns": {
"wait": "Please Wait",
"wait": "Mohon menunggu",
"no_devices": "Tidak ada Data Perangkat Diterima"
},
"mikrotik": {
"cpuLoad": "Beban CPU",
"memoryUsed": "Memori Terpakai",
"uptime": "Uptime",
"uptime": "Waktu Aktif",
"numberOfLeases": "Leases"
},
"xteve": {
"streams_all": "Semua Strim",
"streams_active": "Active Streams",
"streams_active": "Stream Berjalan",
"streams_xepg": "Channel XEPG"
},
"opendtu": {
@@ -628,7 +622,7 @@
"limit": "Batas"
},
"opnsense": {
"cpu": "CPU Load",
"cpu": "Beban CPU",
"memory": "Memori Aktif",
"wanUpload": "WAN Unggan",
"wanDownload": "WAN Unduh"
@@ -653,9 +647,9 @@
"load": "Beban Rata-rata",
"memory": "Penggunaan Memory",
"wanStatus": "Status WAN",
"up": "Up",
"down": "Down",
"temp": "Temp",
"up": "Hidup",
"down": "Mati",
"temp": "Suhu",
"disk": "Penggunaan Disk",
"wanIP": "IP WAN"
},
@@ -666,49 +660,49 @@
"memory_usage": "Memory"
},
"immich": {
"users": "Users",
"users": "Pengguna",
"photos": "Foto",
"videos": "Videos",
"videos": "Video",
"storage": "Penyimpanan"
},
"uptimekuma": {
"up": "Situs Hidup",
"down": "Situs Mati",
"uptime": "Uptime",
"uptime": "Waktu Aktif",
"incident": "Insiden",
"m": "m"
},
"atsumeru": {
"series": "Series",
"series": "Seri",
"archives": "Arsip",
"chapters": "Bab",
"categories": "Kategori"
},
"komga": {
"libraries": "Perpustakaan",
"series": "Series",
"books": "Books"
"series": "Seri",
"books": "Buku"
},
"diskstation": {
"days": "Days",
"uptime": "Uptime",
"volumeAvailable": "Available"
"days": "Hari-hari",
"uptime": "Waktu Aktif",
"volumeAvailable": "Tersedia"
},
"mylar": {
"series": "Series",
"series": "Seri",
"issues": "Isu",
"wanted": "Wanted"
"wanted": "Dicari"
},
"photoprism": {
"albums": "Albums",
"photos": "Photos",
"videos": "Videos",
"photos": "Foto",
"videos": "Video",
"people": "Orang"
},
"fileflows": {
"queue": "Queue",
"processing": "Processing",
"processed": "Processed",
"queue": "Antrian",
"processing": "Memproses",
"processed": "Terproses",
"time": "Waktu"
},
"firefly": {
@@ -734,7 +728,7 @@
"size": "Ukuran",
"lastrun": "Terakhir Dijalankan",
"nextrun": "Akan Dijalankan Dalam",
"failed": "Failed"
"failed": "Gagal"
},
"unmanic": {
"active_workers": "Pengguna Aktif",
@@ -751,20 +745,20 @@
"targets_total": "Target Total"
},
"gatus": {
"up": "Sites Up",
"down": "Sites Down",
"uptime": "Uptime"
"up": "Situs Hidup",
"down": "Situs Mati",
"uptime": "Waktu Aktif"
},
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_today": "Hari ini",
"gross_percent_1y": "Satu Tahun",
"gross_percent_max": "Sepanjang Masa"
},
"audiobookshelf": {
"podcasts": "Podcast",
"books": "Books",
"books": "Buku",
"podcastsDuration": "Durasi",
"booksDuration": "Duration"
"booksDuration": "Durasi"
},
"homeassistant": {
"people_home": "Orang Di Rumah",
@@ -773,23 +767,23 @@
},
"whatsupdocker": {
"monitoring": "Pengawasan",
"updates": "Updates"
"updates": "Pembaruan"
},
"calibreweb": {
"books": "Books",
"books": "Buku",
"authors": "Penulis",
"categories": "Categories",
"series": "Series"
"categories": "Kategori",
"series": "Seri"
},
"jdownloader": {
"downloadCount": "Queue",
"downloadBytesRemaining": "Remaining",
"downloadTotalBytes": "Size",
"downloadSpeed": "Speed"
"downloadCount": "Antrian",
"downloadBytesRemaining": "Sisa",
"downloadTotalBytes": "Ukuran",
"downloadSpeed": "Kecepatan"
},
"kavita": {
"seriesCount": "Series",
"totalFiles": "Files"
"seriesCount": "Seri",
"totalFiles": "File"
},
"azuredevops": {
"result": "Hasil",
@@ -797,12 +791,12 @@
"buildId": "Build ID",
"succeeded": "Berhasil",
"notStarted": "Belum Dimulai",
"failed": "Failed",
"failed": "Gagal",
"canceled": "Dibatalkan",
"inProgress": "Sedang Berlangsung",
"totalPrs": "PR Total",
"myPrs": "PR Saya",
"approved": "Approved"
"approved": "Tersetujui"
},
"gamedig": {
"status": "Status",
@@ -811,7 +805,7 @@
"name": "Nama",
"map": "Peta",
"currentPlayers": "Jumlah pemain",
"players": "Players",
"players": "Jumlah Pemain",
"maxPlayers": "Maksimum pemain",
"bots": "Bot",
"ping": "Ping"
@@ -824,39 +818,39 @@
},
"mealie": {
"recipes": "Resep",
"users": "Users",
"categories": "Categories",
"users": "Pengguna",
"categories": "Kategori",
"tags": "Tag"
},
"openmediavault": {
"downloading": "Mengunduh",
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"passed": "Passed",
"failed": "Failed"
"running": "Berjalan",
"stopped": "Terhenti",
"passed": "Sukses",
"failed": "Gagal"
},
"openwrt": {
"uptime": "Uptime",
"uptime": "Waktu Aktif",
"cpuLoad": "Beban rata2 CPU (5m)",
"up": "Up",
"down": "Down",
"up": "Hidup",
"down": "Mati",
"bytesTx": "Tersalur",
"bytesRx": "Received"
"bytesRx": "Diterima"
},
"uptimerobot": {
"status": "Status",
"uptime": "Uptime",
"uptime": "Waktu Aktif",
"lastDown": "Terakhir Terhenti",
"downDuration": "Jumlah Waktu Terhenti",
"sitesUp": "Sites Up",
"sitesDown": "Sites Down",
"paused": "Paused",
"sitesUp": "Situs Hidup",
"sitesDown": "Situs Mati",
"paused": "Pause",
"notyetchecked": "Belum Di Cek",
"up": "Up",
"up": "Hidup",
"seemsdown": "Sepertinya Mati",
"down": "Down",
"unknown": "Unknown"
"down": "Mati",
"unknown": "Tidak Diketahui"
},
"calendar": {
"inCinemas": "Tersedia Di Bioskop",
@@ -875,10 +869,10 @@
"totalfilesize": "Total Ukuran"
},
"mailcow": {
"domains": "Domains",
"domains": "Jumlah Domain",
"mailboxes": "Kotak surat",
"mails": "Surat",
"storage": "Storage"
"storage": "Penyimpanan"
},
"netdata": {
"warnings": "Peringatan",
@@ -887,12 +881,12 @@
"plantit": {
"events": "Acara",
"plants": "Tanaman",
"photos": "Photos",
"photos": "Foto",
"species": "Spesies"
},
"gitea": {
"notifications": "Notifikasi",
"issues": "Issues",
"issues": "Isu",
"pulls": "Pull Requests",
"repositories": "Repositories"
},
@@ -908,13 +902,13 @@
"galleries": "Galeri",
"performers": "Pemain",
"studios": "Studio",
"movies": "Movies",
"tags": "Tags",
"movies": "Film",
"tags": "Tag",
"oCount": "Jumlah O"
},
"tandoor": {
"users": "Users",
"recipes": "Recipes",
"users": "Pengguna",
"recipes": "Resep",
"keywords": "Kata Kunci"
},
"homebox": {
@@ -922,17 +916,17 @@
"totalWithWarranty": "Dengan Garansi",
"locations": "Lokasi",
"labels": "Label",
"users": "Users",
"users": "Pengguna",
"totalValue": "Total Nilai"
},
"crowdsec": {
"alerts": "Alerts",
"alerts": "Peringatan",
"bans": "Bans"
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"connected": "Tersambung",
"enabled": "Aktif",
"disabled": "Nonaktif",
"total": "Total"
},
"swagdashboard": {
@@ -943,8 +937,8 @@
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
"download": "Unduh",
"upload": "Unggah"
},
"stocks": {
"stocks": "Saham",
@@ -955,17 +949,17 @@
},
"frigate": {
"cameras": "Kamera",
"uptime": "Uptime",
"version": "Version"
"uptime": "Waktu Aktif",
"version": "Versi"
},
"linkwarden": {
"links": "Tautan",
"collections": "Koleksi",
"tags": "Tags"
"tags": "Tag"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Information",
"information": "Informasi",
"warning": "Peringatan",
"average": "Rata-rata",
"high": "Tinggi",
@@ -986,22 +980,22 @@
"tasksInProgress": "Tugas Berlangsung"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"name": "Nama",
"address": "Alamat",
"last_seen": "Terakhir terlihat",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"name": "Nama",
"systems": "Sistem",
"up": "Up",
"down": "Down",
"paused": "Paused",
"up": "Hidup",
"down": "Mati",
"paused": "Pause",
"pending": "Pending",
"status": "Status",
"updated": "Updated",
"updated": "Terbarui",
"cpu": "CPU",
"memory": "MEM",
"disk": "Diska",
@@ -1011,26 +1005,26 @@
"apps": "Apl",
"synced": "Tersinkron",
"outOfSync": "Tidak Sinkron",
"healthy": "Healthy",
"healthy": "Lancar",
"degraded": "Terdegradasi",
"progressing": "Progressing",
"missing": "Missing",
"missing": "Tidak Ditemukan",
"suspended": "Ditangguhkan"
},
"spoolman": {
"loading": "Loading"
"loading": "Memuat"
},
"gitlab": {
"groups": "Grup",
"issues": "Issues",
"issues": "Isu",
"merges": "Merge Requests",
"projects": "Proyek"
},
"apcups": {
"status": "Status",
"load": "Load",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
"load": "Beban",
"bcharge": "Sisa Baterai",
"timeleft": "Sisa Waktu"
},
"karakeep": {
"bookmarks": "Bookmarks",
@@ -1038,50 +1032,27 @@
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
"tags": "Tag"
},
"slskd": {
"slskStatus": "Network",
"connected": "Connected",
"disconnected": "Disconnected",
"slskStatus": "Jaringan",
"connected": "Tersambung",
"disconnected": "Terputus",
"updateStatus": "Update",
"update_yes": "Available",
"update_no": "Up to Date",
"update_yes": "Tersedia",
"update_no": "Terbaru",
"downloads": "Downloads",
"uploads": "Uploads",
"sharedFiles": "Files"
"sharedFiles": "File"
},
"jellystat": {
"songs": "Songs",
"movies": "Movies",
"episodes": "Episodes",
"songs": "Lagu",
"movies": "Film",
"episodes": "Episode",
"other": "Other"
},
"checkmk": {
"serviceErrors": "Service 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",
"up": "UP",
"down": "DOWN",
"wait": "Please wait",
"wait": "Attendi per favore",
"empty_data": "Stato del sottosistema sconosciuto"
},
"docker": {
@@ -83,7 +83,7 @@
"partial": "Parziale"
},
"ping": {
"error": "Error",
"error": "Errore",
"ping": "Ping",
"down": "Down",
"up": "Up",
@@ -91,11 +91,11 @@
},
"siteMonitor": {
"http_status": "Stato HTTP",
"error": "Error",
"error": "Errore",
"response": "Risposta",
"down": "Down",
"up": "Up",
"not_available": "Not Available"
"not_available": "Non disponibile"
},
"emby": {
"playing": "In riproduzione",
@@ -108,11 +108,11 @@
"songs": "Canzoni"
},
"esphome": {
"offline": "Offline",
"offline_alt": "Offline",
"offline": "Non in linea",
"offline_alt": "Non in linea",
"online": "Online",
"total": "Total",
"unknown": "Unknown"
"total": "Totale",
"unknown": "Sconosciuto"
},
"evcc": {
"pv_power": "Produzione",
@@ -133,7 +133,7 @@
"unread": "Non letto"
},
"fritzbox": {
"connectionStatus": "Status",
"connectionStatus": "Stato",
"connectionStatusUnconfigured": "Non configurato",
"connectionStatusConnecting": "Connessione in corso",
"connectionStatusAuthenticating": "In fase di autenticazione",
@@ -141,7 +141,7 @@
"connectionStatusDisconnecting": "Disconnessione in corso",
"connectionStatusDisconnected": "Disconnesso",
"connectionStatusConnected": "Connesso",
"uptime": "Uptime",
"uptime": "Tempo di attività",
"maxDown": "Max. Down",
"maxUp": "Max. Up",
"down": "Down",
@@ -168,10 +168,10 @@
"passes": "Tessere"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"playing": "In riproduzione",
"transcoding": "Transcodifica",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"no_active": "Nessuno Stream Attivo",
"plex_connection_error": "Controllare la connessione a Plex"
},
"omada": {
@@ -189,11 +189,11 @@
"plex": {
"streams": "Trasmissioni attive",
"albums": "Album",
"movies": "Movies",
"movies": "Film",
"tv": "Programmi televisivi"
},
"sabnzbd": {
"rate": "Rate",
"rate": "Rapporto",
"queue": "Coda",
"timeleft": "Tempo Rimanente"
},
@@ -205,13 +205,13 @@
"transmission": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"leech": "In download",
"seed": "Seed"
},
"qbittorrent": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"leech": "In download",
"seed": "Seed"
},
"qnap": {
@@ -225,7 +225,7 @@
"deluge": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"leech": "In download",
"seed": "Seed"
},
"develancacheui": {
@@ -235,32 +235,32 @@
"downloadstation": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"leech": "In download",
"seed": "Seed"
},
"sonarr": {
"wanted": "Richiesti",
"queued": "In coda",
"series": "Series",
"queue": "Queue",
"unknown": "Unknown"
"series": "Serie",
"queue": "Coda",
"unknown": "Sconosciuto"
},
"radarr": {
"wanted": "Wanted",
"wanted": "Richiesti",
"missing": "Mancanti",
"queued": "Queued",
"movies": "Movies",
"queue": "Queue",
"unknown": "Unknown"
"queued": "In coda",
"movies": "Film",
"queue": "Coda",
"unknown": "Sconosciuto"
},
"lidarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Richiesti",
"queued": "In coda",
"artists": "Artisti"
},
"readarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Richiesti",
"queued": "In coda",
"books": "Libri"
},
"bazarr": {
@@ -273,19 +273,19 @@
"available": "Disponibili"
},
"jellyseerr": {
"pending": "Pending",
"approved": "Approved",
"available": "Available"
"pending": "In attesa",
"approved": "Approvati",
"available": "Disponibili"
},
"overseerr": {
"pending": "Pending",
"pending": "In attesa",
"processing": "In lavorazione",
"approved": "Approved",
"available": "Available"
"approved": "Approvati",
"available": "Disponibili"
},
"netalertx": {
"total": "Total",
"connected": "Connected",
"total": "Totale",
"connected": "Connesso",
"new_devices": "Nuovi Dispositivi",
"down_alerts": "Avvisi di Disservizio"
},
@@ -296,8 +296,8 @@
"gravity": "Gravity"
},
"adguard": {
"queries": "Queries",
"blocked": "Blocked",
"queries": "Richieste",
"blocked": "Bloccati",
"filtered": "Filtrati",
"latency": "Latenza"
},
@@ -307,15 +307,15 @@
"ping": "Ping"
},
"portainer": {
"running": "Running",
"running": "In esecuzione",
"stopped": "Fermati",
"total": "Total"
"total": "Totale"
},
"suwayomi": {
"download": "Downloaded",
"download": "Scaricato",
"nondownload": "Non Scaricato",
"read": "Read",
"unread": "Unread",
"read": "Letti",
"unread": "Non letto",
"downloadedread": "Scaricato E Letto",
"downloadedunread": "Scaricato E Non Letto",
"nondownloadedread": "Non Scaricato E Letto",
@@ -336,7 +336,7 @@
"ago": "{{value}} Fa"
},
"technitium": {
"totalQueries": "Queries",
"totalQueries": "Richieste",
"totalNoError": "Successo",
"totalServerFailure": "Fallimenti",
"totalNxDomain": "Domini NX",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Autoritario",
"totalRecursive": "Ricorsivo",
"totalCached": "In cache",
"totalBlocked": "Blocked",
"totalBlocked": "Bloccati",
"totalDropped": "Saltati",
"totalClients": "Client"
},
"tdarr": {
"queue": "Queue",
"queue": "Coda",
"processed": "Elaborati",
"errored": "In errore",
"saved": "Salvati"
@@ -359,20 +359,14 @@
"services": "Servizi",
"middleware": "Middleware"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"nothing_streaming": "Nessuno Stream Attivo",
"please_wait": "Attendere prego"
},
"npm": {
"enabled": "Abilitato",
"disabled": "Disabilitati",
"total": "Total"
"total": "Totale"
},
"coinmarketcap": {
"configure": "Configurare una o più criptomonete da seguire",
@@ -383,49 +377,49 @@
},
"gotify": {
"apps": "Applicazioni",
"clients": "Clients",
"clients": "Client",
"messages": "Messaggi"
},
"prowlarr": {
"enableIndexers": "Indicizzatori",
"numberOfGrabs": "Grab",
"numberOfQueries": "Queries",
"numberOfQueries": "Richieste",
"numberOfFailGrabs": "Grabs Falliti",
"numberOfFailQueries": "Queries Fallite"
},
"jackett": {
"configured": "Configurato",
"errored": "Errored"
"errored": "In errore"
},
"strelaysrv": {
"numActiveSessions": "Sessioni",
"numConnections": "Connessioni",
"dataRelayed": "Ritrasmessi",
"transferRate": "Rate"
"transferRate": "Rapporto"
},
"mastodon": {
"user_count": "Users",
"user_count": "Utenti",
"status_count": "Messaggi",
"domain_count": "Domini"
},
"medusa": {
"wanted": "Wanted",
"queued": "Queued",
"series": "Series"
"wanted": "Richiesti",
"queued": "In coda",
"series": "Serie"
},
"minecraft": {
"players": "Giocatori",
"version": "Versione",
"status": "Status",
"status": "Stato",
"up": "Online",
"down": "Offline"
"down": "Non in linea"
},
"miniflux": {
"read": "Letti",
"unread": "Unread"
"unread": "Non letto"
},
"authentik": {
"users": "Users",
"users": "Utenti",
"loginsLast24H": "Accessi (24h)",
"failedLoginsLast24H": "Accessi Falliti (24h)"
},
@@ -437,19 +431,19 @@
},
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"load": "Carico",
"wait": "Attendi per favore",
"temp": "TEMP",
"_temp": "Temp.",
"warn": "Avviso",
"uptime": "UP",
"total": "Total",
"free": "Free",
"used": "Used",
"days": "d",
"hours": "h",
"total": "Totale",
"free": "Libero",
"used": "In utilizzo",
"days": "g",
"hours": "o",
"crit": "Critico",
"read": "Read",
"read": "Letti",
"write": "Scrittura",
"gpu": "GPU",
"mem": "Mem.",
@@ -470,57 +464,57 @@
"1-day": "Prevalentemente Soleggiato",
"1-night": "Prevalentemente Sereno",
"2-day": "Parzialmente Nuvoloso",
"2-night": "Partly Cloudy",
"2-night": "Parzialmente Nuvoloso",
"3-day": "Nuvoloso",
"3-night": "Cloudy",
"3-night": "Nuvoloso",
"45-day": "Nebbioso",
"45-night": "Foggy",
"48-day": "Foggy",
"48-night": "Foggy",
"45-night": "Nebbioso",
"48-day": "Nebbioso",
"48-night": "Nebbioso",
"51-day": "Pioggerella Leggera",
"51-night": "Light Drizzle",
"51-night": "Pioggerella Leggera",
"53-day": "Pioggerella",
"53-night": "Drizzle",
"53-night": "Pioggerella",
"55-day": "Pioggerella Pesante",
"55-night": "Heavy Drizzle",
"55-night": "Pioggerella Pesante",
"56-day": "Leggera Pioggia Gelata",
"56-night": "Light Freezing Drizzle",
"56-night": "Leggera Pioggia Gelata",
"57-day": "Pioggerella Gelata",
"57-night": "Freezing Drizzle",
"57-night": "Pioggerella Gelata",
"61-day": "Pioggia Leggera",
"61-night": "Light Rain",
"61-night": "Pioggia Leggera",
"63-day": "Pioggia",
"63-night": "Rain",
"63-night": "Pioggia",
"65-day": "Pioggia Intensa",
"65-night": "Heavy Rain",
"65-night": "Pioggia Intensa",
"66-day": "Grandine",
"66-night": "Freezing Rain",
"67-day": "Freezing Rain",
"67-night": "Freezing Rain",
"66-night": "Grandine",
"67-day": "Grandine",
"67-night": "Grandine",
"71-day": "Leggera Nevicata",
"71-night": "Light Snow",
"71-night": "Leggera Nevicata",
"73-day": "Neve",
"73-night": "Snow",
"73-night": "Neve",
"75-day": "Nevicata Intensa",
"75-night": "Heavy Snow",
"75-night": "Nevicata Intensa",
"77-day": "Fiocchi di Neve",
"77-night": "Snow Grains",
"77-night": "Fiocchi di Neve",
"80-day": "Leggeri Rovesci",
"80-night": "Light Showers",
"80-night": "Leggeri Rovesci",
"81-day": "Rovesci",
"81-night": "Showers",
"81-night": "Rovesci",
"82-day": "Intensi Rovesci",
"82-night": "Heavy Showers",
"82-night": "Intensi Rovesci",
"85-day": "Rovesci di Neve",
"85-night": "Snow Showers",
"86-day": "Snow Showers",
"86-night": "Snow Showers",
"85-night": "Rovesci di Neve",
"86-day": "Rovesci di Neve",
"86-night": "Rovesci di Neve",
"95-day": "Temporale",
"95-night": "Thunderstorm",
"95-night": "Temporale",
"96-day": "Temporale con grandine",
"96-night": "Thunderstorm With Hail",
"99-day": "Thunderstorm With Hail",
"99-night": "Thunderstorm With Hail"
"96-night": "Temporale con grandine",
"99-day": "Temporale con grandine",
"99-night": "Temporale con grandine"
},
"homebridge": {
"available_update": "Sistema",
@@ -530,7 +524,7 @@
"child_bridges": "Bridge Figli",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "Up",
"pending": "Pending",
"pending": "In attesa",
"down": "Down"
},
"healthchecks": {
@@ -539,7 +533,7 @@
"grace": "Periodo di Tolleranza",
"down": "Down",
"paused": "In Pausa",
"status": "Status",
"status": "Stato",
"last_ping": "Ultimo Ping",
"never": "Ancora nessun ping"
},
@@ -549,27 +543,27 @@
"containers_failed": "Fallito"
},
"autobrr": {
"approvedPushes": "Approved",
"approvedPushes": "Approvati",
"rejectedPushes": "Rifiutato",
"filters": "Filtri",
"indexers": "Indexers"
"indexers": "Indicizzatori"
},
"tubearchivist": {
"downloads": "Queue",
"downloads": "Coda",
"videos": "Video",
"channels": "Canali",
"playlists": "Playlist"
},
"truenas": {
"load": "Carico di Sistema",
"uptime": "Uptime",
"alerts": "Alerts"
"uptime": "Tempo di attività",
"alerts": "Allarmi"
},
"pyload": {
"speed": "Velocità",
"active": "Active",
"queue": "Queue",
"total": "Total"
"active": "Attivo",
"queue": "Coda",
"total": "Totale"
},
"gluetun": {
"public_ip": "IP pubblico",
@@ -578,25 +572,25 @@
"port_forwarded": "Port Forwarded"
},
"hdhomerun": {
"channels": "Channels",
"channels": "Canali",
"hd": "HD",
"tunerCount": "Regolatori",
"channelNumber": "Canale",
"channelNetwork": "Rete",
"signalStrength": "Intensità",
"signalQuality": "Qualità",
"symbolQuality": "Quality",
"symbolQuality": "Qualità",
"networkRate": "Bitrate",
"clientIP": "Client"
},
"scrutiny": {
"passed": "Passati",
"failed": "Failed",
"unknown": "Unknown"
"failed": "Fallito",
"unknown": "Sconosciuto"
},
"paperlessngx": {
"inbox": "In arrivo",
"total": "Total"
"total": "Totale"
},
"peanut": {
"battery_charge": "Carica Batteria",
@@ -607,18 +601,18 @@
"low_battery": "Batteria Quasi Scarica"
},
"nextdns": {
"wait": "Please Wait",
"wait": "Attendere prego",
"no_devices": "Nessun dato del dispositivo ricevuto"
},
"mikrotik": {
"cpuLoad": "Carico della CPU",
"memoryUsed": "Memoria Utilizzata",
"uptime": "Uptime",
"uptime": "Tempo di attività",
"numberOfLeases": "Rilasci"
},
"xteve": {
"streams_all": "Tutti gli stream",
"streams_active": "Active Streams",
"streams_active": "Trasmissioni attive",
"streams_xepg": "Canali XEPG"
},
"opendtu": {
@@ -628,7 +622,7 @@
"limit": "Limite"
},
"opnsense": {
"cpu": "CPU Load",
"cpu": "Carico della CPU",
"memory": "Memoria in uso",
"wanUpload": "WAN Upload",
"wanDownload": "WAN Download"
@@ -640,14 +634,14 @@
"layers": "Livelli"
},
"octoprint": {
"printer_state": "Status",
"printer_state": "Stato",
"temp_tool": "Temp. utensile",
"temp_bed": "Temp. letto",
"job_completion": "Completamento"
},
"cloudflared": {
"origin_ip": "IP sorgente",
"status": "Status"
"status": "Stato"
},
"pfsense": {
"load": "Carico Medio",
@@ -655,7 +649,7 @@
"wanStatus": "Stato WAN",
"up": "Up",
"down": "Down",
"temp": "Temp",
"temp": "Temp.",
"disk": "Uso Disco",
"wanIP": "IP WAN"
},
@@ -666,49 +660,49 @@
"memory_usage": "Memoria"
},
"immich": {
"users": "Users",
"users": "Utenti",
"photos": "Foto",
"videos": "Videos",
"videos": "Video",
"storage": "Archiviazione"
},
"uptimekuma": {
"up": "Siti On",
"down": "Siti Down",
"uptime": "Uptime",
"uptime": "Tempo di attività",
"incident": "Incidente",
"m": "m"
},
"atsumeru": {
"series": "Series",
"series": "Serie",
"archives": "Archivi",
"chapters": "Capitoli",
"categories": "Categorie"
},
"komga": {
"libraries": "Librerie",
"series": "Series",
"books": "Books"
"series": "Serie",
"books": "Libri"
},
"diskstation": {
"days": "Days",
"uptime": "Uptime",
"volumeAvailable": "Available"
"days": "Giorni",
"uptime": "Tempo di attività",
"volumeAvailable": "Disponibili"
},
"mylar": {
"series": "Series",
"series": "Serie",
"issues": "Problemi",
"wanted": "Wanted"
"wanted": "Richiesti"
},
"photoprism": {
"albums": "Albums",
"photos": "Photos",
"videos": "Videos",
"albums": "Album",
"photos": "Foto",
"videos": "Video",
"people": "Persone"
},
"fileflows": {
"queue": "Queue",
"processing": "Processing",
"processed": "Processed",
"queue": "Coda",
"processing": "In lavorazione",
"processed": "Elaborati",
"time": "Tempo"
},
"firefly": {
@@ -730,11 +724,11 @@
"numshares": "Oggetti Condivisi"
},
"kopia": {
"status": "Status",
"status": "Stato",
"size": "Dimensione",
"lastrun": "Ultima esecuzione",
"nextrun": "Prossima esecuzione",
"failed": "Failed"
"failed": "Fallito"
},
"unmanic": {
"active_workers": "Lavoratori Attivi",
@@ -751,20 +745,20 @@
"targets_total": "Targets Totali"
},
"gatus": {
"up": "Sites Up",
"down": "Sites Down",
"uptime": "Uptime"
"up": "Siti On",
"down": "Siti Down",
"uptime": "Tempo di attività"
},
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_today": "Oggi",
"gross_percent_1y": "Un anno",
"gross_percent_max": "Sempre"
},
"audiobookshelf": {
"podcasts": "Podcast",
"books": "Books",
"books": "Libri",
"podcastsDuration": "Durata",
"booksDuration": "Duration"
"booksDuration": "Durata"
},
"homeassistant": {
"people_home": "Persone a Casa",
@@ -773,45 +767,45 @@
},
"whatsupdocker": {
"monitoring": "Monitoraggio",
"updates": "Updates"
"updates": "Aggiornamenti"
},
"calibreweb": {
"books": "Books",
"books": "Libri",
"authors": "Autori",
"categories": "Categories",
"series": "Series"
"categories": "Categorie",
"series": "Serie"
},
"jdownloader": {
"downloadCount": "Queue",
"downloadBytesRemaining": "Remaining",
"downloadTotalBytes": "Size",
"downloadSpeed": "Speed"
"downloadCount": "Coda",
"downloadBytesRemaining": "Rimanente",
"downloadTotalBytes": "Dimensione",
"downloadSpeed": "Velocità"
},
"kavita": {
"seriesCount": "Series",
"totalFiles": "Files"
"seriesCount": "Serie",
"totalFiles": "File"
},
"azuredevops": {
"result": "Risultato",
"status": "Status",
"status": "Stato",
"buildId": "ID Build",
"succeeded": "Riuscito",
"notStarted": "Non Avviato",
"failed": "Failed",
"failed": "Fallito",
"canceled": "Cancellato",
"inProgress": "In corso",
"totalPrs": "PR Totali",
"myPrs": "Miei PR",
"approved": "Approved"
"approved": "Approvati"
},
"gamedig": {
"status": "Status",
"status": "Stato",
"online": "Online",
"offline": "Offline",
"offline": "Non in linea",
"name": "Nome",
"map": "Mappa",
"currentPlayers": "Giocatori attuali",
"players": "Players",
"players": "Giocatori",
"maxPlayers": "Giocatori max",
"bots": "Bot",
"ping": "Ping"
@@ -824,39 +818,39 @@
},
"mealie": {
"recipes": "Ricette",
"users": "Users",
"categories": "Categories",
"users": "Utenti",
"categories": "Categorie",
"tags": "Tag"
},
"openmediavault": {
"downloading": "Download in corso",
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"passed": "Passed",
"failed": "Failed"
"total": "Totale",
"running": "In esecuzione",
"stopped": "Fermati",
"passed": "Passati",
"failed": "Fallito"
},
"openwrt": {
"uptime": "Uptime",
"uptime": "Tempo di attività",
"cpuLoad": "Media Carico Cpu (5m)",
"up": "Up",
"down": "Down",
"bytesTx": "Trasmessi",
"bytesRx": "Received"
"bytesRx": "Ricevuti"
},
"uptimerobot": {
"status": "Status",
"uptime": "Uptime",
"status": "Stato",
"uptime": "Tempo di attività",
"lastDown": "Ultimo periodo di inattività",
"downDuration": "Durata inattività",
"sitesUp": "Sites Up",
"sitesDown": "Sites Down",
"paused": "Paused",
"sitesUp": "Siti On",
"sitesDown": "Siti Down",
"paused": "In Pausa",
"notyetchecked": "Non ancora controllati",
"up": "Up",
"seemsdown": "Sembrano non attivi",
"down": "Down",
"unknown": "Unknown"
"unknown": "Sconosciuto"
},
"calendar": {
"inCinemas": "Al cinema",
@@ -875,10 +869,10 @@
"totalfilesize": "Dimensioni totali"
},
"mailcow": {
"domains": "Domains",
"domains": "Domini",
"mailboxes": "Caselle di posta",
"mails": "Mail",
"storage": "Storage"
"storage": "Archiviazione"
},
"netdata": {
"warnings": "Avvisi",
@@ -887,12 +881,12 @@
"plantit": {
"events": "Eventi",
"plants": "Piante",
"photos": "Photos",
"photos": "Foto",
"species": "Specie"
},
"gitea": {
"notifications": "Notifiche",
"issues": "Issues",
"issues": "Problemi",
"pulls": "Richieste di Pull",
"repositories": "Repository"
},
@@ -908,13 +902,13 @@
"galleries": "Gallerie",
"performers": "Esecutori",
"studios": "Studi",
"movies": "Movies",
"tags": "Tags",
"movies": "Film",
"tags": "Tag",
"oCount": "O Count"
},
"tandoor": {
"users": "Users",
"recipes": "Recipes",
"users": "Utenti",
"recipes": "Ricette",
"keywords": "Parole chiave"
},
"homebox": {
@@ -922,18 +916,18 @@
"totalWithWarranty": "Con Garanzia",
"locations": "Luoghi",
"labels": "Etichette",
"users": "Users",
"users": "Utenti",
"totalValue": "Valore totale"
},
"crowdsec": {
"alerts": "Alerts",
"alerts": "Allarmi",
"bans": "Bannati"
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"connected": "Connesso",
"enabled": "Abilitato",
"disabled": "Disabilitati",
"total": "Totale"
},
"swagdashboard": {
"proxied": "Proxato",
@@ -955,17 +949,17 @@
},
"frigate": {
"cameras": "Telecamere",
"uptime": "Uptime",
"version": "Version"
"uptime": "Tempo di attività",
"version": "Versione"
},
"linkwarden": {
"links": "Collegamenti",
"collections": "Raccolte",
"tags": "Tags"
"tags": "Tag"
},
"zabbix": {
"unclassified": "Non classificato",
"information": "Information",
"information": "Informazioni",
"warning": "Avviso",
"average": "Media",
"high": "Alto",
@@ -986,22 +980,22 @@
"tasksInProgress": "Task In Corso"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"name": "Nome",
"address": "Indirizzo",
"last_seen": "Ultima visualizzazione",
"status": "Stato",
"online": "Online",
"offline": "Offline"
"offline": "Non in linea"
},
"beszel": {
"name": "Name",
"name": "Nome",
"systems": "Sistemi",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Status",
"updated": "Updated",
"paused": "In Pausa",
"pending": "In attesa",
"status": "Stato",
"updated": "Aggiornato",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disco",
@@ -1011,26 +1005,26 @@
"apps": "Applicazioni",
"synced": "Sincronizzato",
"outOfSync": "Non Sincronizzato",
"healthy": "Healthy",
"healthy": "Sano",
"degraded": "Degradato",
"progressing": "Progressione",
"missing": "Missing",
"missing": "Mancanti",
"suspended": "Sospeso"
},
"spoolman": {
"loading": "Loading"
"loading": "Caricamento"
},
"gitlab": {
"groups": "Gruppi",
"issues": "Issues",
"issues": "Problemi",
"merges": "Richieste di merge",
"projects": "Progetti"
},
"apcups": {
"status": "Status",
"load": "Load",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
"status": "Stato",
"load": "Carico",
"bcharge": "Carica Batteria",
"timeleft": "Tempo Rimanente"
},
"karakeep": {
"bookmarks": "Segnalibri",
@@ -1038,50 +1032,27 @@
"archived": "Archiviato",
"highlights": "Highlights",
"lists": "Liste",
"tags": "Tags"
"tags": "Tag"
},
"slskd": {
"slskStatus": "Network",
"connected": "Connected",
"disconnected": "Disconnected",
"slskStatus": "Rete",
"connected": "Connesso",
"disconnected": "Disconnesso",
"updateStatus": "Aggiornamento",
"update_yes": "Available",
"update_no": "Up to Date",
"update_yes": "Disponibili",
"update_no": "Aggiornato",
"downloads": "Download",
"uploads": "Caricamenti",
"sharedFiles": "Files"
"sharedFiles": "File"
},
"jellystat": {
"songs": "Songs",
"movies": "Movies",
"episodes": "Episodes",
"songs": "Canzoni",
"movies": "Film",
"episodes": "Episodi",
"other": "Altro"
},
"checkmk": {
"serviceErrors": "Problemi di servizio",
"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 장치",
"lan_users": "LAN 사용자",
"wlan_users": "WLAN 사용자",
"up": "UP",
"up": "가동",
"down": "DOWN",
"wait": "Please wait",
"wait": "잠시만 기다리세요",
"empty_data": "서브시스템 상태 알 수 없음"
},
"docker": {
@@ -83,7 +83,7 @@
"partial": "부분적"
},
"ping": {
"error": "Error",
"error": "오류",
"ping": "Ping",
"down": "Down",
"up": "Up",
@@ -91,11 +91,11 @@
},
"siteMonitor": {
"http_status": "HTTP 상태",
"error": "Error",
"error": "오류",
"response": "응답",
"down": "Down",
"up": "Up",
"not_available": "Not Available"
"not_available": "사용할 수 없음"
},
"emby": {
"playing": "재생 중",
@@ -108,11 +108,11 @@
"songs": "음악"
},
"esphome": {
"offline": "Offline",
"offline_alt": "Offline",
"offline": "중지",
"offline_alt": "중지",
"online": "온라인",
"total": "Total",
"unknown": "Unknown"
"total": "총합",
"unknown": "알 수 없음"
},
"evcc": {
"pv_power": "Production",
@@ -133,7 +133,7 @@
"unread": "미열람"
},
"fritzbox": {
"connectionStatus": "Status",
"connectionStatus": "상태",
"connectionStatusUnconfigured": "구성되지 않음",
"connectionStatusConnecting": "연결중",
"connectionStatusAuthenticating": "인증",
@@ -141,7 +141,7 @@
"connectionStatusDisconnecting": "연결을 끊는 중...",
"connectionStatusDisconnected": "연결 끊김",
"connectionStatusConnected": "연결됨",
"uptime": "Uptime",
"uptime": "가동 시간",
"maxDown": "Max. Down",
"maxUp": "Max. Up",
"down": "Down",
@@ -168,10 +168,10 @@
"passes": "Passes"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"playing": "재생 중",
"transcoding": "트랜스코딩",
"bitrate": "비트레이트",
"no_active": "활성 스트림 없음",
"plex_connection_error": "Check Plex Connection"
},
"omada": {
@@ -189,30 +189,30 @@
"plex": {
"streams": "활성 스트림",
"albums": "앨범",
"movies": "Movies",
"movies": "영화",
"tv": "TV 쇼"
},
"sabnzbd": {
"rate": "Rate",
"rate": "비율",
"queue": "대기열",
"timeleft": "남은 시간"
},
"rutorrent": {
"active": "활성",
"upload": "Upload",
"download": "Download"
"upload": "업로드",
"download": "다운로드"
},
"transmission": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"seed": "Seed"
"download": "다운로드",
"upload": "업로드",
"leech": "리치",
"seed": "시드"
},
"qbittorrent": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"seed": "Seed"
"download": "다운로드",
"upload": "업로드",
"leech": "리치",
"seed": "시드"
},
"qnap": {
"cpuUsage": "CPU 사용",
@@ -223,44 +223,44 @@
"invalid": "잘못됨"
},
"deluge": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"seed": "Seed"
"download": "다운로드",
"upload": "업로드",
"leech": "리치",
"seed": "시드"
},
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"seed": "Seed"
"download": "다운로드",
"upload": "업로드",
"leech": "리치",
"seed": "시드"
},
"sonarr": {
"wanted": "요청",
"queued": "대기 중",
"series": "Series",
"queue": "Queue",
"unknown": "Unknown"
"series": "시리즈",
"queue": "대기열",
"unknown": "알 수 없음"
},
"radarr": {
"wanted": "Wanted",
"wanted": "요청",
"missing": "빠짐",
"queued": "Queued",
"movies": "Movies",
"queue": "Queue",
"unknown": "Unknown"
"queued": "대기 중",
"movies": "영화",
"queue": "대기열",
"unknown": "알 수 없음"
},
"lidarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "요청",
"queued": "대기 중",
"artists": "Artists"
},
"readarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "요청",
"queued": "대기 중",
"books": "책"
},
"bazarr": {
@@ -273,19 +273,19 @@
"available": "이용 가능"
},
"jellyseerr": {
"pending": "Pending",
"approved": "Approved",
"available": "Available"
"pending": "대기 중",
"approved": "승인됨",
"available": "이용 가능"
},
"overseerr": {
"pending": "Pending",
"pending": "대기 중",
"processing": "처리 중",
"approved": "Approved",
"available": "Available"
"approved": "승인됨",
"available": "이용 가능"
},
"netalertx": {
"total": "Total",
"connected": "Connected",
"total": "총합",
"connected": "연결됨",
"new_devices": "New Devices",
"down_alerts": "Down Alerts"
},
@@ -296,26 +296,26 @@
"gravity": "Gravity"
},
"adguard": {
"queries": "Queries",
"blocked": "Blocked",
"queries": "쿼리",
"blocked": "차단됨",
"filtered": "필터링됨",
"latency": "지연"
},
"speedtest": {
"upload": "Upload",
"download": "Download",
"upload": "업로드",
"download": "다운로드",
"ping": "Ping"
},
"portainer": {
"running": "Running",
"running": "가동 중",
"stopped": "중지",
"total": "Total"
"total": "총합"
},
"suwayomi": {
"download": "Downloaded",
"download": "다운로드됨",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"read": "읽음",
"unread": "미열람",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
@@ -336,7 +336,7 @@
"ago": "{{value}} 전"
},
"technitium": {
"totalQueries": "Queries",
"totalQueries": "쿼리",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blocked",
"totalBlocked": "차단됨",
"totalDropped": "Dropped",
"totalClients": "클라이언트"
},
"tdarr": {
"queue": "Queue",
"queue": "대기열",
"processed": "처리됨",
"errored": "오류",
"saved": "저장됨"
@@ -359,20 +359,14 @@
"services": "서비스",
"middleware": "미들웨어"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"nothing_streaming": "활성 스트림 없음",
"please_wait": "잠시만 기다리세요"
},
"npm": {
"enabled": "활성",
"disabled": "비활성",
"total": "Total"
"total": "총합"
},
"coinmarketcap": {
"configure": "한 개 이상의 가상화폐를 설정하여 추적",
@@ -383,49 +377,49 @@
},
"gotify": {
"apps": "어플리케이션",
"clients": "Clients",
"clients": "클라이언트",
"messages": "메시지"
},
"prowlarr": {
"enableIndexers": "인덱서",
"numberOfGrabs": "Grabs",
"numberOfQueries": "Queries",
"numberOfQueries": "쿼리",
"numberOfFailGrabs": "Fail Grabs",
"numberOfFailQueries": "Fail Queries"
},
"jackett": {
"configured": "구성됨",
"errored": "Errored"
"errored": "오류"
},
"strelaysrv": {
"numActiveSessions": "Sessions",
"numConnections": "Connections",
"dataRelayed": "Relayed",
"transferRate": "Rate"
"transferRate": "비율"
},
"mastodon": {
"user_count": "Users",
"user_count": "사용자",
"status_count": "게시글",
"domain_count": "Domains"
},
"medusa": {
"wanted": "Wanted",
"queued": "Queued",
"series": "Series"
"wanted": "요청",
"queued": "대기 중",
"series": "시리즈"
},
"minecraft": {
"players": "Players",
"version": "버전",
"status": "Status",
"up": "Online",
"down": "Offline"
"status": "상태",
"up": "온라인",
"down": "중지"
},
"miniflux": {
"read": "읽음",
"unread": "Unread"
"unread": "미열람"
},
"authentik": {
"users": "Users",
"users": "사용자",
"loginsLast24H": "로그인 (24h)",
"failedLoginsLast24H": "실패한 로그인 (24h)"
},
@@ -437,19 +431,19 @@
},
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"temp": "TEMP",
"load": "부하",
"wait": "잠시만 기다리세요",
"temp": "온도",
"_temp": "온도",
"warn": "경고",
"uptime": "UP",
"total": "Total",
"free": "Free",
"used": "Used",
"days": "d",
"hours": "h",
"uptime": "가동",
"total": "총합",
"free": "남음",
"used": "사용",
"days": "",
"hours": "",
"crit": "Crit",
"read": "Read",
"read": "읽음",
"write": "쓰기",
"gpu": "GPU",
"mem": "Men",
@@ -472,7 +466,7 @@
"2-day": "Partly Cloudy",
"2-night": "Partly Cloudy",
"3-day": "구름 낀",
"3-night": "Cloudy",
"3-night": "구름 낀",
"45-day": "Foggy",
"45-night": "Foggy",
"48-day": "Foggy",
@@ -498,13 +492,13 @@
"67-day": "Freezing Rain",
"67-night": "Freezing Rain",
"71-day": "약한 눈",
"71-night": "Light Snow",
"71-night": "약한 눈",
"73-day": "Snow",
"73-night": "Snow",
"75-day": "폭설",
"75-night": "Heavy Snow",
"75-night": "폭설",
"77-day": "싸락눈",
"77-night": "Snow Grains",
"77-night": "싸락눈",
"80-day": "Light Showers",
"80-night": "Light Showers",
"81-day": "Showers",
@@ -530,7 +524,7 @@
"child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "Up",
"pending": "Pending",
"pending": "대기 중",
"down": "Down"
},
"healthchecks": {
@@ -539,7 +533,7 @@
"grace": "In Grace Period",
"down": "Down",
"paused": "Paused",
"status": "Status",
"status": "상태",
"last_ping": "Last Ping",
"never": "No pings yet"
},
@@ -549,27 +543,27 @@
"containers_failed": "Failed"
},
"autobrr": {
"approvedPushes": "Approved",
"approvedPushes": "승인됨",
"rejectedPushes": "Rejected",
"filters": "Filters",
"indexers": "Indexers"
"indexers": "인덱서"
},
"tubearchivist": {
"downloads": "Queue",
"downloads": "대기열",
"videos": "동영상",
"channels": "채널",
"playlists": "재생 목록"
},
"truenas": {
"load": "System Load",
"uptime": "Uptime",
"alerts": "Alerts"
"uptime": "가동 시간",
"alerts": "경고"
},
"pyload": {
"speed": "Speed",
"active": "Active",
"queue": "Queue",
"total": "Total"
"active": "활성",
"queue": "대기열",
"total": "총합"
},
"gluetun": {
"public_ip": "Public IP",
@@ -578,7 +572,7 @@
"port_forwarded": "Port Forwarded"
},
"hdhomerun": {
"channels": "Channels",
"channels": "채널",
"hd": "HD",
"tunerCount": "Tuners",
"channelNumber": "채널",
@@ -586,39 +580,39 @@
"signalStrength": "Strength",
"signalQuality": "Quality",
"symbolQuality": "Quality",
"networkRate": "Bitrate",
"networkRate": "비트레이트",
"clientIP": "클라이언트"
},
"scrutiny": {
"passed": "Passed",
"failed": "Failed",
"unknown": "Unknown"
"unknown": "알 수 없음"
},
"paperlessngx": {
"inbox": "받은메일함",
"total": "Total"
"total": "총합"
},
"peanut": {
"battery_charge": "배터리 충전 중",
"ups_load": "UPS Load",
"ups_status": "UPS Status",
"online": "Online",
"online": "온라인",
"on_battery": "배터리 사용",
"low_battery": "배터리 부족"
},
"nextdns": {
"wait": "Please Wait",
"wait": "잠시만 기다리세요",
"no_devices": "No Device Data Received"
},
"mikrotik": {
"cpuLoad": "CPU Load",
"memoryUsed": "메모리 사용량",
"uptime": "Uptime",
"uptime": "가동 시간",
"numberOfLeases": "Leases"
},
"xteve": {
"streams_all": "모든 스트림",
"streams_active": "Active Streams",
"streams_active": "활성 스트림",
"streams_xepg": "XEPG Channels"
},
"opendtu": {
@@ -640,14 +634,14 @@
"layers": "Layers"
},
"octoprint": {
"printer_state": "Status",
"printer_state": "상태",
"temp_tool": "Tool temp",
"temp_bed": "Bed temp",
"job_completion": "Completion"
},
"cloudflared": {
"origin_ip": "Origin IP",
"status": "Status"
"status": "상태"
},
"pfsense": {
"load": "Load Avg",
@@ -655,7 +649,7 @@
"wanStatus": "WAN Status",
"up": "Up",
"down": "Down",
"temp": "Temp",
"temp": "온도",
"disk": "Disk Usage",
"wanIP": "WAN IP"
},
@@ -666,49 +660,49 @@
"memory_usage": "Memory"
},
"immich": {
"users": "Users",
"users": "사용자",
"photos": "사진",
"videos": "Videos",
"videos": "동영상",
"storage": "저장됨"
},
"uptimekuma": {
"up": "Sites Up",
"down": "Sites Down",
"uptime": "Uptime",
"uptime": "가동 시간",
"incident": "Incident",
"m": "m"
"m": ""
},
"atsumeru": {
"series": "Series",
"series": "시리즈",
"archives": "Archives",
"chapters": "Chapters",
"categories": "분류"
},
"komga": {
"libraries": "서재",
"series": "Series",
"books": "Books"
"series": "시리즈",
"books": ""
},
"diskstation": {
"days": "Days",
"uptime": "Uptime",
"volumeAvailable": "Available"
"days": "",
"uptime": "가동 시간",
"volumeAvailable": "이용 가능"
},
"mylar": {
"series": "Series",
"series": "시리즈",
"issues": "Issues",
"wanted": "Wanted"
"wanted": "요청"
},
"photoprism": {
"albums": "Albums",
"photos": "Photos",
"videos": "Videos",
"albums": "앨범",
"photos": "사진",
"videos": "동영상",
"people": "People"
},
"fileflows": {
"queue": "Queue",
"processing": "Processing",
"processed": "Processed",
"queue": "대기열",
"processing": "처리 중",
"processed": "처리됨",
"time": "Time"
},
"firefly": {
@@ -730,7 +724,7 @@
"numshares": "공유된 항목"
},
"kopia": {
"status": "Status",
"status": "상태",
"size": "Size",
"lastrun": "Last Run",
"nextrun": "Next Run",
@@ -753,18 +747,18 @@
"gatus": {
"up": "Sites Up",
"down": "Sites Down",
"uptime": "Uptime"
"uptime": "가동 시간"
},
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_today": "오늘",
"gross_percent_1y": "One year",
"gross_percent_max": "All time"
},
"audiobookshelf": {
"podcasts": "Podcasts",
"books": "Books",
"books": "",
"podcastsDuration": "지속시간",
"booksDuration": "Duration"
"booksDuration": "지속시간"
},
"homeassistant": {
"people_home": "People Home",
@@ -773,27 +767,27 @@
},
"whatsupdocker": {
"monitoring": "Monitoring",
"updates": "Updates"
"updates": "업데이트"
},
"calibreweb": {
"books": "Books",
"books": "",
"authors": "저자",
"categories": "Categories",
"series": "Series"
"categories": "분류",
"series": "시리즈"
},
"jdownloader": {
"downloadCount": "Queue",
"downloadBytesRemaining": "Remaining",
"downloadCount": "대기열",
"downloadBytesRemaining": "남음",
"downloadTotalBytes": "Size",
"downloadSpeed": "Speed"
},
"kavita": {
"seriesCount": "Series",
"totalFiles": "Files"
"seriesCount": "시리즈",
"totalFiles": "파일"
},
"azuredevops": {
"result": "Result",
"status": "Status",
"status": "상태",
"buildId": "Build ID",
"succeeded": "Succeeded",
"notStarted": "Not Started",
@@ -802,12 +796,12 @@
"inProgress": "In Progress",
"totalPrs": "Total PRs",
"myPrs": "My PRs",
"approved": "Approved"
"approved": "승인됨"
},
"gamedig": {
"status": "Status",
"online": "Online",
"offline": "Offline",
"status": "상태",
"online": "온라인",
"offline": "중지",
"name": "이름",
"map": "지도",
"currentPlayers": "Current players",
@@ -824,29 +818,29 @@
},
"mealie": {
"recipes": "레시피",
"users": "Users",
"categories": "Categories",
"users": "사용자",
"categories": "분류",
"tags": "태그"
},
"openmediavault": {
"downloading": "다운로드 중",
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"total": "총합",
"running": "가동 중",
"stopped": "중지",
"passed": "Passed",
"failed": "Failed"
},
"openwrt": {
"uptime": "Uptime",
"uptime": "가동 시간",
"cpuLoad": "CPU Load Avg (5m)",
"up": "Up",
"down": "Down",
"bytesTx": "Transmitted",
"bytesRx": "Received"
"bytesRx": "수신됨"
},
"uptimerobot": {
"status": "Status",
"uptime": "Uptime",
"status": "상태",
"uptime": "가동 시간",
"lastDown": "Last Downtime",
"downDuration": "Downtime Duration",
"sitesUp": "Sites Up",
@@ -856,7 +850,7 @@
"up": "Up",
"seemsdown": "Seems Down",
"down": "Down",
"unknown": "Unknown"
"unknown": "알 수 없음"
},
"calendar": {
"inCinemas": "In cinemas",
@@ -878,7 +872,7 @@
"domains": "Domains",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
"storage": "저장됨"
},
"netdata": {
"warnings": "Warnings",
@@ -887,7 +881,7 @@
"plantit": {
"events": "Events",
"plants": "Plants",
"photos": "Photos",
"photos": "사진",
"species": "Species"
},
"gitea": {
@@ -908,13 +902,13 @@
"galleries": "Galleries",
"performers": "Performers",
"studios": "스튜디오",
"movies": "Movies",
"tags": "Tags",
"movies": "영화",
"tags": "태그",
"oCount": "O Count"
},
"tandoor": {
"users": "Users",
"recipes": "Recipes",
"users": "사용자",
"recipes": "레시피",
"keywords": "키워드"
},
"homebox": {
@@ -922,18 +916,18 @@
"totalWithWarranty": "With Warranty",
"locations": "Locations",
"labels": "Labels",
"users": "Users",
"users": "사용자",
"totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"alerts": "경고",
"bans": "Bans"
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"connected": "연결됨",
"enabled": "활성",
"disabled": "비활성",
"total": "총합"
},
"swagdashboard": {
"proxied": "Proxied",
@@ -943,8 +937,8 @@
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
"download": "다운로드",
"upload": "업로드"
},
"stocks": {
"stocks": "Stocks",
@@ -955,17 +949,17 @@
},
"frigate": {
"cameras": "카메라",
"uptime": "Uptime",
"version": "Version"
"uptime": "가동 시간",
"version": "버전"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tags"
"tags": "태그"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Information",
"information": "정보",
"warning": "Warning",
"average": "Average",
"high": "High",
@@ -986,21 +980,21 @@
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"online": "Online",
"offline": "Offline"
"name": "이름",
"address": "주소",
"last_seen": "마지막 접속",
"status": "상태",
"online": "온라인",
"offline": "중지"
},
"beszel": {
"name": "Name",
"name": "이름",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Status",
"pending": "대기 중",
"status": "상태",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
@@ -1011,14 +1005,14 @@
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"healthy": "좋음",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"missing": "빠짐",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
"loading": "로드 중"
},
"gitlab": {
"groups": "Groups",
@@ -1027,10 +1021,10 @@
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Load",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
"status": "상태",
"load": "부하",
"bcharge": "배터리 충전 중",
"timeleft": "남은 시간"
},
"karakeep": {
"bookmarks": "Bookmarks",
@@ -1038,50 +1032,27 @@
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
"tags": "태그"
},
"slskd": {
"slskStatus": "Network",
"connected": "Connected",
"disconnected": "Disconnected",
"slskStatus": "네트워크",
"connected": "연결됨",
"disconnected": "연결 끊김",
"updateStatus": "Update",
"update_yes": "Available",
"update_no": "Up to Date",
"update_yes": "이용 가능",
"update_no": "최신 상태",
"downloads": "Downloads",
"uploads": "Uploads",
"sharedFiles": "Files"
"sharedFiles": "파일"
},
"jellystat": {
"songs": "Songs",
"movies": "Movies",
"episodes": "Episodes",
"songs": "음악",
"movies": "영화",
"episodes": "에피소드",
"other": "Other"
},
"checkmk": {
"serviceErrors": "Service 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",
"up": "UP",
"down": "NEDARBOJAS",
"wait": "Please wait",
"wait": "Lūdzu, uzgaidiet",
"empty_data": "Subsystem status unknown"
},
"docker": {
@@ -83,7 +83,7 @@
"partial": "Partial"
},
"ping": {
"error": "Error",
"error": "Kļūda",
"ping": "Ping",
"down": "Down",
"up": "Up",
@@ -91,7 +91,7 @@
},
"siteMonitor": {
"http_status": "HTTP status",
"error": "Error",
"error": "Kļūda",
"response": "Response",
"down": "Down",
"up": "Up",
@@ -108,11 +108,11 @@
"songs": "Songs"
},
"esphome": {
"offline": "Offline",
"offline_alt": "Offline",
"offline": "Bezsaistē",
"offline_alt": "Bezsaistē",
"online": "Online",
"total": "Total",
"unknown": "Unknown"
"total": "Kopā",
"unknown": "Nezināms"
},
"evcc": {
"pv_power": "Production",
@@ -133,7 +133,7 @@
"unread": "Unread"
},
"fritzbox": {
"connectionStatus": "Status",
"connectionStatus": "Statuss",
"connectionStatusUnconfigured": "Unconfigured",
"connectionStatusConnecting": "Connecting",
"connectionStatusAuthenticating": "Authenticating",
@@ -168,10 +168,10 @@
"passes": "Passes"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"playing": "Atskaņo",
"transcoding": "Pārkodē",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"no_active": "Nav aktīvu straumju",
"plex_connection_error": "Check Plex Connection"
},
"omada": {
@@ -199,20 +199,20 @@
},
"rutorrent": {
"active": "Aktīvs",
"upload": "Upload",
"download": "Download"
"upload": "Augšupielāde",
"download": "Lejupielāde"
},
"transmission": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"seed": "Seed"
"download": "Lejupielāde",
"upload": "Augšupielāde",
"leech": "Ņēmēji",
"seed": "Devēji"
},
"qbittorrent": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"seed": "Seed"
"download": "Lejupielāde",
"upload": "Augšupielāde",
"leech": "Ņēmēji",
"seed": "Devēji"
},
"qnap": {
"cpuUsage": "CPU Usage",
@@ -223,35 +223,35 @@
"invalid": "Invalid"
},
"deluge": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"seed": "Seed"
"download": "Lejupielāde",
"upload": "Augšupielāde",
"leech": "Ņēmēji",
"seed": "Devēji"
},
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"seed": "Seed"
"download": "Lejupielāde",
"upload": "Augšupielāde",
"leech": "Ņēmēji",
"seed": "Devēji"
},
"sonarr": {
"wanted": "Wanted",
"queued": "Queued",
"series": "Series",
"queue": "Queue",
"unknown": "Unknown"
"queue": "Rindā",
"unknown": "Nezināms"
},
"radarr": {
"wanted": "Wanted",
"missing": "Missing",
"queued": "Queued",
"movies": "Movies",
"queue": "Queue",
"unknown": "Unknown"
"queue": "Rindā",
"unknown": "Nezināms"
},
"lidarr": {
"wanted": "Wanted",
@@ -284,7 +284,7 @@
"available": "Available"
},
"netalertx": {
"total": "Total",
"total": "Kopā",
"connected": "Connected",
"new_devices": "New Devices",
"down_alerts": "Down Alerts"
@@ -302,17 +302,17 @@
"latency": "Latency"
},
"speedtest": {
"upload": "Upload",
"download": "Download",
"upload": "Augšupielāde",
"download": "Lejupielāde",
"ping": "Ping"
},
"portainer": {
"running": "Running",
"stopped": "Stopped",
"total": "Total"
"total": "Kopā"
},
"suwayomi": {
"download": "Downloaded",
"download": "Lejupielādēts",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
@@ -349,7 +349,7 @@
"totalClients": "Clients"
},
"tdarr": {
"queue": "Queue",
"queue": "Rindā",
"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": {
"nothing_streaming": "No Active Streams",
"nothing_streaming": "Nav aktīvu straumju",
"please_wait": "Please Wait"
},
"npm": {
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"total": "Kopā"
},
"coinmarketcap": {
"configure": "Configure one or more crypto currencies to track",
@@ -404,7 +398,7 @@
"transferRate": "Rate"
},
"mastodon": {
"user_count": "Users",
"user_count": "Lietotāji",
"status_count": "Posts",
"domain_count": "Domains"
},
@@ -416,16 +410,16 @@
"minecraft": {
"players": "Players",
"version": "Version",
"status": "Status",
"status": "Statuss",
"up": "Online",
"down": "Offline"
"down": "Bezsaistē"
},
"miniflux": {
"read": "Read",
"unread": "Unread"
},
"authentik": {
"users": "Users",
"users": "Lietotāji",
"loginsLast24H": "Logins (24h)",
"failedLoginsLast24H": "Failed Logins (24h)"
},
@@ -437,15 +431,15 @@
},
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"load": "Ielādē",
"wait": "Lūdzu, uzgaidiet",
"temp": "TEMP",
"_temp": "Temp",
"warn": "Warn",
"uptime": "UP",
"total": "Total",
"free": "Free",
"used": "Used",
"total": "Kopā",
"free": "Brīvs",
"used": "Izmantojas",
"days": "d",
"hours": "h",
"crit": "Crit",
@@ -470,37 +464,37 @@
"1-day": "Galvenokārt saulains",
"1-night": "Galvenokārt skaidrs",
"2-day": "Daļēji apmācies",
"2-night": "Partly Cloudy",
"2-night": "Daļēji apmācies",
"3-day": "Apmācies",
"3-night": "Cloudy",
"3-night": "Apmācies",
"45-day": "Miglains",
"45-night": "Foggy",
"48-day": "Foggy",
"48-night": "Foggy",
"45-night": "Miglains",
"48-day": "Miglains",
"48-night": "Miglains",
"51-day": "Neliels lietus",
"51-night": "Light Drizzle",
"51-night": "Neliels lietus",
"53-day": "Lietus",
"53-night": "Drizzle",
"53-night": "Lietus",
"55-day": "Spēcīgs lietus",
"55-night": "Heavy Drizzle",
"55-night": "Spēcīgs lietus",
"56-day": "Neliels stindzinošs lietus",
"56-night": "Light Freezing Drizzle",
"56-night": "Neliels stindzinošs lietus",
"57-day": "Sasalstošs lietus",
"57-night": "Freezing Drizzle",
"57-night": "Sasalstošs lietus",
"61-day": "Viegls lietus",
"61-night": "Light Rain",
"61-night": "Viegls lietus",
"63-day": "Lietus",
"63-night": "Rain",
"63-night": "Lietus",
"65-day": "Spēcīgs lietus",
"65-night": "Heavy Rain",
"65-night": "Spēcīgs lietus",
"66-day": "Ledains lietus",
"66-night": "Freezing Rain",
"67-day": "Freezing Rain",
"67-night": "Freezing Rain",
"66-night": "Ledains lietus",
"67-day": "Ledains lietus",
"67-night": "Ledains lietus",
"71-day": "Neliels sniegs",
"71-night": "Light Snow",
"71-night": "Neliels sniegs",
"73-day": "Sniegs",
"73-night": "Snow",
"73-night": "Sniegs",
"75-day": "Heavy Snow",
"75-night": "Heavy Snow",
"77-day": "Snow Grains",
@@ -539,7 +533,7 @@
"grace": "In Grace Period",
"down": "Down",
"paused": "Paused",
"status": "Status",
"status": "Statuss",
"last_ping": "Last Ping",
"never": "No pings yet"
},
@@ -555,7 +549,7 @@
"indexers": "Indexers"
},
"tubearchivist": {
"downloads": "Queue",
"downloads": "Rindā",
"videos": "Videos",
"channels": "Channels",
"playlists": "Playlists"
@@ -563,13 +557,13 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
"alerts": "Alerts"
"alerts": "Paziņojumi"
},
"pyload": {
"speed": "Speed",
"active": "Active",
"queue": "Queue",
"total": "Total"
"active": "Aktīvs",
"queue": "Rindā",
"total": "Kopā"
},
"gluetun": {
"public_ip": "Public IP",
@@ -592,11 +586,11 @@
"scrutiny": {
"passed": "Passed",
"failed": "Failed",
"unknown": "Unknown"
"unknown": "Nezināms"
},
"paperlessngx": {
"inbox": "Inbox",
"total": "Total"
"total": "Kopā"
},
"peanut": {
"battery_charge": "Battery Charge",
@@ -618,7 +612,7 @@
},
"xteve": {
"streams_all": "All Streams",
"streams_active": "Active Streams",
"streams_active": "Aktīvās straumes",
"streams_xepg": "XEPG Channels"
},
"opendtu": {
@@ -640,14 +634,14 @@
"layers": "Layers"
},
"octoprint": {
"printer_state": "Status",
"printer_state": "Statuss",
"temp_tool": "Tool temp",
"temp_bed": "Bed temp",
"job_completion": "Completion"
},
"cloudflared": {
"origin_ip": "Origin IP",
"status": "Status"
"status": "Statuss"
},
"pfsense": {
"load": "Load Avg",
@@ -666,7 +660,7 @@
"memory_usage": "Memory"
},
"immich": {
"users": "Users",
"users": "Lietotāji",
"photos": "Photos",
"videos": "Videos",
"storage": "Storage"
@@ -687,10 +681,10 @@
"komga": {
"libraries": "Libraries",
"series": "Series",
"books": "Books"
"books": "Grāmatas"
},
"diskstation": {
"days": "Days",
"days": "Dienas",
"uptime": "Uptime",
"volumeAvailable": "Available"
},
@@ -706,7 +700,7 @@
"people": "People"
},
"fileflows": {
"queue": "Queue",
"queue": "Rindā",
"processing": "Processing",
"processed": "Processed",
"time": "Time"
@@ -730,7 +724,7 @@
"numshares": "Shared Items"
},
"kopia": {
"status": "Status",
"status": "Statuss",
"size": "Size",
"lastrun": "Last Run",
"nextrun": "Next Run",
@@ -762,7 +756,7 @@
},
"audiobookshelf": {
"podcasts": "Podcasts",
"books": "Books",
"books": "Grāmatas",
"podcastsDuration": "Duration",
"booksDuration": "Duration"
},
@@ -776,14 +770,14 @@
"updates": "Updates"
},
"calibreweb": {
"books": "Books",
"books": "Grāmatas",
"authors": "Authors",
"categories": "Categories",
"series": "Series"
},
"jdownloader": {
"downloadCount": "Queue",
"downloadBytesRemaining": "Remaining",
"downloadCount": "Rindā",
"downloadBytesRemaining": "Palika",
"downloadTotalBytes": "Size",
"downloadSpeed": "Speed"
},
@@ -793,7 +787,7 @@
},
"azuredevops": {
"result": "Result",
"status": "Status",
"status": "Statuss",
"buildId": "Build ID",
"succeeded": "Succeeded",
"notStarted": "Not Started",
@@ -805,9 +799,9 @@
"approved": "Approved"
},
"gamedig": {
"status": "Status",
"status": "Statuss",
"online": "Online",
"offline": "Offline",
"offline": "Bezsaistē",
"name": "Name",
"map": "Map",
"currentPlayers": "Current players",
@@ -824,13 +818,13 @@
},
"mealie": {
"recipes": "Recipes",
"users": "Users",
"users": "Lietotāji",
"categories": "Categories",
"tags": "Tags"
},
"openmediavault": {
"downloading": "Downloading",
"total": "Total",
"total": "Kopā",
"running": "Running",
"stopped": "Stopped",
"passed": "Passed",
@@ -845,7 +839,7 @@
"bytesRx": "Received"
},
"uptimerobot": {
"status": "Status",
"status": "Statuss",
"uptime": "Uptime",
"lastDown": "Last Downtime",
"downDuration": "Downtime Duration",
@@ -856,7 +850,7 @@
"up": "Up",
"seemsdown": "Seems Down",
"down": "Down",
"unknown": "Unknown"
"unknown": "Nezināms"
},
"calendar": {
"inCinemas": "In cinemas",
@@ -913,7 +907,7 @@
"oCount": "O Count"
},
"tandoor": {
"users": "Users",
"users": "Lietotāji",
"recipes": "Recipes",
"keywords": "Keywords"
},
@@ -922,18 +916,18 @@
"totalWithWarranty": "With Warranty",
"locations": "Locations",
"labels": "Labels",
"users": "Users",
"users": "Lietotāji",
"totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"alerts": "Paziņojumi",
"bans": "Bans"
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"total": "Kopā"
},
"swagdashboard": {
"proxied": "Proxied",
@@ -943,8 +937,8 @@
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
"download": "Lejupielāde",
"upload": "Augšupielāde"
},
"stocks": {
"stocks": "Stocks",
@@ -965,7 +959,7 @@
},
"zabbix": {
"unclassified": "Not classified",
"information": "Information",
"information": "Informācija",
"warning": "Warning",
"average": "Average",
"high": "High",
@@ -989,9 +983,9 @@
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"status": "Statuss",
"online": "Online",
"offline": "Offline"
"offline": "Bezsaistē"
},
"beszel": {
"name": "Name",
@@ -1000,7 +994,7 @@
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Status",
"status": "Statuss",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
@@ -1027,10 +1021,10 @@
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Load",
"status": "Statuss",
"load": "Ielādē",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
"timeleft": "Atlikušais laiks"
},
"karakeep": {
"bookmarks": "Bookmarks",
@@ -1060,28 +1054,5 @@
"checkmk": {
"serviceErrors": "Service 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",
"lan_users": "Pengguna LAN",
"wlan_users": "Pengguna WLAN",
"up": "UP",
"up": "HIDUP",
"down": "MATI",
"wait": "Please wait",
"wait": "Sila tunggu",
"empty_data": "Status subsistem tak diketahui"
},
"docker": {
@@ -83,7 +83,7 @@
"partial": "Sebahagian"
},
"ping": {
"error": "Error",
"error": "Ralat",
"ping": "Ping",
"down": "Mati",
"up": "Hidup",
@@ -91,11 +91,11 @@
},
"siteMonitor": {
"http_status": "Status HTTP",
"error": "Error",
"error": "Ralat",
"response": "Tindak balas",
"down": "Down",
"up": "Up",
"not_available": "Not Available"
"down": "Mati",
"up": "Hidup",
"not_available": "Tidak dijumpai"
},
"emby": {
"playing": "Sedang dimainkan",
@@ -108,11 +108,11 @@
"songs": "Lagu"
},
"esphome": {
"offline": "Offline",
"offline_alt": "Offline",
"offline": "Luar talian",
"offline_alt": "Luar talian",
"online": "Dalam Talian",
"total": "Total",
"unknown": "Unknown"
"total": "Jumlah",
"unknown": "Tidak Diketahui"
},
"evcc": {
"pv_power": "Produksi",
@@ -141,11 +141,11 @@
"connectionStatusDisconnecting": "Putuskan",
"connectionStatusDisconnected": "Sambungan Terputus",
"connectionStatusConnected": "Connected",
"uptime": "Uptime",
"uptime": "Masa Hidup",
"maxDown": "Mati Maksima",
"maxUp": "Hidup Maksima",
"down": "Down",
"up": "Up",
"down": "Mati",
"up": "Hidup",
"received": "Diterima",
"sent": "Telah dihantar",
"externalIPAddress": "IP Luaran",
@@ -168,10 +168,10 @@
"passes": "Lulus"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"playing": "Sedang dimainkan",
"transcoding": "Transkoding",
"bitrate": "Kadar bit",
"no_active": "Tiada Strim Aktif",
"plex_connection_error": "Check Plex Connection"
},
"omada": {
@@ -189,28 +189,28 @@
"plex": {
"streams": "Strim Aktif",
"albums": "Album",
"movies": "Movies",
"movies": "Filem",
"tv": "Rancangan TV"
},
"sabnzbd": {
"rate": "Rate",
"rate": "Kadar",
"queue": "Barisan",
"timeleft": "Masa Tinggal"
},
"rutorrent": {
"active": "Aktif",
"upload": "Upload",
"download": "Download"
"upload": "Muat naik",
"download": "Muat turun"
},
"transmission": {
"download": "Download",
"upload": "Upload",
"download": "Muat turun",
"upload": "Muat naik",
"leech": "Leech",
"seed": "Seed"
},
"qbittorrent": {
"download": "Download",
"upload": "Upload",
"download": "Muat turun",
"upload": "Muat naik",
"leech": "Leech",
"seed": "Seed"
},
@@ -223,8 +223,8 @@
"invalid": "Invalid"
},
"deluge": {
"download": "Download",
"upload": "Upload",
"download": "Muat turun",
"upload": "Muat naik",
"leech": "Leech",
"seed": "Seed"
},
@@ -233,34 +233,34 @@
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": {
"download": "Download",
"upload": "Upload",
"download": "Muat turun",
"upload": "Muat naik",
"leech": "Leech",
"seed": "Seed"
},
"sonarr": {
"wanted": "Mahu",
"queued": "Dibaris Gilir",
"series": "Series",
"queue": "Queue",
"unknown": "Unknown"
"series": "Siri",
"queue": "Barisan",
"unknown": "Tidak Diketahui"
},
"radarr": {
"wanted": "Wanted",
"wanted": "Mahu",
"missing": "Hilang",
"queued": "Queued",
"movies": "Movies",
"queue": "Queue",
"unknown": "Unknown"
"queued": "Dibaris Gilir",
"movies": "Filem",
"queue": "Barisan",
"unknown": "Tidak Diketahui"
},
"lidarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Mahu",
"queued": "Dibaris Gilir",
"artists": "Artis"
},
"readarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Mahu",
"queued": "Dibaris Gilir",
"books": "Buku"
},
"bazarr": {
@@ -273,18 +273,18 @@
"available": "Sudah Ada"
},
"jellyseerr": {
"pending": "Pending",
"approved": "Approved",
"available": "Available"
"pending": "Tertunda",
"approved": "Lulus",
"available": "Sudah Ada"
},
"overseerr": {
"pending": "Pending",
"pending": "Tertunda",
"processing": "Processing",
"approved": "Approved",
"available": "Available"
"approved": "Lulus",
"available": "Sudah Ada"
},
"netalertx": {
"total": "Total",
"total": "Jumlah",
"connected": "Connected",
"new_devices": "New Devices",
"down_alerts": "Down Alerts"
@@ -296,26 +296,26 @@
"gravity": "Gravity"
},
"adguard": {
"queries": "Queries",
"blocked": "Blocked",
"queries": "Permintaan",
"blocked": "Disekat",
"filtered": "Ditapis",
"latency": "Kependaman"
},
"speedtest": {
"upload": "Upload",
"download": "Download",
"upload": "Muat naik",
"download": "Muat turun",
"ping": "Ping"
},
"portainer": {
"running": "Running",
"running": "Sedang jalan",
"stopped": "Terhenti",
"total": "Total"
"total": "Jumlah"
},
"suwayomi": {
"download": "Downloaded",
"download": "Telah Muat Turun",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"read": "Baca",
"unread": "Belum dibaca",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
@@ -336,7 +336,7 @@
"ago": "{{value}} Lepas"
},
"technitium": {
"totalQueries": "Queries",
"totalQueries": "Permintaan",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blocked",
"totalBlocked": "Disekat",
"totalDropped": "Dropped",
"totalClients": "Klien"
},
"tdarr": {
"queue": "Queue",
"queue": "Barisan",
"processed": "Sudah diprosess",
"errored": "Ralat",
"saved": "Simpan"
@@ -359,20 +359,14 @@
"services": "Servis",
"middleware": "Perisian Tengah"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"nothing_streaming": "Tiada Strim Aktif",
"please_wait": "Sila tunggu"
},
"npm": {
"enabled": "Didayakan",
"disabled": "Dinyahdayakan",
"total": "Total"
"total": "Jumlah"
},
"coinmarketcap": {
"configure": "Konfigurasikan satu atau lebih matawang crypto untuk dipantau",
@@ -383,49 +377,49 @@
},
"gotify": {
"apps": "Aplikasi",
"clients": "Clients",
"clients": "Klien",
"messages": "Mesej"
},
"prowlarr": {
"enableIndexers": "Pengindeks",
"numberOfGrabs": "Capai",
"numberOfQueries": "Queries",
"numberOfQueries": "Permintaan",
"numberOfFailGrabs": "Capai Yang Ggagal",
"numberOfFailQueries": "Permintaan Yang Gagal"
},
"jackett": {
"configured": "Telah Dikonfigurasi",
"errored": "Errored"
"errored": "Ralat"
},
"strelaysrv": {
"numActiveSessions": "Sesi",
"numConnections": "Penyambungan",
"dataRelayed": "Disalurkan",
"transferRate": "Rate"
"transferRate": "Kadar"
},
"mastodon": {
"user_count": "Users",
"user_count": "Pengguna",
"status_count": "Pos",
"domain_count": "Domain"
},
"medusa": {
"wanted": "Wanted",
"queued": "Queued",
"series": "Series"
"wanted": "Mahu",
"queued": "Dibaris Gilir",
"series": "Siri"
},
"minecraft": {
"players": "Senarai pemain",
"version": "Versi",
"status": "Status",
"up": "Online",
"down": "Offline"
"up": "Dalam Talian",
"down": "Luar talian"
},
"miniflux": {
"read": "Baca",
"unread": "Unread"
"unread": "Belum dibaca"
},
"authentik": {
"users": "Users",
"users": "Pengguna",
"loginsLast24H": "Logmasuk (24j)",
"failedLoginsLast24H": "Logmasuk Gagal (24j)"
},
@@ -437,19 +431,19 @@
},
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"temp": "TEMP",
"load": "Beban",
"wait": "Sila tunggu",
"temp": "SUHU",
"_temp": "Suhu",
"warn": "Amaran",
"uptime": "UP",
"total": "Total",
"free": "Free",
"used": "Used",
"days": "d",
"hours": "h",
"uptime": "HIDUP",
"total": "Jumlah",
"free": "Bebas",
"used": "Telah diguna",
"days": "h",
"hours": "j",
"crit": "Krit",
"read": "Read",
"read": "Baca",
"write": "Tulis",
"gpu": "GPU",
"mem": "Mem",
@@ -470,57 +464,57 @@
"1-day": "Sebahagian Besar Terik",
"1-night": "Sebahagian Besar Cerah",
"2-day": "Sebahagian Mendung",
"2-night": "Partly Cloudy",
"2-night": "Sebahagian Mendung",
"3-day": "Mendung",
"3-night": "Cloudy",
"3-night": "Mendung",
"45-day": "Berkabus",
"45-night": "Foggy",
"48-day": "Foggy",
"48-night": "Foggy",
"45-night": "Berkabus",
"48-day": "Berkabus",
"48-night": "Berkabus",
"51-day": "Gerimis",
"51-night": "Light Drizzle",
"51-night": "Gerimis",
"53-day": "Renyai",
"53-night": "Drizzle",
"53-night": "Renyai",
"55-day": "Renyai Kuat",
"55-night": "Heavy Drizzle",
"55-night": "Renyai Kuat",
"56-day": "Gerimis Sejuk Ringan",
"56-night": "Light Freezing Drizzle",
"56-night": "Gerimis Sejuk Ringan",
"57-day": "Gerimis Sejuk",
"57-night": "Freezing Drizzle",
"57-night": "Gerimis Sejuk",
"61-day": "Hujan Renyai",
"61-night": "Light Rain",
"61-night": "Hujan Renyai",
"63-day": "Hujan",
"63-night": "Rain",
"63-night": "Hujan",
"65-day": "Hujan Lebat",
"65-night": "Heavy Rain",
"65-night": "Hujan Lebat",
"66-day": "Hujan Sejuk",
"66-night": "Freezing Rain",
"67-day": "Freezing Rain",
"67-night": "Freezing Rain",
"66-night": "Hujan Sejuk",
"67-day": "Hujan Sejuk",
"67-night": "Hujan Sejuk",
"71-day": "Salji Ringan",
"71-night": "Light Snow",
"71-night": "Salji Ringan",
"73-day": "Salji",
"73-night": "Snow",
"73-night": "Salji",
"75-day": "Salji Lebat",
"75-night": "Heavy Snow",
"75-night": "Salji Lebat",
"77-day": "Butiran Salji",
"77-night": "Snow Grains",
"77-night": "Butiran Salji",
"80-day": "Rintik Ringan",
"80-night": "Light Showers",
"80-night": "Rintik Ringan",
"81-day": "Rintik",
"81-night": "Showers",
"81-night": "Rintik",
"82-day": "Rintik Lebat",
"82-night": "Heavy Showers",
"82-night": "Rintik Lebat",
"85-day": "Rintik Salji",
"85-night": "Snow Showers",
"86-day": "Snow Showers",
"86-night": "Snow Showers",
"85-night": "Rintik Salji",
"86-day": "Rintik Salji",
"86-night": "Rintik Salji",
"95-day": "Ribut",
"95-night": "Thunderstorm",
"95-night": "Ribut",
"96-day": "Ribut Hujan Batu",
"96-night": "Thunderstorm With Hail",
"99-day": "Thunderstorm With Hail",
"99-night": "Thunderstorm With Hail"
"96-night": "Ribut Hujan Batu",
"99-day": "Ribut Hujan Batu",
"99-night": "Ribut Hujan Batu"
},
"homebridge": {
"available_update": "Sistem",
@@ -529,15 +523,15 @@
"up_to_date": "Terkemaskini",
"child_bridges": "Jambatan Anak",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "Up",
"pending": "Pending",
"down": "Down"
"up": "Hidup",
"pending": "Tertunda",
"down": "Mati"
},
"healthchecks": {
"new": "Baharu",
"up": "Up",
"up": "Hidup",
"grace": "Tempoh Aman",
"down": "Down",
"down": "Mati",
"paused": "Tangguh",
"status": "Status",
"last_ping": "Ping terakhir",
@@ -549,27 +543,27 @@
"containers_failed": "Gagal"
},
"autobrr": {
"approvedPushes": "Approved",
"approvedPushes": "Lulus",
"rejectedPushes": "Ditolak",
"filters": "Tapisan",
"indexers": "Indexers"
"indexers": "Pengindeks"
},
"tubearchivist": {
"downloads": "Queue",
"downloads": "Barisan",
"videos": "Video",
"channels": "Saluran",
"playlists": "Senarai Siar"
},
"truenas": {
"load": "Beban Sistem",
"uptime": "Uptime",
"alerts": "Alerts"
"uptime": "Masa Hidup",
"alerts": "Perhatian"
},
"pyload": {
"speed": "Kelajuan",
"active": "Active",
"queue": "Queue",
"total": "Total"
"active": "Aktif",
"queue": "Barisan",
"total": "Jumlah"
},
"gluetun": {
"public_ip": "IP Awam",
@@ -578,47 +572,47 @@
"port_forwarded": "Port Forwarded"
},
"hdhomerun": {
"channels": "Channels",
"channels": "Saluran",
"hd": "HD",
"tunerCount": "Penala",
"channelNumber": "Saluran",
"channelNetwork": "Rangkaian",
"signalStrength": "Kekuatan",
"signalQuality": "Kualiti",
"symbolQuality": "Quality",
"networkRate": "Bitrate",
"symbolQuality": "Kualiti",
"networkRate": "Kadar bit",
"clientIP": "Klien"
},
"scrutiny": {
"passed": "Lulus",
"failed": "Failed",
"unknown": "Unknown"
"failed": "Gagal",
"unknown": "Tidak Diketahui"
},
"paperlessngx": {
"inbox": "Peti Masuk",
"total": "Total"
"total": "Jumlah"
},
"peanut": {
"battery_charge": "Bateri dicas",
"ups_load": "Beban UPS",
"ups_status": "Status UPS",
"online": "Online",
"online": "Dalam Talian",
"on_battery": "Guna bateri",
"low_battery": "Bateri lemah"
},
"nextdns": {
"wait": "Please Wait",
"wait": "Sila tunggu",
"no_devices": "Tiada Data Diterima Peranti"
},
"mikrotik": {
"cpuLoad": "Beban CPU",
"memoryUsed": "Penggunaan memori",
"uptime": "Uptime",
"uptime": "Masa Hidup",
"numberOfLeases": "Sewaan"
},
"xteve": {
"streams_all": "Semua Strim",
"streams_active": "Active Streams",
"streams_active": "Strim Aktif",
"streams_xepg": "Saluran XEPG"
},
"opendtu": {
@@ -628,7 +622,7 @@
"limit": "Had/Batas"
},
"opnsense": {
"cpu": "CPU Load",
"cpu": "Beban CPU",
"memory": "Active Memory",
"wanUpload": "WAN Upload",
"wanDownload": "WAN Download"
@@ -653,9 +647,9 @@
"load": "Load Avg",
"memory": "Mem Usage",
"wanStatus": "WAN Status",
"up": "Up",
"down": "Down",
"temp": "Temp",
"up": "Hidup",
"down": "Mati",
"temp": "Suhu",
"disk": "Disk Usage",
"wanIP": "WAN IP"
},
@@ -666,49 +660,49 @@
"memory_usage": "Memory"
},
"immich": {
"users": "Users",
"users": "Pengguna",
"photos": "Gambar",
"videos": "Videos",
"videos": "Video",
"storage": "Storage"
},
"uptimekuma": {
"up": "Sites Up",
"down": "Sites Down",
"uptime": "Uptime",
"uptime": "Masa Hidup",
"incident": "Incident",
"m": "m"
},
"atsumeru": {
"series": "Series",
"series": "Siri",
"archives": "Archives",
"chapters": "Chapters",
"categories": "Memori"
},
"komga": {
"libraries": "Libraries",
"series": "Series",
"books": "Books"
"series": "Siri",
"books": "Buku"
},
"diskstation": {
"days": "Days",
"uptime": "Uptime",
"volumeAvailable": "Available"
"days": "Hari",
"uptime": "Masa Hidup",
"volumeAvailable": "Sudah Ada"
},
"mylar": {
"series": "Series",
"series": "Siri",
"issues": "Issues",
"wanted": "Wanted"
"wanted": "Mahu"
},
"photoprism": {
"albums": "Albums",
"photos": "Photos",
"videos": "Videos",
"albums": "Album",
"photos": "Gambar",
"videos": "Video",
"people": "People"
},
"fileflows": {
"queue": "Queue",
"queue": "Barisan",
"processing": "Processing",
"processed": "Processed",
"processed": "Sudah diprosess",
"time": "Time"
},
"firefly": {
@@ -734,7 +728,7 @@
"size": "Size",
"lastrun": "Last Run",
"nextrun": "Next Run",
"failed": "Failed"
"failed": "Gagal"
},
"unmanic": {
"active_workers": "Active Workers",
@@ -753,18 +747,18 @@
"gatus": {
"up": "Sites Up",
"down": "Sites Down",
"uptime": "Uptime"
"uptime": "Masa Hidup"
},
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_today": "Hari ini",
"gross_percent_1y": "Satu tahun",
"gross_percent_max": "Sepanjang masa"
},
"audiobookshelf": {
"podcasts": "Podkas",
"books": "Books",
"books": "Buku",
"podcastsDuration": "Tempoh",
"booksDuration": "Duration"
"booksDuration": "Tempoh"
},
"homeassistant": {
"people_home": "Orang Dirumah",
@@ -773,22 +767,22 @@
},
"whatsupdocker": {
"monitoring": "Pemantauan",
"updates": "Updates"
"updates": "Kemaskini"
},
"calibreweb": {
"books": "Books",
"books": "Buku",
"authors": "Pengarang/Penulis",
"categories": "Categories",
"series": "Series"
"categories": "Memori",
"series": "Siri"
},
"jdownloader": {
"downloadCount": "Queue",
"downloadBytesRemaining": "Remaining",
"downloadCount": "Barisan",
"downloadBytesRemaining": "Baki",
"downloadTotalBytes": "Size",
"downloadSpeed": "Speed"
"downloadSpeed": "Kelajuan"
},
"kavita": {
"seriesCount": "Series",
"seriesCount": "Siri",
"totalFiles": "Files"
},
"azuredevops": {
@@ -797,21 +791,21 @@
"buildId": "ID Binaan",
"succeeded": "Berjaya",
"notStarted": "Belum Bermula",
"failed": "Failed",
"failed": "Gagal",
"canceled": "Dibatalkan",
"inProgress": "Sedang Diproses",
"totalPrs": "Jumlah PR",
"myPrs": "PR Sendiri",
"approved": "Approved"
"approved": "Lulus"
},
"gamedig": {
"status": "Status",
"online": "Online",
"offline": "Offline",
"online": "Dalam Talian",
"offline": "Luar talian",
"name": "Nama",
"map": "Peta",
"currentPlayers": "Pemain Semasa",
"players": "Players",
"players": "Senarai pemain",
"maxPlayers": "Bilangan peserta maksimum",
"bots": "Bot",
"ping": "Ping"
@@ -824,39 +818,39 @@
},
"mealie": {
"recipes": "Resipi",
"users": "Users",
"categories": "Categories",
"users": "Pengguna",
"categories": "Memori",
"tags": "Tanda nama"
},
"openmediavault": {
"downloading": "Sedang muat turun",
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"passed": "Passed",
"failed": "Failed"
"total": "Jumlah",
"running": "Sedang jalan",
"stopped": "Terhenti",
"passed": "Lulus",
"failed": "Gagal"
},
"openwrt": {
"uptime": "Uptime",
"uptime": "Masa Hidup",
"cpuLoad": "Purata Beban CPU (5m)",
"up": "Up",
"down": "Down",
"up": "Hidup",
"down": "Mati",
"bytesTx": "Terpancar",
"bytesRx": "Received"
"bytesRx": "Diterima"
},
"uptimerobot": {
"status": "Status",
"uptime": "Uptime",
"uptime": "Masa Hidup",
"lastDown": "Masa Mati Terakhir",
"downDuration": "Jangkamasa Kematian",
"sitesUp": "Sites Up",
"sitesDown": "Sites Down",
"paused": "Paused",
"paused": "Tangguh",
"notyetchecked": "Belum Disemak",
"up": "Up",
"up": "Hidup",
"seemsdown": "Seperti Mati",
"down": "Down",
"unknown": "Unknown"
"down": "Mati",
"unknown": "Tidak Diketahui"
},
"calendar": {
"inCinemas": "Di pawagam",
@@ -875,7 +869,7 @@
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domains",
"domains": "Domain",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
@@ -887,7 +881,7 @@
"plantit": {
"events": "Events",
"plants": "Plants",
"photos": "Photos",
"photos": "Gambar",
"species": "Species"
},
"gitea": {
@@ -908,13 +902,13 @@
"galleries": "Galleries",
"performers": "Performers",
"studios": "Studios",
"movies": "Movies",
"tags": "Tags",
"movies": "Filem",
"tags": "Tanda nama",
"oCount": "O Count"
},
"tandoor": {
"users": "Users",
"recipes": "Recipes",
"users": "Pengguna",
"recipes": "Resipi",
"keywords": "Keywords"
},
"homebox": {
@@ -922,18 +916,18 @@
"totalWithWarranty": "With Warranty",
"locations": "Lokasi",
"labels": "Labels",
"users": "Users",
"users": "Pengguna",
"totalValue": "Jumlah nilai"
},
"crowdsec": {
"alerts": "Alerts",
"alerts": "Perhatian",
"bans": "Bans"
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"enabled": "Didayakan",
"disabled": "Dinyahdayakan",
"total": "Jumlah"
},
"swagdashboard": {
"proxied": "Proxied",
@@ -943,8 +937,8 @@
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
"download": "Muat turun",
"upload": "Muat naik"
},
"stocks": {
"stocks": "Stocks",
@@ -955,17 +949,17 @@
},
"frigate": {
"cameras": "Cameras",
"uptime": "Uptime",
"version": "Version"
"uptime": "Masa Hidup",
"version": "Versi"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tags"
"tags": "Tanda nama"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Information",
"information": "Informasi",
"warning": "Warning",
"average": "Average",
"high": "High",
@@ -986,22 +980,22 @@
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"name": "Nama",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"online": "Online",
"offline": "Offline"
"online": "Dalam Talian",
"offline": "Luar talian"
},
"beszel": {
"name": "Name",
"name": "Nama",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"up": "Hidup",
"down": "Mati",
"paused": "Tangguh",
"pending": "Tertunda",
"status": "Status",
"updated": "Updated",
"updated": "Dikemaskini",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
@@ -1011,10 +1005,10 @@
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"healthy": "Sihat",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"missing": "Hilang",
"suspended": "Suspended"
},
"spoolman": {
@@ -1028,9 +1022,9 @@
},
"apcups": {
"status": "Status",
"load": "Load",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
"load": "Beban",
"bcharge": "Bateri dicas",
"timeleft": "Masa Tinggal"
},
"karakeep": {
"bookmarks": "Bookmarks",
@@ -1038,50 +1032,27 @@
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
"tags": "Tanda nama"
},
"slskd": {
"slskStatus": "Network",
"slskStatus": "Rangkaian",
"connected": "Connected",
"disconnected": "Disconnected",
"disconnected": "Sambungan Terputus",
"updateStatus": "Update",
"update_yes": "Available",
"update_no": "Up to Date",
"update_yes": "Sudah Ada",
"update_no": "Terkemaskini",
"downloads": "Downloads",
"uploads": "Uploads",
"sharedFiles": "Files"
},
"jellystat": {
"songs": "Songs",
"movies": "Movies",
"episodes": "Episodes",
"songs": "Lagu",
"movies": "Filem",
"episodes": "Episod",
"other": "Other"
},
"checkmk": {
"serviceErrors": "Service 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",
"up": "UP",
"down": "OFFLINE",
"wait": "Please wait",
"wait": "Even geduld",
"empty_data": "Subsysteem status onbekend"
},
"docker": {
"rx": "RX",
"tx": "TX",
"mem": "MEM",
"mem": "GEH",
"cpu": "CPU",
"running": "Actief",
"offline": "Offline",
@@ -83,7 +83,7 @@
"partial": "Gedeeltelijk"
},
"ping": {
"error": "Error",
"error": "Fout",
"ping": "Ping",
"down": "Offline",
"up": "Online",
@@ -91,11 +91,11 @@
},
"siteMonitor": {
"http_status": "HTTP status",
"error": "Error",
"error": "Fout",
"response": "Reactie",
"down": "Down",
"up": "Up",
"not_available": "Not Available"
"down": "Offline",
"up": "Online",
"not_available": "Niet Beschikbaar"
},
"emby": {
"playing": "Afspelen",
@@ -111,8 +111,8 @@
"offline": "Offline",
"offline_alt": "Offline",
"online": "Bereikbaar",
"total": "Total",
"unknown": "Unknown"
"total": "Totaal",
"unknown": "Onbekend"
},
"evcc": {
"pv_power": "Productie",
@@ -141,11 +141,11 @@
"connectionStatusDisconnecting": "Verbinding verbreken",
"connectionStatusDisconnected": "Verbinding verbroken",
"connectionStatusConnected": "Verbonden",
"uptime": "Uptime",
"uptime": "Online",
"maxDown": "Max. Download",
"maxUp": "Max. Upload",
"down": "Down",
"up": "Up",
"down": "Offline",
"up": "Online",
"received": "Ontvangen",
"sent": "Verzonden",
"externalIPAddress": "Ext. IP",
@@ -168,10 +168,10 @@
"passes": "Gepasseerd"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"playing": "Afspelen",
"transcoding": "Transcodering",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"no_active": "Geen Actieve Streams",
"plex_connection_error": "Controleer Plex Connectie"
},
"omada": {
@@ -189,7 +189,7 @@
"plex": {
"streams": "Actieve Streams",
"albums": "Albums",
"movies": "Movies",
"movies": "Films",
"tv": "TV Series"
},
"sabnzbd": {
@@ -206,13 +206,13 @@
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"seed": "Seed"
"seed": "Delen"
},
"qbittorrent": {
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"seed": "Seed"
"seed": "Delen"
},
"qnap": {
"cpuUsage": "CPU Verbruik",
@@ -226,7 +226,7 @@
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"seed": "Seed"
"seed": "Delen"
},
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
@@ -236,31 +236,31 @@
"download": "Download",
"upload": "Upload",
"leech": "Leech",
"seed": "Seed"
"seed": "Delen"
},
"sonarr": {
"wanted": "Gezocht",
"queued": "Wachtrij",
"series": "Series",
"queue": "Queue",
"unknown": "Unknown"
"queue": "Wachtrij",
"unknown": "Onbekend"
},
"radarr": {
"wanted": "Wanted",
"wanted": "Gezocht",
"missing": "Ontbreekt",
"queued": "Queued",
"movies": "Movies",
"queue": "Queue",
"unknown": "Unknown"
"queued": "Wachtrij",
"movies": "Films",
"queue": "Wachtrij",
"unknown": "Onbekend"
},
"lidarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Gezocht",
"queued": "Wachtrij",
"artists": "Artiesten"
},
"readarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Gezocht",
"queued": "Wachtrij",
"books": "Boeken"
},
"bazarr": {
@@ -273,19 +273,19 @@
"available": "Beschikbaar"
},
"jellyseerr": {
"pending": "Pending",
"approved": "Approved",
"available": "Available"
"pending": "In afwachting",
"approved": "Goedgekeurd",
"available": "Beschikbaar"
},
"overseerr": {
"pending": "Pending",
"pending": "In afwachting",
"processing": "Verwerken",
"approved": "Approved",
"available": "Available"
"approved": "Goedgekeurd",
"available": "Beschikbaar"
},
"netalertx": {
"total": "Total",
"connected": "Connected",
"total": "Totaal",
"connected": "Verbonden",
"new_devices": "Nieuwe Apparaten",
"down_alerts": "Geen verbinding"
},
@@ -296,8 +296,8 @@
"gravity": "Gravity"
},
"adguard": {
"queries": "Queries",
"blocked": "Blocked",
"queries": "Verzoeken",
"blocked": "Geblokkeerd",
"filtered": "Gefilterd",
"latency": "Latentie"
},
@@ -307,15 +307,15 @@
"ping": "Ping"
},
"portainer": {
"running": "Running",
"running": "Actief",
"stopped": "Gestopt",
"total": "Total"
"total": "Totaal"
},
"suwayomi": {
"download": "Downloaded",
"download": "Gedownload",
"nondownload": "Niet gedownload",
"read": "Read",
"unread": "Unread",
"read": "Gelezen",
"unread": "Ongelezen",
"downloadedread": "Gedownload & gelezen",
"downloadedunread": "Gedownload & ongelezen",
"nondownloadedread": "Niet-gedownload & gelezen",
@@ -336,7 +336,7 @@
"ago": "{{value}} Geleden"
},
"technitium": {
"totalQueries": "Queries",
"totalQueries": "Verzoeken",
"totalNoError": "Geslaagd",
"totalServerFailure": "Gefaald",
"totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Gecached",
"totalBlocked": "Blocked",
"totalBlocked": "Geblokkeerd",
"totalDropped": "Dropped",
"totalClients": "Cliënten"
},
"tdarr": {
"queue": "Queue",
"queue": "Wachtrij",
"processed": "Verwerkt",
"errored": "Fout",
"saved": "Opgeslagen"
@@ -359,20 +359,14 @@
"services": "Diensten",
"middleware": "Middleware"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"nothing_streaming": "Geen Actieve Streams",
"please_wait": "Even geduld aub"
},
"npm": {
"enabled": "Ingeschakeld",
"disabled": "Uitgeschakeld",
"total": "Total"
"total": "Totaal"
},
"coinmarketcap": {
"configure": "Configureer een of meer crypto eenheden om bij te houden",
@@ -383,19 +377,19 @@
},
"gotify": {
"apps": "Applicaties",
"clients": "Clients",
"clients": "Cliënten",
"messages": "Berichten"
},
"prowlarr": {
"enableIndexers": "Indexeerders",
"numberOfGrabs": "Grabs",
"numberOfQueries": "Queries",
"numberOfQueries": "Verzoeken",
"numberOfFailGrabs": "Ophalen mislukt",
"numberOfFailQueries": "Mislukte verzoeken"
},
"jackett": {
"configured": "Geconfigureerd",
"errored": "Errored"
"errored": "Fout"
},
"strelaysrv": {
"numActiveSessions": "Sessies",
@@ -404,52 +398,52 @@
"transferRate": "Rate"
},
"mastodon": {
"user_count": "Users",
"user_count": "Gebruikers",
"status_count": "Berichten",
"domain_count": "Domeinen"
},
"medusa": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Gezocht",
"queued": "Wachtrij",
"series": "Series"
},
"minecraft": {
"players": "Spelers",
"version": "Versie",
"status": "Status",
"up": "Online",
"up": "Bereikbaar",
"down": "Offline"
},
"miniflux": {
"read": "Gelezen",
"unread": "Unread"
"unread": "Ongelezen"
},
"authentik": {
"users": "Users",
"users": "Gebruikers",
"loginsLast24H": "Logins (24u)",
"failedLoginsLast24H": "Mislukte Logins (24u)"
},
"proxmox": {
"mem": "MEM",
"mem": "GEH",
"cpu": "CPU",
"lxc": "LXC",
"vms": "VM's"
},
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"load": "Belasting",
"wait": "Even geduld",
"temp": "TEMP",
"_temp": "Temp",
"warn": "Waarschuwing",
"uptime": "UP",
"total": "Total",
"free": "Free",
"used": "Used",
"total": "Totaal",
"free": "Vrij",
"used": "Gebruikt",
"days": "d",
"hours": "h",
"hours": "u",
"crit": "Kritiek",
"read": "Read",
"read": "Gelezen",
"write": "Schrijven",
"gpu": "GPU",
"mem": "Mem",
@@ -470,57 +464,57 @@
"1-day": "Overwegend Zonnig",
"1-night": "Overwegend Helder",
"2-day": "Gedeeltelijk Bewolkt",
"2-night": "Partly Cloudy",
"2-night": "Gedeeltelijk Bewolkt",
"3-day": "Bewolkt",
"3-night": "Cloudy",
"3-night": "Bewolkt",
"45-day": "Mistig",
"45-night": "Foggy",
"48-day": "Foggy",
"48-night": "Foggy",
"45-night": "Mistig",
"48-day": "Mistig",
"48-night": "Mistig",
"51-day": "Motregen",
"51-night": "Light Drizzle",
"51-night": "Motregen",
"53-day": "Druilerig",
"53-night": "Drizzle",
"53-night": "Druilerig",
"55-day": "Zware motregen",
"55-night": "Heavy Drizzle",
"55-night": "Zware motregen",
"56-day": "Lichte opvriezende motregen",
"56-night": "Light Freezing Drizzle",
"56-night": "Lichte opvriezende motregen",
"57-day": "Opvriezende motregen",
"57-night": "Freezing Drizzle",
"57-night": "Opvriezende motregen",
"61-day": "Lichte Regen",
"61-night": "Light Rain",
"61-night": "Lichte Regen",
"63-day": "Regen",
"63-night": "Rain",
"63-night": "Regen",
"65-day": "Hevige Regen",
"65-night": "Heavy Rain",
"65-night": "Hevige Regen",
"66-day": "Opvriezende regen",
"66-night": "Freezing Rain",
"67-day": "Freezing Rain",
"67-night": "Freezing Rain",
"66-night": "Opvriezende regen",
"67-day": "Opvriezende regen",
"67-night": "Opvriezende regen",
"71-day": "Lichte Sneeuw",
"71-night": "Light Snow",
"71-night": "Lichte Sneeuw",
"73-day": "Sneeuw",
"73-night": "Snow",
"73-night": "Sneeuw",
"75-day": "Hevige Sneeuw",
"75-night": "Heavy Snow",
"75-night": "Hevige Sneeuw",
"77-day": "Sneeuw korrels",
"77-night": "Snow Grains",
"77-night": "Sneeuw korrels",
"80-day": "Lichte regenbui",
"80-night": "Light Showers",
"80-night": "Lichte regenbui",
"81-day": "Regenbui",
"81-night": "Showers",
"81-night": "Regenbui",
"82-day": "Zware Regenbuien",
"82-night": "Heavy Showers",
"82-night": "Zware Regenbuien",
"85-day": "Sneeuwbuien",
"85-night": "Snow Showers",
"86-day": "Snow Showers",
"86-night": "Snow Showers",
"85-night": "Sneeuwbuien",
"86-day": "Sneeuwbuien",
"86-night": "Sneeuwbuien",
"95-day": "Onweersbui",
"95-night": "Thunderstorm",
"95-night": "Onweersbui",
"96-day": "Onweersbui Met Hagel",
"96-night": "Thunderstorm With Hail",
"99-day": "Thunderstorm With Hail",
"99-night": "Thunderstorm With Hail"
"96-night": "Onweersbui Met Hagel",
"99-day": "Onweersbui Met Hagel",
"99-night": "Onweersbui Met Hagel"
},
"homebridge": {
"available_update": "Systeem",
@@ -529,15 +523,15 @@
"up_to_date": "Bijgewerkt",
"child_bridges": "Onderliggende bridges",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "Up",
"pending": "Pending",
"down": "Down"
"up": "Online",
"pending": "In afwachting",
"down": "Offline"
},
"healthchecks": {
"new": "Nieuw",
"up": "Up",
"up": "Online",
"grace": "In de respijt periode",
"down": "Down",
"down": "Offline",
"paused": "Gepauzeerd",
"status": "Status",
"last_ping": "Laatste Ping",
@@ -549,27 +543,27 @@
"containers_failed": "Gefaald"
},
"autobrr": {
"approvedPushes": "Approved",
"approvedPushes": "Goedgekeurd",
"rejectedPushes": "Afgewezen",
"filters": "Filters",
"indexers": "Indexers"
"indexers": "Indexeerders"
},
"tubearchivist": {
"downloads": "Queue",
"downloads": "Wachtrij",
"videos": "Video's",
"channels": "Kanalen",
"playlists": "Speellijsten"
},
"truenas": {
"load": "Belasting",
"uptime": "Uptime",
"alerts": "Alerts"
"uptime": "Online",
"alerts": "Meldingen"
},
"pyload": {
"speed": "Snelheid",
"active": "Active",
"queue": "Queue",
"total": "Total"
"active": "Actief",
"queue": "Wachtrij",
"total": "Totaal"
},
"gluetun": {
"public_ip": "Publiek IP",
@@ -578,47 +572,47 @@
"port_forwarded": "Port Forwarded"
},
"hdhomerun": {
"channels": "Channels",
"channels": "Kanalen",
"hd": "HD",
"tunerCount": "Tuners",
"channelNumber": "Kanaal",
"channelNetwork": "Netwerk",
"signalStrength": "Sterkte",
"signalQuality": "Kwaliteit",
"symbolQuality": "Quality",
"symbolQuality": "Kwaliteit",
"networkRate": "Bitrate",
"clientIP": "Client"
},
"scrutiny": {
"passed": "Geslaagd",
"failed": "Failed",
"unknown": "Unknown"
"failed": "Gefaald",
"unknown": "Onbekend"
},
"paperlessngx": {
"inbox": "Postvak In",
"total": "Total"
"total": "Totaal"
},
"peanut": {
"battery_charge": "Batterij opladen",
"ups_load": "UPS-belasting",
"ups_status": "UPS status",
"online": "Online",
"online": "Bereikbaar",
"on_battery": "Op batterij",
"low_battery": "Batterij bijna leeg"
},
"nextdns": {
"wait": "Please Wait",
"wait": "Even geduld aub",
"no_devices": "Geen Apparaat Data Ontvangen"
},
"mikrotik": {
"cpuLoad": "CPU Belasting",
"memoryUsed": "Geheugen Gebruikt",
"uptime": "Uptime",
"uptime": "Online",
"numberOfLeases": "Leases"
},
"xteve": {
"streams_all": "Alle Streams",
"streams_active": "Active Streams",
"streams_active": "Actieve Streams",
"streams_xepg": "XEPG Kanalen"
},
"opendtu": {
@@ -628,7 +622,7 @@
"limit": "Limiet"
},
"opnsense": {
"cpu": "CPU Load",
"cpu": "CPU Belasting",
"memory": "Actief Geheugen",
"wanUpload": "WAN Upload",
"wanDownload": "WAN Download"
@@ -653,8 +647,8 @@
"load": "Gem. Load",
"memory": "Mem Gebruik",
"wanStatus": "WAN Status",
"up": "Up",
"down": "Down",
"up": "Online",
"down": "Offline",
"temp": "Temp",
"disk": "Schijf Gebruik",
"wanIP": "WAN IP"
@@ -666,15 +660,15 @@
"memory_usage": "Geheugen"
},
"immich": {
"users": "Users",
"users": "Gebruikers",
"photos": "Foto's",
"videos": "Videos",
"videos": "Video's",
"storage": "Opslag"
},
"uptimekuma": {
"up": "Sites Bereikbaar",
"down": "Sites Onbereikbaar",
"uptime": "Uptime",
"uptime": "Online",
"incident": "Incident",
"m": "m"
},
@@ -687,28 +681,28 @@
"komga": {
"libraries": "Bibliotheken",
"series": "Series",
"books": "Books"
"books": "Boeken"
},
"diskstation": {
"days": "Days",
"uptime": "Uptime",
"volumeAvailable": "Available"
"days": "Dagen",
"uptime": "Online",
"volumeAvailable": "Beschikbaar"
},
"mylar": {
"series": "Series",
"issues": "Problemen",
"wanted": "Wanted"
"wanted": "Gezocht"
},
"photoprism": {
"albums": "Albums",
"photos": "Photos",
"videos": "Videos",
"photos": "Foto's",
"videos": "Video's",
"people": "Personen"
},
"fileflows": {
"queue": "Queue",
"processing": "Processing",
"processed": "Processed",
"queue": "Wachtrij",
"processing": "Verwerken",
"processed": "Verwerkt",
"time": "Tijd"
},
"firefly": {
@@ -734,7 +728,7 @@
"size": "Grootte",
"lastrun": "Laatste Run",
"nextrun": "Volgende Run",
"failed": "Failed"
"failed": "Gefaald"
},
"unmanic": {
"active_workers": "Actieve Werkers",
@@ -751,20 +745,20 @@
"targets_total": "Totaal aantal doelen"
},
"gatus": {
"up": "Sites Up",
"down": "Sites Down",
"uptime": "Uptime"
"up": "Sites Bereikbaar",
"down": "Sites Onbereikbaar",
"uptime": "Online"
},
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_today": "Vandaag",
"gross_percent_1y": "Een jaar",
"gross_percent_max": "Altijd"
},
"audiobookshelf": {
"podcasts": "Podcasts",
"books": "Books",
"books": "Boeken",
"podcastsDuration": "Duur",
"booksDuration": "Duration"
"booksDuration": "Duur"
},
"homeassistant": {
"people_home": "Mensen thuis",
@@ -776,20 +770,20 @@
"updates": "Updates"
},
"calibreweb": {
"books": "Books",
"books": "Boeken",
"authors": "Auteurs",
"categories": "Categories",
"categories": "Categorieën",
"series": "Series"
},
"jdownloader": {
"downloadCount": "Queue",
"downloadBytesRemaining": "Remaining",
"downloadTotalBytes": "Size",
"downloadSpeed": "Speed"
"downloadCount": "Wachtrij",
"downloadBytesRemaining": "Resterend",
"downloadTotalBytes": "Grootte",
"downloadSpeed": "Snelheid"
},
"kavita": {
"seriesCount": "Series",
"totalFiles": "Files"
"totalFiles": "Bestanden"
},
"azuredevops": {
"result": "Resultaat",
@@ -797,21 +791,21 @@
"buildId": "Build ID",
"succeeded": "Geslaagd",
"notStarted": "Niet gestart",
"failed": "Failed",
"failed": "Gefaald",
"canceled": "Afgebroken",
"inProgress": "Voortgaand",
"totalPrs": "Totaal PRs",
"myPrs": "Mijn PR's",
"approved": "Approved"
"approved": "Goedgekeurd"
},
"gamedig": {
"status": "Status",
"online": "Online",
"online": "Bereikbaar",
"offline": "Offline",
"name": "Naam",
"map": "Kaart",
"currentPlayers": "Huidige spelers",
"players": "Players",
"players": "Spelers",
"maxPlayers": "Max spelers",
"bots": "Bots",
"ping": "Ping"
@@ -824,39 +818,39 @@
},
"mealie": {
"recipes": "Recepten",
"users": "Users",
"categories": "Categories",
"users": "Gebruikers",
"categories": "Categorieën",
"tags": "Label"
},
"openmediavault": {
"downloading": "Downloaden",
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"passed": "Passed",
"failed": "Failed"
"total": "Totaal",
"running": "Actief",
"stopped": "Gestopt",
"passed": "Geslaagd",
"failed": "Gefaald"
},
"openwrt": {
"uptime": "Uptime",
"uptime": "Online",
"cpuLoad": "CPU Load Gem. (5m)",
"up": "Up",
"down": "Down",
"up": "Online",
"down": "Offline",
"bytesTx": "Verzonden",
"bytesRx": "Received"
"bytesRx": "Ontvangen"
},
"uptimerobot": {
"status": "Status",
"uptime": "Uptime",
"uptime": "Online",
"lastDown": "Laatste Downtime",
"downDuration": "Duur Downtime",
"sitesUp": "Sites Up",
"sitesDown": "Sites Down",
"paused": "Paused",
"sitesUp": "Sites Bereikbaar",
"sitesDown": "Sites Onbereikbaar",
"paused": "Gepauzeerd",
"notyetchecked": "Nog niet gecontroleerd",
"up": "Up",
"up": "Online",
"seemsdown": "Lijkt onbereikbaar",
"down": "Down",
"unknown": "Unknown"
"down": "Offline",
"unknown": "Onbekend"
},
"calendar": {
"inCinemas": "In de bioscoop",
@@ -875,10 +869,10 @@
"totalfilesize": "Totale grootte"
},
"mailcow": {
"domains": "Domains",
"domains": "Domeinen",
"mailboxes": "Mailboxen",
"mails": "Mails",
"storage": "Storage"
"storage": "Opslag"
},
"netdata": {
"warnings": "Waarschuwingen",
@@ -887,12 +881,12 @@
"plantit": {
"events": "Gebeurtenissen",
"plants": "Planten",
"photos": "Photos",
"photos": "Foto's",
"species": "Soorten"
},
"gitea": {
"notifications": "Notificaties",
"issues": "Issues",
"issues": "Problemen",
"pulls": "Pull Requests",
"repositories": "Repositories"
},
@@ -908,13 +902,13 @@
"galleries": "Galerijen",
"performers": "Uitvoerenden",
"studios": "Studio's",
"movies": "Movies",
"tags": "Tags",
"movies": "Films",
"tags": "Label",
"oCount": "O Aantal"
},
"tandoor": {
"users": "Users",
"recipes": "Recipes",
"users": "Gebruikers",
"recipes": "Recepten",
"keywords": "Trefwoorden"
},
"homebox": {
@@ -922,18 +916,18 @@
"totalWithWarranty": "Met garantie",
"locations": "Locaties",
"labels": "Labels",
"users": "Users",
"users": "Gebruikers",
"totalValue": "Totale waarde"
},
"crowdsec": {
"alerts": "Alerts",
"alerts": "Meldingen",
"bans": "Bans"
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"connected": "Verbonden",
"enabled": "Ingeschakeld",
"disabled": "Uitgeschakeld",
"total": "Totaal"
},
"swagdashboard": {
"proxied": "Proxied",
@@ -955,17 +949,17 @@
},
"frigate": {
"cameras": "Camera's",
"uptime": "Uptime",
"version": "Version"
"uptime": "Online",
"version": "Versie"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tags"
"tags": "Label"
},
"zabbix": {
"unclassified": "Niet geclassificeerd",
"information": "Information",
"information": "Informatie",
"warning": "Waarschuwingen",
"average": "Average",
"high": "High",
@@ -986,24 +980,24 @@
"tasksInProgress": "Taken In Uitvoering"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"name": "Naam",
"address": "Adres",
"last_seen": "Laatst Gezien",
"status": "Status",
"online": "Online",
"online": "Bereikbaar",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"name": "Naam",
"systems": "Systemen",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"up": "Online",
"down": "Offline",
"paused": "Gepauzeerd",
"pending": "In afwachting",
"status": "Status",
"updated": "Updated",
"updated": "Bijgewerkt",
"cpu": "CPU",
"memory": "MEM",
"memory": "GEH",
"disk": "Schijf",
"network": "NET"
},
@@ -1011,26 +1005,26 @@
"apps": "Apps",
"synced": "Gesynchroniseerd",
"outOfSync": "Niet gesynchroniseerd",
"healthy": "Healthy",
"healthy": "Gezond",
"degraded": "Gedegradeerd",
"progressing": "Doorvoeren",
"missing": "Missing",
"missing": "Ontbreekt",
"suspended": "Onderbroken"
},
"spoolman": {
"loading": "Loading"
"loading": "Laden"
},
"gitlab": {
"groups": "Groepen",
"issues": "Issues",
"issues": "Problemen",
"merges": "Merge Verzoeken",
"projects": "Projecten"
},
"apcups": {
"status": "Status",
"load": "Load",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
"load": "Belasting",
"bcharge": "Batterij opladen",
"timeleft": "Resterende Tijd"
},
"karakeep": {
"bookmarks": "Bookmarks",
@@ -1038,50 +1032,27 @@
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
"tags": "Label"
},
"slskd": {
"slskStatus": "Network",
"connected": "Connected",
"disconnected": "Disconnected",
"slskStatus": "Netwerk",
"connected": "Verbonden",
"disconnected": "Verbinding verbroken",
"updateStatus": "Update",
"update_yes": "Available",
"update_no": "Up to Date",
"update_yes": "Beschikbaar",
"update_no": "Bijgewerkt",
"downloads": "Downloads",
"uploads": "Uploads",
"sharedFiles": "Files"
"sharedFiles": "Bestanden"
},
"jellystat": {
"songs": "Songs",
"movies": "Movies",
"episodes": "Episodes",
"songs": "Nummers",
"movies": "Films",
"episodes": "Afleveringen",
"other": "Other"
},
"checkmk": {
"serviceErrors": "Service 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",
"lan_users": "LAN Brukere",
"wlan_users": "WLAN Brukere",
"up": "UP",
"up": "OPP",
"down": "NEDE",
"wait": "Please wait",
"wait": "Vennligst vent",
"empty_data": "Ukjent undersystemstatus"
},
"docker": {
@@ -83,7 +83,7 @@
"partial": "Delvis"
},
"ping": {
"error": "Error",
"error": "Feil",
"ping": "Responstid",
"down": "Nede",
"up": "Oppe",
@@ -91,11 +91,11 @@
},
"siteMonitor": {
"http_status": "HTTP status",
"error": "Error",
"error": "Feil",
"response": "Svar",
"down": "Down",
"up": "Up",
"not_available": "Not Available"
"down": "Nede",
"up": "Oppe",
"not_available": "Ikke tilgjengelig"
},
"emby": {
"playing": "Spiller",
@@ -108,11 +108,11 @@
"songs": "Sanger"
},
"esphome": {
"offline": "Offline",
"offline_alt": "Offline",
"offline": "Frakoblet",
"offline_alt": "Frakoblet",
"online": "På nett",
"total": "Total",
"unknown": "Unknown"
"total": "Totalt",
"unknown": "Ukjent"
},
"evcc": {
"pv_power": "Produksjon",
@@ -141,11 +141,11 @@
"connectionStatusDisconnecting": "Kobler fra",
"connectionStatusDisconnected": "Frakoblet",
"connectionStatusConnected": "Tilkoblet",
"uptime": "Uptime",
"uptime": "Oppetid",
"maxDown": "Maks. Ned",
"maxUp": "Max. Opp",
"down": "Down",
"up": "Up",
"down": "Nede",
"up": "Oppe",
"received": "Mottatt",
"sent": "Sendt",
"externalIPAddress": "Ekstern IP",
@@ -168,10 +168,10 @@
"passes": "Pasninger"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"playing": "Spiller",
"transcoding": "Transkoding",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"no_active": "Ingen aktive strømminger",
"plex_connection_error": "Kontroller Plex tilkoblingen"
},
"omada": {
@@ -189,28 +189,28 @@
"plex": {
"streams": "Aktive strømmninger",
"albums": "Album",
"movies": "Movies",
"movies": "Film",
"tv": "TV serier"
},
"sabnzbd": {
"rate": "Rate",
"rate": "Ranger",
"queue": "Kø",
"timeleft": "Gjenstående tid"
},
"rutorrent": {
"active": "Aktiv",
"upload": "Upload",
"download": "Download"
"upload": "Opplastning",
"download": "Last ned"
},
"transmission": {
"download": "Download",
"upload": "Upload",
"download": "Last ned",
"upload": "Opplastning",
"leech": "Leech",
"seed": "Seed"
},
"qbittorrent": {
"download": "Download",
"upload": "Upload",
"download": "Last ned",
"upload": "Opplastning",
"leech": "Leech",
"seed": "Seed"
},
@@ -223,8 +223,8 @@
"invalid": "Ugyldig"
},
"deluge": {
"download": "Download",
"upload": "Upload",
"download": "Last ned",
"upload": "Opplastning",
"leech": "Leech",
"seed": "Seed"
},
@@ -233,34 +233,34 @@
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": {
"download": "Download",
"upload": "Upload",
"download": "Last ned",
"upload": "Opplastning",
"leech": "Leech",
"seed": "Seed"
},
"sonarr": {
"wanted": "Ønsket",
"queued": "Ventende",
"series": "Series",
"queue": "Queue",
"unknown": "Unknown"
"series": "Serie",
"queue": "",
"unknown": "Ukjent"
},
"radarr": {
"wanted": "Wanted",
"wanted": "Ønsket",
"missing": "Mangler",
"queued": "Queued",
"movies": "Movies",
"queue": "Queue",
"unknown": "Unknown"
"queued": "Ventende",
"movies": "Film",
"queue": "",
"unknown": "Ukjent"
},
"lidarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Ønsket",
"queued": "Ventende",
"artists": "Artister"
},
"readarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Ønsket",
"queued": "Ventende",
"books": "Bøker"
},
"bazarr": {
@@ -273,19 +273,19 @@
"available": "Tilgjengelig"
},
"jellyseerr": {
"pending": "Pending",
"approved": "Approved",
"available": "Available"
"pending": "Ventende",
"approved": "Godkjent",
"available": "Tilgjengelig"
},
"overseerr": {
"pending": "Pending",
"pending": "Ventende",
"processing": "Behandler",
"approved": "Approved",
"available": "Available"
"approved": "Godkjent",
"available": "Tilgjengelig"
},
"netalertx": {
"total": "Total",
"connected": "Connected",
"total": "Totalt",
"connected": "Tilkoblet",
"new_devices": "Nye enheter",
"down_alerts": "Down Alerts"
},
@@ -296,26 +296,26 @@
"gravity": "Gravitasjon"
},
"adguard": {
"queries": "Queries",
"blocked": "Blocked",
"queries": "Spørringer",
"blocked": "Blokkert",
"filtered": "Filtrert",
"latency": "Responstid"
},
"speedtest": {
"upload": "Upload",
"download": "Download",
"ping": "Ping"
"upload": "Opplastning",
"download": "Last ned",
"ping": "Responstid"
},
"portainer": {
"running": "Running",
"running": "Kjører",
"stopped": "Stoppet",
"total": "Total"
"total": "Totalt"
},
"suwayomi": {
"download": "Downloaded",
"download": "Nedlastede",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"unread": "Ulest",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
@@ -336,7 +336,7 @@
"ago": "{{value}} Ago"
},
"technitium": {
"totalQueries": "Queries",
"totalQueries": "Spørringer",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blocked",
"totalBlocked": "Blokkert",
"totalDropped": "Dropped",
"totalClients": "Klienter"
},
"tdarr": {
"queue": "Queue",
"queue": "",
"processed": "Behandlet",
"errored": "Feilet",
"saved": "Lagret"
@@ -359,20 +359,14 @@
"services": "Tjenester",
"middleware": "Mellomvare"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"nothing_streaming": "Ingen aktive strømminger",
"please_wait": "Vennligst vent"
},
"npm": {
"enabled": "Aktivert",
"disabled": "Deaktivert",
"total": "Total"
"total": "Totalt"
},
"coinmarketcap": {
"configure": "Konfigurer én eller flere krypteringsvalutaer som skal spores",
@@ -383,49 +377,49 @@
},
"gotify": {
"apps": "Applikasjoner",
"clients": "Clients",
"clients": "Klienter",
"messages": "Meldinger"
},
"prowlarr": {
"enableIndexers": "Indeksere",
"numberOfGrabs": "Tatt",
"numberOfQueries": "Queries",
"numberOfQueries": "Spørringer",
"numberOfFailGrabs": "Feil ved henting",
"numberOfFailQueries": "Spørring mislyktes"
},
"jackett": {
"configured": "Konfigurert",
"errored": "Errored"
"errored": "Feilet"
},
"strelaysrv": {
"numActiveSessions": "Sesjoner",
"numConnections": "Tilkoblinger",
"dataRelayed": "Videresendt",
"transferRate": "Rate"
"transferRate": "Ranger"
},
"mastodon": {
"user_count": "Users",
"user_count": "Brukere",
"status_count": "Innlegg",
"domain_count": "Domener"
},
"medusa": {
"wanted": "Wanted",
"queued": "Queued",
"series": "Series"
"wanted": "Ønsket",
"queued": "Ventende",
"series": "Serie"
},
"minecraft": {
"players": "Spillere",
"version": "Versjon",
"status": "Status",
"up": "Online",
"down": "Offline"
"up": "På nett",
"down": "Frakoblet"
},
"miniflux": {
"read": "Read",
"unread": "Unread"
"unread": "Ulest"
},
"authentik": {
"users": "Users",
"users": "Brukere",
"loginsLast24H": "Logins (24h)",
"failedLoginsLast24H": "Mislykket innlogginger (24t)"
},
@@ -437,17 +431,17 @@
},
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"load": "Last",
"wait": "Vennligst vent",
"temp": "TEMP",
"_temp": "Temp",
"warn": "Advarsel",
"uptime": "UP",
"total": "Total",
"free": "Free",
"used": "Used",
"uptime": "OPP",
"total": "Totalt",
"free": "Ledig",
"used": "Brukt",
"days": "d",
"hours": "h",
"hours": "t",
"crit": "Crit",
"read": "Read",
"write": "Skriv",
@@ -461,7 +455,7 @@
"search": "Søk",
"custom": "Egendefinert",
"visit": "Besøk",
"url": "URL",
"url": "Nettadresse",
"searchsuggestion": "Forslag"
},
"wmo": {
@@ -470,57 +464,57 @@
"1-day": "Lettskyet",
"1-night": "Lettskyet",
"2-day": "Delvis skyet",
"2-night": "Partly Cloudy",
"2-night": "Delvis skyet",
"3-day": "Skyet",
"3-night": "Cloudy",
"3-night": "Skyet",
"45-day": "Tåke",
"45-night": "Foggy",
"48-day": "Foggy",
"48-night": "Foggy",
"45-night": "Tåke",
"48-day": "Tåke",
"48-night": "Tåke",
"51-day": "Lett yr",
"51-night": "Light Drizzle",
"51-night": "Lett yr",
"53-day": "Yr",
"53-night": "Drizzle",
"53-night": "Yr",
"55-day": "Tungt Regn",
"55-night": "Heavy Drizzle",
"55-night": "Tungt Regn",
"56-day": "Lett underkjølt regn",
"56-night": "Light Freezing Drizzle",
"56-night": "Lett underkjølt regn",
"57-day": "Underkjølt Regn",
"57-night": "Freezing Drizzle",
"57-night": "Underkjølt Regn",
"61-day": "Lett regn",
"61-night": "Light Rain",
"61-night": "Lett regn",
"63-day": "Regn",
"63-night": "Rain",
"63-night": "Regn",
"65-day": "Kraftig regn",
"65-night": "Heavy Rain",
"65-night": "Kraftig regn",
"66-day": "Underkjølt regn",
"66-night": "Freezing Rain",
"67-day": "Freezing Rain",
"67-night": "Freezing Rain",
"66-night": "Underkjølt regn",
"67-day": "Underkjølt regn",
"67-night": "Underkjølt regn",
"71-day": "Lett snøvær",
"71-night": "Light Snow",
"71-night": "Lett snøvær",
"73-day": "Snø",
"73-night": "Snow",
"73-night": "Snø",
"75-day": "Tett snø",
"75-night": "Heavy Snow",
"75-night": "Tett snø",
"77-day": "Snøkorn",
"77-night": "Snow Grains",
"77-night": "Snøkorn",
"80-day": "Lette Regnbyger",
"80-night": "Light Showers",
"80-night": "Lette Regnbyger",
"81-day": "Regnbyger",
"81-night": "Showers",
"81-night": "Regnbyger",
"82-day": "Tunge regnbyger",
"82-night": "Heavy Showers",
"82-night": "Tunge regnbyger",
"85-day": "Snøbyger",
"85-night": "Snow Showers",
"86-day": "Snow Showers",
"86-night": "Snow Showers",
"85-night": "Snøbyger",
"86-day": "Snøbyger",
"86-night": "Snøbyger",
"95-day": "Tordenbyger",
"95-night": "Thunderstorm",
"95-night": "Tordenbyger",
"96-day": "Tordenvær med hagl",
"96-night": "Thunderstorm With Hail",
"99-day": "Thunderstorm With Hail",
"99-night": "Thunderstorm With Hail"
"96-night": "Tordenvær med hagl",
"99-day": "Tordenvær med hagl",
"99-night": "Tordenvær med hagl"
},
"homebridge": {
"available_update": "System",
@@ -529,15 +523,15 @@
"up_to_date": "Oppdatert",
"child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "Up",
"pending": "Pending",
"down": "Down"
"up": "Oppe",
"pending": "Ventende",
"down": "Nede"
},
"healthchecks": {
"new": "Ny",
"up": "Up",
"up": "Oppe",
"grace": "I rammeperiode",
"down": "Down",
"down": "Nede",
"paused": "Pauset",
"status": "Status",
"last_ping": "Siste Ping",
@@ -549,27 +543,27 @@
"containers_failed": "Mislyktes"
},
"autobrr": {
"approvedPushes": "Approved",
"approvedPushes": "Godkjent",
"rejectedPushes": "Avvist",
"filters": "Filtre",
"indexers": "Indexers"
"indexers": "Indeksere"
},
"tubearchivist": {
"downloads": "Queue",
"downloads": "",
"videos": "Videoer",
"channels": "Kanal",
"playlists": "Spillelister"
},
"truenas": {
"load": "Last på systemet",
"uptime": "Uptime",
"alerts": "Alerts"
"uptime": "Oppetid",
"alerts": "Varsler"
},
"pyload": {
"speed": "Hastighet",
"active": "Active",
"queue": "Queue",
"total": "Total"
"active": "Aktiv",
"queue": "",
"total": "Totalt"
},
"gluetun": {
"public_ip": "Offentlig IP",
@@ -578,47 +572,47 @@
"port_forwarded": "Port Forwarded"
},
"hdhomerun": {
"channels": "Channels",
"channels": "Kanal",
"hd": "HD",
"tunerCount": "Tunere",
"channelNumber": "Kanal",
"channelNetwork": "Nettverk",
"signalStrength": "Styrke",
"signalQuality": "Kvalitet",
"symbolQuality": "Quality",
"symbolQuality": "Kvalitet",
"networkRate": "Bitrate",
"clientIP": "Klient"
},
"scrutiny": {
"passed": "Bestått",
"failed": "Failed",
"unknown": "Unknown"
"failed": "Mislyktes",
"unknown": "Ukjent"
},
"paperlessngx": {
"inbox": "Innboks",
"total": "Total"
"total": "Totalt"
},
"peanut": {
"battery_charge": "Batteriladning",
"ups_load": "UPS last",
"ups_status": "UPS status",
"online": "Online",
"online": "På nett",
"on_battery": "På batteri",
"low_battery": "Lavt batterinivå"
},
"nextdns": {
"wait": "Please Wait",
"wait": "Vennligst vent",
"no_devices": "Ingen enhetsdata mottatt"
},
"mikrotik": {
"cpuLoad": "Prosessorbelastning",
"memoryUsed": "Minne brukt",
"uptime": "Uptime",
"uptime": "Oppetid",
"numberOfLeases": "Leases"
},
"xteve": {
"streams_all": "Alle strømminger",
"streams_active": "Active Streams",
"streams_active": "Aktive strømmninger",
"streams_xepg": "XEPG Kanaler"
},
"opendtu": {
@@ -628,7 +622,7 @@
"limit": "Grense"
},
"opnsense": {
"cpu": "CPU Load",
"cpu": "Prosessorbelastning",
"memory": "Aktiv minne",
"wanUpload": "WAN Opplasting",
"wanDownload": "WAN Nedlasting"
@@ -653,8 +647,8 @@
"load": "Load Avg",
"memory": "Mem Usage",
"wanStatus": "WAN Status",
"up": "Up",
"down": "Down",
"up": "Oppe",
"down": "Nede",
"temp": "Temp",
"disk": "Disk Usage",
"wanIP": "WAN IP"
@@ -666,49 +660,49 @@
"memory_usage": "Memory"
},
"immich": {
"users": "Users",
"users": "Brukere",
"photos": "Photos",
"videos": "Videos",
"videos": "Videoer",
"storage": "Lagring"
},
"uptimekuma": {
"up": "Nettsteder opp",
"down": "Sites Down",
"uptime": "Uptime",
"uptime": "Oppetid",
"incident": "Incident",
"m": "m"
},
"atsumeru": {
"series": "Series",
"series": "Serie",
"archives": "Archives",
"chapters": "Chapters",
"categories": "Categories"
},
"komga": {
"libraries": "Libraries",
"series": "Series",
"books": "Books"
"series": "Serie",
"books": "Bøker"
},
"diskstation": {
"days": "Days",
"uptime": "Uptime",
"volumeAvailable": "Available"
"days": "Dager",
"uptime": "Oppetid",
"volumeAvailable": "Tilgjengelig"
},
"mylar": {
"series": "Series",
"series": "Serie",
"issues": "Issues",
"wanted": "Wanted"
"wanted": "Ønsket"
},
"photoprism": {
"albums": "Albums",
"albums": "Album",
"photos": "Photos",
"videos": "Videos",
"videos": "Videoer",
"people": "People"
},
"fileflows": {
"queue": "Queue",
"processing": "Processing",
"processed": "Processed",
"queue": "",
"processing": "Behandler",
"processed": "Behandlet",
"time": "Time"
},
"firefly": {
@@ -734,7 +728,7 @@
"size": "Size",
"lastrun": "Last Run",
"nextrun": "Next Run",
"failed": "Failed"
"failed": "Mislyktes"
},
"unmanic": {
"active_workers": "Active Workers",
@@ -751,20 +745,20 @@
"targets_total": "Totalt antall mål"
},
"gatus": {
"up": "Sites Up",
"up": "Nettsteder opp",
"down": "Sites Down",
"uptime": "Uptime"
"uptime": "Oppetid"
},
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_today": "Idag",
"gross_percent_1y": "Ett år",
"gross_percent_max": "Gjennom tidene"
},
"audiobookshelf": {
"podcasts": "Podkaster",
"books": "Books",
"books": "Bøker",
"podcastsDuration": "Varighet",
"booksDuration": "Duration"
"booksDuration": "Varighet"
},
"homeassistant": {
"people_home": "Personer hjemme",
@@ -773,22 +767,22 @@
},
"whatsupdocker": {
"monitoring": "Overvåker",
"updates": "Updates"
"updates": "Oppdateringer"
},
"calibreweb": {
"books": "Books",
"books": "Bøker",
"authors": "Forfattere",
"categories": "Categories",
"series": "Series"
"series": "Serie"
},
"jdownloader": {
"downloadCount": "Queue",
"downloadBytesRemaining": "Remaining",
"downloadCount": "",
"downloadBytesRemaining": "Gjenstående",
"downloadTotalBytes": "Size",
"downloadSpeed": "Speed"
"downloadSpeed": "Hastighet"
},
"kavita": {
"seriesCount": "Series",
"seriesCount": "Serie",
"totalFiles": "Files"
},
"azuredevops": {
@@ -797,24 +791,24 @@
"buildId": "Produksjons ID",
"succeeded": "Vellykket",
"notStarted": "Ikke startet",
"failed": "Failed",
"failed": "Mislyktes",
"canceled": "Avbrutt",
"inProgress": "Pågående",
"totalPrs": "Totalt PR-er",
"myPrs": "Mine PR'er",
"approved": "Approved"
"approved": "Godkjent"
},
"gamedig": {
"status": "Status",
"online": "Online",
"offline": "Offline",
"online": "På nett",
"offline": "Frakoblet",
"name": "Navn",
"map": "Kart",
"currentPlayers": "Aktuelle spillere",
"players": "Players",
"players": "Spillere",
"maxPlayers": "Maks spillere",
"bots": "Bots",
"ping": "Ping"
"ping": "Responstid"
},
"urbackup": {
"ok": "Ok",
@@ -824,39 +818,39 @@
},
"mealie": {
"recipes": "Oppskrifter",
"users": "Users",
"users": "Brukere",
"categories": "Categories",
"tags": "Stikkord"
},
"openmediavault": {
"downloading": "Nedlaster",
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"passed": "Passed",
"failed": "Failed"
"total": "Totalt",
"running": "Kjører",
"stopped": "Stoppet",
"passed": "Bestått",
"failed": "Mislyktes"
},
"openwrt": {
"uptime": "Uptime",
"uptime": "Oppetid",
"cpuLoad": "CPU-belastning snitt (5m)",
"up": "Up",
"down": "Down",
"up": "Oppe",
"down": "Nede",
"bytesTx": "Sendt",
"bytesRx": "Received"
"bytesRx": "Mottatt"
},
"uptimerobot": {
"status": "Status",
"uptime": "Uptime",
"uptime": "Oppetid",
"lastDown": "Siste nedetid",
"downDuration": "Varighet på nedetid",
"sitesUp": "Sites Up",
"sitesUp": "Nettsteder opp",
"sitesDown": "Sites Down",
"paused": "Paused",
"paused": "Pauset",
"notyetchecked": "Ikke sjekket enda",
"up": "Up",
"up": "Oppe",
"seemsdown": "Virker nede",
"down": "Down",
"unknown": "Unknown"
"down": "Nede",
"unknown": "Ukjent"
},
"calendar": {
"inCinemas": "På Kino",
@@ -875,10 +869,10 @@
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domains",
"domains": "Domener",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
"storage": "Lagring"
},
"netdata": {
"warnings": "Advarsler",
@@ -908,13 +902,13 @@
"galleries": "Gallerier",
"performers": "Utøvere",
"studios": "Studios",
"movies": "Movies",
"tags": "Tags",
"movies": "Film",
"tags": "Stikkord",
"oCount": "O antall"
},
"tandoor": {
"users": "Users",
"recipes": "Recipes",
"users": "Brukere",
"recipes": "Oppskrifter",
"keywords": "Nøkkelord"
},
"homebox": {
@@ -922,18 +916,18 @@
"totalWithWarranty": "Med garanti",
"locations": "Posisjon",
"labels": "Etiketter",
"users": "Users",
"users": "Brukere",
"totalValue": "Totalverdi"
},
"crowdsec": {
"alerts": "Alerts",
"alerts": "Varsler",
"bans": "Utestengelse"
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"connected": "Tilkoblet",
"enabled": "Aktivert",
"disabled": "Deaktivert",
"total": "Totalt"
},
"swagdashboard": {
"proxied": "Proxied",
@@ -942,9 +936,9 @@
"banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
"ping": "Responstid",
"download": "Last ned",
"upload": "Opplastning"
},
"stocks": {
"stocks": "Stocks",
@@ -955,17 +949,17 @@
},
"frigate": {
"cameras": "Cameras",
"uptime": "Uptime",
"version": "Version"
"uptime": "Oppetid",
"version": "Versjon"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tags"
"tags": "Stikkord"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Information",
"information": "Informasjon",
"warning": "Warning",
"average": "Average",
"high": "High",
@@ -986,22 +980,22 @@
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"name": "Navn",
"address": "Adresse",
"last_seen": "Sist sett",
"status": "Status",
"online": "Online",
"offline": "Offline"
"online": "På nett",
"offline": "Frakoblet"
},
"beszel": {
"name": "Name",
"name": "Navn",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"up": "Oppe",
"down": "Nede",
"paused": "Pauset",
"pending": "Ventende",
"status": "Status",
"updated": "Updated",
"updated": "Oppdatert",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
@@ -1011,10 +1005,10 @@
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"healthy": "Friskt",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"missing": "Mangler",
"suspended": "Suspended"
},
"spoolman": {
@@ -1028,9 +1022,9 @@
},
"apcups": {
"status": "Status",
"load": "Load",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
"load": "Last",
"bcharge": "Batteriladning",
"timeleft": "Gjenstående tid"
},
"karakeep": {
"bookmarks": "Bookmarks",
@@ -1038,50 +1032,27 @@
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
"tags": "Stikkord"
},
"slskd": {
"slskStatus": "Network",
"connected": "Connected",
"disconnected": "Disconnected",
"slskStatus": "Nettverk",
"connected": "Tilkoblet",
"disconnected": "Frakoblet",
"updateStatus": "Update",
"update_yes": "Available",
"update_no": "Up to Date",
"update_yes": "Tilgjengelig",
"update_no": "Oppdatert",
"downloads": "Downloads",
"uploads": "Uploads",
"sharedFiles": "Files"
},
"jellystat": {
"songs": "Songs",
"movies": "Movies",
"episodes": "Episodes",
"songs": "Sanger",
"movies": "Film",
"episodes": "Episoder",
"other": "Other"
},
"checkmk": {
"serviceErrors": "Service 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",
"lan_users": "Użytkownicy LAN",
"wlan_users": "Użytkownicy WLAN",
"up": "UP",
"up": "CZAS",
"down": "Pobieranie",
"wait": "Proszę czekać",
"empty_data": "Status podsystemu nieznany"
@@ -69,7 +69,7 @@
"docker": {
"rx": "Rx",
"tx": "Tx",
"mem": "MEM",
"mem": "RAM",
"cpu": "Procesor",
"running": "Działa",
"offline": "Nieosiągalny",
@@ -93,8 +93,8 @@
"http_status": "Status HTTP",
"error": "Błąd",
"response": "Odpowiedź",
"down": "Down",
"up": "Up",
"down": "Niedostępny",
"up": "Dostępny",
"not_available": "Niedostępny"
},
"emby": {
@@ -108,11 +108,11 @@
"songs": "Piosenki"
},
"esphome": {
"offline": "Offline",
"offline_alt": "Offline",
"offline": "Nieosiągalny",
"offline_alt": "Nieosiągalny",
"online": "Dostępny",
"total": "Total",
"unknown": "Unknown"
"total": "Całkowite",
"unknown": "Nieznany"
},
"evcc": {
"pv_power": "Produkcja",
@@ -133,7 +133,7 @@
"unread": "Nieprzeczytane"
},
"fritzbox": {
"connectionStatus": "Status",
"connectionStatus": "Stan",
"connectionStatusUnconfigured": "Nieskonfigurowane",
"connectionStatusConnecting": "Łączenie",
"connectionStatusAuthenticating": "Uwierzytelnianie",
@@ -141,11 +141,11 @@
"connectionStatusDisconnecting": "Rozłączanie",
"connectionStatusDisconnected": "Rozłączono",
"connectionStatusConnected": "Połączono",
"uptime": "Uptime",
"uptime": "Czas działania",
"maxDown": "Maks. Pobieranie",
"maxUp": "Maks. Wysyłanie",
"down": "Down",
"up": "Up",
"down": "Niedostępny",
"up": "Dostępny",
"received": "Odebrane",
"sent": "Wysłane",
"externalIPAddress": "Pub. IP",
@@ -168,10 +168,10 @@
"passes": "Przebiegi"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"playing": "Odtwarzanie",
"transcoding": "Transkodowanie",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"no_active": "Brak aktywnych strumieni",
"plex_connection_error": "Sprawdź połączenie z Plex"
},
"omada": {
@@ -193,24 +193,24 @@
"tv": "Seriale"
},
"sabnzbd": {
"rate": "Rate",
"rate": "Szybkość",
"queue": "Kolejka",
"timeleft": "Pozostało"
},
"rutorrent": {
"active": "Aktywny",
"upload": "Upload",
"upload": "Wysyłanie",
"download": "Pobieranie"
},
"transmission": {
"download": "Pobieranie",
"upload": "Upload",
"upload": "Wysyłanie",
"leech": "Leech",
"seed": "Seed"
},
"qbittorrent": {
"download": "Download",
"upload": "Upload",
"download": "Pobieranie",
"upload": "Wysyłanie",
"leech": "Leech",
"seed": "Seed"
},
@@ -223,8 +223,8 @@
"invalid": "Nieprawidłowy"
},
"deluge": {
"download": "Download",
"upload": "Upload",
"download": "Pobieranie",
"upload": "Wysyłanie",
"leech": "Leech",
"seed": "Seed"
},
@@ -233,34 +233,34 @@
"cachemissbytes": "Straty cache'u"
},
"downloadstation": {
"download": "Download",
"upload": "Upload",
"download": "Pobieranie",
"upload": "Wysyłanie",
"leech": "Leech",
"seed": "Seed"
},
"sonarr": {
"wanted": "Poszukiwane",
"queued": "W kolejce",
"series": "Series",
"queue": "Queue",
"unknown": "Unknown"
"series": "Seriale",
"queue": "Kolejka",
"unknown": "Nieznany"
},
"radarr": {
"wanted": "Wanted",
"wanted": "Poszukiwane",
"missing": "Brakujące",
"queued": "Queued",
"movies": "Movies",
"queue": "Queue",
"unknown": "Unknown"
"queued": "W kolejce",
"movies": "Filmy",
"queue": "Kolejka",
"unknown": "Nieznany"
},
"lidarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Poszukiwane",
"queued": "W kolejce",
"artists": "Artyści"
},
"readarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Poszukiwane",
"queued": "W kolejce",
"books": "Książki"
},
"bazarr": {
@@ -273,19 +273,19 @@
"available": "Dostępne"
},
"jellyseerr": {
"pending": "Pending",
"approved": "Approved",
"available": "Available"
"pending": "Oczekiwane",
"approved": "Zaakceptowane",
"available": "Dostępne"
},
"overseerr": {
"pending": "Pending",
"pending": "Oczekiwane",
"processing": "Przetwarzane",
"approved": "Approved",
"available": "Available"
"approved": "Zaakceptowane",
"available": "Dostępne"
},
"netalertx": {
"total": "Total",
"connected": "Connected",
"total": "Całkowite",
"connected": "Połączono",
"new_devices": "Nowe urządzenia",
"down_alerts": "Alerty niedostępności"
},
@@ -296,26 +296,26 @@
"gravity": "Grawitacja"
},
"adguard": {
"queries": "Queries",
"blocked": "Blocked",
"queries": "Zapytania",
"blocked": "Zablokowane",
"filtered": "Przefiltrowane",
"latency": "Opóźnienia"
},
"speedtest": {
"upload": "Upload",
"download": "Download",
"upload": "Wysyłanie",
"download": "Pobieranie",
"ping": "Ping"
},
"portainer": {
"running": "Running",
"running": "Działa",
"stopped": "Zatrzymane",
"total": "Total"
"total": "Całkowite"
},
"suwayomi": {
"download": "Downloaded",
"download": "Pobrano",
"nondownload": "Niepobrane",
"read": "Read",
"unread": "Unread",
"read": "Przeczytane",
"unread": "Nieprzeczytane",
"downloadedread": "Pobrane i przeczytane",
"downloadedunread": "Pobrane i nieprzeczytane",
"nondownloadedread": "Niepobrane i przeczytane",
@@ -336,43 +336,37 @@
"ago": "{{value}} temu"
},
"technitium": {
"totalQueries": "Queries",
"totalQueries": "Zapytania",
"totalNoError": "Sukces",
"totalServerFailure": "Porażki",
"totalNxDomain": "Domeny NX",
"totalRefused": "Odrzuconych",
"totalRefused": "Odrzucone",
"totalAuthoritative": "Autorytatywne",
"totalRecursive": "Rekursywne",
"totalCached": "Zbuforowane",
"totalBlocked": "Blocked",
"totalBlocked": "Zablokowane",
"totalDropped": "Upuszczone",
"totalClients": "Klienci"
},
"tdarr": {
"queue": "Queue",
"queue": "Kolejka",
"processed": "Przetworzone",
"errored": "Błędne",
"saved": "Zapisane"
},
"traefik": {
"routers": "Routery",
"services": "Usługi",
"services": "Serwisy",
"middleware": "Pośrednicy"
},
"trilium": {
"version": "Wersja",
"notesCount": "Notatki",
"dbSize": "Rozmiar bazy danych",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"nothing_streaming": "Brak aktywnych strumieni",
"please_wait": "Proszę czekać"
},
"npm": {
"enabled": "Włączone",
"disabled": "Wyłączone",
"total": "Total"
"total": "Całkowite"
},
"coinmarketcap": {
"configure": "Wybierz jedną lub więcej kryptowalut do śledzenia",
@@ -389,19 +383,19 @@
"prowlarr": {
"enableIndexers": "Indeksery",
"numberOfGrabs": "Pochwycenia",
"numberOfQueries": "Queries",
"numberOfQueries": "Zapytania",
"numberOfFailGrabs": "Nieudane pochwycenia",
"numberOfFailQueries": "Nieudane zapytania"
},
"jackett": {
"configured": "Skonfigurowane",
"errored": "Errored"
"errored": "Błędne"
},
"strelaysrv": {
"numActiveSessions": "Sesje",
"numConnections": "Połączenia",
"dataRelayed": "Przekazane",
"transferRate": "Rate"
"transferRate": "Szybkość"
},
"mastodon": {
"user_count": "Użytkownicy",
@@ -409,47 +403,47 @@
"domain_count": "Domeny"
},
"medusa": {
"wanted": "Wanted",
"queued": "Queued",
"series": "Series"
"wanted": "Poszukiwane",
"queued": "W kolejce",
"series": "Seriale"
},
"minecraft": {
"players": "Gracze",
"version": "Wersja",
"status": "Status",
"up": "Online",
"down": "Offline"
"status": "Stan",
"up": "Dostępny",
"down": "Nieosiągalny"
},
"miniflux": {
"read": "Przeczytane",
"unread": "Unread"
"unread": "Nieprzeczytane"
},
"authentik": {
"users": "Users",
"users": "Użytkownicy",
"loginsLast24H": "Logowania (24h)",
"failedLoginsLast24H": "Nieudane logowania (24h)"
},
"proxmox": {
"mem": "MEM",
"mem": "RAM",
"cpu": "Procesor",
"lxc": "Kontenery LXC",
"vms": "Maszyn wirtualnych"
},
"glances": {
"cpu": "Procesor",
"load": "Load",
"load": "Obciążenie",
"wait": "Proszę czekać",
"temp": "TEMP",
"temp": "TEMP.",
"_temp": "Temperatura",
"warn": "Ostrzeżenie",
"uptime": "UP",
"total": "Total",
"free": "Free",
"used": "Used",
"uptime": "CZAS",
"total": "Całkowite",
"free": "Wolne",
"used": "Użyte",
"days": "d",
"hours": "h",
"hours": "g",
"crit": "Krytyczyny",
"read": "Read",
"read": "Przeczytane",
"write": "Zapis",
"gpu": "Karta graficzna",
"mem": "Pamięć",
@@ -461,7 +455,7 @@
"search": "Wyszukaj",
"custom": "Niestandardowe",
"visit": "Odwiedź",
"url": "URL",
"url": "Adres URL",
"searchsuggestion": "Sugestia"
},
"wmo": {
@@ -470,57 +464,57 @@
"1-day": "Głównie słoneczny",
"1-night": "Głównie bezchmurny",
"2-day": "Częściowo pochmurnie",
"2-night": "Partly Cloudy",
"2-night": "Częściowo pochmurnie",
"3-day": "Pochmurnie",
"3-night": "Cloudy",
"3-night": "Pochmurnie",
"45-day": "Mgliście",
"45-night": "Foggy",
"48-day": "Foggy",
"48-night": "Foggy",
"45-night": "Mgliście",
"48-day": "Mgliście",
"48-night": "Mgliście",
"51-day": "Lekka mżawka",
"51-night": "Light Drizzle",
"51-night": "Lekka mżawka",
"53-day": "Mżawka",
"53-night": "Drizzle",
"53-night": "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-night": "Light Freezing Drizzle",
"56-night": "Lekko 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-night": "Light Rain",
"61-night": "Lekki deszcz",
"63-day": "Deszcz",
"63-night": "Rain",
"63-night": "Deszcz",
"65-day": "Ciężki deszcz",
"65-night": "Heavy Rain",
"65-night": "Ciężki deszcz",
"66-day": "Mroźny deszcz",
"66-night": "Freezing Rain",
"67-day": "Freezing Rain",
"67-night": "Freezing Rain",
"66-night": "Mroźny deszcz",
"67-day": "Mroźny deszcz",
"67-night": "Mroźny deszcz",
"71-day": "Lekki śnieg",
"71-night": "Light Snow",
"71-night": "Lekki śnieg",
"73-day": "Śnieg",
"73-night": "Snow",
"73-night": "Śnieg",
"75-day": "Ciężki śnieg",
"75-night": "Heavy Snow",
"75-night": "Ciężki śnieg",
"77-day": "Ziarnisty śnieg",
"77-night": "Snow Grains",
"77-night": "Ziarnisty śnieg",
"80-day": "Lekkie opady",
"80-night": "Light Showers",
"80-night": "Lekkie opady",
"81-day": "Opady",
"81-night": "Showers",
"81-night": "Opady",
"82-day": "Ciężkie opady",
"82-night": "Heavy Showers",
"82-night": "Ciężkie opady",
"85-day": "Opady śniegu",
"85-night": "Snow Showers",
"86-day": "Snow Showers",
"86-night": "Snow Showers",
"85-night": "Opady śniegu",
"86-day": "Opady śniegu",
"86-night": "Opady śniegu",
"95-day": "Burze z piorunami",
"95-night": "Thunderstorm",
"95-night": "Burze z piorunami",
"96-day": "Burza z gradobiciem",
"96-night": "Thunderstorm With Hail",
"99-day": "Thunderstorm With Hail",
"99-night": "Thunderstorm With Hail"
"96-night": "Burza z gradobiciem",
"99-day": "Burza z gradobiciem",
"99-night": "Burza z gradobiciem"
},
"homebridge": {
"available_update": "System",
@@ -529,17 +523,17 @@
"up_to_date": "Aktualny",
"child_bridges": "Mostki podrzędne",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "Up",
"pending": "Pending",
"down": "Down"
"up": "Dostępny",
"pending": "Oczekiwane",
"down": "Niedostępny"
},
"healthchecks": {
"new": "Nowy",
"up": "Up",
"up": "Dostępny",
"grace": "W okresie karencji",
"down": "Down",
"paused": "Wstrzymane",
"status": "Status",
"down": "Niedostępny",
"paused": "Zatrzymane",
"status": "Stan",
"last_ping": "Ostatni ping",
"never": "Brak pingów"
},
@@ -549,27 +543,27 @@
"containers_failed": "Niepowodzenie"
},
"autobrr": {
"approvedPushes": "Approved",
"approvedPushes": "Zaakceptowane",
"rejectedPushes": "Odrzucone",
"filters": "Filtry",
"indexers": "Indexers"
"indexers": "Indeksery"
},
"tubearchivist": {
"downloads": "Queue",
"downloads": "Kolejka",
"videos": "Pliki wideo",
"channels": "Kanały",
"playlists": "Playlisty"
},
"truenas": {
"load": "Obciążenie systemu",
"uptime": "Uptime",
"alerts": "Alerts"
"uptime": "Czas działania",
"alerts": "Alarmy"
},
"pyload": {
"speed": "Prędkość",
"active": "Active",
"queue": "Queue",
"total": "Total"
"active": "Aktywny",
"queue": "Kolejka",
"total": "Całkowite"
},
"gluetun": {
"public_ip": "Adres publiczny",
@@ -578,47 +572,47 @@
"port_forwarded": "Port Forwarded"
},
"hdhomerun": {
"channels": "Channels",
"channels": "Kanały",
"hd": "HD",
"tunerCount": "Tunery",
"channelNumber": "Kanał",
"channelNetwork": "Sieć",
"signalStrength": "Siła sygnału",
"signalStrength": "Siła",
"signalQuality": "Jakość",
"symbolQuality": "Quality",
"symbolQuality": "Jakość",
"networkRate": "Bitrate",
"clientIP": "Klient"
},
"scrutiny": {
"passed": "Powodzenie",
"failed": "Failed",
"unknown": "Unknown"
"failed": "Niepowodzenie",
"unknown": "Nieznany"
},
"paperlessngx": {
"inbox": "Skrzynka odbiorcza",
"total": "Total"
"total": "Całkowite"
},
"peanut": {
"battery_charge": "Stan baterii",
"ups_load": "Obciążenie UPS",
"ups_status": "Status UPS",
"online": "Online",
"online": "Dostępny",
"on_battery": "Na baterii",
"low_battery": "Niski poziom baterii"
},
"nextdns": {
"wait": "Please Wait",
"wait": "Proszę czekać",
"no_devices": "Nie otrzymano danych urządzenia"
},
"mikrotik": {
"cpuLoad": "Obciążenie procesora",
"memoryUsed": "Zużyta pamięć",
"uptime": "Uptime",
"uptime": "Czas działania",
"numberOfLeases": "Dzierżawy"
},
"xteve": {
"streams_all": "Wszystkie strumienie",
"streams_active": "Active Streams",
"streams_active": "Aktywne strumienie",
"streams_xepg": "Kanały XEPG"
},
"opendtu": {
@@ -628,7 +622,7 @@
"limit": "Limit"
},
"opnsense": {
"cpu": "Procesor",
"cpu": "Obciążenie procesora",
"memory": "Pamięć rzeczywista",
"wanUpload": "WAN wysyłanie",
"wanDownload": "WAN pobieranie"
@@ -640,22 +634,22 @@
"layers": "Warstwy"
},
"octoprint": {
"printer_state": "Status",
"printer_state": "Stan",
"temp_tool": "Temperatura narzędzia",
"temp_bed": "Temp. łóżka",
"job_completion": "Ukończono"
},
"cloudflared": {
"origin_ip": "IP Źródła",
"status": "Status"
"status": "Stan"
},
"pfsense": {
"load": "Śr. Obciążenie",
"memory": "Użycie pamięci",
"wanStatus": "Status WAN",
"up": "Up",
"down": "Down",
"temp": "Temp",
"up": "Dostępny",
"down": "Niedostępny",
"temp": "Temperatura",
"disk": "Użycie dysku",
"wanIP": "WAN IP"
},
@@ -666,38 +660,38 @@
"memory_usage": "Pamięć"
},
"immich": {
"users": "Users",
"users": "Użytkownicy",
"photos": "Zdjęcia",
"videos": "Videos",
"videos": "Pliki wideo",
"storage": "Pamięć"
},
"uptimekuma": {
"up": "Działające",
"down": "Niedziałające",
"uptime": "Uptime",
"uptime": "Czas działania",
"incident": "Incydent",
"m": "m"
},
"atsumeru": {
"series": "Series",
"series": "Seriale",
"archives": "Archiwa",
"chapters": "Rozdziały",
"categories": "Kategorie"
},
"komga": {
"libraries": "Biblioteki",
"series": "Series",
"books": "Books"
"series": "Seriale",
"books": "Książki"
},
"diskstation": {
"days": "Days",
"uptime": "Uptime",
"volumeAvailable": "Available"
"days": "Dni",
"uptime": "Czas działania",
"volumeAvailable": "Dostępne"
},
"mylar": {
"series": "Series",
"series": "Seriale",
"issues": "Zgłoszenia",
"wanted": "Wanted"
"wanted": "Poszukiwane"
},
"photoprism": {
"albums": "Albumy",
@@ -706,9 +700,9 @@
"people": "Ludzie"
},
"fileflows": {
"queue": "Queue",
"processing": "Processing",
"processed": "Processed",
"queue": "Kolejka",
"processing": "Przetwarzane",
"processed": "Przetworzone",
"time": "Czas"
},
"firefly": {
@@ -730,11 +724,11 @@
"numshares": "Udostępnione elementy"
},
"kopia": {
"status": "Status",
"status": "Stan",
"size": "Rozmiar",
"lastrun": "Ostatnie uruchomienie",
"nextrun": "Następne uruchomienie",
"failed": "Failed"
"failed": "Niepowodzenie"
},
"unmanic": {
"active_workers": "Aktywni pracownicy",
@@ -751,9 +745,9 @@
"targets_total": "Wszystkich Celi"
},
"gatus": {
"up": "Sites Up",
"down": "Sites Down",
"uptime": "Uptime"
"up": "Działające",
"down": "Niedziałające",
"uptime": "Czas działania"
},
"ghostfolio": {
"gross_percent_today": "Dzisiaj",
@@ -773,27 +767,27 @@
},
"whatsupdocker": {
"monitoring": "Monitoring",
"updates": "Updates"
"updates": "Aktualizacje"
},
"calibreweb": {
"books": "Książki",
"authors": "Autorzy",
"categories": "Kategorie",
"series": "Series"
"series": "Seriale"
},
"jdownloader": {
"downloadCount": "Queue",
"downloadBytesRemaining": "Remaining",
"downloadTotalBytes": "Size",
"downloadCount": "Kolejka",
"downloadBytesRemaining": "Pozostało",
"downloadTotalBytes": "Rozmiar",
"downloadSpeed": "Prędkość"
},
"kavita": {
"seriesCount": "Series",
"seriesCount": "Seriale",
"totalFiles": "Pliki"
},
"azuredevops": {
"result": "Wynik",
"status": "Status",
"status": "Stan",
"buildId": "ID kompilacji",
"succeeded": "Ukończono",
"notStarted": "Nierozpoczęte",
@@ -802,12 +796,12 @@
"inProgress": "W trakcie",
"totalPrs": "Łącznie PRs",
"myPrs": "Moje PRs",
"approved": "Approved"
"approved": "Zaakceptowane"
},
"gamedig": {
"status": "Status",
"online": "Online",
"offline": "Offline",
"status": "Stan",
"online": "Dostępny",
"offline": "Nieosiągalny",
"name": "Nazwa",
"map": "Mapa",
"currentPlayers": "Gracze online",
@@ -830,33 +824,33 @@
},
"openmediavault": {
"downloading": "Pobieranie",
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"passed": "Passed",
"failed": "Failed"
"total": "Całkowite",
"running": "Działa",
"stopped": "Zatrzymane",
"passed": "Powodzenie",
"failed": "Niepowodzenie"
},
"openwrt": {
"uptime": "Uptime",
"uptime": "Czas działania",
"cpuLoad": "Śr. obciążenie CPU (5m)",
"up": "Up",
"down": "Down",
"up": "Dostępny",
"down": "Niedostępny",
"bytesTx": "Przesłane",
"bytesRx": "Received"
"bytesRx": "Odebrane"
},
"uptimerobot": {
"status": "Status",
"uptime": "Uptime",
"status": "Stan",
"uptime": "Czas działania",
"lastDown": "Ostatni downtime",
"downDuration": "Długość downtime'u",
"sitesUp": "Sites Up",
"sitesDown": "Sites Down",
"paused": "Paused",
"sitesUp": "Działające",
"sitesDown": "Niedziałające",
"paused": "Zatrzymane",
"notyetchecked": "Nie sprawdzono",
"up": "Up",
"up": "Dostępny",
"seemsdown": "Możliwe, że wyłączony",
"down": "Down",
"unknown": "Unknown"
"down": "Niedostępny",
"unknown": "Nieznany"
},
"calendar": {
"inCinemas": "W kinach",
@@ -875,10 +869,10 @@
"totalfilesize": "Rozmiar całkowity"
},
"mailcow": {
"domains": "Domains",
"domains": "Domeny",
"mailboxes": "Skrzynki",
"mails": "Poczta",
"storage": "Storage"
"storage": "Pamięć"
},
"netdata": {
"warnings": "Ostrzeżenia",
@@ -887,12 +881,12 @@
"plantit": {
"events": "Wydarzenia",
"plants": "Rośliny",
"photos": "Photos",
"photos": "Zdjęcia",
"species": "Gatunki"
},
"gitea": {
"notifications": "Powiadomienia",
"issues": "Issues",
"issues": "Zgłoszenia",
"pulls": "Żądania Pull",
"repositories": "Repozytoria"
},
@@ -908,13 +902,13 @@
"galleries": "Galerie",
"performers": "Artyści",
"studios": "Studia",
"movies": "Movies",
"tags": "Tags",
"movies": "Filmy",
"tags": "Tagi",
"oCount": "O Licznik"
},
"tandoor": {
"users": "Users",
"recipes": "Recipes",
"users": "Użytkownicy",
"recipes": "Przepisy",
"keywords": "Słowa kluczowe"
},
"homebox": {
@@ -922,18 +916,18 @@
"totalWithWarranty": "Z gwarancją",
"locations": "Lokalizacje",
"labels": "Etykiety",
"users": "Users",
"users": "Użytkownicy",
"totalValue": "Wartość całkowita"
},
"crowdsec": {
"alerts": "Alerts",
"alerts": "Alarmy",
"bans": "Bany"
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"connected": "Połączono",
"enabled": "Włączone",
"disabled": "Wyłączone",
"total": "Całkowite"
},
"swagdashboard": {
"proxied": "Proxy",
@@ -955,17 +949,17 @@
},
"frigate": {
"cameras": "Kamery",
"uptime": "Uptime",
"uptime": "Czas działania",
"version": "Wersja"
},
"linkwarden": {
"links": "Zapisane linki",
"links": "Łącza",
"collections": "Kolekcje",
"tags": "Tagi"
},
"zabbix": {
"unclassified": "Niezaklasyfikowane",
"information": "Information",
"information": "Informacje",
"warning": "Ostrzeżenie",
"average": "Średnia",
"high": "Wysokie",
@@ -989,21 +983,21 @@
"name": "Nazwa",
"address": "Adres",
"last_seen": "Ostatnio dostępny",
"status": "Status",
"online": "Online",
"offline": "Offline"
"status": "Stan",
"online": "Dostępny",
"offline": "Nieosiągalny"
},
"beszel": {
"name": "Nazwa",
"systems": "Systemy",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Status",
"updated": "Updated",
"up": "Dostępny",
"down": "Niedostępny",
"paused": "Zatrzymane",
"pending": "Oczekiwane",
"status": "Stan",
"updated": "Zaktualizowane",
"cpu": "Procesor",
"memory": "MEM",
"memory": "RAM",
"disk": "Dysk",
"network": "NET"
},
@@ -1011,14 +1005,14 @@
"apps": "Aplikacje",
"synced": "Synchronizowane",
"outOfSync": "Bez synchronizacji",
"healthy": "Healthy",
"healthy": "Zdrowy",
"degraded": "Zdegradowane",
"progressing": "Postępujące",
"missing": "Missing",
"missing": "Brakujące",
"suspended": "Zawieszone"
},
"spoolman": {
"loading": "Loading"
"loading": "Wczytywanie"
},
"gitlab": {
"groups": "Grupy",
@@ -1027,10 +1021,10 @@
"projects": "Projekty"
},
"apcups": {
"status": "Status",
"load": "Load",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
"status": "Stan",
"load": "Obciążenie",
"bcharge": "Stan baterii",
"timeleft": "Pozostało"
},
"karakeep": {
"bookmarks": "Zakładki",
@@ -1041,11 +1035,11 @@
"tags": "Tagi"
},
"slskd": {
"slskStatus": "Network",
"connected": "Connected",
"disconnected": "Disconnected",
"slskStatus": "Sieć",
"connected": "Połączono",
"disconnected": "Rozłączono",
"updateStatus": "Aktualizacja",
"update_yes": "Available",
"update_yes": "Dostępne",
"update_no": "Aktualny",
"downloads": "Pobieranie",
"uploads": "Przesyłanie",
@@ -1060,28 +1054,5 @@
"checkmk": {
"serviceErrors": "Service 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",
"up": "UP",
"down": "Oprit",
"wait": "Please wait",
"wait": "Va rugăm așteptați",
"empty_data": "Starea subsistemului este necunoscut"
},
"docker": {
"rx": "RX",
"tx": "TX",
"mem": "MEM",
"cpu": "CPU",
"cpu": "Procesor",
"running": "Rulează",
"offline": "Offline",
"error": "Eroare",
@@ -83,7 +83,7 @@
"partial": "Parțial"
},
"ping": {
"error": "Error",
"error": "Eroare",
"ping": "Ping",
"down": "Jos",
"up": "Sus",
@@ -91,11 +91,11 @@
},
"siteMonitor": {
"http_status": "Stare HTTP",
"error": "Error",
"error": "Eroare",
"response": "Răspuns",
"down": "Down",
"up": "Up",
"not_available": "Not Available"
"down": "Jos",
"up": "Sus",
"not_available": "Indisponibil"
},
"emby": {
"playing": "Activ",
@@ -112,7 +112,7 @@
"offline_alt": "Offline",
"online": "Online",
"total": "Total",
"unknown": "Unknown"
"unknown": "Necunoscut"
},
"evcc": {
"pv_power": "Producție",
@@ -133,7 +133,7 @@
"unread": "Necitit"
},
"fritzbox": {
"connectionStatus": "Status",
"connectionStatus": "Stare",
"connectionStatusUnconfigured": "Neconfigurat",
"connectionStatusConnecting": "Connecting",
"connectionStatusAuthenticating": "Authenticating",
@@ -144,8 +144,8 @@
"uptime": "Uptime",
"maxDown": "Max. Down",
"maxUp": "Max. Up",
"down": "Down",
"up": "Up",
"down": "Jos",
"up": "Sus",
"received": "Primit",
"sent": "Trimis",
"externalIPAddress": "Ext. IP",
@@ -168,10 +168,10 @@
"passes": "Passes"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"playing": "Activ",
"transcoding": "Transcodare",
"bitrate": "Rata de biți",
"no_active": "Niciun stream activ",
"plex_connection_error": "Check Plex Connection"
},
"omada": {
@@ -189,28 +189,28 @@
"plex": {
"streams": "Fluxuri active",
"albums": "Albume",
"movies": "Movies",
"movies": "Filme",
"tv": "Seriale"
},
"sabnzbd": {
"rate": "Rate",
"rate": "Rată",
"queue": "Coadă",
"timeleft": "Timp rămas"
},
"rutorrent": {
"active": "Activ",
"upload": "Upload",
"download": "Download"
"upload": "Încarcă",
"download": "Descarcă"
},
"transmission": {
"download": "Download",
"upload": "Upload",
"download": "Descarcă",
"upload": "Încarcă",
"leech": "Leech",
"seed": "Seed"
},
"qbittorrent": {
"download": "Download",
"upload": "Upload",
"download": "Descarcă",
"upload": "Încarcă",
"leech": "Leech",
"seed": "Seed"
},
@@ -223,8 +223,8 @@
"invalid": "Invalid"
},
"deluge": {
"download": "Download",
"upload": "Upload",
"download": "Descarcă",
"upload": "Încarcă",
"leech": "Leech",
"seed": "Seed"
},
@@ -233,34 +233,34 @@
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": {
"download": "Download",
"upload": "Upload",
"download": "Descarcă",
"upload": "Încarcă",
"leech": "Leech",
"seed": "Seed"
},
"sonarr": {
"wanted": "Dorite",
"queued": "În coadă",
"series": "Series",
"queue": "Queue",
"unknown": "Unknown"
"series": "Serie",
"queue": "Coadă",
"unknown": "Necunoscut"
},
"radarr": {
"wanted": "Wanted",
"wanted": "Dorite",
"missing": "Lipsește",
"queued": "Queued",
"movies": "Movies",
"queue": "Queue",
"unknown": "Unknown"
"queued": "În coadă",
"movies": "Filme",
"queue": "Coadă",
"unknown": "Necunoscut"
},
"lidarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Dorite",
"queued": "În coadă",
"artists": "Artiști"
},
"readarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Dorite",
"queued": "În coadă",
"books": "Cărți"
},
"bazarr": {
@@ -273,19 +273,19 @@
"available": "Disponibile"
},
"jellyseerr": {
"pending": "Pending",
"approved": "Approved",
"available": "Available"
"pending": "În așteptare",
"approved": "Aprobate",
"available": "Disponibile"
},
"overseerr": {
"pending": "Pending",
"pending": "În așteptare",
"processing": "Procesare",
"approved": "Approved",
"available": "Available"
"approved": "Aprobate",
"available": "Disponibile"
},
"netalertx": {
"total": "Total",
"connected": "Connected",
"connected": "Conectat",
"new_devices": "Dispozitive Noi",
"down_alerts": "Down Alerts"
},
@@ -296,26 +296,26 @@
"gravity": "Gravitație"
},
"adguard": {
"queries": "Queries",
"blocked": "Blocked",
"queries": "Cereri",
"blocked": "Blocate",
"filtered": "Filtrate",
"latency": "Latentă"
},
"speedtest": {
"upload": "Upload",
"download": "Download",
"upload": "Încarcă",
"download": "Descarcă",
"ping": "Ping"
},
"portainer": {
"running": "Running",
"running": "Rulează",
"stopped": "Oprit",
"total": "Total"
},
"suwayomi": {
"download": "Downloaded",
"download": "Descărcat",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"unread": "Necitit",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
@@ -336,7 +336,7 @@
"ago": "{{value}} Ago"
},
"technitium": {
"totalQueries": "Queries",
"totalQueries": "Cereri",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursiv",
"totalCached": "Cached",
"totalBlocked": "Blocked",
"totalBlocked": "Blocate",
"totalDropped": "Dropped",
"totalClients": "Clienți"
},
"tdarr": {
"queue": "Queue",
"queue": "Coadă",
"processed": "Processed",
"errored": "Errored",
"saved": "Salvat"
@@ -359,14 +359,8 @@
"services": "Servicii",
"middleware": "Middleware"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"nothing_streaming": "Niciun stream activ",
"please_wait": "Please Wait"
},
"npm": {
@@ -383,13 +377,13 @@
},
"gotify": {
"apps": "Aplicații",
"clients": "Clients",
"clients": "Clienți",
"messages": "Mesaje"
},
"prowlarr": {
"enableIndexers": "Indexatori",
"numberOfGrabs": "Descărcate",
"numberOfQueries": "Queries",
"numberOfQueries": "Cereri",
"numberOfFailGrabs": "Descărcări eșuate",
"numberOfFailQueries": "Cereri eșuate"
},
@@ -401,51 +395,51 @@
"numActiveSessions": "Sesiuni",
"numConnections": "Conexiuni",
"dataRelayed": "Retransmise",
"transferRate": "Rate"
"transferRate": "Rată"
},
"mastodon": {
"user_count": "Users",
"user_count": "Utilizatori",
"status_count": "Postări",
"domain_count": "Domenii"
},
"medusa": {
"wanted": "Wanted",
"queued": "Queued",
"series": "Series"
"wanted": "Dorite",
"queued": "În coadă",
"series": "Serie"
},
"minecraft": {
"players": "Jucători",
"version": "Versiune",
"status": "Status",
"status": "Stare",
"up": "Online",
"down": "Offline"
},
"miniflux": {
"read": "Read",
"unread": "Unread"
"unread": "Necitit"
},
"authentik": {
"users": "Users",
"users": "Utilizatori",
"loginsLast24H": "Autentificări (24h)",
"failedLoginsLast24H": "Conectări eșuate (24h)"
},
"proxmox": {
"mem": "MEM",
"cpu": "CPU",
"cpu": "Procesor",
"lxc": "Container",
"vms": "Masini Virtuale"
},
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"cpu": "Procesor",
"load": "Sarcină",
"wait": "Va rugăm așteptați",
"temp": "TEMP",
"_temp": "Temperatură",
"warn": "Warn",
"uptime": "UP",
"total": "Total",
"free": "Free",
"used": "Used",
"free": "Disponibili",
"used": "Utilizați",
"days": "d",
"hours": "h",
"crit": "Crit",
@@ -470,13 +464,13 @@
"1-day": "Aproape însorit",
"1-night": "Aproape fără nori",
"2-day": "Parţial Înnorat",
"2-night": "Partly Cloudy",
"2-night": "Parţial Înnorat",
"3-day": "Înnorat",
"3-night": "Cloudy",
"3-night": "Înnorat",
"45-day": "Ceaţă",
"45-night": "Foggy",
"48-day": "Foggy",
"48-night": "Foggy",
"45-night": "Ceaţă",
"48-day": "Ceaţă",
"48-night": "Ceaţă",
"51-day": "Light Drizzle",
"51-night": "Light Drizzle",
"53-day": "Drizzle",
@@ -488,9 +482,9 @@
"57-day": "Freezing Drizzle",
"57-night": "Freezing Drizzle",
"61-day": "Ploaie Ușoară",
"61-night": "Light Rain",
"61-night": "Ploaie Ușoară",
"63-day": "Ploaie",
"63-night": "Rain",
"63-night": "Ploaie",
"65-day": "Heavy Rain",
"65-night": "Heavy Rain",
"66-day": "Freezing Rain",
@@ -529,17 +523,17 @@
"up_to_date": "Actualizat",
"child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "Up",
"pending": "Pending",
"down": "Down"
"up": "Sus",
"pending": "În așteptare",
"down": "Jos"
},
"healthchecks": {
"new": "Nou",
"up": "Up",
"up": "Sus",
"grace": "In Grace Period",
"down": "Down",
"down": "Jos",
"paused": "Pauză",
"status": "Status",
"status": "Stare",
"last_ping": "Ultimul Ping",
"never": "No pings yet"
},
@@ -549,13 +543,13 @@
"containers_failed": "Eșuat"
},
"autobrr": {
"approvedPushes": "Approved",
"approvedPushes": "Aprobate",
"rejectedPushes": "Respinse",
"filters": "Filtre",
"indexers": "Indexers"
"indexers": "Indexatori"
},
"tubearchivist": {
"downloads": "Queue",
"downloads": "Coadă",
"videos": "Videos",
"channels": "Canale",
"playlists": "Playlists"
@@ -563,12 +557,12 @@
"truenas": {
"load": "System Load",
"uptime": "Uptime",
"alerts": "Alerts"
"alerts": "Alerte"
},
"pyload": {
"speed": "Viteză",
"active": "Active",
"queue": "Queue",
"active": "Activ",
"queue": "Coadă",
"total": "Total"
},
"gluetun": {
@@ -578,21 +572,21 @@
"port_forwarded": "Port Forwarded"
},
"hdhomerun": {
"channels": "Channels",
"channels": "Canale",
"hd": "HD",
"tunerCount": "Tunere",
"channelNumber": "Canal",
"channelNetwork": "Rețea",
"signalStrength": "Putere",
"signalQuality": "Calitate",
"symbolQuality": "Quality",
"networkRate": "Bitrate",
"symbolQuality": "Calitate",
"networkRate": "Rata de biți",
"clientIP": "Client"
},
"scrutiny": {
"passed": "Passed",
"failed": "Failed",
"unknown": "Unknown"
"failed": "Eșuat",
"unknown": "Necunoscut"
},
"paperlessngx": {
"inbox": "Inbox",
@@ -618,7 +612,7 @@
},
"xteve": {
"streams_all": "All Streams",
"streams_active": "Active Streams",
"streams_active": "Fluxuri active",
"streams_xepg": "XEPG Channels"
},
"opendtu": {
@@ -640,33 +634,33 @@
"layers": "Straturi"
},
"octoprint": {
"printer_state": "Status",
"printer_state": "Stare",
"temp_tool": "Tool temp",
"temp_bed": "Bed temp",
"job_completion": "Completion"
},
"cloudflared": {
"origin_ip": "Origin IP",
"status": "Status"
"status": "Stare"
},
"pfsense": {
"load": "Load Avg",
"memory": "Mem Usage",
"wanStatus": "WAN Status",
"up": "Up",
"down": "Down",
"temp": "Temp",
"up": "Sus",
"down": "Jos",
"temp": "Temperatură",
"disk": "Utilizare Disc",
"wanIP": "WAN IP"
},
"proxmoxbackupserver": {
"datastore_usage": "Datastore",
"failed_tasks_24h": "Failed Tasks 24h",
"cpu_usage": "CPU",
"cpu_usage": "Procesor",
"memory_usage": "Memorie"
},
"immich": {
"users": "Users",
"users": "Utilizatori",
"photos": "Fotografii",
"videos": "Videos",
"storage": "Storage"
@@ -679,35 +673,35 @@
"m": "m"
},
"atsumeru": {
"series": "Series",
"series": "Serie",
"archives": "Arhive",
"chapters": "Chapters",
"categories": "Categorii"
},
"komga": {
"libraries": "Biblioteci",
"series": "Series",
"books": "Books"
"series": "Serie",
"books": "Cărți"
},
"diskstation": {
"days": "Days",
"days": "Zile",
"uptime": "Uptime",
"volumeAvailable": "Available"
"volumeAvailable": "Disponibile"
},
"mylar": {
"series": "Series",
"series": "Serie",
"issues": "Issues",
"wanted": "Wanted"
"wanted": "Dorite"
},
"photoprism": {
"albums": "Albums",
"photos": "Photos",
"albums": "Albume",
"photos": "Fotografii",
"videos": "Videos",
"people": "Oameni"
},
"fileflows": {
"queue": "Queue",
"processing": "Processing",
"queue": "Coadă",
"processing": "Procesare",
"processed": "Processed",
"time": "Timp"
},
@@ -730,11 +724,11 @@
"numshares": "Articole Partajate"
},
"kopia": {
"status": "Status",
"status": "Stare",
"size": "Mărime",
"lastrun": "Ultima Rulare",
"nextrun": "Următoarea Rulare",
"failed": "Failed"
"failed": "Eșuat"
},
"unmanic": {
"active_workers": "Muncitori activi",
@@ -756,15 +750,15 @@
"uptime": "Uptime"
},
"ghostfolio": {
"gross_percent_today": "Today",
"gross_percent_today": "Astăzi",
"gross_percent_1y": "Un an",
"gross_percent_max": "Tot timpul"
},
"audiobookshelf": {
"podcasts": "Podcasturi",
"books": "Books",
"books": "Cărți",
"podcastsDuration": "Durată",
"booksDuration": "Duration"
"booksDuration": "Durată"
},
"homeassistant": {
"people_home": "People Home",
@@ -773,45 +767,45 @@
},
"whatsupdocker": {
"monitoring": "Monitoring",
"updates": "Updates"
"updates": "Actualizări"
},
"calibreweb": {
"books": "Books",
"books": "Cărți",
"authors": "Autori",
"categories": "Categories",
"series": "Series"
"categories": "Categorii",
"series": "Serie"
},
"jdownloader": {
"downloadCount": "Queue",
"downloadBytesRemaining": "Remaining",
"downloadTotalBytes": "Size",
"downloadSpeed": "Speed"
"downloadCount": "Coadă",
"downloadBytesRemaining": "Rămas",
"downloadTotalBytes": "Mărime",
"downloadSpeed": "Viteză"
},
"kavita": {
"seriesCount": "Series",
"totalFiles": "Files"
"seriesCount": "Serie",
"totalFiles": "Fișiere"
},
"azuredevops": {
"result": "Rezultat",
"status": "Status",
"status": "Stare",
"buildId": "Build ID",
"succeeded": "Succeeded",
"notStarted": "Not Started",
"failed": "Failed",
"failed": "Eșuat",
"canceled": "Anulat",
"inProgress": "În Progres",
"totalPrs": "Total PRs",
"myPrs": "My PRs",
"approved": "Approved"
"approved": "Aprobate"
},
"gamedig": {
"status": "Status",
"status": "Stare",
"online": "Online",
"offline": "Offline",
"name": "Nume",
"map": "Hartă",
"currentPlayers": "Current players",
"players": "Players",
"players": "Jucători",
"maxPlayers": "Max players",
"bots": "Boți",
"ping": "Ping"
@@ -824,39 +818,39 @@
},
"mealie": {
"recipes": "Recipes",
"users": "Users",
"categories": "Categories",
"users": "Utilizatori",
"categories": "Categorii",
"tags": "Etichete"
},
"openmediavault": {
"downloading": "Downloading",
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"running": "Rulează",
"stopped": "Oprit",
"passed": "Passed",
"failed": "Failed"
"failed": "Eșuat"
},
"openwrt": {
"uptime": "Uptime",
"cpuLoad": "CPU Load Avg (5m)",
"up": "Up",
"down": "Down",
"up": "Sus",
"down": "Jos",
"bytesTx": "Transmis",
"bytesRx": "Received"
"bytesRx": "Primit"
},
"uptimerobot": {
"status": "Status",
"status": "Stare",
"uptime": "Uptime",
"lastDown": "Last Downtime",
"downDuration": "Downtime Duration",
"sitesUp": "Sites Up",
"sitesDown": "Sites Down",
"paused": "Paused",
"paused": "Pau",
"notyetchecked": "Not Yet Checked",
"up": "Up",
"up": "Sus",
"seemsdown": "Seems Down",
"down": "Down",
"unknown": "Unknown"
"down": "Jos",
"unknown": "Necunoscut"
},
"calendar": {
"inCinemas": "În cinematografe",
@@ -875,7 +869,7 @@
"totalfilesize": "Mărime Totală"
},
"mailcow": {
"domains": "Domains",
"domains": "Domenii",
"mailboxes": "Cutii poştale",
"mails": "Mails",
"storage": "Storage"
@@ -887,7 +881,7 @@
"plantit": {
"events": "Evenimente",
"plants": "Plante",
"photos": "Photos",
"photos": "Fotografii",
"species": "Specii"
},
"gitea": {
@@ -908,12 +902,12 @@
"galleries": "Galerii",
"performers": "Performers",
"studios": "Studios",
"movies": "Movies",
"tags": "Tags",
"movies": "Filme",
"tags": "Etichete",
"oCount": "O Count"
},
"tandoor": {
"users": "Users",
"users": "Utilizatori",
"recipes": "Recipes",
"keywords": "Cuvinte cheie"
},
@@ -922,17 +916,17 @@
"totalWithWarranty": "Cu Garanție",
"locations": "Locaţii",
"labels": "Etichete",
"users": "Users",
"users": "Utilizatori",
"totalValue": "Total Value"
},
"crowdsec": {
"alerts": "Alerts",
"alerts": "Alerte",
"bans": "Bans"
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"connected": "Conectat",
"enabled": "Activat",
"disabled": "Dezactivat",
"total": "Total"
},
"swagdashboard": {
@@ -943,8 +937,8 @@
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
"download": "Descarcă",
"upload": "Încarcă"
},
"stocks": {
"stocks": "Acțiuni",
@@ -956,16 +950,16 @@
"frigate": {
"cameras": "Camere",
"uptime": "Uptime",
"version": "Version"
"version": "Versiune"
},
"linkwarden": {
"links": "Links",
"collections": "Colecții",
"tags": "Tags"
"tags": "Etichete"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Information",
"information": "Informație",
"warning": "Atenție",
"average": "Medie",
"high": "Înalt",
@@ -986,23 +980,23 @@
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"name": "Nume",
"address": "Adresă",
"last_seen": "Last Seen",
"status": "Status",
"status": "Stare",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"name": "Nume",
"systems": "Sistem",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Status",
"updated": "Updated",
"cpu": "CPU",
"up": "Sus",
"down": "Jos",
"paused": "Pau",
"pending": "În așteptare",
"status": "Stare",
"updated": "Actualizat",
"cpu": "Procesor",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
@@ -1011,10 +1005,10 @@
"apps": "Aplicaţii",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"healthy": "Sănătos",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"missing": "Lipsește",
"suspended": "Suspendat"
},
"spoolman": {
@@ -1027,10 +1021,10 @@
"projects": "Proiecte"
},
"apcups": {
"status": "Status",
"load": "Load",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
"status": "Stare",
"load": "Sarcină",
"bcharge": "Încărcare Baterie",
"timeleft": "Timp rămas"
},
"karakeep": {
"bookmarks": "Marcaje",
@@ -1038,50 +1032,27 @@
"archived": "Arhivat",
"highlights": "Highlights",
"lists": "Liste",
"tags": "Tags"
"tags": "Etichete"
},
"slskd": {
"slskStatus": "Network",
"connected": "Connected",
"disconnected": "Disconnected",
"slskStatus": "Rețea",
"connected": "Conectat",
"disconnected": "Deconectat",
"updateStatus": "Update",
"update_yes": "Available",
"update_no": "Up to Date",
"update_yes": "Disponibile",
"update_no": "Actualizat",
"downloads": "Downloads",
"uploads": "Uploads",
"sharedFiles": "Files"
"sharedFiles": "Fișiere"
},
"jellystat": {
"songs": "Songs",
"movies": "Movies",
"episodes": "Episodes",
"songs": "Melodii",
"movies": "Filme",
"episodes": "Episoade",
"other": "Altele"
},
"checkmk": {
"serviceErrors": "Service 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 устройства",
"lan_users": "LAN пользователи",
"wlan_users": "WLAN пользователи",
"up": "В сети",
"up": "Онлайн",
"down": "Скачивание",
"wait": "Пожалуйста, подождите",
"empty_data": "Статус подсистемы неизвестен"
@@ -69,7 +69,7 @@
"docker": {
"rx": "RX",
"tx": "TX",
"mem": "Память",
"mem": "ОЗУ",
"cpu": "ЦП",
"running": "Запущено",
"offline": "Не в сети",
@@ -93,8 +93,8 @@
"http_status": "HTTP статус",
"error": "Ошибка",
"response": "Ответ",
"down": "Не в сети",
"up": "В сети",
"down": "Офлайн",
"up": "Онлайн",
"not_available": "Недоступен"
},
"emby": {
@@ -112,7 +112,7 @@
"offline_alt": "Не в сети",
"online": "В сети",
"total": "Всего",
"unknown": "Неизвестно"
"unknown": "Неизвестен"
},
"evcc": {
"pv_power": "Прод",
@@ -144,8 +144,8 @@
"uptime": "Время работы",
"maxDown": "Макс. Загрузка",
"maxUp": "Макс. Отдача",
"down": "Не в сети",
"up": "В сети",
"down": "Офлайн",
"up": "Онлайн",
"received": "Получено",
"sent": "Отправлено",
"externalIPAddress": "Внеш. IP",
@@ -168,10 +168,10 @@
"passes": "Пропущено"
},
"tautulli": {
"playing": "Играет",
"transcoding": "Транскодируется",
"playing": "Воспроизводится",
"transcoding": "Перекодирование",
"bitrate": "Битрейт",
"no_active": "Нет активных стримов",
"no_active": "Нет активных потоков",
"plex_connection_error": "Проверка соединения Plex"
},
"omada": {
@@ -193,7 +193,7 @@
"tv": "Сериалы"
},
"sabnzbd": {
"rate": "Rate",
"rate": "Скорость",
"queue": "Очередь",
"timeleft": "Осталось"
},
@@ -243,23 +243,23 @@
"queued": "В очереди",
"series": "Серии",
"queue": "Очередь",
"unknown": "Неизвестно"
"unknown": "Неизвестен"
},
"radarr": {
"wanted": "Требуется",
"wanted": "Розыск",
"missing": "Отсутствует",
"queued": "В очереди",
"movies": "Фильмы",
"queue": "Очередь",
"unknown": "Неизвестно"
"unknown": "Неизвестен"
},
"lidarr": {
"wanted": "Требуется",
"wanted": "Розыск",
"queued": "В очереди",
"artists": "Исполнители"
},
"readarr": {
"wanted": "Требуется",
"wanted": "Розыск",
"queued": "В очереди",
"books": "Книги"
},
@@ -273,12 +273,12 @@
"available": "Доступно"
},
"jellyseerr": {
"pending": "Ожидают",
"pending": "В обработке",
"approved": "Одобрено",
"available": "Доступно"
},
"overseerr": {
"pending": "Ожидают",
"pending": "В обработке",
"processing": "В процессе",
"approved": "Одобрено",
"available": "Доступно"
@@ -359,14 +359,8 @@
"services": "Сервисы",
"middleware": "Связующее ПО"
},
"trilium": {
"version": "Версия",
"notesCount": "Заметки",
"dbSize": "Размер БД",
"unknown": "Неизвестно"
},
"navidrome": {
"nothing_streaming": "Нет активных стримов",
"nothing_streaming": "Нет активных потоков",
"please_wait": "Пожалуйста, подождите"
},
"npm": {
@@ -401,7 +395,7 @@
"numActiveSessions": "Сессии",
"numConnections": "Соединения",
"dataRelayed": "Ретранслировано",
"transferRate": "Rate"
"transferRate": "Скорость"
},
"mastodon": {
"user_count": "Пользователи",
@@ -409,7 +403,7 @@
"domain_count": "Домены"
},
"medusa": {
"wanted": "Требуется",
"wanted": "Розыск",
"queued": "В очереди",
"series": "Серии"
},
@@ -430,7 +424,7 @@
"failedLoginsLast24H": "Неудачные входы (24ч)"
},
"proxmox": {
"mem": "Память",
"mem": "ОЗУ",
"cpu": "ЦП",
"lxc": "LXC",
"vms": "Виртуальные машины"
@@ -442,14 +436,14 @@
"temp": "Температура",
"_temp": "Температура",
"warn": "Предупреждение",
"uptime": "Время работы",
"uptime": "Онлайн",
"total": "Всего",
"free": "Свободно",
"used": "Использовано",
"days": "д",
"hours": "ч",
"days": ней",
"hours": ас",
"crit": "Крит",
"read": "Чтение",
"read": "Прочитано",
"write": "Запись",
"gpu": "ГП",
"mem": "ОЗУ",
@@ -461,7 +455,7 @@
"search": "Поиск",
"custom": "Пользовательский",
"visit": "Посетите",
"url": "URL",
"url": "Ссылка",
"searchsuggestion": "Предложение"
},
"wmo": {
@@ -478,15 +472,15 @@
"48-day": "Туманно",
"48-night": "Туманно",
"51-day": "Легкая морось",
"51-night": "Легкая изморось",
"51-night": "Легкая морось",
"53-day": "Морось",
"53-night": "Изморось",
"53-night": "Морось",
"55-day": "Сильная морось",
"55-night": "Сильная изморось",
"55-night": "Сильная морось",
"56-day": "Легкая морозная морось",
"56-night": "Легкая морозная изморось",
"56-night": "Легкая морозная морось",
"57-day": "Морозная морось",
"57-night": "Морозная изморось",
"57-night": "Морозная морось",
"61-day": "Слабый дождь",
"61-night": "Слабый дождь",
"63-day": "Дождь",
@@ -494,9 +488,9 @@
"65-day": "Сильный дождь",
"65-night": "Сильный дождь",
"66-day": "Град",
"66-night": "Ледяной дождь",
"67-day": "Ледяной дождь",
"67-night": "Ледяной дождь",
"66-night": "Град",
"67-day": "Град",
"67-night": "Град",
"71-day": "Легкий снег",
"71-night": "Легкий снег",
"73-day": "Снег",
@@ -506,15 +500,15 @@
"77-day": "Снежная крупа",
"77-night": "Снежная крупа",
"80-day": "Лёгкие ливни",
"80-night": егкие ливни",
"80-night": ёгкие ливни",
"81-day": "Ливни",
"81-night": "Ливни",
"82-day": "Сильные ливни",
"82-night": "Сильные ливни",
"85-day": "Снегопады",
"85-night": "Снегопад",
"86-day": "Снегопад",
"86-night": "Снегопад",
"85-night": "Снегопады",
"86-day": "Снегопады",
"86-night": "Снегопады",
"95-day": "Гроза",
"95-night": "Гроза",
"96-day": "Гроза с градом",
@@ -529,15 +523,15 @@
"up_to_date": "Последняя версия",
"child_bridges": "Дочерние мосты",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "В сети",
"pending": "Ожидают",
"down": "Не в сети"
"up": "Онлайн",
"pending": "В обработке",
"down": "Офлайн"
},
"healthchecks": {
"new": "Новый",
"up": "В сети",
"up": "Онлайн",
"grace": "Пробный период",
"down": "Не в сети",
"down": "Офлайн",
"paused": "Приостановлено",
"status": "Статус",
"last_ping": "Последний пинг",
@@ -563,7 +557,7 @@
"truenas": {
"load": "Нагрузка системы",
"uptime": "Время работы",
"alerts": "Оповещения"
"alerts": "Предупреждения"
},
"pyload": {
"speed": "Скорость",
@@ -592,7 +586,7 @@
"scrutiny": {
"passed": "Успешно",
"failed": "Провалено",
"unknown": "Неизвестно"
"unknown": "Неизвестен"
},
"paperlessngx": {
"inbox": "Входящие",
@@ -618,7 +612,7 @@
},
"xteve": {
"streams_all": "Все потоки",
"streams_active": "Активные стримы",
"streams_active": "Активные потоки",
"streams_xepg": "Каналы XEPG"
},
"opendtu": {
@@ -628,7 +622,7 @@
"limit": "Лимит"
},
"opnsense": {
"cpu": "ЦП",
"cpu": "Загрузка ЦПУ",
"memory": "Активно ОЗУ",
"wanUpload": "WAN Загрузка",
"wanDownload": "WAN скачивание"
@@ -653,8 +647,8 @@
"load": "Средняя нагрузка",
"memory": "Использование ОЗУ",
"wanStatus": "Статус WAN",
"up": "В сети",
"down": "Не в сети",
"up": "Онлайн",
"down": "Офлайн",
"temp": "Температура",
"disk": "Использование диска",
"wanIP": "WAN IP"
@@ -676,7 +670,7 @@
"down": "Неактивные сайты",
"uptime": "Время работы",
"incident": "Происшествия",
"m": "м"
"m": ин"
},
"atsumeru": {
"series": "Серии",
@@ -697,7 +691,7 @@
"mylar": {
"series": "Серии",
"issues": "Вопросы",
"wanted": "Требуется"
"wanted": "Розыск"
},
"photoprism": {
"albums": "Альбомы",
@@ -707,7 +701,7 @@
},
"fileflows": {
"queue": "Очередь",
"processing": "Обрабатывается",
"processing": "В процессе",
"processed": "Обработано",
"time": "Время"
},
@@ -811,7 +805,7 @@
"name": "Имя",
"map": "Карта",
"currentPlayers": "Текущее количество игроков",
"players": "Игроков",
"players": "Игроки",
"maxPlayers": "Максимум игроков",
"bots": "Ботов",
"ping": "Пинг"
@@ -839,8 +833,8 @@
"openwrt": {
"uptime": "Время работы",
"cpuLoad": "Средняя нагрузка ЦП (5м)",
"up": "В сети",
"down": "Не в сети",
"up": "Онлайн",
"down": "Офлайн",
"bytesTx": "Передано",
"bytesRx": "Получено"
},
@@ -851,12 +845,12 @@
"downDuration": "Длительность падения",
"sitesUp": "Активные сайты",
"sitesDown": "Неактивные сайты",
"paused": "Приостановлен",
"paused": "Приостановлено",
"notyetchecked": "Ещё не проверено",
"up": "В сети",
"up": "Онлайн",
"seemsdown": "Кажется упал :с",
"down": "Не в сети",
"unknown": "Неизвестно"
"down": "Офлайн",
"unknown": "Неизвестен"
},
"calendar": {
"inCinemas": "В кинотеатрах",
@@ -892,7 +886,7 @@
},
"gitea": {
"notifications": "Уведомления",
"issues": "Проблемы",
"issues": "Вопросы",
"pulls": "Запросы на слияние (Pull Request)",
"repositories": "Репозитории"
},
@@ -926,13 +920,13 @@
"totalValue": "Общая стоимость"
},
"crowdsec": {
"alerts": "Оповещения",
"alerts": "Предупреждения",
"bans": "Блокировки"
},
"wgeasy": {
"connected": "Подключено",
"enabled": "Включено",
"disabled": "Отключено",
"disabled": "Выключено",
"total": "Всего"
},
"swagdashboard": {
@@ -988,7 +982,7 @@
"headscale": {
"name": "Имя",
"address": "Адрес",
"last_seen": "Был в посл. раз",
"last_seen": "Последнее посещение",
"status": "Статус",
"online": "В сети",
"offline": "Не в сети"
@@ -996,14 +990,14 @@
"beszel": {
"name": "Имя",
"systems": "Системы",
"up": "В сети",
"down": "Не в сети",
"paused": "На паузе",
"pending": "Ожидают",
"up": "Онлайн",
"down": "Офлайн",
"paused": "Приостановлено",
"pending": "В обработке",
"status": "Статус",
"updated": "Обновлено",
"updated": "Обновленно",
"cpu": "ЦП",
"memory": "Память",
"memory": "ОЗУ",
"disk": "Диск",
"network": "Сеть"
},
@@ -1011,24 +1005,24 @@
"apps": "Приложения",
"synced": "Синхронизированные",
"outOfSync": "Не синхронизированные",
"healthy": "Healthy",
"healthy": "Здоровый",
"degraded": "Деградированные",
"progressing": "Выполняются",
"missing": "Отсутствует",
"suspended": "Приостановленные"
},
"spoolman": {
"loading": "Идет загрузка"
"loading": "Загрузка"
},
"gitlab": {
"groups": "Группы",
"issues": "Issues",
"issues": "Вопросы",
"merges": "Мердж-реквесты",
"projects": "Проекты"
},
"apcups": {
"status": "Статус",
"load": "Нагрузка",
"load": "Загрузка",
"bcharge": "Заряд батареи",
"timeleft": "Осталось"
},
@@ -1046,7 +1040,7 @@
"disconnected": "Отключено",
"updateStatus": "Обновление",
"update_yes": "Доступно",
"update_no": "Актуально",
"update_no": "Последняя версия",
"downloads": "Скачивания",
"uploads": "Загрузки",
"sharedFiles": "Файлов"
@@ -1055,33 +1049,10 @@
"songs": "Песни",
"movies": "Фильмы",
"episodes": "Эпизоды",
"other": "Другое"
"other": "Другой"
},
"checkmk": {
"serviceErrors": "Service 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": "Следующая оплата"
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -25,7 +25,7 @@
"api_error": "API Грешка",
"information": "Информација",
"status": "Стање",
"url": "URL адреса",
"url": "УРЛ адреса",
"raw_error": "Оригинална грешка",
"response_data": "Подаци о одговору"
},
@@ -359,12 +359,6 @@
"services": "Сервиси",
"middleware": "Мидлвер"
},
"trilium": {
"version": "Верзија",
"notesCount": "Белешке",
"dbSize": "Величина базе података",
"unknown": "Непознато"
},
"navidrome": {
"nothing_streaming": "Нема активних стримова",
"please_wait": "Молим сачекајте"
@@ -572,7 +566,7 @@
"total": "Укупно"
},
"gluetun": {
"public_ip": "Јавна IP адреса",
"public_ip": "Јавна ИП адреса",
"region": "Регион",
"country": "Држава",
"port_forwarded": "Порт прослеђен"
@@ -1060,28 +1054,5 @@
"checkmk": {
"serviceErrors": "Проблеми са услугом",
"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",
"up": "UP",
"down": "MOTTAGIT",
"wait": "Please wait",
"wait": "Vänligen vänta",
"empty_data": "Subsystem status unknown"
},
"docker": {
@@ -168,10 +168,10 @@
"passes": "Passes"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"playing": "Spelar",
"transcoding": "Omkodning",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"no_active": "Inga aktiva strömmar",
"plex_connection_error": "Check Plex Connection"
},
"omada": {
@@ -193,7 +193,7 @@
"tv": "TV-serier"
},
"sabnzbd": {
"rate": "Rate",
"rate": "Hastighet",
"queue": "Kö",
"timeleft": "Tid kvar"
},
@@ -242,25 +242,25 @@
"wanted": "Eftersöker",
"queued": "I kö",
"series": "Series",
"queue": "Queue",
"queue": "",
"unknown": "Unknown"
},
"radarr": {
"wanted": "Wanted",
"wanted": "Eftersöker",
"missing": "Missing",
"queued": "Queued",
"queued": "I kö",
"movies": "Movies",
"queue": "Queue",
"queue": "",
"unknown": "Unknown"
},
"lidarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Eftersöker",
"queued": "I kö",
"artists": "Artists"
},
"readarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Eftersöker",
"queued": "I kö",
"books": "Böcker"
},
"bazarr": {
@@ -273,15 +273,15 @@
"available": "Tillgänglig"
},
"jellyseerr": {
"pending": "Pending",
"approved": "Approved",
"available": "Available"
"pending": "Avvaktar",
"approved": "Godkända",
"available": "Tillgänglig"
},
"overseerr": {
"pending": "Pending",
"pending": "Avvaktar",
"processing": "Processing",
"approved": "Approved",
"available": "Available"
"approved": "Godkända",
"available": "Tillgänglig"
},
"netalertx": {
"total": "Total",
@@ -296,8 +296,8 @@
"gravity": "Gravity"
},
"adguard": {
"queries": "Queries",
"blocked": "Blocked",
"queries": "Förfrågningar",
"blocked": "Blockerad",
"filtered": "Filtrerad",
"latency": "Svarstid"
},
@@ -312,7 +312,7 @@
"total": "Total"
},
"suwayomi": {
"download": "Downloaded",
"download": "Nedladdat",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
@@ -336,7 +336,7 @@
"ago": "{{value}} Ago"
},
"technitium": {
"totalQueries": "Queries",
"totalQueries": "Förfrågningar",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blocked",
"totalBlocked": "Blockerad",
"totalDropped": "Dropped",
"totalClients": "Klienter"
},
"tdarr": {
"queue": "Queue",
"queue": "",
"processed": "Processed",
"errored": "Errored",
"saved": "Saved"
@@ -359,14 +359,8 @@
"services": "Tjänster",
"middleware": "Middleware"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"nothing_streaming": "Inga aktiva strömmar",
"please_wait": "Please Wait"
},
"npm": {
@@ -383,13 +377,13 @@
},
"gotify": {
"apps": "Program",
"clients": "Clients",
"clients": "Klienter",
"messages": "Meddelande"
},
"prowlarr": {
"enableIndexers": "Indexerare",
"numberOfGrabs": "Hämtningar",
"numberOfQueries": "Queries",
"numberOfQueries": "Förfrågningar",
"numberOfFailGrabs": "Misslyckade hämtningar",
"numberOfFailQueries": "Misslyckade hämtningar"
},
@@ -401,16 +395,16 @@
"numActiveSessions": "Sessioner",
"numConnections": "Anslutningar",
"dataRelayed": "Relayed",
"transferRate": "Rate"
"transferRate": "Hastighet"
},
"mastodon": {
"user_count": "Users",
"user_count": "Användare",
"status_count": "Posts",
"domain_count": "Domains"
},
"medusa": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "Eftersöker",
"queued": "I kö",
"series": "Series"
},
"minecraft": {
@@ -425,7 +419,7 @@
"unread": "Unread"
},
"authentik": {
"users": "Users",
"users": "Användare",
"loginsLast24H": "Inloggningar (24h)",
"failedLoginsLast24H": "Misslyckade inloggningar (24h)"
},
@@ -437,15 +431,15 @@
},
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"load": "Laddar",
"wait": "Vänligen vänta",
"temp": "TEMP",
"_temp": "Temp",
"warn": "Warn",
"uptime": "UP",
"total": "Total",
"free": "Free",
"used": "Used",
"free": "Ledigt",
"used": "Använt",
"days": "d",
"hours": "h",
"crit": "Crit",
@@ -530,7 +524,7 @@
"child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "Up",
"pending": "Pending",
"pending": "Avvaktar",
"down": "Down"
},
"healthchecks": {
@@ -549,13 +543,13 @@
"containers_failed": "Failed"
},
"autobrr": {
"approvedPushes": "Approved",
"approvedPushes": "Godkända",
"rejectedPushes": "Rejected",
"filters": "Filters",
"indexers": "Indexers"
"indexers": "Indexerare"
},
"tubearchivist": {
"downloads": "Queue",
"downloads": "",
"videos": "Videos",
"channels": "Channels",
"playlists": "Playlists"
@@ -567,8 +561,8 @@
},
"pyload": {
"speed": "Speed",
"active": "Active",
"queue": "Queue",
"active": "Aktiva",
"queue": "",
"total": "Total"
},
"gluetun": {
@@ -618,7 +612,7 @@
},
"xteve": {
"streams_all": "All Streams",
"streams_active": "Active Streams",
"streams_active": "Aktiva strömmar",
"streams_xepg": "XEPG Channels"
},
"opendtu": {
@@ -666,7 +660,7 @@
"memory_usage": "Memory"
},
"immich": {
"users": "Users",
"users": "Användare",
"photos": "Photos",
"videos": "Videos",
"storage": "Storage"
@@ -687,17 +681,17 @@
"komga": {
"libraries": "Libraries",
"series": "Series",
"books": "Books"
"books": "Böcker"
},
"diskstation": {
"days": "Days",
"days": "Dagar",
"uptime": "Uptime",
"volumeAvailable": "Available"
"volumeAvailable": "Tillgänglig"
},
"mylar": {
"series": "Series",
"issues": "Issues",
"wanted": "Wanted"
"wanted": "Eftersöker"
},
"photoprism": {
"albums": "Albums",
@@ -706,7 +700,7 @@
"people": "People"
},
"fileflows": {
"queue": "Queue",
"queue": "",
"processing": "Processing",
"processed": "Processed",
"time": "Time"
@@ -762,7 +756,7 @@
},
"audiobookshelf": {
"podcasts": "Podcasts",
"books": "Books",
"books": "Böcker",
"podcastsDuration": "Duration",
"booksDuration": "Duration"
},
@@ -776,14 +770,14 @@
"updates": "Updates"
},
"calibreweb": {
"books": "Books",
"books": "Böcker",
"authors": "Authors",
"categories": "Categories",
"series": "Series"
},
"jdownloader": {
"downloadCount": "Queue",
"downloadBytesRemaining": "Remaining",
"downloadCount": "",
"downloadBytesRemaining": "Återstående",
"downloadTotalBytes": "Size",
"downloadSpeed": "Speed"
},
@@ -802,7 +796,7 @@
"inProgress": "In Progress",
"totalPrs": "Total PRs",
"myPrs": "My PRs",
"approved": "Approved"
"approved": "Godkända"
},
"gamedig": {
"status": "Status",
@@ -824,7 +818,7 @@
},
"mealie": {
"recipes": "Recipes",
"users": "Users",
"users": "Användare",
"categories": "Categories",
"tags": "Tags"
},
@@ -832,7 +826,7 @@
"downloading": "Downloading",
"total": "Total",
"running": "Running",
"stopped": "Stopped",
"stopped": "Stoppade",
"passed": "Passed",
"failed": "Failed"
},
@@ -913,7 +907,7 @@
"oCount": "O Count"
},
"tandoor": {
"users": "Users",
"users": "Användare",
"recipes": "Recipes",
"keywords": "Keywords"
},
@@ -922,7 +916,7 @@
"totalWithWarranty": "With Warranty",
"locations": "Locations",
"labels": "Labels",
"users": "Users",
"users": "Användare",
"totalValue": "Total Value"
},
"crowdsec": {
@@ -931,8 +925,8 @@
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"enabled": "Aktiverad",
"disabled": "Inaktiverad",
"total": "Total"
},
"swagdashboard": {
@@ -999,7 +993,7 @@
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"pending": "Avvaktar",
"status": "Status",
"updated": "Updated",
"cpu": "CPU",
@@ -1028,9 +1022,9 @@
},
"apcups": {
"status": "Status",
"load": "Load",
"load": "Laddar",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
"timeleft": "Tid kvar"
},
"karakeep": {
"bookmarks": "Bookmarks",
@@ -1045,7 +1039,7 @@
"connected": "Connected",
"disconnected": "Disconnected",
"updateStatus": "Update",
"update_yes": "Available",
"update_yes": "Tillgänglig",
"update_no": "Up to Date",
"downloads": "Downloads",
"uploads": "Uploads",
@@ -1054,34 +1048,11 @@
"jellystat": {
"songs": "Songs",
"movies": "Movies",
"episodes": "Episodes",
"episodes": "Avsnitt",
"other": "Other"
},
"checkmk": {
"serviceErrors": "Service 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 వినియోగదారులు",
"up": "UP",
"down": "డౌన్",
"wait": "Please wait",
"wait": "దయచేసి వేచి ఉండండి",
"empty_data": "Subsystem status unknown"
},
"docker": {
"rx": "RX",
"tx": "TX",
"mem": "MEM",
"cpu": "CPU",
"cpu": "సీపియూ",
"running": "Running",
"offline": "ఆఫ్‌లైన్",
"error": "Error",
@@ -108,10 +108,10 @@
"songs": "Songs"
},
"esphome": {
"offline": "Offline",
"offline_alt": "Offline",
"offline": "ఆఫ్‌లైన్",
"offline_alt": "ఆఫ్‌లైన్",
"online": "Online",
"total": "Total",
"total": "మొత్తం",
"unknown": "Unknown"
},
"evcc": {
@@ -133,7 +133,7 @@
"unread": "Unread"
},
"fritzbox": {
"connectionStatus": "Status",
"connectionStatus": "హోదా",
"connectionStatusUnconfigured": "Unconfigured",
"connectionStatusConnecting": "Connecting",
"connectionStatusAuthenticating": "Authenticating",
@@ -168,10 +168,10 @@
"passes": "Passes"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"playing": "ఆడుతున్నారు",
"transcoding": "ట్రాన్స్‌కోడింగ్",
"bitrate": "బిట్రేట్",
"no_active": "యాక్టివ్ స్ట్రీమ్‌లు లేవు",
"plex_connection_error": "Check Plex Connection"
},
"omada": {
@@ -193,7 +193,7 @@
"tv": "దూరదర్శిని కార్యక్రమాలు"
},
"sabnzbd": {
"rate": "Rate",
"rate": "రేట్",
"queue": "వరుస",
"timeleft": "మిగిలి వున్న సమయం"
},
@@ -242,25 +242,25 @@
"wanted": "కావలెను",
"queued": "క్యూయూఎడ్",
"series": "Series",
"queue": "Queue",
"queue": "వరుస",
"unknown": "Unknown"
},
"radarr": {
"wanted": "Wanted",
"wanted": "కావలెను",
"missing": "మిస్సింగ్",
"queued": "Queued",
"queued": "క్యూయూఎడ్",
"movies": "Movies",
"queue": "Queue",
"queue": "వరుస",
"unknown": "Unknown"
},
"lidarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "కావలెను",
"queued": "క్యూయూఎడ్",
"artists": "Artists"
},
"readarr": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "కావలెను",
"queued": "క్యూయూఎడ్",
"books": "పుస్తకాలు"
},
"bazarr": {
@@ -273,18 +273,18 @@
"available": "అందుబాటులో వున్నవి"
},
"jellyseerr": {
"pending": "Pending",
"approved": "Approved",
"available": "Available"
"pending": "పెండింగ్",
"approved": "ఆమోదించబడింది",
"available": "అందుబాటులో వున్నవి"
},
"overseerr": {
"pending": "Pending",
"pending": "పెండింగ్",
"processing": "Processing",
"approved": "Approved",
"available": "Available"
"approved": "ఆమోదించబడింది",
"available": "అందుబాటులో వున్నవి"
},
"netalertx": {
"total": "Total",
"total": "మొత్తం",
"connected": "Connected",
"new_devices": "New Devices",
"down_alerts": "Down Alerts"
@@ -296,8 +296,8 @@
"gravity": "గురుత్వాకర్షణ"
},
"adguard": {
"queries": "Queries",
"blocked": "Blocked",
"queries": "ప్రశ్నలు",
"blocked": "నిరోధించబడింది",
"filtered": "ఫిల్టర్ చేయబడింది",
"latency": "జాప్యం"
},
@@ -309,10 +309,10 @@
"portainer": {
"running": "Running",
"stopped": "ఆగిపోయినవి",
"total": "Total"
"total": "మొత్తం"
},
"suwayomi": {
"download": "Downloaded",
"download": "డౌన్‌లోడ్ చేయబడింది",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
@@ -336,7 +336,7 @@
"ago": "{{value}} Ago"
},
"technitium": {
"totalQueries": "Queries",
"totalQueries": "ప్రశ్నలు",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
@@ -344,12 +344,12 @@
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blocked",
"totalBlocked": "నిరోధించబడింది",
"totalDropped": "Dropped",
"totalClients": "ఖాతాదారులు"
},
"tdarr": {
"queue": "Queue",
"queue": "వరుస",
"processed": "Processed",
"errored": "Errored",
"saved": "Saved"
@@ -359,20 +359,14 @@
"services": "సేవలు",
"middleware": "మిడిల్వేర్"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"nothing_streaming": "యాక్టివ్ స్ట్రీమ్‌లు లేవు",
"please_wait": "Please Wait"
},
"npm": {
"enabled": "ప్రారంభించబడింది",
"disabled": "డిసేబ్లెడ్",
"total": "Total"
"total": "మొత్తం"
},
"coinmarketcap": {
"configure": "ట్రాక్ చేయడానికి ఒకటి లేదా అంతకంటే ఎక్కువ క్రిప్టో కరెన్సీలను కాన్ఫిగర్ చేయండి",
@@ -383,13 +377,13 @@
},
"gotify": {
"apps": "అప్లికేషన్లు",
"clients": "Clients",
"clients": "ఖాతాదారులు",
"messages": "సందేశాలు"
},
"prowlarr": {
"enableIndexers": "సూచికలు",
"numberOfGrabs": "గ్రాబ్స్",
"numberOfQueries": "Queries",
"numberOfQueries": "ప్రశ్నలు",
"numberOfFailGrabs": "ఫెయిల్ గ్రాబ్స్",
"numberOfFailQueries": "విఫలమైన ప్రశ్నలు"
},
@@ -401,51 +395,51 @@
"numActiveSessions": "సెషన్స్",
"numConnections": "కనెక్షన్లు",
"dataRelayed": "రెలయెడఁ",
"transferRate": "Rate"
"transferRate": "రేట్"
},
"mastodon": {
"user_count": "Users",
"user_count": "వినియోగదారులు",
"status_count": "పోస్ట్‌లు",
"domain_count": "డొమైన్‌లు"
},
"medusa": {
"wanted": "Wanted",
"queued": "Queued",
"wanted": "కావలెను",
"queued": "క్యూయూఎడ్",
"series": "Series"
},
"minecraft": {
"players": "Players",
"version": "Version",
"status": "Status",
"status": "హోదా",
"up": "Online",
"down": "Offline"
"down": "ఆఫ్‌లైన్"
},
"miniflux": {
"read": "Read",
"unread": "Unread"
},
"authentik": {
"users": "Users",
"users": "వినియోగదారులు",
"loginsLast24H": "లాగిన్లు (24గ)",
"failedLoginsLast24H": "విఫలమైన లాగిన్‌లు (24గ)"
},
"proxmox": {
"mem": "MEM",
"cpu": "CPU",
"cpu": "సీపియూ",
"lxc": "LXC",
"vms": "విఎంలు"
},
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"cpu": "సీపియూ",
"load": "లోడ్",
"wait": "దయచేసి వేచి ఉండండి",
"temp": "TEMP",
"_temp": "Temp",
"warn": "Warn",
"uptime": "UP",
"total": "Total",
"free": "Free",
"used": "Used",
"total": "మొత్తం",
"free": "మిగిలింది",
"used": "ఉపయోగించబడిన",
"days": "d",
"hours": "h",
"crit": "Crit",
@@ -470,57 +464,57 @@
"1-day": "ప్రధానంగా ఎండ",
"1-night": "ప్రధానంగా స్పష్టంగా",
"2-day": "పాక్షికంగా మేఘావృతమై ఉంటుంది",
"2-night": "Partly Cloudy",
"2-night": "పాక్షికంగా మేఘావృతమై ఉంటుంది",
"3-day": "మేఘావృతం",
"3-night": "Cloudy",
"3-night": "మేఘావృతం",
"45-day": "పొగమంచు",
"45-night": "Foggy",
"48-day": "Foggy",
"48-night": "Foggy",
"45-night": "పొగమంచు",
"48-day": "పొగమంచు",
"48-night": "పొగమంచు",
"51-day": "తేలికపాటి చినుకులు",
"51-night": "Light Drizzle",
"51-night": "తేలికపాటి చినుకులు",
"53-day": "చినుకులు",
"53-night": "Drizzle",
"53-night": "చినుకులు",
"55-day": "భారీ చినుకులు",
"55-night": "Heavy Drizzle",
"55-night": "భారీ చినుకులు",
"56-day": "తేలికపాటి గడ్డకట్టే చినుకులు",
"56-night": "Light Freezing Drizzle",
"56-night": "తేలికపాటి గడ్డకట్టే చినుకులు",
"57-day": "గడ్డకట్టే చినుకులు",
"57-night": "Freezing Drizzle",
"57-night": "గడ్డకట్టే చినుకులు",
"61-day": "తేలికపాటి వర్షం",
"61-night": "Light Rain",
"61-night": "తేలికపాటి వర్షం",
"63-day": "వర్షం",
"63-night": "Rain",
"63-night": "వర్షం",
"65-day": "భారీవర్షం",
"65-night": "Heavy Rain",
"65-night": "భారీవర్షం",
"66-day": "గడ్డకట్టే వర్షం",
"66-night": "Freezing Rain",
"67-day": "Freezing Rain",
"67-night": "Freezing Rain",
"66-night": "గడ్డకట్టే వర్షం",
"67-day": "గడ్డకట్టే వర్షం",
"67-night": "గడ్డకట్టే వర్షం",
"71-day": "తేలికపాటి మంచు",
"71-night": "Light Snow",
"71-night": "తేలికపాటి మంచు",
"73-day": "మంచు",
"73-night": "Snow",
"73-night": "మంచు",
"75-day": "భారీ మంచు",
"75-night": "Heavy Snow",
"75-night": "భారీ మంచు",
"77-day": "మంచు గింజలు",
"77-night": "Snow Grains",
"77-night": "మంచు గింజలు",
"80-day": "తేలికపాటి జల్లులు",
"80-night": "Light Showers",
"80-night": "తేలికపాటి జల్లులు",
"81-day": "జల్లులు",
"81-night": "Showers",
"81-night": "జల్లులు",
"82-day": "భారీ వర్షాలు",
"82-night": "Heavy Showers",
"82-night": "భారీ వర్షాలు",
"85-day": "మంచు జల్లులు",
"85-night": "Snow Showers",
"86-day": "Snow Showers",
"86-night": "Snow Showers",
"85-night": "మంచు జల్లులు",
"86-day": "మంచు జల్లులు",
"86-night": "మంచు జల్లులు",
"95-day": "ఉరుము",
"95-night": "Thunderstorm",
"95-night": "ఉరుము",
"96-day": "వడగళ్లతో కూడిన ఉరుములతో కూడిన వర్షం",
"96-night": "Thunderstorm With Hail",
"99-day": "Thunderstorm With Hail",
"99-night": "Thunderstorm With Hail"
"96-night": "వడగళ్లతో కూడిన ఉరుములతో కూడిన వర్షం",
"99-day": "వడగళ్లతో కూడిన ఉరుములతో కూడిన వర్షం",
"99-night": "వడగళ్లతో కూడిన ఉరుములతో కూడిన వర్షం"
},
"homebridge": {
"available_update": "వ్యవస్థ",
@@ -530,7 +524,7 @@
"child_bridges": "పిల్ల వంతెనలు",
"child_bridges_status": "{{ok}}/{{total}}",
"up": "Up",
"pending": "Pending",
"pending": "పెండింగ్",
"down": "Down"
},
"healthchecks": {
@@ -539,7 +533,7 @@
"grace": "In Grace Period",
"down": "Down",
"paused": "Paused",
"status": "Status",
"status": "హోదా",
"last_ping": "Last Ping",
"never": "No pings yet"
},
@@ -549,13 +543,13 @@
"containers_failed": "విఫలమయ్యారు"
},
"autobrr": {
"approvedPushes": "Approved",
"approvedPushes": "ఆమోదించబడింది",
"rejectedPushes": "తిరస్కరించారు",
"filters": "ఫిల్టర్లు",
"indexers": "Indexers"
"indexers": "సూచికలు"
},
"tubearchivist": {
"downloads": "Queue",
"downloads": "వరుస",
"videos": "Videos",
"channels": "Channels",
"playlists": "Playlists"
@@ -567,9 +561,9 @@
},
"pyload": {
"speed": "Speed",
"active": "Active",
"queue": "Queue",
"total": "Total"
"active": "చురుకుగా",
"queue": "వరుస",
"total": "మొత్తం"
},
"gluetun": {
"public_ip": "Public IP",
@@ -586,17 +580,17 @@
"signalStrength": "Strength",
"signalQuality": "Quality",
"symbolQuality": "Quality",
"networkRate": "Bitrate",
"networkRate": "బిట్రేట్",
"clientIP": "Client"
},
"scrutiny": {
"passed": "Passed",
"failed": "Failed",
"failed": "విఫలమయ్యారు",
"unknown": "Unknown"
},
"paperlessngx": {
"inbox": "Inbox",
"total": "Total"
"total": "మొత్తం"
},
"peanut": {
"battery_charge": "Battery Charge",
@@ -618,7 +612,7 @@
},
"xteve": {
"streams_all": "All Streams",
"streams_active": "Active Streams",
"streams_active": "యాక్టివ్ స్ట్రీమ్‌లు",
"streams_xepg": "XEPG Channels"
},
"opendtu": {
@@ -640,14 +634,14 @@
"layers": "Layers"
},
"octoprint": {
"printer_state": "Status",
"printer_state": "హోదా",
"temp_tool": "Tool temp",
"temp_bed": "Bed temp",
"job_completion": "Completion"
},
"cloudflared": {
"origin_ip": "Origin IP",
"status": "Status"
"status": "హోదా"
},
"pfsense": {
"load": "Load Avg",
@@ -662,11 +656,11 @@
"proxmoxbackupserver": {
"datastore_usage": "Datastore",
"failed_tasks_24h": "Failed Tasks 24h",
"cpu_usage": "CPU",
"cpu_usage": "సీపియూ",
"memory_usage": "Memory"
},
"immich": {
"users": "Users",
"users": "వినియోగదారులు",
"photos": "Photos",
"videos": "Videos",
"storage": "Storage"
@@ -687,17 +681,17 @@
"komga": {
"libraries": "Libraries",
"series": "Series",
"books": "Books"
"books": "పుస్తకాలు"
},
"diskstation": {
"days": "Days",
"days": "రోజులు",
"uptime": "Uptime",
"volumeAvailable": "Available"
"volumeAvailable": "అందుబాటులో వున్నవి"
},
"mylar": {
"series": "Series",
"issues": "Issues",
"wanted": "Wanted"
"wanted": "కావలెను"
},
"photoprism": {
"albums": "Albums",
@@ -706,7 +700,7 @@
"people": "People"
},
"fileflows": {
"queue": "Queue",
"queue": "వరుస",
"processing": "Processing",
"processed": "Processed",
"time": "Time"
@@ -730,11 +724,11 @@
"numshares": "Shared Items"
},
"kopia": {
"status": "Status",
"status": "హోదా",
"size": "Size",
"lastrun": "Last Run",
"nextrun": "Next Run",
"failed": "Failed"
"failed": "విఫలమయ్యారు"
},
"unmanic": {
"active_workers": "Active Workers",
@@ -762,7 +756,7 @@
},
"audiobookshelf": {
"podcasts": "Podcasts",
"books": "Books",
"books": "పుస్తకాలు",
"podcastsDuration": "Duration",
"booksDuration": "Duration"
},
@@ -773,17 +767,17 @@
},
"whatsupdocker": {
"monitoring": "Monitoring",
"updates": "Updates"
"updates": "నవీకరణలు"
},
"calibreweb": {
"books": "Books",
"books": "పుస్తకాలు",
"authors": "Authors",
"categories": "Categories",
"series": "Series"
},
"jdownloader": {
"downloadCount": "Queue",
"downloadBytesRemaining": "Remaining",
"downloadCount": "వరుస",
"downloadBytesRemaining": "మిగిలింది",
"downloadTotalBytes": "Size",
"downloadSpeed": "Speed"
},
@@ -793,21 +787,21 @@
},
"azuredevops": {
"result": "Result",
"status": "Status",
"status": "హోదా",
"buildId": "Build ID",
"succeeded": "Succeeded",
"notStarted": "Not Started",
"failed": "Failed",
"failed": "విఫలమయ్యారు",
"canceled": "Canceled",
"inProgress": "In Progress",
"totalPrs": "Total PRs",
"myPrs": "My PRs",
"approved": "Approved"
"approved": "ఆమోదించబడింది"
},
"gamedig": {
"status": "Status",
"status": "హోదా",
"online": "Online",
"offline": "Offline",
"offline": "ఆఫ్‌లైన్",
"name": "Name",
"map": "Map",
"currentPlayers": "Current players",
@@ -824,17 +818,17 @@
},
"mealie": {
"recipes": "Recipes",
"users": "Users",
"users": "వినియోగదారులు",
"categories": "Categories",
"tags": "Tags"
},
"openmediavault": {
"downloading": "Downloading",
"total": "Total",
"total": "మొత్తం",
"running": "Running",
"stopped": "Stopped",
"stopped": "ఆగిపోయినవి",
"passed": "Passed",
"failed": "Failed"
"failed": "విఫలమయ్యారు"
},
"openwrt": {
"uptime": "Uptime",
@@ -845,7 +839,7 @@
"bytesRx": "Received"
},
"uptimerobot": {
"status": "Status",
"status": "హోదా",
"uptime": "Uptime",
"lastDown": "Last Downtime",
"downDuration": "Downtime Duration",
@@ -875,7 +869,7 @@
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domains",
"domains": "డొమైన్‌లు",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
@@ -913,7 +907,7 @@
"oCount": "O Count"
},
"tandoor": {
"users": "Users",
"users": "వినియోగదారులు",
"recipes": "Recipes",
"keywords": "Keywords"
},
@@ -922,7 +916,7 @@
"totalWithWarranty": "With Warranty",
"locations": "Locations",
"labels": "Labels",
"users": "Users",
"users": "వినియోగదారులు",
"totalValue": "Total Value"
},
"crowdsec": {
@@ -931,9 +925,9 @@
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"enabled": "ప్రారంభించబడింది",
"disabled": "డిసేబ్లెడ్",
"total": "మొత్తం"
},
"swagdashboard": {
"proxied": "Proxied",
@@ -989,9 +983,9 @@
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"status": "హోదా",
"online": "Online",
"offline": "Offline"
"offline": "ఆఫ్‌లైన్"
},
"beszel": {
"name": "Name",
@@ -999,10 +993,10 @@
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Status",
"updated": "Updated",
"cpu": "CPU",
"pending": "పెండింగ్",
"status": "హోదా",
"updated": "నవీకరించబడింది",
"cpu": "సీపియూ",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
@@ -1014,7 +1008,7 @@
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"missing": "మిస్సింగ్",
"suspended": "Suspended"
},
"spoolman": {
@@ -1027,10 +1021,10 @@
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Load",
"status": "హోదా",
"load": "లోడ్",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
"timeleft": "మిగిలి వున్న సమయం"
},
"karakeep": {
"bookmarks": "Bookmarks",
@@ -1045,8 +1039,8 @@
"connected": "Connected",
"disconnected": "Disconnected",
"updateStatus": "Update",
"update_yes": "Available",
"update_no": "Up to Date",
"update_yes": "అందుబాటులో వున్నవి",
"update_no": "తాజాగా",
"downloads": "Downloads",
"uploads": "Uploads",
"sharedFiles": "Files"
@@ -1060,28 +1054,5 @@
"checkmk": {
"serviceErrors": "Service 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",
"up": "UP",
"down": "DOWN",
"wait": "Please wait",
"wait": "โปรดรอ",
"empty_data": "Subsystem status unknown"
},
"docker": {
"rx": "RX",
"tx": "TX",
"mem": "MEM",
"cpu": "CPU",
"mem": "เมม",
"cpu": "ซีพียู",
"running": "Running",
"offline": "ออฟไลน์",
"error": "ข้อผิดพลาด",
@@ -83,7 +83,7 @@
"partial": "Partial"
},
"ping": {
"error": "Error",
"error": "ข้อผิดพลาด",
"ping": "ปิง",
"down": "Down",
"up": "Up",
@@ -91,7 +91,7 @@
},
"siteMonitor": {
"http_status": "HTTP status",
"error": "Error",
"error": "ข้อผิดพลาด",
"response": "Response",
"down": "Down",
"up": "Up",
@@ -108,11 +108,11 @@
"songs": "Songs"
},
"esphome": {
"offline": "Offline",
"offline_alt": "Offline",
"offline": "ออฟไลน์",
"offline_alt": "ออฟไลน์",
"online": "ออนไลน์",
"total": "Total",
"unknown": "Unknown"
"total": "ทั้งหมด",
"unknown": "ไม่ทราบ"
},
"evcc": {
"pv_power": "Production",
@@ -133,7 +133,7 @@
"unread": "ยังไม่ได้อ่าน"
},
"fritzbox": {
"connectionStatus": "Status",
"connectionStatus": "สถานะ",
"connectionStatusUnconfigured": "ยังไม่ได้กำหนดค่า",
"connectionStatusConnecting": "กำลังเชื่อมต่อ",
"connectionStatusAuthenticating": "Authenticating",
@@ -168,10 +168,10 @@
"passes": "Passes"
},
"tautulli": {
"playing": "Playing",
"transcoding": "Transcoding",
"bitrate": "Bitrate",
"no_active": "No Active Streams",
"playing": "กำลังเล่น",
"transcoding": "การแปลงรหัส",
"bitrate": "อัตราบิต",
"no_active": "ไม่มีสตรีมที่ใช้งานอยู่",
"plex_connection_error": "Check Plex Connection"
},
"omada": {
@@ -199,18 +199,18 @@
},
"rutorrent": {
"active": "Active",
"upload": "Upload",
"download": "Download"
"upload": "อัพโหลด",
"download": "ดาวน์โหลด"
},
"transmission": {
"download": "Download",
"upload": "Upload",
"download": "ดาวน์โหลด",
"upload": "อัพโหลด",
"leech": "Leech",
"seed": "Seed"
},
"qbittorrent": {
"download": "Download",
"upload": "Upload",
"download": "ดาวน์โหลด",
"upload": "อัพโหลด",
"leech": "Leech",
"seed": "Seed"
},
@@ -223,8 +223,8 @@
"invalid": "Invalid"
},
"deluge": {
"download": "Download",
"upload": "Upload",
"download": "ดาวน์โหลด",
"upload": "อัพโหลด",
"leech": "Leech",
"seed": "Seed"
},
@@ -233,8 +233,8 @@
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": {
"download": "Download",
"upload": "Upload",
"download": "ดาวน์โหลด",
"upload": "อัพโหลด",
"leech": "Leech",
"seed": "Seed"
},
@@ -243,7 +243,7 @@
"queued": "Queued",
"series": "Series",
"queue": "Queue",
"unknown": "Unknown"
"unknown": "ไม่ทราบ"
},
"radarr": {
"wanted": "Wanted",
@@ -251,7 +251,7 @@
"queued": "Queued",
"movies": "Movies",
"queue": "Queue",
"unknown": "Unknown"
"unknown": "ไม่ทราบ"
},
"lidarr": {
"wanted": "Wanted",
@@ -284,7 +284,7 @@
"available": "Available"
},
"netalertx": {
"total": "Total",
"total": "ทั้งหมด",
"connected": "Connected",
"new_devices": "New Devices",
"down_alerts": "Down Alerts"
@@ -302,20 +302,20 @@
"latency": "Latency"
},
"speedtest": {
"upload": "Upload",
"download": "Download",
"ping": "Ping"
"upload": "อัพโหลด",
"download": "ดาวน์โหลด",
"ping": "ปิง"
},
"portainer": {
"running": "Running",
"stopped": "Stopped",
"total": "Total"
"total": "ทั้งหมด"
},
"suwayomi": {
"download": "Downloaded",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"unread": "ยังไม่ได้อ่าน",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
@@ -359,20 +359,14 @@
"services": "Services",
"middleware": "Middleware"
},
"trilium": {
"version": "Version",
"notesCount": "Notes",
"dbSize": "Database Size",
"unknown": "Unknown"
},
"navidrome": {
"nothing_streaming": "No Active Streams",
"nothing_streaming": "ไม่มีสตรีมที่ใช้งานอยู่",
"please_wait": "Please Wait"
},
"npm": {
"enabled": "เปิด",
"disabled": "ปิด",
"total": "Total"
"total": "ทั้งหมด"
},
"coinmarketcap": {
"configure": "Configure one or more crypto currencies to track",
@@ -404,7 +398,7 @@
"transferRate": "Rate"
},
"mastodon": {
"user_count": "Users",
"user_count": "ผู้ใช้",
"status_count": "Posts",
"domain_count": "Domains"
},
@@ -416,36 +410,36 @@
"minecraft": {
"players": "Players",
"version": "เวอร์ชั่น",
"status": "Status",
"up": "Online",
"down": "Offline"
"status": "สถานะ",
"up": "ออนไลน์",
"down": "ออฟไลน์"
},
"miniflux": {
"read": "Read",
"unread": "Unread"
"unread": "ยังไม่ได้อ่าน"
},
"authentik": {
"users": "Users",
"users": "ผู้ใช้",
"loginsLast24H": "Logins (24h)",
"failedLoginsLast24H": "Failed Logins (24h)"
},
"proxmox": {
"mem": "MEM",
"cpu": "CPU",
"mem": "เมม",
"cpu": "ซีพียู",
"lxc": "LXC",
"vms": "VMs"
},
"glances": {
"cpu": "CPU",
"load": "Load",
"wait": "Please wait",
"cpu": "ซีพียู",
"load": "โหลด",
"wait": "โปรดรอ",
"temp": "TEMP",
"_temp": "Temp",
"warn": "Warn",
"uptime": "UP",
"total": "Total",
"free": "Free",
"used": "Used",
"total": "ทั้งหมด",
"free": "ฟรี",
"used": "ใช้แล้ว",
"days": "d",
"hours": "h",
"crit": "Crit",
@@ -539,7 +533,7 @@
"grace": "In Grace Period",
"down": "Down",
"paused": "Paused",
"status": "Status",
"status": "สถานะ",
"last_ping": "Last Ping",
"never": "No pings yet"
},
@@ -569,7 +563,7 @@
"speed": "Speed",
"active": "Active",
"queue": "Queue",
"total": "Total"
"total": "ทั้งหมด"
},
"gluetun": {
"public_ip": "Public IP",
@@ -586,23 +580,23 @@
"signalStrength": "Strength",
"signalQuality": "Quality",
"symbolQuality": "Quality",
"networkRate": "Bitrate",
"networkRate": "อัตราบิต",
"clientIP": "Client"
},
"scrutiny": {
"passed": "Passed",
"failed": "Failed",
"unknown": "Unknown"
"unknown": "ไม่ทราบ"
},
"paperlessngx": {
"inbox": "Inbox",
"total": "Total"
"total": "ทั้งหมด"
},
"peanut": {
"battery_charge": "Battery Charge",
"ups_load": "UPS Load",
"ups_status": "UPS Status",
"online": "Online",
"online": "ออนไลน์",
"on_battery": "On Battery",
"low_battery": "Low Battery"
},
@@ -640,14 +634,14 @@
"layers": "Layers"
},
"octoprint": {
"printer_state": "Status",
"printer_state": "สถานะ",
"temp_tool": "Tool temp",
"temp_bed": "Bed temp",
"job_completion": "Completion"
},
"cloudflared": {
"origin_ip": "Origin IP",
"status": "Status"
"status": "สถานะ"
},
"pfsense": {
"load": "Load Avg",
@@ -662,11 +656,11 @@
"proxmoxbackupserver": {
"datastore_usage": "Datastore",
"failed_tasks_24h": "Failed Tasks 24h",
"cpu_usage": "CPU",
"cpu_usage": "ซีพียู",
"memory_usage": "Memory"
},
"immich": {
"users": "Users",
"users": "ผู้ใช้",
"photos": "Photos",
"videos": "Videos",
"storage": "Storage"
@@ -690,7 +684,7 @@
"books": "Books"
},
"diskstation": {
"days": "Days",
"days": "วัน",
"uptime": "Uptime",
"volumeAvailable": "Available"
},
@@ -730,7 +724,7 @@
"numshares": "Shared Items"
},
"kopia": {
"status": "Status",
"status": "สถานะ",
"size": "Size",
"lastrun": "Last Run",
"nextrun": "Next Run",
@@ -752,7 +746,7 @@
},
"gatus": {
"up": "Sites Up",
"down": "Sites Down",
"down": "เว็บไซต์ ล่ม",
"uptime": "Uptime"
},
"ghostfolio": {
@@ -793,7 +787,7 @@
},
"azuredevops": {
"result": "Result",
"status": "Status",
"status": "สถานะ",
"buildId": "Build ID",
"succeeded": "Succeeded",
"notStarted": "Not Started",
@@ -805,16 +799,16 @@
"approved": "Approved"
},
"gamedig": {
"status": "Status",
"online": "Online",
"offline": "Offline",
"status": "สถานะ",
"online": "ออนไลน์",
"offline": "ออฟไลน์",
"name": "Name",
"map": "Map",
"currentPlayers": "Current players",
"players": "Players",
"maxPlayers": "Max players",
"bots": "Bots",
"ping": "Ping"
"ping": "ปิง"
},
"urbackup": {
"ok": "Ok",
@@ -824,13 +818,13 @@
},
"mealie": {
"recipes": "Recipes",
"users": "Users",
"users": "ผู้ใช้",
"categories": "Categories",
"tags": "Tags"
},
"openmediavault": {
"downloading": "Downloading",
"total": "Total",
"total": "ทั้งหมด",
"running": "Running",
"stopped": "Stopped",
"passed": "Passed",
@@ -845,18 +839,18 @@
"bytesRx": "Received"
},
"uptimerobot": {
"status": "Status",
"status": "สถานะ",
"uptime": "Uptime",
"lastDown": "Last Downtime",
"downDuration": "Downtime Duration",
"sitesUp": "Sites Up",
"sitesDown": "Sites Down",
"sitesDown": "เว็บไซต์ ล่ม",
"paused": "Paused",
"notyetchecked": "Not Yet Checked",
"up": "Up",
"seemsdown": "Seems Down",
"down": "Down",
"unknown": "Unknown"
"unknown": "ไม่ทราบ"
},
"calendar": {
"inCinemas": "In cinemas",
@@ -913,7 +907,7 @@
"oCount": "O Count"
},
"tandoor": {
"users": "Users",
"users": "ผู้ใช้",
"recipes": "Recipes",
"keywords": "Keywords"
},
@@ -922,7 +916,7 @@
"totalWithWarranty": "With Warranty",
"locations": "Locations",
"labels": "Labels",
"users": "Users",
"users": "ผู้ใช้",
"totalValue": "Total Value"
},
"crowdsec": {
@@ -931,9 +925,9 @@
},
"wgeasy": {
"connected": "Connected",
"enabled": "Enabled",
"disabled": "Disabled",
"total": "Total"
"enabled": "เปิด",
"disabled": "ปิด",
"total": "ทั้งหมด"
},
"swagdashboard": {
"proxied": "Proxied",
@@ -942,9 +936,9 @@
"banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
"ping": "ปิง",
"download": "ดาวน์โหลด",
"upload": "อัพโหลด"
},
"stocks": {
"stocks": "Stocks",
@@ -956,7 +950,7 @@
"frigate": {
"cameras": "Cameras",
"uptime": "Uptime",
"version": "Version"
"version": "เวอร์ชั่น"
},
"linkwarden": {
"links": "Links",
@@ -965,7 +959,7 @@
},
"zabbix": {
"unclassified": "Not classified",
"information": "Information",
"information": "ข้อมูล",
"warning": "Warning",
"average": "Average",
"high": "High",
@@ -989,9 +983,9 @@
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"online": "Online",
"offline": "Offline"
"status": "สถานะ",
"online": "ออนไลน์",
"offline": "ออฟไลน์"
},
"beszel": {
"name": "Name",
@@ -1000,10 +994,10 @@
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Status",
"status": "สถานะ",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"cpu": "ซีพียู",
"memory": "เมม",
"disk": "Disk",
"network": "NET"
},
@@ -1014,7 +1008,7 @@
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"missing": "หายไป",
"suspended": "Suspended"
},
"spoolman": {
@@ -1027,8 +1021,8 @@
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Load",
"status": "สถานะ",
"load": "โหลด",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
},
@@ -1060,28 +1054,5 @@
"checkmk": {
"serviceErrors": "Service 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

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

File diff suppressed because it is too large Load Diff

View File

@@ -498,63 +498,54 @@ function Home({ initialSettings }) {
}
export default function Wrapper({ initialSettings, fallback }) {
const { theme } = useContext(ThemeContext);
let backgroundImage = "";
let opacity = initialSettings?.backgroundOpacity ?? 0;
const { themeContext } = useContext(ThemeContext);
const wrappedStyle = {};
let backgroundBlur = false;
let backgroundSaturate = false;
let backgroundBrightness = false;
if (initialSettings?.background) {
const bg = initialSettings.background;
if (typeof bg === "object") {
backgroundImage = bg.image || "";
if (bg.opacity !== undefined) {
opacity = bg.opacity / 100;
}
backgroundBlur = bg.blur !== undefined;
backgroundSaturate = bg.saturate !== undefined;
backgroundBrightness = bg.brightness !== undefined;
} else {
backgroundImage = bg;
if (initialSettings && initialSettings.background) {
let opacity = initialSettings.backgroundOpacity ?? 1;
let backgroundImage = initialSettings.background;
if (typeof initialSettings.background === "object") {
backgroundImage = initialSettings.background.image;
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;
}
const opacityValue = 1 - opacity;
wrappedStyle.backgroundImage = `
linear-gradient(
rgb(var(--bg-color) / ${opacityValue}),
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 (
<>
{backgroundImage && (
<div
id="background"
aria-hidden="true"
style={{
backgroundImage: `linear-gradient(rgb(var(--bg-color) / ${opacity}), rgb(var(--bg-color) / ${opacity})), url('${backgroundImage}')`,
}}
/>
<div
id="page_wrapper"
className={classNames(
"relative",
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
id="inner_wrapper"
tabIndex="-1"
className={classNames(
"w-full h-full overflow-auto",
"fixed overflow-auto w-full h-full",
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}`,
backgroundBrightness && `backdrop-brightness-${initialSettings.background.brightness}`,
)}
@@ -562,6 +553,6 @@ export default function Wrapper({ initialSettings, fallback }) {
<Index initialSettings={initialSettings} fallback={fallback} />
</div>
</div>
</>
</div>
);
}

View File

@@ -24,39 +24,26 @@
}
}
html,
body,
#__next {
width: 100%;
height: 100%;
margin: 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,
body {
font-family: Manrope, "Manrope-Fallback", Arial, sans-serif;
height: 100%;
overflow: hidden;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
letter-spacing: 0.1px;
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}
#page_wrapper {
width: 100%;
width: 100vw;
height: 100vh;
margin: 0;
padding: 0;
}
@@ -73,6 +60,15 @@ body {
--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 {
display: none;
}

View File

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

View File

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

View File

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

View File

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

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

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

View File

@@ -25,7 +25,7 @@ export default function ProxmoxVM({ service }) {
return (
<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 })} />
</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.states" value={t("common.number", { value: response.STATES })} />
<Block label="romm.screenshots" value={t("common.number", { value: response.SCREENSHOTS })} />
<Block
label="romm.totalfilesize"
value={t("common.bytes", { value: response.FILESIZE ?? response.TOTAL_FILESIZE_BYTES })}
/>
<Block label="romm.totalfilesize" value={t("common.bytes", { value: response.FILESIZE })} />
</Container>
);
}

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