diff --git a/.dockerignore b/.dockerignore index 698137cb..edbf8525 100644 --- a/.dockerignore +++ b/.dockerignore @@ -16,11 +16,11 @@ **/compose* **/Dockerfile* **/node_modules -!.next/standalone/node_modules **/npm-debug.log **/obj **/secrets.dev.yaml **/values.dev.yaml +**/.next README.md config/ k3d/ diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 855f7af3..a274b610 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -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: # schedule: @@ -23,40 +28,43 @@ on: workflow_dispatch: env: + # github.repository as / IMAGE_NAME: ${{ github.repository }} + jobs: pre-commit: name: Linting Checks runs-on: ubuntu-22.04 steps: - - name: Checkout repository + - + name: Checkout repository uses: actions/checkout@v4 - - - name: Install python + - + name: Install python uses: actions/setup-python@v5 with: python-version: 3.x - - - name: Check files + - + name: Check files uses: pre-commit/action@v3.0.1 - - - name: Install pnpm + - + name: Install pnpm uses: pnpm/action-setup@v4 with: version: 10 run_install: false - - - name: Setup Node.js + - + name: Install Node.js uses: actions/setup-node@v4 with: node-version: 20 cache: 'pnpm' - - - name: Install dependencies + - + name: Install dependencies run: pnpm install - - - name: Lint frontend + - + name: Lint frontend run: pnpm run lint build: @@ -72,55 +80,8 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Extract Docker metadata - id: meta - 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 - + # Login to Docker Registry + # https://github.com/docker/login-action - name: Log into registry ${{ env.REGISTRY }} if: github.event_name != 'pull_request' uses: docker/login-action@v3 @@ -128,7 +89,6 @@ jobs: registry: ghcr.io username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} - - name: Login to Docker Hub if: github.event_name != 'pull_request' uses: docker/login-action@v3 @@ -136,12 +96,29 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} + # Setup QEMU + # https://github.com/marketplace/actions/docker-setup-buildx#with-qemu - name: Setup QEMU uses: docker/setup-qemu-action@v3.6.0 + # Workaround: https://github.com/docker/build-push-action/issues/461 - name: Setup Docker buildx 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 id: build-and-push uses: docker/build-push-action@v6 @@ -151,15 +128,18 @@ jobs: tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} build-args: | - CI=true BUILDTIME=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }} VERSION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }} 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 cache-from: type=local,src=/tmp/.buildx-cache 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 run: | rm -rf /tmp/.buildx-cache diff --git a/.github/workflows/docs-publish.yml b/.github/workflows/docs-publish.yml index 5479e492..def1ee1e 100644 --- a/.github/workflows/docs-publish.yml +++ b/.github/workflows/docs-publish.yml @@ -55,7 +55,7 @@ jobs: run: MKINSIDERS=false mkdocs build deploy: name: Build & Deploy - if: github.repository == 'gethomepage/homepage' && github.event_name != 'pull_request' && github.ref == 'refs/heads/main' + if: github.repository == 'gethomepage/homepage' && github.event_name != 'pull_request' runs-on: ubuntu-latest needs: - pre-commit diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0b4f5624..6cc46b47 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,14 +9,11 @@ repos: - id: check-yaml exclude: "(^mkdocs\\.yml$)" - id: check-added-large-files -- repo: https://github.com/rbubley/mirrors-prettier - rev: 'v3.3.3' +- repo: https://github.com/pre-commit/mirrors-prettier + rev: 'v3.0.3' hooks: - id: prettier types_or: - javascript - markdown - jsx - additional_dependencies: - - prettier@3.3.3 - - 'prettier-plugin-organize-imports@4.1.0' diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 00000000..0967ef42 --- /dev/null +++ b/.prettierrc @@ -0,0 +1 @@ +{} diff --git a/.prettierrc.js b/.prettierrc.js deleted file mode 100644 index b48ef007..00000000 --- a/.prettierrc.js +++ /dev/null @@ -1,5 +0,0 @@ -const config = { - plugins: [require("prettier-plugin-organize-imports")], -}; - -module.exports = config; diff --git a/Dockerfile b/Dockerfile index 76008113..5baf1c6f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,63 +1,66 @@ -# ========================= -# Builder Stage -# ========================= -FROM node:22-slim AS builder +# Install dependencies only when needed +FROM docker.io/node:22-alpine AS deps + WORKDIR /app -# Setup -RUN mkdir config -COPY . . +COPY --link package.json pnpm-lock.yaml* ./ + +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 VERSION ARG REVISION -ENV CI=$CI -# Install and build only outside CI -RUN if [ "$CI" != "true" ]; then \ - 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 +COPY --link --from=deps /app/node_modules ./node_modules/ +COPY . . -# ========================= -# Runtime Stage -# ========================= -FROM 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." +SHELL ["/bin/ash", "-xeo", "pipefail", "-c"] +RUN npm install -g pnpm \ + && pnpm run telemetry \ + && NEXT_PUBLIC_BUILDTIME=$BUILDTIME NEXT_PUBLIC_VERSION=$VERSION NEXT_PUBLIC_REVISION=$REVISION pnpm run build + +# 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.documentation='https://github.com/gethomepage/homepage/wiki' LABEL org.opencontainers.image.source='https://github.com/di0ik/homepage-plus' LABEL org.opencontainers.image.licenses='Apache-2.0' -# Setup +ENV NODE_ENV=production + 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 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 only necessary files from the build stage -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 -RUN apk add --no-cache su-exec iputils-ping - -ENV NODE_ENV=production -ENV HOSTNAME=0.0.0.0 ENV PORT=3000 EXPOSE $PORT 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://localhost:$PORT/api/healthcheck || exit 1 ENTRYPOINT ["docker-entrypoint.sh"] CMD ["node", "server.js"] diff --git a/README.md b/README.md index 090973bd..fff2dfa4 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ services: image: ghcr.io/gethomepage/homepage:latest container_name: homepage environment: - HOMEPAGE_ALLOWED_HOSTS: gethomepage.dev # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts + HOMEPAGE_ALLOWED_HOSTS: gethomepage.dev # required, may need port PUID: 1000 # optional, your user id PGID: 1000 # optional, your group id ports: diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index 9890fbee..c2858808 100755 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -15,7 +15,7 @@ export HOMEPAGE_BUILDTIME=$(date +%s) # Set privileges for /app but only if pid 1 user is root and we are dropping privileges. # If container is run as an unprivileged user, it means owner already handled ownership setup on their own. # Running chown in that case (as non-root) will cause error -[ "$(id -u)" == "0" ] && [ "${PUID}" != "0" ] && chown -R ${PUID}:${PGID} /app/config /app/public +[ "$(id -u)" == "0" ] && [ "${PUID}" != "0" ] && chown -R ${PUID}:${PGID} /app # Drop privileges (when asked to) if root, otherwise run as current user if [ "$(id -u)" == "0" ] && [ "${PUID}" != "0" ]; then diff --git a/docs/assets/custom.css b/docs/assets/custom.css new file mode 100644 index 00000000..f959128e --- /dev/null +++ b/docs/assets/custom.css @@ -0,0 +1,3 @@ +.md-typeset[data-page-id="landing"] .md-header-anchor { + display: none; +} diff --git a/docs/configs/kubernetes.md b/docs/configs/kubernetes.md index 49158e6b..718095ef 100644 --- a/docs/configs/kubernetes.md +++ b/docs/configs/kubernetes.md @@ -25,13 +25,13 @@ To configure Kubernetes gateway-api, ingress or ingressRoute service discovery, Example settings: ```yaml -ingress: true # default, enable ingress only +ingress: true # enable ingress only ``` or ```yaml -ingress: true # default, enable ingress +ingress: true # enable ingress traefik: true # enable traefik ingressRoute gateway: true # enable gateway-api ``` diff --git a/docs/configs/settings.md b/docs/configs/settings.md index 513597b6..1615101b 100644 --- a/docs/configs/settings.md +++ b/docs/configs/settings.md @@ -78,7 +78,7 @@ background: You can apply a blur filter to the service & bookmark cards. Note this option is incompatible with the background blur, saturate and brightness filters. ```yaml -cardBlur: xs # xs, md, etc... see https://tailwindcss.com/docs/backdrop-blur +cardBlur: sm # sm, "", md, etc... see https://tailwindcss.com/docs/backdrop-blur ``` ## Favicon @@ -254,29 +254,15 @@ layout: columns: 4 ``` -### Full Width +### Five Columns -You can make homepage take up the entire window width by adding: +You can add a fifth column to services (when `style: columns` which is default) by adding: ```yaml -fullWidth: true +fiveColumns: true ``` -### Maximum Group Columns - -You can set the maximum number of columns of groups on larger screen sizes (note this is only for groups with the default `style: columns`, not groups with `stle: row`) by adding: - -```yaml -maxGroupColumns: 8 # default is 4 for services, 6 for bookmarks, max 8 -``` - -By default homepage will max out at 4 columns for services and 6 for bookmarks, thus the minimum for this setting is _5_. Of course, if you're setting this to higher numbers, you may want to consider enabling the [fullWidth](#full-width) option as well. - -If you want to set the maximum columns for bookmark groups separately, you can do so by adding: - -```yaml -maxBookmarkGroupColumns: 6 # default is 6, max 8 -``` +By default homepage will max out at 4 columns for services with `columns` style ### Collapsible sections diff --git a/docs/installation/docker.md b/docs/installation/docker.md index 6d9148dd..f2498fab 100644 --- a/docs/installation/docker.md +++ b/docs/installation/docker.md @@ -16,7 +16,7 @@ services: - /path/to/config:/app/config # Make sure your local config directory exists - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations environment: - HOMEPAGE_ALLOWED_HOSTS: gethomepage.dev # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts + HOMEPAGE_ALLOWED_HOSTS: gethomepage.dev # required, may need port ``` ### Running as non-root @@ -38,7 +38,7 @@ services: - /path/to/config:/app/config # Make sure your local config directory exists - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations, see alternative methods environment: - HOMEPAGE_ALLOWED_HOSTS: gethomepage.dev # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts + HOMEPAGE_ALLOWED_HOSTS: gethomepage.dev # required, may need port PUID: $PUID PGID: $PGID ``` diff --git a/docs/installation/index.md b/docs/installation/index.md index f082845b..0037b61e 100644 --- a/docs/installation/index.md +++ b/docs/installation/index.md @@ -13,28 +13,20 @@ You have a few options for deploying homepage, depending on your needs. We offer
-[:simple-docker:   Install on Docker :octicons-arrow-right-24:](docker.md) +:simple-docker: [  Install on Docker :octicons-arrow-right-24:](docker.md) { .card } -[:simple-kubernetes:   Install on Kubernetes :octicons-arrow-right-24:](k8s.md) +:simple-kubernetes: [  Install on Kubernetes :octicons-arrow-right-24:](k8s.md) { .card } -[:simple-unraid:   Install on UNRAID :octicons-arrow-right-24:](unraid.md) +:simple-unraid: [  Install on UNRAID :octicons-arrow-right-24:](unraid.md) { .card } -[:simple-nextdotjs:   Building from source :octicons-arrow-right-24:](source.md) +:simple-nextdotjs: [  Building from source :octicons-arrow-right-24:](source.md) { .card }
### `HOMEPAGE_ALLOWED_HOSTS` -As of v1.0 there is one required environment variable to access homepage via a URL other than `localhost`, HOMEPAGE_ALLOWED_HOSTS. The setting helps prevent certain kinds of attacks when retrieving data from the homepage API proxy. - -The value is a comma-separated (no spaces) list of allowed hosts (sometimes with the port) that can host your homepage install. See the [docker](docker.md), [kubernetes](k8s.md) and [source](source.md) installation pages for more information about where / how to set the variable. - -`localhost:3000` and `127.0.0.1:3000` are always included, but you can add a domain or IP address to this list to allow that host such as `HOMEPAGE_ALLOWED_HOSTS=gethomepage.dev,192.168.1.2:1234`, etc. - -If you are seeing errors about host validation, check the homepage logs and ensure that the host exactly as output in the logs is in the `HOMEPAGE_ALLOWED_HOSTS` list. - -This can be disabled by setting `HOMEPAGE_ALLOWED_HOSTS` to `*` but this is not recommended. +As of v1.0 there is one required environment variable when deploying via a public URL, HOMEPAGE_ALLOWED_HOSTS. This is a comma separated list of allowed hosts (sometimes with the port) that can access your homepage. See the [docker](docker.md) and [source](source.md) installation pages for examples. diff --git a/docs/installation/k8s.md b/docs/installation/k8s.md index 172b9b29..cd9184ee 100644 --- a/docs/installation/k8s.md +++ b/docs/installation/k8s.md @@ -3,6 +3,85 @@ title: Kubernetes Installation description: Install on Kubernetes --- +## Install with Helm + +There is an [unofficial helm chart](https://github.com/jameswynn/helm-charts/tree/main/charts/homepage) that creates all the necessary manifests, including the service account and RBAC entities necessary for service discovery. + +```sh +helm repo add jameswynn https://jameswynn.github.io/helm-charts +helm install homepage jameswynn/homepage -f values.yaml +``` + +The helm chart allows for all the configurations to be inlined directly in your `values.yaml`: + +```yaml +config: + bookmarks: + - Developer: + - Github: + - abbr: GH + href: https://github.com/ + services: + - My First Group: + - My First Service: + href: http://localhost/ + description: Homepage is awesome + + - My Second Group: + - My Second Service: + href: http://localhost/ + description: Homepage is the best + + - My Third Group: + - My Third Service: + href: http://localhost/ + description: Homepage is 😎 + widgets: + # show the kubernetes widget, with the cluster summary and individual nodes + - kubernetes: + cluster: + show: true + cpu: true + memory: true + showLabel: true + label: "cluster" + nodes: + show: true + cpu: true + memory: true + showLabel: true + - search: + provider: duckduckgo + target: _blank + kubernetes: + mode: cluster + settings: + +# The service account is necessary to allow discovery of other services +serviceAccount: + create: true + name: homepage + +# This enables the service account to access the necessary resources +enableRbac: true + +ingress: + main: + enabled: true + annotations: + # Example annotations to add Homepage to your Homepage! + gethomepage.dev/enabled: "true" + gethomepage.dev/name: "Homepage" + gethomepage.dev/description: "Dynamically Detected Homepage" + gethomepage.dev/group: "Dynamic" + gethomepage.dev/icon: "homepage.png" + hosts: + - host: homepage.example.com + paths: + - path: / + pathType: Prefix +``` + ## Install with Kubernetes Manifests If you don't want to use the unofficial Helm chart, you can also create your own Kubernetes manifest(s) and apply them with `kubectl apply -f filename.yaml`. @@ -223,9 +302,6 @@ spec: - name: homepage image: "ghcr.io/gethomepage/homepage:latest" imagePullPolicy: Always - env: - - name: HOMEPAGE_ALLOWED_HOSTS - value: gethomepage.dev # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts ports: - name: http containerPort: 3000 diff --git a/docs/installation/source.md b/docs/installation/source.md index fd0275a7..f0f07140 100644 --- a/docs/installation/source.md +++ b/docs/installation/source.md @@ -9,13 +9,7 @@ First, clone the repository: git clone https://github.com/gethomepage/homepage.git ``` -If `pnpm` is not installed, install it: - -```bash -npm install -g pnpm -``` - -Then install dependencies and build the production bundle: +Then install dependencies and build the production bundle (I'm using pnpm here, you can use npm or yarn if you like): ```bash pnpm install @@ -31,5 +25,3 @@ HOMEPAGE_ALLOWED_HOSTS=gethomepage.dev:1234 pnpm start ``` When updating homepage versions you will need to re-build the static files i.e. repeat the process above. - -See [HOMEPAGE_ALLOWED_HOSTS](index.md#homepage_allowed_hosts) for more information on this environment variable. diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 7f299d2e..eb1ddd25 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -286,13 +286,3 @@ body[data-md-color-scheme="default"] { .md-tabs__link { transform: translateZ(0); } - -.grid.cards .card { - padding: 0; -} - -.grid.cards .card a { - display: block; - padding: 0.8rem; - text-decoration: none; -} diff --git a/docs/troubleshooting/index.md b/docs/troubleshooting/index.md index 81550439..1c72ba31 100644 --- a/docs/troubleshooting/index.md +++ b/docs/troubleshooting/index.md @@ -12,7 +12,6 @@ hide: - Check config/logs/homepage.log, on docker simply e.g. `docker logs homepage`. This may provide some insight into the reason for an error. - Check the browser error console, this can also sometimes provide useful information. - Consider setting the `ENV` variable `LOG_LEVEL` to `debug`. -- If certain widgets are failing when connecting to public APIs, consider [disabling IPv6](#disabling-ipv6). ## Service Widget Errors @@ -67,17 +66,3 @@ All service widgets work essentially the same, that is, homepage makes a proxied ## Missing custom icons If, after correctly adding and mapping your custom icons via the [Icons](../configs/services.md#icons) instructions, you are still unable to see your icons please try recreating your container. - -## Disabling IPv6 - -If you are having issues with certain widgets that are unable to reach public APIs (e.g. weather), in certain setups you may need to disable IPv6. You can set the environment variable `HOMEPAGE_PROXY_DISABLE_IPV6` to `true` to disable IPv6 for the homepage proxy. - -Alternatively, you can use the `sysctls` option in your docker-compose file to disable IPv6 for the homepage container completely: - -```yaml -services: - homepage: - ... - sysctls: - - net.ipv6.conf.all.disable_ipv6=1 -``` diff --git a/docs/widgets/services/customapi.md b/docs/widgets/services/customapi.md index 37a48fd8..0deb8294 100644 --- a/docs/widgets/services/customapi.md +++ b/docs/widgets/services/customapi.md @@ -19,22 +19,27 @@ widget: requestBody: # optional, can be string or object, see below display: # optional, default to block, see below mappings: - - field: key + - field: key # needs to be YAML string or object label: Field 1 format: text # optional - defaults to text - - field: path.to.key2 + - field: # needs to be YAML string or object + path: + to: key2 format: number # optional - defaults to text label: Field 2 - - field: path.to.another.key3 + - field: # needs to be YAML string or object + path: + to: + another: key3 label: Field 3 format: percent # optional - defaults to text - - field: key + - field: key # needs to be YAML string or object label: Field 4 format: date # optional - defaults to text locale: nl # optional dateStyle: long # optional - defaults to "long". Allowed values: `["full", "long", "medium", "short"]`. timeStyle: medium # optional - Allowed values: `["full", "long", "medium", "short"]`. - - field: key + - field: key # needs to be YAML string or object label: Field 5 format: relativeDate # optional - defaults to text locale: nl # optional @@ -44,7 +49,9 @@ widget: label: Field 6 format: text additionalField: # optional - field: hourly.time.key + field: + hourly: + time: other key color: theme # optional - defaults to "". Allowed values: `["theme", "adaptive", "black", "white"]`. format: date # optional - field: key @@ -96,16 +103,9 @@ mappings: label: Name - field: status # Alive label: Status - - field: origin.name # Earth (C-137) + - field: + origin: name # Earth (C-137) label: Origin - - field: locations.1.name # Citadel of Ricks - label: Location -``` - -Note that older versions of the widget accepted fields as a yaml object, which is still supported. E.g.: - -```yaml -mappings: - field: locations: 1: name # Citadel of Ricks @@ -138,15 +138,7 @@ You can manipulate data with the following tools `remap`, `scale`, `prefix` and prefix: "$" ``` -## Display Options - -The widget supports different display modes that can be set using the `display` property. - -### Block View (Default) - -The default display mode is `block`, which shows fields in a block format. - -### List View +## List View You can change the default block view to a list view by setting the `display` option to `list`. @@ -170,54 +162,13 @@ The list view can optionally display an additional field next to the primary fie - any: true # will map all other values to: Unknown additionalField: - field: hourly.time.key + field: + hourly: + time: key color: theme format: date ``` -### Dynamic List View - -To display a list of items from an array in the API response, set the `display` property to `dynamic-list` and configure the `mappings` object with the following properties: - -```yaml -widget: - type: customapi - url: https://example.com/api/servers - display: dynamic-list - mappings: - items: data # optional, the path to the array in the API response. Omit this option if the array is at the root level - 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) - 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 -``` - -This configuration would work with an API that returns a response like: - -```json -{ - "data": [ - { "id": "server1", "name": "Server 1", "ip_address": "192.168.0.1" }, - { "id": "server2", "name": "Server 2", "ip_address": "192.168.0.2" } - ] -} -``` - -The widget would display a list with two items: - -- "Server 1" on the left and "192.168.0.1" on the right, clickable to "https://example.com/server/server1" -- "Server 2" on the left and "192.168.0.2" on the right, clickable to "https://example.com/server/server2" - -For nested fields in the items, you can use dot notation: - -```yaml -mappings: - items: data.results.servers - name: details.id - label: details.name -``` - ## Custom Headers Pass custom headers using the `headers` option, for example: diff --git a/docs/widgets/services/gitea.md b/docs/widgets/services/gitea.md index eb47849d..140c4ee7 100644 --- a/docs/widgets/services/gitea.md +++ b/docs/widgets/services/gitea.md @@ -7,7 +7,7 @@ Learn more about [Gitea](https://gitea.com). API token requires `notifications`, `repository` and `issue` permissions. See the [gitea documentation](https://docs.gitea.com/development/api-usage#generating-and-listing-api-tokens) for details on generating tokens. -Allowed fields: `["repositories", "notifications", "issues", "pulls"]`. +Allowed fields: `["notifications", "issues", "pulls"]`. ```yaml widget: diff --git a/docs/widgets/services/hoarder.md b/docs/widgets/services/hoarder.md new file mode 100644 index 00000000..3e8c82ad --- /dev/null +++ b/docs/widgets/services/hoarder.md @@ -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 +``` diff --git a/docs/widgets/services/index.md b/docs/widgets/services/index.md index 80ff72ba..15caadc2 100644 --- a/docs/widgets/services/index.md +++ b/docs/widgets/services/index.md @@ -51,7 +51,7 @@ You can also find a list of all available service widgets in the sidebar navigat - [HDHomeRun](hdhomerun.md) - [Headscale](headscale.md) - [Healthchecks](healthchecks.md) -- [Karakeep](karakeep.md) +- [Hoarder](hoarder.md) - [Home Assistant](homeassistant.md) - [HomeBox](homebox.md) - [Homebridge](homebridge.md) @@ -117,7 +117,6 @@ You can also find a list of all available service widgets in the sidebar navigat - [ruTorrent](rutorrent.md) - [SABnzbd](sabnzbd.md) - [Scrutiny](scrutiny.md) -- [Slskd](slskd.md) - [Sonarr](sonarr.md) - [Speedtest Tracker](speedtest-tracker.md) - [Stash](stash.md) diff --git a/docs/widgets/services/karakeep.md b/docs/widgets/services/karakeep.md deleted file mode 100644 index a2902315..00000000 --- a/docs/widgets/services/karakeep.md +++ /dev/null @@ -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 -``` diff --git a/docs/widgets/services/komga.md b/docs/widgets/services/komga.md index e71ae19a..fc76127f 100644 --- a/docs/widgets/services/komga.md +++ b/docs/widgets/services/komga.md @@ -20,5 +20,4 @@ widget: url: http://komga.host.or.ip:port username: username password: password - key: komgaapikey # optional ``` diff --git a/docs/widgets/services/slskd.md b/docs/widgets/services/slskd.md deleted file mode 100644 index 7afb0760..00000000 --- a/docs/widgets/services/slskd.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -title: Slskd -description: Slskd Widget Configuration ---- - -Learn more about [Slskd](https://github.com/slskd/slskd). - -Generate an API key for slskd with `openssl rand -base64 48`. -Add it to your `path/to/config/slskd.yml` in `web > authentication > api_keys`: - -```yaml -homepage_widget: - key: - role: readonly - cidr: -``` - -Allowed fields: `["slskStatus", "updateStatus", "downloads", "uploads", "sharedFiles"]` (maximum of 4). - -```yaml -widget: - type: slskd - url: http[s]://slskd.host.or.ip[:5030] - key: generatedapikey -``` diff --git a/k3d/k3d-helm-values.yaml b/k3d/k3d-helm-values.yaml index 13bb9229..60b6fe38 100644 --- a/k3d/k3d-helm-values.yaml +++ b/k3d/k3d-helm-values.yaml @@ -46,10 +46,6 @@ config: docker: settings: -env: - - name: HOMEPAGE_ALLOWED_HOSTS - value: "homepage.k3d.localhost:8080" - serviceAccount: create: true name: homepage diff --git a/mkdocs.yml b/mkdocs.yml index 04b888c6..65022ac7 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -74,7 +74,7 @@ nav: - widgets/services/hdhomerun.md - widgets/services/headscale.md - widgets/services/healthchecks.md - - widgets/services/karakeep.md + - widgets/services/hoarder.md - widgets/services/homeassistant.md - widgets/services/homebox.md - widgets/services/homebridge.md diff --git a/next-i18next.config.js b/next-i18next.config.js index f6968dc3..a1b5c7b3 100644 --- a/next-i18next.config.js +++ b/next-i18next.config.js @@ -131,8 +131,8 @@ module.exports = { ? BIBIT_UNITS : BIT_UNITS : options.binary - ? BIBYTE_UNITS - : BYTE_UNITS; + ? BIBYTE_UNITS + : BYTE_UNITS; if (value === 0) return `0 ${sizes[0]}/s`; diff --git a/package.json b/package.json index 9ac85840..065f97d4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "homepage", - "version": "1.2.0", + "version": "1.0.1", "private": true, "scripts": { "preinstall": "npx only-allow pnpm", @@ -19,13 +19,13 @@ "dockerode": "^4.0.4", "follow-redirects": "^1.15.9", "gamedig": "^5.2.0", - "i18next": "^24.2.3", + "i18next": "^21.10.0", "js-yaml": "^4.1.0", "json-rpc-2.0": "^1.7.0", "luxon": "^3.5.0", "memory-cache": "^0.2.0", - "minecraftstatuspinger": "^1.2.2", - "next": "^15.2.4", + "minecraftstatuspinger": "^1.2.1", + "next": "^15.1.7", "next-i18next": "^12.1.0", "ping": "^0.4.4", "pretty-bytes": "^6.1.1", @@ -36,7 +36,7 @@ "react-icons": "^5.4.0", "recharts": "^2.15.1", "rrule": "^2.8.1", - "swr": "^2.3.3", + "swr": "^1.3.0", "systeminformation": "^5.25.11", "tough-cookie": "^5.1.2", "urbackup-server-api": "^0.8.9", @@ -47,16 +47,15 @@ "@tailwindcss/forms": "^0.5.10", "@tailwindcss/postcss": "^4.0.9", "eslint": "^9.21.0", - "eslint-config-next": "^15.2.4", - "eslint-config-prettier": "^10.1.1", + "eslint-config-next": "^15.1.7", + "eslint-config-prettier": "^10.0.2", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jsx-a11y": "^6.10.2", "eslint-plugin-prettier": "^5.2.3", "eslint-plugin-react": "^7.37.4", "eslint-plugin-react-hooks": "^5.1.0", - "postcss": "^8.5.3", + "postcss": "^8.5.2", "prettier": "^3.5.2", - "prettier-plugin-organize-imports": "^4.1.0", "tailwind-scrollbar": "^4.0.1", "tailwindcss": "^4.0.9", "typescript": "^5.7.3" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 170e380e..6100111b 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -33,8 +33,8 @@ importers: specifier: ^5.2.0 version: 5.2.0 i18next: - specifier: ^24.2.3 - version: 24.2.3(typescript@5.7.3) + specifier: ^21.10.0 + version: 21.10.0 js-yaml: specifier: ^4.1.0 version: 4.1.0 @@ -48,14 +48,14 @@ importers: specifier: ^0.2.0 version: 0.2.0 minecraftstatuspinger: - specifier: ^1.2.2 - version: 1.2.2 + specifier: ^1.2.1 + version: 1.2.1 next: - specifier: ^15.2.4 - version: 15.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + specifier: ^15.1.7 + version: 15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) next-i18next: specifier: ^12.1.0 - version: 12.1.0(next@15.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 12.1.0(next@15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) ping: specifier: ^0.4.4 version: 0.4.4 @@ -73,7 +73,7 @@ importers: version: 18.3.1(react@18.3.1) react-i18next: specifier: ^11.18.6 - version: 11.18.6(i18next@24.2.3(typescript@5.7.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + version: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-icons: specifier: ^5.4.0 version: 5.4.0(react@18.3.1) @@ -84,8 +84,8 @@ importers: specifier: ^2.8.1 version: 2.8.1 swr: - specifier: ^2.3.3 - version: 2.3.3(react@18.3.1) + specifier: ^1.3.0 + version: 1.3.0(react@18.3.1) systeminformation: specifier: ^5.25.11 version: 5.25.11 @@ -116,20 +116,20 @@ importers: specifier: ^9.21.0 version: 9.21.0(jiti@2.4.2) eslint-config-next: - specifier: ^15.2.4 - version: 15.2.4(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) + specifier: ^15.1.7 + version: 15.1.7(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) eslint-config-prettier: - specifier: ^10.1.1 - version: 10.1.1(eslint@9.21.0(jiti@2.4.2)) + specifier: ^10.0.2 + version: 10.0.2(eslint@9.21.0(jiti@2.4.2)) eslint-plugin-import: specifier: ^2.31.0 - version: 2.31.0(@typescript-eslint/parser@8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-typescript@3.10.0)(eslint@9.21.0(jiti@2.4.2)) + version: 2.31.0(@typescript-eslint/parser@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-typescript@3.8.2)(eslint@9.21.0(jiti@2.4.2)) eslint-plugin-jsx-a11y: specifier: ^6.10.2 version: 6.10.2(eslint@9.21.0(jiti@2.4.2)) eslint-plugin-prettier: specifier: ^5.2.3 - version: 5.2.3(eslint-config-prettier@10.1.1(eslint@9.21.0(jiti@2.4.2)))(eslint@9.21.0(jiti@2.4.2))(prettier@3.5.2) + version: 5.2.3(eslint-config-prettier@10.0.2(eslint@9.21.0(jiti@2.4.2)))(eslint@9.21.0(jiti@2.4.2))(prettier@3.5.2) eslint-plugin-react: specifier: ^7.37.4 version: 7.37.4(eslint@9.21.0(jiti@2.4.2)) @@ -137,14 +137,11 @@ importers: specifier: ^5.1.0 version: 5.1.0(eslint@9.21.0(jiti@2.4.2)) postcss: - specifier: ^8.5.3 - version: 8.5.3 + specifier: ^8.5.2 + version: 8.5.2 prettier: specifier: ^3.5.2 version: 3.5.2 - prettier-plugin-organize-imports: - specifier: ^4.1.0 - version: 4.1.0(prettier@3.5.2)(typescript@5.7.3) tailwind-scrollbar: specifier: ^4.0.1 version: 4.0.1(react@18.3.1)(tailwindcss@4.0.9) @@ -165,10 +162,6 @@ packages: resolution: {integrity: sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==} engines: {node: '>=6.9.0'} - '@babel/runtime@7.27.0': - resolution: {integrity: sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==} - engines: {node: '>=6.9.0'} - '@balena/dockerignore@1.0.2': resolution: {integrity: sha512-wMue2Sy4GAVTk6Ic4tJVcnfdau+gx2EnG7S+uAEe+TWJFqE4YoWN4/H8MSLj4eYJKxGg26lZwboEniNiNwZQ6Q==} @@ -179,14 +172,8 @@ packages: '@dabh/diagnostics@2.0.3': resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==} - '@emnapi/core@1.4.0': - resolution: {integrity: sha512-H+N/FqT07NmLmt6OFFtDfwe8PNygprzBikrEMyQfgqSmT0vzE515Pz7R8izwB9q/zsH/MA64AKoul3sA6/CzVg==} - - '@emnapi/runtime@1.4.0': - resolution: {integrity: sha512-64WYIf4UYcdLnbKn/umDlNjQDSS8AgZrI/R9+x5ilkUVFxXcA1Ebl+gQLc/6mERA4407Xof0R7wEyEuj091CVw==} - - '@emnapi/wasi-threads@1.0.1': - resolution: {integrity: sha512-iIBu7mwkq4UQGeMEM8bLwNK962nXdhodeScX4slfQnRhEMMzvYivHhutCIk8uojvmASXXPC2WNEjwxFWk72Oqw==} + '@emnapi/runtime@1.3.1': + resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==} '@eslint-community/eslint-utils@4.4.1': resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} @@ -194,12 +181,6 @@ packages: peerDependencies: eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/eslint-utils@4.5.1': - resolution: {integrity: sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 - '@eslint-community/regexpp@4.12.1': resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} @@ -395,59 +376,56 @@ packages: '@kubernetes/client-node@1.0.0': resolution: {integrity: sha512-a8NSvFDSHKFZ0sR1hbPSf8IDFNJwctEU5RodSCNiq/moRXWmrdmqhb1RRQzF+l+TSBaDgHw3YsYNxxE92STBzw==} - '@napi-rs/wasm-runtime@0.2.8': - resolution: {integrity: sha512-OBlgKdX7gin7OIq4fadsjpg+cp2ZphvAIKucHsNfTdJiqdOmOEwQd/bHi0VwNrcw5xpBJyUw6cK/QilCqy1BSg==} + '@next/env@15.1.7': + resolution: {integrity: sha512-d9jnRrkuOH7Mhi+LHav2XW91HOgTAWHxjMPkXMGBc9B2b7614P7kjt8tAplRvJpbSt4nbO1lugcT/kAaWzjlLQ==} - '@next/env@15.2.4': - resolution: {integrity: sha512-+SFtMgoiYP3WoSswuNmxJOCwi06TdWE733D+WPjpXIe4LXGULwEaofiiAy6kbS0+XjM5xF5n3lKuBwN2SnqD9g==} + '@next/eslint-plugin-next@15.1.7': + resolution: {integrity: sha512-kRP7RjSxfTO13NE317ek3mSGzoZlI33nc/i5hs1KaWpK+egs85xg0DJ4p32QEiHnR0mVjuUfhRIun7awqfL7pQ==} - '@next/eslint-plugin-next@15.2.4': - resolution: {integrity: sha512-O8ScvKtnxkp8kL9TpJTTKnMqlkZnS+QxwoQnJwPGBxjBbzd6OVVPEJ5/pMNrktSyXQD/chEfzfFzYLM6JANOOQ==} - - '@next/swc-darwin-arm64@15.2.4': - resolution: {integrity: sha512-1AnMfs655ipJEDC/FHkSr0r3lXBgpqKo4K1kiwfUf3iE68rDFXZ1TtHdMvf7D0hMItgDZ7Vuq3JgNMbt/+3bYw==} + '@next/swc-darwin-arm64@15.1.7': + resolution: {integrity: sha512-hPFwzPJDpA8FGj7IKV3Yf1web3oz2YsR8du4amKw8d+jAOHfYHYFpMkoF6vgSY4W6vB29RtZEklK9ayinGiCmQ==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@next/swc-darwin-x64@15.2.4': - resolution: {integrity: sha512-3qK2zb5EwCwxnO2HeO+TRqCubeI/NgCe+kL5dTJlPldV/uwCnUgC7VbEzgmxbfrkbjehL4H9BPztWOEtsoMwew==} + '@next/swc-darwin-x64@15.1.7': + resolution: {integrity: sha512-2qoas+fO3OQKkU0PBUfwTiw/EYpN+kdAx62cePRyY1LqKtP09Vp5UcUntfZYajop5fDFTjSxCHfZVRxzi+9FYQ==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@next/swc-linux-arm64-gnu@15.2.4': - resolution: {integrity: sha512-HFN6GKUcrTWvem8AZN7tT95zPb0GUGv9v0d0iyuTb303vbXkkbHDp/DxufB04jNVD+IN9yHy7y/6Mqq0h0YVaQ==} + '@next/swc-linux-arm64-gnu@15.1.7': + resolution: {integrity: sha512-sKLLwDX709mPdzxMnRIXLIT9zaX2w0GUlkLYQnKGoXeWUhcvpCrK+yevcwCJPdTdxZEUA0mOXGLdPsGkudGdnA==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@15.2.4': - resolution: {integrity: sha512-Oioa0SORWLwi35/kVB8aCk5Uq+5/ZIumMK1kJV+jSdazFm2NzPDztsefzdmzzpx5oGCJ6FkUC7vkaUseNTStNA==} + '@next/swc-linux-arm64-musl@15.1.7': + resolution: {integrity: sha512-zblK1OQbQWdC8fxdX4fpsHDw+VSpBPGEUX4PhSE9hkaWPrWoeIJn+baX53vbsbDRaDKd7bBNcXRovY1hEhFd7w==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-x64-gnu@15.2.4': - resolution: {integrity: sha512-yb5WTRaHdkgOqFOZiu6rHV1fAEK0flVpaIN2HB6kxHVSy/dIajWbThS7qON3W9/SNOH2JWkVCyulgGYekMePuw==} + '@next/swc-linux-x64-gnu@15.1.7': + resolution: {integrity: sha512-GOzXutxuLvLHFDAPsMP2zDBMl1vfUHHpdNpFGhxu90jEzH6nNIgmtw/s1MDwpTOiM+MT5V8+I1hmVFeAUhkbgQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@15.2.4': - resolution: {integrity: sha512-Dcdv/ix6srhkM25fgXiyOieFUkz+fOYkHlydWCtB0xMST6X9XYI3yPDKBZt1xuhOytONsIFJFB08xXYsxUwJLw==} + '@next/swc-linux-x64-musl@15.1.7': + resolution: {integrity: sha512-WrZ7jBhR7ATW1z5iEQ0ZJfE2twCNSXbpCSaAunF3BKcVeHFADSI/AW1y5Xt3DzTqPF1FzQlwQTewqetAABhZRQ==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-win32-arm64-msvc@15.2.4': - resolution: {integrity: sha512-dW0i7eukvDxtIhCYkMrZNQfNicPDExt2jPb9AZPpL7cfyUo7QSNl1DjsHjmmKp6qNAqUESyT8YFl/Aw91cNJJg==} + '@next/swc-win32-arm64-msvc@15.1.7': + resolution: {integrity: sha512-LDnj1f3OVbou1BqvvXVqouJZKcwq++mV2F+oFHptToZtScIEnhNRJAhJzqAtTE2dB31qDYL45xJwrc+bLeKM2Q==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@next/swc-win32-x64-msvc@15.2.4': - resolution: {integrity: sha512-SbnWkJmkS7Xl3kre8SdMF6F/XDh1DTFEhp0jRTj/uB8iPKoU2bb2NDfcu+iifv1+mxQEd1g2vvSxcZbXSKyWiQ==} + '@next/swc-win32-x64-msvc@15.1.7': + resolution: {integrity: sha512-dC01f1quuf97viOfW05/K8XYv2iuBgAxJZl7mbCKEjMgdQl5JjAKJ0D2qMKZCgPWDeFbFT0Q0nYWwytEW0DWTQ==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -509,8 +487,8 @@ packages: '@rtsao/scc@1.1.0': resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} - '@rushstack/eslint-patch@1.11.0': - resolution: {integrity: sha512-zxnHvoMQVqewTJr/W4pKjF0bMGiKJv1WX7bSrkl46Hg0QjESbzBROWK0Wg4RphzSOS5Jiy7eFimmM3UgMrMZbQ==} + '@rushstack/eslint-patch@1.10.5': + resolution: {integrity: sha512-kkKUDVlII2DQiKy7UstOR1ErJP8kUKAQ4oa+SQtM0K+lPdmmjj0YnnxBgtTVYH7mUKtbsxeFC9y0AmK7Yb78/A==} '@sindresorhus/is@5.6.0': resolution: {integrity: sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==} @@ -616,9 +594,6 @@ packages: '@tanstack/virtual-core@3.13.0': resolution: {integrity: sha512-NBKJP3OIdmZY3COJdWkSonr50FMVIi+aj5ZJ7hI/DTpEKg2RMfo/KvP8A3B/zOSpMgIe52B5E2yn7rryULzA6g==} - '@tybys/wasm-util@0.9.0': - resolution: {integrity: sha512-6+7nlbMVX/PVDCwaIQ8nTOPveOcFLSt8GcXdx8hD0bt39uWxYT88uXzqTd4fTvqta7oeUJqudepapKNt2DYJFw==} - '@types/d3-array@3.2.1': resolution: {integrity: sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==} @@ -688,128 +663,53 @@ packages: '@types/ws@8.5.14': resolution: {integrity: sha512-bd/YFLW+URhBzMXurx7lWByOu+xzU9+kb3RboOteXYDfW+tr+JZa99OyNmPINEGB/ahzKrEuc8rcv4gnpJmxTw==} - '@typescript-eslint/eslint-plugin@8.29.0': - resolution: {integrity: sha512-PAIpk/U7NIS6H7TEtN45SPGLQaHNgB7wSjsQV/8+KYokAb2T/gloOA/Bee2yd4/yKVhPKe5LlaUGhAZk5zmSaQ==} + '@typescript-eslint/eslint-plugin@8.24.1': + resolution: {integrity: sha512-ll1StnKtBigWIGqvYDVuDmXJHVH4zLVot1yQ4fJtLpL7qacwkxJc1T0bptqw+miBQ/QfUbhl1TcQ4accW5KUyA==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/parser@8.29.0': - resolution: {integrity: sha512-8C0+jlNJOwQso2GapCVWWfW/rzaq7Lbme+vGUFKE31djwNncIpgXD7Cd4weEsDdkoZDjH0lwwr3QDQFuyrMg9g==} + '@typescript-eslint/parser@8.24.1': + resolution: {integrity: sha512-Tqoa05bu+t5s8CTZFaGpCH2ub3QeT9YDkXbPd3uQ4SfsLoh1/vv2GEYAioPoxCWJJNsenXlC88tRjwoHNts1oQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/scope-manager@8.29.0': - resolution: {integrity: sha512-aO1PVsq7Gm+tcghabUpzEnVSFMCU4/nYIgC2GOatJcllvWfnhrgW0ZEbnTxm36QsikmCN1K/6ZgM7fok2I7xNw==} + '@typescript-eslint/scope-manager@8.24.1': + resolution: {integrity: sha512-OdQr6BNBzwRjNEXMQyaGyZzgg7wzjYKfX2ZBV3E04hUCBDv3GQCHiz9RpqdUIiVrMgJGkXm3tcEh4vFSHreS2Q==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/type-utils@8.29.0': - resolution: {integrity: sha512-ahaWQ42JAOx+NKEf5++WC/ua17q5l+j1GFrbbpVKzFL/tKVc0aYY8rVSYUpUvt2hUP1YBr7mwXzx+E/DfUWI9Q==} + '@typescript-eslint/type-utils@8.24.1': + resolution: {integrity: sha512-/Do9fmNgCsQ+K4rCz0STI7lYB4phTtEXqqCAs3gZW0pnK7lWNkvWd5iW545GSmApm4AzmQXmSqXPO565B4WVrw==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/types@8.29.0': - resolution: {integrity: sha512-wcJL/+cOXV+RE3gjCyl/V2G877+2faqvlgtso/ZRbTCnZazh0gXhe+7gbAnfubzN2bNsBtZjDvlh7ero8uIbzg==} + '@typescript-eslint/types@8.24.1': + resolution: {integrity: sha512-9kqJ+2DkUXiuhoiYIUvIYjGcwle8pcPpdlfkemGvTObzgmYfJ5d0Qm6jwb4NBXP9W1I5tss0VIAnWFumz3mC5A==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@typescript-eslint/typescript-estree@8.29.0': - resolution: {integrity: sha512-yOfen3jE9ISZR/hHpU/bmNvTtBW1NjRbkSFdZOksL1N+ybPEE7UVGMwqvS6CP022Rp00Sb0tdiIkhSCe6NI8ow==} + '@typescript-eslint/typescript-estree@8.24.1': + resolution: {integrity: sha512-UPyy4MJ/0RE648DSKQe9g0VDSehPINiejjA6ElqnFaFIhI6ZEiZAkUI0D5MCk0bQcTf/LVqZStvQ6K4lPn/BRg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: - typescript: '>=4.8.4 <5.9.0' + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/utils@8.29.0': - resolution: {integrity: sha512-gX/A0Mz9Bskm8avSWFcK0gP7cZpbY4AIo6B0hWYFCaIsz750oaiWR4Jr2CI+PQhfW1CpcQr9OlfPS+kMFegjXA==} + '@typescript-eslint/utils@8.24.1': + resolution: {integrity: sha512-OOcg3PMMQx9EXspId5iktsI3eMaXVwlhC8BvNnX6B5w9a4dVgpkQZuU8Hy67TolKcl+iFWq0XX+jbDGN4xWxjQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: ^8.57.0 || ^9.0.0 - typescript: '>=4.8.4 <5.9.0' + typescript: '>=4.8.4 <5.8.0' - '@typescript-eslint/visitor-keys@8.29.0': - resolution: {integrity: sha512-Sne/pVz8ryR03NFK21VpN88dZ2FdQXOlq3VIklbrTYEt8yXtRFr9tvUhqvCeKjqYk5FSim37sHbooT6vzBTZcg==} + '@typescript-eslint/visitor-keys@8.24.1': + resolution: {integrity: sha512-EwVHlp5l+2vp8CoqJm9KikPZgi3gbdZAtabKT9KPShGeOcJhsv4Zdo3oc8T8I0uKEmYoU4ItyxbptjF08enaxg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} - '@unrs/resolver-binding-darwin-arm64@1.3.3': - resolution: {integrity: sha512-EpRILdWr3/xDa/7MoyfO7JuBIJqpBMphtu4+80BK1bRfFcniVT74h3Z7q1+WOc92FuIAYatB1vn9TJR67sORGw==} - cpu: [arm64] - os: [darwin] - - '@unrs/resolver-binding-darwin-x64@1.3.3': - resolution: {integrity: sha512-ntj/g7lPyqwinMJWZ+DKHBse8HhVxswGTmNgFKJtdgGub3M3zp5BSZ3bvMP+kBT6dnYJLSVlDqdwOq1P8i0+/g==} - cpu: [x64] - os: [darwin] - - '@unrs/resolver-binding-freebsd-x64@1.3.3': - resolution: {integrity: sha512-l6BT8f2CU821EW7U8hSUK8XPq4bmyTlt9Mn4ERrfjJNoCw0/JoHAh9amZZtV3cwC3bwwIat+GUnrcHTG9+qixw==} - cpu: [x64] - os: [freebsd] - - '@unrs/resolver-binding-linux-arm-gnueabihf@1.3.3': - resolution: {integrity: sha512-8ScEc5a4y7oE2BonRvzJ+2GSkBaYWyh0/Ko4Q25e/ix6ANpJNhwEPZvCR6GVRmsQAYMIfQvYLdM6YEN+qRjnAQ==} - cpu: [arm] - os: [linux] - - '@unrs/resolver-binding-linux-arm-musleabihf@1.3.3': - resolution: {integrity: sha512-8qQ6l1VTzLNd3xb2IEXISOKwMGXDCzY/UNy/7SovFW2Sp0K3YbL7Ao7R18v6SQkLqQlhhqSBIFRk+u6+qu5R5A==} - cpu: [arm] - os: [linux] - - '@unrs/resolver-binding-linux-arm64-gnu@1.3.3': - resolution: {integrity: sha512-v81R2wjqcWXJlQY23byqYHt9221h4anQ6wwN64oMD/WAE+FmxPHFZee5bhRkNVtzqO/q7wki33VFWlhiADwUeQ==} - cpu: [arm64] - os: [linux] - - '@unrs/resolver-binding-linux-arm64-musl@1.3.3': - resolution: {integrity: sha512-cAOx/j0u5coMg4oct/BwMzvWJdVciVauUvsd+GQB/1FZYKQZmqPy0EjJzJGbVzFc6gbnfEcSqvQE6gvbGf2N8Q==} - cpu: [arm64] - os: [linux] - - '@unrs/resolver-binding-linux-ppc64-gnu@1.3.3': - resolution: {integrity: sha512-mq2blqwErgDJD4gtFDlTX/HZ7lNP8YCHYFij2gkXPtMzrXxPW1hOtxL6xg4NWxvnj4bppppb0W3s/buvM55yfg==} - cpu: [ppc64] - os: [linux] - - '@unrs/resolver-binding-linux-s390x-gnu@1.3.3': - resolution: {integrity: sha512-u0VRzfFYysarYHnztj2k2xr+eu9rmgoTUUgCCIT37Nr+j0A05Xk2c3RY8Mh5+DhCl2aYibihnaAEJHeR0UOFIQ==} - cpu: [s390x] - os: [linux] - - '@unrs/resolver-binding-linux-x64-gnu@1.3.3': - resolution: {integrity: sha512-OrVo5ZsG29kBF0Ug95a2KidS16PqAMmQNozM6InbquOfW/udouk063e25JVLqIBhHLB2WyBnixOQ19tmeC/hIg==} - cpu: [x64] - os: [linux] - - '@unrs/resolver-binding-linux-x64-musl@1.3.3': - resolution: {integrity: sha512-PYnmrwZ4HMp9SkrOhqPghY/aoL+Rtd4CQbr93GlrRTjK6kDzfMfgz3UH3jt6elrQAfupa1qyr1uXzeVmoEAxUA==} - cpu: [x64] - os: [linux] - - '@unrs/resolver-binding-wasm32-wasi@1.3.3': - resolution: {integrity: sha512-81AnQY6fShmktQw4hWDUIilsKSdvr/acdJ5azAreu2IWNlaJOKphJSsUVWE+yCk6kBMoQyG9ZHCb/krb5K0PEA==} - engines: {node: '>=14.0.0'} - cpu: [wasm32] - - '@unrs/resolver-binding-win32-arm64-msvc@1.3.3': - resolution: {integrity: sha512-X/42BMNw7cW6xrB9syuP5RusRnWGoq+IqvJO8IDpp/BZg64J1uuIW6qA/1Cl13Y4LyLXbJVYbYNSKwR/FiHEng==} - cpu: [arm64] - os: [win32] - - '@unrs/resolver-binding-win32-ia32-msvc@1.3.3': - resolution: {integrity: sha512-EGNnNGQxMU5aTN7js3ETYvuw882zcO+dsVjs+DwO2j/fRVKth87C8e2GzxW1L3+iWAXMyJhvFBKRavk9Og1Z6A==} - cpu: [ia32] - os: [win32] - - '@unrs/resolver-binding-win32-x64-msvc@1.3.3': - resolution: {integrity: sha512-GraLbYqOJcmW1qY3osB+2YIiD62nVf2/bVLHZmrb4t/YSUwE03l7TwcDJl08T/Tm3SVhepX8RQkpzWbag/Sb4w==} - cpu: [x64] - os: [win32] - acorn-jsx@5.3.2: resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} peerDependencies: @@ -982,8 +882,8 @@ packages: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} - caniuse-lite@1.0.30001712: - resolution: {integrity: sha512-MBqPpGYYdQ7/hfKiet9SCI+nmN5/hp4ZzveOJubl5DTAMa5oggjAuoi0Z4onBpKPFI2ePGnQuQIzF3VxDjDJig==} + caniuse-lite@1.0.30001700: + resolution: {integrity: sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ==} chalk@4.1.2: resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} @@ -1187,10 +1087,6 @@ packages: resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} engines: {node: '>= 0.8'} - dequal@2.0.3: - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} - engines: {node: '>=6'} - detect-libc@1.0.3: resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==} engines: {node: '>=0.10'} @@ -1295,8 +1191,8 @@ packages: resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} engines: {node: '>=10'} - eslint-config-next@15.2.4: - resolution: {integrity: sha512-v4gYjd4eYIme8qzaJItpR5MMBXJ0/YV07u7eb50kEnlEmX7yhOjdUdzz70v4fiINYRjLf8X8TbogF0k7wlz6sA==} + eslint-config-next@15.1.7: + resolution: {integrity: sha512-zXoMnYUIy3XHaAoOhrcYkT9UQWvXqWju2K7NNsmb5wd/7XESDwof61eUdW4QhERr3eJ9Ko/vnXqIrj8kk/drYw==} peerDependencies: eslint: ^7.23.0 || ^8.0.0 || ^9.0.0 typescript: '>=3.3.1' @@ -1304,8 +1200,8 @@ packages: typescript: optional: true - eslint-config-prettier@10.1.1: - resolution: {integrity: sha512-4EQQr6wXwS+ZJSzaR5ZCrYgLxqvUjdXctaEtBqHcbkW944B1NQyO4qpdHQbXBONfwxXdkAY81HH4+LUfrg+zPw==} + eslint-config-prettier@10.0.2: + resolution: {integrity: sha512-1105/17ZIMjmCOJOPNfVdbXafLCLj3hPmkmB7dLgt7XsQ/zkxSuDerE/xgO3RxoHysR1N1whmquY0lSn2O0VLg==} hasBin: true peerDependencies: eslint: '>=7.0.0' @@ -1313,8 +1209,8 @@ packages: eslint-import-resolver-node@0.3.9: resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} - eslint-import-resolver-typescript@3.10.0: - resolution: {integrity: sha512-aV3/dVsT0/H9BtpNwbaqvl+0xGMRGzncLyhm793NFGvbwGGvzyAykqWZ8oZlZuGwuHkwJjhWJkG1cM3ynvd2pQ==} + eslint-import-resolver-typescript@3.8.2: + resolution: {integrity: sha512-o0nvXxsatYCDTzI1K5b3aYGQ6PjpDGJEVN86zqJw5SEewhmmggfRTotd2dqWr2t2zbeYpIEWGTCkgtUpIEIcaQ==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: eslint: '*' @@ -1462,8 +1358,8 @@ packages: fast-levenshtein@2.0.6: resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} - fastq@1.19.1: - resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} + fastq@1.19.0: + resolution: {integrity: sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==} fdir@6.4.3: resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==} @@ -1655,14 +1551,6 @@ packages: i18next@21.10.0: resolution: {integrity: sha512-YeuIBmFsGjUfO3qBmMOc0rQaun4mIpGKET5WDwvu8lU7gvwpcariZLNtL0Fzj+zazcHUrlXHiptcFhBMFaxzfg==} - i18next@24.2.3: - resolution: {integrity: sha512-lfbf80OzkocvX7nmZtu7nSTNbrTYR52sLWxPtlXX1zAhVw8WEnFk4puUkCR4B1dNQwbSpEHHHemcZu//7EcB7A==} - peerDependencies: - typescript: ^5 - peerDependenciesMeta: - typescript: - optional: true - ical-date-parser@4.0.0: resolution: {integrity: sha512-XRCK/FU1akC2ZaJOdKIeZI6BLLgzWUuE0pegSrrkEva89GOan5mNkLVqCU4EMhCJ9nkG5TLWdMXrVX1fNAkFzw==} @@ -1715,8 +1603,8 @@ packages: resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==} engines: {node: '>= 0.4'} - is-bun-module@2.0.0: - resolution: {integrity: sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==} + is-bun-module@1.3.0: + resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==} is-callable@1.2.7: resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} @@ -2023,9 +1911,9 @@ packages: resolution: {integrity: sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - minecraftstatuspinger@1.2.2: - resolution: {integrity: sha512-3PDWcifjw6cliGnGqw0+nJVWWPOcpLDyNLh4D84vCNzPD2h9REbN5Ne11I//CMkIu5xJiIuyGwI44gyRYYbpuw==} - engines: {node: '>=14.0.0'} + minecraftstatuspinger@1.2.1: + resolution: {integrity: sha512-Qo/3TzV0UeULbVyqMqS9sUPbNKGFK7U7as1xlS/xeXryQQEwitOz5SkVhVphY4fCTacl5a+E4VXiTq6TPKYDKw==} + engines: {node: '>=16.0.0'} mini-svg-data-uri@1.4.4: resolution: {integrity: sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==} @@ -2067,8 +1955,8 @@ packages: nan@2.22.0: resolution: {integrity: sha512-nbajikzWTMwsW+eSsNm3QwlOs7het9gGJU5dDZzRTQGk03vyBOauxgI4VakDzE0PtsGTmXPsXTbbjVhRwR5mpw==} - nanoid@3.3.11: - resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} + nanoid@3.3.8: + resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} hasBin: true @@ -2082,8 +1970,8 @@ packages: next: '>= 10.0.0' react: '>= 16.8.0' - next@15.2.4: - resolution: {integrity: sha512-VwL+LAaPSxEkd3lU2xWbgEOtrM8oedmyhBqaVNmgKB+GvZlCy9rgaEc+y2on0wv+l0oSFqLtYD6dcC1eAedUaQ==} + next@15.1.7: + resolution: {integrity: sha512-GNeINPGS9c6OZKCvKypbL8GTsT5GhWPp4DM0fzkXJuXMilOO2EeFxuAY6JZbtk6XIl6Ws10ag3xRINDjSO5+wg==} engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0} hasBin: true peerDependencies: @@ -2239,8 +2127,8 @@ packages: resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==} engines: {node: ^10 || ^12 || >=14} - postcss@8.5.3: - resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} + postcss@8.5.2: + resolution: {integrity: sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==} engines: {node: ^10 || ^12 || >=14} prelude-ls@1.2.1: @@ -2251,16 +2139,6 @@ packages: resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} engines: {node: '>=6.0.0'} - prettier-plugin-organize-imports@4.1.0: - resolution: {integrity: sha512-5aWRdCgv645xaa58X8lOxzZoiHAldAPChljr/MT0crXVOWTZ+Svl4hIWlz+niYSlO6ikE5UXkN1JrRvIP2ut0A==} - peerDependencies: - prettier: '>=2.0' - typescript: '>=2.9' - vue-tsc: ^2.1.0 - peerDependenciesMeta: - vue-tsc: - optional: true - prettier@3.5.2: resolution: {integrity: sha512-lc6npv5PH7hVqozBR7lkBNOGXV9vMwROAPlumdBkX0wTbbzPu/U1hk5yL8p2pt4Xoc+2mkT8t/sow2YrV/M5qg==} engines: {node: '>=14'} @@ -2406,8 +2284,8 @@ packages: resolution: {integrity: sha512-40yHxbNcl2+rzXvZuVkrYohathsSJlMTXKryG5y8uciHv1+xDLHQpgjG64JUO9nrEq2jGLH6IZ8BcZyw3wrweg==} engines: {node: '>=14.16'} - reusify@1.1.0: - resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} rfc4648@1.5.4: @@ -2531,8 +2409,8 @@ packages: resolution: {integrity: sha512-r1X4KsBGedJqo7h8F5c4Ybpcr5RjyP+aWIG007uBPRjmdQWfEiVLzSK71Zji1B9sKxwaCvD8y8cwSkYrlLiRRg==} engines: {node: '>=10.16.0'} - stable-hash@0.0.5: - resolution: {integrity: sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==} + stable-hash@0.0.4: + resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==} stack-trace@0.0.10: resolution: {integrity: sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==} @@ -2629,10 +2507,10 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} - swr@2.3.3: - resolution: {integrity: sha512-dshNvs3ExOqtZ6kJBaAsabhPdHyeY4P2cKwRCniDVifBMoG/SVI7tfLWqPXriVspf2Rg4tPzXJTnwaihIeFw2A==} + swr@1.3.0: + resolution: {integrity: sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==} peerDependencies: - react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 + react: ^16.11.0 || ^17.0.0 || ^18.0.0 synckit@0.9.2: resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==} @@ -2674,8 +2552,8 @@ packages: tiny-invariant@1.3.3: resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==} - tinyglobby@0.2.12: - resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==} + tinyglobby@0.2.11: + resolution: {integrity: sha512-32TmKeeKUahv0Go8WmQgiEp9Y21NuxjwjqiRC1nrUB51YacfSwuB44xgXD+HdIppmMRgjQNPdrHyA6vIybYZ+g==} engines: {node: '>=12.0.0'} tldts-core@6.1.82: @@ -2711,8 +2589,8 @@ packages: resolution: {integrity: sha512-aZbgViZrg1QNcG+LULa7nhZpJTZSLm/mXnHXnbAbjmN5aSa0y7V+wvv6+4WaBtpISJzThKy+PIPxc1Nq1EJ9mg==} engines: {node: '>= 14.0.0'} - ts-api-utils@2.1.0: - resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + ts-api-utils@2.0.1: + resolution: {integrity: sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==} engines: {node: '>=18.12'} peerDependencies: typescript: '>=4.8.4' @@ -2762,20 +2640,12 @@ packages: resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} engines: {node: '>= 0.8'} - unrs-resolver@1.3.3: - resolution: {integrity: sha512-PFLAGQzYlyjniXdbmQ3dnGMZJXX5yrl2YS4DLRfR3BhgUsE1zpRIrccp9XMOGRfIHpdFvCn/nr5N1KMVda4x3A==} - urbackup-server-api@0.8.9: resolution: {integrity: sha512-Igu6A0xSZeMsiN6PWT7zG4aD+iJR5fXT/j5+xwAvnD/vCNfvVrettIsXv6MftxOajvTmtlgaYu8KDoH1EJQ6DQ==} uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} - use-sync-external-store@1.5.0: - resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==} - peerDependencies: - react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - util-deprecate@1.0.2: resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} @@ -2895,10 +2765,6 @@ snapshots: dependencies: regenerator-runtime: 0.14.1 - '@babel/runtime@7.27.0': - dependencies: - regenerator-runtime: 0.14.1 - '@balena/dockerignore@1.0.2': {} '@colors/colors@1.6.0': {} @@ -2909,18 +2775,7 @@ snapshots: enabled: 2.0.0 kuler: 2.0.0 - '@emnapi/core@1.4.0': - dependencies: - '@emnapi/wasi-threads': 1.0.1 - tslib: 2.8.1 - optional: true - - '@emnapi/runtime@1.4.0': - dependencies: - tslib: 2.8.1 - optional: true - - '@emnapi/wasi-threads@1.0.1': + '@emnapi/runtime@1.3.1': dependencies: tslib: 2.8.1 optional: true @@ -2930,11 +2785,6 @@ snapshots: eslint: 9.21.0(jiti@2.4.2) eslint-visitor-keys: 3.4.3 - '@eslint-community/eslint-utils@4.5.1(eslint@9.21.0(jiti@2.4.2))': - dependencies: - eslint: 9.21.0(jiti@2.4.2) - eslint-visitor-keys: 3.4.3 - '@eslint-community/regexpp@4.12.1': {} '@eslint/config-array@0.19.2': @@ -3070,7 +2920,7 @@ snapshots: '@img/sharp-wasm32@0.33.5': dependencies: - '@emnapi/runtime': 1.4.0 + '@emnapi/runtime': 1.3.1 optional: true '@img/sharp-win32-ia32@0.33.5': @@ -3127,41 +2977,34 @@ snapshots: - encoding - utf-8-validate - '@napi-rs/wasm-runtime@0.2.8': - dependencies: - '@emnapi/core': 1.4.0 - '@emnapi/runtime': 1.4.0 - '@tybys/wasm-util': 0.9.0 - optional: true + '@next/env@15.1.7': {} - '@next/env@15.2.4': {} - - '@next/eslint-plugin-next@15.2.4': + '@next/eslint-plugin-next@15.1.7': dependencies: fast-glob: 3.3.1 - '@next/swc-darwin-arm64@15.2.4': + '@next/swc-darwin-arm64@15.1.7': optional: true - '@next/swc-darwin-x64@15.2.4': + '@next/swc-darwin-x64@15.1.7': optional: true - '@next/swc-linux-arm64-gnu@15.2.4': + '@next/swc-linux-arm64-gnu@15.1.7': optional: true - '@next/swc-linux-arm64-musl@15.2.4': + '@next/swc-linux-arm64-musl@15.1.7': optional: true - '@next/swc-linux-x64-gnu@15.2.4': + '@next/swc-linux-x64-gnu@15.1.7': optional: true - '@next/swc-linux-x64-musl@15.2.4': + '@next/swc-linux-x64-musl@15.1.7': optional: true - '@next/swc-win32-arm64-msvc@15.2.4': + '@next/swc-win32-arm64-msvc@15.1.7': optional: true - '@next/swc-win32-x64-msvc@15.2.4': + '@next/swc-win32-x64-msvc@15.1.7': optional: true '@nodelib/fs.scandir@2.1.5': @@ -3174,7 +3017,7 @@ snapshots: '@nodelib/fs.walk@1.2.8': dependencies: '@nodelib/fs.scandir': 2.1.5 - fastq: 1.19.1 + fastq: 1.19.0 '@nolyfill/is-core-module@1.0.39': {} @@ -3208,7 +3051,7 @@ snapshots: '@rtsao/scc@1.1.0': {} - '@rushstack/eslint-patch@1.11.0': {} + '@rushstack/eslint-patch@1.10.5': {} '@sindresorhus/is@5.6.0': {} @@ -3286,7 +3129,7 @@ snapshots: '@tailwindcss/node': 4.0.9 '@tailwindcss/oxide': 4.0.9 lightningcss: 1.29.1 - postcss: 8.5.3 + postcss: 8.5.2 tailwindcss: 4.0.9 '@tanstack/react-virtual@3.13.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': @@ -3297,11 +3140,6 @@ snapshots: '@tanstack/virtual-core@3.13.0': {} - '@tybys/wasm-util@0.9.0': - dependencies: - tslib: 2.8.1 - optional: true - '@types/d3-array@3.2.1': {} '@types/d3-color@3.1.3': {} @@ -3371,130 +3209,83 @@ snapshots: dependencies: '@types/node': 22.13.4 - '@typescript-eslint/eslint-plugin@8.29.0(@typescript-eslint/parser@8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3)': + '@typescript-eslint/eslint-plugin@8.24.1(@typescript-eslint/parser@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3)': dependencies: '@eslint-community/regexpp': 4.12.1 - '@typescript-eslint/parser': 8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/scope-manager': 8.29.0 - '@typescript-eslint/type-utils': 8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/utils': 8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/visitor-keys': 8.29.0 + '@typescript-eslint/parser': 8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/scope-manager': 8.24.1 + '@typescript-eslint/type-utils': 8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/utils': 8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/visitor-keys': 8.24.1 eslint: 9.21.0(jiti@2.4.2) graphemer: 1.4.0 ignore: 5.3.2 natural-compare: 1.4.0 - ts-api-utils: 2.1.0(typescript@5.7.3) + ts-api-utils: 2.0.1(typescript@5.7.3) typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/parser@8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3)': + '@typescript-eslint/parser@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3)': dependencies: - '@typescript-eslint/scope-manager': 8.29.0 - '@typescript-eslint/types': 8.29.0 - '@typescript-eslint/typescript-estree': 8.29.0(typescript@5.7.3) - '@typescript-eslint/visitor-keys': 8.29.0 + '@typescript-eslint/scope-manager': 8.24.1 + '@typescript-eslint/types': 8.24.1 + '@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3) + '@typescript-eslint/visitor-keys': 8.24.1 debug: 4.4.0 eslint: 9.21.0(jiti@2.4.2) typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/scope-manager@8.29.0': + '@typescript-eslint/scope-manager@8.24.1': dependencies: - '@typescript-eslint/types': 8.29.0 - '@typescript-eslint/visitor-keys': 8.29.0 + '@typescript-eslint/types': 8.24.1 + '@typescript-eslint/visitor-keys': 8.24.1 - '@typescript-eslint/type-utils@8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3)': + '@typescript-eslint/type-utils@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3)': dependencies: - '@typescript-eslint/typescript-estree': 8.29.0(typescript@5.7.3) - '@typescript-eslint/utils': 8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3) + '@typescript-eslint/utils': 8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) debug: 4.4.0 eslint: 9.21.0(jiti@2.4.2) - ts-api-utils: 2.1.0(typescript@5.7.3) + ts-api-utils: 2.0.1(typescript@5.7.3) typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/types@8.29.0': {} + '@typescript-eslint/types@8.24.1': {} - '@typescript-eslint/typescript-estree@8.29.0(typescript@5.7.3)': + '@typescript-eslint/typescript-estree@8.24.1(typescript@5.7.3)': dependencies: - '@typescript-eslint/types': 8.29.0 - '@typescript-eslint/visitor-keys': 8.29.0 + '@typescript-eslint/types': 8.24.1 + '@typescript-eslint/visitor-keys': 8.24.1 debug: 4.4.0 fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 semver: 7.7.1 - ts-api-utils: 2.1.0(typescript@5.7.3) + ts-api-utils: 2.0.1(typescript@5.7.3) typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/utils@8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3)': + '@typescript-eslint/utils@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3)': dependencies: - '@eslint-community/eslint-utils': 4.5.1(eslint@9.21.0(jiti@2.4.2)) - '@typescript-eslint/scope-manager': 8.29.0 - '@typescript-eslint/types': 8.29.0 - '@typescript-eslint/typescript-estree': 8.29.0(typescript@5.7.3) + '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0(jiti@2.4.2)) + '@typescript-eslint/scope-manager': 8.24.1 + '@typescript-eslint/types': 8.24.1 + '@typescript-eslint/typescript-estree': 8.24.1(typescript@5.7.3) eslint: 9.21.0(jiti@2.4.2) typescript: 5.7.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/visitor-keys@8.29.0': + '@typescript-eslint/visitor-keys@8.24.1': dependencies: - '@typescript-eslint/types': 8.29.0 + '@typescript-eslint/types': 8.24.1 eslint-visitor-keys: 4.2.0 - '@unrs/resolver-binding-darwin-arm64@1.3.3': - optional: true - - '@unrs/resolver-binding-darwin-x64@1.3.3': - optional: true - - '@unrs/resolver-binding-freebsd-x64@1.3.3': - optional: true - - '@unrs/resolver-binding-linux-arm-gnueabihf@1.3.3': - optional: true - - '@unrs/resolver-binding-linux-arm-musleabihf@1.3.3': - optional: true - - '@unrs/resolver-binding-linux-arm64-gnu@1.3.3': - optional: true - - '@unrs/resolver-binding-linux-arm64-musl@1.3.3': - optional: true - - '@unrs/resolver-binding-linux-ppc64-gnu@1.3.3': - optional: true - - '@unrs/resolver-binding-linux-s390x-gnu@1.3.3': - optional: true - - '@unrs/resolver-binding-linux-x64-gnu@1.3.3': - optional: true - - '@unrs/resolver-binding-linux-x64-musl@1.3.3': - optional: true - - '@unrs/resolver-binding-wasm32-wasi@1.3.3': - dependencies: - '@napi-rs/wasm-runtime': 0.2.8 - optional: true - - '@unrs/resolver-binding-win32-arm64-msvc@1.3.3': - optional: true - - '@unrs/resolver-binding-win32-ia32-msvc@1.3.3': - optional: true - - '@unrs/resolver-binding-win32-x64-msvc@1.3.3': - optional: true - acorn-jsx@5.3.2(acorn@8.14.0): dependencies: acorn: 8.14.0 @@ -3695,7 +3486,7 @@ snapshots: callsites@3.1.0: {} - caniuse-lite@1.0.30001712: {} + caniuse-lite@1.0.30001700: {} chalk@4.1.2: dependencies: @@ -3900,8 +3691,6 @@ snapshots: depd@2.0.0: {} - dequal@2.0.3: {} - detect-libc@1.0.3: {} detect-libc@2.0.3: @@ -3934,7 +3723,7 @@ snapshots: dom-helpers@5.2.1: dependencies: - '@babel/runtime': 7.27.0 + '@babel/runtime': 7.26.9 csstype: 3.1.3 dom-serializer@2.0.0: @@ -4082,16 +3871,16 @@ snapshots: escape-string-regexp@4.0.0: {} - eslint-config-next@15.2.4(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3): + eslint-config-next@15.1.7(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3): dependencies: - '@next/eslint-plugin-next': 15.2.4 - '@rushstack/eslint-patch': 1.11.0 - '@typescript-eslint/eslint-plugin': 8.29.0(@typescript-eslint/parser@8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) - '@typescript-eslint/parser': 8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) + '@next/eslint-plugin-next': 15.1.7 + '@rushstack/eslint-patch': 1.10.5 + '@typescript-eslint/eslint-plugin': 8.24.1(@typescript-eslint/parser@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/parser': 8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) eslint: 9.21.0(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.10.0(eslint-plugin-import@2.31.0)(eslint@9.21.0(jiti@2.4.2)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-typescript@3.10.0)(eslint@9.21.0(jiti@2.4.2)) + eslint-import-resolver-typescript: 3.8.2(eslint-plugin-import@2.31.0)(eslint@9.21.0(jiti@2.4.2)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-typescript@3.8.2)(eslint@9.21.0(jiti@2.4.2)) eslint-plugin-jsx-a11y: 6.10.2(eslint@9.21.0(jiti@2.4.2)) eslint-plugin-react: 7.37.4(eslint@9.21.0(jiti@2.4.2)) eslint-plugin-react-hooks: 5.1.0(eslint@9.21.0(jiti@2.4.2)) @@ -4102,7 +3891,7 @@ snapshots: - eslint-plugin-import-x - supports-color - eslint-config-prettier@10.1.1(eslint@9.21.0(jiti@2.4.2)): + eslint-config-prettier@10.0.2(eslint@9.21.0(jiti@2.4.2)): dependencies: eslint: 9.21.0(jiti@2.4.2) @@ -4114,33 +3903,33 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.10.0(eslint-plugin-import@2.31.0)(eslint@9.21.0(jiti@2.4.2)): + eslint-import-resolver-typescript@3.8.2(eslint-plugin-import@2.31.0)(eslint@9.21.0(jiti@2.4.2)): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.0 + enhanced-resolve: 5.18.1 eslint: 9.21.0(jiti@2.4.2) get-tsconfig: 4.10.0 - is-bun-module: 2.0.0 - stable-hash: 0.0.5 - tinyglobby: 0.2.12 - unrs-resolver: 1.3.3 + is-bun-module: 1.3.0 + stable-hash: 0.0.4 + tinyglobby: 0.2.11 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-typescript@3.10.0)(eslint@9.21.0(jiti@2.4.2)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-typescript@3.8.2)(eslint@9.21.0(jiti@2.4.2)) transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.0)(eslint@9.21.0(jiti@2.4.2)): + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.2(eslint-plugin-import@2.31.0)(eslint@9.21.0(jiti@2.4.2)))(eslint@9.21.0(jiti@2.4.2)): dependencies: debug: 3.2.7 optionalDependencies: - '@typescript-eslint/parser': 8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/parser': 8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) eslint: 9.21.0(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.10.0(eslint-plugin-import@2.31.0)(eslint@9.21.0(jiti@2.4.2)) + eslint-import-resolver-typescript: 3.8.2(eslint-plugin-import@2.31.0)(eslint@9.21.0(jiti@2.4.2)) transitivePeerDependencies: - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-typescript@3.10.0)(eslint@9.21.0(jiti@2.4.2)): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-typescript@3.8.2)(eslint@9.21.0(jiti@2.4.2)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -4151,7 +3940,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.21.0(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.0)(eslint@9.21.0(jiti@2.4.2)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.2(eslint-plugin-import@2.31.0)(eslint@9.21.0(jiti@2.4.2)))(eslint@9.21.0(jiti@2.4.2)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -4163,7 +3952,7 @@ snapshots: string.prototype.trimend: 1.0.9 tsconfig-paths: 3.15.0 optionalDependencies: - '@typescript-eslint/parser': 8.29.0(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) + '@typescript-eslint/parser': 8.24.1(eslint@9.21.0(jiti@2.4.2))(typescript@5.7.3) transitivePeerDependencies: - eslint-import-resolver-typescript - eslint-import-resolver-webpack @@ -4188,14 +3977,14 @@ snapshots: safe-regex-test: 1.1.0 string.prototype.includes: 2.0.1 - eslint-plugin-prettier@5.2.3(eslint-config-prettier@10.1.1(eslint@9.21.0(jiti@2.4.2)))(eslint@9.21.0(jiti@2.4.2))(prettier@3.5.2): + eslint-plugin-prettier@5.2.3(eslint-config-prettier@10.0.2(eslint@9.21.0(jiti@2.4.2)))(eslint@9.21.0(jiti@2.4.2))(prettier@3.5.2): dependencies: eslint: 9.21.0(jiti@2.4.2) prettier: 3.5.2 prettier-linter-helpers: 1.0.0 synckit: 0.9.2 optionalDependencies: - eslint-config-prettier: 10.1.1(eslint@9.21.0(jiti@2.4.2)) + eslint-config-prettier: 10.0.2(eslint@9.21.0(jiti@2.4.2)) eslint-plugin-react-hooks@5.1.0(eslint@9.21.0(jiti@2.4.2)): dependencies: @@ -4321,9 +4110,9 @@ snapshots: fast-levenshtein@2.0.6: {} - fastq@1.19.1: + fastq@1.19.0: dependencies: - reusify: 1.1.0 + reusify: 1.0.4 fdir@6.4.3(picomatch@4.0.2): optionalDependencies: @@ -4539,13 +4328,7 @@ snapshots: i18next@21.10.0: dependencies: - '@babel/runtime': 7.27.0 - - i18next@24.2.3(typescript@5.7.3): - dependencies: - '@babel/runtime': 7.27.0 - optionalDependencies: - typescript: 5.7.3 + '@babel/runtime': 7.26.9 ical-date-parser@4.0.0: {} @@ -4599,7 +4382,7 @@ snapshots: call-bound: 1.0.3 has-tostringtag: 1.0.2 - is-bun-module@2.0.0: + is-bun-module@1.3.0: dependencies: semver: 7.7.1 @@ -4869,7 +4652,7 @@ snapshots: mimic-response@4.0.0: {} - minecraftstatuspinger@1.2.2: {} + minecraftstatuspinger@1.2.1: {} mini-svg-data-uri@1.4.4: {} @@ -4901,11 +4684,11 @@ snapshots: nan@2.22.0: optional: true - nanoid@3.3.11: {} + nanoid@3.3.8: {} natural-compare@1.4.0: {} - next-i18next@12.1.0(next@15.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + next-i18next@12.1.0(next@15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: '@babel/runtime': 7.26.9 '@types/hoist-non-react-statics': 3.3.6 @@ -4913,33 +4696,33 @@ snapshots: hoist-non-react-statics: 3.3.2 i18next: 21.10.0 i18next-fs-backend: 1.2.0 - next: 15.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + next: 15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-i18next: 11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) transitivePeerDependencies: - react-dom - react-native - next@15.2.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + next@15.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@next/env': 15.2.4 + '@next/env': 15.1.7 '@swc/counter': 0.1.3 '@swc/helpers': 0.5.15 busboy: 1.6.0 - caniuse-lite: 1.0.30001712 + caniuse-lite: 1.0.30001700 postcss: 8.4.31 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) styled-jsx: 5.1.6(react@18.3.1) optionalDependencies: - '@next/swc-darwin-arm64': 15.2.4 - '@next/swc-darwin-x64': 15.2.4 - '@next/swc-linux-arm64-gnu': 15.2.4 - '@next/swc-linux-arm64-musl': 15.2.4 - '@next/swc-linux-x64-gnu': 15.2.4 - '@next/swc-linux-x64-musl': 15.2.4 - '@next/swc-win32-arm64-msvc': 15.2.4 - '@next/swc-win32-x64-msvc': 15.2.4 + '@next/swc-darwin-arm64': 15.1.7 + '@next/swc-darwin-x64': 15.1.7 + '@next/swc-linux-arm64-gnu': 15.1.7 + '@next/swc-linux-arm64-musl': 15.1.7 + '@next/swc-linux-x64-gnu': 15.1.7 + '@next/swc-linux-x64-musl': 15.1.7 + '@next/swc-win32-arm64-msvc': 15.1.7 + '@next/swc-win32-x64-msvc': 15.1.7 sharp: 0.33.5 transitivePeerDependencies: - '@babel/core' @@ -5077,13 +4860,13 @@ snapshots: postcss@8.4.31: dependencies: - nanoid: 3.3.11 + nanoid: 3.3.8 picocolors: 1.1.1 source-map-js: 1.2.1 - postcss@8.5.3: + postcss@8.5.2: dependencies: - nanoid: 3.3.11 + nanoid: 3.3.8 picocolors: 1.1.1 source-map-js: 1.2.1 @@ -5093,11 +4876,6 @@ snapshots: dependencies: fast-diff: 1.3.0 - prettier-plugin-organize-imports@4.1.0(prettier@3.5.2)(typescript@5.7.3): - dependencies: - prettier: 3.5.2 - typescript: 5.7.3 - prettier@3.5.2: {} pretty-bytes@6.1.1: {} @@ -5164,15 +4942,6 @@ snapshots: optionalDependencies: react-dom: 18.3.1(react@18.3.1) - react-i18next@11.18.6(i18next@24.2.3(typescript@5.7.3))(react-dom@18.3.1(react@18.3.1))(react@18.3.1): - dependencies: - '@babel/runtime': 7.26.9 - html-parse-stringify: 3.0.1 - i18next: 24.2.3(typescript@5.7.3) - react: 18.3.1 - optionalDependencies: - react-dom: 18.3.1(react@18.3.1) - react-icons@5.4.0(react@18.3.1): dependencies: react: 18.3.1 @@ -5191,7 +4960,7 @@ snapshots: react-transition-group@4.4.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@babel/runtime': 7.27.0 + '@babel/runtime': 7.26.9 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 @@ -5288,7 +5057,7 @@ snapshots: dependencies: lowercase-keys: 3.0.0 - reusify@1.1.0: {} + reusify@1.0.4: {} rfc4648@1.5.4: {} @@ -5450,7 +5219,7 @@ snapshots: cpu-features: 0.0.10 nan: 2.22.0 - stable-hash@0.0.5: {} + stable-hash@0.0.4: {} stack-trace@0.0.10: {} @@ -5560,11 +5329,9 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} - swr@2.3.3(react@18.3.1): + swr@1.3.0(react@18.3.1): dependencies: - dequal: 2.0.3 react: 18.3.1 - use-sync-external-store: 1.5.0(react@18.3.1) synckit@0.9.2: dependencies: @@ -5612,7 +5379,7 @@ snapshots: tiny-invariant@1.3.3: {} - tinyglobby@0.2.12: + tinyglobby@0.2.11: dependencies: fdir: 6.4.3(picomatch@4.0.2) picomatch: 4.0.2 @@ -5643,7 +5410,7 @@ snapshots: triple-beam@1.4.1: {} - ts-api-utils@2.1.0(typescript@5.7.3): + ts-api-utils@2.0.1(typescript@5.7.3): dependencies: typescript: 5.7.3 @@ -5708,24 +5475,6 @@ snapshots: unpipe@1.0.0: {} - unrs-resolver@1.3.3: - optionalDependencies: - '@unrs/resolver-binding-darwin-arm64': 1.3.3 - '@unrs/resolver-binding-darwin-x64': 1.3.3 - '@unrs/resolver-binding-freebsd-x64': 1.3.3 - '@unrs/resolver-binding-linux-arm-gnueabihf': 1.3.3 - '@unrs/resolver-binding-linux-arm-musleabihf': 1.3.3 - '@unrs/resolver-binding-linux-arm64-gnu': 1.3.3 - '@unrs/resolver-binding-linux-arm64-musl': 1.3.3 - '@unrs/resolver-binding-linux-ppc64-gnu': 1.3.3 - '@unrs/resolver-binding-linux-s390x-gnu': 1.3.3 - '@unrs/resolver-binding-linux-x64-gnu': 1.3.3 - '@unrs/resolver-binding-linux-x64-musl': 1.3.3 - '@unrs/resolver-binding-wasm32-wasi': 1.3.3 - '@unrs/resolver-binding-win32-arm64-msvc': 1.3.3 - '@unrs/resolver-binding-win32-ia32-msvc': 1.3.3 - '@unrs/resolver-binding-win32-x64-msvc': 1.3.3 - urbackup-server-api@0.8.9: dependencies: async-mutex: 0.3.2 @@ -5737,10 +5486,6 @@ snapshots: dependencies: punycode: 2.3.1 - use-sync-external-store@1.5.0(react@18.3.1): - dependencies: - react: 18.3.1 - util-deprecate@1.0.2: {} uuid@10.0.0: {} diff --git a/public/locales/af/common.json b/public/locales/af/common.json index fa71b238..20f3d170 100644 --- a/public/locales/af/common.json +++ b/public/locales/af/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Kennisgewings", "issues": "Kwessies", - "pulls": "Trek Versoeke", - "repositories": "Bewaarplekke" + "pulls": "Trek Versoeke" }, "stash": { "scenes": "Tonele", @@ -1024,23 +1023,12 @@ "bcharge": "Batterylading", "timeleft": "Oorblywende Tyd" }, - "karakeep": { - "bookmarks": "Boekmerke", - "favorites": "Gunstelinge", - "archived": "Geargiveer", - "highlights": "Hoogtepunte", - "lists": "Lyste", + "hoarder": { + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "archived": "Archived", + "highlights": "Highlights", + "lists": "Lists", "tags": "Merkers" - }, - "slskd": { - "slskStatus": "Netwerk", - "connected": "Gekoppel", - "disconnected": "Ontkoppel", - "updateStatus": "Opdateer", - "update_yes": "Beskikbaar", - "update_no": "Op Datum", - "downloads": "Aflaaie", - "uploads": "Oplaaie", - "sharedFiles": "Lêers" } } diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json index dbe892aa..7c7344f8 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "الإشعارات", "issues": "المُشكِلات", - "pulls": "طلبات السحب", - "repositories": "Repositories" + "pulls": "طلبات السحب" }, "stash": { "scenes": "المشاهد", @@ -1024,23 +1023,12 @@ "bcharge": "شحن البطارية", "timeleft": "الوقت المتبقي" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "التصنيفات" - }, - "slskd": { - "slskStatus": "الشبكة", - "connected": "متصل", - "disconnected": "غير متصل", - "updateStatus": "Update", - "update_yes": "متاح", - "update_no": "حتى الآن", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "ملفات" } } diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json index ccb6f5bb..74505cc6 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -394,7 +394,7 @@ "strelaysrv": { "numActiveSessions": "Сесии", "numConnections": "Connections", - "dataRelayed": "", + "dataRelayed": "Relayed", "transferRate": "Скорост" }, "mastodon": { @@ -885,8 +885,7 @@ "gitea": { "notifications": "Известия", "issues": "Издания", - "pulls": "Заявки за сливане", - "repositories": "Repositories" + "pulls": "Заявки за сливане" }, "stash": { "scenes": "Сцени", @@ -1002,7 +1001,7 @@ "argocd": { "apps": "Приложения", "synced": "Synced", - "outOfSync": "", + "outOfSync": "Out Of Sync", "healthy": "Здрав", "degraded": "Деградирани", "progressing": "Progressing", @@ -1024,23 +1023,12 @@ "bcharge": "Заряд на батерията", "timeleft": "Оставащо Време" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Тагове" - }, - "slskd": { - "slskStatus": "Мрежа", - "connected": "Свързан", - "disconnected": "Не е свързан", - "updateStatus": "Update", - "update_yes": "Наличен", - "update_no": "Актуално", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Файлове" } } diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json index b70794b3..620a0df5 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notificacions", "issues": "Problemes", - "pulls": "Sol·licitud de Canvis", - "repositories": "Repositories" + "pulls": "Sol·licitud de Canvis" }, "stash": { "scenes": "Escenes", @@ -1024,23 +1023,12 @@ "bcharge": "Càrrega de la bateria", "timeleft": "Temps restant" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Etiquetes" - }, - "slskd": { - "slskStatus": "Xarxa", - "connected": "Connectat", - "disconnected": "Desconnectat", - "updateStatus": "Update", - "update_yes": "Disponible", - "update_no": "Actualitzat", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Fitxers" } } diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index 1d99ec95..31c7921a 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -85,16 +85,16 @@ "ping": { "error": "Chyba", "ping": "Odezva", - "down": "Výpadek", - "up": "Běží", + "down": "Down", + "up": "Up", "not_available": "Není k dispozici" }, "siteMonitor": { "http_status": "Stav HTTP", "error": "Chyba", "response": "Odpověď", - "down": "Výpadek", - "up": "Běží", + "down": "Down", + "up": "Up", "not_available": "Není k dispozici" }, "emby": { @@ -144,13 +144,13 @@ "uptime": "Doba spuštění", "maxDown": "Max. Down", "maxUp": "Max. Up", - "down": "Výpadek", - "up": "Běží", + "down": "Down", + "up": "Up", "received": "Přijaté", "sent": "Odeslané", "externalIPAddress": "Ext. IP", - "externalIPv6Address": "Veřejná IPv6", - "externalIPv6Prefix": "Věřejná IPv6 prefix" + "externalIPv6Address": "Ext. IPv6", + "externalIPv6Prefix": "Ext. IPv6-Prefix" }, "caddy": { "upstreams": "Odesílání dat", @@ -178,7 +178,7 @@ "connectedAp": "Připojené APs", "activeUser": "Aktivní zařízení", "alerts": "Upozornění", - "connectedGateways": "Připojené brány", + "connectedGateways": "Connected gateways", "connectedSwitches": "Připojené přepínače" }, "nzbget": { @@ -229,8 +229,8 @@ "seed": "Seedované" }, "develancacheui": { - "cachehitbytes": "Byty nalezené v mezipaměti", - "cachemissbytes": "Byty nenalezené v mezipaměti" + "cachehitbytes": "Cache Hit Bytes", + "cachemissbytes": "Cache Miss Bytes" }, "downloadstation": { "download": "Stahování", @@ -287,7 +287,7 @@ "total": "Celkem", "connected": "", "new_devices": "", - "down_alerts": "Upozornění na výpadek" + "down_alerts": "Down Alerts" }, "pihole": { "queries": "Dotazy", @@ -313,13 +313,13 @@ }, "suwayomi": { "download": "Staženo", - "nondownload": "Nestaženo", + "nondownload": "Non-Downloaded", "read": "Přečteno", "unread": "Nepřečteno", - "downloadedread": "Staženo a přečteno", - "downloadedunread": "Staženo a nepřečteno", - "nondownloadedread": "Nestaženo a přečteno", - "nondownloadedunread": "Nestaženo a nepřečteno" + "downloadedread": "Downloaded & Read", + "downloadedunread": "Downloaded & Unread", + "nondownloadedread": "Non-Downloaded & Read", + "nondownloadedunread": "Non-Downloaded & Unread" }, "tailscale": { "address": "Adresa", @@ -337,15 +337,15 @@ }, "technitium": { "totalQueries": "Dotazy", - "totalNoError": "Úspěšně", - "totalServerFailure": "Chyby", - "totalNxDomain": "NX domény", - "totalRefused": "Odmítnuto", - "totalAuthoritative": "Autoritativní", - "totalRecursive": "Rekurzivní", - "totalCached": "V mezipaměti", + "totalNoError": "Success", + "totalServerFailure": "Failures", + "totalNxDomain": "NX Domains", + "totalRefused": "Refused", + "totalAuthoritative": "Authoritative", + "totalRecursive": "Recursive", + "totalCached": "Cached", "totalBlocked": "Blokováno", - "totalDropped": "Vynecháno", + "totalDropped": "Dropped", "totalClients": "Klienti" }, "tdarr": { @@ -434,7 +434,7 @@ "load": "Zatížení", "wait": "Počkejte prosím", "temp": "TEPLOTA", - "_temp": "Teplota", + "_temp": "Temp", "warn": "Varováni", "uptime": "BĚŽÍ", "total": "Celkem", @@ -442,12 +442,12 @@ "used": "Využité", "days": "d", "hours": "h", - "crit": "Kritické", + "crit": "Crit", "read": "Přečteno", - "write": "Zápis", - "gpu": "Grafická karta", - "mem": "Pamět RAM", - "swap": "Swap RAM" + "write": "Write", + "gpu": "GPU", + "mem": "Mem", + "swap": "Swap" }, "quicklaunch": { "bookmark": "Záložka", @@ -456,7 +456,7 @@ "custom": "Vlastní", "visit": "Navštivte", "url": "Odkaz", - "searchsuggestion": "Doporučení" + "searchsuggestion": "Suggestion" }, "wmo": { "0-day": "Slunečno", @@ -523,15 +523,15 @@ "up_to_date": "Žádné", "child_bridges": "Podřízené můstky", "child_bridges_status": "{{ok}}/{{total}}", - "up": "Běží", + "up": "Up", "pending": "Čeká", - "down": "Výpadek" + "down": "Down" }, "healthchecks": { "new": "Nové", - "up": "Běží", + "up": "Up", "grace": "V období odkladu", - "down": "Výpadek", + "down": "Down", "paused": "Pozastaveno", "status": "Stav", "last_ping": "Poslední ping", @@ -573,14 +573,14 @@ "hdhomerun": { "channels": "Kanály", "hd": "HD", - "tunerCount": "Tuner", - "channelNumber": "Kanál", - "channelNetwork": "Síť", - "signalStrength": "Síla", - "signalQuality": "Kvalita", - "symbolQuality": "Kvalita", + "tunerCount": "Tuners", + "channelNumber": "Channel", + "channelNetwork": "Network", + "signalStrength": "Strength", + "signalQuality": "Quality", + "symbolQuality": "Quality", "networkRate": "Přenosová rychlost", - "clientIP": "Klient" + "clientIP": "Client" }, "scrutiny": { "passed": "Úspěšné", @@ -592,12 +592,12 @@ "total": "Celkem" }, "peanut": { - "battery_charge": "Úroveň baterie", - "ups_load": "Zítěž UPS", - "ups_status": "Stav UPS", + "battery_charge": "Battery Charge", + "ups_load": "UPS Load", + "ups_status": "UPS Status", "online": "Online", - "on_battery": "Na baterii", - "low_battery": "Nízký stav baterie" + "on_battery": "On Battery", + "low_battery": "Low Battery" }, "nextdns": { "wait": "Čekejte prosím", @@ -615,9 +615,9 @@ "streams_xepg": "Kanály XEPG" }, "opendtu": { - "yieldDay": "Dnes", - "absolutePower": "Výkon", - "relativePower": "Výkon %", + "yieldDay": "Today", + "absolutePower": "Power", + "relativePower": "Power %", "limit": "Limit" }, "opnsense": { @@ -646,9 +646,9 @@ "load": "Prům. zatížení", "memory": "Využití paměti", "wanStatus": "Stav WAN", - "up": "Běží", - "down": "Výpadek", - "temp": "Teplota", + "up": "Up", + "down": "Down", + "temp": "Temp", "disk": "Využití disku", "wanIP": "IP WAN" }, @@ -668,14 +668,14 @@ "up": "Stránky Up", "down": "Stránky Down", "uptime": "Doba spuštění", - "incident": "Událost", + "incident": "Incident", "m": "m" }, "atsumeru": { "series": "Seriály", - "archives": "Archivy", - "chapters": "Kapitoly", - "categories": "Kategorie" + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" }, "komga": { "libraries": "Knihovny", @@ -705,13 +705,13 @@ "time": "Čas" }, "firefly": { - "networth": "Čisté jmění", - "budget": "Rozpočet" + "networth": "Net Worth", + "budget": "Budget" }, "grafana": { "dashboards": "Nástěnky", "datasources": "Zdroje dat", - "totalalerts": "Celkový počet upozornění2", + "totalalerts": "Celkový počet upozornění", "alertstriggered": "Spuštěné výstrahy" }, "nextcloud": { @@ -749,7 +749,7 @@ "uptime": "Doba spuštění" }, "ghostfolio": { - "gross_percent_today": "Dnes", + "gross_percent_today": "Today", "gross_percent_1y": "Jeden rok", "gross_percent_max": "Za celou dobu" }, @@ -770,8 +770,8 @@ }, "calibreweb": { "books": "Knihy", - "authors": "Autoři", - "categories": "Kategorie", + "authors": "Authors", + "categories": "Categories", "series": "Seriály" }, "jdownloader": { @@ -785,44 +785,44 @@ "totalFiles": "Soubory" }, "azuredevops": { - "result": "Výsledek", + "result": "Result", "status": "Stav", - "buildId": "ID sestavení", - "succeeded": "Úspěšně", - "notStarted": "Nezahájeno", + "buildId": "Build ID", + "succeeded": "Succeeded", + "notStarted": "Not Started", "failed": "Selhalo", - "canceled": "Zrušeno", - "inProgress": "Probíhá", - "totalPrs": "Celkem PR", - "myPrs": "Moje PR", + "canceled": "Canceled", + "inProgress": "In Progress", + "totalPrs": "Total PRs", + "myPrs": "My PRs", "approved": "Schváleno" }, "gamedig": { "status": "Stav", "online": "Online", "offline": "Offline", - "name": "Jméno", - "map": "Mapa", - "currentPlayers": "Počet hráčů", + "name": "Name", + "map": "Map", + "currentPlayers": "Current players", "players": "Hráči", - "maxPlayers": "Maximální počet hráčů", - "bots": "Boti", + "maxPlayers": "Max players", + "bots": "Bots", "ping": "Odezva" }, "urbackup": { "ok": "Ok", - "errored": "Chyby", - "noRecent": "Zastaralý", - "totalUsed": "Využití úložiště" + "errored": "Errors", + "noRecent": "Out of Date", + "totalUsed": "Used Storage" }, "mealie": { - "recipes": "Recepty", + "recipes": "Recipes", "users": "Uživatelé", - "categories": "Kategorie", - "tags": "Štítky" + "categories": "Categories", + "tags": "Tags" }, "openmediavault": { - "downloading": "Stahování", + "downloading": "Downloading", "total": "Celkem", "running": "Běží", "stopped": "Zastaveno", @@ -831,95 +831,94 @@ }, "openwrt": { "uptime": "Doba spuštění", - "cpuLoad": "Prům. zatížení procesoru (5m)", - "up": "Běží", - "down": "Výpadek", - "bytesTx": "Přeneseno", + "cpuLoad": "CPU Load Avg (5m)", + "up": "Up", + "down": "Down", + "bytesTx": "Transmitted", "bytesRx": "Přijaté" }, "uptimerobot": { "status": "Stav", "uptime": "Doba spuštění", - "lastDown": "Poslední výpadek", - "downDuration": "Trvání výpadku", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", "sitesUp": "Stránky Up", "sitesDown": "Stránky Down", "paused": "Pozastaveno", - "notyetchecked": "Zatím nezkontrolováno", - "up": "Běží", - "seemsdown": "Zdá se nedostupný", - "down": "Výpadek", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", "unknown": "Neznámý" }, "calendar": { - "inCinemas": "V kinech", - "physicalRelease": "Fyzické vydání", - "digitalRelease": "Digitální vydání", - "noEventsToday": "Pro dnešek žádné události!", - "noEventsFound": "Nemáte žádné události" + "inCinemas": "In cinemas", + "physicalRelease": "Physical release", + "digitalRelease": "Digital release", + "noEventsToday": "No events for today!", + "noEventsFound": "No events found" }, "romm": { - "platforms": "Platformy", - "totalRoms": "Hry", - "saves": "Uložené", - "states": "Stavy", - "screenshots": "Snímky obrazovky", - "totalfilesize": "Celková velikost" + "platforms": "Platforms", + "totalRoms": "Games", + "saves": "Saves", + "states": "States", + "screenshots": "Screenshots", + "totalfilesize": "Total Size" }, "mailcow": { "domains": "Domény", - "mailboxes": "E-mailové schránky", - "mails": "Maily", + "mailboxes": "Mailboxes", + "mails": "Mails", "storage": "Úložiště" }, "netdata": { - "warnings": "Upozornění", - "criticals": "Kritické" + "warnings": "Warnings", + "criticals": "Criticals" }, "plantit": { - "events": "Události", - "plants": "Rostliny", + "events": "Events", + "plants": "Plants", "photos": "Fotografie", - "species": "Druhy" + "species": "Species" }, "gitea": { - "notifications": "Oznámení", + "notifications": "Notifications", "issues": "Problémy", - "pulls": "Pull Requests", - "repositories": "Repozitáře" + "pulls": "Pull Requests" }, "stash": { - "scenes": "Scény", - "scenesPlayed": "Přehrané scény", - "playCount": "Celkový počet přehrání", - "playDuration": "Čas sledování", - "sceneSize": "Velikost scén", - "sceneDuration": "Délka scény", - "images": "Obrázky", - "imageSize": "Velikost obrázků", - "galleries": "Galerie", - "performers": "Herci", - "studios": "Studia", + "scenes": "Scenes", + "scenesPlayed": "Scenes Played", + "playCount": "Total Plays", + "playDuration": "Time Watched", + "sceneSize": "Scenes Size", + "sceneDuration": "Scenes Duration", + "images": "Images", + "imageSize": "Images Size", + "galleries": "Galleries", + "performers": "Performers", + "studios": "Studios", "movies": "Filmy", - "tags": "Štítky", - "oCount": "Počet O" + "tags": "Tags", + "oCount": "O Count" }, "tandoor": { "users": "Uživatelé", - "recipes": "Recepty", - "keywords": "Klíčová slova" + "recipes": "Recipes", + "keywords": "Keywords" }, "homebox": { - "items": "Položky", - "totalWithWarranty": "Se zárukou", - "locations": "Lokality", - "labels": "Štítky", + "items": "Items", + "totalWithWarranty": "With Warranty", + "locations": "Locations", + "labels": "Labels", "users": "Uživatelé", - "totalValue": "Celková hodnota" + "totalValue": "Total Value" }, "crowdsec": { "alerts": "Upozornění", - "bans": "Bany" + "bans": "Bans" }, "wgeasy": { "connected": "", @@ -928,10 +927,10 @@ "total": "Celkem" }, "swagdashboard": { - "proxied": "Přes proxy", - "auth": "S ověřením", - "outdated": "Zastaralé", - "banned": "Zabanován" + "proxied": "Proxied", + "auth": "With Auth", + "outdated": "Outdated", + "banned": "Banned" }, "myspeed": { "ping": "Odezva", @@ -939,46 +938,46 @@ "upload": "Nahrávání" }, "stocks": { - "stocks": "Akcie", - "loading": "Načítání", - "open": "Otevřeno - US trh", - "closed": "Uzavřeno - US trh", - "invalidConfiguration": "Neplatná konfigurace" + "stocks": "Stocks", + "loading": "Loading", + "open": "Open - US Market", + "closed": "Closed - US Market", + "invalidConfiguration": "Invalid Configuration" }, "frigate": { - "cameras": "Kamery", + "cameras": "Cameras", "uptime": "Doba spuštění", "version": "Verze" }, "linkwarden": { - "links": "Linky", - "collections": "Sbírky", - "tags": "Štítky" + "links": "Links", + "collections": "Collections", + "tags": "Tags" }, "zabbix": { - "unclassified": "Neklasifikováno", + "unclassified": "Not classified", "information": "Informace", - "warning": "Upozornění", - "average": "Průměr", - "high": "Vysoký", - "disaster": "Katastrofa" + "warning": "Warning", + "average": "Average", + "high": "High", + "disaster": "Disaster" }, "lubelogger": { - "vehicle": "Vozidlo", - "vehicles": "Vozidla", - "serviceRecords": "Servisní záznamy", - "reminders": "Připomenutí", - "nextReminder": "Další připomenutí", - "none": "Žádné" + "vehicle": "Vehicle", + "vehicles": "Vehicles", + "serviceRecords": "Service Records", + "reminders": "Reminders", + "nextReminder": "Next Reminder", + "none": "None" }, "vikunja": { - "projects": "Aktivní projekty", - "tasks7d": "Úkoly k dokončení tento týden", - "tasksOverdue": "Zpožděné úkoly", - "tasksInProgress": "Probíhají úkoly" + "projects": "Active Projects", + "tasks7d": "Tasks Due This Week", + "tasksOverdue": "Overdue Tasks", + "tasksInProgress": "Tasks In Progress" }, "headscale": { - "name": "Jméno", + "name": "Name", "address": "Adresa", "last_seen": "Naposledy viděno", "status": "Stav", @@ -986,10 +985,10 @@ "offline": "Offline" }, "beszel": { - "name": "Jméno", - "systems": "Systém", - "up": "Běží", - "down": "Výpadek", + "name": "Name", + "systems": "Systems", + "up": "Up", + "down": "Down", "paused": "Pozastaveno", "pending": "Čeká", "status": "Stav", @@ -997,50 +996,39 @@ "cpu": "CPU", "memory": "RAM", "disk": "Disk", - "network": "Síť" + "network": "NET" }, "argocd": { - "apps": "Aplikace", - "synced": "Synchronizováno", - "outOfSync": "Nesynchronizováno", + "apps": "Apps", + "synced": "Synced", + "outOfSync": "Out Of Sync", "healthy": "Zdravý", - "degraded": "Degradováno", - "progressing": "Probíhá", + "degraded": "Degraded", + "progressing": "Progressing", "missing": "Chybějící", - "suspended": "Pozastaveno" + "suspended": "Suspended" }, "spoolman": { - "loading": "Načítání" + "loading": "Loading" }, "gitlab": { - "groups": "Skupiny", + "groups": "Groups", "issues": "Problémy", - "merges": "Žádosti o sloučení", - "projects": "Projekty" + "merges": "Merge Requests", + "projects": "Projects" }, "apcups": { "status": "Stav", "load": "Zatížení", - "bcharge": "Úroveň baterie", + "bcharge": "Battery Charge", "timeleft": "Zbývající čas" }, - "karakeep": { - "bookmarks": "Záložky", - "favorites": "Oblíbené", - "archived": "Archivováno", - "highlights": "Zvýraznění", - "lists": "Seznamy", - "tags": "Štítky" - }, - "slskd": { - "slskStatus": "Síť", - "connected": "", - "disconnected": "Odpojeno", - "updateStatus": "Aktualizace", - "update_yes": "Dostupné", - "update_no": "Žádné", - "downloads": "Stažení", - "uploads": "Nahrávání", - "sharedFiles": "Soubory" + "hoarder": { + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "archived": "Archived", + "highlights": "Highlights", + "lists": "Lists", + "tags": "Tags" } } diff --git a/public/locales/da/common.json b/public/locales/da/common.json index c7115af3..8a354b91 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Problemer", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -1024,23 +1023,12 @@ "bcharge": "Batteriniveau", "timeleft": "Resterende tid" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tags" - }, - "slskd": { - "slskStatus": "Network", - "connected": "Connected", - "disconnected": "Disconnected", - "updateStatus": "Update", - "update_yes": "Tilgængelig", - "update_no": "Opdateret", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Filer" } } diff --git a/public/locales/de/common.json b/public/locales/de/common.json index 6ea5a440..69c0fe7c 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -447,7 +447,7 @@ "write": "Schreiben", "gpu": "GPU", "mem": "RAM", - "swap": "Auslagerung" + "swap": "Swap" }, "quicklaunch": { "bookmark": "Lesezeichen", @@ -665,8 +665,8 @@ "storage": "Speicher" }, "uptimekuma": { - "up": "Up", - "down": "Down", + "up": "Seiten verfügbar", + "down": "Seiten nicht verfügbar", "uptime": "Betriebszeit", "incident": "Vorfall", "m": "min" @@ -744,8 +744,8 @@ "targets_total": "Alle Ziele" }, "gatus": { - "up": "Up", - "down": "Down", + "up": "Seiten verfügbar", + "down": "Seiten nicht verfügbar", "uptime": "Betriebszeit" }, "ghostfolio": { @@ -842,8 +842,8 @@ "uptime": "Betriebszeit", "lastDown": "Letzter Ausfall", "downDuration": "Ausfalldauer", - "sitesUp": "Up", - "sitesDown": "Down", + "sitesUp": "Seiten verfügbar", + "sitesDown": "Seiten nicht verfügbar", "paused": "Pausiert", "notyetchecked": "Noch nicht geprüft", "up": "Online", @@ -885,8 +885,7 @@ "gitea": { "notifications": "Benachrichtigungen", "issues": "Probleme", - "pulls": "Pull-Requests", - "repositories": "Repositories" + "pulls": "Pull-Requests" }, "stash": { "scenes": "Szenen", @@ -1024,23 +1023,12 @@ "bcharge": "Akkuladung", "timeleft": "Verbleibende Zeit" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Schlagwörter" - }, - "slskd": { - "slskStatus": "Netzwerk", - "connected": "Verbunden", - "disconnected": "Getrennt", - "updateStatus": "Update", - "update_yes": "Verfügbar", - "update_no": "Aktuell", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Dateien" } } diff --git a/public/locales/el/common.json b/public/locales/el/common.json index ea1539d9..c582f49f 100644 --- a/public/locales/el/common.json +++ b/public/locales/el/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -1024,23 +1023,12 @@ "bcharge": "Battery Charge", "timeleft": "Χρόνος που απομένει" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Ετικέτες" - }, - "slskd": { - "slskStatus": "Δίκτυο", - "connected": "Συνδέθηκε", - "disconnected": "Αποσυνδέθηκε", - "updateStatus": "Update", - "update_yes": "Διαθέσιμο", - "update_no": "Ενημερωμένο", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Αρχεία" } } diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 09b9c2d3..2bc4cf9c 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -883,10 +883,9 @@ "species": "Species" }, "gitea": { - "notifications": "Notifications", - "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "notifications": "Notifications", + "issues": "Issues", + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -1024,23 +1023,12 @@ "bcharge":"Battery Charge", "timeleft":"Time Left" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tags" - }, - "slskd": { - "slskStatus": "Network", - "connected": "Connected", - "disconnected": "Disconnected", - "updateStatus": "Update", - "update_yes": "Available", - "update_no": "Up to Date", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json index f943d1c8..8a7bb831 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -1024,23 +1023,12 @@ "bcharge": "Battery Charge", "timeleft": "Time Left" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tags" - }, - "slskd": { - "slskStatus": "Network", - "connected": "Connected", - "disconnected": "Disconnected", - "updateStatus": "Update", - "update_yes": "Havebla", - "update_no": "Up to Date", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/es/common.json b/public/locales/es/common.json index 76b03275..9d23e343 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -149,8 +149,8 @@ "received": "Recibido", "sent": "Enviado", "externalIPAddress": "IP ext.", - "externalIPv6Address": "IPv6 ext.", - "externalIPv6Prefix": "Prefijo IPv6 ext." + "externalIPv6Address": "Ext. IPv6", + "externalIPv6Prefix": "Ext. IPv6-Prefix" }, "caddy": { "upstreams": "Upstream (desarrollo de software)", @@ -178,7 +178,7 @@ "connectedAp": "AP conectados", "activeUser": "Dispositivos activos", "alerts": "Alertas", - "connectedGateways": "Puertas de enlace conectadas", + "connectedGateways": "Connected gateways", "connectedSwitches": "Conmutadores conectados" }, "nzbget": { @@ -705,8 +705,8 @@ "time": "Tiempo" }, "firefly": { - "networth": "Patrimonio neto", - "budget": "Presupuesto" + "networth": "Net Worth", + "budget": "Budget" }, "grafana": { "dashboards": "Tableros", @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notificaciones", "issues": "Números", - "pulls": "Solicitudes de cambios", - "repositories": "Repositorios" + "pulls": "Solicitudes de cambios" }, "stash": { "scenes": "Escenas", @@ -1024,23 +1023,12 @@ "bcharge": "Carga de la batería", "timeleft": "Tiempo restante" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Etiquetas" - }, - "slskd": { - "slskStatus": "Red", - "connected": "Conectado", - "disconnected": "Desconectado", - "updateStatus": "Actualización", - "update_yes": "Disponible", - "update_no": "Actualizado", - "downloads": "Descargas", - "uploads": "Subidas", - "sharedFiles": "Archivos" } } diff --git a/public/locales/eu/common.json b/public/locales/eu/common.json index 02d1150c..c122d734 100644 --- a/public/locales/eu/common.json +++ b/public/locales/eu/common.json @@ -85,16 +85,16 @@ "ping": { "error": "Error", "ping": "Ping", - "down": "Behera", - "up": "Gora", + "down": "Down", + "up": "Up", "not_available": "Not Available" }, "siteMonitor": { "http_status": "HTTP status", "error": "Error", - "response": "Erantzuna", - "down": "Behera", - "up": "Gora", + "response": "Response", + "down": "Down", + "up": "Up", "not_available": "Not Available" }, "emby": { @@ -102,8 +102,8 @@ "transcoding": "Transcoding", "bitrate": "Bit-tasa", "no_active": "No Active Streams", - "movies": "Filmak", - "series": "Serieak", + "movies": "Movies", + "series": "Series", "episodes": "Episodes", "songs": "Abestiak" }, @@ -115,39 +115,39 @@ "unknown": "Ezezaguna" }, "evcc": { - "pv_power": "Produkzioak", - "battery_soc": "Bateria", - "grid_power": "Sarea", - "home_power": "Kontsumoa", - "charge_power": "Kargagailua", + "pv_power": "Production", + "battery_soc": "Battery", + "grid_power": "Grid", + "home_power": "Consumption", + "charge_power": "Charger", "kilowatt": "kW" }, "flood": { - "download": "Jeitsierak", - "upload": "Kargatu", + "download": "Download", + "upload": "Upload", "leech": "Leech", "seed": "Seed" }, "freshrss": { - "subscriptions": "Harpidetzak", - "unread": "Irakurri gabe" + "subscriptions": "Subscriptions", + "unread": "Unread" }, "fritzbox": { "connectionStatus": "Status", "connectionStatusUnconfigured": "Unconfigured", - "connectionStatusConnecting": "Konektatzen", + "connectionStatusConnecting": "Connecting", "connectionStatusAuthenticating": "Authenticating", "connectionStatusPendingDisconnect": "Pending Disconnect", "connectionStatusDisconnecting": "Disconnecting", - "connectionStatusDisconnected": "Deskonektatuta", - "connectionStatusConnected": "Konektatuta", + "connectionStatusDisconnected": "Disconnected", + "connectionStatusConnected": "Connected", "uptime": "Uptime", "maxDown": "Max. Down", "maxUp": "Max. Up", - "down": "Behera", - "up": "Gora", + "down": "Down", + "up": "Up", "received": "Received", - "sent": "Bidalita", + "sent": "Sent", "externalIPAddress": "Ext. IP", "externalIPv6Address": "Ext. IPv6", "externalIPv6Prefix": "Ext. IPv6-Prefix" @@ -189,7 +189,7 @@ "plex": { "streams": "Active Streams", "albums": "Albums", - "movies": "Filmak", + "movies": "Movies", "tv": "TV Shows" }, "sabnzbd": { @@ -199,18 +199,18 @@ }, "rutorrent": { "active": "Active", - "upload": "Kargatu", - "download": "Jeitsierak" + "upload": "Upload", + "download": "Download" }, "transmission": { - "download": "Jeitsierak", - "upload": "Kargatu", + "download": "Download", + "upload": "Upload", "leech": "Leech", "seed": "Seed" }, "qbittorrent": { - "download": "Jeitsierak", - "upload": "Kargatu", + "download": "Download", + "upload": "Upload", "leech": "Leech", "seed": "Seed" }, @@ -223,8 +223,8 @@ "invalid": "Invalid" }, "deluge": { - "download": "Jeitsierak", - "upload": "Kargatu", + "download": "Download", + "upload": "Upload", "leech": "Leech", "seed": "Seed" }, @@ -233,15 +233,15 @@ "cachemissbytes": "Cache Miss Bytes" }, "downloadstation": { - "download": "Jeitsierak", - "upload": "Kargatu", + "download": "Download", + "upload": "Upload", "leech": "Leech", "seed": "Seed" }, "sonarr": { "wanted": "Wanted", "queued": "Queued", - "series": "Serieak", + "series": "Series", "queue": "Queue", "unknown": "Ezezaguna" }, @@ -249,7 +249,7 @@ "wanted": "Wanted", "missing": "Missing", "queued": "Queued", - "movies": "Filmak", + "movies": "Movies", "queue": "Queue", "unknown": "Ezezaguna" }, @@ -285,7 +285,7 @@ }, "netalertx": { "total": "Guztira", - "connected": "Konektatuta", + "connected": "Connected", "new_devices": "New Devices", "down_alerts": "Down Alerts" }, @@ -302,8 +302,8 @@ "latency": "Latency" }, "speedtest": { - "upload": "Kargatu", - "download": "Jeitsierak", + "upload": "Upload", + "download": "Download", "ping": "Ping" }, "portainer": { @@ -315,7 +315,7 @@ "download": "Downloaded", "nondownload": "Non-Downloaded", "read": "Read", - "unread": "Irakurri gabe", + "unread": "Unread", "downloadedread": "Downloaded & Read", "downloadedunread": "Downloaded & Unread", "nondownloadedread": "Non-Downloaded & Read", @@ -405,7 +405,7 @@ "medusa": { "wanted": "Wanted", "queued": "Queued", - "series": "Serieak" + "series": "Series" }, "minecraft": { "players": "Jokalariak", @@ -416,7 +416,7 @@ }, "miniflux": { "read": "Read", - "unread": "Irakurri gabe" + "unread": "Unread" }, "authentik": { "users": "Users", @@ -523,15 +523,15 @@ "up_to_date": "Up to Date", "child_bridges": "Child Bridges", "child_bridges_status": "{{ok}}/{{total}}", - "up": "Gora", + "up": "Up", "pending": "Pending", - "down": "Behera" + "down": "Down" }, "healthchecks": { "new": "New", - "up": "Gora", + "up": "Up", "grace": "In Grace Period", - "down": "Behera", + "down": "Down", "paused": "Paused", "status": "Status", "last_ping": "Last Ping", @@ -646,8 +646,8 @@ "load": "Load Avg", "memory": "Mem Usage", "wanStatus": "WAN Status", - "up": "Gora", - "down": "Behera", + "up": "Up", + "down": "Down", "temp": "Temp", "disk": "Disk Usage", "wanIP": "WAN IP" @@ -660,7 +660,7 @@ }, "immich": { "users": "Users", - "photos": "Argazkiak", + "photos": "Photos", "videos": "Videos", "storage": "Storage" }, @@ -672,14 +672,14 @@ "m": "m" }, "atsumeru": { - "series": "Serieak", + "series": "Series", "archives": "Archives", "chapters": "Chapters", "categories": "Categories" }, "komga": { "libraries": "Libraries", - "series": "Serieak", + "series": "Series", "books": "Books" }, "diskstation": { @@ -688,13 +688,13 @@ "volumeAvailable": "Available" }, "mylar": { - "series": "Serieak", - "issues": "Arazoak", + "series": "Series", + "issues": "Issues", "wanted": "Wanted" }, "photoprism": { "albums": "Albums", - "photos": "Argazkiak", + "photos": "Photos", "videos": "Videos", "people": "People" }, @@ -772,7 +772,7 @@ "books": "Books", "authors": "Authors", "categories": "Categories", - "series": "Serieak" + "series": "Series" }, "jdownloader": { "downloadCount": "Queue", @@ -781,7 +781,7 @@ "downloadSpeed": "Speed" }, "kavita": { - "seriesCount": "Serieak", + "seriesCount": "Series", "totalFiles": "Files" }, "azuredevops": { @@ -801,8 +801,8 @@ "status": "Status", "online": "Online", "offline": "Offline", - "name": "Izena", - "map": "Mapa", + "name": "Name", + "map": "Map", "currentPlayers": "Current players", "players": "Jokalariak", "maxPlayers": "Max players", @@ -819,10 +819,10 @@ "recipes": "Recipes", "users": "Users", "categories": "Categories", - "tags": "Etiketak" + "tags": "Tags" }, "openmediavault": { - "downloading": "Deskargatzen", + "downloading": "Downloading", "total": "Guztira", "running": "Running", "stopped": "Stopped", @@ -832,8 +832,8 @@ "openwrt": { "uptime": "Uptime", "cpuLoad": "CPU Load Avg (5m)", - "up": "Gora", - "down": "Behera", + "up": "Up", + "down": "Down", "bytesTx": "Transmitted", "bytesRx": "Received" }, @@ -846,9 +846,9 @@ "sitesDown": "Sites Down", "paused": "Paused", "notyetchecked": "Not Yet Checked", - "up": "Gora", + "up": "Up", "seemsdown": "Seems Down", - "down": "Behera", + "down": "Down", "unknown": "Ezezaguna" }, "calendar": { @@ -856,7 +856,7 @@ "physicalRelease": "Physical release", "digitalRelease": "Digital release", "noEventsToday": "No events for today!", - "noEventsFound": "Ez da gertaerarik aurkitu." + "noEventsFound": "No events found" }, "romm": { "platforms": "Platforms", @@ -868,7 +868,7 @@ }, "mailcow": { "domains": "Domains", - "mailboxes": "Gutunontziak", + "mailboxes": "Mailboxes", "mails": "Mails", "storage": "Storage" }, @@ -877,16 +877,15 @@ "criticals": "Criticals" }, "plantit": { - "events": "Ekitaldiak", - "plants": "Landareak", - "photos": "Argazkiak", + "events": "Events", + "plants": "Plants", + "photos": "Photos", "species": "Species" }, "gitea": { - "notifications": "Jakinarazpenak", - "issues": "Arazoak", - "pulls": "Pull Requests", - "repositories": "Repositories" + "notifications": "Notifications", + "issues": "Issues", + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -895,34 +894,34 @@ "playDuration": "Time Watched", "sceneSize": "Scenes Size", "sceneDuration": "Scenes Duration", - "images": "Irudia", - "imageSize": "Irudiaren tamaina", + "images": "Images", + "imageSize": "Images Size", "galleries": "Galleries", "performers": "Performers", "studios": "Studios", - "movies": "Filmak", - "tags": "Etiketak", + "movies": "Movies", + "tags": "Tags", "oCount": "O Count" }, "tandoor": { "users": "Users", "recipes": "Recipes", - "keywords": "Hitz gakoak" + "keywords": "Keywords" }, "homebox": { - "items": "Elementuak", + "items": "Items", "totalWithWarranty": "With Warranty", "locations": "Locations", - "labels": "Etiketak", + "labels": "Labels", "users": "Users", - "totalValue": "Guztira" + "totalValue": "Total Value" }, "crowdsec": { "alerts": "Alerts", "bans": "Bans" }, "wgeasy": { - "connected": "Konektatuta", + "connected": "Connected", "enabled": "Enabled", "disabled": "Disabled", "total": "Guztira" @@ -935,8 +934,8 @@ }, "myspeed": { "ping": "Ping", - "download": "Jeitsierak", - "upload": "Kargatu" + "download": "Download", + "upload": "Upload" }, "stocks": { "stocks": "Stocks", @@ -952,23 +951,23 @@ }, "linkwarden": { "links": "Links", - "collections": "Bildumak", - "tags": "Etiketak" + "collections": "Collections", + "tags": "Tags" }, "zabbix": { "unclassified": "Not classified", "information": "Informazioa", - "warning": "Abisua", - "average": "Batez besteko", - "high": "Altua", + "warning": "Warning", + "average": "Average", + "high": "High", "disaster": "Disaster" }, "lubelogger": { "vehicle": "Vehicle", - "vehicles": "Ibilgailuak", + "vehicles": "Vehicles", "serviceRecords": "Service Records", - "reminders": "Oroigarriak", - "nextReminder": "Hurrengo abisua", + "reminders": "Reminders", + "nextReminder": "Next Reminder", "none": "None" }, "vikunja": { @@ -978,7 +977,7 @@ "tasksInProgress": "Tasks In Progress" }, "headscale": { - "name": "Izena", + "name": "Name", "address": "Address", "last_seen": "Last Seen", "status": "Status", @@ -986,10 +985,10 @@ "offline": "Offline" }, "beszel": { - "name": "Izena", + "name": "Name", "systems": "Systems", - "up": "Gora", - "down": "Behera", + "up": "Up", + "down": "Down", "paused": "Paused", "pending": "Pending", "status": "Status", @@ -1000,23 +999,23 @@ "network": "NET" }, "argocd": { - "apps": "Aplikazioak", - "synced": "Sinkronizatuta", + "apps": "Apps", + "synced": "Synced", "outOfSync": "Out Of Sync", "healthy": "Osasuntsu", "degraded": "Degraded", "progressing": "Progressing", "missing": "Missing", - "suspended": "Etenda" + "suspended": "Suspended" }, "spoolman": { "loading": "Loading" }, "gitlab": { - "groups": "Taldeak", - "issues": "Arazoak", + "groups": "Groups", + "issues": "Issues", "merges": "Merge Requests", - "projects": "Proiektuak" + "projects": "Projects" }, "apcups": { "status": "Status", @@ -1024,23 +1023,12 @@ "bcharge": "Battery Charge", "timeleft": "Time Left" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", - "tags": "Etiketak" - }, - "slskd": { - "slskStatus": "Network", - "connected": "Konektatuta", - "disconnected": "Deskonektatuta", - "updateStatus": "Update", - "update_yes": "Available", - "update_no": "Up to Date", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" + "tags": "Tags" } } diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json index 6139aea6..782bc2c4 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -1024,23 +1023,12 @@ "bcharge": "Battery Charge", "timeleft": "Aikaa jäljellä" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tags" - }, - "slskd": { - "slskStatus": "Network", - "connected": "Connected", - "disconnected": "Disconnected", - "updateStatus": "Update", - "update_yes": "Saatavilla", - "update_no": "Up to Date", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index e7bc248a..191706b2 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -85,16 +85,16 @@ "ping": { "error": "Erreur", "ping": "Latence", - "down": "Down", - "up": "Up", + "down": "Bas", + "up": "Haut", "not_available": "Non disponible" }, "siteMonitor": { "http_status": "Statut HTTP", "error": "Erreur", "response": "Réponse", - "down": "Down", - "up": "Up", + "down": "Bas", + "up": "Haut", "not_available": "Non disponible" }, "emby": { @@ -142,15 +142,15 @@ "connectionStatusDisconnected": "Déconnecté", "connectionStatusConnected": "Connecté", "uptime": "Démarré depuis", - "maxDown": "Max. Down", - "maxUp": "Max. Up", - "down": "Down", - "up": "Up", + "maxDown": "Max. Bas", + "maxUp": "Max. Haut", + "down": "Bas", + "up": "Haut", "received": "Reçu", "sent": "Envoyé", "externalIPAddress": "IP externe", - "externalIPv6Address": "IPv6 externe", - "externalIPv6Prefix": "Préfixe IPv6 externe" + "externalIPv6Address": "Ext. IPv6", + "externalIPv6Prefix": "Ext. IPv6-Prefix" }, "caddy": { "upstreams": "En amont", @@ -178,7 +178,7 @@ "connectedAp": "AP connectés", "activeUser": "Périphériques actifs", "alerts": "Alertes", - "connectedGateways": "Passerelles connectées", + "connectedGateways": "Connected gateways", "connectedSwitches": "Switchs connectés" }, "nzbget": { @@ -523,15 +523,15 @@ "up_to_date": "À jour", "child_bridges": "Child Bridges", "child_bridges_status": "{{ok}}/{{total}}", - "up": "Up", + "up": "Haut", "pending": "En attente", - "down": "Down" + "down": "Bas" }, "healthchecks": { "new": "Nouveau", - "up": "Up", + "up": "Haut", "grace": "En Période de Grâce", - "down": "Down", + "down": "Bas", "paused": "En Pause", "status": "Statut", "last_ping": "Dernier Ping", @@ -646,8 +646,8 @@ "load": "Charge moy.", "memory": "Util. Mém.", "wanStatus": "Statut WAN", - "up": "Up", - "down": "Down", + "up": "Haut", + "down": "Bas", "temp": "Température", "disk": "Util. Disque", "wanIP": "IP WAN" @@ -832,8 +832,8 @@ "openwrt": { "uptime": "Démarré depuis", "cpuLoad": "Charge moyenne CPU (5 min)", - "up": "Up", - "down": "Down", + "up": "Haut", + "down": "Bas", "bytesTx": "Transmis", "bytesRx": "Reçu" }, @@ -846,9 +846,9 @@ "sitesDown": "Hors ligne", "paused": "En Pause", "notyetchecked": "Non vérifié", - "up": "Up", + "up": "Haut", "seemsdown": "Semble hors ligne", - "down": "Down", + "down": "Bas", "unknown": "Inconnu" }, "calendar": { @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Anomalies", - "pulls": "Demandes de tirage", - "repositories": "Dépôts" + "pulls": "Demandes de tirage" }, "stash": { "scenes": "Scènes", @@ -988,8 +987,8 @@ "beszel": { "name": "Nom", "systems": "Systèmes", - "up": "Up", - "down": "Down", + "up": "Haut", + "down": "Bas", "paused": "En Pause", "pending": "En attente", "status": "Statut", @@ -1024,23 +1023,12 @@ "bcharge": "Charge de la batterie", "timeleft": "Temps restant" }, - "karakeep": { - "bookmarks": "Marque-pages", - "favorites": "Favoris", - "archived": "Archivé", + "hoarder": { + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "archived": "Archived", "highlights": "Highlights", - "lists": "Listes", + "lists": "Lists", "tags": "Étiquettes" - }, - "slskd": { - "slskStatus": "Réseau", - "connected": "Connecté", - "disconnected": "Déconnecté", - "updateStatus": "Mise à jour", - "update_yes": "Disponible", - "update_no": "À jour", - "downloads": "Téléchargements", - "uploads": "Téléversements", - "sharedFiles": "Fichiers" } } diff --git a/public/locales/he/common.json b/public/locales/he/common.json index fb338931..57ce66b9 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -1024,23 +1023,12 @@ "bcharge": "Battery Charge", "timeleft": "זמן שנותר" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tags" - }, - "slskd": { - "slskStatus": "Network", - "connected": "Connected", - "disconnected": "Disconnected", - "updateStatus": "Update", - "update_yes": "זמין", - "update_no": "Up to Date", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json index 8897f217..0744578a 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -1024,23 +1023,12 @@ "bcharge": "Battery Charge", "timeleft": "Time Left" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tags" - }, - "slskd": { - "slskStatus": "Network", - "connected": "Connected", - "disconnected": "Disconnected", - "updateStatus": "Update", - "update_yes": "Available", - "update_no": "Up to Date", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json index 036f746b..31f92935 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Obavijesti", "issues": "Problemi", - "pulls": "Zahtjevi za povlačenje", - "repositories": "Repositories" + "pulls": "Zahtjevi za povlačenje" }, "stash": { "scenes": "Scene", @@ -1024,23 +1023,12 @@ "bcharge": "Napunjenost baterije", "timeleft": "Preostalo vrijeme" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Oznake" - }, - "slskd": { - "slskStatus": "Mreža", - "connected": "Povezano", - "disconnected": "Odspojeno", - "updateStatus": "Update", - "update_yes": "Dostupno", - "update_no": "Aktualno", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Datoteke" } } diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json index a3ab6bf8..e21689aa 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Üzenetek", "issues": "Problémák", - "pulls": "Pull request-ek", - "repositories": "Repositories" + "pulls": "Pull request-ek" }, "stash": { "scenes": "Jelenetek", @@ -1024,23 +1023,12 @@ "bcharge": "Akku töltöttsége", "timeleft": "Hátralévő idő" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Címkék" - }, - "slskd": { - "slskStatus": "Hálózat", - "connected": "Csatlakozva", - "disconnected": "Kapcsolat bontva", - "updateStatus": "Update", - "update_yes": "Elérhető", - "update_no": "Naprakész", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Fájlok" } } diff --git a/public/locales/id/common.json b/public/locales/id/common.json index 9babbe5a..7d049bec 100644 --- a/public/locales/id/common.json +++ b/public/locales/id/common.json @@ -342,7 +342,7 @@ "totalNxDomain": "Domain NX", "totalRefused": "Ditolak", "totalAuthoritative": "Authoritative", - "totalRecursive": "Rekursif", + "totalRecursive": "Recursive", "totalCached": "Cached", "totalBlocked": "Terblokir", "totalDropped": "Dropped", @@ -705,8 +705,8 @@ "time": "Waktu" }, "firefly": { - "networth": "Kekayaan Bersih", - "budget": "Anggaran" + "networth": "Net Worth", + "budget": "Budget" }, "grafana": { "dashboards": "Dasbor", @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifikasi", "issues": "Isu", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Adegan", @@ -966,7 +965,7 @@ "lubelogger": { "vehicle": "Kendaraan", "vehicles": "Kendaraan", - "serviceRecords": "Catatan Servis", + "serviceRecords": "Service Records", "reminders": "Pengingat", "nextReminder": "Pengingat Berikutnya", "none": "Tidak ada" @@ -1024,23 +1023,12 @@ "bcharge": "Sisa Baterai", "timeleft": "Sisa Waktu" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tag" - }, - "slskd": { - "slskStatus": "Jaringan", - "connected": "Tersambung", - "disconnected": "Terputus", - "updateStatus": "Update", - "update_yes": "Tersedia", - "update_no": "Terbaru", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "File" } } diff --git a/public/locales/it/common.json b/public/locales/it/common.json index 6e870a09..3d0dc450 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -149,8 +149,8 @@ "received": "Ricevuti", "sent": "Inviati", "externalIPAddress": "IP Esterno", - "externalIPv6Address": "IPv6 Esterno", - "externalIPv6Prefix": "Prefisso IPv6 Esterno" + "externalIPv6Address": "Ext. IPv6", + "externalIPv6Prefix": "Ext. IPv6-Prefix" }, "caddy": { "upstreams": "Upstream", @@ -178,7 +178,7 @@ "connectedAp": "AP Connessi", "activeUser": "Dispositivi attivi", "alerts": "Allarmi", - "connectedGateways": "Gateway connessi", + "connectedGateways": "Connected gateways", "connectedSwitches": "Switch connessi" }, "nzbget": { @@ -338,7 +338,7 @@ "technitium": { "totalQueries": "Richieste", "totalNoError": "Successo", - "totalServerFailure": "Fallimenti", + "totalServerFailure": "Failures", "totalNxDomain": "NX Domains", "totalRefused": "Refused", "totalAuthoritative": "Authoritative", @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifiche", "issues": "Problemi", - "pulls": "Richieste di Pull", - "repositories": "Repositories" + "pulls": "Richieste di Pull" }, "stash": { "scenes": "Scene", @@ -943,7 +942,7 @@ "loading": "Caricamento", "open": "Open - US Market", "closed": "Closed - US Market", - "invalidConfiguration": "Configurazione non valida" + "invalidConfiguration": "Invalid Configuration" }, "frigate": { "cameras": "Cameras", @@ -959,7 +958,7 @@ "unclassified": "Not classified", "information": "Informazioni", "warning": "Warning", - "average": "Media", + "average": "Average", "high": "High", "disaster": "Disaster" }, @@ -987,7 +986,7 @@ }, "beszel": { "name": "Nome", - "systems": "Sistemi", + "systems": "Systems", "up": "Up", "down": "Down", "paused": "In Pausa", @@ -996,15 +995,15 @@ "updated": "Aggiornato", "cpu": "CPU", "memory": "MEM", - "disk": "Disco", + "disk": "Disk", "network": "NET" }, "argocd": { - "apps": "Applicazioni", - "synced": "Sincronizzato", - "outOfSync": "Non Sincronizzato", + "apps": "Apps", + "synced": "Synced", + "outOfSync": "Out Of Sync", "healthy": "Sano", - "degraded": "Degradato", + "degraded": "Degraded", "progressing": "Progressing", "missing": "Mancanti", "suspended": "Suspended" @@ -1013,10 +1012,10 @@ "loading": "Caricamento" }, "gitlab": { - "groups": "Gruppi", + "groups": "Groups", "issues": "Problemi", - "merges": "Richieste di merge", - "projects": "Progetti" + "merges": "Merge Requests", + "projects": "Projects" }, "apcups": { "status": "Stato", @@ -1024,23 +1023,12 @@ "bcharge": "Carica Batteria", "timeleft": "Tempo Rimanente" }, - "karakeep": { - "bookmarks": "Segnalibri", - "favorites": "Preferiti", + "hoarder": { + "bookmarks": "Bookmarks", + "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", - "lists": "Liste", + "lists": "Lists", "tags": "Tag" - }, - "slskd": { - "slskStatus": "Rete", - "connected": "Connesso", - "disconnected": "Disconnesso", - "updateStatus": "Update", - "update_yes": "Disponibili", - "update_no": "Aggiornato", - "downloads": "Download", - "uploads": "Uploads", - "sharedFiles": "File" } } diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json index 5e963a77..020d7d3b 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "通知", "issues": "課題", - "pulls": "プルリクエスト", - "repositories": "Repositories" + "pulls": "プルリクエスト" }, "stash": { "scenes": "シーン", @@ -1024,23 +1023,12 @@ "bcharge": "バッテリー充電", "timeleft": "残り時間" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "タグ" - }, - "slskd": { - "slskStatus": "ネットワーク", - "connected": "接続済", - "disconnected": "切断されました", - "updateStatus": "Update", - "update_yes": "利用可", - "update_no": "最新", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "ファイル" } } diff --git a/public/locales/ko/common.json b/public/locales/ko/common.json index 8bfe4276..00ff2ea1 100644 --- a/public/locales/ko/common.json +++ b/public/locales/ko/common.json @@ -14,11 +14,11 @@ "date": "{{value, date}}", "relativeDate": "{{value, relativeDate}}", "duration": "{{value, duration}}", - "months": "달", - "days": "일", - "hours": "시", - "minutes": "분", - "seconds": "초" + "months": "mo", + "days": "d", + "hours": "h", + "minutes": "m", + "seconds": "s" }, "widget": { "missing_type": "없는 위젯 유형: {{type}}", @@ -51,7 +51,7 @@ }, "unifi": { "users": "사용자", - "uptime": "가동 시간", + "uptime": "Uptime", "days": "일", "wan": "WAN", "lan": "LAN", @@ -141,7 +141,7 @@ "connectionStatusDisconnecting": "연결을 끊는 중...", "connectionStatusDisconnected": "연결 끊김", "connectionStatusConnected": "연결됨", - "uptime": "가동 시간", + "uptime": "Uptime", "maxDown": "Max. Down", "maxUp": "Max. Up", "down": "Down", @@ -188,7 +188,7 @@ }, "plex": { "streams": "활성 스트림", - "albums": "앨범", + "albums": "Albums", "movies": "영화", "tv": "TV 쇼" }, @@ -440,8 +440,8 @@ "total": "총합", "free": "남음", "used": "사용", - "days": "일", - "hours": "시", + "days": "d", + "hours": "h", "crit": "Crit", "read": "읽음", "write": "쓰기", @@ -556,7 +556,7 @@ }, "truenas": { "load": "System Load", - "uptime": "가동 시간", + "uptime": "Uptime", "alerts": "경고" }, "pyload": { @@ -606,7 +606,7 @@ "mikrotik": { "cpuLoad": "CPU Load", "memoryUsed": "메모리 사용량", - "uptime": "가동 시간", + "uptime": "Uptime", "numberOfLeases": "Leases" }, "xteve": { @@ -667,9 +667,9 @@ "uptimekuma": { "up": "Sites Up", "down": "Sites Down", - "uptime": "가동 시간", + "uptime": "Uptime", "incident": "Incident", - "m": "분" + "m": "m" }, "atsumeru": { "series": "시리즈", @@ -684,7 +684,7 @@ }, "diskstation": { "days": "일", - "uptime": "가동 시간", + "uptime": "Uptime", "volumeAvailable": "이용 가능" }, "mylar": { @@ -693,7 +693,7 @@ "wanted": "요청" }, "photoprism": { - "albums": "앨범", + "albums": "Albums", "photos": "사진", "videos": "동영상", "people": "People" @@ -705,8 +705,8 @@ "time": "Time" }, "firefly": { - "networth": "순자산", - "budget": "예산" + "networth": "Net Worth", + "budget": "Budget" }, "grafana": { "dashboards": "대시보드", @@ -746,7 +746,7 @@ "gatus": { "up": "Sites Up", "down": "Sites Down", - "uptime": "가동 시간" + "uptime": "Uptime" }, "ghostfolio": { "gross_percent_today": "오늘", @@ -816,7 +816,7 @@ "totalUsed": "Used Storage" }, "mealie": { - "recipes": "레시피", + "recipes": "Recipes", "users": "사용자", "categories": "분류", "tags": "태그" @@ -830,7 +830,7 @@ "failed": "Failed" }, "openwrt": { - "uptime": "가동 시간", + "uptime": "Uptime", "cpuLoad": "CPU Load Avg (5m)", "up": "Up", "down": "Down", @@ -839,7 +839,7 @@ }, "uptimerobot": { "status": "상태", - "uptime": "가동 시간", + "uptime": "Uptime", "lastDown": "Last Downtime", "downDuration": "Downtime Duration", "sitesUp": "Sites Up", @@ -885,8 +885,7 @@ "gitea": { "notifications": "알림", "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "장면", @@ -906,7 +905,7 @@ }, "tandoor": { "users": "사용자", - "recipes": "레시피", + "recipes": "Recipes", "keywords": "키워드" }, "homebox": { @@ -947,7 +946,7 @@ }, "frigate": { "cameras": "카메라", - "uptime": "가동 시간", + "uptime": "Uptime", "version": "버전" }, "linkwarden": { @@ -1024,23 +1023,12 @@ "bcharge": "배터리 충전 중", "timeleft": "남은 시간" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "태그" - }, - "slskd": { - "slskStatus": "네트워크", - "connected": "연결됨", - "disconnected": "연결 끊김", - "updateStatus": "Update", - "update_yes": "이용 가능", - "update_no": "최신 상태", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "파일" } } diff --git a/public/locales/lv/common.json b/public/locales/lv/common.json index 0238d143..538febf1 100644 --- a/public/locales/lv/common.json +++ b/public/locales/lv/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -1024,23 +1023,12 @@ "bcharge": "Battery Charge", "timeleft": "Atlikušais laiks" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tags" - }, - "slskd": { - "slskStatus": "Network", - "connected": "Connected", - "disconnected": "Disconnected", - "updateStatus": "Update", - "update_yes": "Available", - "update_no": "Up to Date", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json index 8c0e5509..ba32381f 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Adegan", @@ -1024,23 +1023,12 @@ "bcharge": "Bateri dicas", "timeleft": "Masa Tinggal" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tanda nama" - }, - "slskd": { - "slskStatus": "Rangkaian", - "connected": "Connected", - "disconnected": "Sambungan Terputus", - "updateStatus": "Update", - "update_yes": "Sudah Ada", - "update_no": "Terkemaskini", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json index 63a2d50e..dfa15f10 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notificaties", "issues": "Problemen", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Scènes", @@ -1024,23 +1023,12 @@ "bcharge": "Batterij opladen", "timeleft": "Resterende Tijd" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Label" - }, - "slskd": { - "slskStatus": "Netwerk", - "connected": "Verbonden", - "disconnected": "Verbinding verbroken", - "updateStatus": "Update", - "update_yes": "Beschikbaar", - "update_no": "Bijgewerkt", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Bestanden" } } diff --git a/public/locales/no/common.json b/public/locales/no/common.json index dee02141..b179110b 100644 --- a/public/locales/no/common.json +++ b/public/locales/no/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Varslinger", "issues": "Issues", - "pulls": "Forespørsel", - "repositories": "Repositories" + "pulls": "Forespørsel" }, "stash": { "scenes": "Scener", @@ -1024,23 +1023,12 @@ "bcharge": "Batteriladning", "timeleft": "Gjenstående tid" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Stikkord" - }, - "slskd": { - "slskStatus": "Nettverk", - "connected": "Tilkoblet", - "disconnected": "Frakoblet", - "updateStatus": "Update", - "update_yes": "Tilgjengelig", - "update_no": "Oppdatert", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json index 3a956aaf..9d669f8a 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -149,8 +149,8 @@ "received": "Odebrane", "sent": "Wysłane", "externalIPAddress": "Pub. IP", - "externalIPv6Address": "Zewn. IPv6", - "externalIPv6Prefix": "Zewn. prefiks IPv6" + "externalIPv6Address": "Ext. IPv6", + "externalIPv6Prefix": "Ext. IPv6-Prefix" }, "caddy": { "upstreams": "Upstreams", @@ -705,8 +705,8 @@ "time": "Czas" }, "firefly": { - "networth": "Wartość netto", - "budget": "Budżet" + "networth": "Net Worth", + "budget": "Budget" }, "grafana": { "dashboards": "Panel główny", @@ -885,8 +885,7 @@ "gitea": { "notifications": "Powiadomienia", "issues": "Zgłoszenia", - "pulls": "Żądania Pull", - "repositories": "Repozytoria" + "pulls": "Żądania Pull" }, "stash": { "scenes": "Sceny", @@ -1024,23 +1023,12 @@ "bcharge": "Stan baterii", "timeleft": "Pozostało" }, - "karakeep": { - "bookmarks": "Zakładki", - "favorites": "Ulubione", - "archived": "Zarchiwizowane", - "highlights": "Wyróżnione", - "lists": "Listy", + "hoarder": { + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "archived": "Archived", + "highlights": "Highlights", + "lists": "Lists", "tags": "Tagi" - }, - "slskd": { - "slskStatus": "Sieć", - "connected": "Połączono", - "disconnected": "Rozłączono", - "updateStatus": "Update", - "update_yes": "Dostępne", - "update_no": "Aktualny", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Pliki" } } diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index c392c17d..66439545 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notificações", "issues": "Problemas", - "pulls": "Solicitar pull", - "repositories": "Repositories" + "pulls": "Solicitar pull" }, "stash": { "scenes": "Cenas", @@ -1024,23 +1023,12 @@ "bcharge": "Carga da bateria", "timeleft": "Tempo Restante" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Etiquetas" - }, - "slskd": { - "slskStatus": "Rede", - "connected": "Conectado", - "disconnected": "Desconectado", - "updateStatus": "Update", - "update_yes": "Disponível", - "update_no": "Atualizado", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Ficheiros" } } diff --git a/public/locales/pt_BR/common.json b/public/locales/pt_BR/common.json index ee426052..23c5c3dc 100644 --- a/public/locales/pt_BR/common.json +++ b/public/locales/pt_BR/common.json @@ -47,7 +47,7 @@ "load": "Carga", "temp": "TEMP", "max": "Máximo", - "uptime": "ATIVO" + "uptime": "CIMA" }, "unifi": { "users": "Usuários", @@ -61,7 +61,7 @@ "wlan_devices": "Dispositivos WLAN", "lan_users": "Usuários de LAN", "wlan_users": "Usuários de WLAN", - "up": "ATIVO", + "up": "CIMA", "down": "Desligado", "wait": "Por favor, aguarde", "empty_data": "Status do Subsistema desconhecido" @@ -149,8 +149,8 @@ "received": "Recebido", "sent": "Enviado", "externalIPAddress": "IP Externo", - "externalIPv6Address": "IPv6 Externo", - "externalIPv6Prefix": "Prefixo IPv6 Externo" + "externalIPv6Address": "Ext. IPv6", + "externalIPv6Prefix": "Ext. IPv6-Prefix" }, "caddy": { "upstreams": "Streams de Envio", @@ -178,7 +178,7 @@ "connectedAp": "APs Ligados", "activeUser": "Dispositivos ativos", "alerts": "Alertas", - "connectedGateways": "Gateways conectados", + "connectedGateways": "Connected gateways", "connectedSwitches": "Switches conectados" }, "nzbget": { @@ -229,8 +229,8 @@ "seed": "Semente" }, "develancacheui": { - "cachehitbytes": "Bytes de Acerto de Cache", - "cachemissbytes": "Bytes de Falha de Cache" + "cachehitbytes": "Cache Hit Bytes", + "cachemissbytes": "Cache Miss Bytes" }, "downloadstation": { "download": "Descarregar", @@ -313,13 +313,13 @@ }, "suwayomi": { "download": "Baixado", - "nondownload": "Não Baixado", + "nondownload": "Non-Downloaded", "read": "Lido", "unread": "Não lida", - "downloadedread": "Baixado e Lido", - "downloadedunread": "Baixado e Não Lido", - "nondownloadedread": "Não Baixado e Lido", - "nondownloadedunread": "Não Baixado e Não Lido" + "downloadedread": "Downloaded & Read", + "downloadedunread": "Downloaded & Unread", + "nondownloadedread": "Non-Downloaded & Read", + "nondownloadedunread": "Non-Downloaded & Unread" }, "tailscale": { "address": "Endereço", @@ -337,15 +337,15 @@ }, "technitium": { "totalQueries": "Consultas", - "totalNoError": "Sucesso", - "totalServerFailure": "Falhas", - "totalNxDomain": "Domínios NX", - "totalRefused": "Recusado", - "totalAuthoritative": "Autoritativo", - "totalRecursive": "Recursivo", - "totalCached": "Em cache", + "totalNoError": "Success", + "totalServerFailure": "Failures", + "totalNxDomain": "NX Domains", + "totalRefused": "Refused", + "totalAuthoritative": "Authoritative", + "totalRecursive": "Recursive", + "totalCached": "Cached", "totalBlocked": "Bloqueado", - "totalDropped": "Perdidos", + "totalDropped": "Dropped", "totalClients": "Clientes" }, "tdarr": { @@ -436,7 +436,7 @@ "temp": "TEMP", "_temp": "Temperatura", "warn": "Aviso", - "uptime": "ATIVO", + "uptime": "CIMA", "total": "Total", "free": "Livre", "used": "Utilizado", @@ -705,8 +705,8 @@ "time": "Hora" }, "firefly": { - "networth": "Valor Líquido", - "budget": "Orçamento" + "networth": "Net Worth", + "budget": "Budget" }, "grafana": { "dashboards": "Painéis", @@ -860,16 +860,16 @@ }, "romm": { "platforms": "Plataformas", - "totalRoms": "Jogos", + "totalRoms": "Games", "saves": "Saves", - "states": "Estados", - "screenshots": "Capturas de Tela", - "totalfilesize": "Tamanho total" + "states": "States", + "screenshots": "Screenshots", + "totalfilesize": "Total Size" }, "mailcow": { "domains": "Domínios", - "mailboxes": "Caixas de e-mail", - "mails": "Mensagens", + "mailboxes": "Mailboxes", + "mails": "Mails", "storage": "Armazenamento" }, "netdata": { @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notificações", "issues": "Problemas", - "pulls": "Solicitações de Envio", - "repositories": "Repositórios" + "pulls": "Solicitações de Envio" }, "stash": { "scenes": "Cenas", @@ -952,30 +951,30 @@ }, "linkwarden": { "links": "Links", - "collections": "Coleções", + "collections": "Collections", "tags": "Marcadores" }, "zabbix": { - "unclassified": "Não classificado", + "unclassified": "Not classified", "information": "Informação", - "warning": "Aviso", - "average": "Médio", - "high": "Alto", - "disaster": "Desastre" + "warning": "Warning", + "average": "Average", + "high": "High", + "disaster": "Disaster" }, "lubelogger": { - "vehicle": "Veículo", - "vehicles": "Veículos", - "serviceRecords": "Registros de Serviço", - "reminders": "Lembretes", - "nextReminder": "Próximo Lembrete", - "none": "Nenhum" + "vehicle": "Vehicle", + "vehicles": "Vehicles", + "serviceRecords": "Service Records", + "reminders": "Reminders", + "nextReminder": "Next Reminder", + "none": "None" }, "vikunja": { - "projects": "Projetos Ativos", - "tasks7d": "Tarefas que vencem nesta semana", - "tasksOverdue": "Tarefas Atrasadas", - "tasksInProgress": "Tarefas em Andamento" + "projects": "Active Projects", + "tasks7d": "Tasks Due This Week", + "tasksOverdue": "Overdue Tasks", + "tasksInProgress": "Tasks In Progress" }, "headscale": { "name": "Nome", @@ -987,7 +986,7 @@ }, "beszel": { "name": "Nome", - "systems": "Sistemas", + "systems": "Systems", "up": "Ativo", "down": "Inativo", "paused": "Pausado", @@ -996,27 +995,27 @@ "updated": "Atualizado", "cpu": "CPU", "memory": "MEM", - "disk": "Disco", - "network": "Rede" + "disk": "Disk", + "network": "NET" }, "argocd": { - "apps": "Aplicativos", - "synced": "Sincronizado", - "outOfSync": "Fora de sincronia", + "apps": "Apps", + "synced": "Synced", + "outOfSync": "Out Of Sync", "healthy": "Saudável", - "degraded": "Degradado", - "progressing": "Progredindo", + "degraded": "Degraded", + "progressing": "Progressing", "missing": "Faltando", - "suspended": "Suspenso" + "suspended": "Suspended" }, "spoolman": { "loading": "Carregando" }, "gitlab": { - "groups": "Grupos", + "groups": "Groups", "issues": "Problemas", - "merges": "Solicitações de mesclagem", - "projects": "Projetos" + "merges": "Merge Requests", + "projects": "Projects" }, "apcups": { "status": "Status", @@ -1024,23 +1023,12 @@ "bcharge": "Carga da bateria", "timeleft": "Tempo restante" }, - "karakeep": { - "bookmarks": "Marcadores", - "favorites": "Favoritos", - "archived": "Arquivados", - "highlights": "Destaques", - "lists": "Listas", + "hoarder": { + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "archived": "Archived", + "highlights": "Highlights", + "lists": "Lists", "tags": "Marcadores" - }, - "slskd": { - "slskStatus": "Rede", - "connected": "Conectado", - "disconnected": "Desconectado", - "updateStatus": "Atualize", - "update_yes": "Disponível", - "update_no": "Atualizado", - "downloads": "Transferências", - "uploads": "Envios", - "sharedFiles": "Arquivos" } } diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json index 9dcd2921..4d38502d 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -1024,23 +1023,12 @@ "bcharge": "Battery Charge", "timeleft": "Timp rămas" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tags" - }, - "slskd": { - "slskStatus": "Network", - "connected": "Connected", - "disconnected": "Disconnected", - "updateStatus": "Update", - "update_yes": "Disponibile", - "update_no": "Up to Date", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json index d6cabab4..72785a96 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -149,8 +149,8 @@ "received": "Получено", "sent": "Отправлено", "externalIPAddress": "Внеш. IP", - "externalIPv6Address": "Внешний IPv6", - "externalIPv6Prefix": "Внешний IPv6 префикс" + "externalIPv6Address": "Ext. IPv6", + "externalIPv6Prefix": "Ext. IPv6-Prefix" }, "caddy": { "upstreams": "Входящие каналы", @@ -178,7 +178,7 @@ "connectedAp": "Подключенные точки доступа", "activeUser": "Активные устройства", "alerts": "Предупреждения", - "connectedGateways": "Подключенные шлюзы", + "connectedGateways": "Connected gateways", "connectedSwitches": "Подключенные коммутаторы" }, "nzbget": { @@ -705,8 +705,8 @@ "time": "Время" }, "firefly": { - "networth": "Общая средства", - "budget": "Бюджет" + "networth": "Net Worth", + "budget": "Budget" }, "grafana": { "dashboards": "Панели", @@ -861,7 +861,7 @@ "romm": { "platforms": "Платформы", "totalRoms": "Игры", - "saves": "Сохранения", + "saves": "Сейвы", "states": "Состояния", "screenshots": "Скриншоты", "totalfilesize": "Общий объем" @@ -885,8 +885,7 @@ "gitea": { "notifications": "Уведомления", "issues": "Вопросы", - "pulls": "Запросы на слияние (Pull Request)", - "repositories": "Репозитории" + "pulls": "Запросы на слияние (Pull Request)" }, "stash": { "scenes": "Сцены", @@ -928,7 +927,7 @@ "total": "Всего" }, "swagdashboard": { - "proxied": "Проксировано", + "proxied": "Прокси", "auth": "С Авторизацией", "outdated": "Устаревшие", "banned": "Заблокированные" @@ -959,17 +958,17 @@ "unclassified": "Не классифицировано", "information": "Информация", "warning": "Предупреждение", - "average": "Среднее", + "average": "Средняя", "high": "Высокая", - "disaster": "Чрезвычайное" + "disaster": "Чрезвычайная" }, "lubelogger": { - "vehicle": "Транспорт", - "vehicles": "Транспорты", - "serviceRecords": "Сервисные записи", + "vehicle": "Автомобиль", + "vehicles": "Автомобили", + "serviceRecords": "Сервисные работы", "reminders": "Напоминания", "nextReminder": "Следующее напоминание", - "none": "Отсутствует" + "none": "Нет" }, "vikunja": { "projects": "Активные Проекты", @@ -1024,23 +1023,12 @@ "bcharge": "Заряд батареи", "timeleft": "Осталось" }, - "karakeep": { - "bookmarks": "Закладки", - "favorites": "Избранное", - "archived": "Архив", - "highlights": "События", - "lists": "Список", + "hoarder": { + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "archived": "Archived", + "highlights": "Highlights", + "lists": "Lists", "tags": "Теги" - }, - "slskd": { - "slskStatus": "Сеть", - "connected": "Подключено", - "disconnected": "Отключено", - "updateStatus": "Обновление", - "update_yes": "Доступно", - "update_no": "Последняя версия", - "downloads": "Скачивания", - "uploads": "Загрузки", - "sharedFiles": "Файлов" } } diff --git a/public/locales/sk/common.json b/public/locales/sk/common.json index a267ad81..4272c51f 100644 --- a/public/locales/sk/common.json +++ b/public/locales/sk/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Oznámenia", "issues": "Problémy", - "pulls": "Pull requesty", - "repositories": "Repositories" + "pulls": "Pull requesty" }, "stash": { "scenes": "Scény", @@ -1024,23 +1023,12 @@ "bcharge": "Nabitie batérie", "timeleft": "Zostávajúci čas" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Štítky" - }, - "slskd": { - "slskStatus": "Sieť", - "connected": "Pripojené", - "disconnected": "Odpojené", - "updateStatus": "Update", - "update_yes": "Dostupné", - "update_no": "Aktuálny", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Súborov" } } diff --git a/public/locales/sl/common.json b/public/locales/sl/common.json index ba6f07b9..34db459d 100644 --- a/public/locales/sl/common.json +++ b/public/locales/sl/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Obvestila", "issues": "Težave", - "pulls": "Zahteve za prenos", - "repositories": "Repositories" + "pulls": "Zahteve za prenos" }, "stash": { "scenes": "Scene", @@ -1024,23 +1023,12 @@ "bcharge": "Napolnjenost baterije", "timeleft": "Preostali čas" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Značke" - }, - "slskd": { - "slskStatus": "Omrežje", - "connected": "Povezan", - "disconnected": "Prekinjeno", - "updateStatus": "Update", - "update_yes": "Na voljo", - "update_no": "Posodobljeno", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Datotek" } } diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json index 5314dc2b..ba50eef1 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -1024,23 +1023,12 @@ "bcharge": "Battery Charge", "timeleft": "Time Left" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tags" - }, - "slskd": { - "slskStatus": "Network", - "connected": "Connected", - "disconnected": "Disconnected", - "updateStatus": "Update", - "update_yes": "Available", - "update_no": "Up to Date", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json index d389a937..ead80b0b 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -1024,23 +1023,12 @@ "bcharge": "Battery Charge", "timeleft": "Tid kvar" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tags" - }, - "slskd": { - "slskStatus": "Network", - "connected": "Connected", - "disconnected": "Disconnected", - "updateStatus": "Update", - "update_yes": "Tillgänglig", - "update_no": "Up to Date", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/te/common.json b/public/locales/te/common.json index e980d4ba..2cd066a6 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -1024,23 +1023,12 @@ "bcharge": "Battery Charge", "timeleft": "మిగిలి వున్న సమయం" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tags" - }, - "slskd": { - "slskStatus": "Network", - "connected": "Connected", - "disconnected": "Disconnected", - "updateStatus": "Update", - "update_yes": "అందుబాటులో వున్నవి", - "update_no": "తాజాగా", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/th/common.json b/public/locales/th/common.json index 1d88948b..42a0b6a2 100644 --- a/public/locales/th/common.json +++ b/public/locales/th/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -1024,23 +1023,12 @@ "bcharge": "Battery Charge", "timeleft": "Time Left" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tags" - }, - "slskd": { - "slskStatus": "Network", - "connected": "Connected", - "disconnected": "Disconnected", - "updateStatus": "Update", - "update_yes": "Available", - "update_no": "Up to Date", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json index 19bd4540..40611dac 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Bildirimler", "issues": "Sorunlar", - "pulls": "Değişiklik İstekleri", - "repositories": "Repositories" + "pulls": "Değişiklik İstekleri" }, "stash": { "scenes": "Sahneler", @@ -1024,23 +1023,12 @@ "bcharge": "Pil Yüzdesi", "timeleft": "Kalan Zaman" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Etiketler" - }, - "slskd": { - "slskStatus": "Ağ", - "connected": "Bağlandı", - "disconnected": "Bağlantı kesildi", - "updateStatus": "Update", - "update_yes": "Kullanılabilir", - "update_no": "Güncel", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Dosyalar" } } diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json index 419d77c0..0914c49f 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -120,7 +120,7 @@ "grid_power": "Сітка", "home_power": "Споживання", "charge_power": "Зарядний пристрій", - "kilowatt": "кВт" + "kilowatt": "kW" }, "flood": { "download": "Завантажено", @@ -149,8 +149,8 @@ "received": "Отримано", "sent": "Надіслано", "externalIPAddress": "Зовнішній IP", - "externalIPv6Address": "Зовнішній IPv6", - "externalIPv6Prefix": "Зовнішній Префікс IPv6-" + "externalIPv6Address": "Ext. IPv6", + "externalIPv6Prefix": "Ext. IPv6-Prefix" }, "caddy": { "upstreams": "Потоки", @@ -178,7 +178,7 @@ "connectedAp": "Підключені точки доступу", "activeUser": "Активні пристрої", "alerts": "Оповіщення", - "connectedGateways": "Підключені шлюзи", + "connectedGateways": "Connected gateways", "connectedSwitches": "Підключені перемикачі" }, "nzbget": { @@ -420,8 +420,8 @@ }, "authentik": { "users": "Користувачі", - "loginsLast24H": "Вхід (протягом доби)", - "failedLoginsLast24H": "Невдалі входи (протягом доби)" + "loginsLast24H": "Вхід (24 години)", + "failedLoginsLast24H": "Невдалі входи (24 години)" }, "proxmox": { "mem": "ОЗП", @@ -434,7 +434,7 @@ "load": "Завантаження", "wait": "Будь ласка, зачекайте", "temp": "Температура", - "_temp": "Температура", + "_temp": "Темп.", "warn": "Увага", "uptime": "Онлайн", "total": "Усього", @@ -616,7 +616,7 @@ }, "opendtu": { "yieldDay": "Сьогодні", - "absolutePower": "Потужність", + "absolutePower": "Абс. потуж.", "relativePower": "Заряд %", "limit": "Ліміт" }, @@ -648,13 +648,13 @@ "wanStatus": "Статус WAN", "up": "Онлайн", "down": "Офлайн", - "temp": "Температура", + "temp": "Темп.", "disk": "Використання диска", "wanIP": "WAN IP" }, "proxmoxbackupserver": { "datastore_usage": "Сховище даних", - "failed_tasks_24h": "Невиконані завдання за останню добу", + "failed_tasks_24h": "Невиконані завдання 24 години", "cpu_usage": "ЦП", "memory_usage": "Пам'ять" }, @@ -705,8 +705,8 @@ "time": "Час" }, "firefly": { - "networth": "Чисті Активи", - "budget": "Бюджет" + "networth": "Net Worth", + "budget": "Budget" }, "grafana": { "dashboards": "Інформаційні панелі", @@ -831,7 +831,7 @@ }, "openwrt": { "uptime": "Час роботи", - "cpuLoad": "Сер. навантаження ЦП (\"5\" хв)", + "cpuLoad": "Сер. навантаження ЦП (5 хв)", "up": "Онлайн", "down": "Офлайн", "bytesTx": "Передано", @@ -855,7 +855,7 @@ "inCinemas": "У кінотеатрах", "physicalRelease": "Фізичний реліз", "digitalRelease": "Цифровий реліз", - "noEventsToday": "Події на сьогодні відсутні!", + "noEventsToday": "Події на сьогодні відсутні", "noEventsFound": "Події не знайдено" }, "romm": { @@ -885,8 +885,7 @@ "gitea": { "notifications": "Сповіщення", "issues": "Питання", - "pulls": "Pull-запити", - "repositories": "Репозиторії" + "pulls": "Pull-запити" }, "stash": { "scenes": "Сцени", @@ -1024,23 +1023,12 @@ "bcharge": "Заряд батареї", "timeleft": "Залишилось" }, - "karakeep": { - "bookmarks": "Закладки", - "favorites": "Обране", - "archived": "Заархівовані", - "highlights": "Основні моменти", - "lists": "Списки", + "hoarder": { + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "archived": "Archived", + "highlights": "Highlights", + "lists": "Lists", "tags": "Теги" - }, - "slskd": { - "slskStatus": "Мережа", - "connected": "З'єднано", - "disconnected": "Відключено", - "updateStatus": "Оновити", - "update_yes": "Доступно", - "update_no": "Актуально", - "downloads": "Завантаження", - "uploads": "Вивантаження", - "sharedFiles": "Файли" } } diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json index efe0c9ab..d2753c97 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "Notifications", "issues": "Issues", - "pulls": "Pull Requests", - "repositories": "Repositories" + "pulls": "Pull Requests" }, "stash": { "scenes": "Scenes", @@ -1024,23 +1023,12 @@ "bcharge": "Battery Charge", "timeleft": "Thời gian còn lại" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tags" - }, - "slskd": { - "slskStatus": "Network", - "connected": "Connected", - "disconnected": "Disconnected", - "updateStatus": "Update", - "update_yes": "Available", - "update_no": "Up to Date", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json index 9dd81cfd..64bc1e72 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -5,9 +5,9 @@ "bbytes": "{{value, bytes(binary: true)}}", "bbits": "{{value, bytes(bits: true; binary: true)}}", "byterate": "{{value, rate(bits: false)}}", - "bibyterate": "{{value, bytes(bits: true; binary: true)}}", + "bibyterate": "{{value, rate(bits: false; binary: true)}}", "bitrate": "{{value, rate(bits: true)}}", - "bibitrate": "{{value, bytes(bits: true; binary: true)}}", + "bibitrate": "{{value, rate(bits: true; binary: true)}}", "percent": "{{value, percent}}", "number": "{{value, number}}", "ms": "{{value, number}}", @@ -120,7 +120,7 @@ "grid_power": "電網", "home_power": "電源使用率", "charge_power": "充電", - "kilowatt": "千瓦" + "kilowatt": "kW" }, "flood": { "download": "下載速率", @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "待辦的斷開", "connectionStatusDisconnecting": "正在中斷連線", "connectionStatusDisconnected": "連接已中斷", - "connectionStatusConnected": "已連線", + "connectionStatusConnected": "Connected", "uptime": "運行時間", "maxDown": "最大下載速率", "maxUp": "最大上傳速率", @@ -149,8 +149,8 @@ "received": "已接收", "sent": "已送出", "externalIPAddress": "外部 IP", - "externalIPv6Address": "外部 IP", - "externalIPv6Prefix": "擴展 IPv-前綴" + "externalIPv6Address": "Ext. IPv6", + "externalIPv6Prefix": "Ext. IPv6-Prefix" }, "caddy": { "upstreams": "上行", @@ -178,7 +178,7 @@ "connectedAp": "已連接的存取點", "activeUser": "在線裝置", "alerts": "警示", - "connectedGateways": "已連繫的網關", + "connectedGateways": "Connected gateways", "connectedSwitches": "已連接的交換器" }, "nzbget": { @@ -229,8 +229,8 @@ "seed": "已完成下載" }, "develancacheui": { - "cachehitbytes": "快取未命中位元組", - "cachemissbytes": "快取未命中位元組" + "cachehitbytes": "Cache Hit Bytes", + "cachemissbytes": "Cache Miss Bytes" }, "downloadstation": { "download": "下載速率", @@ -285,9 +285,9 @@ }, "netalertx": { "total": "全部", - "connected": "已連線", - "new_devices": "新裝置", - "down_alerts": "離線警告" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "查詢", @@ -313,13 +313,13 @@ }, "suwayomi": { "download": "下載咗", - "nondownload": "已下載", + "nondownload": "Non-Downloaded", "read": "已讀", "unread": "未讀", - "downloadedread": "已下載且已閱讀", - "downloadedunread": "已下載且未閱讀", - "nondownloadedread": "未下載但已閱讀", - "nondownloadedunread": "未下載且未閱讀" + "downloadedread": "Downloaded & Read", + "downloadedunread": "Downloaded & Unread", + "nondownloadedread": "Non-Downloaded & Read", + "nondownloadedunread": "Non-Downloaded & Unread" }, "tailscale": { "address": "位址", @@ -337,15 +337,15 @@ }, "technitium": { "totalQueries": "查詢", - "totalNoError": "成功", - "totalServerFailure": "失敗", - "totalNxDomain": "網域", - "totalRefused": "對方拒投誠信", - "totalAuthoritative": "權威的", - "totalRecursive": "遞迴", - "totalCached": "快取", + "totalNoError": "Success", + "totalServerFailure": "Failures", + "totalNxDomain": "NX Domains", + "totalRefused": "Refused", + "totalAuthoritative": "Authoritative", + "totalRecursive": "Recursive", + "totalCached": "Cached", "totalBlocked": "封鎖", - "totalDropped": "丟棄", + "totalDropped": "Dropped", "totalClients": "客戶端" }, "tdarr": { @@ -705,8 +705,8 @@ "time": "時間" }, "firefly": { - "networth": "淨值", - "budget": "預算" + "networth": "Net Worth", + "budget": "Budget" }, "grafana": { "dashboards": "控制面板", @@ -860,16 +860,16 @@ }, "romm": { "platforms": "平台", - "totalRoms": "遊戲", - "saves": "已儲存", - "states": "州", - "screenshots": "螢幕截圖", - "totalfilesize": "大小總計" + "totalRoms": "Games", + "saves": "Saves", + "states": "States", + "screenshots": "Screenshots", + "totalfilesize": "Total Size" }, "mailcow": { "domains": "域", - "mailboxes": "信箱", - "mails": "郵件數", + "mailboxes": "Mailboxes", + "mails": "Mails", "storage": "儲存空間" }, "netdata": { @@ -885,8 +885,7 @@ "gitea": { "notifications": "信息", "issues": "出版", - "pulls": "提取請求", - "repositories": "套件來源" + "pulls": "提取請求" }, "stash": { "scenes": "場景", @@ -922,16 +921,16 @@ "bans": "禁止" }, "wgeasy": { - "connected": "已連線", + "connected": "Connected", "enabled": "啟用", "disabled": "停用咗", "total": "全部" }, "swagdashboard": { - "proxied": "已代理", - "auth": "已授權", - "outdated": "須更新", - "banned": "已封鎖" + "proxied": "Proxied", + "auth": "With Auth", + "outdated": "Outdated", + "banned": "Banned" }, "myspeed": { "ping": "延遲", @@ -939,43 +938,43 @@ "upload": "上傳速率" }, "stocks": { - "stocks": "股票", - "loading": "載入中 ", - "open": "美國市場已開放", - "closed": "美國市場已關閉", - "invalidConfiguration": "無效的設定" + "stocks": "Stocks", + "loading": "Loading", + "open": "Open - US Market", + "closed": "Closed - US Market", + "invalidConfiguration": "Invalid Configuration" }, "frigate": { - "cameras": " ", + "cameras": "Cameras", "uptime": "運行時間", "version": "版本" }, "linkwarden": { - "links": " ", - "collections": "收藏庫", + "links": "Links", + "collections": "Collections", "tags": "標籤" }, "zabbix": { - "unclassified": "未分類", + "unclassified": "Not classified", "information": "資訊", - "warning": "警告", - "average": "平均", - "high": "高優先權", - "disaster": "災難" + "warning": "Warning", + "average": "Average", + "high": "High", + "disaster": "Disaster" }, "lubelogger": { - "vehicle": "車輛", - "vehicles": "車輛", - "serviceRecords": "保養記錄", - "reminders": "提醒", - "nextReminder": "下一個提醒", - "none": "沒有" + "vehicle": "Vehicle", + "vehicles": "Vehicles", + "serviceRecords": "Service Records", + "reminders": "Reminders", + "nextReminder": "Next Reminder", + "none": "None" }, "vikunja": { - "projects": "正在應用的項目", - "tasks7d": "本週到期任務", - "tasksOverdue": "逾期處理", - "tasksInProgress": "正在執行的任務" + "projects": "Active Projects", + "tasks7d": "Tasks Due This Week", + "tasksOverdue": "Overdue Tasks", + "tasksInProgress": "Tasks In Progress" }, "headscale": { "name": "名稱", @@ -987,7 +986,7 @@ }, "beszel": { "name": "名稱", - "systems": "系統", + "systems": "Systems", "up": "在線", "down": "離線", "paused": "擱置中", @@ -996,27 +995,27 @@ "updated": "已更新", "cpu": "CPU", "memory": "記憶體", - "disk": "儲存空間", - "network": "網路" + "disk": "Disk", + "network": "NET" }, "argocd": { - "apps": "應用程式", - "synced": "已同步", - "outOfSync": "不同步", + "apps": "Apps", + "synced": "Synced", + "outOfSync": "Out Of Sync", "healthy": "健康", - "degraded": "已降級", - "progressing": "進度", + "degraded": "Degraded", + "progressing": "Progressing", "missing": "缺少", - "suspended": "暫停" + "suspended": "Suspended" }, "spoolman": { - "loading": "載入中 " + "loading": "Loading" }, "gitlab": { - "groups": "群組", + "groups": "Groups", "issues": "出版", - "merges": "合併請求", - "projects": "專" + "merges": "Merge Requests", + "projects": "Projects" }, "apcups": { "status": "狀況", @@ -1024,23 +1023,12 @@ "bcharge": "充電", "timeleft": "用時" }, - "karakeep": { - "bookmarks": "書籤", - "favorites": "我的最愛", - "archived": "已存檔", - "highlights": "標記", - "lists": "列表", + "hoarder": { + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "archived": "Archived", + "highlights": "Highlights", + "lists": "Lists", "tags": "標籤" - }, - "slskd": { - "slskStatus": "網絡", - "connected": "已連線", - "disconnected": "連接已中斷", - "updateStatus": "更新", - "update_yes": "可用", - "update_no": "已更新至最新", - "downloads": "下載", - "uploads": "上傳", - "sharedFiles": "檔案" } } diff --git a/public/locales/zh-Hans/common.json b/public/locales/zh-Hans/common.json index be53b16b..5e54cd8d 100644 --- a/public/locales/zh-Hans/common.json +++ b/public/locales/zh-Hans/common.json @@ -885,8 +885,7 @@ "gitea": { "notifications": "通知", "issues": "问题", - "pulls": "PR", - "repositories": "Repositories" + "pulls": "PR" }, "stash": { "scenes": "场景", @@ -1024,23 +1023,12 @@ "bcharge": "充电中", "timeleft": "剩余时间" }, - "karakeep": { + "hoarder": { "bookmarks": "Bookmarks", "favorites": "Favorites", "archived": "Archived", "highlights": "Highlights", "lists": "Lists", "tags": "Tags" - }, - "slskd": { - "slskStatus": "网络", - "connected": "已连接", - "disconnected": "未连接", - "updateStatus": "Update", - "update_yes": "可用", - "update_no": "Up to Date", - "downloads": "Downloads", - "uploads": "Uploads", - "sharedFiles": "Files" } } diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json index 7abcd3a2..5a356009 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -5,9 +5,9 @@ "bbytes": "{{value, bytes(binary: true)}}", "bbits": "{{value, bytes(bits: true; binary: true)}}", "byterate": "{{value, rate(bits: false)}}", - "bibyterate": "{{value, bytes(bits: true; binary: true)}}", + "bibyterate": "{{value, rate(bits: false; binary: true)}}", "bitrate": "{{value, rate(bits: true)}}", - "bibitrate": "{{value, bytes(bits: true; binary: true)}}", + "bibitrate": "{{value, rate(bits: true; binary: true)}}", "percent": "{{value, percent}}", "number": "{{value, number}}", "ms": "{{value, number}}", @@ -120,7 +120,7 @@ "grid_power": "電網", "home_power": "電源使用率", "charge_power": "充電", - "kilowatt": "千瓦" + "kilowatt": "kW" }, "flood": { "download": "下載速率", @@ -140,7 +140,7 @@ "connectionStatusPendingDisconnect": "待辦的斷開", "connectionStatusDisconnecting": "正在中斷連線", "connectionStatusDisconnected": "連接已中斷", - "connectionStatusConnected": "已連線", + "connectionStatusConnected": "Connected", "uptime": "運行時間", "maxDown": "最大下載速率", "maxUp": "最大上傳速率", @@ -149,8 +149,8 @@ "received": "已接收", "sent": "已送出", "externalIPAddress": "外部 IP", - "externalIPv6Address": "外部 IP", - "externalIPv6Prefix": "擴展 IPv-前綴" + "externalIPv6Address": "Ext. IPv6", + "externalIPv6Prefix": "Ext. IPv6-Prefix" }, "caddy": { "upstreams": "上行", @@ -178,7 +178,7 @@ "connectedAp": "已連接的存取點", "activeUser": "在線裝置", "alerts": "警示", - "connectedGateways": "已連繫的網關", + "connectedGateways": "Connected gateways", "connectedSwitches": "已連接的交換器" }, "nzbget": { @@ -229,8 +229,8 @@ "seed": "已完成下載" }, "develancacheui": { - "cachehitbytes": "快取未命中位元組", - "cachemissbytes": "快取未命中位元組" + "cachehitbytes": "Cache Hit Bytes", + "cachemissbytes": "Cache Miss Bytes" }, "downloadstation": { "download": "下載速率", @@ -285,9 +285,9 @@ }, "netalertx": { "total": "全部", - "connected": "已連線", - "new_devices": "新裝置", - "down_alerts": "離線警告" + "connected": "Connected", + "new_devices": "New Devices", + "down_alerts": "Down Alerts" }, "pihole": { "queries": "查詢", @@ -313,13 +313,13 @@ }, "suwayomi": { "download": "已下載", - "nondownload": "已下載", + "nondownload": "Non-Downloaded", "read": "已讀", "unread": "未讀", - "downloadedread": "已下載且已閱讀", - "downloadedunread": "已下載且未閱讀", - "nondownloadedread": "未下載但已閱讀", - "nondownloadedunread": "未下載且未閱讀" + "downloadedread": "Downloaded & Read", + "downloadedunread": "Downloaded & Unread", + "nondownloadedread": "Non-Downloaded & Read", + "nondownloadedunread": "Non-Downloaded & Unread" }, "tailscale": { "address": "位址", @@ -337,15 +337,15 @@ }, "technitium": { "totalQueries": "查詢", - "totalNoError": "成功", - "totalServerFailure": "失敗", - "totalNxDomain": "網域", - "totalRefused": "對方拒投誠信", - "totalAuthoritative": "權威的", - "totalRecursive": "遞迴", - "totalCached": "快取", + "totalNoError": "Success", + "totalServerFailure": "Failures", + "totalNxDomain": "NX Domains", + "totalRefused": "Refused", + "totalAuthoritative": "Authoritative", + "totalRecursive": "Recursive", + "totalCached": "Cached", "totalBlocked": "已阻擋", - "totalDropped": "丟棄", + "totalDropped": "Dropped", "totalClients": "客戶端" }, "tdarr": { @@ -705,8 +705,8 @@ "time": "時間" }, "firefly": { - "networth": "淨值", - "budget": "預算" + "networth": "Net Worth", + "budget": "Budget" }, "grafana": { "dashboards": "控制面板", @@ -860,16 +860,16 @@ }, "romm": { "platforms": "平台", - "totalRoms": "遊戲", - "saves": "已儲存", - "states": "州", - "screenshots": "螢幕截圖", - "totalfilesize": "大小總計" + "totalRoms": "Games", + "saves": "Saves", + "states": "States", + "screenshots": "Screenshots", + "totalfilesize": "Total Size" }, "mailcow": { "domains": "網域", - "mailboxes": "信箱", - "mails": "郵件數", + "mailboxes": "Mailboxes", + "mails": "Mails", "storage": "儲存空間" }, "netdata": { @@ -885,8 +885,7 @@ "gitea": { "notifications": "信息", "issues": "出版", - "pulls": "提取請求", - "repositories": "套件來源" + "pulls": "提取請求" }, "stash": { "scenes": "場景", @@ -922,16 +921,16 @@ "bans": "禁止" }, "wgeasy": { - "connected": "已連線", + "connected": "Connected", "enabled": "已啟用", "disabled": "已停用", "total": "全部" }, "swagdashboard": { - "proxied": "已代理", - "auth": "已授權", - "outdated": "須更新", - "banned": "已封鎖" + "proxied": "Proxied", + "auth": "With Auth", + "outdated": "Outdated", + "banned": "Banned" }, "myspeed": { "ping": "延遲", @@ -939,43 +938,43 @@ "upload": "上傳速率" }, "stocks": { - "stocks": "股票", - "loading": "載入中 ", - "open": "美國市場已開放", - "closed": "美國市場已關閉", - "invalidConfiguration": "無效的設定" + "stocks": "Stocks", + "loading": "Loading", + "open": "Open - US Market", + "closed": "Closed - US Market", + "invalidConfiguration": "Invalid Configuration" }, "frigate": { - "cameras": " ", + "cameras": "Cameras", "uptime": "運行時間", "version": "版本" }, "linkwarden": { - "links": " ", - "collections": "收藏庫", + "links": "Links", + "collections": "Collections", "tags": "標籤" }, "zabbix": { - "unclassified": "未分類", + "unclassified": "Not classified", "information": "資訊", - "warning": "警告", - "average": "平均", - "high": "高優先權", - "disaster": "災難" + "warning": "Warning", + "average": "Average", + "high": "High", + "disaster": "Disaster" }, "lubelogger": { - "vehicle": "車輛", - "vehicles": "車輛", - "serviceRecords": "保養記錄", - "reminders": "提醒", - "nextReminder": "下一個提醒", - "none": "沒有" + "vehicle": "Vehicle", + "vehicles": "Vehicles", + "serviceRecords": "Service Records", + "reminders": "Reminders", + "nextReminder": "Next Reminder", + "none": "None" }, "vikunja": { - "projects": "正在應用的項目", - "tasks7d": "本週到期任務", - "tasksOverdue": "逾期處理", - "tasksInProgress": "正在執行的任務" + "projects": "Active Projects", + "tasks7d": "Tasks Due This Week", + "tasksOverdue": "Overdue Tasks", + "tasksInProgress": "Tasks In Progress" }, "headscale": { "name": "名稱", @@ -987,7 +986,7 @@ }, "beszel": { "name": "名稱", - "systems": "系統", + "systems": "Systems", "up": "在線", "down": "離線", "paused": "擱置中", @@ -996,27 +995,27 @@ "updated": "已更新", "cpu": "CPU", "memory": "記憶體", - "disk": "儲存空間", - "network": "網路" + "disk": "Disk", + "network": "NET" }, "argocd": { - "apps": "應用程式", - "synced": "已同步", - "outOfSync": "不同步", + "apps": "Apps", + "synced": "Synced", + "outOfSync": "Out Of Sync", "healthy": "健康", - "degraded": "已降級", - "progressing": "進度", + "degraded": "Degraded", + "progressing": "Progressing", "missing": "缺少", - "suspended": "暫停" + "suspended": "Suspended" }, "spoolman": { - "loading": "載入中 " + "loading": "Loading" }, "gitlab": { - "groups": "群組", + "groups": "Groups", "issues": "出版", - "merges": "合併請求", - "projects": "專" + "merges": "Merge Requests", + "projects": "Projects" }, "apcups": { "status": "狀態", @@ -1024,23 +1023,12 @@ "bcharge": "充電", "timeleft": "剩餘時間" }, - "karakeep": { - "bookmarks": "書籤", - "favorites": "我的最愛", - "archived": "已存檔", - "highlights": "標記", - "lists": "列表", + "hoarder": { + "bookmarks": "Bookmarks", + "favorites": "Favorites", + "archived": "Archived", + "highlights": "Highlights", + "lists": "Lists", "tags": "標籤" - }, - "slskd": { - "slskStatus": "網絡", - "connected": "已連線", - "disconnected": "連接已中斷", - "updateStatus": "更新", - "update_yes": "可觀看", - "update_no": "已更新至最新", - "downloads": "下載", - "uploads": "上傳", - "sharedFiles": "檔案" } } diff --git a/src/components/bookmarks/group.jsx b/src/components/bookmarks/group.jsx index 2334dad5..d8eb296d 100644 --- a/src/components/bookmarks/group.jsx +++ b/src/components/bookmarks/group.jsx @@ -1,10 +1,10 @@ -import { Disclosure, Transition } from "@headlessui/react"; +import { useRef, useEffect } from "react"; import classNames from "classnames"; -import List from "components/bookmarks/list"; -import ErrorBoundary from "components/errorboundry"; -import ResolvedIcon from "components/resolvedicon"; -import { useEffect, useRef } from "react"; +import { Disclosure, Transition } from "@headlessui/react"; 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({ bookmarks, @@ -12,7 +12,6 @@ export default function BookmarksGroup({ disableCollapse, groupsInitiallyCollapsed, bookmarksStyle, - maxGroupColumns, }) { const panel = useRef(); @@ -26,9 +25,6 @@ export default function BookmarksGroup({ className={classNames( "bookmark-group flex-1 overflow-hidden", layout?.style === "row" ? "basis-full" : "basis-full md:basis-1/4 lg:basis-1/5 xl:basis-1/6", - layout?.style !== "row" && maxGroupColumns && parseInt(maxGroupColumns, 10) > 6 - ? `3xl:basis-1/${maxGroupColumns}` - : "", layout?.header === false ? "px-1" : "p-1 pb-0", )} > diff --git a/src/components/bookmarks/item.jsx b/src/components/bookmarks/item.jsx index 7ea16bba..dd18bb71 100644 --- a/src/components/bookmarks/item.jsx +++ b/src/components/bookmarks/item.jsx @@ -1,7 +1,7 @@ -import classNames from "classnames"; -import ResolvedIcon from "components/resolvedicon"; import { useContext } from "react"; +import classNames from "classnames"; import { SettingsContext } from "utils/contexts/settings"; +import ResolvedIcon from "components/resolvedicon"; export default function Item({ bookmark, iconOnly = false }) { const description = bookmark.description ?? new URL(bookmark.href).hostname; @@ -22,7 +22,7 @@ export default function Item({ bookmark, iconOnly = false }) { className={classNames( settings.cardBlur !== undefined && `backdrop-blur${settings.cardBlur.length ? "-" : ""}${settings.cardBlur}`, "text-left cursor-pointer transition-all rounded-md font-medium text-theme-700 dark:text-theme-200 dark:hover:text-theme-300 shadow-md shadow-theme-900/10 dark:shadow-theme-900/20 bg-theme-100/20 hover:bg-theme-300/20 dark:bg-white/5 dark:hover:bg-white/10", - iconOnly ? "h-[60px] w-[60px] grid" : "block w-full mb-3", + iconOnly ? "h-[60px] w-[60px] grid" : "block w-full h-8 mb-3", )} > {iconOnly ? ( diff --git a/src/components/favicon.jsx b/src/components/favicon.jsx index 8961d655..8221c799 100644 --- a/src/components/favicon.jsx +++ b/src/components/favicon.jsx @@ -1,6 +1,6 @@ /* eslint-disable @next/next/no-img-element */ /* 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 themes from "utils/styles/themes"; diff --git a/src/components/quicklaunch.jsx b/src/components/quicklaunch.jsx index 5ed9ace7..b8d0b7ba 100644 --- a/src/components/quicklaunch.jsx +++ b/src/components/quicklaunch.jsx @@ -1,6 +1,6 @@ +import { useTranslation } from "react-i18next"; +import { useEffect, useState, useRef, useCallback, useContext } from "react"; import classNames from "classnames"; -import { useTranslation } from "next-i18next"; -import { useCallback, useContext, useEffect, useRef, useState } from "react"; import useSWR from "swr"; import { SettingsContext } from "utils/contexts/settings"; @@ -53,7 +53,7 @@ export default function QuickLaunch({ servicesAndBookmarks, searchString, setSea const result = results[currentItemIndex]; window.open( result.href, - newWindow ? "_blank" : (result.target ?? searchProvider?.target ?? settings.target ?? "_blank"), + newWindow ? "_blank" : result.target ?? searchProvider?.target ?? settings.target ?? "_blank", "noreferrer", ); } @@ -204,8 +204,7 @@ export default function QuickLaunch({ servicesAndBookmarks, searchString, setSea return () => { abortController.abort(); }; - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [searchString, servicesAndBookmarks, searchDescriptions, hideVisitURL, searchSuggestions, searchProvider, url]); + }, [searchString, servicesAndBookmarks, searchDescriptions, hideVisitURL, searchSuggestions, searchProvider, url, t]); const [hidden, setHidden] = useState(true); useEffect(() => { diff --git a/src/components/resolvedicon.jsx b/src/components/resolvedicon.jsx index 77ba9119..eb2a5c0d 100644 --- a/src/components/resolvedicon.jsx +++ b/src/components/resolvedicon.jsx @@ -1,5 +1,5 @@ -import Image from "next/image"; import { useContext } from "react"; +import Image from "next/image"; import { SettingsContext } from "utils/contexts/settings"; import { ThemeContext } from "utils/contexts/theme"; diff --git a/src/components/services/dropdown.jsx b/src/components/services/dropdown.jsx index e8e11d97..00b8a429 100644 --- a/src/components/services/dropdown.jsx +++ b/src/components/services/dropdown.jsx @@ -1,7 +1,7 @@ -import { Menu, Transition } from "@headlessui/react"; -import classNames from "classnames"; import { Fragment } from "react"; +import { Menu, Transition } from "@headlessui/react"; import { BiCog } from "react-icons/bi"; +import classNames from "classnames"; export default function Dropdown({ options, value, setValue }) { return ( diff --git a/src/components/services/group.jsx b/src/components/services/group.jsx index cad7b5aa..06fb83e1 100644 --- a/src/components/services/group.jsx +++ b/src/components/services/group.jsx @@ -1,16 +1,16 @@ -import { Disclosure, Transition } from "@headlessui/react"; +import { useRef, useEffect } from "react"; import classNames from "classnames"; -import ResolvedIcon from "components/resolvedicon"; -import List from "components/services/list"; -import { useEffect, useRef } from "react"; +import { Disclosure, Transition } from "@headlessui/react"; import { MdKeyboardArrowDown } from "react-icons/md"; +import List from "components/services/list"; +import ResolvedIcon from "components/resolvedicon"; import { columnMap } from "../../utils/layout/columns"; export default function ServicesGroup({ group, layout, - maxGroupColumns, + fiveColumns, disableCollapse, useEqualHeights, groupsInitiallyCollapsed, @@ -31,7 +31,7 @@ export default function ServicesGroup({ className={classNames( "services-group flex-1", layout?.style === "row" ? "basis-full" : "basis-full md:basis-1/2 lg:basis-1/3 xl:basis-1/4", - layout?.style !== "row" && maxGroupColumns ? `3xl:basis-1/${maxGroupColumns}` : "", + layout?.style !== "row" && fiveColumns ? "3xl:basis-1/5" : "", groupPadding, isSubgroup ? "subgroup" : "", )} @@ -97,7 +97,7 @@ export default function ServicesGroup({ key={subgroup.name} group={subgroup} layout={layout?.[subgroup.name]} - maxGroupColumns={maxGroupColumns} + fiveColumns={fiveColumns} disableCollapse={disableCollapse} useEqualHeights={useEqualHeights} groupsInitiallyCollapsed={groupsInitiallyCollapsed} diff --git a/src/components/services/item.jsx b/src/components/services/item.jsx index 8e851611..72b0fd50 100644 --- a/src/components/services/item.jsx +++ b/src/components/services/item.jsx @@ -1,15 +1,15 @@ import classNames from "classnames"; -import ResolvedIcon from "components/resolvedicon"; import { useContext, useState } from "react"; -import { SettingsContext } from "utils/contexts/settings"; import Docker from "widgets/docker/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 Widget from "./widget"; +import Ping from "./ping"; +import SiteMonitor from "./site-monitor"; +import KubernetesStatus from "./kubernetes-status"; export default function Item({ service, groupName, useEqualHeights }) { const hasLink = service.href && service.href !== "#"; diff --git a/src/components/services/kubernetes-status.jsx b/src/components/services/kubernetes-status.jsx index e4ea958d..a256a2df 100644 --- a/src/components/services/kubernetes-status.jsx +++ b/src/components/services/kubernetes-status.jsx @@ -1,5 +1,5 @@ -import { t } from "i18next"; import useSWR from "swr"; +import { t } from "i18next"; export default function KubernetesStatus({ service, style }) { const podSelectorString = service.podSelector !== undefined ? `podSelector=${service.podSelector}` : ""; diff --git a/src/components/services/ping.jsx b/src/components/services/ping.jsx index f8665e33..670f9d4b 100644 --- a/src/components/services/ping.jsx +++ b/src/components/services/ping.jsx @@ -1,4 +1,4 @@ -import { useTranslation } from "next-i18next"; +import { useTranslation } from "react-i18next"; import useSWR from "swr"; export default function Ping({ groupName, serviceName, style }) { diff --git a/src/components/services/site-monitor.jsx b/src/components/services/site-monitor.jsx index 79496f65..4dceb44c 100644 --- a/src/components/services/site-monitor.jsx +++ b/src/components/services/site-monitor.jsx @@ -1,4 +1,4 @@ -import { useTranslation } from "next-i18next"; +import { useTranslation } from "react-i18next"; import useSWR from "swr"; export default function SiteMonitor({ groupName, serviceName, style }) { diff --git a/src/components/services/status.jsx b/src/components/services/status.jsx index 2688ca0f..3a6f3b33 100644 --- a/src/components/services/status.jsx +++ b/src/components/services/status.jsx @@ -1,4 +1,4 @@ -import { useTranslation } from "next-i18next"; +import { useTranslation } from "react-i18next"; import useSWR from "swr"; export default function Status({ service, style }) { diff --git a/src/components/services/widget.jsx b/src/components/services/widget.jsx index 6e3a6360..bda638a4 100644 --- a/src/components/services/widget.jsx +++ b/src/components/services/widget.jsx @@ -1,5 +1,5 @@ -import ErrorBoundary from "components/errorboundry"; import { useTranslation } from "next-i18next"; +import ErrorBoundary from "components/errorboundry"; import components from "widgets/components"; diff --git a/src/components/services/widget/block.jsx b/src/components/services/widget/block.jsx index 720140cc..8cd74aad 100644 --- a/src/components/services/widget/block.jsx +++ b/src/components/services/widget/block.jsx @@ -1,5 +1,5 @@ -import classNames from "classnames"; import { useTranslation } from "next-i18next"; +import classNames from "classnames"; export default function Block({ value, label }) { const { t } = useTranslation(); diff --git a/src/components/services/widget/container.jsx b/src/components/services/widget/container.jsx index f5957382..9b10233c 100644 --- a/src/components/services/widget/container.jsx +++ b/src/components/services/widget/container.jsx @@ -3,11 +3,6 @@ import { SettingsContext } from "utils/contexts/settings"; import Error from "./error"; -const ALIASED_WIDGETS = { - pialert: "netalertx", - hoarder: "karakeep", -}; - export default function Container({ error = false, children, service }) { const { settings } = useContext(SettingsContext); @@ -37,17 +32,7 @@ export default function Container({ error = false, children, service }) { if (!field.includes(".")) { fullField = `${type}.${field}`; } - let matches = 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; + return fullField === child?.props?.label; }), ); } diff --git a/src/components/services/widget/error.jsx b/src/components/services/widget/error.jsx index 0d4757d3..30c41283 100644 --- a/src/components/services/widget/error.jsx +++ b/src/components/services/widget/error.jsx @@ -1,4 +1,4 @@ -import { useTranslation } from "next-i18next"; +import { useTranslation } from "react-i18next"; import { IoAlertCircle } from "react-icons/io5"; function displayError(error) { diff --git a/src/components/tab.jsx b/src/components/tab.jsx index dc183fe4..2c3984c9 100644 --- a/src/components/tab.jsx +++ b/src/components/tab.jsx @@ -1,5 +1,5 @@ -import classNames from "classnames"; import { useContext } from "react"; +import classNames from "classnames"; import { TabContext } from "utils/contexts/tab"; function slugify(tabName) { diff --git a/src/components/toggles/color.jsx b/src/components/toggles/color.jsx index 7ea700ab..60cc8de8 100644 --- a/src/components/toggles/color.jsx +++ b/src/components/toggles/color.jsx @@ -1,7 +1,7 @@ +import { useContext, Fragment } from "react"; +import { IoColorPalette } from "react-icons/io5"; import { Popover, Transition } from "@headlessui/react"; import classNames from "classnames"; -import { Fragment, useContext } from "react"; -import { IoColorPalette } from "react-icons/io5"; import { ColorContext } from "utils/contexts/color"; const colors = [ diff --git a/src/components/version.jsx b/src/components/version.jsx index 946fb0a9..b8ee1eb8 100644 --- a/src/components/version.jsx +++ b/src/components/version.jsx @@ -1,8 +1,8 @@ -import { compareVersions, validate } from "compare-versions"; import cache from "memory-cache"; import { useTranslation } from "next-i18next"; -import { MdNewReleases } from "react-icons/md"; import useSWR from "swr"; +import { compareVersions, validate } from "compare-versions"; +import { MdNewReleases } from "react-icons/md"; const LATEST_RELEASE_CACHE_KEY = "latestRelease"; diff --git a/src/components/widgets/datetime/datetime.jsx b/src/components/widgets/datetime/datetime.jsx index b59cf809..a7aec5da 100644 --- a/src/components/widgets/datetime/datetime.jsx +++ b/src/components/widgets/datetime/datetime.jsx @@ -1,5 +1,5 @@ +import { useState, useEffect } from "react"; import { useTranslation } from "next-i18next"; -import { useEffect, useState } from "react"; import Container from "../widget/container"; import Raw from "../widget/raw"; diff --git a/src/components/widgets/glances/glances.jsx b/src/components/widgets/glances/glances.jsx index 7f772808..0803b88c 100644 --- a/src/components/widgets/glances/glances.jsx +++ b/src/components/widgets/glances/glances.jsx @@ -1,9 +1,9 @@ -import classNames from "classnames"; -import { useTranslation } from "next-i18next"; +import useSWR from "swr"; import { useContext } from "react"; import { FaMemory, FaRegClock, FaThermometerHalf } from "react-icons/fa"; 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 Error from "../widget/error"; diff --git a/src/components/widgets/kubernetes/kubernetes.jsx b/src/components/widgets/kubernetes/kubernetes.jsx index 50b173bc..f7b101c7 100644 --- a/src/components/widgets/kubernetes/kubernetes.jsx +++ b/src/components/widgets/kubernetes/kubernetes.jsx @@ -1,8 +1,8 @@ -import { useTranslation } from "next-i18next"; import useSWR from "swr"; +import { useTranslation } from "next-i18next"; -import Container from "../widget/container"; import Error from "../widget/error"; +import Container from "../widget/container"; import Raw from "../widget/raw"; import Node from "./node"; diff --git a/src/components/widgets/kubernetes/node.jsx b/src/components/widgets/kubernetes/node.jsx index aebb40f2..ba8f8b77 100644 --- a/src/components/widgets/kubernetes/node.jsx +++ b/src/components/widgets/kubernetes/node.jsx @@ -1,7 +1,7 @@ -import { useTranslation } from "next-i18next"; import { FaMemory } from "react-icons/fa"; import { FiAlertTriangle, FiCpu, FiServer } from "react-icons/fi"; import { SiKubernetes } from "react-icons/si"; +import { useTranslation } from "next-i18next"; import UsageBar from "../resources/usage-bar"; diff --git a/src/components/widgets/longhorn/longhorn.jsx b/src/components/widgets/longhorn/longhorn.jsx index db68cd7b..22047e2c 100644 --- a/src/components/widgets/longhorn/longhorn.jsx +++ b/src/components/widgets/longhorn/longhorn.jsx @@ -1,7 +1,7 @@ import useSWR from "swr"; -import Container from "../widget/container"; import Error from "../widget/error"; +import Container from "../widget/container"; import Raw from "../widget/raw"; import Node from "./node"; @@ -32,8 +32,8 @@ export default function Longhorn({ options }) {
{data.nodes .filter((node) => { - if (node.id === "total") { - return total; + if (node.id === "total" && total) { + return true; } if (!nodes) { return false; diff --git a/src/components/widgets/openmeteo/openmeteo.jsx b/src/components/widgets/openmeteo/openmeteo.jsx index a46f53ab..4d3e7e89 100644 --- a/src/components/widgets/openmeteo/openmeteo.jsx +++ b/src/components/widgets/openmeteo/openmeteo.jsx @@ -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 { 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 ContainerButton from "../widget/container_button"; -import Error from "../widget/error"; +import WidgetIcon from "../widget/widget_icon"; import PrimaryText from "../widget/primary_text"; import SecondaryText from "../widget/secondary_text"; -import WidgetIcon from "../widget/widget_icon"; +import mapIcon from "../../../utils/weather/openmeteo-condition-map"; function Widget({ options }) { const { t } = useTranslation(); diff --git a/src/components/widgets/openweathermap/weather.jsx b/src/components/widgets/openweathermap/weather.jsx index 3336ed4f..df0280e3 100644 --- a/src/components/widgets/openweathermap/weather.jsx +++ b/src/components/widgets/openweathermap/weather.jsx @@ -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 { 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 ContainerButton from "../widget/container_button"; -import Error from "../widget/error"; import PrimaryText from "../widget/primary_text"; import SecondaryText from "../widget/secondary_text"; import WidgetIcon from "../widget/widget_icon"; +import mapIcon from "../../../utils/weather/owm-condition-map"; function Widget({ options }) { const { t, i18n } = useTranslation(); diff --git a/src/components/widgets/resources/cpu.jsx b/src/components/widgets/resources/cpu.jsx index 1bea4af9..1963637d 100644 --- a/src/components/widgets/resources/cpu.jsx +++ b/src/components/widgets/resources/cpu.jsx @@ -1,9 +1,9 @@ -import { useTranslation } from "next-i18next"; -import { FiCpu } from "react-icons/fi"; 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 Error from "../widget/error"; export default function Cpu({ expanded, refresh = 1500 }) { const { t } = useTranslation(); diff --git a/src/components/widgets/resources/cputemp.jsx b/src/components/widgets/resources/cputemp.jsx index 248cd396..ef994c65 100644 --- a/src/components/widgets/resources/cputemp.jsx +++ b/src/components/widgets/resources/cputemp.jsx @@ -1,9 +1,9 @@ -import { useTranslation } from "next-i18next"; -import { FaThermometerHalf } from "react-icons/fa"; 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 Error from "../widget/error"; function convertToFahrenheit(t) { return (t * 9) / 5 + 32; diff --git a/src/components/widgets/resources/disk.jsx b/src/components/widgets/resources/disk.jsx index d5706ba5..15da7780 100644 --- a/src/components/widgets/resources/disk.jsx +++ b/src/components/widgets/resources/disk.jsx @@ -1,9 +1,9 @@ -import { useTranslation } from "next-i18next"; -import { FiHardDrive } from "react-icons/fi"; 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 Error from "../widget/error"; export default function Disk({ options, expanded, diskUnits, refresh = 1500 }) { const { t } = useTranslation(); diff --git a/src/components/widgets/resources/memory.jsx b/src/components/widgets/resources/memory.jsx index a8c82cbf..155b7ecb 100644 --- a/src/components/widgets/resources/memory.jsx +++ b/src/components/widgets/resources/memory.jsx @@ -1,9 +1,9 @@ -import { useTranslation } from "next-i18next"; -import { FaMemory } from "react-icons/fa"; 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 Error from "../widget/error"; export default function Memory({ expanded, refresh = 1500 }) { const { t } = useTranslation(); diff --git a/src/components/widgets/resources/network.jsx b/src/components/widgets/resources/network.jsx index 48286030..a2a3acac 100644 --- a/src/components/widgets/resources/network.jsx +++ b/src/components/widgets/resources/network.jsx @@ -1,9 +1,9 @@ -import { useTranslation } from "next-i18next"; -import { FaNetworkWired } from "react-icons/fa"; 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 Error from "../widget/error"; export default function Network({ options, refresh = 1500 }) { const { t } = useTranslation(); diff --git a/src/components/widgets/resources/resources.jsx b/src/components/widgets/resources/resources.jsx index 1002f98c..db26caa7 100644 --- a/src/components/widgets/resources/resources.jsx +++ b/src/components/widgets/resources/resources.jsx @@ -1,12 +1,12 @@ import Container from "../widget/container"; import Raw from "../widget/raw"; -import Cpu from "./cpu"; -import CpuTemp from "./cputemp"; import Disk from "./disk"; +import Cpu from "./cpu"; import Memory from "./memory"; -import Network from "./network"; +import CpuTemp from "./cputemp"; import Uptime from "./uptime"; +import Network from "./network"; export default function Resources({ options }) { const { expanded, units, diskUnits, tempmin, tempmax } = options; diff --git a/src/components/widgets/resources/uptime.jsx b/src/components/widgets/resources/uptime.jsx index f21634c2..2fac0fcd 100644 --- a/src/components/widgets/resources/uptime.jsx +++ b/src/components/widgets/resources/uptime.jsx @@ -1,9 +1,9 @@ -import { useTranslation } from "next-i18next"; -import { FaRegClock } from "react-icons/fa"; 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 Error from "../widget/error"; export default function Uptime({ refresh = 1500 }) { const { t } = useTranslation(); diff --git a/src/components/widgets/search/search.jsx b/src/components/widgets/search/search.jsx index 6699a374..e0564c48 100644 --- a/src/components/widgets/search/search.jsx +++ b/src/components/widgets/search/search.jsx @@ -1,10 +1,10 @@ -import { Combobox, Listbox, Transition } from "@headlessui/react"; -import classNames from "classnames"; +import { useState, useEffect, Fragment } from "react"; import { useTranslation } from "next-i18next"; -import { Fragment, useEffect, useState } from "react"; -import { BiLogoBing } from "react-icons/bi"; 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 Raw from "../widget/raw"; diff --git a/src/components/widgets/stocks/stocks.jsx b/src/components/widgets/stocks/stocks.jsx index e6657878..1a9018d3 100644 --- a/src/components/widgets/stocks/stocks.jsx +++ b/src/components/widgets/stocks/stocks.jsx @@ -1,13 +1,13 @@ -import { useTranslation } from "next-i18next"; -import { useState } from "react"; -import { FaChartLine } from "react-icons/fa6"; 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 Container from "../widget/container"; import PrimaryText from "../widget/primary_text"; -import Raw from "../widget/raw"; import WidgetIcon from "../widget/widget_icon"; +import Raw from "../widget/raw"; export default function Widget({ options }) { const { t, i18n } = useTranslation(); diff --git a/src/components/widgets/unifi_console/unifi_console.jsx b/src/components/widgets/unifi_console/unifi_console.jsx index 09e6952f..5295dbb7 100644 --- a/src/components/widgets/unifi_console/unifi_console.jsx +++ b/src/components/widgets/unifi_console/unifi_console.jsx @@ -1,13 +1,13 @@ -import { useTranslation } from "next-i18next"; -import { BiCheckCircle, BiError, BiNetworkChart, BiWifi, BiXCircle } from "react-icons/bi"; +import { BiError, BiWifi, BiCheckCircle, BiXCircle, BiNetworkChart } from "react-icons/bi"; import { MdSettingsEthernet } from "react-icons/md"; +import { useTranslation } from "next-i18next"; import { SiUbiquiti } from "react-icons/si"; -import Container from "../widget/container"; import Error from "../widget/error"; -import PrimaryText from "../widget/primary_text"; +import Container from "../widget/container"; import Raw from "../widget/raw"; import WidgetIcon from "../widget/widget_icon"; +import PrimaryText from "../widget/primary_text"; import useWidgetAPI from "utils/proxy/use-widget-api"; diff --git a/src/components/widgets/weather/weather.jsx b/src/components/widgets/weather/weather.jsx index 98768963..4ebb08c5 100644 --- a/src/components/widgets/weather/weather.jsx +++ b/src/components/widgets/weather/weather.jsx @@ -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 { 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 Container from "../widget/container"; import PrimaryText from "../widget/primary_text"; import SecondaryText from "../widget/secondary_text"; import WidgetIcon from "../widget/widget_icon"; +import ContainerButton from "../widget/container_button"; +import mapIcon from "../../../utils/weather/condition-map"; function Widget({ options }) { const { t, i18n } = useTranslation(); diff --git a/src/components/widgets/widget.jsx b/src/components/widgets/widget.jsx index ebc706ac..6cb48fde 100644 --- a/src/components/widgets/widget.jsx +++ b/src/components/widgets/widget.jsx @@ -1,5 +1,5 @@ -import ErrorBoundary from "components/errorboundry"; import dynamic from "next/dynamic"; +import ErrorBoundary from "components/errorboundry"; const widgetMappings = { weatherapi: dynamic(() => import("components/widgets/weather/weather")), diff --git a/src/components/widgets/widget/container.jsx b/src/components/widgets/widget/container.jsx index fe6397e0..ae06d8ba 100644 --- a/src/components/widgets/widget/container.jsx +++ b/src/components/widgets/widget/container.jsx @@ -2,10 +2,10 @@ import classNames from "classnames"; import { useContext } from "react"; 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 PrimaryText from "./primary_text"; +import SecondaryText from "./secondary_text"; +import Raw from "./raw"; export function getAllClasses(options, additionalClassNames = "") { if (options?.style?.header === "boxedWidgets") { diff --git a/src/components/widgets/widget/container_button.jsx b/src/components/widgets/widget/container_button.jsx index e0802511..a6379081 100644 --- a/src/components/widgets/widget/container_button.jsx +++ b/src/components/widgets/widget/container_button.jsx @@ -1,4 +1,4 @@ -import { getAllClasses, getBottomBlock, getInnerBlock } from "./container"; +import { getAllClasses, getInnerBlock, getBottomBlock } from "./container"; export default function ContainerButton({ children = [], options, additionalClassNames = "", callback }) { return ( diff --git a/src/components/widgets/widget/container_form.jsx b/src/components/widgets/widget/container_form.jsx index a9afef3a..68cbd64b 100644 --- a/src/components/widgets/widget/container_form.jsx +++ b/src/components/widgets/widget/container_form.jsx @@ -1,4 +1,4 @@ -import { getAllClasses, getBottomBlock, getInnerBlock } from "./container"; +import { getAllClasses, getInnerBlock, getBottomBlock } from "./container"; export default function ContainerForm({ children = [], options, additionalClassNames = "", callback }) { return ( diff --git a/src/components/widgets/widget/container_link.jsx b/src/components/widgets/widget/container_link.jsx index a36f311c..6f157875 100644 --- a/src/components/widgets/widget/container_link.jsx +++ b/src/components/widgets/widget/container_link.jsx @@ -1,4 +1,4 @@ -import { getAllClasses, getBottomBlock, getInnerBlock } from "./container"; +import { getAllClasses, getInnerBlock, getBottomBlock } from "./container"; export default function ContainerLink({ children = [], options, additionalClassNames = "", target }) { return ( diff --git a/src/components/widgets/widget/error.jsx b/src/components/widgets/widget/error.jsx index e0e8b1e1..e454256f 100644 --- a/src/components/widgets/widget/error.jsx +++ b/src/components/widgets/widget/error.jsx @@ -1,4 +1,4 @@ -import { useTranslation } from "next-i18next"; +import { useTranslation } from "react-i18next"; import { BiError } from "react-icons/bi"; import Container from "./container"; diff --git a/src/components/widgets/widget/resources.jsx b/src/components/widgets/widget/resources.jsx index b9a48a41..2f594942 100644 --- a/src/components/widgets/widget/resources.jsx +++ b/src/components/widgets/widget/resources.jsx @@ -1,8 +1,8 @@ import classNames from "classnames"; import ContainerLink from "./container_link"; -import Raw from "./raw"; import Resource from "./resource"; +import Raw from "./raw"; import WidgetLabel from "./widget_label"; export default function Resources({ options, children, target, additionalClassNames }) { diff --git a/src/middleware.js b/src/middleware.js index bb9fbea5..f2011903 100644 --- a/src/middleware.js +++ b/src/middleware.js @@ -4,12 +4,11 @@ export function middleware(req) { // Check the Host header, if HOMEPAGE_ALLOWED_HOSTS is set const host = req.headers.get("host"); const port = process.env.PORT || 3000; - let allowedHosts = [`localhost:${port}`, `127.0.0.1:${port}`]; - const allowAll = process.env.HOMEPAGE_ALLOWED_HOSTS === "*"; + let allowedHosts = [`localhost:${port}`]; if (process.env.HOMEPAGE_ALLOWED_HOSTS) { allowedHosts = allowedHosts.concat(process.env.HOMEPAGE_ALLOWED_HOSTS.split(",")); } - if (!allowAll && (!host || !allowedHosts.includes(host))) { + if (!host || !allowedHosts.includes(host)) { // eslint-disable-next-line no-console console.error( `Host validation failed for: ${host}. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port.`, diff --git a/src/pages/_app.jsx b/src/pages/_app.jsx index 8e88f6b2..bf46e3f6 100644 --- a/src/pages/_app.jsx +++ b/src/pages/_app.jsx @@ -1,72 +1,17 @@ /* eslint-disable react/jsx-props-no-spreading */ +import { SWRConfig } from "swr"; import { appWithTranslation } from "next-i18next"; import Head from "next/head"; import "styles/globals.css"; -import "styles/manrope.css"; import "styles/theme.css"; -import { SWRConfig } from "swr"; +import "styles/manrope.css"; import { ColorProvider } from "utils/contexts/color"; +import { ThemeProvider } from "utils/contexts/theme"; import { SettingsProvider } from "utils/contexts/settings"; import { TabProvider } from "utils/contexts/tab"; -import { ThemeProvider } from "utils/contexts/theme"; import nextI18nextConfig from "../../next-i18next.config"; -// eslint-disable-next-line no-unused-vars -const tailwindSafelist = [ - // TODO: remove pending https://github.com/tailwindlabs/tailwindcss/pull/17147 - "backdrop-blur", - "backdrop-blur-xs", - "backdrop-blur-sm", - "backdrop-blur-md", - "backdrop-blur-xl", - "backdrop-saturate-0", - "backdrop-saturate-50", - "backdrop-saturate-100", - "backdrop-saturate-150", - "backdrop-saturate-200", - "backdrop-brightness-0", - "backdrop-brightness-50", - "backdrop-brightness-75", - "backdrop-brightness-90", - "backdrop-brightness-95", - "backdrop-brightness-100", - "backdrop-brightness-105", - "backdrop-brightness-110", - "backdrop-brightness-125", - "backdrop-brightness-150", - "backdrop-brightness-200", - "grid-cols-1", - "md:grid-cols-1", - "md:grid-cols-2", - "lg:grid-cols-1", - "lg:grid-cols-2", - "lg:grid-cols-3", - "lg:grid-cols-4", - "lg:grid-cols-5", - "lg:grid-cols-6", - "lg:grid-cols-7", - "lg:grid-cols-8", - // for status - "bg-white", - "bg-black", - "dark:bg-white", - "bg-orange-400", - "dark:bg-orange-400", - // maxGroupColumns - "3xl:basis-1/5", - "3xl:basis-1/6", - "3xl:basis-1/7", - "3xl:basis-1/8", - // yep - "h-0 h-1 h-2 h-3 h-4 h-5 h-6 h-7 h-8 h-9 h-10 h-11 h-12 h-13 h-14 h-15 h-16 h-17 h-18 h-19 h-20 h-21 h-22 h-23 h-24 h-25 h-26 h-27 h-28 h-29 h-30 h-31 h-32 h-33 h-34 h-35 h-36 h-37 h-38 h-39 h-40 h-41 h-42 h-43 h-44 h-45 h-46 h-47 h-48 h-49 h-50 h-51 h-52 h-53 h-54 h-55 h-56 h-57 h-58 h-59 h-60 h-61 h-62 h-63 h-64 h-65 h-66 h-67 h-68 h-69 h-70 h-71 h-72 h-73 h-74 h-75 h-76 h-77 h-78 h-79 h-80 h-81 h-82 h-83 h-84 h-85 h-86 h-87 h-88 h-89 h-90 h-91 h-92 h-93 h-94 h-95 h-96", - "sm:h-0 sm:h-1 sm:h-2 sm:h-3 sm:h-4 sm:h-5 sm:h-6 sm:h-7 sm:h-8 sm:h-9 sm:h-10 sm:h-11 sm:h-12 sm:h-13 sm:h-14 sm:h-15 sm:h-16 sm:h-17 sm:h-18 sm:h-19 sm:h-20 sm:h-21 sm:h-22 sm:h-23 sm:h-24 sm:h-25 sm:h-26 sm:h-27 sm:h-28 sm:h-29 sm:h-30 sm:h-31 sm:h-32 sm:h-33 sm:h-34 sm:h-35 sm:h-36 sm:h-37 sm:h-38 sm:h-39 sm:h-40 sm:h-41 sm:h-42 sm:h-43 sm:h-44 sm:h-45 sm:h-46 sm:h-47 sm:h-48 sm:h-49 sm:h-50 sm:h-51 sm:h-52 sm:h-53 sm:h-54 sm:h-55 sm:h-56 sm:h-57 sm:h-58 sm:h-59 sm:h-60 sm:h-61 sm:h-62 sm:h-63 sm:h-64 sm:h-65 sm:h-66 sm:h-67 sm:h-68 sm:h-69 sm:h-70 sm:h-71 sm:h-72 sm:h-73 sm:h-74 sm:h-75 sm:h-76 sm:h-77 sm:h-78 sm:h-79 sm:h-80 sm:h-81 sm:h-82 sm:h-83 sm:h-84 sm:h-85 sm:h-86 sm:h-87 sm:h-88 sm:h-89 sm:h-90 sm:h-91 sm:h-92 sm:h-93 sm:h-94 sm:h-95 sm:h-96", - "md:h-0 md:h-1 md:h-2 md:h-3 md:h-4 md:h-5 md:h-6 md:h-7 md:h-8 md:h-9 md:h-10 md:h-11 md:h-12 md:h-13 md:h-14 md:h-15 md:h-16 md:h-17 md:h-18 md:h-19 md:h-20 md:h-21 md:h-22 md:h-23 md:h-24 md:h-25 md:h-26 md:h-27 md:h-28 md:h-29 md:h-30 md:h-31 md:h-32 md:h-33 md:h-34 md:h-35 md:h-36 md:h-37 md:h-38 md:h-39 md:h-40 md:h-41 md:h-42 md:h-43 md:h-44 md:h-45 md:h-46 md:h-47 md:h-48 md:h-49 md:h-50 md:h-51 md:h-52 md:h-53 md:h-54 md:h-55 md:h-56 md:h-57 md:h-58 md:h-59 md:h-60 md:h-61 md:h-62 md:h-63 md:h-64 md:h-65 md:h-66 md:h-67 md:h-68 md:h-69 md:h-70 md:h-71 md:h-72 md:h-73 md:h-74 md:h-75 md:h-76 md:h-77 md:h-78 md:h-79 md:h-80 md:h-81 md:h-82 md:h-83 md:h-84 md:h-85 md:h-86 md:h-87 md:h-88 md:h-89 md:h-90 md:h-91 md:h-92 md:h-93 md:h-94 md:h-95 md:h-96", - "lg:h-0 lg:h-1 lg:h-2 lg:h-3 lg:h-4 lg:h-5 lg:h-6 lg:h-7 lg:h-8 lg:h-9 lg:h-10 lg:h-11 lg:h-12 lg:h-13 lg:h-14 lg:h-15 lg:h-16 lg:h-17 lg:h-18 lg:h-19 lg:h-20 lg:h-21 lg:h-22 lg:h-23 lg:h-24 lg:h-25 lg:h-26 lg:h-27 lg:h-28 lg:h-29 lg:h-30 lg:h-31 lg:h-32 lg:h-33 lg:h-34 lg:h-35 lg:h-36 lg:h-37 lg:h-38 lg:h-39 lg:h-40 lg:h-41 lg:h-42 lg:h-43 lg:h-44 lg:h-45 lg:h-46 lg:h-47 lg:h-48 lg:h-49 lg:h-50 lg:h-51 lg:h-52 lg:h-53 lg:h-54 lg:h-55 lg:h-56 lg:h-57 lg:h-58 lg:h-59 lg:h-60 lg:h-61 lg:h-62 lg:h-63 lg:h-64 lg:h-65 lg:h-66 lg:h-67 lg:h-68 lg:h-69 lg:h-70 lg:h-71 lg:h-72 lg:h-73 lg:h-74 lg:h-75 lg:h-76 lg:h-77 lg:h-78 lg:h-79 lg:h-80 lg:h-81 lg:h-82 lg:h-83 lg:h-84 lg:h-85 lg:h-86 lg:h-87 lg:h-88 lg:h-89 lg:h-90 lg:h-91 lg:h-92 lg:h-93 lg:h-94 lg:h-95 lg:h-96", - "xl:h-0 xl:h-1 xl:h-2 xl:h-3 xl:h-4 xl:h-5 xl:h-6 xl:h-7 xl:h-8 xl:h-9 xl:h-10 xl:h-11 xl:h-12 xl:h-13 xl:h-14 xl:h-15 xl:h-16 xl:h-17 xl:h-18 xl:h-19 xl:h-20 xl:h-21 xl:h-22 xl:h-23 xl:h-24 xl:h-25 xl:h-26 xl:h-27 xl:h-28 xl:h-29 xl:h-30 xl:h-31 xl:h-32 xl:h-33 xl:h-34 xl:h-35 xl:h-36 xl:h-37 xl:h-38 xl:h-39 xl:h-40 xl:h-41 xl:h-42 xl:h-43 xl:h-44 xl:h-45 xl:h-46 xl:h-47 xl:h-48 xl:h-49 xl:h-50 xl:h-51 xl:h-52 xl:h-53 xl:h-54 xl:h-55 xl:h-56 xl:h-57 xl:h-58 xl:h-59 xl:h-60 xl:h-61 xl:h-62 xl:h-63 xl:h-64 xl:h-65 xl:h-66 xl:h-67 xl:h-68 xl:h-69 xl:h-70 xl:h-71 xl:h-72 xl:h-73 xl:h-74 xl:h-75 xl:h-76 xl:h-77 xl:h-78 xl:h-79 xl:h-80 xl:h-81 xl:h-82 xl:h-83 xl:h-84 xl:h-85 xl:h-86 xl:h-87 xl:h-88 xl:h-89 xl:h-90 xl:h-91 xl:h-92 xl:h-93 xl:h-94 xl:h-95 xl:h-96", - "2xl:h-0 2xl:h-1 2xl:h-2 2xl:h-3 2xl:h-4 2xl:h-5 2xl:h-6 2xl:h-7 2xl:h-8 2xl:h-9 2xl:h-10 2xl:h-11 2xl:h-12 2xl:h-13 2xl:h-14 2xl:h-15 2xl:h-16 2xl:h-17 2xl:h-18 2xl:h-19 2xl:h-20 2xl:h-21 2xl:h-22 2xl:h-23 2xl:h-24 2xl:h-25 2xl:h-26 2xl:h-27 2xl:h-28 2xl:h-29 2xl:h-30 2xl:h-31 2xl:h-32 2xl:h-33 2xl:h-34 2xl:h-35 2xl:h-36 2xl:h-37 2xl:h-38 2xl:h-39 2xl:h-40 2xl:h-41 2xl:h-42 2xl:h-43 2xl:h-44 2xl:h-45 2xl:h-46 2xl:h-47 2xl:h-48 2xl:h-49 2xl:h-50 2xl:h-51 2xl:h-52 2xl:h-53 2xl:h-54 2xl:h-55 2xl:h-56 2xl:h-57 2xl:h-58 2xl:h-59 2xl:h-60 2xl:h-61 2xl:h-62 2xl:h-63 2xl:h-64 2xl:h-65 2xl:h-66 2xl:h-67 2xl:h-68 2xl:h-69 2xl:h-70 2xl:h-71 2xl:h-72 2xl:h-73 2xl:h-74 2xl:h-75 2xl:h-76 2xl:h-77 2xl:h-78 2xl:h-79 2xl:h-80 2xl:h-81 2xl:h-82 2xl:h-83 2xl:h-84 2xl:h-85 2xl:h-86 2xl:h-87 2xl:h-88 2xl:h-89 2xl:h-90 2xl:h-91 2xl:h-92 2xl:h-93 2xl:h-94 2xl:h-95 2xl:h-96", -]; - function MyApp({ Component, pageProps }) { return ( { - podNames.add(pod.metadata.name); pod.spec.containers.forEach((container) => { if (container?.resources?.limits?.cpu) { cpuLimit += parseCpu(container?.resources?.limits?.cpu); @@ -68,32 +66,40 @@ export default async function handler(req, res) { }); }); - const namespaceMetrics = await metricsApi - .getPodMetrics(namespace) - .then((response) => response.items) - .catch((err) => { - // 404 generally means that the metrics have not been populated yet - if (err.statusCode !== 404) { - logger.error("Error getting pod metrics: %d %s %s", err.statusCode, err.body, err.response); + const podStatsList = await Promise.all( + pods.map(async (pod) => { + let depMem = 0; + let depCpu = 0; + const podMetrics = await metricsApi + .getPodMetrics(namespace, pod.metadata.name) + .then((response) => response) + .catch((err) => { + // 404 generally means that the metrics have not been populated yet + if (err.statusCode !== 404) { + logger.error("Error getting pod metrics: %d %s %s", err.statusCode, err.body, err.response); + } + return null; + }); + if (podMetrics) { + podMetrics.containers.forEach((container) => { + depMem += parseMemory(container.usage.memory); + depCpu += parseCpu(container.usage.cpu); + }); } - return null; - }); - + return { + mem: depMem, + cpu: depCpu, + }; + }), + ); const stats = { mem: 0, cpu: 0, }; - - if (namespaceMetrics) { - const podMetrics = namespaceMetrics.filter((item) => podNames.has(item.metadata.name)); - podMetrics.forEach((metrics) => { - metrics.containers.forEach((container) => { - stats.mem += parseMemory(container.usage.memory); - stats.cpu += parseCpu(container.usage.cpu); - }); - }); - } - + podStatsList.forEach((podStat) => { + stats.mem += podStat.mem; + stats.cpu += podStat.cpu; + }); stats.cpuLimit = cpuLimit; stats.memLimit = memLimit; stats.cpuUsage = cpuLimit ? 100 * (stats.cpu / cpuLimit) : 0; diff --git a/src/pages/api/releases.js b/src/pages/api/releases.js index 01d0e8a5..f15930c2 100644 --- a/src/pages/api/releases.js +++ b/src/pages/api/releases.js @@ -1,12 +1,12 @@ +import cachedFetch from "utils/proxy/cached-fetch"; import createLogger from "utils/logger"; -import { cachedRequest } from "utils/proxy/http"; const logger = createLogger("releases"); export default async function handler(req, res) { const releasesURL = "https://api.github.com/repos/gethomepage/homepage/releases"; try { - return res.send(await cachedRequest(releasesURL, 5)); + return res.send(await cachedFetch(releasesURL, 5)); } catch (e) { logger.error(`Error checking GitHub releases: ${e}`); return res.send([]); diff --git a/src/pages/api/search/searchSuggestion.js b/src/pages/api/search/searchSuggestion.js index 13f3f301..7d5d250b 100644 --- a/src/pages/api/search/searchSuggestion.js +++ b/src/pages/api/search/searchSuggestion.js @@ -1,8 +1,7 @@ import { searchProviders } from "components/widgets/search/search"; -import { getSettings } from "utils/config/config"; +import cachedFetch from "utils/proxy/cached-fetch"; import { widgetsFromConfig } from "utils/config/widget-helpers"; -import { cachedRequest } from "utils/proxy/http"; export default async function handler(req, res) { const { query, providerName } = req.query; @@ -13,21 +12,13 @@ export default async function handler(req, res) { const widgets = await widgetsFromConfig(); const searchWidget = widgets.find((w) => w.type === "search"); - if (searchWidget) { - provider.url = searchWidget.options.url; - provider.suggestionUrl = searchWidget.options.suggestionUrl; - } else { - const settings = getSettings(); - if (settings.quicklaunch && settings.quicklaunch.provider === "custom") { - provider.url = settings.quicklaunch.url; - provider.suggestionUrl = settings.quicklaunch.suggestionUrl; - } - } + provider.url = searchWidget.options.url; + provider.suggestionUrl = searchWidget.options.suggestionUrl; } if (!provider.suggestionUrl) { return res.json([query, []]); // Responde with the same array format but with no suggestions. } - return res.send(await cachedRequest(`${provider.suggestionUrl}${encodeURIComponent(query)}`, 5, "Mozilla/5.0")); + return res.send(await cachedFetch(`${provider.suggestionUrl}${encodeURIComponent(query)}`, 5, "Mozilla/5.0")); } diff --git a/src/pages/api/services/proxy.js b/src/pages/api/services/proxy.js index 0cdf806f..3f8adc88 100644 --- a/src/pages/api/services/proxy.js +++ b/src/pages/api/services/proxy.js @@ -1,9 +1,9 @@ -import getServiceWidget from "utils/config/service-helpers"; -import createLogger from "utils/logger"; import { formatApiCall } from "utils/proxy/api-helpers"; +import createLogger from "utils/logger"; import genericProxyHandler from "utils/proxy/handlers/generic"; -import calendarProxyHandler from "widgets/calendar/proxy"; import widgets from "widgets/widgets"; +import calendarProxyHandler from "widgets/calendar/proxy"; +import getServiceWidget from "utils/config/service-helpers"; const logger = createLogger("servicesProxy"); diff --git a/src/pages/api/widgets/glances.js b/src/pages/api/widgets/glances.js index f0a3a7d9..199c133e 100644 --- a/src/pages/api/widgets/glances.js +++ b/src/pages/api/widgets/glances.js @@ -1,6 +1,6 @@ -import { getPrivateWidgetOptions } from "utils/config/widget-helpers"; -import createLogger from "utils/logger"; import { httpProxy } from "utils/proxy/http"; +import createLogger from "utils/logger"; +import { getPrivateWidgetOptions } from "utils/config/widget-helpers"; const logger = createLogger("glances"); diff --git a/src/pages/api/widgets/longhorn.js b/src/pages/api/widgets/longhorn.js index c45086bc..9126e937 100644 --- a/src/pages/api/widgets/longhorn.js +++ b/src/pages/api/widgets/longhorn.js @@ -1,6 +1,6 @@ -import { getSettings } from "../../../utils/config/config"; -import createLogger from "../../../utils/logger"; import { httpProxy } from "../../../utils/proxy/http"; +import createLogger from "../../../utils/logger"; +import { getSettings } from "../../../utils/config/config"; const logger = createLogger("longhorn"); diff --git a/src/pages/api/widgets/openmeteo.js b/src/pages/api/widgets/openmeteo.js index 28f2e4f0..e63847b4 100644 --- a/src/pages/api/widgets/openmeteo.js +++ b/src/pages/api/widgets/openmeteo.js @@ -1,9 +1,9 @@ -import { cachedRequest } from "utils/proxy/http"; +import cachedFetch from "utils/proxy/cached-fetch"; export default async function handler(req, res) { const { latitude, longitude, units, cache, timezone } = req.query; const degrees = units === "metric" ? "celsius" : "fahrenheit"; const timezeone = timezone ?? "auto"; const apiUrl = `https://api.open-meteo.com/v1/forecast?latitude=${latitude}&longitude=${longitude}&daily=sunrise,sunset¤t_weather=true&temperature_unit=${degrees}&timezone=${timezeone}`; - return res.send(await cachedRequest(apiUrl, cache)); + return res.send(await cachedFetch(apiUrl, cache)); } diff --git a/src/pages/api/widgets/openweathermap.js b/src/pages/api/widgets/openweathermap.js index 993ee1f5..089ee804 100644 --- a/src/pages/api/widgets/openweathermap.js +++ b/src/pages/api/widgets/openweathermap.js @@ -1,6 +1,6 @@ +import cachedFetch from "utils/proxy/cached-fetch"; import { getSettings } from "utils/config/config"; import { getPrivateWidgetOptions } from "utils/config/widget-helpers"; -import { cachedRequest } from "utils/proxy/http"; export default async function handler(req, res) { const { latitude, longitude, units, provider, cache, lang, index } = req.query; @@ -26,5 +26,5 @@ export default async function handler(req, res) { const apiUrl = `https://api.openweathermap.org/data/2.5/weather?lat=${latitude}&lon=${longitude}&appid=${apiKey}&units=${units}&lang=${lang}`; - return res.send(await cachedRequest(apiUrl, cache)); + return res.send(await cachedFetch(apiUrl, cache)); } diff --git a/src/pages/api/widgets/stocks.js b/src/pages/api/widgets/stocks.js index 77881ad7..3941a773 100644 --- a/src/pages/api/widgets/stocks.js +++ b/src/pages/api/widgets/stocks.js @@ -1,6 +1,6 @@ +import cachedFetch from "utils/proxy/cached-fetch"; import { getSettings } from "utils/config/config"; import createLogger from "utils/logger"; -import { cachedRequest } from "utils/proxy/http"; const logger = createLogger("stocks"); @@ -60,7 +60,7 @@ export default async function handler(req, res) { const apiUrl = `https://finnhub.io/api/v1/quote?symbol=${ticker}&token=${apiKey}`; // Finnhub free accounts allow up to 60 calls/minute // https://finnhub.io/pricing - const { c, dp } = await cachedRequest(apiUrl, cache || 1); + const { c, dp } = await cachedFetch(apiUrl, cache || 1); logger.debug("Finnhub API response for %s: %o", ticker, { c, dp }); // API sometimes returns 200, but values returned are `null` diff --git a/src/pages/api/widgets/weather.js b/src/pages/api/widgets/weather.js index 78418f74..9d0451ce 100644 --- a/src/pages/api/widgets/weather.js +++ b/src/pages/api/widgets/weather.js @@ -1,6 +1,6 @@ +import cachedFetch from "utils/proxy/cached-fetch"; import { getSettings } from "utils/config/config"; import { getPrivateWidgetOptions } from "utils/config/widget-helpers"; -import { cachedRequest } from "utils/proxy/http"; export default async function handler(req, res) { const { latitude, longitude, provider, cache, lang, index } = req.query; @@ -26,5 +26,5 @@ export default async function handler(req, res) { const apiUrl = `http://api.weatherapi.com/v1/current.json?q=${latitude},${longitude}&key=${apiKey}&lang=${lang}`; - return res.send(await cachedRequest(apiUrl, cache)); + return res.send(await cachedFetch(apiUrl, cache)); } diff --git a/src/pages/index.jsx b/src/pages/index.jsx index 95c19dd3..2af3b1c1 100644 --- a/src/pages/index.jsx +++ b/src/pages/index.jsx @@ -1,33 +1,33 @@ /* eslint-disable react/no-array-index-key */ -import classNames from "classnames"; -import BookmarksGroup from "components/bookmarks/group"; -import ErrorBoundary from "components/errorboundry"; -import QuickLaunch from "components/quicklaunch"; -import ServicesGroup from "components/services/group"; -import Tab, { slugifyAndEncode } from "components/tab"; -import Revalidate from "components/toggles/revalidate"; -import Widget from "components/widgets/widget"; -import { useTranslation } from "next-i18next"; -import { serverSideTranslations } from "next-i18next/serverSideTranslations"; -import dynamic from "next/dynamic"; +import useSWR, { unstable_serialize as unstableSerialize, SWRConfig } from "swr"; import Head from "next/head"; -import { useRouter } from "next/router"; import Script from "next/script"; -import { useContext, useEffect, useMemo, useState } from "react"; +import dynamic from "next/dynamic"; +import classNames from "classnames"; +import { useTranslation } from "next-i18next"; +import { useEffect, useContext, useState, useMemo } from "react"; import { BiError } from "react-icons/bi"; -import useSWR, { SWRConfig, unstable_serialize as unstableSerialize } from "swr"; +import { serverSideTranslations } from "next-i18next/serverSideTranslations"; +import { useRouter } from "next/router"; +import Tab, { slugifyAndEncode } from "components/tab"; +import ServicesGroup from "components/services/group"; +import BookmarksGroup from "components/bookmarks/group"; +import Widget from "components/widgets/widget"; +import Revalidate from "components/toggles/revalidate"; import { ColorContext } from "utils/contexts/color"; +import { ThemeContext } from "utils/contexts/theme"; import { SettingsContext } from "utils/contexts/settings"; import { TabContext } from "utils/contexts/tab"; -import { ThemeContext } from "utils/contexts/theme"; +import ErrorBoundary from "components/errorboundry"; +import QuickLaunch from "components/quicklaunch"; import { fetchWithIdentity, readIdentitySettings } from "utils/identity/identity-helpers"; import NullIdentityProvider from "utils/identity/null"; import { bookmarksResponse, servicesResponse, widgetsResponse } from "utils/config/api-response"; +import themes from "utils/styles/themes"; import { getSettings } from "utils/config/config"; import useWindowFocus from "utils/hooks/window-focus"; import createLogger from "utils/logger"; -import themes from "utils/styles/themes"; const ThemeToggle = dynamic(() => import("components/toggles/theme"), { ssr: false, @@ -330,7 +330,7 @@ function Home({ initialSettings, identityContext }) { key={group.name} group={group} layout={settings.layout?.[group.name]} - maxGroupColumns={settings.fiveColumns ? 5 : settings.maxGroupColumns} + fiveColumns={settings.fiveColumns} disableCollapse={settings.disableCollapse} useEqualHeights={settings.useEqualHeights} groupsInitiallyCollapsed={settings.groupsInitiallyCollapsed} @@ -341,7 +341,6 @@ function Home({ initialSettings, identityContext }) { bookmarks={group} layout={settings.layout?.[group.name]} disableCollapse={settings.disableCollapse} - maxGroupColumns={settings.maxBookmarkGroupColumns ?? settings.maxGroupColumns} groupsInitiallyCollapsed={settings.groupsInitiallyCollapsed} /> ), @@ -355,7 +354,7 @@ function Home({ initialSettings, identityContext }) { key={group.name} group={group} layout={settings.layout?.[group.name]} - maxGroupColumns={settings.fiveColumns ? 5 : settings.maxGroupColumns} + fiveColumns={settings.fiveColumns} disableCollapse={settings.disableCollapse} groupsInitiallyCollapsed={settings.groupsInitiallyCollapsed} /> @@ -370,7 +369,6 @@ function Home({ initialSettings, identityContext }) { bookmarks={group} layout={settings.layout?.[group.name]} disableCollapse={settings.disableCollapse} - maxGroupColumns={settings.maxBookmarkGroupColumns ?? settings.maxGroupColumns} groupsInitiallyCollapsed={settings.groupsInitiallyCollapsed} bookmarksStyle={settings.bookmarksStyle} /> @@ -386,8 +384,6 @@ function Home({ initialSettings, identityContext }) { bookmarks, settings.layout, settings.fiveColumns, - settings.maxGroupColumns, - settings.maxBookmarkGroupColumns, settings.disableCollapse, settings.useEqualHeights, settings.cardBlur, @@ -428,12 +424,7 @@ function Home({ initialSettings, identityContext }) {