Compare commits

..

1 commit

Author SHA1 Message Date
1b01fbc451
homepage-plus
Some checks failed
Docker / Linting Checks (push) Has been cancelled
Docker / Docker Build & Push (push) Has been cancelled
2025-04-24 19:45:44 +02:00
346 changed files with 1504 additions and 1811 deletions

View file

@ -16,11 +16,11 @@
**/compose* **/compose*
**/Dockerfile* **/Dockerfile*
**/node_modules **/node_modules
!.next/standalone/node_modules
**/npm-debug.log **/npm-debug.log
**/obj **/obj
**/secrets.dev.yaml **/secrets.dev.yaml
**/values.dev.yaml **/values.dev.yaml
**/.next
README.md README.md
config/ config/
k3d/ k3d/

View file

@ -1,4 +1,9 @@
name: Docker CI name: Docker
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
on: on:
# schedule: # schedule:
@ -23,40 +28,43 @@ on:
workflow_dispatch: workflow_dispatch:
env: env:
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }} IMAGE_NAME: ${{ github.repository }}
jobs: jobs:
pre-commit: pre-commit:
name: Linting Checks name: Linting Checks
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
steps: steps:
- name: Checkout repository -
name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
-
- name: Install python name: Install python
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: 3.x python-version: 3.x
-
- name: Check files name: Check files
uses: pre-commit/action@v3.0.1 uses: pre-commit/action@v3.0.1
-
- name: Install pnpm name: Install pnpm
uses: pnpm/action-setup@v4 uses: pnpm/action-setup@v4
with: with:
version: 10 version: 10
run_install: false run_install: false
-
- name: Setup Node.js name: Install Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: 20 node-version: 20
cache: 'pnpm' cache: 'pnpm'
-
- name: Install dependencies name: Install dependencies
run: pnpm install run: pnpm install
-
- name: Lint frontend name: Lint frontend
run: pnpm run lint run: pnpm run lint
build: build:
@ -72,55 +80,8 @@ jobs:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Extract Docker metadata # Login to Docker Registry
id: meta # https://github.com/docker/login-action
uses: docker/metadata-action@v5
with:
images: |
${{ env.IMAGE_NAME }}
ghcr.io/${{ env.IMAGE_NAME }}
tags: |
# Default tags
type=schedule,pattern=nightly
type=ref,event=branch
type=ref,event=tag
# Versioning tags
type=semver,pattern=v{{version}}
type=semver,pattern=v{{major}}.{{minor}}
type=semver,pattern=v{{major}}
flavor: |
latest=auto
- name: Next.js build cache
uses: actions/cache@v4
with:
path: .next/cache
key: nextjs-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}-${{ hashFiles('**/*.js', '**/*.jsx') }}
restore-keys: |
nextjs-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: false
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build app
run: |
NEXT_PUBLIC_BUILDTIME="${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}" \
NEXT_PUBLIC_VERSION="${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }}" \
NEXT_PUBLIC_REVISION="${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}" \
pnpm run build
- name: Log into registry ${{ env.REGISTRY }} - name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
uses: docker/login-action@v3 uses: docker/login-action@v3
@ -128,7 +89,6 @@ jobs:
registry: ghcr.io registry: ghcr.io
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to Docker Hub - name: Login to Docker Hub
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
uses: docker/login-action@v3 uses: docker/login-action@v3
@ -136,12 +96,29 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
# Setup QEMU
# https://github.com/marketplace/actions/docker-setup-buildx#with-qemu
- name: Setup QEMU - name: Setup QEMU
uses: docker/setup-qemu-action@v3.6.0 uses: docker/setup-qemu-action@v3.6.0
# Workaround: https://github.com/docker/build-push-action/issues/461
- name: Setup Docker buildx - name: Setup Docker buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
# Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ env.IMAGE_NAME }}
ghcr.io/${{ env.IMAGE_NAME }}
flavor: |
latest=auto
# Build and push Docker image with Buildx (don't push on PR)
# https://github.com/docker/build-push-action
- name: Build and push Docker image - name: Build and push Docker image
id: build-and-push id: build-and-push
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
@ -151,15 +128,18 @@ jobs:
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
build-args: | build-args: |
CI=true
BUILDTIME=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }} BUILDTIME=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
VERSION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }} VERSION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }}
REVISION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }} REVISION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
# https://github.com/docker/setup-qemu-action#about
# platforms: linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64
cache-from: type=local,src=/tmp/.buildx-cache cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
# https://github.com/docker/build-push-action/issues/252 / https://github.com/moby/buildkit/issues/1896 # Temp fix
# https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896
- name: Move cache - name: Move cache
run: | run: |
rm -rf /tmp/.buildx-cache rm -rf /tmp/.buildx-cache

View file

@ -9,14 +9,11 @@ repos:
- id: check-yaml - id: check-yaml
exclude: "(^mkdocs\\.yml$)" exclude: "(^mkdocs\\.yml$)"
- id: check-added-large-files - id: check-added-large-files
- repo: https://github.com/rbubley/mirrors-prettier - repo: https://github.com/pre-commit/mirrors-prettier
rev: 'v3.3.3' rev: 'v3.0.3'
hooks: hooks:
- id: prettier - id: prettier
types_or: types_or:
- javascript - javascript
- markdown - markdown
- jsx - jsx
additional_dependencies:
- prettier@3.3.3
- 'prettier-plugin-organize-imports@4.1.0'

1
.prettierrc Normal file
View file

@ -0,0 +1 @@
{}

View file

@ -1,5 +0,0 @@
const config = {
plugins: [require("prettier-plugin-organize-imports")],
};
module.exports = config;

View file

@ -1,63 +1,67 @@
# ========================= # Install dependencies only when needed
# Builder Stage FROM docker.io/node:22-alpine AS deps
# =========================
FROM node:22-slim AS builder
WORKDIR /app WORKDIR /app
# Setup COPY --link package.json pnpm-lock.yaml* ./
RUN mkdir config
COPY . . SHELL ["/bin/ash", "-xeo", "pipefail", "-c"]
RUN apk add --no-cache libc6-compat \
&& apk add --no-cache --virtual .gyp python3 make g++ \
&& npm install -g pnpm
RUN --mount=type=cache,id=pnpm-store,target=/root/.local/share/pnpm/store pnpm fetch | grep -v "cross-device link not permitted\|Falling back to copying packages from store"
RUN --mount=type=cache,id=pnpm-store,target=/root/.local/share/pnpm/store pnpm install -r --offline
# Rebuild the source code only when needed
FROM docker.io/node:22-alpine AS builder
WORKDIR /app
RUN mkdir config
ARG CI
ARG BUILDTIME ARG BUILDTIME
ARG VERSION ARG VERSION
ARG REVISION ARG REVISION
ENV CI=$CI
# Install and build only outside CI COPY --link --from=deps /app/node_modules ./node_modules/
RUN if [ "$CI" != "true" ]; then \ COPY . .
corepack enable && corepack prepare pnpm@latest --activate && \
pnpm install --frozen-lockfile --prefer-offline && \
NEXT_TELEMETRY_DISABLED=1 \
NEXT_PUBLIC_BUILDTIME=$BUILDTIME \
NEXT_PUBLIC_VERSION=$VERSION \
NEXT_PUBLIC_REVISION=$REVISION \
pnpm run build; \
else \
echo "✅ Using prebuilt app from CI context"; \
fi
# ========================= SHELL ["/bin/ash", "-xeo", "pipefail", "-c"]
# Runtime Stage RUN npm install -g pnpm \
# ========================= && pnpm run telemetry \
FROM node:22-alpine AS runner && NEXT_PUBLIC_BUILDTIME=$BUILDTIME NEXT_PUBLIC_VERSION=$VERSION NEXT_PUBLIC_REVISION=$REVISION pnpm run build
LABEL org.opencontainers.image.title="Homepage"
LABEL org.opencontainers.image.description="A self-hosted services landing page, with docker and service integrations." # Production image, copy all the files and run next
FROM docker.io/node:22-alpine AS runner
LABEL org.opencontainers.image.title "Homepage"
LABEL org.opencontainers.image.description "A self-hosted services landing page, with docker and service integrations."
LABEL org.opencontainers.image.url="https://github.com/di0ik/homepage-plus" LABEL org.opencontainers.image.url="https://github.com/di0ik/homepage-plus"
LABEL org.opencontainers.image.documentation='https://github.com/gethomepage/homepage/wiki' LABEL org.opencontainers.image.documentation='https://github.com/gethomepage/homepage/wiki'
LABEL org.opencontainers.image.source='https://github.com/di0ik/homepage-plus' LABEL org.opencontainers.image.source='https://github.com/di0ik/homepage-plus'
LABEL org.opencontainers.image.licenses='Apache-2.0' LABEL org.opencontainers.image.licenses='Apache-2.0'
# Setup ENV NODE_ENV=production
WORKDIR /app WORKDIR /app
# Copy some files from context # Copy files from context (this allows the files to copy before the builder stage is done).
COPY --link --chown=1000:1000 package.json next.config.js ./
COPY --link --chown=1000:1000 /public ./public/ COPY --link --chown=1000:1000 /public ./public/
# Copy files from builder
COPY --link --from=builder --chown=1000:1000 /app/.next/standalone ./
COPY --link --from=builder --chown=1000:1000 /app/.next/static/ ./.next/static/
COPY --link --chmod=755 docker-entrypoint.sh /usr/local/bin/ COPY --link --chmod=755 docker-entrypoint.sh /usr/local/bin/
# Copy only necessary files from the build stage RUN apk add --no-cache su-exec
COPY --link --from=builder --chown=1000:1000 /app/.next/standalone/ ./
COPY --link --from=builder --chown=1000:1000 /app/.next/static/ ./.next/static
RUN apk add --no-cache su-exec iputils-ping
ENV NODE_ENV=production
ENV HOSTNAME=0.0.0.0 ENV HOSTNAME=0.0.0.0
ENV PORT=3000 ENV PORT=3000
EXPOSE $PORT EXPOSE $PORT
HEALTHCHECK --interval=10s --timeout=3s --start-period=20s \ HEALTHCHECK --interval=10s --timeout=3s --start-period=20s \
CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:$PORT/api/healthcheck || exit 1 CMD wget --no-verbose --tries=1 --spider --no-check-certificate http://127.0.0.1:$PORT/api/healthcheck || exit 1
ENTRYPOINT ["docker-entrypoint.sh"] ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["node", "server.js"] CMD ["node", "server.js"]

View file

@ -189,7 +189,6 @@ widget:
name: id # required, field in each item to use as the item name (left side) name: id # required, field in each item to use as the item name (left side)
label: ip_address # required, field in each item to use as the item label (right side) label: ip_address # required, field in each item to use as the item label (right side)
limit: 5 # optional, limit the number of items to display limit: 5 # optional, limit the number of items to display
format: text # optional - format of the label field
target: https://example.com/server/{id} # optional, makes items clickable with template support target: https://example.com/server/{id} # optional, makes items clickable with template support
``` ```

View file

@ -0,0 +1,17 @@
---
title: Hoarder
description: Hoarder Widget Configuration
---
Learn more about [Hoarder](https://hoarder.app).
Generate an API key for your user at `User Settings > API Keys`.
Allowed fields: `["bookmarks", "favorites", "archived", "highlights", "lists", "tags"]` (maximum of 4).
```yaml
widget:
type: hoarder
url: http[s]://hoarder.host.or.ip[:port]
key: hoarderapikey
```

View file

@ -51,7 +51,7 @@ You can also find a list of all available service widgets in the sidebar navigat
- [HDHomeRun](hdhomerun.md) - [HDHomeRun](hdhomerun.md)
- [Headscale](headscale.md) - [Headscale](headscale.md)
- [Healthchecks](healthchecks.md) - [Healthchecks](healthchecks.md)
- [Karakeep](karakeep.md) - [Hoarder](hoarder.md)
- [Home Assistant](homeassistant.md) - [Home Assistant](homeassistant.md)
- [HomeBox](homebox.md) - [HomeBox](homebox.md)
- [Homebridge](homebridge.md) - [Homebridge](homebridge.md)

View file

@ -1,17 +0,0 @@
---
title: Karakeep
description: Karakeep Widget Configuration
---
Learn more about [Karakeep](https://karakeep.app) (formerly known as Hoarder).
Generate an API key for your user at `User Settings > API Keys`.
Allowed fields: `["bookmarks", "favorites", "archived", "highlights", "lists", "tags"]` (maximum of 4).
```yaml
widget:
type: karakeep
url: http[s]://karakeep.host.or.ip[:port]
key: karakeep_api_key
```

View file

@ -74,7 +74,7 @@ nav:
- widgets/services/hdhomerun.md - widgets/services/hdhomerun.md
- widgets/services/headscale.md - widgets/services/headscale.md
- widgets/services/healthchecks.md - widgets/services/healthchecks.md
- widgets/services/karakeep.md - widgets/services/hoarder.md
- widgets/services/homeassistant.md - widgets/services/homeassistant.md
- widgets/services/homebox.md - widgets/services/homebox.md
- widgets/services/homebridge.md - widgets/services/homebridge.md

View file

@ -131,8 +131,8 @@ module.exports = {
? BIBIT_UNITS ? BIBIT_UNITS
: BIT_UNITS : BIT_UNITS
: options.binary : options.binary
? BIBYTE_UNITS ? BIBYTE_UNITS
: BYTE_UNITS; : BYTE_UNITS;
if (value === 0) return `0 ${sizes[0]}/s`; if (value === 0) return `0 ${sizes[0]}/s`;

View file

@ -1,6 +1,6 @@
{ {
"name": "homepage", "name": "homepage",
"version": "1.2.0", "version": "1.1.1",
"private": true, "private": true,
"scripts": { "scripts": {
"preinstall": "npx only-allow pnpm", "preinstall": "npx only-allow pnpm",
@ -19,13 +19,13 @@
"dockerode": "^4.0.4", "dockerode": "^4.0.4",
"follow-redirects": "^1.15.9", "follow-redirects": "^1.15.9",
"gamedig": "^5.2.0", "gamedig": "^5.2.0",
"i18next": "^24.2.3", "i18next": "^21.10.0",
"js-yaml": "^4.1.0", "js-yaml": "^4.1.0",
"json-rpc-2.0": "^1.7.0", "json-rpc-2.0": "^1.7.0",
"luxon": "^3.5.0", "luxon": "^3.5.0",
"memory-cache": "^0.2.0", "memory-cache": "^0.2.0",
"minecraftstatuspinger": "^1.2.2", "minecraftstatuspinger": "^1.2.2",
"next": "^15.2.4", "next": "^15.2.3",
"next-i18next": "^12.1.0", "next-i18next": "^12.1.0",
"ping": "^0.4.4", "ping": "^0.4.4",
"pretty-bytes": "^6.1.1", "pretty-bytes": "^6.1.1",
@ -36,7 +36,7 @@
"react-icons": "^5.4.0", "react-icons": "^5.4.0",
"recharts": "^2.15.1", "recharts": "^2.15.1",
"rrule": "^2.8.1", "rrule": "^2.8.1",
"swr": "^2.3.3", "swr": "^1.3.0",
"systeminformation": "^5.25.11", "systeminformation": "^5.25.11",
"tough-cookie": "^5.1.2", "tough-cookie": "^5.1.2",
"urbackup-server-api": "^0.8.9", "urbackup-server-api": "^0.8.9",
@ -47,16 +47,15 @@
"@tailwindcss/forms": "^0.5.10", "@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.0.9", "@tailwindcss/postcss": "^4.0.9",
"eslint": "^9.21.0", "eslint": "^9.21.0",
"eslint-config-next": "^15.2.4", "eslint-config-next": "^15.1.7",
"eslint-config-prettier": "^10.1.1", "eslint-config-prettier": "^10.0.2",
"eslint-plugin-import": "^2.31.0", "eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2", "eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.3", "eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4", "eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0", "eslint-plugin-react-hooks": "^5.1.0",
"postcss": "^8.5.3", "postcss": "^8.5.2",
"prettier": "^3.5.2", "prettier": "^3.5.2",
"prettier-plugin-organize-imports": "^4.1.0",
"tailwind-scrollbar": "^4.0.1", "tailwind-scrollbar": "^4.0.1",
"tailwindcss": "^4.0.9", "tailwindcss": "^4.0.9",
"typescript": "^5.7.3" "typescript": "^5.7.3"

628
pnpm-lock.yaml generated

File diff suppressed because it is too large Load diff

View file

@ -1024,7 +1024,7 @@
"bcharge": "Batterylading", "bcharge": "Batterylading",
"timeleft": "Oorblywende Tyd" "timeleft": "Oorblywende Tyd"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Boekmerke", "bookmarks": "Boekmerke",
"favorites": "Gunstelinge", "favorites": "Gunstelinge",
"archived": "Geargiveer", "archived": "Geargiveer",

View file

@ -1024,7 +1024,7 @@
"bcharge": "شحن البطارية", "bcharge": "شحن البطارية",
"timeleft": "الوقت المتبقي" "timeleft": "الوقت المتبقي"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -394,7 +394,7 @@
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Сесии", "numActiveSessions": "Сесии",
"numConnections": "Connections", "numConnections": "Connections",
"dataRelayed": "", "dataRelayed": "Relayed",
"transferRate": "Скорост" "transferRate": "Скорост"
}, },
"mastodon": { "mastodon": {
@ -1002,7 +1002,7 @@
"argocd": { "argocd": {
"apps": "Приложения", "apps": "Приложения",
"synced": "Synced", "synced": "Synced",
"outOfSync": "", "outOfSync": "Out Of Sync",
"healthy": "Здрав", "healthy": "Здрав",
"degraded": "Деградирани", "degraded": "Деградирани",
"progressing": "Progressing", "progressing": "Progressing",
@ -1024,7 +1024,7 @@
"bcharge": "Заряд на батерията", "bcharge": "Заряд на батерията",
"timeleft": "Оставащо Време" "timeleft": "Оставащо Време"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Càrrega de la bateria", "bcharge": "Càrrega de la bateria",
"timeleft": "Temps restant" "timeleft": "Temps restant"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -85,16 +85,16 @@
"ping": { "ping": {
"error": "Chyba", "error": "Chyba",
"ping": "Odezva", "ping": "Odezva",
"down": "Výpadek", "down": "Down",
"up": "Běží", "up": "Up",
"not_available": "Není k dispozici" "not_available": "Není k dispozici"
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "Stav HTTP", "http_status": "Stav HTTP",
"error": "Chyba", "error": "Chyba",
"response": "Odpověď", "response": "Odpověď",
"down": "Výpadek", "down": "Down",
"up": "Běží", "up": "Up",
"not_available": "Není k dispozici" "not_available": "Není k dispozici"
}, },
"emby": { "emby": {
@ -144,13 +144,13 @@
"uptime": "Doba spuštění", "uptime": "Doba spuštění",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
"down": "Výpadek", "down": "Down",
"up": "Běží", "up": "Up",
"received": "Přijaté", "received": "Přijaté",
"sent": "Odeslané", "sent": "Odeslané",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP",
"externalIPv6Address": "Veřejná IPv6", "externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Věřejná IPv6 prefix" "externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Odesílání dat", "upstreams": "Odesílání dat",
@ -178,7 +178,7 @@
"connectedAp": "Připojené APs", "connectedAp": "Připojené APs",
"activeUser": "Aktivní zařízení", "activeUser": "Aktivní zařízení",
"alerts": "Upozornění", "alerts": "Upozornění",
"connectedGateways": "Připojené brány", "connectedGateways": "Connected gateways",
"connectedSwitches": "Připojené přepínače" "connectedSwitches": "Připojené přepínače"
}, },
"nzbget": { "nzbget": {
@ -229,8 +229,8 @@
"seed": "Seedované" "seed": "Seedované"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "Byty nalezené v mezipaměti", "cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Byty nenalezené v mezipaměti" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Stahování", "download": "Stahování",
@ -287,7 +287,7 @@
"total": "Celkem", "total": "Celkem",
"connected": "", "connected": "",
"new_devices": "", "new_devices": "",
"down_alerts": "Upozornění na výpadek" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "Dotazy", "queries": "Dotazy",
@ -313,13 +313,13 @@
}, },
"suwayomi": { "suwayomi": {
"download": "Staženo", "download": "Staženo",
"nondownload": "Nestaženo", "nondownload": "Non-Downloaded",
"read": "Přečteno", "read": "Přečteno",
"unread": "Nepřečteno", "unread": "Nepřečteno",
"downloadedread": "Staženo a přečteno", "downloadedread": "Downloaded & Read",
"downloadedunread": "Staženo a nepřečteno", "downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Nestaženo a přečteno", "nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Nestaženo a nepřečteno" "nondownloadedunread": "Non-Downloaded & Unread"
}, },
"tailscale": { "tailscale": {
"address": "Adresa", "address": "Adresa",
@ -337,15 +337,15 @@
}, },
"technitium": { "technitium": {
"totalQueries": "Dotazy", "totalQueries": "Dotazy",
"totalNoError": "Úspěšně", "totalNoError": "Success",
"totalServerFailure": "Chyby", "totalServerFailure": "Failures",
"totalNxDomain": "NX domény", "totalNxDomain": "NX Domains",
"totalRefused": "Odmítnuto", "totalRefused": "Refused",
"totalAuthoritative": "Autoritativní", "totalAuthoritative": "Authoritative",
"totalRecursive": "Rekurzivní", "totalRecursive": "Recursive",
"totalCached": "V mezipaměti", "totalCached": "Cached",
"totalBlocked": "Blokováno", "totalBlocked": "Blokováno",
"totalDropped": "Vynecháno", "totalDropped": "Dropped",
"totalClients": "Klienti" "totalClients": "Klienti"
}, },
"tdarr": { "tdarr": {
@ -434,7 +434,7 @@
"load": "Zatížení", "load": "Zatížení",
"wait": "Počkejte prosím", "wait": "Počkejte prosím",
"temp": "TEPLOTA", "temp": "TEPLOTA",
"_temp": "Teplota", "_temp": "Temp",
"warn": "Varováni", "warn": "Varováni",
"uptime": "BĚŽÍ", "uptime": "BĚŽÍ",
"total": "Celkem", "total": "Celkem",
@ -442,12 +442,12 @@
"used": "Využité", "used": "Využité",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Kritické", "crit": "Crit",
"read": "Přečteno", "read": "Přečteno",
"write": "Zápis", "write": "Write",
"gpu": "Grafická karta", "gpu": "GPU",
"mem": "Pamět RAM", "mem": "Mem",
"swap": "Swap RAM" "swap": "Swap"
}, },
"quicklaunch": { "quicklaunch": {
"bookmark": "Záložka", "bookmark": "Záložka",
@ -456,7 +456,7 @@
"custom": "Vlastní", "custom": "Vlastní",
"visit": "Navštivte", "visit": "Navštivte",
"url": "Odkaz", "url": "Odkaz",
"searchsuggestion": "Doporučení" "searchsuggestion": "Suggestion"
}, },
"wmo": { "wmo": {
"0-day": "Slunečno", "0-day": "Slunečno",
@ -523,15 +523,15 @@
"up_to_date": "Žádné", "up_to_date": "Žádné",
"child_bridges": "Podřízené můstky", "child_bridges": "Podřízené můstky",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Běží", "up": "Up",
"pending": "Čeká", "pending": "Čeká",
"down": "Výpadek" "down": "Down"
}, },
"healthchecks": { "healthchecks": {
"new": "Nové", "new": "Nové",
"up": "Běží", "up": "Up",
"grace": "V období odkladu", "grace": "V období odkladu",
"down": "Výpadek", "down": "Down",
"paused": "Pozastaveno", "paused": "Pozastaveno",
"status": "Stav", "status": "Stav",
"last_ping": "Poslední ping", "last_ping": "Poslední ping",
@ -573,14 +573,14 @@
"hdhomerun": { "hdhomerun": {
"channels": "Kanály", "channels": "Kanály",
"hd": "HD", "hd": "HD",
"tunerCount": "Tuner", "tunerCount": "Tuners",
"channelNumber": "Kanál", "channelNumber": "Channel",
"channelNetwork": "Síť", "channelNetwork": "Network",
"signalStrength": "Síla", "signalStrength": "Strength",
"signalQuality": "Kvalita", "signalQuality": "Quality",
"symbolQuality": "Kvalita", "symbolQuality": "Quality",
"networkRate": "Přenosová rychlost", "networkRate": "Přenosová rychlost",
"clientIP": "Klient" "clientIP": "Client"
}, },
"scrutiny": { "scrutiny": {
"passed": "Úspěšné", "passed": "Úspěšné",
@ -592,12 +592,12 @@
"total": "Celkem" "total": "Celkem"
}, },
"peanut": { "peanut": {
"battery_charge": "Úroveň baterie", "battery_charge": "Battery Charge",
"ups_load": "Zítěž UPS", "ups_load": "UPS Load",
"ups_status": "Stav UPS", "ups_status": "UPS Status",
"online": "Online", "online": "Online",
"on_battery": "Na baterii", "on_battery": "On Battery",
"low_battery": "Nízký stav baterie" "low_battery": "Low Battery"
}, },
"nextdns": { "nextdns": {
"wait": "Čekejte prosím", "wait": "Čekejte prosím",
@ -615,9 +615,9 @@
"streams_xepg": "Kanály XEPG" "streams_xepg": "Kanály XEPG"
}, },
"opendtu": { "opendtu": {
"yieldDay": "Dnes", "yieldDay": "Today",
"absolutePower": "Výkon", "absolutePower": "Power",
"relativePower": "Výkon %", "relativePower": "Power %",
"limit": "Limit" "limit": "Limit"
}, },
"opnsense": { "opnsense": {
@ -646,9 +646,9 @@
"load": "Prům. zatížení", "load": "Prům. zatížení",
"memory": "Využití paměti", "memory": "Využití paměti",
"wanStatus": "Stav WAN", "wanStatus": "Stav WAN",
"up": "Běží", "up": "Up",
"down": "Výpadek", "down": "Down",
"temp": "Teplota", "temp": "Temp",
"disk": "Využití disku", "disk": "Využití disku",
"wanIP": "IP WAN" "wanIP": "IP WAN"
}, },
@ -668,14 +668,14 @@
"up": "Stránky Up", "up": "Stránky Up",
"down": "Stránky Down", "down": "Stránky Down",
"uptime": "Doba spuštění", "uptime": "Doba spuštění",
"incident": "Událost", "incident": "Incident",
"m": "m" "m": "m"
}, },
"atsumeru": { "atsumeru": {
"series": "Seriály", "series": "Seriály",
"archives": "Archivy", "archives": "Archives",
"chapters": "Kapitoly", "chapters": "Chapters",
"categories": "Kategorie" "categories": "Categories"
}, },
"komga": { "komga": {
"libraries": "Knihovny", "libraries": "Knihovny",
@ -705,13 +705,13 @@
"time": "Čas" "time": "Čas"
}, },
"firefly": { "firefly": {
"networth": "Čisté jmění", "networth": "Net Worth",
"budget": "Rozpočet" "budget": "Budget"
}, },
"grafana": { "grafana": {
"dashboards": "Nástěnky", "dashboards": "Nástěnky",
"datasources": "Zdroje dat", "datasources": "Zdroje dat",
"totalalerts": "Celkový počet upozornění2", "totalalerts": "Celkový počet upozornění",
"alertstriggered": "Spuštěné výstrahy" "alertstriggered": "Spuštěné výstrahy"
}, },
"nextcloud": { "nextcloud": {
@ -749,7 +749,7 @@
"uptime": "Doba spuštění" "uptime": "Doba spuštění"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Dnes", "gross_percent_today": "Today",
"gross_percent_1y": "Jeden rok", "gross_percent_1y": "Jeden rok",
"gross_percent_max": "Za celou dobu" "gross_percent_max": "Za celou dobu"
}, },
@ -770,8 +770,8 @@
}, },
"calibreweb": { "calibreweb": {
"books": "Knihy", "books": "Knihy",
"authors": "Autoři", "authors": "Authors",
"categories": "Kategorie", "categories": "Categories",
"series": "Seriály" "series": "Seriály"
}, },
"jdownloader": { "jdownloader": {
@ -785,44 +785,44 @@
"totalFiles": "Soubory" "totalFiles": "Soubory"
}, },
"azuredevops": { "azuredevops": {
"result": "Výsledek", "result": "Result",
"status": "Stav", "status": "Stav",
"buildId": "ID sestavení", "buildId": "Build ID",
"succeeded": "Úspěšně", "succeeded": "Succeeded",
"notStarted": "Nezahájeno", "notStarted": "Not Started",
"failed": "Selhalo", "failed": "Selhalo",
"canceled": "Zrušeno", "canceled": "Canceled",
"inProgress": "Probíhá", "inProgress": "In Progress",
"totalPrs": "Celkem PR", "totalPrs": "Total PRs",
"myPrs": "Moje PR", "myPrs": "My PRs",
"approved": "Schváleno" "approved": "Schváleno"
}, },
"gamedig": { "gamedig": {
"status": "Stav", "status": "Stav",
"online": "Online", "online": "Online",
"offline": "Offline", "offline": "Offline",
"name": "Jméno", "name": "Name",
"map": "Mapa", "map": "Map",
"currentPlayers": "Počet hráčů", "currentPlayers": "Current players",
"players": "Hráči", "players": "Hráči",
"maxPlayers": "Maximální počet hráčů", "maxPlayers": "Max players",
"bots": "Boti", "bots": "Bots",
"ping": "Odezva" "ping": "Odezva"
}, },
"urbackup": { "urbackup": {
"ok": "Ok", "ok": "Ok",
"errored": "Chyby", "errored": "Errors",
"noRecent": "Zastaralý", "noRecent": "Out of Date",
"totalUsed": "Využití úložiště" "totalUsed": "Used Storage"
}, },
"mealie": { "mealie": {
"recipes": "Recepty", "recipes": "Recipes",
"users": "Uživatelé", "users": "Uživatelé",
"categories": "Kategorie", "categories": "Categories",
"tags": "Štítky" "tags": "Tags"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Stahování", "downloading": "Downloading",
"total": "Celkem", "total": "Celkem",
"running": "Běží", "running": "Běží",
"stopped": "Zastaveno", "stopped": "Zastaveno",
@ -831,95 +831,95 @@
}, },
"openwrt": { "openwrt": {
"uptime": "Doba spuštění", "uptime": "Doba spuštění",
"cpuLoad": "Prům. zatížení procesoru (5m)", "cpuLoad": "CPU Load Avg (5m)",
"up": "Běží", "up": "Up",
"down": "Výpadek", "down": "Down",
"bytesTx": "Přeneseno", "bytesTx": "Transmitted",
"bytesRx": "Přijaté" "bytesRx": "Přijaté"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Stav", "status": "Stav",
"uptime": "Doba spuštění", "uptime": "Doba spuštění",
"lastDown": "Poslední výpadek", "lastDown": "Last Downtime",
"downDuration": "Trvání výpadku", "downDuration": "Downtime Duration",
"sitesUp": "Stránky Up", "sitesUp": "Stránky Up",
"sitesDown": "Stránky Down", "sitesDown": "Stránky Down",
"paused": "Pozastaveno", "paused": "Pozastaveno",
"notyetchecked": "Zatím nezkontrolováno", "notyetchecked": "Not Yet Checked",
"up": "Běží", "up": "Up",
"seemsdown": "Zdá se nedostupný", "seemsdown": "Seems Down",
"down": "Výpadek", "down": "Down",
"unknown": "Neznámý" "unknown": "Neznámý"
}, },
"calendar": { "calendar": {
"inCinemas": "V kinech", "inCinemas": "In cinemas",
"physicalRelease": "Fyzické vydání", "physicalRelease": "Physical release",
"digitalRelease": "Digitální vydání", "digitalRelease": "Digital release",
"noEventsToday": "Pro dnešek žádné události!", "noEventsToday": "No events for today!",
"noEventsFound": "Nemáte žádné události" "noEventsFound": "No events found"
}, },
"romm": { "romm": {
"platforms": "Platformy", "platforms": "Platforms",
"totalRoms": "Hry", "totalRoms": "Games",
"saves": "Uložené", "saves": "Saves",
"states": "Stavy", "states": "States",
"screenshots": "Snímky obrazovky", "screenshots": "Screenshots",
"totalfilesize": "Celková velikost" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Domény", "domains": "Domény",
"mailboxes": "E-mailové schránky", "mailboxes": "Mailboxes",
"mails": "Maily", "mails": "Mails",
"storage": "Úložiště" "storage": "Úložiště"
}, },
"netdata": { "netdata": {
"warnings": "Upozornění", "warnings": "Warnings",
"criticals": "Kritické" "criticals": "Criticals"
}, },
"plantit": { "plantit": {
"events": "Události", "events": "Events",
"plants": "Rostliny", "plants": "Plants",
"photos": "Fotografie", "photos": "Fotografie",
"species": "Druhy" "species": "Species"
}, },
"gitea": { "gitea": {
"notifications": "Oznámení", "notifications": "Notifications",
"issues": "Problémy", "issues": "Problémy",
"pulls": "Pull Requests", "pulls": "Pull Requests",
"repositories": "Repozitáře" "repositories": "Repositories"
}, },
"stash": { "stash": {
"scenes": "Scény", "scenes": "Scenes",
"scenesPlayed": "Přehrané scény", "scenesPlayed": "Scenes Played",
"playCount": "Celkový počet přehrání", "playCount": "Total Plays",
"playDuration": "Čas sledování", "playDuration": "Time Watched",
"sceneSize": "Velikost scén", "sceneSize": "Scenes Size",
"sceneDuration": "Délka scény", "sceneDuration": "Scenes Duration",
"images": "Obrázky", "images": "Images",
"imageSize": "Velikost obrázků", "imageSize": "Images Size",
"galleries": "Galerie", "galleries": "Galleries",
"performers": "Herci", "performers": "Performers",
"studios": "Studia", "studios": "Studios",
"movies": "Filmy", "movies": "Filmy",
"tags": "Štítky", "tags": "Tags",
"oCount": "Počet O" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Uživatelé", "users": "Uživatelé",
"recipes": "Recepty", "recipes": "Recipes",
"keywords": "Klíčová slova" "keywords": "Keywords"
}, },
"homebox": { "homebox": {
"items": "Položky", "items": "Items",
"totalWithWarranty": "Se zárukou", "totalWithWarranty": "With Warranty",
"locations": "Lokality", "locations": "Locations",
"labels": "Štítky", "labels": "Labels",
"users": "Uživatelé", "users": "Uživatelé",
"totalValue": "Celková hodnota" "totalValue": "Total Value"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Upozornění", "alerts": "Upozornění",
"bans": "Bany" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "", "connected": "",
@ -928,10 +928,10 @@
"total": "Celkem" "total": "Celkem"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Přes proxy", "proxied": "Proxied",
"auth": "S ověřením", "auth": "With Auth",
"outdated": "Zastaralé", "outdated": "Outdated",
"banned": "Zabanován" "banned": "Banned"
}, },
"myspeed": { "myspeed": {
"ping": "Odezva", "ping": "Odezva",
@ -939,46 +939,46 @@
"upload": "Nahrávání" "upload": "Nahrávání"
}, },
"stocks": { "stocks": {
"stocks": "Akcie", "stocks": "Stocks",
"loading": "Načítání", "loading": "Loading",
"open": "Otevřeno - US trh", "open": "Open - US Market",
"closed": "Uzavřeno - US trh", "closed": "Closed - US Market",
"invalidConfiguration": "Neplatná konfigurace" "invalidConfiguration": "Invalid Configuration"
}, },
"frigate": { "frigate": {
"cameras": "Kamery", "cameras": "Cameras",
"uptime": "Doba spuštění", "uptime": "Doba spuštění",
"version": "Verze" "version": "Verze"
}, },
"linkwarden": { "linkwarden": {
"links": "Linky", "links": "Links",
"collections": "Sbírky", "collections": "Collections",
"tags": "Štítky" "tags": "Tags"
}, },
"zabbix": { "zabbix": {
"unclassified": "Neklasifikováno", "unclassified": "Not classified",
"information": "Informace", "information": "Informace",
"warning": "Upozornění", "warning": "Warning",
"average": "Průměr", "average": "Average",
"high": "Vysoký", "high": "High",
"disaster": "Katastrofa" "disaster": "Disaster"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "Vozidlo", "vehicle": "Vehicle",
"vehicles": "Vozidla", "vehicles": "Vehicles",
"serviceRecords": "Servisní záznamy", "serviceRecords": "Service Records",
"reminders": "Připomenutí", "reminders": "Reminders",
"nextReminder": "Další připomenutí", "nextReminder": "Next Reminder",
"none": "Žádné" "none": "None"
}, },
"vikunja": { "vikunja": {
"projects": "Aktivní projekty", "projects": "Active Projects",
"tasks7d": "Úkoly k dokončení tento týden", "tasks7d": "Tasks Due This Week",
"tasksOverdue": "Zpožděné úkoly", "tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Probíhají úkoly" "tasksInProgress": "Tasks In Progress"
}, },
"headscale": { "headscale": {
"name": "Jméno", "name": "Name",
"address": "Adresa", "address": "Adresa",
"last_seen": "Naposledy viděno", "last_seen": "Naposledy viděno",
"status": "Stav", "status": "Stav",
@ -986,10 +986,10 @@
"offline": "Offline" "offline": "Offline"
}, },
"beszel": { "beszel": {
"name": "Jméno", "name": "Name",
"systems": "Systém", "systems": "Systems",
"up": "Běží", "up": "Up",
"down": "Výpadek", "down": "Down",
"paused": "Pozastaveno", "paused": "Pozastaveno",
"pending": "Čeká", "pending": "Čeká",
"status": "Stav", "status": "Stav",
@ -997,50 +997,50 @@
"cpu": "CPU", "cpu": "CPU",
"memory": "RAM", "memory": "RAM",
"disk": "Disk", "disk": "Disk",
"network": "Síť" "network": "NET"
}, },
"argocd": { "argocd": {
"apps": "Aplikace", "apps": "Apps",
"synced": "Synchronizováno", "synced": "Synced",
"outOfSync": "Nesynchronizováno", "outOfSync": "Out Of Sync",
"healthy": "Zdravý", "healthy": "Zdravý",
"degraded": "Degradováno", "degraded": "Degraded",
"progressing": "Probíhá", "progressing": "Progressing",
"missing": "Chybějící", "missing": "Chybějící",
"suspended": "Pozastaveno" "suspended": "Suspended"
}, },
"spoolman": { "spoolman": {
"loading": "Načítání" "loading": "Loading"
}, },
"gitlab": { "gitlab": {
"groups": "Skupiny", "groups": "Groups",
"issues": "Problémy", "issues": "Problémy",
"merges": "Žádosti o sloučení", "merges": "Merge Requests",
"projects": "Projekty" "projects": "Projects"
}, },
"apcups": { "apcups": {
"status": "Stav", "status": "Stav",
"load": "Zatížení", "load": "Zatížení",
"bcharge": "Úroveň baterie", "bcharge": "Battery Charge",
"timeleft": "Zbývající čas" "timeleft": "Zbývající čas"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Záložky", "bookmarks": "Bookmarks",
"favorites": "Oblíbené", "favorites": "Favorites",
"archived": "Archivováno", "archived": "Archived",
"highlights": "Zvýraznění", "highlights": "Highlights",
"lists": "Seznamy", "lists": "Lists",
"tags": "Štítky" "tags": "Tags"
}, },
"slskd": { "slskd": {
"slskStatus": "Síť", "slskStatus": "Network",
"connected": "", "connected": "",
"disconnected": "Odpojeno", "disconnected": "Odpojeno",
"updateStatus": "Aktualizace", "updateStatus": "Update",
"update_yes": "Dostupné", "update_yes": "Dostupné",
"update_no": "Žádné", "update_no": "Žádné",
"downloads": "Stažení", "downloads": "Downloads",
"uploads": "Nahrávání", "uploads": "Uploads",
"sharedFiles": "Soubory" "sharedFiles": "Soubory"
} }
} }

View file

@ -1024,7 +1024,7 @@
"bcharge": "Batteriniveau", "bcharge": "Batteriniveau",
"timeleft": "Resterende tid" "timeleft": "Resterende tid"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -665,8 +665,8 @@
"storage": "Speicher" "storage": "Speicher"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Up", "up": "Seiten verfügbar",
"down": "Down", "down": "Seiten nicht verfügbar",
"uptime": "Betriebszeit", "uptime": "Betriebszeit",
"incident": "Vorfall", "incident": "Vorfall",
"m": "min" "m": "min"
@ -744,8 +744,8 @@
"targets_total": "Alle Ziele" "targets_total": "Alle Ziele"
}, },
"gatus": { "gatus": {
"up": "Up", "up": "Seiten verfügbar",
"down": "Down", "down": "Seiten nicht verfügbar",
"uptime": "Betriebszeit" "uptime": "Betriebszeit"
}, },
"ghostfolio": { "ghostfolio": {
@ -842,8 +842,8 @@
"uptime": "Betriebszeit", "uptime": "Betriebszeit",
"lastDown": "Letzter Ausfall", "lastDown": "Letzter Ausfall",
"downDuration": "Ausfalldauer", "downDuration": "Ausfalldauer",
"sitesUp": "Up", "sitesUp": "Seiten verfügbar",
"sitesDown": "Down", "sitesDown": "Seiten nicht verfügbar",
"paused": "Pausiert", "paused": "Pausiert",
"notyetchecked": "Noch nicht geprüft", "notyetchecked": "Noch nicht geprüft",
"up": "Online", "up": "Online",
@ -1024,12 +1024,12 @@
"bcharge": "Akkuladung", "bcharge": "Akkuladung",
"timeleft": "Verbleibende Zeit" "timeleft": "Verbleibende Zeit"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Lesezeichen",
"favorites": "Favorites", "favorites": "Favoriten",
"archived": "Archived", "archived": "Archiviert",
"highlights": "Highlights", "highlights": "Highlights",
"lists": "Lists", "lists": "Listen",
"tags": "Schlagwörter" "tags": "Schlagwörter"
}, },
"slskd": { "slskd": {

View file

@ -1024,7 +1024,7 @@
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Χρόνος που απομένει" "timeleft": "Χρόνος που απομένει"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge":"Battery Charge", "bcharge":"Battery Charge",
"timeleft":"Time Left" "timeleft":"Time Left"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Time Left" "timeleft": "Time Left"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -149,8 +149,8 @@
"received": "Recibido", "received": "Recibido",
"sent": "Enviado", "sent": "Enviado",
"externalIPAddress": "IP ext.", "externalIPAddress": "IP ext.",
"externalIPv6Address": "IPv6 ext.", "externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Prefijo IPv6 ext." "externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstream (desarrollo de software)", "upstreams": "Upstream (desarrollo de software)",
@ -178,7 +178,7 @@
"connectedAp": "AP conectados", "connectedAp": "AP conectados",
"activeUser": "Dispositivos activos", "activeUser": "Dispositivos activos",
"alerts": "Alertas", "alerts": "Alertas",
"connectedGateways": "Puertas de enlace conectadas", "connectedGateways": "Connected gateways",
"connectedSwitches": "Conmutadores conectados" "connectedSwitches": "Conmutadores conectados"
}, },
"nzbget": { "nzbget": {
@ -705,8 +705,8 @@
"time": "Tiempo" "time": "Tiempo"
}, },
"firefly": { "firefly": {
"networth": "Patrimonio neto", "networth": "Net Worth",
"budget": "Presupuesto" "budget": "Budget"
}, },
"grafana": { "grafana": {
"dashboards": "Tableros", "dashboards": "Tableros",
@ -886,7 +886,7 @@
"notifications": "Notificaciones", "notifications": "Notificaciones",
"issues": "Números", "issues": "Números",
"pulls": "Solicitudes de cambios", "pulls": "Solicitudes de cambios",
"repositories": "Repositorios" "repositories": "Repositories"
}, },
"stash": { "stash": {
"scenes": "Escenas", "scenes": "Escenas",
@ -1024,7 +1024,7 @@
"bcharge": "Carga de la batería", "bcharge": "Carga de la batería",
"timeleft": "Tiempo restante" "timeleft": "Tiempo restante"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",
@ -1036,11 +1036,11 @@
"slskStatus": "Red", "slskStatus": "Red",
"connected": "Conectado", "connected": "Conectado",
"disconnected": "Desconectado", "disconnected": "Desconectado",
"updateStatus": "Actualización", "updateStatus": "Update",
"update_yes": "Disponible", "update_yes": "Disponible",
"update_no": "Actualizado", "update_no": "Actualizado",
"downloads": "Descargas", "downloads": "Downloads",
"uploads": "Subidas", "uploads": "Uploads",
"sharedFiles": "Archivos" "sharedFiles": "Archivos"
} }
} }

View file

@ -1024,12 +1024,12 @@
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Time Left" "timeleft": "Time Left"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Laster-markak",
"favorites": "Favorites", "favorites": "Gogokoak",
"archived": "Archived", "archived": "Artxibatuta",
"highlights": "Highlights", "highlights": "Highlights",
"lists": "Lists", "lists": "Zerrendak",
"tags": "Etiketak" "tags": "Etiketak"
}, },
"slskd": { "slskd": {

View file

@ -1024,7 +1024,7 @@
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Aikaa jäljellä" "timeleft": "Aikaa jäljellä"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -85,16 +85,16 @@
"ping": { "ping": {
"error": "Erreur", "error": "Erreur",
"ping": "Latence", "ping": "Latence",
"down": "Down", "down": "Bas",
"up": "Up", "up": "Haut",
"not_available": "Non disponible" "not_available": "Non disponible"
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "Statut HTTP", "http_status": "Statut HTTP",
"error": "Erreur", "error": "Erreur",
"response": "Réponse", "response": "Réponse",
"down": "Down", "down": "Bas",
"up": "Up", "up": "Haut",
"not_available": "Non disponible" "not_available": "Non disponible"
}, },
"emby": { "emby": {
@ -142,10 +142,10 @@
"connectionStatusDisconnected": "Déconnecté", "connectionStatusDisconnected": "Déconnecté",
"connectionStatusConnected": "Connecté", "connectionStatusConnected": "Connecté",
"uptime": "Démarré depuis", "uptime": "Démarré depuis",
"maxDown": "Max. Down", "maxDown": "Max. Bas",
"maxUp": "Max. Up", "maxUp": "Max. Haut",
"down": "Down", "down": "Bas",
"up": "Up", "up": "Haut",
"received": "Reçu", "received": "Reçu",
"sent": "Envoyé", "sent": "Envoyé",
"externalIPAddress": "IP externe", "externalIPAddress": "IP externe",
@ -523,15 +523,15 @@
"up_to_date": "À jour", "up_to_date": "À jour",
"child_bridges": "Child Bridges", "child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Haut",
"pending": "En attente", "pending": "En attente",
"down": "Down" "down": "Bas"
}, },
"healthchecks": { "healthchecks": {
"new": "Nouveau", "new": "Nouveau",
"up": "Up", "up": "Haut",
"grace": "En Période de Grâce", "grace": "En Période de Grâce",
"down": "Down", "down": "Bas",
"paused": "En Pause", "paused": "En Pause",
"status": "Statut", "status": "Statut",
"last_ping": "Dernier Ping", "last_ping": "Dernier Ping",
@ -646,8 +646,8 @@
"load": "Charge moy.", "load": "Charge moy.",
"memory": "Util. Mém.", "memory": "Util. Mém.",
"wanStatus": "Statut WAN", "wanStatus": "Statut WAN",
"up": "Up", "up": "Haut",
"down": "Down", "down": "Bas",
"temp": "Température", "temp": "Température",
"disk": "Util. Disque", "disk": "Util. Disque",
"wanIP": "IP WAN" "wanIP": "IP WAN"
@ -832,8 +832,8 @@
"openwrt": { "openwrt": {
"uptime": "Démarré depuis", "uptime": "Démarré depuis",
"cpuLoad": "Charge moyenne CPU (5 min)", "cpuLoad": "Charge moyenne CPU (5 min)",
"up": "Up", "up": "Haut",
"down": "Down", "down": "Bas",
"bytesTx": "Transmis", "bytesTx": "Transmis",
"bytesRx": "Reçu" "bytesRx": "Reçu"
}, },
@ -846,9 +846,9 @@
"sitesDown": "Hors ligne", "sitesDown": "Hors ligne",
"paused": "En Pause", "paused": "En Pause",
"notyetchecked": "Non vérifié", "notyetchecked": "Non vérifié",
"up": "Up", "up": "Haut",
"seemsdown": "Semble hors ligne", "seemsdown": "Semble hors ligne",
"down": "Down", "down": "Bas",
"unknown": "Inconnu" "unknown": "Inconnu"
}, },
"calendar": { "calendar": {
@ -886,7 +886,7 @@
"notifications": "Notifications", "notifications": "Notifications",
"issues": "Anomalies", "issues": "Anomalies",
"pulls": "Demandes de tirage", "pulls": "Demandes de tirage",
"repositories": "Dépôts" "repositories": "Repositories"
}, },
"stash": { "stash": {
"scenes": "Scènes", "scenes": "Scènes",
@ -988,8 +988,8 @@
"beszel": { "beszel": {
"name": "Nom", "name": "Nom",
"systems": "Systèmes", "systems": "Systèmes",
"up": "Up", "up": "Haut",
"down": "Down", "down": "Bas",
"paused": "En Pause", "paused": "En Pause",
"pending": "En attente", "pending": "En attente",
"status": "Statut", "status": "Statut",
@ -1024,7 +1024,7 @@
"bcharge": "Charge de la batterie", "bcharge": "Charge de la batterie",
"timeleft": "Temps restant" "timeleft": "Temps restant"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Marque-pages", "bookmarks": "Marque-pages",
"favorites": "Favoris", "favorites": "Favoris",
"archived": "Archivé", "archived": "Archivé",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "זמן שנותר" "timeleft": "זמן שנותר"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Time Left" "timeleft": "Time Left"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Napunjenost baterije", "bcharge": "Napunjenost baterije",
"timeleft": "Preostalo vrijeme" "timeleft": "Preostalo vrijeme"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Akku töltöttsége", "bcharge": "Akku töltöttsége",
"timeleft": "Hátralévő idő" "timeleft": "Hátralévő idő"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,12 +1024,12 @@
"bcharge": "Sisa Baterai", "bcharge": "Sisa Baterai",
"timeleft": "Sisa Waktu" "timeleft": "Sisa Waktu"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Markah",
"favorites": "Favorites", "favorites": "Favorit",
"archived": "Archived", "archived": "Diarsipkan",
"highlights": "Highlights", "highlights": "Sorotan",
"lists": "Lists", "lists": "Daftar",
"tags": "Tag" "tags": "Tag"
}, },
"slskd": { "slskd": {

View file

@ -149,8 +149,8 @@
"received": "Ricevuti", "received": "Ricevuti",
"sent": "Inviati", "sent": "Inviati",
"externalIPAddress": "IP Esterno", "externalIPAddress": "IP Esterno",
"externalIPv6Address": "IPv6 Esterno", "externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Prefisso IPv6 Esterno" "externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstream", "upstreams": "Upstream",
@ -178,7 +178,7 @@
"connectedAp": "AP Connessi", "connectedAp": "AP Connessi",
"activeUser": "Dispositivi attivi", "activeUser": "Dispositivi attivi",
"alerts": "Allarmi", "alerts": "Allarmi",
"connectedGateways": "Gateway connessi", "connectedGateways": "Connected gateways",
"connectedSwitches": "Switch connessi" "connectedSwitches": "Switch connessi"
}, },
"nzbget": { "nzbget": {
@ -338,7 +338,7 @@
"technitium": { "technitium": {
"totalQueries": "Richieste", "totalQueries": "Richieste",
"totalNoError": "Successo", "totalNoError": "Successo",
"totalServerFailure": "Fallimenti", "totalServerFailure": "Failures",
"totalNxDomain": "NX Domains", "totalNxDomain": "NX Domains",
"totalRefused": "Refused", "totalRefused": "Refused",
"totalAuthoritative": "Authoritative", "totalAuthoritative": "Authoritative",
@ -943,7 +943,7 @@
"loading": "Caricamento", "loading": "Caricamento",
"open": "Open - US Market", "open": "Open - US Market",
"closed": "Closed - US Market", "closed": "Closed - US Market",
"invalidConfiguration": "Configurazione non valida" "invalidConfiguration": "Invalid Configuration"
}, },
"frigate": { "frigate": {
"cameras": "Cameras", "cameras": "Cameras",
@ -959,7 +959,7 @@
"unclassified": "Not classified", "unclassified": "Not classified",
"information": "Informazioni", "information": "Informazioni",
"warning": "Warning", "warning": "Warning",
"average": "Media", "average": "Average",
"high": "High", "high": "High",
"disaster": "Disaster" "disaster": "Disaster"
}, },
@ -987,7 +987,7 @@
}, },
"beszel": { "beszel": {
"name": "Nome", "name": "Nome",
"systems": "Sistemi", "systems": "Systems",
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"paused": "In Pausa", "paused": "In Pausa",
@ -996,15 +996,15 @@
"updated": "Aggiornato", "updated": "Aggiornato",
"cpu": "CPU", "cpu": "CPU",
"memory": "MEM", "memory": "MEM",
"disk": "Disco", "disk": "Disk",
"network": "NET" "network": "NET"
}, },
"argocd": { "argocd": {
"apps": "Applicazioni", "apps": "Apps",
"synced": "Sincronizzato", "synced": "Synced",
"outOfSync": "Non Sincronizzato", "outOfSync": "Out Of Sync",
"healthy": "Sano", "healthy": "Sano",
"degraded": "Degradato", "degraded": "Degraded",
"progressing": "Progressing", "progressing": "Progressing",
"missing": "Mancanti", "missing": "Mancanti",
"suspended": "Suspended" "suspended": "Suspended"
@ -1013,10 +1013,10 @@
"loading": "Caricamento" "loading": "Caricamento"
}, },
"gitlab": { "gitlab": {
"groups": "Gruppi", "groups": "Groups",
"issues": "Problemi", "issues": "Problemi",
"merges": "Richieste di merge", "merges": "Merge Requests",
"projects": "Progetti" "projects": "Projects"
}, },
"apcups": { "apcups": {
"status": "Stato", "status": "Stato",
@ -1024,12 +1024,12 @@
"bcharge": "Carica Batteria", "bcharge": "Carica Batteria",
"timeleft": "Tempo Rimanente" "timeleft": "Tempo Rimanente"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Segnalibri", "bookmarks": "Bookmarks",
"favorites": "Preferiti", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",
"highlights": "Highlights", "highlights": "Highlights",
"lists": "Liste", "lists": "Lists",
"tags": "Tag" "tags": "Tag"
}, },
"slskd": { "slskd": {
@ -1039,7 +1039,7 @@
"updateStatus": "Update", "updateStatus": "Update",
"update_yes": "Disponibili", "update_yes": "Disponibili",
"update_no": "Aggiornato", "update_no": "Aggiornato",
"downloads": "Download", "downloads": "Downloads",
"uploads": "Uploads", "uploads": "Uploads",
"sharedFiles": "File" "sharedFiles": "File"
} }

View file

@ -1024,7 +1024,7 @@
"bcharge": "バッテリー充電", "bcharge": "バッテリー充電",
"timeleft": "残り時間" "timeleft": "残り時間"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -14,11 +14,11 @@
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "duration": "{{value, duration}}",
"months": "", "months": "mo",
"days": "", "days": "d",
"hours": "", "hours": "h",
"minutes": "", "minutes": "m",
"seconds": "" "seconds": "s"
}, },
"widget": { "widget": {
"missing_type": "없는 위젯 유형: {{type}}", "missing_type": "없는 위젯 유형: {{type}}",
@ -51,7 +51,7 @@
}, },
"unifi": { "unifi": {
"users": "사용자", "users": "사용자",
"uptime": "가동 시간", "uptime": "Uptime",
"days": "일", "days": "일",
"wan": "WAN", "wan": "WAN",
"lan": "LAN", "lan": "LAN",
@ -141,7 +141,7 @@
"connectionStatusDisconnecting": "연결을 끊는 중...", "connectionStatusDisconnecting": "연결을 끊는 중...",
"connectionStatusDisconnected": "연결 끊김", "connectionStatusDisconnected": "연결 끊김",
"connectionStatusConnected": "연결됨", "connectionStatusConnected": "연결됨",
"uptime": "가동 시간", "uptime": "Uptime",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
"down": "Down", "down": "Down",
@ -188,7 +188,7 @@
}, },
"plex": { "plex": {
"streams": "활성 스트림", "streams": "활성 스트림",
"albums": "앨범", "albums": "Albums",
"movies": "영화", "movies": "영화",
"tv": "TV 쇼" "tv": "TV 쇼"
}, },
@ -440,8 +440,8 @@
"total": "총합", "total": "총합",
"free": "남음", "free": "남음",
"used": "사용", "used": "사용",
"days": "", "days": "d",
"hours": "", "hours": "h",
"crit": "Crit", "crit": "Crit",
"read": "읽음", "read": "읽음",
"write": "쓰기", "write": "쓰기",
@ -556,7 +556,7 @@
}, },
"truenas": { "truenas": {
"load": "System Load", "load": "System Load",
"uptime": "가동 시간", "uptime": "Uptime",
"alerts": "경고" "alerts": "경고"
}, },
"pyload": { "pyload": {
@ -606,7 +606,7 @@
"mikrotik": { "mikrotik": {
"cpuLoad": "CPU Load", "cpuLoad": "CPU Load",
"memoryUsed": "메모리 사용량", "memoryUsed": "메모리 사용량",
"uptime": "가동 시간", "uptime": "Uptime",
"numberOfLeases": "Leases" "numberOfLeases": "Leases"
}, },
"xteve": { "xteve": {
@ -667,9 +667,9 @@
"uptimekuma": { "uptimekuma": {
"up": "Sites Up", "up": "Sites Up",
"down": "Sites Down", "down": "Sites Down",
"uptime": "가동 시간", "uptime": "Uptime",
"incident": "Incident", "incident": "Incident",
"m": "" "m": "m"
}, },
"atsumeru": { "atsumeru": {
"series": "시리즈", "series": "시리즈",
@ -684,7 +684,7 @@
}, },
"diskstation": { "diskstation": {
"days": "일", "days": "일",
"uptime": "가동 시간", "uptime": "Uptime",
"volumeAvailable": "이용 가능" "volumeAvailable": "이용 가능"
}, },
"mylar": { "mylar": {
@ -693,7 +693,7 @@
"wanted": "요청" "wanted": "요청"
}, },
"photoprism": { "photoprism": {
"albums": "앨범", "albums": "Albums",
"photos": "사진", "photos": "사진",
"videos": "동영상", "videos": "동영상",
"people": "People" "people": "People"
@ -705,8 +705,8 @@
"time": "Time" "time": "Time"
}, },
"firefly": { "firefly": {
"networth": "순자산", "networth": "Net Worth",
"budget": "예산" "budget": "Budget"
}, },
"grafana": { "grafana": {
"dashboards": "대시보드", "dashboards": "대시보드",
@ -746,7 +746,7 @@
"gatus": { "gatus": {
"up": "Sites Up", "up": "Sites Up",
"down": "Sites Down", "down": "Sites Down",
"uptime": "가동 시간" "uptime": "Uptime"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "오늘", "gross_percent_today": "오늘",
@ -816,7 +816,7 @@
"totalUsed": "Used Storage" "totalUsed": "Used Storage"
}, },
"mealie": { "mealie": {
"recipes": "레시피", "recipes": "Recipes",
"users": "사용자", "users": "사용자",
"categories": "분류", "categories": "분류",
"tags": "태그" "tags": "태그"
@ -830,7 +830,7 @@
"failed": "Failed" "failed": "Failed"
}, },
"openwrt": { "openwrt": {
"uptime": "가동 시간", "uptime": "Uptime",
"cpuLoad": "CPU Load Avg (5m)", "cpuLoad": "CPU Load Avg (5m)",
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
@ -839,7 +839,7 @@
}, },
"uptimerobot": { "uptimerobot": {
"status": "상태", "status": "상태",
"uptime": "가동 시간", "uptime": "Uptime",
"lastDown": "Last Downtime", "lastDown": "Last Downtime",
"downDuration": "Downtime Duration", "downDuration": "Downtime Duration",
"sitesUp": "Sites Up", "sitesUp": "Sites Up",
@ -906,7 +906,7 @@
}, },
"tandoor": { "tandoor": {
"users": "사용자", "users": "사용자",
"recipes": "레시피", "recipes": "Recipes",
"keywords": "키워드" "keywords": "키워드"
}, },
"homebox": { "homebox": {
@ -947,7 +947,7 @@
}, },
"frigate": { "frigate": {
"cameras": "카메라", "cameras": "카메라",
"uptime": "가동 시간", "uptime": "Uptime",
"version": "버전" "version": "버전"
}, },
"linkwarden": { "linkwarden": {
@ -1024,7 +1024,7 @@
"bcharge": "배터리 충전 중", "bcharge": "배터리 충전 중",
"timeleft": "남은 시간" "timeleft": "남은 시간"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Atlikušais laiks" "timeleft": "Atlikušais laiks"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Bateri dicas", "bcharge": "Bateri dicas",
"timeleft": "Masa Tinggal" "timeleft": "Masa Tinggal"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Batterij opladen", "bcharge": "Batterij opladen",
"timeleft": "Resterende Tijd" "timeleft": "Resterende Tijd"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Batteriladning", "bcharge": "Batteriladning",
"timeleft": "Gjenstående tid" "timeleft": "Gjenstående tid"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -149,8 +149,8 @@
"received": "Odebrane", "received": "Odebrane",
"sent": "Wysłane", "sent": "Wysłane",
"externalIPAddress": "Pub. IP", "externalIPAddress": "Pub. IP",
"externalIPv6Address": "Zewn. IPv6", "externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Zewn. prefiks IPv6" "externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@ -705,8 +705,8 @@
"time": "Czas" "time": "Czas"
}, },
"firefly": { "firefly": {
"networth": "Wartość netto", "networth": "Net Worth",
"budget": "Budżet" "budget": "Budget"
}, },
"grafana": { "grafana": {
"dashboards": "Panel główny", "dashboards": "Panel główny",
@ -886,7 +886,7 @@
"notifications": "Powiadomienia", "notifications": "Powiadomienia",
"issues": "Zgłoszenia", "issues": "Zgłoszenia",
"pulls": "Żądania Pull", "pulls": "Żądania Pull",
"repositories": "Repozytoria" "repositories": "Repositories"
}, },
"stash": { "stash": {
"scenes": "Sceny", "scenes": "Sceny",
@ -1024,12 +1024,12 @@
"bcharge": "Stan baterii", "bcharge": "Stan baterii",
"timeleft": "Pozostało" "timeleft": "Pozostało"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Zakładki", "bookmarks": "Bookmarks",
"favorites": "Ulubione", "favorites": "Favorites",
"archived": "Zarchiwizowane", "archived": "Archived",
"highlights": "Wyróżnione", "highlights": "Highlights",
"lists": "Listy", "lists": "Lists",
"tags": "Tagi" "tags": "Tagi"
}, },
"slskd": { "slskd": {

View file

@ -1024,7 +1024,7 @@
"bcharge": "Carga da bateria", "bcharge": "Carga da bateria",
"timeleft": "Tempo Restante" "timeleft": "Tempo Restante"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -886,7 +886,7 @@
"notifications": "Notificações", "notifications": "Notificações",
"issues": "Problemas", "issues": "Problemas",
"pulls": "Solicitações de Envio", "pulls": "Solicitações de Envio",
"repositories": "Repositórios" "repositories": "Repositories"
}, },
"stash": { "stash": {
"scenes": "Cenas", "scenes": "Cenas",
@ -1024,8 +1024,8 @@
"bcharge": "Carga da bateria", "bcharge": "Carga da bateria",
"timeleft": "Tempo restante" "timeleft": "Tempo restante"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Marcadores", "bookmarks": "Favoritos",
"favorites": "Favoritos", "favorites": "Favoritos",
"archived": "Arquivados", "archived": "Arquivados",
"highlights": "Destaques", "highlights": "Destaques",
@ -1036,7 +1036,7 @@
"slskStatus": "Rede", "slskStatus": "Rede",
"connected": "Conectado", "connected": "Conectado",
"disconnected": "Desconectado", "disconnected": "Desconectado",
"updateStatus": "Atualize", "updateStatus": "Update",
"update_yes": "Disponível", "update_yes": "Disponível",
"update_no": "Atualizado", "update_no": "Atualizado",
"downloads": "Transferências", "downloads": "Transferências",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Timp rămas" "timeleft": "Timp rămas"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -886,7 +886,7 @@
"notifications": "Уведомления", "notifications": "Уведомления",
"issues": "Вопросы", "issues": "Вопросы",
"pulls": "Запросы на слияние (Pull Request)", "pulls": "Запросы на слияние (Pull Request)",
"repositories": "Репозитории" "repositories": "Repositories"
}, },
"stash": { "stash": {
"scenes": "Сцены", "scenes": "Сцены",
@ -1024,10 +1024,10 @@
"bcharge": "Заряд батареи", "bcharge": "Заряд батареи",
"timeleft": "Осталось" "timeleft": "Осталось"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Закладки", "bookmarks": "Закладки",
"favorites": "Избранное", "favorites": "Избранное",
"archived": "Архив", "archived": "Архивированное",
"highlights": "События", "highlights": "События",
"lists": "Список", "lists": "Список",
"tags": "Теги" "tags": "Теги"

View file

@ -1024,7 +1024,7 @@
"bcharge": "Nabitie batérie", "bcharge": "Nabitie batérie",
"timeleft": "Zostávajúci čas" "timeleft": "Zostávajúci čas"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Napolnjenost baterije", "bcharge": "Napolnjenost baterije",
"timeleft": "Preostali čas" "timeleft": "Preostali čas"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Time Left" "timeleft": "Time Left"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Tid kvar" "timeleft": "Tid kvar"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "మిగిలి వున్న సమయం" "timeleft": "మిగిలి వున్న సమయం"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Time Left" "timeleft": "Time Left"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -1024,7 +1024,7 @@
"bcharge": "Pil Yüzdesi", "bcharge": "Pil Yüzdesi",
"timeleft": "Kalan Zaman" "timeleft": "Kalan Zaman"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -120,7 +120,7 @@
"grid_power": "Сітка", "grid_power": "Сітка",
"home_power": "Споживання", "home_power": "Споживання",
"charge_power": "Зарядний пристрій", "charge_power": "Зарядний пристрій",
"kilowatt": "кВт" "kilowatt": "kW"
}, },
"flood": { "flood": {
"download": "Завантажено", "download": "Завантажено",
@ -149,8 +149,8 @@
"received": "Отримано", "received": "Отримано",
"sent": "Надіслано", "sent": "Надіслано",
"externalIPAddress": "Зовнішній IP", "externalIPAddress": "Зовнішній IP",
"externalIPv6Address": "Зовнішній IPv6", "externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Зовнішній Префікс IPv6-" "externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Потоки", "upstreams": "Потоки",
@ -178,7 +178,7 @@
"connectedAp": "Підключені точки доступу", "connectedAp": "Підключені точки доступу",
"activeUser": "Активні пристрої", "activeUser": "Активні пристрої",
"alerts": "Оповіщення", "alerts": "Оповіщення",
"connectedGateways": "Підключені шлюзи", "connectedGateways": "Connected gateways",
"connectedSwitches": "Підключені перемикачі" "connectedSwitches": "Підключені перемикачі"
}, },
"nzbget": { "nzbget": {
@ -420,8 +420,8 @@
}, },
"authentik": { "authentik": {
"users": "Користувачі", "users": "Користувачі",
"loginsLast24H": "Вхід (протягом доби)", "loginsLast24H": "Вхід (24 години)",
"failedLoginsLast24H": "Невдалі входи (протягом доби)" "failedLoginsLast24H": "Невдалі входи (24 години)"
}, },
"proxmox": { "proxmox": {
"mem": "ОЗП", "mem": "ОЗП",
@ -434,7 +434,7 @@
"load": "Завантаження", "load": "Завантаження",
"wait": "Будь ласка, зачекайте", "wait": "Будь ласка, зачекайте",
"temp": "Температура", "temp": "Температура",
"_temp": "Температура", "_temp": "Темп.",
"warn": "Увага", "warn": "Увага",
"uptime": "Онлайн", "uptime": "Онлайн",
"total": "Усього", "total": "Усього",
@ -616,7 +616,7 @@
}, },
"opendtu": { "opendtu": {
"yieldDay": "Сьогодні", "yieldDay": "Сьогодні",
"absolutePower": "Потужність", "absolutePower": "Абс. потуж.",
"relativePower": "Заряд %", "relativePower": "Заряд %",
"limit": "Ліміт" "limit": "Ліміт"
}, },
@ -648,13 +648,13 @@
"wanStatus": "Статус WAN", "wanStatus": "Статус WAN",
"up": "Онлайн", "up": "Онлайн",
"down": "Офлайн", "down": "Офлайн",
"temp": "Температура", "temp": "Темп.",
"disk": "Використання диска", "disk": "Використання диска",
"wanIP": "WAN IP" "wanIP": "WAN IP"
}, },
"proxmoxbackupserver": { "proxmoxbackupserver": {
"datastore_usage": "Сховище даних", "datastore_usage": "Сховище даних",
"failed_tasks_24h": "Невиконані завдання за останню добу", "failed_tasks_24h": "Невиконані завдання 24 години",
"cpu_usage": "ЦП", "cpu_usage": "ЦП",
"memory_usage": "Пам'ять" "memory_usage": "Пам'ять"
}, },
@ -705,8 +705,8 @@
"time": "Час" "time": "Час"
}, },
"firefly": { "firefly": {
"networth": "Чисті Активи", "networth": "Net Worth",
"budget": "Бюджет" "budget": "Budget"
}, },
"grafana": { "grafana": {
"dashboards": "Інформаційні панелі", "dashboards": "Інформаційні панелі",
@ -831,7 +831,7 @@
}, },
"openwrt": { "openwrt": {
"uptime": "Час роботи", "uptime": "Час роботи",
"cpuLoad": "Сер. навантаження ЦП (\"5\" хв)", "cpuLoad": "Сер. навантаження ЦП (5 хв)",
"up": "Онлайн", "up": "Онлайн",
"down": "Офлайн", "down": "Офлайн",
"bytesTx": "Передано", "bytesTx": "Передано",
@ -855,7 +855,7 @@
"inCinemas": "У кінотеатрах", "inCinemas": "У кінотеатрах",
"physicalRelease": "Фізичний реліз", "physicalRelease": "Фізичний реліз",
"digitalRelease": "Цифровий реліз", "digitalRelease": "Цифровий реліз",
"noEventsToday": "Події на сьогодні відсутні!", "noEventsToday": "Події на сьогодні відсутні",
"noEventsFound": "Події не знайдено" "noEventsFound": "Події не знайдено"
}, },
"romm": { "romm": {
@ -886,7 +886,7 @@
"notifications": "Сповіщення", "notifications": "Сповіщення",
"issues": "Питання", "issues": "Питання",
"pulls": "Pull-запити", "pulls": "Pull-запити",
"repositories": "Репозиторії" "repositories": "Repositories"
}, },
"stash": { "stash": {
"scenes": "Сцени", "scenes": "Сцени",
@ -1024,23 +1024,23 @@
"bcharge": "Заряд батареї", "bcharge": "Заряд батареї",
"timeleft": "Залишилось" "timeleft": "Залишилось"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Закладки", "bookmarks": "Bookmarks",
"favorites": "Обране", "favorites": "Favorites",
"archived": "Заархівовані", "archived": "Archived",
"highlights": "Основні моменти", "highlights": "Highlights",
"lists": "Списки", "lists": "Lists",
"tags": "Теги" "tags": "Теги"
}, },
"slskd": { "slskd": {
"slskStatus": "Мережа", "slskStatus": "Мережа",
"connected": "З'єднано", "connected": "З'єднано",
"disconnected": "Відключено", "disconnected": "Відключено",
"updateStatus": "Оновити", "updateStatus": "Update",
"update_yes": "Доступно", "update_yes": "Доступно",
"update_no": "Актуально", "update_no": "Актуально",
"downloads": "Завантаження", "downloads": "Downloads",
"uploads": "Вивантаження", "uploads": "Uploads",
"sharedFiles": "Файли" "sharedFiles": "Файли"
} }
} }

View file

@ -1024,7 +1024,7 @@
"bcharge": "Battery Charge", "bcharge": "Battery Charge",
"timeleft": "Thời gian còn lại" "timeleft": "Thời gian còn lại"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -5,9 +5,9 @@
"bbytes": "{{value, bytes(binary: true)}}", "bbytes": "{{value, bytes(binary: true)}}",
"bbits": "{{value, bytes(bits: true; binary: true)}}", "bbits": "{{value, bytes(bits: true; binary: true)}}",
"byterate": "{{value, rate(bits: false)}}", "byterate": "{{value, rate(bits: false)}}",
"bibyterate": "{{value, bytes(bits: true; binary: true)}}", "bibyterate": "{{value, rate(bits: false; binary: true)}}",
"bitrate": "{{value, rate(bits: true)}}", "bitrate": "{{value, rate(bits: true)}}",
"bibitrate": "{{value, bytes(bits: true; binary: true)}}", "bibitrate": "{{value, rate(bits: true; binary: true)}}",
"percent": "{{value, percent}}", "percent": "{{value, percent}}",
"number": "{{value, number}}", "number": "{{value, number}}",
"ms": "{{value, number}}", "ms": "{{value, number}}",
@ -120,7 +120,7 @@
"grid_power": "電網", "grid_power": "電網",
"home_power": "電源使用率", "home_power": "電源使用率",
"charge_power": "充電", "charge_power": "充電",
"kilowatt": "千瓦" "kilowatt": "kW"
}, },
"flood": { "flood": {
"download": "下載速率", "download": "下載速率",
@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "待辦的斷開", "connectionStatusPendingDisconnect": "待辦的斷開",
"connectionStatusDisconnecting": "正在中斷連線", "connectionStatusDisconnecting": "正在中斷連線",
"connectionStatusDisconnected": "連接已中斷", "connectionStatusDisconnected": "連接已中斷",
"connectionStatusConnected": "已連線", "connectionStatusConnected": "Connected",
"uptime": "運行時間", "uptime": "運行時間",
"maxDown": "最大下載速率", "maxDown": "最大下載速率",
"maxUp": "最大上傳速率", "maxUp": "最大上傳速率",
@ -149,8 +149,8 @@
"received": "已接收", "received": "已接收",
"sent": "已送出", "sent": "已送出",
"externalIPAddress": "外部 IP", "externalIPAddress": "外部 IP",
"externalIPv6Address": "外部 IP", "externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "擴展 IPv-前綴" "externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "上行", "upstreams": "上行",
@ -178,7 +178,7 @@
"connectedAp": "已連接的存取點", "connectedAp": "已連接的存取點",
"activeUser": "在線裝置", "activeUser": "在線裝置",
"alerts": "警示", "alerts": "警示",
"connectedGateways": "已連繫的網關", "connectedGateways": "Connected gateways",
"connectedSwitches": "已連接的交換器" "connectedSwitches": "已連接的交換器"
}, },
"nzbget": { "nzbget": {
@ -229,8 +229,8 @@
"seed": "已完成下載" "seed": "已完成下載"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "快取未命中位元組", "cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "快取未命中位元組" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "下載速率", "download": "下載速率",
@ -285,9 +285,9 @@
}, },
"netalertx": { "netalertx": {
"total": "全部", "total": "全部",
"connected": "已連線", "connected": "Connected",
"new_devices": "新裝置", "new_devices": "New Devices",
"down_alerts": "離線警告" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "查詢", "queries": "查詢",
@ -313,13 +313,13 @@
}, },
"suwayomi": { "suwayomi": {
"download": "下載咗", "download": "下載咗",
"nondownload": "已下載", "nondownload": "Non-Downloaded",
"read": "已讀", "read": "已讀",
"unread": "未讀", "unread": "未讀",
"downloadedread": "已下載且已閱讀", "downloadedread": "Downloaded & Read",
"downloadedunread": "已下載且未閱讀", "downloadedunread": "Downloaded & Unread",
"nondownloadedread": "未下載但已閱讀", "nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "未下載且未閱讀" "nondownloadedunread": "Non-Downloaded & Unread"
}, },
"tailscale": { "tailscale": {
"address": "位址", "address": "位址",
@ -337,15 +337,15 @@
}, },
"technitium": { "technitium": {
"totalQueries": "查詢", "totalQueries": "查詢",
"totalNoError": "成功", "totalNoError": "Success",
"totalServerFailure": "失敗", "totalServerFailure": "Failures",
"totalNxDomain": "網域", "totalNxDomain": "NX Domains",
"totalRefused": "對方拒投誠信", "totalRefused": "Refused",
"totalAuthoritative": "權威的", "totalAuthoritative": "Authoritative",
"totalRecursive": "遞迴", "totalRecursive": "Recursive",
"totalCached": "快取", "totalCached": "Cached",
"totalBlocked": "封鎖", "totalBlocked": "封鎖",
"totalDropped": "丟棄", "totalDropped": "Dropped",
"totalClients": "客戶端" "totalClients": "客戶端"
}, },
"tdarr": { "tdarr": {
@ -705,8 +705,8 @@
"time": "時間" "time": "時間"
}, },
"firefly": { "firefly": {
"networth": "淨值", "networth": "Net Worth",
"budget": "預算" "budget": "Budget"
}, },
"grafana": { "grafana": {
"dashboards": "控制面板", "dashboards": "控制面板",
@ -860,16 +860,16 @@
}, },
"romm": { "romm": {
"platforms": "平台", "platforms": "平台",
"totalRoms": "遊戲", "totalRoms": "Games",
"saves": "已儲存", "saves": "Saves",
"states": "", "states": "States",
"screenshots": "螢幕截圖", "screenshots": "Screenshots",
"totalfilesize": "大小總計" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "域", "domains": "域",
"mailboxes": "信箱", "mailboxes": "Mailboxes",
"mails": "郵件數", "mails": "Mails",
"storage": "儲存空間" "storage": "儲存空間"
}, },
"netdata": { "netdata": {
@ -886,7 +886,7 @@
"notifications": "信息", "notifications": "信息",
"issues": "出版", "issues": "出版",
"pulls": "提取請求", "pulls": "提取請求",
"repositories": "套件來源" "repositories": "Repositories"
}, },
"stash": { "stash": {
"scenes": "場景", "scenes": "場景",
@ -922,16 +922,16 @@
"bans": "禁止" "bans": "禁止"
}, },
"wgeasy": { "wgeasy": {
"connected": "已連線", "connected": "Connected",
"enabled": "啟用", "enabled": "啟用",
"disabled": "停用咗", "disabled": "停用咗",
"total": "全部" "total": "全部"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "已代理", "proxied": "Proxied",
"auth": "已授權", "auth": "With Auth",
"outdated": "須更新", "outdated": "Outdated",
"banned": "已封鎖" "banned": "Banned"
}, },
"myspeed": { "myspeed": {
"ping": "延遲", "ping": "延遲",
@ -939,43 +939,43 @@
"upload": "上傳速率" "upload": "上傳速率"
}, },
"stocks": { "stocks": {
"stocks": "股票", "stocks": "Stocks",
"loading": "載入中 ", "loading": "Loading",
"open": "美國市場已開放", "open": "Open - US Market",
"closed": "美國市場已關閉", "closed": "Closed - US Market",
"invalidConfiguration": "無效的設定" "invalidConfiguration": "Invalid Configuration"
}, },
"frigate": { "frigate": {
"cameras": " ", "cameras": "Cameras",
"uptime": "運行時間", "uptime": "運行時間",
"version": "版本" "version": "版本"
}, },
"linkwarden": { "linkwarden": {
"links": " ", "links": "Links",
"collections": "收藏庫", "collections": "Collections",
"tags": "標籤" "tags": "標籤"
}, },
"zabbix": { "zabbix": {
"unclassified": "未分類", "unclassified": "Not classified",
"information": "資訊", "information": "資訊",
"warning": "警告", "warning": "Warning",
"average": "平均", "average": "Average",
"high": "高優先權", "high": "High",
"disaster": "災難" "disaster": "Disaster"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "車輛", "vehicle": "Vehicle",
"vehicles": "車輛", "vehicles": "Vehicles",
"serviceRecords": "保養記錄", "serviceRecords": "Service Records",
"reminders": "提醒", "reminders": "Reminders",
"nextReminder": "下一個提醒", "nextReminder": "Next Reminder",
"none": "沒有" "none": "None"
}, },
"vikunja": { "vikunja": {
"projects": "正在應用的項目", "projects": "Active Projects",
"tasks7d": "本週到期任務", "tasks7d": "Tasks Due This Week",
"tasksOverdue": "逾期處理", "tasksOverdue": "Overdue Tasks",
"tasksInProgress": "正在執行的任務" "tasksInProgress": "Tasks In Progress"
}, },
"headscale": { "headscale": {
"name": "名稱", "name": "名稱",
@ -987,7 +987,7 @@
}, },
"beszel": { "beszel": {
"name": "名稱", "name": "名稱",
"systems": "系統", "systems": "Systems",
"up": "在線", "up": "在線",
"down": "離線", "down": "離線",
"paused": "擱置中", "paused": "擱置中",
@ -996,27 +996,27 @@
"updated": "已更新", "updated": "已更新",
"cpu": "CPU", "cpu": "CPU",
"memory": "記憶體", "memory": "記憶體",
"disk": "儲存空間", "disk": "Disk",
"network": "網路" "network": "NET"
}, },
"argocd": { "argocd": {
"apps": "應用程式", "apps": "Apps",
"synced": "已同步", "synced": "Synced",
"outOfSync": "不同步", "outOfSync": "Out Of Sync",
"healthy": "健康", "healthy": "健康",
"degraded": "已降級", "degraded": "Degraded",
"progressing": "進度", "progressing": "Progressing",
"missing": "缺少", "missing": "缺少",
"suspended": "暫停" "suspended": "Suspended"
}, },
"spoolman": { "spoolman": {
"loading": "載入中 " "loading": "Loading"
}, },
"gitlab": { "gitlab": {
"groups": "群組", "groups": "Groups",
"issues": "出版", "issues": "出版",
"merges": "合併請求", "merges": "Merge Requests",
"projects": "" "projects": "Projects"
}, },
"apcups": { "apcups": {
"status": "狀況", "status": "狀況",
@ -1024,23 +1024,23 @@
"bcharge": "充電", "bcharge": "充電",
"timeleft": "用時" "timeleft": "用時"
}, },
"karakeep": { "hoarder": {
"bookmarks": "書籤", "bookmarks": "Bookmarks",
"favorites": "我的最愛", "favorites": "Favorites",
"archived": "已存檔", "archived": "Archived",
"highlights": "標記", "highlights": "Highlights",
"lists": "列表", "lists": "Lists",
"tags": "標籤" "tags": "標籤"
}, },
"slskd": { "slskd": {
"slskStatus": "網絡", "slskStatus": "網絡",
"connected": "已連線", "connected": "Connected",
"disconnected": "連接已中斷", "disconnected": "連接已中斷",
"updateStatus": "更新", "updateStatus": "Update",
"update_yes": "可用", "update_yes": "可用",
"update_no": "已更新至最新", "update_no": "已更新至最新",
"downloads": "下載", "downloads": "Downloads",
"uploads": "上傳", "uploads": "Uploads",
"sharedFiles": "檔案" "sharedFiles": "檔案"
} }
} }

View file

@ -1024,7 +1024,7 @@
"bcharge": "充电中", "bcharge": "充电中",
"timeleft": "剩余时间" "timeleft": "剩余时间"
}, },
"karakeep": { "hoarder": {
"bookmarks": "Bookmarks", "bookmarks": "Bookmarks",
"favorites": "Favorites", "favorites": "Favorites",
"archived": "Archived", "archived": "Archived",

View file

@ -5,9 +5,9 @@
"bbytes": "{{value, bytes(binary: true)}}", "bbytes": "{{value, bytes(binary: true)}}",
"bbits": "{{value, bytes(bits: true; binary: true)}}", "bbits": "{{value, bytes(bits: true; binary: true)}}",
"byterate": "{{value, rate(bits: false)}}", "byterate": "{{value, rate(bits: false)}}",
"bibyterate": "{{value, bytes(bits: true; binary: true)}}", "bibyterate": "{{value, rate(bits: false; binary: true)}}",
"bitrate": "{{value, rate(bits: true)}}", "bitrate": "{{value, rate(bits: true)}}",
"bibitrate": "{{value, bytes(bits: true; binary: true)}}", "bibitrate": "{{value, rate(bits: true; binary: true)}}",
"percent": "{{value, percent}}", "percent": "{{value, percent}}",
"number": "{{value, number}}", "number": "{{value, number}}",
"ms": "{{value, number}}", "ms": "{{value, number}}",
@ -120,7 +120,7 @@
"grid_power": "電網", "grid_power": "電網",
"home_power": "電源使用率", "home_power": "電源使用率",
"charge_power": "充電", "charge_power": "充電",
"kilowatt": "千瓦" "kilowatt": "kW"
}, },
"flood": { "flood": {
"download": "下載速率", "download": "下載速率",
@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "待辦的斷開", "connectionStatusPendingDisconnect": "待辦的斷開",
"connectionStatusDisconnecting": "正在中斷連線", "connectionStatusDisconnecting": "正在中斷連線",
"connectionStatusDisconnected": "連接已中斷", "connectionStatusDisconnected": "連接已中斷",
"connectionStatusConnected": "已連線", "connectionStatusConnected": "Connected",
"uptime": "運行時間", "uptime": "運行時間",
"maxDown": "最大下載速率", "maxDown": "最大下載速率",
"maxUp": "最大上傳速率", "maxUp": "最大上傳速率",
@ -149,8 +149,8 @@
"received": "已接收", "received": "已接收",
"sent": "已送出", "sent": "已送出",
"externalIPAddress": "外部 IP", "externalIPAddress": "外部 IP",
"externalIPv6Address": "外部 IP", "externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "擴展 IPv-前綴" "externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "上行", "upstreams": "上行",
@ -178,7 +178,7 @@
"connectedAp": "已連接的存取點", "connectedAp": "已連接的存取點",
"activeUser": "在線裝置", "activeUser": "在線裝置",
"alerts": "警示", "alerts": "警示",
"connectedGateways": "已連繫的網關", "connectedGateways": "Connected gateways",
"connectedSwitches": "已連接的交換器" "connectedSwitches": "已連接的交換器"
}, },
"nzbget": { "nzbget": {
@ -229,8 +229,8 @@
"seed": "已完成下載" "seed": "已完成下載"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "快取未命中位元組", "cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "快取未命中位元組" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "下載速率", "download": "下載速率",
@ -285,9 +285,9 @@
}, },
"netalertx": { "netalertx": {
"total": "全部", "total": "全部",
"connected": "已連線", "connected": "Connected",
"new_devices": "新裝置", "new_devices": "New Devices",
"down_alerts": "離線警告" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "查詢", "queries": "查詢",
@ -313,13 +313,13 @@
}, },
"suwayomi": { "suwayomi": {
"download": "已下載", "download": "已下載",
"nondownload": "已下載", "nondownload": "Non-Downloaded",
"read": "已讀", "read": "已讀",
"unread": "未讀", "unread": "未讀",
"downloadedread": "已下載且已閱讀", "downloadedread": "Downloaded & Read",
"downloadedunread": "已下載且未閱讀", "downloadedunread": "Downloaded & Unread",
"nondownloadedread": "未下載但已閱讀", "nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "未下載且未閱讀" "nondownloadedunread": "Non-Downloaded & Unread"
}, },
"tailscale": { "tailscale": {
"address": "位址", "address": "位址",
@ -337,15 +337,15 @@
}, },
"technitium": { "technitium": {
"totalQueries": "查詢", "totalQueries": "查詢",
"totalNoError": "成功", "totalNoError": "Success",
"totalServerFailure": "失敗", "totalServerFailure": "Failures",
"totalNxDomain": "網域", "totalNxDomain": "NX Domains",
"totalRefused": "對方拒投誠信", "totalRefused": "Refused",
"totalAuthoritative": "權威的", "totalAuthoritative": "Authoritative",
"totalRecursive": "遞迴", "totalRecursive": "Recursive",
"totalCached": "快取", "totalCached": "Cached",
"totalBlocked": "已阻擋", "totalBlocked": "已阻擋",
"totalDropped": "丟棄", "totalDropped": "Dropped",
"totalClients": "客戶端" "totalClients": "客戶端"
}, },
"tdarr": { "tdarr": {
@ -705,8 +705,8 @@
"time": "時間" "time": "時間"
}, },
"firefly": { "firefly": {
"networth": "淨值", "networth": "Net Worth",
"budget": "預算" "budget": "Budget"
}, },
"grafana": { "grafana": {
"dashboards": "控制面板", "dashboards": "控制面板",
@ -860,16 +860,16 @@
}, },
"romm": { "romm": {
"platforms": "平台", "platforms": "平台",
"totalRoms": "遊戲", "totalRoms": "Games",
"saves": "已儲存", "saves": "Saves",
"states": "", "states": "States",
"screenshots": "螢幕截圖", "screenshots": "Screenshots",
"totalfilesize": "大小總計" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "網域", "domains": "網域",
"mailboxes": "信箱", "mailboxes": "Mailboxes",
"mails": "郵件數", "mails": "Mails",
"storage": "儲存空間" "storage": "儲存空間"
}, },
"netdata": { "netdata": {
@ -886,7 +886,7 @@
"notifications": "信息", "notifications": "信息",
"issues": "出版", "issues": "出版",
"pulls": "提取請求", "pulls": "提取請求",
"repositories": "套件來源" "repositories": "Repositories"
}, },
"stash": { "stash": {
"scenes": "場景", "scenes": "場景",
@ -922,16 +922,16 @@
"bans": "禁止" "bans": "禁止"
}, },
"wgeasy": { "wgeasy": {
"connected": "已連線", "connected": "Connected",
"enabled": "已啟用", "enabled": "已啟用",
"disabled": "已停用", "disabled": "已停用",
"total": "全部" "total": "全部"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "已代理", "proxied": "Proxied",
"auth": "已授權", "auth": "With Auth",
"outdated": "須更新", "outdated": "Outdated",
"banned": "已封鎖" "banned": "Banned"
}, },
"myspeed": { "myspeed": {
"ping": "延遲", "ping": "延遲",
@ -939,43 +939,43 @@
"upload": "上傳速率" "upload": "上傳速率"
}, },
"stocks": { "stocks": {
"stocks": "股票", "stocks": "Stocks",
"loading": "載入中 ", "loading": "Loading",
"open": "美國市場已開放", "open": "Open - US Market",
"closed": "美國市場已關閉", "closed": "Closed - US Market",
"invalidConfiguration": "無效的設定" "invalidConfiguration": "Invalid Configuration"
}, },
"frigate": { "frigate": {
"cameras": " ", "cameras": "Cameras",
"uptime": "運行時間", "uptime": "運行時間",
"version": "版本" "version": "版本"
}, },
"linkwarden": { "linkwarden": {
"links": " ", "links": "Links",
"collections": "收藏庫", "collections": "Collections",
"tags": "標籤" "tags": "標籤"
}, },
"zabbix": { "zabbix": {
"unclassified": "未分類", "unclassified": "Not classified",
"information": "資訊", "information": "資訊",
"warning": "警告", "warning": "Warning",
"average": "平均", "average": "Average",
"high": "高優先權", "high": "High",
"disaster": "災難" "disaster": "Disaster"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "車輛", "vehicle": "Vehicle",
"vehicles": "車輛", "vehicles": "Vehicles",
"serviceRecords": "保養記錄", "serviceRecords": "Service Records",
"reminders": "提醒", "reminders": "Reminders",
"nextReminder": "下一個提醒", "nextReminder": "Next Reminder",
"none": "沒有" "none": "None"
}, },
"vikunja": { "vikunja": {
"projects": "正在應用的項目", "projects": "Active Projects",
"tasks7d": "本週到期任務", "tasks7d": "Tasks Due This Week",
"tasksOverdue": "逾期處理", "tasksOverdue": "Overdue Tasks",
"tasksInProgress": "正在執行的任務" "tasksInProgress": "Tasks In Progress"
}, },
"headscale": { "headscale": {
"name": "名稱", "name": "名稱",
@ -987,7 +987,7 @@
}, },
"beszel": { "beszel": {
"name": "名稱", "name": "名稱",
"systems": "系統", "systems": "Systems",
"up": "在線", "up": "在線",
"down": "離線", "down": "離線",
"paused": "擱置中", "paused": "擱置中",
@ -996,27 +996,27 @@
"updated": "已更新", "updated": "已更新",
"cpu": "CPU", "cpu": "CPU",
"memory": "記憶體", "memory": "記憶體",
"disk": "儲存空間", "disk": "Disk",
"network": "網路" "network": "NET"
}, },
"argocd": { "argocd": {
"apps": "應用程式", "apps": "Apps",
"synced": "已同步", "synced": "Synced",
"outOfSync": "不同步", "outOfSync": "Out Of Sync",
"healthy": "健康", "healthy": "健康",
"degraded": "已降級", "degraded": "Degraded",
"progressing": "進度", "progressing": "Progressing",
"missing": "缺少", "missing": "缺少",
"suspended": "暫停" "suspended": "Suspended"
}, },
"spoolman": { "spoolman": {
"loading": "載入中 " "loading": "Loading"
}, },
"gitlab": { "gitlab": {
"groups": "群組", "groups": "Groups",
"issues": "出版", "issues": "出版",
"merges": "合併請求", "merges": "Merge Requests",
"projects": "" "projects": "Projects"
}, },
"apcups": { "apcups": {
"status": "狀態", "status": "狀態",
@ -1024,23 +1024,23 @@
"bcharge": "充電", "bcharge": "充電",
"timeleft": "剩餘時間" "timeleft": "剩餘時間"
}, },
"karakeep": { "hoarder": {
"bookmarks": "書籤", "bookmarks": "Bookmarks",
"favorites": "我的最愛", "favorites": "Favorites",
"archived": "已存檔", "archived": "Archived",
"highlights": "標記", "highlights": "Highlights",
"lists": "列表", "lists": "Lists",
"tags": "標籤" "tags": "標籤"
}, },
"slskd": { "slskd": {
"slskStatus": "網絡", "slskStatus": "網絡",
"connected": "已連線", "connected": "Connected",
"disconnected": "連接已中斷", "disconnected": "連接已中斷",
"updateStatus": "更新", "updateStatus": "Update",
"update_yes": "可觀看", "update_yes": "可觀看",
"update_no": "已更新至最新", "update_no": "已更新至最新",
"downloads": "下載", "downloads": "Downloads",
"uploads": "上傳", "uploads": "Uploads",
"sharedFiles": "檔案" "sharedFiles": "檔案"
} }
} }

View file

@ -1,10 +1,10 @@
import { Disclosure, Transition } from "@headlessui/react"; import { useRef, useEffect } from "react";
import classNames from "classnames"; import classNames from "classnames";
import List from "components/bookmarks/list"; import { Disclosure, Transition } from "@headlessui/react";
import ErrorBoundary from "components/errorboundry";
import ResolvedIcon from "components/resolvedicon";
import { useEffect, useRef } from "react";
import { MdKeyboardArrowDown } from "react-icons/md"; import { MdKeyboardArrowDown } from "react-icons/md";
import ErrorBoundary from "components/errorboundry";
import List from "components/bookmarks/list";
import ResolvedIcon from "components/resolvedicon";
export default function BookmarksGroup({ export default function BookmarksGroup({
bookmarks, bookmarks,

View file

@ -1,7 +1,7 @@
import classNames from "classnames";
import ResolvedIcon from "components/resolvedicon";
import { useContext } from "react"; import { useContext } from "react";
import classNames from "classnames";
import { SettingsContext } from "utils/contexts/settings"; import { SettingsContext } from "utils/contexts/settings";
import ResolvedIcon from "components/resolvedicon";
export default function Item({ bookmark, iconOnly = false }) { export default function Item({ bookmark, iconOnly = false }) {
const description = bookmark.description ?? new URL(bookmark.href).hostname; const description = bookmark.description ?? new URL(bookmark.href).hostname;

View file

@ -1,6 +1,6 @@
/* eslint-disable @next/next/no-img-element */ /* eslint-disable @next/next/no-img-element */
/* eslint-disable jsx-a11y/alt-text */ /* eslint-disable jsx-a11y/alt-text */
import { useContext, useEffect, useRef } from "react"; import { useRef, useEffect, useContext } from "react";
import { ColorContext } from "utils/contexts/color"; import { ColorContext } from "utils/contexts/color";
import themes from "utils/styles/themes"; import themes from "utils/styles/themes";

View file

@ -1,6 +1,6 @@
import { useTranslation } from "react-i18next";
import { useEffect, useState, useRef, useCallback, useContext } from "react";
import classNames from "classnames"; import classNames from "classnames";
import { useTranslation } from "next-i18next";
import { useCallback, useContext, useEffect, useRef, useState } from "react";
import useSWR from "swr"; import useSWR from "swr";
import { SettingsContext } from "utils/contexts/settings"; import { SettingsContext } from "utils/contexts/settings";
@ -53,7 +53,7 @@ export default function QuickLaunch({ servicesAndBookmarks, searchString, setSea
const result = results[currentItemIndex]; const result = results[currentItemIndex];
window.open( window.open(
result.href, result.href,
newWindow ? "_blank" : (result.target ?? searchProvider?.target ?? settings.target ?? "_blank"), newWindow ? "_blank" : result.target ?? searchProvider?.target ?? settings.target ?? "_blank",
"noreferrer", "noreferrer",
); );
} }
@ -204,8 +204,7 @@ export default function QuickLaunch({ servicesAndBookmarks, searchString, setSea
return () => { return () => {
abortController.abort(); abortController.abort();
}; };
// eslint-disable-next-line react-hooks/exhaustive-deps }, [searchString, servicesAndBookmarks, searchDescriptions, hideVisitURL, searchSuggestions, searchProvider, url, t]);
}, [searchString, servicesAndBookmarks, searchDescriptions, hideVisitURL, searchSuggestions, searchProvider, url]);
const [hidden, setHidden] = useState(true); const [hidden, setHidden] = useState(true);
useEffect(() => { useEffect(() => {

View file

@ -1,5 +1,5 @@
import Image from "next/image";
import { useContext } from "react"; import { useContext } from "react";
import Image from "next/image";
import { SettingsContext } from "utils/contexts/settings"; import { SettingsContext } from "utils/contexts/settings";
import { ThemeContext } from "utils/contexts/theme"; import { ThemeContext } from "utils/contexts/theme";

View file

@ -1,7 +1,7 @@
import { Menu, Transition } from "@headlessui/react";
import classNames from "classnames";
import { Fragment } from "react"; import { Fragment } from "react";
import { Menu, Transition } from "@headlessui/react";
import { BiCog } from "react-icons/bi"; import { BiCog } from "react-icons/bi";
import classNames from "classnames";
export default function Dropdown({ options, value, setValue }) { export default function Dropdown({ options, value, setValue }) {
return ( return (

View file

@ -1,9 +1,9 @@
import { Disclosure, Transition } from "@headlessui/react"; import { useRef, useEffect } from "react";
import classNames from "classnames"; import classNames from "classnames";
import ResolvedIcon from "components/resolvedicon"; import { Disclosure, Transition } from "@headlessui/react";
import List from "components/services/list";
import { useEffect, useRef } from "react";
import { MdKeyboardArrowDown } from "react-icons/md"; import { MdKeyboardArrowDown } from "react-icons/md";
import List from "components/services/list";
import ResolvedIcon from "components/resolvedicon";
import { columnMap } from "../../utils/layout/columns"; import { columnMap } from "../../utils/layout/columns";

View file

@ -1,15 +1,15 @@
import classNames from "classnames"; import classNames from "classnames";
import ResolvedIcon from "components/resolvedicon";
import { useContext, useState } from "react"; import { useContext, useState } from "react";
import { SettingsContext } from "utils/contexts/settings";
import Docker from "widgets/docker/component"; import Docker from "widgets/docker/component";
import Kubernetes from "widgets/kubernetes/component"; import Kubernetes from "widgets/kubernetes/component";
import { SettingsContext } from "utils/contexts/settings";
import ResolvedIcon from "components/resolvedicon";
import KubernetesStatus from "./kubernetes-status";
import Ping from "./ping";
import SiteMonitor from "./site-monitor";
import Status from "./status"; import Status from "./status";
import Widget from "./widget"; import Widget from "./widget";
import Ping from "./ping";
import SiteMonitor from "./site-monitor";
import KubernetesStatus from "./kubernetes-status";
export default function Item({ service, groupName, useEqualHeights }) { export default function Item({ service, groupName, useEqualHeights }) {
const hasLink = service.href && service.href !== "#"; const hasLink = service.href && service.href !== "#";

View file

@ -1,5 +1,5 @@
import { t } from "i18next";
import useSWR from "swr"; import useSWR from "swr";
import { t } from "i18next";
export default function KubernetesStatus({ service, style }) { export default function KubernetesStatus({ service, style }) {
const podSelectorString = service.podSelector !== undefined ? `podSelector=${service.podSelector}` : ""; const podSelectorString = service.podSelector !== undefined ? `podSelector=${service.podSelector}` : "";

View file

@ -1,4 +1,4 @@
import { useTranslation } from "next-i18next"; import { useTranslation } from "react-i18next";
import useSWR from "swr"; import useSWR from "swr";
export default function Ping({ groupName, serviceName, style }) { export default function Ping({ groupName, serviceName, style }) {

View file

@ -1,4 +1,4 @@
import { useTranslation } from "next-i18next"; import { useTranslation } from "react-i18next";
import useSWR from "swr"; import useSWR from "swr";
export default function SiteMonitor({ groupName, serviceName, style }) { export default function SiteMonitor({ groupName, serviceName, style }) {

View file

@ -1,4 +1,4 @@
import { useTranslation } from "next-i18next"; import { useTranslation } from "react-i18next";
import useSWR from "swr"; import useSWR from "swr";
export default function Status({ service, style }) { export default function Status({ service, style }) {

View file

@ -1,5 +1,5 @@
import ErrorBoundary from "components/errorboundry";
import { useTranslation } from "next-i18next"; import { useTranslation } from "next-i18next";
import ErrorBoundary from "components/errorboundry";
import components from "widgets/components"; import components from "widgets/components";

View file

@ -1,5 +1,5 @@
import classNames from "classnames";
import { useTranslation } from "next-i18next"; import { useTranslation } from "next-i18next";
import classNames from "classnames";
export default function Block({ value, label }) { export default function Block({ value, label }) {
const { t } = useTranslation(); const { t } = useTranslation();

View file

@ -3,11 +3,6 @@ import { SettingsContext } from "utils/contexts/settings";
import Error from "./error"; import Error from "./error";
const ALIASED_WIDGETS = {
pialert: "netalertx",
hoarder: "karakeep",
};
export default function Container({ error = false, children, service }) { export default function Container({ error = false, children, service }) {
const { settings } = useContext(SettingsContext); const { settings } = useContext(SettingsContext);
@ -37,17 +32,7 @@ export default function Container({ error = false, children, service }) {
if (!field.includes(".")) { if (!field.includes(".")) {
fullField = `${type}.${field}`; fullField = `${type}.${field}`;
} }
let matches = fullField === child?.props?.label; return fullField === child?.props?.label;
// check if the field is an 'alias'
if (matches) {
return true;
} else if (ALIASED_WIDGETS[type]) {
matches = fullField.replace(type, ALIASED_WIDGETS[type]) === child?.props?.label;
return matches;
}
// no match
return false;
}), }),
); );
} }

View file

@ -1,4 +1,4 @@
import { useTranslation } from "next-i18next"; import { useTranslation } from "react-i18next";
import { IoAlertCircle } from "react-icons/io5"; import { IoAlertCircle } from "react-icons/io5";
function displayError(error) { function displayError(error) {

View file

@ -1,5 +1,5 @@
import classNames from "classnames";
import { useContext } from "react"; import { useContext } from "react";
import classNames from "classnames";
import { TabContext } from "utils/contexts/tab"; import { TabContext } from "utils/contexts/tab";
function slugify(tabName) { function slugify(tabName) {

View file

@ -1,7 +1,7 @@
import { useContext, Fragment } from "react";
import { IoColorPalette } from "react-icons/io5";
import { Popover, Transition } from "@headlessui/react"; import { Popover, Transition } from "@headlessui/react";
import classNames from "classnames"; import classNames from "classnames";
import { Fragment, useContext } from "react";
import { IoColorPalette } from "react-icons/io5";
import { ColorContext } from "utils/contexts/color"; import { ColorContext } from "utils/contexts/color";
const colors = [ const colors = [

View file

@ -1,8 +1,8 @@
import { compareVersions, validate } from "compare-versions";
import cache from "memory-cache"; import cache from "memory-cache";
import { useTranslation } from "next-i18next"; import { useTranslation } from "next-i18next";
import { MdNewReleases } from "react-icons/md";
import useSWR from "swr"; import useSWR from "swr";
import { compareVersions, validate } from "compare-versions";
import { MdNewReleases } from "react-icons/md";
const LATEST_RELEASE_CACHE_KEY = "latestRelease"; const LATEST_RELEASE_CACHE_KEY = "latestRelease";

View file

@ -1,5 +1,5 @@
import { useState, useEffect } from "react";
import { useTranslation } from "next-i18next"; import { useTranslation } from "next-i18next";
import { useEffect, useState } from "react";
import Container from "../widget/container"; import Container from "../widget/container";
import Raw from "../widget/raw"; import Raw from "../widget/raw";

View file

@ -1,9 +1,9 @@
import classNames from "classnames"; import useSWR from "swr";
import { useTranslation } from "next-i18next";
import { useContext } from "react"; import { useContext } from "react";
import { FaMemory, FaRegClock, FaThermometerHalf } from "react-icons/fa"; import { FaMemory, FaRegClock, FaThermometerHalf } from "react-icons/fa";
import { FiCpu, FiHardDrive } from "react-icons/fi"; import { FiCpu, FiHardDrive } from "react-icons/fi";
import useSWR from "swr"; import { useTranslation } from "next-i18next";
import classNames from "classnames";
import { SettingsContext } from "utils/contexts/settings"; import { SettingsContext } from "utils/contexts/settings";
import Error from "../widget/error"; import Error from "../widget/error";

View file

@ -1,8 +1,8 @@
import { useTranslation } from "next-i18next";
import useSWR from "swr"; import useSWR from "swr";
import { useTranslation } from "next-i18next";
import Container from "../widget/container";
import Error from "../widget/error"; import Error from "../widget/error";
import Container from "../widget/container";
import Raw from "../widget/raw"; import Raw from "../widget/raw";
import Node from "./node"; import Node from "./node";

View file

@ -1,7 +1,7 @@
import { useTranslation } from "next-i18next";
import { FaMemory } from "react-icons/fa"; import { FaMemory } from "react-icons/fa";
import { FiAlertTriangle, FiCpu, FiServer } from "react-icons/fi"; import { FiAlertTriangle, FiCpu, FiServer } from "react-icons/fi";
import { SiKubernetes } from "react-icons/si"; import { SiKubernetes } from "react-icons/si";
import { useTranslation } from "next-i18next";
import UsageBar from "../resources/usage-bar"; import UsageBar from "../resources/usage-bar";

View file

@ -1,7 +1,7 @@
import useSWR from "swr"; import useSWR from "swr";
import Container from "../widget/container";
import Error from "../widget/error"; import Error from "../widget/error";
import Container from "../widget/container";
import Raw from "../widget/raw"; import Raw from "../widget/raw";
import Node from "./node"; import Node from "./node";
@ -32,8 +32,8 @@ export default function Longhorn({ options }) {
<div className="flex flex-row self-center flex-wrap justify-between"> <div className="flex flex-row self-center flex-wrap justify-between">
{data.nodes {data.nodes
.filter((node) => { .filter((node) => {
if (node.id === "total") { if (node.id === "total" && total) {
return total; return true;
} }
if (!nodes) { if (!nodes) {
return false; return false;

View file

@ -1,16 +1,16 @@
import { useTranslation } from "next-i18next";
import { useState } from "react";
import { MdLocationDisabled, MdLocationSearching } from "react-icons/md";
import { WiCloudDown } from "react-icons/wi";
import useSWR from "swr"; import useSWR from "swr";
import { useState } from "react";
import { WiCloudDown } from "react-icons/wi";
import { MdLocationDisabled, MdLocationSearching } from "react-icons/md";
import { useTranslation } from "next-i18next";
import mapIcon from "../../../utils/weather/openmeteo-condition-map"; import Error from "../widget/error";
import Container from "../widget/container"; import Container from "../widget/container";
import ContainerButton from "../widget/container_button"; import ContainerButton from "../widget/container_button";
import Error from "../widget/error"; import WidgetIcon from "../widget/widget_icon";
import PrimaryText from "../widget/primary_text"; import PrimaryText from "../widget/primary_text";
import SecondaryText from "../widget/secondary_text"; import SecondaryText from "../widget/secondary_text";
import WidgetIcon from "../widget/widget_icon"; import mapIcon from "../../../utils/weather/openmeteo-condition-map";
function Widget({ options }) { function Widget({ options }) {
const { t } = useTranslation(); const { t } = useTranslation();

View file

@ -1,16 +1,16 @@
import { useTranslation } from "next-i18next";
import { useState } from "react";
import { MdLocationDisabled, MdLocationSearching } from "react-icons/md";
import { WiCloudDown } from "react-icons/wi";
import useSWR from "swr"; import useSWR from "swr";
import { useState } from "react";
import { WiCloudDown } from "react-icons/wi";
import { MdLocationDisabled, MdLocationSearching } from "react-icons/md";
import { useTranslation } from "next-i18next";
import mapIcon from "../../../utils/weather/owm-condition-map"; import Error from "../widget/error";
import Container from "../widget/container"; import Container from "../widget/container";
import ContainerButton from "../widget/container_button"; import ContainerButton from "../widget/container_button";
import Error from "../widget/error";
import PrimaryText from "../widget/primary_text"; import PrimaryText from "../widget/primary_text";
import SecondaryText from "../widget/secondary_text"; import SecondaryText from "../widget/secondary_text";
import WidgetIcon from "../widget/widget_icon"; import WidgetIcon from "../widget/widget_icon";
import mapIcon from "../../../utils/weather/owm-condition-map";
function Widget({ options }) { function Widget({ options }) {
const { t, i18n } = useTranslation(); const { t, i18n } = useTranslation();

View file

@ -1,9 +1,9 @@
import { useTranslation } from "next-i18next";
import { FiCpu } from "react-icons/fi";
import useSWR from "swr"; import useSWR from "swr";
import { FiCpu } from "react-icons/fi";
import { useTranslation } from "next-i18next";
import Error from "../widget/error";
import Resource from "../widget/resource"; import Resource from "../widget/resource";
import Error from "../widget/error";
export default function Cpu({ expanded, refresh = 1500 }) { export default function Cpu({ expanded, refresh = 1500 }) {
const { t } = useTranslation(); const { t } = useTranslation();

View file

@ -1,9 +1,9 @@
import { useTranslation } from "next-i18next";
import { FaThermometerHalf } from "react-icons/fa";
import useSWR from "swr"; import useSWR from "swr";
import { FaThermometerHalf } from "react-icons/fa";
import { useTranslation } from "next-i18next";
import Error from "../widget/error";
import Resource from "../widget/resource"; import Resource from "../widget/resource";
import Error from "../widget/error";
function convertToFahrenheit(t) { function convertToFahrenheit(t) {
return (t * 9) / 5 + 32; return (t * 9) / 5 + 32;

View file

@ -1,9 +1,9 @@
import { useTranslation } from "next-i18next";
import { FiHardDrive } from "react-icons/fi";
import useSWR from "swr"; import useSWR from "swr";
import { FiHardDrive } from "react-icons/fi";
import { useTranslation } from "next-i18next";
import Error from "../widget/error";
import Resource from "../widget/resource"; import Resource from "../widget/resource";
import Error from "../widget/error";
export default function Disk({ options, expanded, diskUnits, refresh = 1500 }) { export default function Disk({ options, expanded, diskUnits, refresh = 1500 }) {
const { t } = useTranslation(); const { t } = useTranslation();

View file

@ -1,9 +1,9 @@
import { useTranslation } from "next-i18next";
import { FaMemory } from "react-icons/fa";
import useSWR from "swr"; import useSWR from "swr";
import { FaMemory } from "react-icons/fa";
import { useTranslation } from "next-i18next";
import Error from "../widget/error";
import Resource from "../widget/resource"; import Resource from "../widget/resource";
import Error from "../widget/error";
export default function Memory({ expanded, refresh = 1500 }) { export default function Memory({ expanded, refresh = 1500 }) {
const { t } = useTranslation(); const { t } = useTranslation();

View file

@ -1,9 +1,9 @@
import { useTranslation } from "next-i18next";
import { FaNetworkWired } from "react-icons/fa";
import useSWR from "swr"; import useSWR from "swr";
import { FaNetworkWired } from "react-icons/fa";
import { useTranslation } from "next-i18next";
import Error from "../widget/error";
import Resource from "../widget/resource"; import Resource from "../widget/resource";
import Error from "../widget/error";
export default function Network({ options, refresh = 1500 }) { export default function Network({ options, refresh = 1500 }) {
const { t } = useTranslation(); const { t } = useTranslation();

View file

@ -1,12 +1,12 @@
import Container from "../widget/container"; import Container from "../widget/container";
import Raw from "../widget/raw"; import Raw from "../widget/raw";
import Cpu from "./cpu";
import CpuTemp from "./cputemp";
import Disk from "./disk"; import Disk from "./disk";
import Cpu from "./cpu";
import Memory from "./memory"; import Memory from "./memory";
import Network from "./network"; import CpuTemp from "./cputemp";
import Uptime from "./uptime"; import Uptime from "./uptime";
import Network from "./network";
export default function Resources({ options }) { export default function Resources({ options }) {
const { expanded, units, diskUnits, tempmin, tempmax } = options; const { expanded, units, diskUnits, tempmin, tempmax } = options;

View file

@ -1,9 +1,9 @@
import { useTranslation } from "next-i18next";
import { FaRegClock } from "react-icons/fa";
import useSWR from "swr"; import useSWR from "swr";
import { FaRegClock } from "react-icons/fa";
import { useTranslation } from "next-i18next";
import Error from "../widget/error";
import Resource from "../widget/resource"; import Resource from "../widget/resource";
import Error from "../widget/error";
export default function Uptime({ refresh = 1500 }) { export default function Uptime({ refresh = 1500 }) {
const { t } = useTranslation(); const { t } = useTranslation();

View file

@ -1,10 +1,10 @@
import { Combobox, Listbox, Transition } from "@headlessui/react"; import { useState, useEffect, Fragment } from "react";
import classNames from "classnames";
import { useTranslation } from "next-i18next"; import { useTranslation } from "next-i18next";
import { Fragment, useEffect, useState } from "react";
import { BiLogoBing } from "react-icons/bi";
import { FiSearch } from "react-icons/fi"; import { FiSearch } from "react-icons/fi";
import { SiBaidu, SiBrave, SiDuckduckgo, SiGoogle } from "react-icons/si"; import { SiDuckduckgo, SiGoogle, SiBaidu, SiBrave } from "react-icons/si";
import { BiLogoBing } from "react-icons/bi";
import { Listbox, Transition, Combobox } from "@headlessui/react";
import classNames from "classnames";
import ContainerForm from "../widget/container_form"; import ContainerForm from "../widget/container_form";
import Raw from "../widget/raw"; import Raw from "../widget/raw";

View file

@ -1,13 +1,13 @@
import { useTranslation } from "next-i18next";
import { useState } from "react";
import { FaChartLine } from "react-icons/fa6";
import useSWR from "swr"; import useSWR from "swr";
import { useState } from "react";
import { useTranslation } from "next-i18next";
import { FaChartLine } from "react-icons/fa6";
import Container from "../widget/container";
import Error from "../widget/error"; import Error from "../widget/error";
import Container from "../widget/container";
import PrimaryText from "../widget/primary_text"; import PrimaryText from "../widget/primary_text";
import Raw from "../widget/raw";
import WidgetIcon from "../widget/widget_icon"; import WidgetIcon from "../widget/widget_icon";
import Raw from "../widget/raw";
export default function Widget({ options }) { export default function Widget({ options }) {
const { t, i18n } = useTranslation(); const { t, i18n } = useTranslation();

View file

@ -1,13 +1,13 @@
import { useTranslation } from "next-i18next"; import { BiError, BiWifi, BiCheckCircle, BiXCircle, BiNetworkChart } from "react-icons/bi";
import { BiCheckCircle, BiError, BiNetworkChart, BiWifi, BiXCircle } from "react-icons/bi";
import { MdSettingsEthernet } from "react-icons/md"; import { MdSettingsEthernet } from "react-icons/md";
import { useTranslation } from "next-i18next";
import { SiUbiquiti } from "react-icons/si"; import { SiUbiquiti } from "react-icons/si";
import Container from "../widget/container";
import Error from "../widget/error"; import Error from "../widget/error";
import PrimaryText from "../widget/primary_text"; import Container from "../widget/container";
import Raw from "../widget/raw"; import Raw from "../widget/raw";
import WidgetIcon from "../widget/widget_icon"; import WidgetIcon from "../widget/widget_icon";
import PrimaryText from "../widget/primary_text";
import useWidgetAPI from "utils/proxy/use-widget-api"; import useWidgetAPI from "utils/proxy/use-widget-api";

View file

@ -1,16 +1,16 @@
import { useTranslation } from "next-i18next";
import { useState } from "react";
import { MdLocationDisabled, MdLocationSearching } from "react-icons/md";
import { WiCloudDown } from "react-icons/wi";
import useSWR from "swr"; import useSWR from "swr";
import { useState } from "react";
import { WiCloudDown } from "react-icons/wi";
import { MdLocationDisabled, MdLocationSearching } from "react-icons/md";
import { useTranslation } from "next-i18next";
import mapIcon from "../../../utils/weather/condition-map";
import Container from "../widget/container";
import ContainerButton from "../widget/container_button";
import Error from "../widget/error"; import Error from "../widget/error";
import Container from "../widget/container";
import PrimaryText from "../widget/primary_text"; import PrimaryText from "../widget/primary_text";
import SecondaryText from "../widget/secondary_text"; import SecondaryText from "../widget/secondary_text";
import WidgetIcon from "../widget/widget_icon"; import WidgetIcon from "../widget/widget_icon";
import ContainerButton from "../widget/container_button";
import mapIcon from "../../../utils/weather/condition-map";
function Widget({ options }) { function Widget({ options }) {
const { t, i18n } = useTranslation(); const { t, i18n } = useTranslation();

View file

@ -1,5 +1,5 @@
import ErrorBoundary from "components/errorboundry";
import dynamic from "next/dynamic"; import dynamic from "next/dynamic";
import ErrorBoundary from "components/errorboundry";
const widgetMappings = { const widgetMappings = {
weatherapi: dynamic(() => import("components/widgets/weather/weather")), weatherapi: dynamic(() => import("components/widgets/weather/weather")),

View file

@ -2,10 +2,10 @@ import classNames from "classnames";
import { useContext } from "react"; import { useContext } from "react";
import { SettingsContext } from "utils/contexts/settings"; import { SettingsContext } from "utils/contexts/settings";
import PrimaryText from "./primary_text";
import Raw from "./raw";
import SecondaryText from "./secondary_text";
import WidgetIcon from "./widget_icon"; import WidgetIcon from "./widget_icon";
import PrimaryText from "./primary_text";
import SecondaryText from "./secondary_text";
import Raw from "./raw";
export function getAllClasses(options, additionalClassNames = "") { export function getAllClasses(options, additionalClassNames = "") {
if (options?.style?.header === "boxedWidgets") { if (options?.style?.header === "boxedWidgets") {

View file

@ -1,4 +1,4 @@
import { getAllClasses, getBottomBlock, getInnerBlock } from "./container"; import { getAllClasses, getInnerBlock, getBottomBlock } from "./container";
export default function ContainerButton({ children = [], options, additionalClassNames = "", callback }) { export default function ContainerButton({ children = [], options, additionalClassNames = "", callback }) {
return ( return (

View file

@ -1,4 +1,4 @@
import { getAllClasses, getBottomBlock, getInnerBlock } from "./container"; import { getAllClasses, getInnerBlock, getBottomBlock } from "./container";
export default function ContainerForm({ children = [], options, additionalClassNames = "", callback }) { export default function ContainerForm({ children = [], options, additionalClassNames = "", callback }) {
return ( return (

View file

@ -1,4 +1,4 @@
import { getAllClasses, getBottomBlock, getInnerBlock } from "./container"; import { getAllClasses, getInnerBlock, getBottomBlock } from "./container";
export default function ContainerLink({ children = [], options, additionalClassNames = "", target }) { export default function ContainerLink({ children = [], options, additionalClassNames = "", target }) {
return ( return (

View file

@ -1,4 +1,4 @@
import { useTranslation } from "next-i18next"; import { useTranslation } from "react-i18next";
import { BiError } from "react-icons/bi"; import { BiError } from "react-icons/bi";
import Container from "./container"; import Container from "./container";

Some files were not shown because too many files have changed in this diff Show more