Compare commits

..

22 Commits

Author SHA1 Message Date
djeinstine
af75f33e62 update kubernetes.md with gateway-api configuration. 2024-11-13 10:35:07 +00:00
djeinstine
c32f1f1d59 Merge branch 'gethomepage:dev' into integration 2024-11-13 10:33:10 +01:00
djeinstine
11c6f587ab Fix lint issues 2024-11-13 09:11:05 +00:00
djeinstine
a44e6a8f4b Fix null config issue 2024-11-13 09:08:27 +00:00
djeinstine
9b06761964 Fix linting issues 2024-11-13 09:03:39 +00:00
djeinstine
01e30f2ecb Fix linting issues 2024-11-13 08:17:41 +00:00
djeinstine
9326155ab8 Merge branch 'gethomepage:dev' into integration 2024-11-12 20:07:41 +01:00
djeinstine
11c3127aad Merge branch 'gethomepage:dev' into integration 2024-11-11 10:48:31 +01:00
djeinstine
94a934ec65 Applied pnpm prettier rules to code. 2024-11-11 09:31:18 +00:00
djeinstine
ac997ea841 Applied ESLint rules to code. Plus minor rewrite. 2024-11-11 09:29:47 +00:00
djeinstine
60eee26ac4 Add gateway api to docs. And ESLint rules. 2024-11-10 20:21:00 +00:00
djeinstine
c584d5d020 revert docker publish 2024-11-09 20:04:16 +00:00
djeinstine
3d462e5958 trigger docker action 2024-11-09 19:34:45 +00:00
djeinstine
bd1c11a716 trigger docker publish 2024-11-09 19:33:02 +00:00
djeinstine
bbb1ef5a55 Applied prettier to code 2024-11-09 19:30:09 +00:00
djeinstine
cb2c7b9147 fix linter error 2024-11-08 15:13:06 +00:00
djeinstine
d65cb638be Moved crd checker to kubernetes-routes 2024-11-08 15:08:01 +00:00
djeinstine
9367fd761b getUrlSchema now uses async call 2024-11-08 14:23:57 +00:00
djeinstine
29993dad3a Cleaned comments. 2024-11-07 19:52:39 +00:00
djeinstine
a15b5bd692 First step of integrating gateway-api with homepage. 2024-11-06 11:15:52 +00:00
djeinstine
f7810cb67a Merge remote-tracking branch 'origin/dev' into integration 2024-11-06 09:37:33 +00:00
djeinstine
02e1104452 replaced getKubeConfig with getKubeArguments to be in line with getDockerArguments 2024-10-17 13:56:35 +00:00
373 changed files with 13242 additions and 9398 deletions

3
.babelrc Normal file
View File

@@ -0,0 +1,3 @@
{
"presets": ["next/babel"]
}

View File

@@ -1,9 +1,5 @@
{ {
"extends": [ "extends": ["airbnb", "next/core-web-vitals", "prettier"],
"next/core-web-vitals",
"prettier",
"plugin:react-hooks/recommended"
],
"plugins": ["prettier"], "plugins": ["prettier"],
"rules": { "rules": {
"import/no-cycle": [ "import/no-cycle": [
@@ -31,12 +27,5 @@
"paths": ["src"] "paths": ["src"]
} }
} }
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
} }
} }

View File

@@ -51,14 +51,6 @@ body:
id: troubleshooting id: troubleshooting
attributes: attributes:
label: Troubleshooting label: Troubleshooting
description: Please include output from your [troubleshooting steps](https://gethomepage.dev/more/troubleshooting/#service-widget-errors), if relevant. description: Please include output from your [troubleshooting tests](https://gethomepage.dev/more/troubleshooting/#service-widget-errors), if relevant.
validations: validations:
required: true required: true
- type: markdown
attributes:
value: |
## ⚠️ STOP ⚠️
Before you submit this support request, please ensure you have entered your configuration files and actually followed the steps from the troubleshooting guide linked above, if relevant. The troubleshooting steps often help to solve the problem.
*Please remember that this project is maintained by regular people **just like you**, so if you don't take the time to fill out the requested information, don't expect a reply back.*

View File

@@ -1,20 +1,11 @@
<!--
==== STOP ====================
======== STOP ================
============ STOP ============
================ STOP ========
==================== STOP ====
⚠️ Before opening this pull request please review the guidelines in the checklist below.
If this PR does not meet those guidelines it will not be accepted, and everyone will be sad.
-->
## Proposed change ## Proposed change
<!-- <!--
Please include a summary of the change. Screenshots and/or videos can also be helpful if appropriate. Please include a summary of the change. Screenshots and/or videos can also be helpful if appropriate.
*** Please see the development guidelines for new widgets: https://gethomepage.dev/more/development/#service-widget-guidelines
*** If you do not follow these guidelines your PR will likely be closed without review.
New service widgets should include example(s) of relevant API output as well as updates to the docs for the new widget. New service widgets should include example(s) of relevant API output as well as updates to the docs for the new widget.
--> -->
@@ -28,13 +19,13 @@ What type of change does your PR introduce to Homepage?
- [ ] New service widget - [ ] New service widget
- [ ] Bug fix (non-breaking change which fixes an issue) - [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature or enhancement (non-breaking change which adds functionality) - [ ] New feature (non-breaking change which adds functionality)
- [ ] Documentation only - [ ] Documentation only
- [ ] Other (please explain) - [ ] Other (please explain)
## Checklist: ## Checklist:
- [ ] If applicable, I have added corresponding documentation changes. - [ ] If applicable, I have added corresponding documentation changes.
- [ ] If applicable, I have reviewed the [feature / enhancement](https://gethomepage.dev/more/development/#new-feature-guidelines) and / or [service widget guidelines](https://gethomepage.dev/more/development/#service-widget-guidelines). - [ ] If applicable, I have reviewed the [feature](https://gethomepage.dev/more/development/#new-feature-guidelines) and / or [service widget guidelines](https://gethomepage.dev/more/development/#service-widget-guidelines).
- [ ] I have checked that all code style checks pass using [pre-commit hooks](https://gethomepage.dev/more/development/#code-formatting-with-pre-commit-hooks) and [linting checks](https://gethomepage.dev/more/development/#code-linting). - [ ] I have checked that all code style checks pass using [pre-commit hooks](https://gethomepage.dev/more/development/#code-formatting-with-pre-commit-hooks) and [linting checks](https://gethomepage.dev/more/development/#code-linting).
- [ ] If applicable, I have tested my code for new features & regressions on both mobile & desktop devices, using the latest version of major browsers. - [ ] If applicable, I have tested my code for new features & regressions on both mobile & desktop devices, using the latest version of major browsers.

View File

@@ -26,6 +26,8 @@ on:
merge_group: merge_group:
env: env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo> # github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }} IMAGE_NAME: ${{ github.repository }}
@@ -46,24 +48,6 @@ jobs:
- -
name: Check files name: Check files
uses: pre-commit/action@v3.0.1 uses: pre-commit/action@v3.0.1
-
name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 10
run_install: false
-
name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
-
name: Install dependencies
run: pnpm install
-
name: Lint frontend
run: pnpm run lint
build: build:
name: Docker Build & Push name: Docker Build & Push
@@ -82,30 +66,42 @@ jobs:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
# Login to Docker Registry # Install the cosign tool except on PR
# https://github.com/sigstore/cosign-installer
- name: Install cosign
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@main
with:
cosign-release: 'v1.13.1' # optional
# Setup QEMU
# https://github.com/marketplace/actions/docker-setup-buildx#with-qemu
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
# Workaround: https://github.com/docker/build-push-action/issues/461
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v3
# This step is being disabled because the runner is on a self-hosted machine
# where the cache will stick between runs.
# - name: Cache Docker layers
# uses: actions/cache@v3
# with:
# path: /tmp/.buildx-cache
# key: ${{ runner.os }}-buildx-${{ github.sha }}
# restore-keys: |
# ${{ runner.os }}-buildx-
# Login against a Docker registry except on PR
# https://github.com/docker/login-action # https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }} - name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: ghcr.io registry: ${{ env.REGISTRY }}
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
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 # Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action # https://github.com/docker/metadata-action
@@ -113,9 +109,7 @@ jobs:
id: meta id: meta
uses: docker/metadata-action@v5 uses: docker/metadata-action@v5
with: with:
images: | images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
${{ env.IMAGE_NAME }}
ghcr.io/${{ env.IMAGE_NAME }}
flavor: | flavor: |
latest=auto latest=auto
@@ -126,7 +120,7 @@ jobs:
uses: docker/build-push-action@v6 uses: docker/build-push-action@v6
with: with:
context: . context: .
push: ${{ github.event_name != 'pull_request' }} push: ${{ github.event_name != 'pull_request' && !(github.event_name == 'push' && startsWith(github.ref, 'refs/heads/feature')) }}
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
build-args: | build-args: |
@@ -135,10 +129,23 @@ jobs:
REVISION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }} REVISION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
# https://github.com/docker/setup-qemu-action#about # 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,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6
cache-from: type=local,src=/tmp/.buildx-cache cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
# Sign the resulting Docker image digest except on PRs.
# This will only write to the public Rekor transparency log when the Docker
# repository is public to avoid leaking data. If you would like to publish
# transparency data even for private images, pass --force to cosign below.
# https://github.com/sigstore/cosign
# - name: Sign the published Docker image
# if: ${{ github.event_name != 'pull_request' }}
# env:
# COSIGN_EXPERIMENTAL: "true"
# # This step uses the identity token to provision an ephemeral certificate
# # against the sigstore community Fulcio instance.
# run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign {}@${{ steps.build-and-push.outputs.digest }}
# Temp fix # Temp fix
# https://github.com/docker/build-push-action/issues/252 # https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896 # https://github.com/moby/buildkit/issues/1896

View File

@@ -5,6 +5,8 @@ on:
types: [created, edited] types: [created, edited]
pull_request_review_comment: pull_request_review_comment:
types: [created, edited] types: [created, edited]
schedule:
- cron: '0 0 * * *'
permissions: permissions:
actions: write actions: write

View File

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

View File

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

View File

@@ -1,5 +1,7 @@
# syntax = docker/dockerfile:latest
# Install dependencies only when needed # Install dependencies only when needed
FROM docker.io/node:22-alpine AS deps FROM docker.io/node:18-alpine AS deps
WORKDIR /app WORKDIR /app
@@ -15,11 +17,9 @@ RUN --mount=type=cache,id=pnpm-store,target=/root/.local/share/pnpm/store pnpm f
RUN --mount=type=cache,id=pnpm-store,target=/root/.local/share/pnpm/store pnpm install -r --offline RUN --mount=type=cache,id=pnpm-store,target=/root/.local/share/pnpm/store pnpm install -r --offline
# Rebuild the source code only when needed # Rebuild the source code only when needed
FROM docker.io/node:22-alpine AS builder FROM docker.io/node:18-alpine AS builder
WORKDIR /app WORKDIR /app
RUN mkdir config
ARG BUILDTIME ARG BUILDTIME
ARG VERSION ARG VERSION
ARG REVISION ARG REVISION
@@ -28,12 +28,12 @@ COPY --link --from=deps /app/node_modules ./node_modules/
COPY . . COPY . .
SHELL ["/bin/ash", "-xeo", "pipefail", "-c"] SHELL ["/bin/ash", "-xeo", "pipefail", "-c"]
RUN npm install -g pnpm \ RUN npm run telemetry \
&& pnpm run telemetry \ && mkdir config \
&& NEXT_PUBLIC_BUILDTIME=$BUILDTIME NEXT_PUBLIC_VERSION=$VERSION NEXT_PUBLIC_REVISION=$REVISION pnpm run build && NEXT_PUBLIC_BUILDTIME=$BUILDTIME NEXT_PUBLIC_VERSION=$VERSION NEXT_PUBLIC_REVISION=$REVISION npm run build
# Production image, copy all the files and run next # Production image, copy all the files and run next
FROM docker.io/node:22-alpine AS runner FROM docker.io/node:18-alpine AS runner
LABEL org.opencontainers.image.title "Homepage" 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.description "A self-hosted services landing page, with docker and service integrations."
LABEL org.opencontainers.image.url="https://github.com/gethomepage/homepage" LABEL org.opencontainers.image.url="https://github.com/gethomepage/homepage"
@@ -41,7 +41,7 @@ LABEL org.opencontainers.image.documentation='https://github.com/gethomepage/hom
LABEL org.opencontainers.image.source='https://github.com/gethomepage/homepage' LABEL org.opencontainers.image.source='https://github.com/gethomepage/homepage'
LABEL org.opencontainers.image.licenses='Apache-2.0' LABEL org.opencontainers.image.licenses='Apache-2.0'
ENV NODE_ENV=production ENV NODE_ENV production
WORKDIR /app WORKDIR /app
@@ -56,8 +56,7 @@ COPY --link --chmod=755 docker-entrypoint.sh /usr/local/bin/
RUN apk add --no-cache su-exec RUN apk add --no-cache su-exec
ENV HOSTNAME=:: ENV PORT 3000
ENV PORT=3000
EXPOSE $PORT EXPOSE $PORT
HEALTHCHECK --interval=10s --timeout=3s --start-period=20s \ HEALTHCHECK --interval=10s --timeout=3s --start-period=20s \

View File

@@ -10,7 +10,7 @@ RUN <<EOF
apk add libc6-compat apk add libc6-compat
apk add --virtual .gyp python3 make g++ apk add --virtual .gyp python3 make g++
npm install -g pnpm npm install -g pnpm
pnpm install -g next npm install -g next
EOF EOF
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 fetch | grep -v "cross-device link not permitted\|Falling back to copying packages from store"

View File

@@ -38,7 +38,7 @@ With features like quick search, bookmarks, weather support, a wide range of int
- **Fast** - The site is statically generated at build time for instant load times. - **Fast** - The site is statically generated at build time for instant load times.
- **Secure** - All API requests to backend services are proxied, keeping your API keys hidden. Constantly reviewed for security by the community. - **Secure** - All API requests to backend services are proxied, keeping your API keys hidden. Constantly reviewed for security by the community.
- **For Everyone** - Images built for AMD64, ARM64. - **For Everyone** - Images built for AMD64, ARM64, ARMv7, and ARMv6.
- **Full i18n** - Support for over 40 languages. - **Full i18n** - Support for over 40 languages.
- **Service & Web Bookmarks** - Add custom links to the homepage. - **Service & Web Bookmarks** - Add custom links to the homepage.
- **Docker Integration** - Container status and stats. Automatic service discovery via labels. - **Docker Integration** - Container status and stats. Automatic service discovery via labels.
@@ -52,7 +52,7 @@ Homepage has built-in support for Docker, and can automatically discover and add
## Service Widgets ## Service Widgets
Homepage also has support for hundreds of 3rd-party services, including all popular \*arr apps, and most popular self-hosted apps. Some examples include: Radarr, Sonarr, Lidarr, Bazarr, Ombi, Tautulli, Plex, Jellyfin, Emby, Transmission, qBittorrent, Deluge, Jackett, NZBGet, SABnzbd, etc. As well as service integrations, Homepage also has a number of information providers, sourcing information from a variety of external 3rd-party APIs. See the [Service](https://gethomepage.dev/widgets/) page for more information. Homepage also has support for over 100 3rd party services, including all popular starr apps, and most popular self-hosted apps. Some examples include: Radarr, Sonarr, Lidarr, Bazarr, Ombi, Tautulli, Plex, Jellyfin, Emby, Transmission, qBittorrent, Deluge, Jackett, NZBGet, SABnzbd, etc. As well as service integrations, Homepage also has a number of information providers, sourcing information from a variety of external 3rd party APIs. See the [Service](https://gethomepage.dev/widgets/) page for more information.
## Information Widgets ## Information Widgets
@@ -80,7 +80,6 @@ services:
image: ghcr.io/gethomepage/homepage:latest image: ghcr.io/gethomepage/homepage:latest
container_name: homepage container_name: homepage
environment: environment:
HOMEPAGE_ALLOWED_HOSTS: gethomepage.dev # required, may need port
PUID: 1000 # optional, your user id PUID: 1000 # optional, your user id
PGID: 1000 # optional, your group id PGID: 1000 # optional, your group id
ports: ports:
@@ -95,7 +94,6 @@ or docker run:
```bash ```bash
docker run --name homepage \ docker run --name homepage \
-e HOMEPAGE_ALLOWED_HOSTS=gethomepage.dev \
-e PUID=1000 \ -e PUID=1000 \
-e PGID=1000 \ -e PGID=1000 \
-p 3000:3000 \ -p 3000:3000 \
@@ -113,7 +111,7 @@ First, clone the repository:
git clone https://github.com/gethomepage/homepage.git git clone https://github.com/gethomepage/homepage.git
``` ```
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 ```bash
pnpm install pnpm install

View File

@@ -153,18 +153,6 @@ labels:
- homepage.widget.fields=["field1","field2"] # optional - homepage.widget.fields=["field1","field2"] # optional
``` ```
Multiple widgets can be specified by incrementing the index, e.g.
```yaml
labels: ...
- homepage.widgets[0].type=emby
- homepage.widgets[0].url=http://emby.home
- homepage.widgets[0].key=yourembyapikeyhere
- homepage.widgets[1].type=uptimekuma
- homepage.widgets[1].url=http://uptimekuma.home
- homepage.widgets[1].slug=youreventslughere
```
You can add specify fields for e.g. the [CustomAPI](../widgets/services/customapi.md) widget by using array-style dot notation: You can add specify fields for e.g. the [CustomAPI](../widgets/services/customapi.md) widget by using array-style dot notation:
```yaml ```yaml

View File

@@ -1,24 +0,0 @@
---
title: Information Widgets
description: Homepage info widgets.
---
Information widgets are widgets that provide information about your system or environment and are displayed at the top of the homepage. You can find a list of all available info widgets under the [Info Widgets](../widgets/info/index.md) section.
Info widgets are defined in the widgets.yaml
Each widget has its own configuration options, which are detailed in the widget's documentation.
## Layout
Info widgets are displayed in the order they are defined in the `widgets.yaml` file. You can change the order by moving the widgets around in the file. However, some widgets (weather, search and datetime) are aligned to the right side of the screen which can affect the layout of the widgets.
## Adding A Link
You can add a link to an info widget such as the logo or text widgets by adding an `href` option, for example:
```yaml
logo:
href: https://example.com
target: _blank # Optional, can be set in settings
```

View File

@@ -20,20 +20,10 @@ The Kubernetes connection is configured in the `kubernetes.yaml` file. There are
mode: default mode: default
``` ```
To configure Kubernetes gateway-api, ingress or ingressRoute service discovery, add one or multiple of the following settings. To enable Kubernetes gateway-api compatibility, add the following setting:
Example settings:
```yaml ```yaml
ingress: true # enable ingress only route: gateway
```
or
```yaml
ingress: true # enable ingress
traefik: true # enable traefik ingressRoute
gateway: true # enable gateway-api
``` ```
## Services ## Services
@@ -117,8 +107,6 @@ If you are using multiple instances of homepage, an `instance` annotation can be
If you have a single service that needs to be shown on multiple specific instances of homepage (but not on all of them), the service can be annotated by multiple `instance.name` annotations, where `name` can be the names of your specific multiple homepage instances. For example, a service that is annotated with `gethomepage.dev/instance.public: ""` and `gethomepage.dev/instance.internal: ""` will be shown on `public` and `internal` homepage instances. If you have a single service that needs to be shown on multiple specific instances of homepage (but not on all of them), the service can be annotated by multiple `instance.name` annotations, where `name` can be the names of your specific multiple homepage instances. For example, a service that is annotated with `gethomepage.dev/instance.public: ""` and `gethomepage.dev/instance.internal: ""` will be shown on `public` and `internal` homepage instances.
Use the `gethomepage.dev/pod-selector` selector to specify the pod used for the health check. For example, a service that is annotated with `gethomepage.dev/pod-selector: app.kubernetes.io/name=deployment` would link to a pod with the label `app.kubernetes.io/name: deployment`.
### Traefik IngressRoute support ### Traefik IngressRoute support
Homepage can also read ingresses defined using the Traefik IngressRoute custom resource definition. Due to the complex nature of Traefik routing rules, it is required for the `gethomepage.dev/href` annotation to be set: Homepage can also read ingresses defined using the Traefik IngressRoute custom resource definition. Due to the complex nature of Traefik routing rules, it is required for the `gethomepage.dev/href` annotation to be set:
@@ -161,7 +149,7 @@ If the `href` attribute is not present, Homepage will ignore the specific Ingres
### Gateway API HttpRoute support ### Gateway API HttpRoute support
Homepage also features automatic service discovery for Gateway API. Service definitions are read by annotating the HttpRoute custom resource definition and are indentical to the Ingress example as defined in [Automatic Service Discovery](#automatic-service-discovery). Homepage also features automatic service discovery for gateway-api. Service definitions are read by annotating the HttpRoute custom resource definition and are indentical to the Ingress example as defined in [Automatic Service Discovery](#automatic-service-discovery).
## Caveats ## Caveats

View File

@@ -0,0 +1,40 @@
---
title: Service Widgets
description: Service Widget Configuration
---
Unless otherwise noted, URLs should not end with a `/` or other API path. Each widget will handle the path on its own.
Each service can have one widget attached to it (often matching the service type, but that's not forced).
In addition to the href of the service, you can also specify the target location in which to open that link. See [Link Target](settings.md#link-target) for more details.
Using Emby as an example, this is how you would attach the Emby service widget.
```yaml
- Emby:
icon: emby.png
href: http://emby.host.or.ip/
description: Movies & TV Shows
widget:
type: emby
url: http://emby.host.or.ip
key: apikeyapikeyapikeyapikeyapikey
```
## Field Visibility
Each widget can optionally provide a list of which fields should be visible via the `fields` widget property. If no fields are specified, then all fields will be displayed. The `fields` property must be a valid YAML array of strings. As an example, here is the entry for Sonarr showing only a couple of fields.
**In all cases a widget will work and display all fields without specifying the `fields` property.**
```yaml
- Sonarr:
icon: sonarr.png
href: http://sonarr.host.or.ip
widget:
type: sonarr
fields: ["wanted", "queued"]
url: http://sonarr.host.or.ip
key: apikeyapikeyapikeyapikeyapikey
```

View File

@@ -21,23 +21,6 @@ Groups are defined as top-level array entries.
<img width="1038" alt="Service Groups" src="https://user-images.githubusercontent.com/82196/187040754-28065242-4534-4409-881c-93d1921c6141.png"> <img width="1038" alt="Service Groups" src="https://user-images.githubusercontent.com/82196/187040754-28065242-4534-4409-881c-93d1921c6141.png">
### Nested Groups
Groups can be nested by using the same format as the top-level groups.
```yaml
- Group A:
- Service A:
href: http://localhost/
- Group B:
- Service B:
href: http://localhost/
- Service C:
href: http://localhost/
```
## Services ## Services
Services are defined as array entries on groups, Services are defined as array entries on groups,
@@ -60,64 +43,6 @@ Services are defined as array entries on groups,
<img width="1038" alt="Service Services" src="https://user-images.githubusercontent.com/82196/187040763-038023a2-8bee-4d87-b5cc-13447e7365a4.png"> <img width="1038" alt="Service Services" src="https://user-images.githubusercontent.com/82196/187040763-038023a2-8bee-4d87-b5cc-13447e7365a4.png">
### Service Widgets
Each service can have widgets attached to it (often matching the service type, but that's not forced).
In addition to the href of the service, you can also specify the target location in which to open that link. See [Link Target](settings.md#link-target) for more details.
Using Emby as an example, this is how you would attach the Emby service widget.
```yaml
- Emby:
icon: emby.png
href: http://emby.host.or.ip/
description: Movies & TV Shows
widget:
type: emby
url: http://emby.host.or.ip
key: apikeyapikeyapikeyapikeyapikey
```
#### Multiple Widgets
Each service can have multiple widgets attached to it, for example:
```yaml
- Emby:
icon: emby.png
href: http://emby.host.or.ip/
description: Movies & TV Shows
widgets:
- type: emby
url: http://emby.host.or.ip
key: apikeyapikeyapikeyapikeyapikey
- type: uptimekuma
url: http://uptimekuma.host.or.ip:port
slug: statuspageslug
```
!!! note
Multiple widgets per service are not yet supported with Kubernetes ingress annotations.
#### Field Visibility
Each widget can optionally provide a list of which fields should be visible via the `fields` widget property. If no fields are specified, then all fields will be displayed. The `fields` property must be a valid YAML array of strings. As an example, here is the entry for Sonarr showing only a couple of fields.
**In all cases a widget will work and display all fields without specifying the `fields` property.**
```yaml
- Sonarr:
icon: sonarr.png
href: http://sonarr.host.or.ip
widget:
type: sonarr
fields: ["wanted", "queued"]
url: http://sonarr.host.or.ip
key: apikeyapikeyapikeyapikeyapikey
```
## Descriptions ## Descriptions
Services may have descriptions, Services may have descriptions,
@@ -138,7 +63,7 @@ Services may have descriptions,
## Icons ## Icons
Services may have an icon attached to them, you can use icons from [Dashboard Icons](https://github.com/homarr-labs/dashboard-icons) automatically, by passing the name of the icon, with, or without `.png`, `.webp` or `.svg` to specify the desired version. Services may have an icon attached to them, you can use icons from [Dashboard Icons](https://github.com/walkxcode/dashboard-icons) automatically, by passing the name of the icon, with, or without `.png` or with `.svg` to use the svg version.
You can also specify prefixed icons from: You can also specify prefixed icons from:
@@ -182,10 +107,6 @@ To use a local icon, first create a Docker mount to `/app/public/icons` and then
Services may have an optional `ping` property that allows you to monitor the availability of an external host. As of v0.8.0, the ping feature attempts to use a true (ICMP) ping command on the underlying host. Currently, only IPv4 is supported. Services may have an optional `ping` property that allows you to monitor the availability of an external host. As of v0.8.0, the ping feature attempts to use a true (ICMP) ping command on the underlying host. Currently, only IPv4 is supported.
!!! note
Because ping uses the ping command on the underlying host, in some cases you may need to install e.g. the `iputils-ping` package on the host system.
```yaml ```yaml
- Group A: - Group A:
- Sonarr: - Sonarr:

View File

@@ -13,14 +13,6 @@ You can customize the title of the page if you'd like.
title: My Awesome Homepage title: My Awesome Homepage
``` ```
## Description
You can customize the description of the page if you'd like.
```yaml
description: A description of my awesome homepage
```
## Start URL ## Start URL
You can customize the start_url as required for installable apps. The default is "/". You can customize the start_url as required for installable apps. The default is "/".
@@ -126,22 +118,6 @@ As an example, this would produce the following layout:
<img width="1260" alt="Screenshot 2022-09-15 at 8 03 57 PM" src="https://user-images.githubusercontent.com/82196/190466646-8ca94505-0fcf-4964-9687-3a6c7cd3144f.png"> <img width="1260" alt="Screenshot 2022-09-15 at 8 03 57 PM" src="https://user-images.githubusercontent.com/82196/190466646-8ca94505-0fcf-4964-9687-3a6c7cd3144f.png">
### Icons-Only Layout
You can also specify the an icon-only layout for bookmarks, either like so:
```yaml
layout:
Media:
iconsOnly: true
```
or globally:
```yaml
bookmarksStyle: icons
```
### Sorting ### Sorting
Service groups and bookmark groups can be mixed in order, **but should use different group names**. If you do not specify any bookmark groups they will all show at the bottom of the page. Service groups and bookmark groups can be mixed in order, **but should use different group names**. If you do not specify any bookmark groups they will all show at the bottom of the page.
@@ -161,27 +137,6 @@ layout:
columns: 3 columns: 3
``` ```
### Nested Groups
If your services config has nested groups, you can apply settings to these groups by nesting them in the layout block
and using the same settings. For example
```yaml
layout:
Group A:
style: row
columns: 4
Group C:
style: row
columns: 2
Nested Group A:
style: row
columns: 2
Nested Group B:
style: row
columns: 2
```
### Headers ### Headers
You can hide headers for each section in the layout as well by passing `header` as false, like so: You can hide headers for each section in the layout as well by passing `header` as false, like so:
@@ -393,12 +348,12 @@ This can also be set for individual services. Note setting this at the service l
## Providers ## Providers
The `providers` section allows you to define shared API provider options and secrets. The `providers` section allows you to define shared API provider options and secrets. Currently this allows you to define your weather API keys in secret and is also the location of the Longhorn URL and credentials.
```yaml ```yaml
providers: providers:
openweathermap: openweathermapapikey openweathermap: openweathermapapikey
finnhub: yourfinnhubapikeyhere weatherapi: weatherapiapikey
longhorn: longhorn:
url: https://longhorn.example.com url: https://longhorn.example.com
username: admin username: admin
@@ -408,10 +363,10 @@ providers:
You can then pass `provider` instead of `apiKey` in your widget configuration. You can then pass `provider` instead of `apiKey` in your widget configuration.
```yaml ```yaml
- openweathermap: - weatherapi:
latitude: 50.449684 latitude: 50.449684
longitude: 30.525026 longitude: 30.525026
provider: openweathermap provider: weatherapi
``` ```
## Quick Launch ## Quick Launch
@@ -447,7 +402,7 @@ quicklaunch:
suggestionUrl: https://ac.ecosia.org/autocomplete?type=list&q= suggestionUrl: https://ac.ecosia.org/autocomplete?type=list&q=
``` ```
## Homepage Version & Update Checking ## Homepage Version
By default the release version is displayed at the bottom of the page. To hide this, use the `hideVersion` setting, like so: By default the release version is displayed at the bottom of the page. To hide this, use the `hideVersion` setting, like so:
@@ -455,12 +410,6 @@ By default the release version is displayed at the bottom of the page. To hide t
hideVersion: true hideVersion: true
``` ```
You can disable checking for new versions from GitHub (enabled by default) with:
```yaml
disableUpdateCheck: true
```
## Log Path ## Log Path
By default the homepage logfile is written to the a `logs` subdirectory of the `config` folder. In order to customize this path, you can set the `logpath` setting. A `logs` folder will be created in that location where the logfile will be written. By default the homepage logfile is written to the a `logs` subdirectory of the `config` folder. In order to customize this path, you can set the `logpath` setting. A `logs` folder will be created in that location where the logfile will be written.

View File

@@ -15,8 +15,6 @@ services:
volumes: volumes:
- /path/to/config:/app/config # Make sure your local config directory exists - /path/to/config:/app/config # Make sure your local config directory exists
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
environment:
HOMEPAGE_ALLOWED_HOSTS: gethomepage.dev # required, may need port
``` ```
### Running as non-root ### Running as non-root
@@ -38,7 +36,6 @@ services:
- /path/to/config:/app/config # Make sure your local config directory exists - /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 - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations, see alternative methods
environment: environment:
HOMEPAGE_ALLOWED_HOSTS: gethomepage.dev # required, may need port
PUID: $PUID PUID: $PUID
PGID: $PGID PGID: $PGID
``` ```
@@ -46,7 +43,7 @@ services:
### With Docker Run ### With Docker Run
```bash ```bash
docker run -p 3000:3000 -e HOMEPAGE_ALLOWED_HOSTS=gethomepage.dev -v /path/to/config:/app/config -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/gethomepage/homepage:latest docker run -p 3000:3000 -v /path/to/config:/app/config -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/gethomepage/homepage:latest
``` ```
### Using Environment Secrets ### Using Environment Secrets

View File

@@ -4,9 +4,11 @@ description: Docs intro
icon: simple/docker icon: simple/docker
--- ---
<p>
You have a few options for deploying homepage, depending on your needs. We offer docker images for a majority of platforms. You can also install and run homepage from source if Docker is not your thing. It can even be installed on Kubernetes with Helm. You have a few options for deploying homepage, depending on your needs. We offer docker images for a majority of platforms. You can also install and run homepage from source if Docker is not your thing. It can even be installed on Kubernetes with Helm.
</p>
!!! info !!! warning
Please note that when using features such as widgets, Homepage can access personal information (for example from your home automation system) and Homepage currently does not (and is not planned to) include any authentication layer itself. Thus, we recommend homepage be deployed behind a reverse proxy including authentication, SSL etc, and / or behind a VPN. Please note that when using features such as widgets, Homepage can access personal information (for example from your home automation system) and Homepage currently does not (and is not planned to) include any authentication layer itself. Thus, we recommend homepage be deployed behind a reverse proxy including authentication, SSL etc, and / or behind a VPN.
@@ -26,7 +28,3 @@ You have a few options for deploying homepage, depending on your needs. We offer
{ .card } { .card }
</div> </div>
### `HOMEPAGE_ALLOWED_HOSTS`
As of v1.0 there is one required environment variable when deploying via a public URL, <code>HOMEPAGE_ALLOWED_HOSTS</code>. This is a comma separated (no spaces) 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.

View File

@@ -175,7 +175,6 @@ data:
expanded: true expanded: true
cpu: true cpu: true
memory: true memory: true
network: default
- search: - search:
provider: duckduckgo provider: duckduckgo
target: _blank target: _blank
@@ -210,20 +209,21 @@ rules:
- get - get
- list - list
- apiGroups: - apiGroups:
- traefik.io - traefik.containo.us
resources: resources:
- ingressroutes - ingressroutes
verbs: verbs:
- get - get
- list - list
- apiGroups: # if using gateway api add the following:
- gateway.networking.k8s.io # - apiGroups:
resources: # - gateway.networking.k8s.io
- httproutes # resources:
- gateways # - httproutes
verbs: # - gateways
- get # verbs:
- list # - get
# - list
- apiGroups: - apiGroups:
- metrics.k8s.io - metrics.k8s.io
resources: resources:
@@ -379,7 +379,7 @@ prevent unnecessary re-renders on page loads and window / tab focusing. The
procedure for enabling sticky sessions depends on your Ingress controller. Below procedure for enabling sticky sessions depends on your Ingress controller. Below
is an example using Traefik as the Ingress controller. is an example using Traefik as the Ingress controller.
```yaml ```
apiVersion: traefik.io/v1alpha1 apiVersion: traefik.io/v1alpha1
kind: IngressRoute kind: IngressRoute
metadata: metadata:

View File

@@ -21,7 +21,5 @@ If this is your first time starting, copy the `src/skeleton` directory to `confi
Finally, run the server: Finally, run the server:
```bash ```bash
HOMEPAGE_ALLOWED_HOSTS=gethomepage.dev:1234 pnpm start pnpm start
``` ```
When updating homepage versions you will need to re-build the static files i.e. repeat the process above.

View File

@@ -15,13 +15,11 @@ hide:
## Service Widget Errors ## Service Widget Errors
All service widgets work essentially the same, that is, homepage makes a proxied call to an API made available by that service. The majority of the time widgets don't work it is a configuration issue. Of course, sometimes things do break. Some basic steps to check: All service widgets work essentially the same, that is, homepage makes a proxied call to an API made available by that service. The majority of the time widgets don't work it is a configuration issue. Of course, sometimes things do break. Some basic steps to try:
1. URLs should not end with a / or other API path. Each widget will handle the path on its own. 1. Ensure that you follow the rule mentioned on https://gethomepage.dev/configs/service-widgets/. **Unless otherwise noted, URLs should not end with a / or other API path. Each widget will handle the path on its own.**. This is very important as including a trailing slash can result in an error.
2. All services with a widget require a unique name. 2. Verify the homepage installation can connect to the IP address or host you are using for the widget `url`. This is most simply achieved by pinging the server from the homepage machine, in Docker this means _from inside the container_ itself, e.g.:
3. Verify the homepage installation can connect to the IP address or host you are using for the widget `url`. This is most simply achieved by pinging the server from the homepage machine, in Docker this means _from inside the container_ itself, e.g.:
``` ```
docker exec homepage ping SERVICEIPORDOMAIN docker exec homepage ping SERVICEIPORDOMAIN
@@ -29,7 +27,7 @@ All service widgets work essentially the same, that is, homepage makes a proxied
If your homepage install (container) cannot reach the service then you need to figure out why, for example in Docker this can mean putting the two containers on the same network, checking firewall issues, etc. If your homepage install (container) cannot reach the service then you need to figure out why, for example in Docker this can mean putting the two containers on the same network, checking firewall issues, etc.
4. If you have verified that homepage can in fact reach the service then you can also check the API output using e.g. `curl`, which is often helpful if you do need to file a bug report. Again, depending on your networking setup this may need to be run from _inside the container_ as IP / hostname resolution can differ inside vs outside. 3. If you have verified that homepage can in fact reach the service then you can also check the API output using e.g. `curl`, which is often helpful if you do need to file a bug report. Again, depending on your networking setup this may need to be run from _inside the container_ as IP / hostname resolution can differ inside vs outside.
!!! note !!! note

View File

@@ -46,16 +46,16 @@ See the [pre-commit documentation](https://pre-commit.com/#install) to get start
In general, homepage is meant to be a dashboard for 'self-hosted' services and we believe it is a small way we can help showcase this kind of software. While exceptions are made, mostly when there is no viable In general, homepage is meant to be a dashboard for 'self-hosted' services and we believe it is a small way we can help showcase this kind of software. While exceptions are made, mostly when there is no viable
self-hosted / open-source alternative, we ask that any widgets, etc. are developed primarily for a self-hosted tool. self-hosted / open-source alternative, we ask that any widgets, etc. are developed primarily for a self-hosted tool.
## New Feature or Enhancement Guidelines {#new-feature-guidelines} ## New Feature Guidelines
- New features or enhancements, **no matter how small**, must be linked to an existing feature request with some comments or 'up-votes' that demonstrate community interest. The purpose of this requirement is to avoid the addition (and maintenance) of features that might only benefit a small number of users. - New features should usually be linked to an existing feature request. The purpose of this requirement is to avoid the addition (and maintenance) of features that might only benefit a small number of users.
- If you have ideas for a larger feature you may want to open a discussion first. - If you have ideas for a larger feature you may want to open a discussion first.
## Service Widget Guidelines ## Service Widget Guidelines
To ensure cohesiveness of various widgets, the following should be used as a guide for developing new widgets: To ensure cohesiveness of various widgets, the following should be used as a guide for developing new widgets:
- Please only submit widgets that target a feature request discussion with at least 20 'up-votes'. The purpose of this requirement is to avoid the addition (and maintenance) of service widgets that might only benefit a small number of users. - Please only submit widgets that target a feature request discussion with at least 10 'up-votes'. The purpose of this requirement is to avoid the addition (and maintenance) of service widgets that might only benefit a small number of users.
- Note that we reserve the right to decline widgets for projects that are very young (eg < ~1y) or those with a small reach (eg low GitHub stars). Again, this is in an effort to keep overall widget maintenance under control. - Note that we reserve the right to decline widgets for projects that are very young (eg < ~1y) or those with a small reach (eg low GitHub stars). Again, this is in an effort to keep overall widget maintenance under control.
- Widgets should be only one row of blocks - Widgets should be only one row of blocks
- Widgets should be no more than 4 blocks wide and generally conform to the styling / design choices of other widgets - Widgets should be no more than 4 blocks wide and generally conform to the styling / design choices of other widgets

View File

@@ -50,7 +50,7 @@ You can also pass API keys from the widget configuration to the proxy handler, f
### `credentialedProxyHandler` ### `credentialedProxyHandler`
A proxy handler that makes authenticated requests by setting request headers. Credentials are pulled from the widgets configuration. A proxy handler that makes authenticated by setting request headers. Credentials are pulled from the widgets configuration.
By default the key is passed as an `X-API-Key` header. If you need to pass the key as something else, either add a case to the credentialedProxyHandler or create a new proxy handler. By default the key is passed as an `X-API-Key` header. If you need to pass the key as something else, either add a case to the credentialedProxyHandler or create a new proxy handler.

View File

@@ -19,17 +19,12 @@ Service widgets are used to display the status of a service, often a web service
description: Watch movies and TV shows. description: Watch movies and TV shows.
server: localhost server: localhost
container: plex container: plex
widgets: widget:
- type: tautulli type: tautulli
url: http://172.16.1.1:8181 url: http://172.16.1.1:8181
key: aabbccddeeffgghhiijjkkllmmnnoo key: aabbccddeeffgghhiijjkkllmmnnoo
- type: uptimekuma
url: http://172.16.1.2:8080
slug: aaaaaaabbbbb
``` ```
More detail on configuring service widgets can be found in the [Service Widgets Config](../configs/services.md) section.
## Info Widgets ## Info Widgets
Info widgets are used to display information in the header, often about your system or environment. Info widgets are defined your `widgets.yaml` file. Here's an example: Info widgets are used to display information in the header, often about your system or environment. Info widgets are defined your `widgets.yaml` file. Here's an example:
@@ -41,5 +36,3 @@ Info widgets are used to display information in the header, often about your sys
longitude: -117.51 longitude: -117.51
cache: 5 cache: 5
``` ```
More detail on configuring info widgets can be found in the [Info Widgets Config](../configs/info-widgets.md) section.

View File

@@ -3,7 +3,7 @@ title: Open-Meteo
description: Open-Meteo Information Widget Configuration description: Open-Meteo Information Widget Configuration
--- ---
Homepage's recommended weather widget. No registration is required at all! See [https://open-meteo.com/en/docs](https://open-meteo.com/en/docs) No registration is required at all! See [https://open-meteo.com/en/docs](https://open-meteo.com/en/docs)
```yaml ```yaml
- openmeteo: - openmeteo:

View File

@@ -24,10 +24,9 @@ _Note: unfortunately, the package used for getting CPU temp ([systeminformation]
tempmin: 0 # optional, minimum cpu temp tempmin: 0 # optional, minimum cpu temp
tempmax: 100 # optional, maximum cpu temp tempmax: 100 # optional, maximum cpu temp
uptime: true uptime: true
units: imperial # only used by cpu temp, options: 'imperial' or 'metric' units: imperial # only used by cpu temp
refresh: 3000 # optional, in ms refresh: 3000 # optional, in ms
diskUnits: bytes # optional, bytes (default) or bbytes. Only applies to disk diskUnits: bytes # optional, bytes (default) or bbytes. Only applies to disk
network: true # optional, uses 'default' if true or specify a network interface name
``` ```
You can also pass a `label` option, which allows you to group resources under named sections, You can also pass a `label` option, which allows you to group resources under named sections,

View File

@@ -5,11 +5,7 @@ description: Unifi Controller Information Widget Configuration
_(Find the Unifi Controller service widget [here](../services/unifi-controller.md))_ _(Find the Unifi Controller service widget [here](../services/unifi-controller.md))_
You can display general connectivity status from your Unifi (Network) Controller. You can display general connectivity status from your Unifi (Network) Controller. When authenticating you will want to use a local account that has at least read privileges.
!!! warning
When authenticating you will want to use a local account that has at least read privileges.
An optional 'site' parameter can be supplied, if it is not the widget will use the default site for the controller. An optional 'site' parameter can be supplied, if it is not the widget will use the default site for the controller.
@@ -22,8 +18,9 @@ An optional 'site' parameter can be supplied, if it is not the widget will use t
```yaml ```yaml
- unifi_console: - unifi_console:
url: https://unifi.host.or.ip:port url: https://unifi.host.or.ip:port
site: Site Name # optional
username: user username: user
password: pass password: pass
key: unifiapikey # required if using API key instead of username/password site: Site Name # optional
``` ```
_Added in v0.4.18, updated in 0.6.7_

View File

@@ -0,0 +1,22 @@
---
title: Weather API
description: Weather API Information Widget Configuration
---
**Note: this widget is considered 'deprecated' since there is no longer a free Weather API tier for new members. See the openmeteo or openweathermap widgets for alternatives.**
The free tier is all that's required, you will need to [register](https://www.weatherapi.com/signup.aspx) and grab your API key.
```yaml
- weatherapi:
label: Kyiv # optional
latitude: 50.449684
longitude: 30.525026
units: metric # or imperial
apiKey: yourweatherapikey
cache: 5 # Time in minutes to cache API responses, to stay within limits
format: # optional, Intl.NumberFormat options
maximumFractionDigits: 1
```
You can optionally not pass a `latitude` and `longitude` and the widget will use your current location (requires a secure context, eg. HTTPS).

View File

@@ -1,16 +0,0 @@
---
title: APC UPS Monitoring
description: Lightweight monitoring widget for APC UPSs using apcupsd daemon
---
This widget extracts UPS information from an apcupsd daemon.
Only works for [APC/Schneider](https://www.se.com/us/en/product-range/61915-smartups/#products) UPS products.
[!NOTE]
By default apcupsd daemon is bound to 127.0.0.1. Edit `/etc/apcupsd.conf` and change `NISIP` to an IP accessible from your homepage docker (usually your internal LAN interface).
```yaml
widget:
type: apcups
url: tcp://your.acpupsd.host:3551
```

View File

@@ -1,33 +0,0 @@
---
title: ArgoCD
description: ArgoCD Widget Configuration
---
Learn more about [ArgoCD](https://argo-cd.readthedocs.io/en/stable/).
Allowed fields (limited to a max of 4): `["apps", "synced", "outOfSync", "healthy", "progressing", "degraded", "suspended", "missing"]`
```yaml
widget:
type: argocd
url: http://argocd.host.or.ip:port
key: argocdapikey
```
You can generate an API key either by creating a bearer token for an existing account, see [Authorization](https://argo-cd.readthedocs.io/en/latest/developer-guide/api-docs/#authorization) (not recommended) or create a new local user account with limited privileges and generate an authentication token for this account. To do this the steps are:
- [Create a new local user](https://argo-cd.readthedocs.io/en/stable/operator-manual/user-management/#create-new-user) and give it the `apiKey` capability
- Setup [RBAC configuration](https://argo-cd.readthedocs.io/en/stable/operator-manual/rbac/#rbac-configuration) for your the user and give it readonly access to your ArgoCD resources, e.g. by giving it the `role:readonly` role.
- In your ArgoCD project under _Settings / Accounts_ open the newly created account and in the _Tokens_ section click on _Generate New_ to generate an access token, optionally specifying an expiry date.
If you installed ArgoCD via the official Helm chart, the account creation and rbac config can be achived by overriding these helm values:
```yaml
configs:
cm:
accounts.readonly: apiKey
rbac:
policy.csv: "g, readonly, role:readonly"
```
This creates a new account called `readonly` and attaches the `role:readonly` role to it.

View File

@@ -20,6 +20,6 @@ Allowed fields: `["users", "loginsLast24H", "failedLoginsLast24H"]`.
```yaml ```yaml
widget: widget:
type: authentik type: authentik
url: http://authentik.host.or.ip:port url: http://authentik.host.or.ip:22070
key: api_token key: api_token
``` ```

View File

@@ -7,18 +7,11 @@ Learn more about [Beszel](https://github.com/henrygd/beszel)
The widget has two modes, a single system with detailed info if `systemId` is provided, or an overview of all systems if `systemId` is not provided. The widget has two modes, a single system with detailed info if `systemId` is provided, or an overview of all systems if `systemId` is not provided.
The `systemID` is the `id` field on the collections page of Beszel under the PocketBase admin panel. You can also use the 'nice name' from the Beszel UI. The `systemID` in the `id` field on the collections page of Beszel.
A "superuser" is currently required to access the data from tbe Beszel API.
Allowed fields for 'overview' mode: `["systems", "up"]` Allowed fields for 'overview' mode: `["systems", "up"]`
Allowed fields for a single system: `["name", "status", "updated", "cpu", "memory", "disk", "network"]` Allowed fields for a single system: `["name", "status", "updated", "cpu", "memory", "disk", "network"]`
| Beszel Version | Homepage Widget Version |
| -------------- | ----------------------- |
| < 0.9.0 | 1 (default) |
| >= 0.9.0 | 2 |
```yaml ```yaml
widget: widget:
type: beszel type: beszel
@@ -26,5 +19,4 @@ widget:
username: username # email username: username # email
password: password password: password
systemId: systemId # optional systemId: systemId # optional
version: 2 # optional, default is 1
``` ```

View File

@@ -62,12 +62,10 @@ widget:
format: size format: size
``` ```
Supported formats for the values are `text`, `number`, `float`, `percent`, `duration`, `bytes`, `bitrate`, `size`, `date` and `relativeDate`. Supported formats for the values are `text`, `number`, `float`, `percent`, `bytes`, `bitrate`, `size`, `date` and `relativeDate`.
The `dateStyle` and `timeStyle` options of the `date` format are passed directly to [Intl.DateTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat) and the `style` and `numeric` options of `relativeDate` are passed to [Intl.RelativeTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat). The `dateStyle` and `timeStyle` options of the `date` format are passed directly to [Intl.DateTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat) and the `style` and `numeric` options of `relativeDate` are passed to [Intl.RelativeTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat).
The `duration` format expects the duration to be specified in seconds. The `scale` transformation tool can be used if a conversion is required.
The `size` format will return the length of the array or string, or the number of keys in an object. This is then formatted as `number`. The `size` format will return the length of the array or string, or the number of keys in an object. This is then formatted as `number`.
## Example ## Example

View File

@@ -14,5 +14,4 @@ widget:
type: deluge type: deluge
url: http://deluge.host.or.ip url: http://deluge.host.or.ip
password: password # webui password password: password # webui password
enableLeechProgress: true # optional, defaults to false
``` ```

View File

@@ -16,6 +16,5 @@ To group both `offline` and `unknown` devices together, users should use the `of
widget: widget:
type: esphome type: esphome
url: http://esphome.host.or.ip:port url: http://esphome.host.or.ip:port
username: myesphomeuser # only if auth enabled key: myesphomecookie # only if auth enabled, get the value from a request from the frontend e.g. `authenticated=myesphomecookie`
password: myesphomepass # only if auth enabled
``` ```

View File

@@ -3,7 +3,7 @@ title: EVCC
description: EVCC Widget Configuration description: EVCC Widget Configuration
--- ---
Learn more about [EVCC](https://github.com/evcc-io/evcc). Learn more about [EVSS](https://github.com/evcc-io/evcc).
Allowed fields: `["pv_power", "grid_power", "home_power", "charge_power]`. Allowed fields: `["pv_power", "grid_power", "home_power", "charge_power]`.

View File

@@ -1,17 +0,0 @@
---
title: Firefly III
description: Firefly III Widget Configuration
---
Learn more about [Firefly III](https://www.firefly-iii.org/).
Find your API key under `Options > Profile > OAuth > Personal Access Tokens`.
Allowed fields: `["networth" ,"budget"]`.
```yaml
widget:
type: firefly
url: https://firefly.host.or.ip
key: personalaccesstoken.personalaccesstoken.personalaccesstoken
```

View File

@@ -13,7 +13,7 @@ Home Network > Network > Network Settings > Access Settings in the Home Network
Credentials are not needed and, as such, you may want to consider using `http` instead of `https` as those requests are significantly faster. Credentials are not needed and, as such, you may want to consider using `http` instead of `https` as those requests are significantly faster.
Allowed fields (limited to a max of 4): `["connectionStatus", "uptime", "maxDown", "maxUp", "down", "up", "received", "sent", "externalIPAddress", "externalIPv6Address", "externalIPv6Prefix"]`. Allowed fields (limited to a max of 4): `["connectionStatus", "uptime", "maxDown", "maxUp", "down", "up", "received", "sent", "externalIPAddress"]`.
```yaml ```yaml
widget: widget:

View File

@@ -1,20 +0,0 @@
---
title: Gitlab
description: Gitlab Widget Configuration
---
Learn more about [Gitlab](https://gitlab.com).
API requires a personal access token with either `read_api` or `api` permission. See the [gitlab documentation](https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html#create-a-personal-access-token) for details on generating one.
Your Gitlab user ID can be found on [your profile page](https://support.circleci.com/hc/en-us/articles/20761157174043-How-to-find-your-GitLab-User-ID).
Allowed fields: `["events", "issues", "merges", "projects"]`.
```yaml
widget:
type: gitlab
url: http://gitlab.host.or.ip:port
key: personal-access-token
user_id: 123456
```

View File

@@ -51,8 +51,6 @@ The metric field in the configuration determines the type of system monitoring d
`process`: Top 5 processes based on CPU usage. Gives an overview of which processes are consuming the most resources. `process`: Top 5 processes based on CPU usage. Gives an overview of which processes are consuming the most resources.
`containers`: Docker or Kubernetes containers list. Shows up to 5 containers running on the system and their resource usage.
`network:<interface_name>`: Network data usage for the specified interface. Replace `<interface_name>` with the name of your network interface, e.g., `network:enp0s25`, as specified in glances. `network:<interface_name>`: Network data usage for the specified interface. Replace `<interface_name>` with the name of your network interface, e.g., `network:enp0s25`, as specified in glances.
`sensor:<sensor_id>`: Temperature of the specified sensor, typically used to monitor CPU temperature. Replace `<sensor_id>` with the name of your sensor, e.g., `sensor:Package id 0` as specified in glances. `sensor:<sensor_id>`: Temperature of the specified sensor, typically used to monitor CPU temperature. Replace `<sensor_id>` with the name of your sensor, e.g., `sensor:Package id 0` as specified in glances.

View File

@@ -11,7 +11,7 @@ Learn more about [Gluetun](https://github.com/qdm12/gluetun).
Allowed fields: `["public_ip", "region", "country"]`. Allowed fields: `["public_ip", "region", "country"]`.
To setup authentication, follow [the official Gluetun documentation](https://github.com/qdm12/gluetun-wiki/blob/main/setup/advanced/control-server.md#authentication). Note that to use the api key method, you must add the route `GET /v1/publicip/ip` to the `routes` array in your Gluetun config.toml. To setup authentication, follow [the official Gluetun documentation](https://github.com/qdm12/gluetun-wiki/blob/main/setup/advanced/control-server.md#authentication).
```yaml ```yaml
widget: widget:

View File

@@ -14,7 +14,6 @@ Allowed fields: `["name", "address", "last_seen", "status"]`.
```yaml ```yaml
widget: widget:
type: headscale type: headscale
url: http://headscale.host.or.ip:port
nodeId: nodeid nodeId: nodeid
key: headscaleapiaccesstoken key: headscaleapiaccesstoken
``` ```

View File

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

View File

@@ -8,8 +8,6 @@ search:
You can also find a list of all available service widgets in the sidebar navigation. You can also find a list of all available service widgets in the sidebar navigation.
- [Adguard Home](adguard-home.md) - [Adguard Home](adguard-home.md)
- [APC UPS](apcups.md)
- [ArgoCD](argocd.md)
- [Atsumeru](atsumeru.md) - [Atsumeru](atsumeru.md)
- [Audiobookshelf](audiobookshelf.md) - [Audiobookshelf](audiobookshelf.md)
- [Authentik](authentik.md) - [Authentik](authentik.md)
@@ -34,7 +32,6 @@ You can also find a list of all available service widgets in the sidebar navigat
- [ESPHome](esphome.md) - [ESPHome](esphome.md)
- [EVCC](evcc.md) - [EVCC](evcc.md)
- [Fileflows](fileflows.md) - [Fileflows](fileflows.md)
- [Firefly III](firefly.md)
- [Flood](flood.md) - [Flood](flood.md)
- [FreshRSS](freshrss.md) - [FreshRSS](freshrss.md)
- [Frigate](frigate.md) - [Frigate](frigate.md)
@@ -43,7 +40,6 @@ You can also find a list of all available service widgets in the sidebar navigat
- [Gatus](gatus.md) - [Gatus](gatus.md)
- [Ghostfolio](ghostfolio.md) - [Ghostfolio](ghostfolio.md)
- [Gitea](gitea.md) - [Gitea](gitea.md)
- [Gitlab](gitlab.md)
- [Glances](glances.md) - [Glances](glances.md)
- [Gluetun](gluetun.md) - [Gluetun](gluetun.md)
- [Gotify](gotify.md) - [Gotify](gotify.md)
@@ -51,7 +47,6 @@ You can also find a list of all available service widgets in the sidebar navigat
- [HDHomeRun](hdhomerun.md) - [HDHomeRun](hdhomerun.md)
- [Headscale](headscale.md) - [Headscale](headscale.md)
- [Healthchecks](healthchecks.md) - [Healthchecks](healthchecks.md)
- [Hoarder](hoarder.md)
- [Home Assistant](homeassistant.md) - [Home Assistant](homeassistant.md)
- [HomeBox](homebox.md) - [HomeBox](homebox.md)
- [Homebridge](homebridge.md) - [Homebridge](homebridge.md)

View File

@@ -15,5 +15,4 @@ widget:
url: http://kavita.host.or.ip:port url: http://kavita.host.or.ip:port
username: username username: username
password: password password: password
key: kavitaapikey # Optional, e.g. if not using username and password
``` ```

View File

@@ -9,11 +9,6 @@ Uses the same username and password used to login from the web.
Allowed fields: `["libraries", "series", "books"]`. Allowed fields: `["libraries", "series", "books"]`.
| Komga API Version | Homepage Widget Version |
| ----------------- | ----------------------- |
| < v2 | 1 (default) |
| >= v2 | 2 |
```yaml ```yaml
widget: widget:
type: komga type: komga

View File

@@ -8,7 +8,7 @@ Learn more about [OPNSense](https://opnsense.org/).
The API key & secret can be generated via the webui by creating a new user at _System/Access/Users_. Ensure "Generate a scrambled password to prevent local database logins for this user" is checked and then edit the effective privileges selecting **only**: The API key & secret can be generated via the webui by creating a new user at _System/Access/Users_. Ensure "Generate a scrambled password to prevent local database logins for this user" is checked and then edit the effective privileges selecting **only**:
- Diagnostics: System Activity - Diagnostics: System Activity
- Status: Traffic Graph / Reporting: Traffic (OPNSENSE 24.7.x) - Status: Traffic Graph
Finally, create a new API key which will download an `apikey.txt` file with your key and secret in it. Use the values as the username and password fields, respectively, in your homepage config. Finally, create a new API key which will download an `apikey.txt` file with your key and secret in it. Use the values as the username and password fields, respectively, in your homepage config.
@@ -20,5 +20,4 @@ widget:
url: http://opnsense.host.or.ip url: http://opnsense.host.or.ip
username: key username: key
password: secret password: secret
wan: opt1 # optional, defaults to wan
``` ```

View File

@@ -20,6 +20,4 @@ widget:
type: peanut type: peanut
url: http://peanut.host.or.ip:port url: http://peanut.host.or.ip:port
key: nameofyourups key: nameofyourups
username: username # only needed if set
password: password # only needed if set
``` ```

View File

@@ -15,5 +15,4 @@ widget:
url: http://qbittorrent.host.or.ip url: http://qbittorrent.host.or.ip
username: username username: username
password: password password: password
enableLeechProgress: true # optional, defaults to false
``` ```

View File

@@ -10,5 +10,7 @@ If more than (4) fields are provided, only the first (4) will be used.
widget: widget:
type: romm type: romm
url: http://romm.host.or.ip url: http://romm.host.or.ip
username: username # optional
password: password # optional
fields: ["platforms", "totalRoms", "saves", "states"] # optional - default fields shown fields: ["platforms", "totalRoms", "saves", "states"] # optional - default fields shown
``` ```

View File

@@ -8,12 +8,7 @@ Learn more about [Speedtest Tracker](https://github.com/alexjustesen/speedtest-t
No extra configuration is required. No extra configuration is required.
Version 1 of the widget is compatible with both [alexjustesen/speedtest-tracker](https://github.com/alexjustesen/speedtest-tracker) and [henrywhitaker3/Speedtest-Tracker](https://github.com/henrywhitaker3/Speedtest-Tracker), while version 2 is only compatible with [alexjustesen/speedtest-tracker](https://github.com/alexjustesen/speedtest-tracker). This widget is compatible with both [alexjustesen/speedtest-tracker](https://github.com/alexjustesen/speedtest-tracker) and [henrywhitaker3/Speedtest-Tracker](https://github.com/henrywhitaker3/Speedtest-Tracker).
| Speedtest Version (AJ) | Speedtest Version (HW) | Homepage Widget Version |
| ---------------------- | ---------------------- | ----------------------- |
| < 1.2.1 | ≤ 1.12.0 | 1 (default) |
| >= 1.2.1 | N/A | 2 |
Allowed fields: `["download", "upload", "ping"]`. Allowed fields: `["download", "upload", "ping"]`.
@@ -21,7 +16,5 @@ Allowed fields: `["download", "upload", "ping"]`.
widget: widget:
type: speedtest type: speedtest
url: http://speedtest.host.or.ip url: http://speedtest.host.or.ip
version: 1 # optional, default is 1
key: speedtestapikey # required for version 2
bitratePrecision: 3 # optional, default is 0 bitratePrecision: 3 # optional, default is 0
``` ```

View File

@@ -1,15 +0,0 @@
---
title: Spoolman
description: Spoolman Widget Configuration
---
Learn more about [Spoolman](https://github.com/Donkie/Spoolman).
4 spools are displayed by default. If more than 4 spools are configured in spoolman you can use the spoolIds configuration option to control which are displayed.
```yaml
widget:
type: spoolman
url: http://spoolman.host.or.ip
spoolIds: [1, 2, 3, 4] # optional
```

View File

@@ -7,11 +7,7 @@ Learn more about [Unifi Controller](https://ui.com/).
_(Find the Unifi Controller information widget [here](../info/unifi_controller.md))_ _(Find the Unifi Controller information widget [here](../info/unifi_controller.md))_
You can display general connectivity status from your Unifi (Network) Controller. You can display general connectivity status from your Unifi (Network) Controller. When authenticating you will want to use a local account that has at least read privileges.
!!! warning
When authenticating you will want to use a local account that has at least read privileges.
An optional 'site' parameter can be supplied, if it is not the widget will use the default site for the controller. An optional 'site' parameter can be supplied, if it is not the widget will use the default site for the controller.
@@ -19,14 +15,15 @@ Allowed fields: `["uptime", "wan", "lan", "lan_users", "lan_devices", "wlan", "w
!!! hint !!! hint
If you enter e.g. incorrect credentials and receive an "API Error", you may need to recreate the container or restart the service to clear the cache. If you enter e.g. incorrect credentials and receive an "API Error", you may need to recreate the container to clear the cache.
```yaml ```yaml
widget: widget:
type: unifi type: unifi
url: https://unifi.host.or.ip:port url: https://unifi.host.or.ip:port
username: username
password: password
site: Site Name # optional site: Site Name # optional
username: user
password: pass
key: unifiapikey # required if using API key instead of username/password
``` ```
_Added in v0.4.18, updated in 0.6.7_

View File

@@ -3,7 +3,7 @@ title: Zabbix
description: Zabbix Widget Configuration description: Zabbix Widget Configuration
--- ---
Learn more about [Zabbix](https://github.com/zabbix/zabbix). The widget supports (at least) Zabbix server version 7.0. Learn more about [Zabbix](https://github.com/zabbix/zabbix). The widget supports (at least) Zibbax server version 7.0.
--- ---

View File

@@ -21,8 +21,8 @@ nav:
- configs/index.md - configs/index.md
- configs/settings.md - configs/settings.md
- configs/bookmarks.md - configs/bookmarks.md
- configs/info-widgets.md
- configs/services.md - configs/services.md
- configs/service-widgets.md
- configs/kubernetes.md - configs/kubernetes.md
- configs/docker.md - configs/docker.md
- configs/custom-css-js.md - configs/custom-css-js.md
@@ -31,8 +31,6 @@ nav:
- "Service Widgets": - "Service Widgets":
- widgets/services/index.md - widgets/services/index.md
- widgets/services/adguard-home.md - widgets/services/adguard-home.md
- widgets/services/apcups.md
- widgets/services/argocd.md
- widgets/services/atsumeru.md - widgets/services/atsumeru.md
- widgets/services/audiobookshelf.md - widgets/services/audiobookshelf.md
- widgets/services/authentik.md - widgets/services/authentik.md
@@ -57,7 +55,6 @@ nav:
- widgets/services/esphome.md - widgets/services/esphome.md
- widgets/services/evcc.md - widgets/services/evcc.md
- widgets/services/fileflows.md - widgets/services/fileflows.md
- widgets/services/firefly.md
- widgets/services/flood.md - widgets/services/flood.md
- widgets/services/freshrss.md - widgets/services/freshrss.md
- widgets/services/frigate.md - widgets/services/frigate.md
@@ -66,7 +63,6 @@ nav:
- widgets/services/gatus.md - widgets/services/gatus.md
- widgets/services/ghostfolio.md - widgets/services/ghostfolio.md
- widgets/services/gitea.md - widgets/services/gitea.md
- widgets/services/gitlab.md
- widgets/services/glances.md - widgets/services/glances.md
- widgets/services/gluetun.md - widgets/services/gluetun.md
- widgets/services/gotify.md - widgets/services/gotify.md
@@ -74,7 +70,6 @@ nav:
- widgets/services/hdhomerun.md - widgets/services/hdhomerun.md
- widgets/services/headscale.md - widgets/services/headscale.md
- widgets/services/healthchecks.md - widgets/services/healthchecks.md
- widgets/services/hoarder.md
- widgets/services/homeassistant.md - widgets/services/homeassistant.md
- widgets/services/homebox.md - widgets/services/homebox.md
- widgets/services/homebridge.md - widgets/services/homebridge.md
@@ -142,10 +137,8 @@ nav:
- widgets/services/scrutiny.md - widgets/services/scrutiny.md
- widgets/services/sonarr.md - widgets/services/sonarr.md
- widgets/services/speedtest-tracker.md - widgets/services/speedtest-tracker.md
- widgets/services/spoolman.md
- widgets/services/stash.md - widgets/services/stash.md
- widgets/services/stocks.md - widgets/services/stocks.md
- widgets/services/suwayomi.md
- widgets/services/swagdashboard.md - widgets/services/swagdashboard.md
- widgets/services/syncthing-relay-server.md - widgets/services/syncthing-relay-server.md
- widgets/services/tailscale.md - widgets/services/tailscale.md
@@ -181,6 +174,7 @@ nav:
- widgets/info/search.md - widgets/info/search.md
- widgets/info/stocks.md - widgets/info/stocks.md
- widgets/info/unifi_controller.md - widgets/info/unifi_controller.md
- widgets/info/weather.md
- "Learn": - "Learn":
- widgets/authoring/index.md - widgets/authoring/index.md
- "Getting Started": widgets/authoring/getting-started.md - "Getting Started": widgets/authoring/getting-started.md

8653
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,9 +1,8 @@
{ {
"name": "homepage", "name": "homepage",
"version": "1.0.2", "version": "0.9.6",
"private": true, "private": true,
"scripts": { "scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev", "dev": "next dev",
"build": "next build", "build": "next build",
"start": "next start", "start": "next start",
@@ -11,54 +10,55 @@
"telemetry": "next telemetry disable" "telemetry": "next telemetry disable"
}, },
"dependencies": { "dependencies": {
"@headlessui/react": "^1.7.19", "@headlessui/react": "^1.7.18",
"@kubernetes/client-node": "^1.0.0", "@kubernetes/client-node": "^0.17.1",
"cal-parser": "^1.0.2", "cal-parser": "^1.0.2",
"classnames": "^2.5.1", "classnames": "^2.5.1",
"compare-versions": "^6.1.1", "compare-versions": "^6.1.0",
"dockerode": "^4.0.4", "dockerode": "^4.0.2",
"follow-redirects": "^1.15.9", "follow-redirects": "^1.15.9",
"gamedig": "^5.2.0", "gamedig": "^5.1.2",
"i18next": "^21.10.0", "i18next": "^21.10.0",
"js-yaml": "^4.1.0", "js-yaml": "^4.1.0",
"json-rpc-2.0": "^1.7.0", "json-rpc-2.0": "^1.7.0",
"luxon": "^3.5.0", "luxon": "^3.5.0",
"memory-cache": "^0.2.0", "memory-cache": "^0.2.0",
"minecraftstatuspinger": "^1.2.1", "minecraft-ping-js": "^1.0.2",
"next": "^15.1.7", "next": "^12.3.4",
"next-i18next": "^12.1.0", "next-i18next": "^12.1.0",
"ping": "^0.4.4", "ping": "^0.4.4",
"pretty-bytes": "^6.1.1", "pretty-bytes": "^6.1.1",
"raw-body": "^3.0.0", "raw-body": "^3.0.0",
"react": "^18.3.1", "react": "^18.3.1",
"react-dom": "^18.3.1", "react-dom": "^18.2.0",
"react-i18next": "^11.18.6", "react-i18next": "^11.18.6",
"react-icons": "^5.4.0", "react-icons": "^4.12.0",
"recharts": "^2.15.1", "recharts": "^2.12.6",
"rrule": "^2.8.1", "rrule": "^2.8.1",
"swr": "^1.3.0", "swr": "^1.3.0",
"systeminformation": "^5.25.11", "systeminformation": "^5.23.2",
"tough-cookie": "^5.1.2", "tough-cookie": "^4.1.3",
"urbackup-server-api": "^0.8.9", "urbackup-server-api": "^0.52.1",
"winston": "^3.17.0", "winston": "^3.11.0",
"xml-js": "^1.6.11" "xml-js": "^1.6.11"
}, },
"devDependencies": { "devDependencies": {
"@tailwindcss/forms": "^0.5.10", "@tailwindcss/forms": "^0.5.8",
"@tailwindcss/postcss": "^4.0.9", "autoprefixer": "^10.4.20",
"eslint": "^9.21.0", "eslint": "^8.57.1",
"eslint-config-next": "^15.1.7", "eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.0.2", "eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0", "eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2", "eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.2.3", "eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.4", "eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^5.1.0", "eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8.5.2", "postcss": "^8.4.47",
"prettier": "^3.5.2", "prettier": "^3.2.5",
"tailwind-scrollbar": "^4.0.1", "tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^4.0.9", "tailwindcss": "^3.4.14",
"typescript": "^5.7.3" "typescript": "^5.6.3"
}, },
"optionalDependencies": { "optionalDependencies": {
"osx-temperature-sensor": "^1.0.8" "osx-temperature-sensor": "^1.0.8"

4370
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,6 @@
module.exports = { module.exports = {
plugins: { plugins: {
"@tailwindcss/postcss": {}, tailwindcss: {},
autoprefixer: {},
}, },
}; };

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "ma", "months": "ma",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Rooster", "grid_power": "Rooster",
"home_power": "Verbruik", "home_power": "Verbruik",
"charge_power": "Laaier", "charge_power": "Laaier",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Aflaai", "download": "Aflaai",
@@ -148,9 +148,7 @@
"up": "Op", "up": "Op",
"received": "Ontvang", "received": "Ontvang",
"sent": "Gestuur", "sent": "Gestuur",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Voorvoegsel"
}, },
"caddy": { "caddy": {
"upstreams": "Stroomop", "upstreams": "Stroomop",
@@ -178,7 +176,7 @@
"connectedAp": "Gekoppelde APs", "connectedAp": "Gekoppelde APs",
"activeUser": "Aktiewe toestelle", "activeUser": "Aktiewe toestelle",
"alerts": "Waarskuwings", "alerts": "Waarskuwings",
"connectedGateways": "Gekoppelde poorte", "connectedGateway": "Gekoppelde poorte",
"connectedSwitches": "Gekoppelde skakelaars" "connectedSwitches": "Gekoppelde skakelaars"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Gestop", "stopped": "Gestop",
"total": "Totaal" "total": "Totaal"
}, },
"suwayomi": {
"download": "Afgelaai",
"nondownload": "Nie-Afgelaai",
"read": "Gelees",
"unread": "Ongelees",
"downloadedread": "Afgelaai & Gelees",
"downloadedunread": "Afgelaai en Ongelees",
"nondownloadedread": "Nie-Afgelaai & Gelees",
"nondownloadedunread": "Nie-Afgelaai & Ongelees"
},
"tailscale": { "tailscale": {
"address": "Adres", "address": "Adres",
"expires": "Verval", "expires": "Verval",
@@ -704,10 +692,6 @@
"processed": "Verwerk", "processed": "Verwerk",
"time": "Tyd" "time": "Tyd"
}, },
"firefly": {
"networth": "Netto Waarde",
"budget": "Begroting"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Databronne", "datasources": "Databronne",
@@ -963,72 +947,11 @@
"disaster": "Ramp" "disaster": "Ramp"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "Voertuig", "vehicle": "Vehicle",
"vehicles": "Voertuie", "vehicles": "Vehicles",
"serviceRecords": "Diensrekords", "serviceRecords": "Service Records",
"reminders": "Herinneringe", "reminders": "Reminders",
"nextReminder": "Volgende Herinnering", "nextReminder": "Next Reminder",
"none": "Geen" "none": "None"
},
"vikunja": {
"projects": "Aktiewe Projekte",
"tasks7d": "Take Hierdie week",
"tasksOverdue": "Agterstallige Take",
"tasksInProgress": "Take Aan Die Gang"
},
"headscale": {
"name": "Naam",
"address": "Adres",
"last_seen": "Laaste Gesien",
"status": "Status",
"online": "Aanlyn",
"offline": "Vanlyn"
},
"beszel": {
"name": "Naam",
"systems": "Stelsels",
"up": "Op",
"down": "Af",
"paused": "Onderbreek",
"pending": "Afwagtend",
"status": "Status",
"updated": "Opgedateer",
"cpu": "SVE",
"memory": "GEH",
"disk": "Skyf",
"network": "NET"
},
"argocd": {
"apps": "Programme",
"synced": "Gesinkroniseer",
"outOfSync": "Nie Gesinchroniseer Nie",
"healthy": "Gesond",
"degraded": "Gedegradeer",
"progressing": "Vorderend",
"missing": "Vermis",
"suspended": "Geskors"
},
"spoolman": {
"loading": "Laai"
},
"gitlab": {
"groups": "Groepe",
"issues": "Kwessies",
"merges": "Saamvleg Versoeke",
"projects": "Projekte"
},
"apcups": {
"status": "Status",
"load": "Las",
"bcharge": "Batterylading",
"timeleft": "Oorblywende Tyd"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Merkers"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "ش", "months": "ش",
"days": "ي", "days": "ي",
"hours": "س", "hours": "س",
@@ -120,7 +120,7 @@
"grid_power": "شبكة", "grid_power": "شبكة",
"home_power": "الاستهلاك", "home_power": "الاستهلاك",
"charge_power": "شاحن", "charge_power": "شاحن",
"kilowatt": "kW" "watt_hour": "واط ساعة"
}, },
"flood": { "flood": {
"download": "التنزيل", "download": "التنزيل",
@@ -148,9 +148,7 @@
"up": "يعمل", "up": "يعمل",
"received": "تم الإستلام", "received": "تم الإستلام",
"sent": "تم الإرسال", "sent": "تم الإرسال",
"externalIPAddress": "IP الخارجي", "externalIPAddress": "IP الخارجي"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "تدفق", "upstreams": "تدفق",
@@ -178,7 +176,7 @@
"connectedAp": "المتصلة APs", "connectedAp": "المتصلة APs",
"activeUser": "الأجهزة النشطة", "activeUser": "الأجهزة النشطة",
"alerts": "تنبيهات", "alerts": "تنبيهات",
"connectedGateways": "Connected gateways", "connectedGateway": "البوابات المتصلة",
"connectedSwitches": "مفاتيح التبديل المتصلة" "connectedSwitches": "مفاتيح التبديل المتصلة"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "متوقف", "stopped": "متوقف",
"total": "المجموع" "total": "المجموع"
}, },
"suwayomi": {
"download": "مُنزل",
"nondownload": "Non-Downloaded",
"read": "قراءة",
"unread": "غير مقروءة",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "عنوان", "address": "عنوان",
"expires": "تنتهي", "expires": "تنتهي",
@@ -704,10 +692,6 @@
"processed": "معالجة", "processed": "معالجة",
"time": "الوقت" "time": "الوقت"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "لوحات المعلومات", "dashboards": "لوحات المعلومات",
"datasources": "مصادر البيانات", "datasources": "مصادر البيانات",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "الاسم",
"address": "عنوان",
"last_seen": "آخر ظهور",
"status": "الحالة",
"online": "مُتّصل",
"offline": "غير متصل"
},
"beszel": {
"name": "الاسم",
"systems": "Systems",
"up": "يعمل",
"down": "لا يعمل",
"paused": "متوقف",
"pending": "معلق",
"status": "الحالة",
"updated": "محدث",
"cpu": "المعالج",
"memory": "الذاكرة",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "سليم",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "مفقود",
"suspended": "Suspended"
},
"spoolman": {
"loading": "تحميل"
},
"gitlab": {
"groups": "Groups",
"issues": "المُشكِلات",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "الحالة",
"load": "الضغط",
"bcharge": "شحن البطارية",
"timeleft": "الوقت المتبقي"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "التصنيفات"
} }
} }

File diff suppressed because it is too large Load Diff

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mes", "months": "mes",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Xarxa", "grid_power": "Xarxa",
"home_power": "Consum", "home_power": "Consum",
"charge_power": "Carregador", "charge_power": "Carregador",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Descarregar", "download": "Descarregar",
@@ -148,9 +148,7 @@
"up": "Actiu", "up": "Actiu",
"received": "Rebuts", "received": "Rebuts",
"sent": "Enviats", "sent": "Enviats",
"externalIPAddress": "IP ext.", "externalIPAddress": "IP ext."
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "AP connectats", "connectedAp": "AP connectats",
"activeUser": "Dispositius actius", "activeUser": "Dispositius actius",
"alerts": "Alertes", "alerts": "Alertes",
"connectedGateways": "Connected gateways", "connectedGateway": "Pasarel·les connectades",
"connectedSwitches": "Conmutadors connectats" "connectedSwitches": "Conmutadors connectats"
}, },
"nzbget": { "nzbget": {
@@ -229,8 +227,8 @@
"seed": "Llavors" "seed": "Llavors"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "Bytes trobats a la memòria cau", "cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Bytes no trobats a la memòria cau" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Descarregar", "download": "Descarregar",
@@ -311,16 +309,6 @@
"stopped": "Aturat", "stopped": "Aturat",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Descarregat",
"nondownload": "No descarregat",
"read": "Llegit",
"unread": "Sense llegir",
"downloadedread": "Descarregat i llegit",
"downloadedunread": "Descarregat i per llegir",
"nondownloadedread": "No descarregat i llegit",
"nondownloadedunread": "No descarregat i per llegir"
},
"tailscale": { "tailscale": {
"address": "Adreça", "address": "Adreça",
"expires": "Caduca", "expires": "Caduca",
@@ -337,22 +325,22 @@
}, },
"technitium": { "technitium": {
"totalQueries": "Consultes", "totalQueries": "Consultes",
"totalNoError": "Èxits", "totalNoError": "Success",
"totalServerFailure": "Fallades", "totalServerFailure": "Failures",
"totalNxDomain": "Dominis NX", "totalNxDomain": "NX Domains",
"totalRefused": "Rebutjat", "totalRefused": "Refused",
"totalAuthoritative": "Autoritatiu", "totalAuthoritative": "Authoritative",
"totalRecursive": "Recursiu", "totalRecursive": "Recursive",
"totalCached": "A la memòria cau", "totalCached": "Cached",
"totalBlocked": "Bloquejat", "totalBlocked": "Bloquejat",
"totalDropped": "Abandonat", "totalDropped": "Dropped",
"totalClients": "Clients" "totalClients": "Clients"
}, },
"tdarr": { "tdarr": {
"queue": "Cua", "queue": "Cua",
"processed": "Processat", "processed": "Processat",
"errored": "Error", "errored": "Error",
"saved": "Estalviat" "saved": "Desat"
}, },
"traefik": { "traefik": {
"routers": "Encaminadors", "routers": "Encaminadors",
@@ -583,7 +571,7 @@
"clientIP": "Client" "clientIP": "Client"
}, },
"scrutiny": { "scrutiny": {
"passed": "Aprovat", "passed": "Aprobat",
"failed": "Error", "failed": "Error",
"unknown": "Desconegut" "unknown": "Desconegut"
}, },
@@ -704,10 +692,6 @@
"processed": "Processat", "processed": "Processat",
"time": "Temps" "time": "Temps"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Taulells", "dashboards": "Taulells",
"datasources": "Orígens de dades", "datasources": "Orígens de dades",
@@ -826,7 +810,7 @@
"total": "Total", "total": "Total",
"running": "En execució", "running": "En execució",
"stopped": "Aturat", "stopped": "Aturat",
"passed": "Aprovat", "passed": "Aprobat",
"failed": "Error" "failed": "Error"
}, },
"openwrt": { "openwrt": {
@@ -860,16 +844,16 @@
}, },
"romm": { "romm": {
"platforms": "Plataformes", "platforms": "Plataformes",
"totalRoms": "Jocs", "totalRoms": "Games",
"saves": "Partides desades", "saves": "Saves",
"states": "Estats", "states": "States",
"screenshots": "Captures de pantalla", "screenshots": "Screenshots",
"totalfilesize": "Tamany total" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Dominis", "domains": "Dominis",
"mailboxes": "Bústies", "mailboxes": "Mailboxes",
"mails": "Correus", "mails": "Mails",
"storage": "Emmagatzematge" "storage": "Emmagatzematge"
}, },
"netdata": { "netdata": {
@@ -950,85 +934,24 @@
"version": "Versió" "version": "Versió"
}, },
"linkwarden": { "linkwarden": {
"links": "Enllaços", "links": "Links",
"collections": "Col·leccions", "collections": "Collections",
"tags": "Etiquetes" "tags": "Etiquetes"
}, },
"zabbix": { "zabbix": {
"unclassified": "No classificat", "unclassified": "Not classified",
"information": "Informació", "information": "Informació",
"warning": "Avís", "warning": "Warning",
"average": "Mitjana", "average": "Average",
"high": "Alt", "high": "High",
"disaster": "Desastre" "disaster": "Disaster"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "Vehicle", "vehicle": "Vehicle",
"vehicles": "Vehicles", "vehicles": "Vehicles",
"serviceRecords": "Constàncies de manteniment", "serviceRecords": "Service Records",
"reminders": "Recordatoris", "reminders": "Reminders",
"nextReminder": "Proper recordatori", "nextReminder": "Next Reminder",
"none": "Cap" "none": "None"
},
"vikunja": {
"projects": "Projectes actius",
"tasks7d": "Tasques a completar aquesta setmana",
"tasksOverdue": "Tasques vençudes",
"tasksInProgress": "Tasques en marxa"
},
"headscale": {
"name": "Nom",
"address": "Adreça",
"last_seen": "Vist per darrer cop",
"status": "Estat",
"online": "En línia",
"offline": "Fora de línia"
},
"beszel": {
"name": "Nom",
"systems": "Sistemes",
"up": "Actiu",
"down": "Inactiu",
"paused": "En pausa",
"pending": "Pendent",
"status": "Estat",
"updated": "Actualitzat",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disc",
"network": "XARXA"
},
"argocd": {
"apps": "Apps",
"synced": "Sincronitzats",
"outOfSync": "Dessincronitzats",
"healthy": "Saludable",
"degraded": "Degradats",
"progressing": "Progressant",
"missing": "Falten",
"suspended": "Suspesos"
},
"spoolman": {
"loading": "Carregant"
},
"gitlab": {
"groups": "Grups",
"issues": "Problemes",
"merges": "Merge Requests",
"projects": "Projectes"
},
"apcups": {
"status": "Estat",
"load": "Càrrega",
"bcharge": "Càrrega de la bateria",
"timeleft": "Temps restant"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Etiquetes"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "měs.", "months": "měs.",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Mřížka", "grid_power": "Mřížka",
"home_power": "Spotřeba", "home_power": "Spotřeba",
"charge_power": "Nabíječka", "charge_power": "Nabíječka",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Stahování", "download": "Stahování",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "Přijaté", "received": "Přijaté",
"sent": "Odeslané", "sent": "Odeslané",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Odesílání dat", "upstreams": "Odesílání dat",
@@ -178,7 +176,7 @@
"connectedAp": "Připojené APs", "connectedAp": "Připojené APs",
"activeUser": "Aktivní zařízení", "activeUser": "Aktivní zařízení",
"alerts": "Upozornění", "alerts": "Upozornění",
"connectedGateways": "Connected gateways", "connectedGateway": "Připojené brány",
"connectedSwitches": "Připojené přepínače" "connectedSwitches": "Připojené přepínače"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Zastaveno", "stopped": "Zastaveno",
"total": "Celkem" "total": "Celkem"
}, },
"suwayomi": {
"download": "Staženo",
"nondownload": "Non-Downloaded",
"read": "Přečteno",
"unread": "Nepřečteno",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Adresa", "address": "Adresa",
"expires": "Vyprší", "expires": "Vyprší",
@@ -704,10 +692,6 @@
"processed": "Zpracováno", "processed": "Zpracováno",
"time": "Čas" "time": "Čas"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Nástěnky", "dashboards": "Nástěnky",
"datasources": "Zdroje dat", "datasources": "Zdroje dat",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Adresa",
"last_seen": "Naposledy viděno",
"status": "Stav",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Pozastaveno",
"pending": "Čeká",
"status": "Stav",
"updated": "Aktualizováno",
"cpu": "CPU",
"memory": "RAM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Zdravý",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Chybějící",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Problémy",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Stav",
"load": "Zatížení",
"bcharge": "Battery Charge",
"timeleft": "Zbývající čas"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mnd", "months": "mnd",
"days": "d", "days": "d",
"hours": "t", "hours": "t",
@@ -120,7 +120,7 @@
"grid_power": "Gitter", "grid_power": "Gitter",
"home_power": "Forbrug", "home_power": "Forbrug",
"charge_power": "Oplader", "charge_power": "Oplader",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Download", "download": "Download",
@@ -148,9 +148,7 @@
"up": "Op", "up": "Op",
"received": "Modtaget", "received": "Modtaget",
"sent": "Sendt", "sent": "Sendt",
"externalIPAddress": "Ekstern IP", "externalIPAddress": "Ekstern IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Forbundne APs", "connectedAp": "Forbundne APs",
"activeUser": "Aktive enheder", "activeUser": "Aktive enheder",
"alerts": "Advarsler", "alerts": "Advarsler",
"connectedGateways": "Connected gateways", "connectedGateway": "Forbundne gateways",
"connectedSwitches": "Forbundne switches" "connectedSwitches": "Forbundne switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Stoppede", "stopped": "Stoppede",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Hentet",
"nondownload": "Non-Downloaded",
"read": "Læst",
"unread": "Ulæst",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Adresse", "address": "Adresse",
"expires": "Udløber", "expires": "Udløber",
@@ -704,10 +692,6 @@
"processed": "Behandlet", "processed": "Behandlet",
"time": "Tid" "time": "Tid"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Kontrolpanel", "dashboards": "Kontrolpanel",
"datasources": "Data Kilder", "datasources": "Data Kilder",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Navn",
"address": "Adresse",
"last_seen": "Sidst Set",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Navn",
"systems": "Systems",
"up": "Op",
"down": "Ned",
"paused": "Pause",
"pending": "Afventer",
"status": "Status",
"updated": "Opdateret",
"cpu": "CPU",
"memory": "RAM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Sund",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Mangler",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Problemer",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Belastning",
"bcharge": "Batteriniveau",
"timeleft": "Resterende tid"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "Mo.", "months": "Mo.",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -85,16 +85,16 @@
"ping": { "ping": {
"error": "Fehler", "error": "Fehler",
"ping": "Ping", "ping": "Ping",
"down": "Offline", "down": "Empfangen",
"up": "Online", "up": "Senden",
"not_available": "Nicht verfügbar" "not_available": "Nicht verfügbar"
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "HTTP-Status", "http_status": "HTTP-Status",
"error": "Fehler", "error": "Fehler",
"response": "Antwort", "response": "Antwort",
"down": "Offline", "down": "Empfangen",
"up": "Online", "up": "Senden",
"not_available": "Nicht verfügbar" "not_available": "Nicht verfügbar"
}, },
"emby": { "emby": {
@@ -120,7 +120,7 @@
"grid_power": "Netz", "grid_power": "Netz",
"home_power": "verbauch", "home_power": "verbauch",
"charge_power": "Ladegerät", "charge_power": "Ladegerät",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Download", "download": "Download",
@@ -144,13 +144,11 @@
"uptime": "Betriebszeit", "uptime": "Betriebszeit",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
"down": "Offline", "down": "Empfangen",
"up": "Online", "up": "Senden",
"received": "Empfangen", "received": "Empfangen",
"sent": "Gesendet", "sent": "Gesendet",
"externalIPAddress": "Externe IP", "externalIPAddress": "Externe IP"
"externalIPv6Address": "Externe IPv6",
"externalIPv6Prefix": "Externer IPv4-Präfix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Verbundene APs", "connectedAp": "Verbundene APs",
"activeUser": "Aktive Geräte", "activeUser": "Aktive Geräte",
"alerts": "Warnungen", "alerts": "Warnungen",
"connectedGateways": "Verbundene Gateways", "connectedGateway": "Verbundene Gateways",
"connectedSwitches": "Verbundene Switche" "connectedSwitches": "Verbundene Switche"
}, },
"nzbget": { "nzbget": {
@@ -307,20 +305,10 @@
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Wird ausgeführt", "running": "Werden ausgeführt",
"stopped": "Gestoppt", "stopped": "Gestoppt",
"total": "Gesamt" "total": "Gesamt"
}, },
"suwayomi": {
"download": "Heruntergeladen",
"nondownload": "Nicht heruntergeladen",
"read": "Gelesen",
"unread": "Ungelesen",
"downloadedread": "Heruntergeladen & gelesen",
"downloadedunread": "Heruntergeladen & ungelesen",
"nondownloadedread": "Nicht heruntergeladen & gelesen",
"nondownloadedunread": "Nicht heruntergeladen & ungelesen"
},
"tailscale": { "tailscale": {
"address": "Adresse", "address": "Adresse",
"expires": "Läuft ab", "expires": "Läuft ab",
@@ -352,7 +340,7 @@
"queue": "Warteschlange", "queue": "Warteschlange",
"processed": "Verarbeitet", "processed": "Verarbeitet",
"errored": "Fehlgeschlagen", "errored": "Fehlgeschlagen",
"saved": "Eingespart" "saved": "Gespeichert"
}, },
"traefik": { "traefik": {
"routers": "Router", "routers": "Router",
@@ -523,15 +511,15 @@
"up_to_date": "Aktuell", "up_to_date": "Aktuell",
"child_bridges": "Unter-Bridges", "child_bridges": "Unter-Bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Online", "up": "Senden",
"pending": "Ausstehend", "pending": "Ausstehend",
"down": "Offline" "down": "Empfangen"
}, },
"healthchecks": { "healthchecks": {
"new": "Neu", "new": "Neu",
"up": "Online", "up": "Senden",
"grace": "In Karenzzeit", "grace": "In Karenzzeit",
"down": "Offline", "down": "Empfangen",
"paused": "Pausiert", "paused": "Pausiert",
"status": "Status", "status": "Status",
"last_ping": "Letzter Ping", "last_ping": "Letzter Ping",
@@ -646,8 +634,8 @@
"load": "Durchschnittliche Last", "load": "Durchschnittliche Last",
"memory": "Speichernutzung", "memory": "Speichernutzung",
"wanStatus": "WAN-Status", "wanStatus": "WAN-Status",
"up": "Online", "up": "Senden",
"down": "Offline", "down": "Empfangen",
"temp": "Temperatur", "temp": "Temperatur",
"disk": "Datenträgernutzung", "disk": "Datenträgernutzung",
"wanIP": "WAN-IP" "wanIP": "WAN-IP"
@@ -704,10 +692,6 @@
"processed": "Verarbeitet", "processed": "Verarbeitet",
"time": "Zeit" "time": "Zeit"
}, },
"firefly": {
"networth": "Reinvermögen",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Datenquellen", "datasources": "Datenquellen",
@@ -832,8 +816,8 @@
"openwrt": { "openwrt": {
"uptime": "Betriebszeit", "uptime": "Betriebszeit",
"cpuLoad": "CPU-Last (5 min-Durchschnitt)", "cpuLoad": "CPU-Last (5 min-Durchschnitt)",
"up": "Online", "up": "Senden",
"down": "Offline", "down": "Empfangen",
"bytesTx": "Übertragen", "bytesTx": "Übertragen",
"bytesRx": "Empfangen" "bytesRx": "Empfangen"
}, },
@@ -846,9 +830,9 @@
"sitesDown": "Seiten nicht verfügbar", "sitesDown": "Seiten nicht verfügbar",
"paused": "Pausiert", "paused": "Pausiert",
"notyetchecked": "Noch nicht geprüft", "notyetchecked": "Noch nicht geprüft",
"up": "Online", "up": "Senden",
"seemsdown": "Scheint nicht verfügbar", "seemsdown": "Scheint nicht verfügbar",
"down": "Offline", "down": "Empfangen",
"unknown": "Unbekannt" "unknown": "Unbekannt"
}, },
"calendar": { "calendar": {
@@ -969,66 +953,5 @@
"reminders": "Erinnerungen", "reminders": "Erinnerungen",
"nextReminder": "Nächste Erinnerung", "nextReminder": "Nächste Erinnerung",
"none": "Keine" "none": "Keine"
},
"vikunja": {
"projects": "Aktive Projekte",
"tasks7d": "Diese Woche fällige Aufgaben",
"tasksOverdue": "Überfällige Aufgaben",
"tasksInProgress": "Aufgaben in Arbeit"
},
"headscale": {
"name": "Name",
"address": "Adresse",
"last_seen": "Zuletzt gesehen",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systeme",
"up": "Online",
"down": "Offline",
"paused": "Pausiert",
"pending": "Ausstehend",
"status": "Status",
"updated": "Aktualisiert",
"cpu": "CPU",
"memory": "RAM",
"disk": "Festplatte",
"network": "NET"
},
"argocd": {
"apps": "Anwendungen",
"synced": "Synchronisiert",
"outOfSync": "Nicht mehr synchronisiert",
"healthy": "Fehlerfrei",
"degraded": "Beeinträchtigt",
"progressing": "Fortschritt",
"missing": "Fehlend",
"suspended": "Unterbrochen"
},
"spoolman": {
"loading": "Wird geladen"
},
"gitlab": {
"groups": "Gruppen",
"issues": "Probleme",
"merges": "Merge Requests",
"projects": "Projekte"
},
"apcups": {
"status": "Status",
"load": "Last",
"bcharge": "Akkuladung",
"timeleft": "Verbleibende Zeit"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Schlagwörter"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Πλέγμα", "grid_power": "Πλέγμα",
"home_power": "Κατανάλωση", "home_power": "Κατανάλωση",
"charge_power": "Φορτιστής", "charge_power": "Φορτιστής",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Λήξη", "download": "Λήξη",
@@ -148,9 +148,7 @@
"up": "Ping up", "up": "Ping up",
"received": "Ληφθέντα", "received": "Ληφθέντα",
"sent": "Απεσταλμένα", "sent": "Απεσταλμένα",
"externalIPAddress": "Εξωτερική IP", "externalIPAddress": "Εξωτερική IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Συνδεδεμένα APs", "connectedAp": "Συνδεδεμένα APs",
"activeUser": "Ενεργές συσκευές", "activeUser": "Ενεργές συσκευές",
"alerts": "Ειδοποιήσεις", "alerts": "Ειδοποιήσεις",
"connectedGateways": "Connected gateways", "connectedGateway": "Συνδεδεμένα gateways",
"connectedSwitches": "Συνδεδεμένα switches" "connectedSwitches": "Συνδεδεμένα switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Σταματημένο", "stopped": "Σταματημένο",
"total": "Σύνολο" "total": "Σύνολο"
}, },
"suwayomi": {
"download": "Κατεβασμένο",
"nondownload": "Non-Downloaded",
"read": "Διαβάστηκε",
"unread": "Μη Διαβασμένο",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Διεύθυνση", "address": "Διεύθυνση",
"expires": "Λήγει", "expires": "Λήγει",
@@ -704,10 +692,6 @@
"processed": "Σε επεξεργασία", "processed": "Σε επεξεργασία",
"time": "Ώρα" "time": "Ώρα"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Πίνακας Ελέγχου", "dashboards": "Πίνακας Ελέγχου",
"datasources": "Πηγές Δεδομένων", "datasources": "Πηγές Δεδομένων",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Όνομα",
"address": "Διεύθυνση",
"last_seen": "Τελευταία Σύνδεση",
"status": "Κατάσταση",
"online": "Συνδεδεμένοι",
"offline": "Εκτός σύνδεσης"
},
"beszel": {
"name": "Όνομα",
"systems": "Systems",
"up": "Ping up",
"down": "Ping down",
"paused": "Paused",
"pending": "Σε εκκρεμότητα",
"status": "Κατάσταση",
"updated": "Ενημερώθηκε",
"cpu": "Επεξεργαστής",
"memory": "Μνήμη",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Υγειές",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Απουσιάζει",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Κατάσταση",
"load": "Φόρτωση",
"bcharge": "Battery Charge",
"timeleft": "Χρόνος που απομένει"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Ετικέτες"
} }
} }

View File

@@ -120,7 +120,7 @@
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Download", "download": "Download",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "Received", "received": "Received",
"sent": "Sent", "sent": "Sent",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Connected APs", "connectedAp": "Connected APs",
"activeUser": "Active devices", "activeUser": "Active devices",
"alerts": "Alerts", "alerts": "Alerts",
"connectedGateways": "Connected gateways", "connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches" "connectedSwitches": "Connected switches"
}, },
"nzbget": { "nzbget": {
@@ -704,10 +702,6 @@
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -988,47 +982,11 @@
"name": "Name", "name": "Name",
"systems": "Systems", "systems": "Systems",
"up": "Up", "up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Status", "status": "Status",
"updated": "Updated", "updated": "Updated",
"cpu": "CPU", "cpu": "CPU",
"memory": "MEM", "memory": "MEM",
"disk": "Disk", "disk": "Disk",
"network": "NET" "network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Load",
"bcharge":"Battery Charge",
"timeleft":"Time Left"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Elŝuti", "download": "Elŝuti",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "Received", "received": "Received",
"sent": "Sent", "sent": "Sent",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Connected APs", "connectedAp": "Connected APs",
"activeUser": "Active devices", "activeUser": "Active devices",
"alerts": "Alerts", "alerts": "Alerts",
"connectedGateways": "Connected gateways", "connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches" "connectedSwitches": "Connected switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Stopped", "stopped": "Stopped",
"total": "Totalo" "total": "Totalo"
}, },
"suwayomi": {
"download": "Downloaded",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -704,10 +692,6 @@
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Stato",
"online": "Online",
"offline": "Malkonekta"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Stato",
"updated": "Updated",
"cpu": "Ĉefprocesoro",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Sana",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Stato",
"load": "Ŝarĝo",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "me", "months": "me",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Red", "grid_power": "Red",
"home_power": "Consumo", "home_power": "Consumo",
"charge_power": "Cargador", "charge_power": "Cargador",
"kilowatt": "kW" "watt_hour": "vatio-hora (Wh)"
}, },
"flood": { "flood": {
"download": "Descarga", "download": "Descarga",
@@ -148,9 +148,7 @@
"up": "Activo", "up": "Activo",
"received": "Recibido", "received": "Recibido",
"sent": "Enviado", "sent": "Enviado",
"externalIPAddress": "IP ext.", "externalIPAddress": "IP ext."
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstream (desarrollo de software)", "upstreams": "Upstream (desarrollo de software)",
@@ -178,7 +176,7 @@
"connectedAp": "AP conectados", "connectedAp": "AP conectados",
"activeUser": "Dispositivos activos", "activeUser": "Dispositivos activos",
"alerts": "Alertas", "alerts": "Alertas",
"connectedGateways": "Connected gateways", "connectedGateway": "Puertas de enlace conectadas",
"connectedSwitches": "Conmutadores conectados" "connectedSwitches": "Conmutadores conectados"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Detenido", "stopped": "Detenido",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Descargado",
"nondownload": "No descargado",
"read": "Leer",
"unread": "Sin leer",
"downloadedread": "Descargado y leído",
"downloadedunread": "Descargado y no leído",
"nondownloadedread": "No descargado y leído",
"nondownloadedunread": "No descargado y no leído"
},
"tailscale": { "tailscale": {
"address": "Dirección", "address": "Dirección",
"expires": "Caduca en", "expires": "Caduca en",
@@ -704,10 +692,6 @@
"processed": "Procesado", "processed": "Procesado",
"time": "Tiempo" "time": "Tiempo"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Tableros", "dashboards": "Tableros",
"datasources": "Fuentes de datos", "datasources": "Fuentes de datos",
@@ -969,66 +953,5 @@
"reminders": "Recordatorios", "reminders": "Recordatorios",
"nextReminder": "Siguiente recordatorio", "nextReminder": "Siguiente recordatorio",
"none": "Nada" "none": "Nada"
},
"vikunja": {
"projects": "Proyectos activos",
"tasks7d": "Tareas que vencen esta semana",
"tasksOverdue": "Tareas vencidas",
"tasksInProgress": "Tareas en progreso"
},
"headscale": {
"name": "Nombre",
"address": "Dirección",
"last_seen": "Visto por última vez",
"status": "Estado",
"online": "En línea",
"offline": "Desconectado"
},
"beszel": {
"name": "Nombre",
"systems": "Sistemas",
"up": "Activo",
"down": "Inactivo",
"paused": "Pausado",
"pending": "Pendiente",
"status": "Estado",
"updated": "Actualizado",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disco",
"network": "RED"
},
"argocd": {
"apps": "Apps",
"synced": "Sincronizado",
"outOfSync": "Desincronizado",
"healthy": "Saludable",
"degraded": "Degradado",
"progressing": "Progresando",
"missing": "Faltantes",
"suspended": "Suspendido"
},
"spoolman": {
"loading": "Cargando"
},
"gitlab": {
"groups": "Grupos",
"issues": "Números",
"merges": "Solicitudes de fusión",
"projects": "Proyectos"
},
"apcups": {
"status": "Estado",
"load": "Carga",
"bcharge": "Carga de la batería",
"timeleft": "Tiempo restante"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Etiquetas"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Download", "download": "Download",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "Received", "received": "Received",
"sent": "Sent", "sent": "Sent",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Connected APs", "connectedAp": "Connected APs",
"activeUser": "Active devices", "activeUser": "Active devices",
"alerts": "Alerts", "alerts": "Alerts",
"connectedGateways": "Connected gateways", "connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches" "connectedSwitches": "Connected switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Stopped", "stopped": "Stopped",
"total": "Guztira" "total": "Guztira"
}, },
"suwayomi": {
"download": "Downloaded",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -704,10 +692,6 @@
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Status",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Osasuntsu",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Load",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Download", "download": "Download",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "Received", "received": "Received",
"sent": "Sent", "sent": "Sent",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Connected APs", "connectedAp": "Connected APs",
"activeUser": "Active devices", "activeUser": "Active devices",
"alerts": "Alerts", "alerts": "Alerts",
"connectedGateways": "Connected gateways", "connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches" "connectedSwitches": "Connected switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Pysäytetty", "stopped": "Pysäytetty",
"total": "Yhteensä" "total": "Yhteensä"
}, },
"suwayomi": {
"download": "Ladattu",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -704,10 +692,6 @@
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Tila",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Vireillä",
"status": "Tila",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Tila",
"load": "Kuorma",
"bcharge": "Battery Charge",
"timeleft": "Aikaa jäljellä"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "j", "days": "j",
"hours": "h", "hours": "h",
@@ -57,14 +57,14 @@
"lan": "LAN", "lan": "LAN",
"wlan": "WLAN", "wlan": "WLAN",
"devices": "Équipt.", "devices": "Équipt.",
"lan_devices": "Périphériques LAN", "lan_devices": "Équipt. LAN",
"wlan_devices": "Périphériques WLAN", "wlan_devices": "Équipt. WLAN",
"lan_users": "Utilisateurs LAN", "lan_users": "Utilisateurs LAN",
"wlan_users": "Utilisateurs WLAN", "wlan_users": "Utilisateurs WLAN",
"up": "Up", "up": "Up",
"down": "INACTIF", "down": "INACTIF",
"wait": "Veuillez patienter", "wait": "Veuillez patienter",
"empty_data": "Statut du sous-système inconnu" "empty_data": "Statut sous-système inconnu"
}, },
"docker": { "docker": {
"rx": "Rx", "rx": "Rx",
@@ -77,24 +77,24 @@
"unknown": "Inconnu", "unknown": "Inconnu",
"healthy": "Fonctionnel", "healthy": "Fonctionnel",
"starting": "Démarrage", "starting": "Démarrage",
"unhealthy": "Mauvaise santé", "unhealthy": "Dysfonctionnement",
"not_found": "Introuvable", "not_found": "Inconnu",
"exited": "Arrêté", "exited": "Arrêté",
"partial": "Partiel" "partial": "Partiel"
}, },
"ping": { "ping": {
"error": "Erreur", "error": "Erreur",
"ping": "Latence", "ping": "Ping",
"down": "Bas", "down": "Down",
"up": "Haut", "up": "Up",
"not_available": "Non disponible" "not_available": "Non disponible"
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "Statut HTTP", "http_status": "Statut HTTP",
"error": "Erreur", "error": "Erreur",
"response": "Réponse", "response": "Réponse",
"down": "Bas", "down": "Down",
"up": "Haut", "up": "Up",
"not_available": "Non disponible" "not_available": "Non disponible"
}, },
"emby": { "emby": {
@@ -105,7 +105,7 @@
"movies": "Films", "movies": "Films",
"series": "Séries TV", "series": "Séries TV",
"episodes": "Épisodes", "episodes": "Épisodes",
"songs": "Chansons" "songs": "Musique"
}, },
"esphome": { "esphome": {
"offline": "Hors ligne", "offline": "Hors ligne",
@@ -120,11 +120,11 @@
"grid_power": "Grille", "grid_power": "Grille",
"home_power": "Consommation", "home_power": "Consommation",
"charge_power": "Chargeur", "charge_power": "Chargeur",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Récep.", "download": "Récep.",
"upload": "Téléverser", "upload": "Envoi",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
@@ -144,25 +144,23 @@
"uptime": "Démarré depuis", "uptime": "Démarré depuis",
"maxDown": "Max. Bas", "maxDown": "Max. Bas",
"maxUp": "Max. Haut", "maxUp": "Max. Haut",
"down": "Bas", "down": "Down",
"up": "Haut", "up": "Up",
"received": "Reçu", "received": "Reçu",
"sent": "Envoyé", "sent": "Envoyé",
"externalIPAddress": "IP externe", "externalIPAddress": "IP externe"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "En amont", "upstreams": "Upstreams",
"requests": "Demandes en cours", "requests": "Demandes en cours",
"requests_failed": "Demandes échouées" "requests_failed": "Demandes échouées"
}, },
"changedetectionio": { "changedetectionio": {
"totalObserved": "Total Observé", "totalObserved": "Total Observé",
"diffsDetected": "Différences détectées" "diffsDetected": "Diffs détectées"
}, },
"channelsdvrserver": { "channelsdvrserver": {
"shows": "Séries", "shows": "Affichages",
"recordings": "Enregistrements", "recordings": "Enregistrements",
"scheduled": "Planifié", "scheduled": "Planifié",
"passes": "Passes" "passes": "Passes"
@@ -176,10 +174,10 @@
}, },
"omada": { "omada": {
"connectedAp": "AP connectés", "connectedAp": "AP connectés",
"activeUser": "Périphériques actifs", "activeUser": "Équipts actifs",
"alerts": "Alertes", "alerts": "Alertes",
"connectedGateways": "Connected gateways", "connectedGateway": "Passerelles connectées",
"connectedSwitches": "Switchs connectés" "connectedSwitches": "Switches connectés"
}, },
"nzbget": { "nzbget": {
"rate": "Débit", "rate": "Débit",
@@ -190,7 +188,7 @@
"streams": "Flux actif", "streams": "Flux actif",
"albums": "Albums", "albums": "Albums",
"movies": "Films", "movies": "Films",
"tv": "Séries" "tv": "Séries TV"
}, },
"sabnzbd": { "sabnzbd": {
"rate": "Débit", "rate": "Débit",
@@ -199,68 +197,68 @@
}, },
"rutorrent": { "rutorrent": {
"active": "Actif", "active": "Actif",
"upload": "Téléverser", "upload": "Envoi",
"download": "Récep." "download": "Récep."
}, },
"transmission": { "transmission": {
"download": "Récep.", "download": "Récep.",
"upload": "Téléverser", "upload": "Envoi",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Récep.", "download": "Récep.",
"upload": "Téléverser", "upload": "Envoi",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"qnap": { "qnap": {
"cpuUsage": "Processeur utilisé", "cpuUsage": "Cpu",
"memUsage": "Mémoire utilisée", "memUsage": "Mém",
"systemTempC": "Température système", "systemTempC": "Temp",
"poolUsage": "Utilisation de la pool", "poolUsage": "Pool",
"volumeUsage": "Utilisation du volume", "volumeUsage": "Volume",
"invalid": "Invalide" "invalid": "Invalide"
}, },
"deluge": { "deluge": {
"download": "Récep.", "download": "Récep.",
"upload": "Téléverser", "upload": "Envoi",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "Octets de la mémoire cache", "cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Octets manquants du cache" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Récep.", "download": "Récep.",
"upload": "Téléverser", "upload": "Envoi",
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"sonarr": { "sonarr": {
"wanted": "Demandé", "wanted": "Demande",
"queued": "En file d'attente", "queued": "Attente",
"series": "Séries TV", "series": "Séries TV",
"queue": "En attente", "queue": "En attente",
"unknown": "Inconnu" "unknown": "Inconnu"
}, },
"radarr": { "radarr": {
"wanted": "Demandé", "wanted": "Demande",
"missing": "Manquant", "missing": "Manquant",
"queued": "En file d'attente", "queued": "Attente",
"movies": "Films", "movies": "Films",
"queue": "En attente", "queue": "En attente",
"unknown": "Inconnu" "unknown": "Inconnu"
}, },
"lidarr": { "lidarr": {
"wanted": "Demandé", "wanted": "Demande",
"queued": "En file d'attente", "queued": "Attente",
"artists": "Artistes" "artists": "Artistes"
}, },
"readarr": { "readarr": {
"wanted": "Demandé", "wanted": "Demande",
"queued": "En file d'attente", "queued": "Attente",
"books": "Livres" "books": "Livres"
}, },
"bazarr": { "bazarr": {
@@ -269,18 +267,18 @@
}, },
"ombi": { "ombi": {
"pending": "En attente", "pending": "En attente",
"approved": "Approuvé", "approved": "Validé",
"available": "Disponible" "available": "Disponible"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "En attente", "pending": "En attente",
"approved": "Approuvé", "approved": "Validé",
"available": "Disponible" "available": "Disponible"
}, },
"overseerr": { "overseerr": {
"pending": "En attente", "pending": "En attente",
"processing": "En cours de traitement", "processing": "Traitement",
"approved": "Approuvé", "approved": "Validé",
"available": "Disponible" "available": "Disponible"
}, },
"netalertx": { "netalertx": {
@@ -292,7 +290,7 @@
"pihole": { "pihole": {
"queries": "Requêtes", "queries": "Requêtes",
"blocked": "Bloqué", "blocked": "Bloqué",
"blocked_percent": "% bloqué", "blocked_percent": "Bloqué %",
"gravity": "Listes dom. bloqués" "gravity": "Listes dom. bloqués"
}, },
"adguard": { "adguard": {
@@ -302,25 +300,15 @@
"latency": "Latence" "latency": "Latence"
}, },
"speedtest": { "speedtest": {
"upload": "Téléverser", "upload": "Envoi",
"download": "Récep.", "download": "Récep.",
"ping": "Latence" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Démarré", "running": "Démarré",
"stopped": "Arrêté", "stopped": "Arrêté",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Téléchargé",
"nondownload": "Non téléchargé",
"read": "Lu",
"unread": "Non lu",
"downloadedread": "Téléchargé et lu",
"downloadedunread": "Téléchargé et non lu",
"nondownloadedread": "Non téléchargé et lu",
"nondownloadedunread": "Non téléchargé et non lu"
},
"tailscale": { "tailscale": {
"address": "Adresse", "address": "Adresse",
"expires": "Expire", "expires": "Expire",
@@ -337,22 +325,22 @@
}, },
"technitium": { "technitium": {
"totalQueries": "Requêtes", "totalQueries": "Requêtes",
"totalNoError": "Succès", "totalNoError": "Success",
"totalServerFailure": "Échecs", "totalServerFailure": "Failures",
"totalNxDomain": "Domaines NX", "totalNxDomain": "NX Domains",
"totalRefused": "Refusés", "totalRefused": "Refused",
"totalAuthoritative": "Autoritaire", "totalAuthoritative": "Authoritative",
"totalRecursive": "Récursif", "totalRecursive": "Recursive",
"totalCached": "Mis en cache", "totalCached": "Cached",
"totalBlocked": "Bloqué", "totalBlocked": "Bloqué",
"totalDropped": "Abandonné", "totalDropped": "Dropped",
"totalClients": "Clients" "totalClients": "Clients"
}, },
"tdarr": { "tdarr": {
"queue": "En attente", "queue": "En attente",
"processed": "Traité", "processed": "Traité",
"errored": "Erroné", "errored": "En erreur",
"saved": "Enregistré" "saved": "Libéré"
}, },
"traefik": { "traefik": {
"routers": "Routeurs", "routers": "Routeurs",
@@ -376,35 +364,35 @@
"30days": "30 Jours" "30days": "30 Jours"
}, },
"gotify": { "gotify": {
"apps": "Applications", "apps": "Applis",
"clients": "Clients", "clients": "Clients",
"messages": "Messages" "messages": "Msg"
}, },
"prowlarr": { "prowlarr": {
"enableIndexers": "Indexeur", "enableIndexers": "Indexeur",
"numberOfGrabs": "Captures", "numberOfGrabs": "Capture",
"numberOfQueries": "Requêtes", "numberOfQueries": "Requêtes",
"numberOfFailGrabs": "Captures échouées", "numberOfFailGrabs": "Capt. échouée",
"numberOfFailQueries": "Demandes échouées" "numberOfFailQueries": "Dem. échouée"
}, },
"jackett": { "jackett": {
"configured": "Configuré", "configured": "Configuré",
"errored": "Erroné" "errored": "En erreur"
}, },
"strelaysrv": { "strelaysrv": {
"numActiveSessions": "Sessions", "numActiveSessions": "Sessions",
"numConnections": "Connexions", "numConnections": "Cnx",
"dataRelayed": "Relayé", "dataRelayed": "Relayé",
"transferRate": "Débit" "transferRate": "Débit"
}, },
"mastodon": { "mastodon": {
"user_count": "Utilisateurs", "user_count": "Utilisateurs",
"status_count": "Articles", "status_count": "Messages",
"domain_count": "Domaines" "domain_count": "Domaines"
}, },
"medusa": { "medusa": {
"wanted": "Demandé", "wanted": "Demande",
"queued": "En file d'attente", "queued": "Attente",
"series": "Séries TV" "series": "Séries TV"
}, },
"minecraft": { "minecraft": {
@@ -420,13 +408,13 @@
}, },
"authentik": { "authentik": {
"users": "Utilisateurs", "users": "Utilisateurs",
"loginsLast24H": "Connexions (24 h)", "loginsLast24H": "Cnx. (24h)",
"failedLoginsLast24H": "Connexions échouées (24 h)" "failedLoginsLast24H": "Cnx. échouées (24h)"
}, },
"proxmox": { "proxmox": {
"mem": "MÉM", "mem": "MÉM",
"cpu": "CPU", "cpu": "CPU",
"lxc": "LXC", "lxc": "LxC",
"vms": "VMs" "vms": "VMs"
}, },
"glances": { "glances": {
@@ -434,7 +422,7 @@
"load": "Charge", "load": "Charge",
"wait": "Veuillez patienter", "wait": "Veuillez patienter",
"temp": "Temp", "temp": "Temp",
"_temp": "Température", "_temp": "T°",
"warn": "Alerte", "warn": "Alerte",
"uptime": "Up", "uptime": "Up",
"total": "Total", "total": "Total",
@@ -445,12 +433,12 @@
"crit": "Crit.", "crit": "Crit.",
"read": "Lu", "read": "Lu",
"write": "Écrit.", "write": "Écrit.",
"gpu": "Carte Graphique", "gpu": "GPU",
"mem": "Mém.", "mem": "Mém.",
"swap": "Swap" "swap": "Swap"
}, },
"quicklaunch": { "quicklaunch": {
"bookmark": "Marque-Page", "bookmark": "Signet",
"service": "Service", "service": "Service",
"search": "Recherche", "search": "Recherche",
"custom": "Personnalisé", "custom": "Personnalisé",
@@ -460,13 +448,13 @@
}, },
"wmo": { "wmo": {
"0-day": "Ensoleillé", "0-day": "Ensoleillé",
"0-night": "Clair", "0-night": "Ciel clair",
"1-day": "Principalement ensoleillé", "1-day": "Principalement ensoleillé",
"1-night": "Principalement clair", "1-night": "Principalement clair",
"2-day": "Partiellement nuageux", "2-day": "Partiellement couvert",
"2-night": "Partiellement nuageux", "2-night": "Partiellement couvert",
"3-day": "Nuageux", "3-day": "Couvert",
"3-night": "Nuageux", "3-night": "Couvert",
"45-day": "Brumeux", "45-day": "Brumeux",
"45-night": "Brumeux", "45-night": "Brumeux",
"48-day": "Brumeux", "48-day": "Brumeux",
@@ -485,14 +473,14 @@
"61-night": "Pluie légère", "61-night": "Pluie légère",
"63-day": "Pluie", "63-day": "Pluie",
"63-night": "Pluie", "63-night": "Pluie",
"65-day": "Forte pluie", "65-day": "Pluie forte",
"65-night": "Forte pluie", "65-night": "Pluie forte",
"66-day": "Pluie verglaçante", "66-day": "Pluie verglaçante",
"66-night": "Pluie verglaçante", "66-night": "Pluie verglaçante",
"67-day": "Pluie verglaçante", "67-day": "Pluie verglaçante",
"67-night": "Pluie verglaçante", "67-night": "Pluie verglaçante",
"71-day": "Légères chutes de neige", "71-day": "Neige légère",
"71-night": "Légères chutes de neige", "71-night": "Neige légère",
"73-day": "Neige", "73-day": "Neige",
"73-night": "Neige", "73-night": "Neige",
"75-day": "Neige abondante", "75-day": "Neige abondante",
@@ -523,15 +511,15 @@
"up_to_date": "À jour", "up_to_date": "À jour",
"child_bridges": "Child Bridges", "child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Haut", "up": "Up",
"pending": "En attente", "pending": "En attente",
"down": "Bas" "down": "Down"
}, },
"healthchecks": { "healthchecks": {
"new": "Nouveau", "new": "Nouveau",
"up": "Haut", "up": "Up",
"grace": "En Période de Grâce", "grace": "En Période de Grâce",
"down": "Bas", "down": "Down",
"paused": "En Pause", "paused": "En Pause",
"status": "Statut", "status": "Statut",
"last_ping": "Dernier Ping", "last_ping": "Dernier Ping",
@@ -543,7 +531,7 @@
"containers_failed": "Échoué" "containers_failed": "Échoué"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Approuvé", "approvedPushes": "Validé",
"rejectedPushes": "Rejeté", "rejectedPushes": "Rejeté",
"filters": "Filtres", "filters": "Filtres",
"indexers": "Indexeur" "indexers": "Indexeur"
@@ -552,7 +540,7 @@
"downloads": "En attente", "downloads": "En attente",
"videos": "Vidéos", "videos": "Vidéos",
"channels": "Chaînes", "channels": "Chaînes",
"playlists": "Listes de lecture" "playlists": "Playlists"
}, },
"truenas": { "truenas": {
"load": "Charge Système", "load": "Charge Système",
@@ -592,9 +580,9 @@
"total": "Total" "total": "Total"
}, },
"peanut": { "peanut": {
"battery_charge": "Charge de la batterie", "battery_charge": "Charge Batterie",
"ups_load": "Charge de lASI", "ups_load": "Charge de l'UPS",
"ups_status": "État de lASI", "ups_status": "État de l'UPS",
"online": "En ligne", "online": "En ligne",
"on_battery": "Sur Batterie", "on_battery": "Sur Batterie",
"low_battery": "Batterie Faible" "low_battery": "Batterie Faible"
@@ -604,8 +592,8 @@
"no_devices": "Aucune donnée d'appareil reçue" "no_devices": "Aucune donnée d'appareil reçue"
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "Charge du processeur", "cpuLoad": "Charge CPU",
"memoryUsed": "Mémoire utilisée", "memoryUsed": "Mém. Utilisée",
"uptime": "Démarré depuis", "uptime": "Démarré depuis",
"numberOfLeases": "Baux" "numberOfLeases": "Baux"
}, },
@@ -617,25 +605,25 @@
"opendtu": { "opendtu": {
"yieldDay": "Aujourd'hui", "yieldDay": "Aujourd'hui",
"absolutePower": "Puissance", "absolutePower": "Puissance",
"relativePower": "% de puissance", "relativePower": "Puissance %",
"limit": "Limite" "limit": "Limite"
}, },
"opnsense": { "opnsense": {
"cpu": "Charge du processeur", "cpu": "Charge CPU",
"memory": "Mémoire utilisée", "memory": "Mém. utilisée",
"wanUpload": "WAN Envoi", "wanUpload": "WAN Envoi",
"wanDownload": "WAN Récep." "wanDownload": "WAN Récep."
}, },
"moonraker": { "moonraker": {
"printer_state": "État de l'imprimante", "printer_state": "État Imprimante",
"print_status": "Statut de l'imprimante", "print_status": "Statut Imprimante",
"print_progress": "Progression", "print_progress": "Progression",
"layers": "Couches" "layers": "Couches"
}, },
"octoprint": { "octoprint": {
"printer_state": "Statut", "printer_state": "Statut",
"temp_tool": "Temp. de l'outil", "temp_tool": "Tool T°",
"temp_bed": "Temp. du lit", "temp_bed": "Bed T°",
"job_completion": "Achèvement" "job_completion": "Achèvement"
}, },
"cloudflared": { "cloudflared": {
@@ -646,9 +634,9 @@
"load": "Charge moy.", "load": "Charge moy.",
"memory": "Util. Mém.", "memory": "Util. Mém.",
"wanStatus": "Statut WAN", "wanStatus": "Statut WAN",
"up": "Haut", "up": "Up",
"down": "Bas", "down": "Down",
"temp": "Température", "temp": "T°",
"disk": "Util. Disque", "disk": "Util. Disque",
"wanIP": "IP WAN" "wanIP": "IP WAN"
}, },
@@ -690,7 +678,7 @@
"mylar": { "mylar": {
"series": "Séries TV", "series": "Séries TV",
"issues": "Anomalies", "issues": "Anomalies",
"wanted": "Demandé" "wanted": "Demande"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Albums",
@@ -700,14 +688,10 @@
}, },
"fileflows": { "fileflows": {
"queue": "En attente", "queue": "En attente",
"processing": "En cours de traitement", "processing": "Traitement",
"processed": "Traité", "processed": "Traité",
"time": "Temps" "time": "Temps"
}, },
"firefly": {
"networth": "Valeur Nette",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Tableau de bord", "dashboards": "Tableau de bord",
"datasources": "Sources données", "datasources": "Sources données",
@@ -760,9 +744,9 @@
"booksDuration": "Durée" "booksDuration": "Durée"
}, },
"homeassistant": { "homeassistant": {
"people_home": "Personne à la maison", "people_home": "People Home",
"lights_on": "Lumières allumées", "lights_on": "Lumières allumées",
"switches_on": "Interrupteurs allumés" "switches_on": "Commutateur On"
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Conteneurs", "monitoring": "Conteneurs",
@@ -772,7 +756,7 @@
"books": "Livres", "books": "Livres",
"authors": "Auteurs", "authors": "Auteurs",
"categories": "Catégories", "categories": "Catégories",
"series": "Séries TV" "series": "Séries"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "En attente", "downloadCount": "En attente",
@@ -795,7 +779,7 @@
"inProgress": "En cours", "inProgress": "En cours",
"totalPrs": "PRs Total", "totalPrs": "PRs Total",
"myPrs": "Mes PRs", "myPrs": "Mes PRs",
"approved": "Approuvé" "approved": "Validé"
}, },
"gamedig": { "gamedig": {
"status": "Statut", "status": "Statut",
@@ -806,8 +790,8 @@
"currentPlayers": "Joueurs actuels", "currentPlayers": "Joueurs actuels",
"players": "Joueurs", "players": "Joueurs",
"maxPlayers": "Joueurs max", "maxPlayers": "Joueurs max",
"bots": "Robots", "bots": "Bots",
"ping": "Latence" "ping": "Ping"
}, },
"urbackup": { "urbackup": {
"ok": "Ok", "ok": "Ok",
@@ -832,8 +816,8 @@
"openwrt": { "openwrt": {
"uptime": "Démarré depuis", "uptime": "Démarré depuis",
"cpuLoad": "Charge moyenne CPU (5 min)", "cpuLoad": "Charge moyenne CPU (5 min)",
"up": "Haut", "up": "Up",
"down": "Bas", "down": "Down",
"bytesTx": "Transmis", "bytesTx": "Transmis",
"bytesRx": "Reçu" "bytesRx": "Reçu"
}, },
@@ -846,9 +830,9 @@
"sitesDown": "Hors ligne", "sitesDown": "Hors ligne",
"paused": "En Pause", "paused": "En Pause",
"notyetchecked": "Non vérifié", "notyetchecked": "Non vérifié",
"up": "Haut", "up": "Up",
"seemsdown": "Semble hors ligne", "seemsdown": "Semble hors ligne",
"down": "Bas", "down": "Down",
"unknown": "Inconnu" "unknown": "Inconnu"
}, },
"calendar": { "calendar": {
@@ -860,16 +844,16 @@
}, },
"romm": { "romm": {
"platforms": "Plateformes", "platforms": "Plateformes",
"totalRoms": "Jeux", "totalRoms": "Games",
"saves": "Sauvegardes", "saves": "Saves",
"states": "États", "states": "States",
"screenshots": "Captures d'écran", "screenshots": "Screenshots",
"totalfilesize": "Taille totale" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Domaines", "domains": "Domaines",
"mailboxes": "Boites mail", "mailboxes": "Mailboxes",
"mails": "Courriels", "mails": "Mails",
"storage": "Stockage" "storage": "Stockage"
}, },
"netdata": { "netdata": {
@@ -918,7 +902,7 @@
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alertes", "alerts": "Alertes",
"bans": "Bannissements" "bans": "Exclusions"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connecté", "connected": "Connecté",
@@ -933,102 +917,41 @@
"banned": "Banni" "banned": "Banni"
}, },
"myspeed": { "myspeed": {
"ping": "Latence", "ping": "Ping",
"download": "Récep.", "download": "Récep.",
"upload": "Téléverser" "upload": "Envoi"
}, },
"stocks": { "stocks": {
"stocks": "Stocks", "stocks": "Stocks",
"loading": "Chargement", "loading": "Loading",
"open": "Ouvert - Marché américain", "open": "Open - US Market",
"closed": "Fermé - marché américain", "closed": "Closed - US Market",
"invalidConfiguration": "Configuration invalide" "invalidConfiguration": "Invalid Configuration"
}, },
"frigate": { "frigate": {
"cameras": "Caméras", "cameras": "Cameras",
"uptime": "Démarré depuis", "uptime": "Démarré depuis",
"version": "Version" "version": "Version"
}, },
"linkwarden": { "linkwarden": {
"links": "Liens", "links": "Links",
"collections": "Collections", "collections": "Collections",
"tags": "Étiquettes" "tags": "Étiquettes"
}, },
"zabbix": { "zabbix": {
"unclassified": "Non classé", "unclassified": "Not classified",
"information": "Informations", "information": "Informations",
"warning": "Attention", "warning": "Warning",
"average": "Moyenne", "average": "Average",
"high": "Élevé", "high": "High",
"disaster": "" "disaster": "Disaster"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "Véhicule", "vehicle": "Vehicle",
"vehicles": "Véhicules", "vehicles": "Vehicles",
"serviceRecords": "Service d'enregistrements", "serviceRecords": "Service Records",
"reminders": "Rappels", "reminders": "Reminders",
"nextReminder": "Prochain rappel", "nextReminder": "Next Reminder",
"none": "Aucun" "none": "None"
},
"vikunja": {
"projects": "Projets actifs",
"tasks7d": "Tâches à faire cette semaine",
"tasksOverdue": "Tâches en retard",
"tasksInProgress": "Tâche en cours"
},
"headscale": {
"name": "Nom",
"address": "Adresse",
"last_seen": "Vu pour la dernière fois",
"status": "Statut",
"online": "En ligne",
"offline": "Hors ligne"
},
"beszel": {
"name": "Nom",
"systems": "Systèmes",
"up": "Haut",
"down": "Bas",
"paused": "En Pause",
"pending": "En attente",
"status": "Statut",
"updated": "Mis à jour",
"cpu": "CPU",
"memory": "MÉM",
"disk": "Disque",
"network": "Réseau"
},
"argocd": {
"apps": "Applications",
"synced": "Synchronisé",
"outOfSync": "Désynchronisé",
"healthy": "Fonctionnel",
"degraded": "Dégradé",
"progressing": "En cours",
"missing": "Manquant",
"suspended": "Suspendu"
},
"spoolman": {
"loading": "Chargement"
},
"gitlab": {
"groups": "Groupes",
"issues": "Anomalies",
"merges": "Demandes de fusion de branches",
"projects": "Projets"
},
"apcups": {
"status": "Statut",
"load": "Charge",
"bcharge": "Charge de la batterie",
"timeleft": "Temps restant"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Étiquettes"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Download", "download": "Download",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "Received", "received": "Received",
"sent": "Sent", "sent": "Sent",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Connected APs", "connectedAp": "Connected APs",
"activeUser": "Active devices", "activeUser": "Active devices",
"alerts": "Alerts", "alerts": "Alerts",
"connectedGateways": "Connected gateways", "connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches" "connectedSwitches": "Connected switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "נעצר", "stopped": "נעצר",
"total": "סה\"כ" "total": "סה\"כ"
}, },
"suwayomi": {
"download": "הורד",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -704,10 +692,6 @@
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "סטטוס",
"online": "Online",
"offline": "כבוי"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "ממתין",
"status": "סטטוס",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "סטטוס",
"load": "עומס",
"bcharge": "Battery Charge",
"timeleft": "זמן שנותר"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{value, date}", "date": "{value, date}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "माह", "months": "माह",
"days": "d", "days": "d",
"hours": "घं.", "hours": "घं.",
@@ -120,7 +120,7 @@
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Download", "download": "Download",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "Received", "received": "Received",
"sent": "Sent", "sent": "Sent",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Connected APs", "connectedAp": "Connected APs",
"activeUser": "Active devices", "activeUser": "Active devices",
"alerts": "Alerts", "alerts": "Alerts",
"connectedGateways": "Connected gateways", "connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches" "connectedSwitches": "Connected switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Stopped", "stopped": "Stopped",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Downloaded",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -704,10 +692,6 @@
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Status",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Load",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mj", "months": "mj",
"days": "dan(a)", "days": "dan(a)",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Raspored", "grid_power": "Raspored",
"home_power": "Potrošnja", "home_power": "Potrošnja",
"charge_power": "Punjač", "charge_power": "Punjač",
"kilowatt": "kW" "watt_hour": "Kilovat-sat"
}, },
"flood": { "flood": {
"download": "Preuzimanje", "download": "Preuzimanje",
@@ -148,9 +148,7 @@
"up": "Dostupno", "up": "Dostupno",
"received": "Primljeno", "received": "Primljeno",
"sent": "Poslano", "sent": "Poslano",
"externalIPAddress": "Eksterna IP adresa", "externalIPAddress": "Eksterna IP adresa"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Glavne grane", "upstreams": "Glavne grane",
@@ -178,7 +176,7 @@
"connectedAp": "Povezani AP-ovi", "connectedAp": "Povezani AP-ovi",
"activeUser": "Aktivni uređaji", "activeUser": "Aktivni uređaji",
"alerts": "Upozorenja", "alerts": "Upozorenja",
"connectedGateways": "Connected gateways", "connectedGateway": "Povezani pristupi",
"connectedSwitches": "Povezani prekidači" "connectedSwitches": "Povezani prekidači"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Prekinuto", "stopped": "Prekinuto",
"total": "Ukupno" "total": "Ukupno"
}, },
"suwayomi": {
"download": "Preuzeto",
"nondownload": "Non-Downloaded",
"read": "Pročitano",
"unread": "Nepročitano",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Adresa", "address": "Adresa",
"expires": "Isteče", "expires": "Isteče",
@@ -704,10 +692,6 @@
"processed": "Obrađeno", "processed": "Obrađeno",
"time": "Vrijeme" "time": "Vrijeme"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Pregledne ploče", "dashboards": "Pregledne ploče",
"datasources": "Izvori podataka", "datasources": "Izvori podataka",
@@ -860,11 +844,11 @@
}, },
"romm": { "romm": {
"platforms": "Platforme", "platforms": "Platforme",
"totalRoms": "Igre", "totalRoms": "Games",
"saves": "Saves", "saves": "Saves",
"states": "States", "states": "States",
"screenshots": "Snimke ekrana", "screenshots": "Screenshots",
"totalfilesize": "Ukupna veličina" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Domene", "domains": "Domene",
@@ -945,19 +929,19 @@
"invalidConfiguration": "Invalid Configuration" "invalidConfiguration": "Invalid Configuration"
}, },
"frigate": { "frigate": {
"cameras": "Kamere", "cameras": "Cameras",
"uptime": "Vrijeme rada", "uptime": "Vrijeme rada",
"version": "Verzija" "version": "Verzija"
}, },
"linkwarden": { "linkwarden": {
"links": "Poveznice", "links": "Links",
"collections": "Zbirke", "collections": "Collections",
"tags": "Oznake" "tags": "Oznake"
}, },
"zabbix": { "zabbix": {
"unclassified": "Not classified", "unclassified": "Not classified",
"information": "Informacije", "information": "Informacije",
"warning": "Upozorenje", "warning": "Warning",
"average": "Average", "average": "Average",
"high": "High", "high": "High",
"disaster": "Disaster" "disaster": "Disaster"
@@ -966,69 +950,8 @@
"vehicle": "Vehicle", "vehicle": "Vehicle",
"vehicles": "Vehicles", "vehicles": "Vehicles",
"serviceRecords": "Service Records", "serviceRecords": "Service Records",
"reminders": "Podsjetnici", "reminders": "Reminders",
"nextReminder": "Sljedeći podsjetnik", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Ime",
"address": "Adresa",
"last_seen": "Zadnje viđeno",
"status": "Stanje",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Ime",
"systems": "Systems",
"up": "Dostupno",
"down": "Nedostupno",
"paused": "Zaustavljeno",
"pending": "U tijeku",
"status": "Stanje",
"updated": "Aktualizirano",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Funkcionalno",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Nedostaje",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Problemi",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Stanje",
"load": "Opterećenje",
"bcharge": "Napunjenost baterije",
"timeleft": "Preostalo vrijeme"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Oznake"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "hó", "months": "hó",
"days": "n", "days": "n",
"hours": "ó", "hours": "ó",
@@ -25,7 +25,7 @@
"api_error": "API Hiba", "api_error": "API Hiba",
"information": "Információ", "information": "Információ",
"status": "Státusz", "status": "Státusz",
"url": "URL", "url": "LINK",
"raw_error": "Nyers hiba", "raw_error": "Nyers hiba",
"response_data": "Válaszadatok" "response_data": "Válaszadatok"
}, },
@@ -120,7 +120,7 @@
"grid_power": "Rács", "grid_power": "Rács",
"home_power": "Fogyasztás", "home_power": "Fogyasztás",
"charge_power": "Töltő", "charge_power": "Töltő",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Letöltés", "download": "Letöltés",
@@ -148,9 +148,7 @@
"up": "Fel", "up": "Fel",
"received": "Fogadott", "received": "Fogadott",
"sent": "Küldött", "sent": "Küldött",
"externalIPAddress": "Külső IP cím", "externalIPAddress": "Külső IP cím"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreamek", "upstreams": "Upstreamek",
@@ -178,7 +176,7 @@
"connectedAp": "Csatlakoztatott AP-k", "connectedAp": "Csatlakoztatott AP-k",
"activeUser": "Aktív eszközök", "activeUser": "Aktív eszközök",
"alerts": "Riasztások", "alerts": "Riasztások",
"connectedGateways": "Connected gateways", "connectedGateway": "Csatlakoztatott gateway-ek",
"connectedSwitches": "Csatlakoztatott switch-ek" "connectedSwitches": "Csatlakoztatott switch-ek"
}, },
"nzbget": { "nzbget": {
@@ -229,8 +227,8 @@
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "Gyorsítótárban Sikeres Bitek", "cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Gyorsítótárban Hibás Bitek" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Letöltés", "download": "Letöltés",
@@ -311,16 +309,6 @@
"stopped": "Megállított", "stopped": "Megállított",
"total": "Összes" "total": "Összes"
}, },
"suwayomi": {
"download": "Letöltött",
"nondownload": "Nem Letöltött",
"read": "Olvasott",
"unread": "Olvasatlan",
"downloadedread": "Letöltött & Olvasott",
"downloadedunread": "Letöltött & Olvasatlan",
"nondownloadedread": "Nem Letöltött & Olvasatlan",
"nondownloadedunread": "Nem Letöltött & Olvasatlan"
},
"tailscale": { "tailscale": {
"address": "Cím", "address": "Cím",
"expires": "Lejár", "expires": "Lejár",
@@ -337,15 +325,15 @@
}, },
"technitium": { "technitium": {
"totalQueries": "Lekérdezések", "totalQueries": "Lekérdezések",
"totalNoError": "Sikerek", "totalNoError": "Success",
"totalServerFailure": "Hibák", "totalServerFailure": "Failures",
"totalNxDomain": "NX Domainek", "totalNxDomain": "NX Domains",
"totalRefused": "Elutasított", "totalRefused": "Refused",
"totalAuthoritative": "Irányadó", "totalAuthoritative": "Authoritative",
"totalRecursive": "Rekurzív", "totalRecursive": "Recursive",
"totalCached": "Gyorsítótárazott", "totalCached": "Cached",
"totalBlocked": "Blokkolt", "totalBlocked": "Blokkolt",
"totalDropped": "Eldobott", "totalDropped": "Dropped",
"totalClients": "Kliensek" "totalClients": "Kliensek"
}, },
"tdarr": { "tdarr": {
@@ -455,7 +443,7 @@
"search": "Keresés", "search": "Keresés",
"custom": "Egyedi", "custom": "Egyedi",
"visit": "Megnéz", "visit": "Megnéz",
"url": "URL", "url": "LINK",
"searchsuggestion": "Javaslat" "searchsuggestion": "Javaslat"
}, },
"wmo": { "wmo": {
@@ -704,10 +692,6 @@
"processed": "Feldolgozott", "processed": "Feldolgozott",
"time": "Idő" "time": "Idő"
}, },
"firefly": {
"networth": "Nettó érték",
"budget": "Költségkeret"
},
"grafana": { "grafana": {
"dashboards": "Műszerfalak", "dashboards": "Műszerfalak",
"datasources": "Adatforrások", "datasources": "Adatforrások",
@@ -860,16 +844,16 @@
}, },
"romm": { "romm": {
"platforms": "Felület", "platforms": "Felület",
"totalRoms": "Játékok", "totalRoms": "Games",
"saves": "Mentések", "saves": "Saves",
"states": "Állapotok", "states": "States",
"screenshots": "Képernyőképek", "screenshots": "Screenshots",
"totalfilesize": "Teljes méret" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Domainek", "domains": "Domainek",
"mailboxes": "E-mail fiókok", "mailboxes": "Mailboxes",
"mails": "Mailek", "mails": "Mails",
"storage": "Tárhely" "storage": "Tárhely"
}, },
"netdata": { "netdata": {
@@ -918,7 +902,7 @@
}, },
"crowdsec": { "crowdsec": {
"alerts": "Riasztások", "alerts": "Riasztások",
"bans": "Kitiltások" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "Csatlakozva", "connected": "Csatlakozva",
@@ -927,10 +911,10 @@
"total": "Összes" "total": "Összes"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxyzott", "proxied": "Proxied",
"auth": "Hitelesítéssel", "auth": "With Auth",
"outdated": "Elavult", "outdated": "Outdated",
"banned": "Kitiltott" "banned": "Banned"
}, },
"myspeed": { "myspeed": {
"ping": "Ping", "ping": "Ping",
@@ -938,29 +922,29 @@
"upload": "Feltöltés" "upload": "Feltöltés"
}, },
"stocks": { "stocks": {
"stocks": "Tőzsde", "stocks": "Stocks",
"loading": "Betöltés", "loading": "Loading",
"open": "Nyitva - US Piac", "open": "Open - US Market",
"closed": "Zárva - US Piac", "closed": "Closed - US Market",
"invalidConfiguration": "Érvénytelen konfiguráció" "invalidConfiguration": "Invalid Configuration"
}, },
"frigate": { "frigate": {
"cameras": "Kamerák", "cameras": "Cameras",
"uptime": "Üzemidő", "uptime": "Üzemidő",
"version": "Verzió" "version": "Verzió"
}, },
"linkwarden": { "linkwarden": {
"links": "Linkek", "links": "Links",
"collections": "Gyűjtemény", "collections": "Collections",
"tags": "Címkék" "tags": "Címkék"
}, },
"zabbix": { "zabbix": {
"unclassified": "Nem titkosított", "unclassified": "Not classified",
"information": "Információ", "information": "Információ",
"warning": "Figyelmeztetés", "warning": "Warning",
"average": "Átlag", "average": "Average",
"high": "Magas", "high": "High",
"disaster": "Katasztrófa" "disaster": "Disaster"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "Jármű", "vehicle": "Jármű",
@@ -968,67 +952,6 @@
"serviceRecords": "Szolgáltatások nyílvántartása", "serviceRecords": "Szolgáltatások nyílvántartása",
"reminders": "Emlékeztetők", "reminders": "Emlékeztetők",
"nextReminder": "Következő emlékeztető", "nextReminder": "Következő emlékeztető",
"none": "Semmi" "none": "None"
},
"vikunja": {
"projects": "Aktív Projektek",
"tasks7d": "Hátralévő feladatok a héten",
"tasksOverdue": "Lejárt feladatok",
"tasksInProgress": "Folyamatban levő Feladatok"
},
"headscale": {
"name": "Név",
"address": "Cím",
"last_seen": "Utoljára látott",
"status": "Státusz",
"online": "Csatlakozva",
"offline": "Nem elérhető"
},
"beszel": {
"name": "Név",
"systems": "Rendszerek",
"up": "Fel",
"down": "Le",
"paused": "Szünetel",
"pending": "Függőben",
"status": "Státusz",
"updated": "Frissített",
"cpu": "Processzor",
"memory": "RAM",
"disk": "Lemez",
"network": "Hálózat"
},
"argocd": {
"apps": "Alkalmazások",
"synced": "Szinkronizált",
"outOfSync": "Nincs szinkronban",
"healthy": "Egészséges",
"degraded": "Leépült",
"progressing": "Halad",
"missing": "Hiányzik",
"suspended": "Felfüggesztett"
},
"spoolman": {
"loading": "Betöltés"
},
"gitlab": {
"groups": "Csoportok",
"issues": "Problémák",
"merges": "Merge kérések",
"projects": "Projektek"
},
"apcups": {
"status": "Státusz",
"load": "Terhelés",
"bcharge": "Akku töltöttsége",
"timeleft": "Hátralévő idő"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Címkék"
} }
} }

View File

@@ -13,8 +13,8 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "bln", "months": "bulan",
"days": "h", "days": "h",
"hours": "j", "hours": "j",
"minutes": "m", "minutes": "m",
@@ -120,7 +120,7 @@
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Konsumsi", "home_power": "Konsumsi",
"charge_power": "Charger", "charge_power": "Charger",
"kilowatt": "kW" "watt_hour": "Watt/jam"
}, },
"flood": { "flood": {
"download": "Unduh", "download": "Unduh",
@@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Menunggu Terputus", "connectionStatusPendingDisconnect": "Menunggu Terputus",
"connectionStatusDisconnecting": "Sedan Memutus", "connectionStatusDisconnecting": "Sedan Memutus",
"connectionStatusDisconnected": "Terputus", "connectionStatusDisconnected": "Terputus",
"connectionStatusConnected": "Tersambung", "connectionStatusConnected": "Connected",
"uptime": "Waktu Aktif", "uptime": "Waktu Aktif",
"maxDown": "Maks Unduh", "maxDown": "Maks Unduh",
"maxUp": "Maks Unggah", "maxUp": "Maks Unggah",
@@ -148,9 +148,7 @@
"up": "Hidup", "up": "Hidup",
"received": "Diterima", "received": "Diterima",
"sent": "Terkirim", "sent": "Terkirim",
"externalIPAddress": "IP Eksternal", "externalIPAddress": "IP Eksternal"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Strim Luar", "upstreams": "Strim Luar",
@@ -178,7 +176,7 @@
"connectedAp": "AP Tersambung", "connectedAp": "AP Tersambung",
"activeUser": "Perangakat yang Aktif", "activeUser": "Perangakat yang Aktif",
"alerts": "Peringatan", "alerts": "Peringatan",
"connectedGateways": "Connected gateways", "connectedGateway": "Gateway Tersambung",
"connectedSwitches": "Switch Tersambung" "connectedSwitches": "Switch Tersambung"
}, },
"nzbget": { "nzbget": {
@@ -285,9 +283,9 @@
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Tersambung", "connected": "Connected",
"new_devices": "Perangkat Baru", "new_devices": "New Devices",
"down_alerts": "Peringatan Pemadaman" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
"queries": "Kueri", "queries": "Kueri",
@@ -311,19 +309,9 @@
"stopped": "Terhenti", "stopped": "Terhenti",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Terunduh",
"nondownload": "Belum Diunduh",
"read": "Baca",
"unread": "Belum Dibaca",
"downloadedread": "Diunduh & Dibaca",
"downloadedunread": "Diunduh & Belum Dibaca",
"nondownloadedread": "Belum Diunduh & Dibaca",
"nondownloadedunread": "Belum Diunduh & Belum Dibaca"
},
"tailscale": { "tailscale": {
"address": "Alamat", "address": "Alamat",
"expires": "Kedaluwarsa", "expires": "Kadaluarsa",
"never": "Tidak Pernah", "never": "Tidak Pernah",
"last_seen": "Terakhir terlihat", "last_seen": "Terakhir terlihat",
"now": "Sekarang", "now": "Sekarang",
@@ -337,10 +325,10 @@
}, },
"technitium": { "technitium": {
"totalQueries": "Kueri", "totalQueries": "Kueri",
"totalNoError": "Berhasil", "totalNoError": "Success",
"totalServerFailure": "Gagal", "totalServerFailure": "Failures",
"totalNxDomain": "Domain NX", "totalNxDomain": "NX Domains",
"totalRefused": "Ditolak", "totalRefused": "Refused",
"totalAuthoritative": "Authoritative", "totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive", "totalRecursive": "Recursive",
"totalCached": "Cached", "totalCached": "Cached",
@@ -704,10 +692,6 @@
"processed": "Terproses", "processed": "Terproses",
"time": "Waktu" "time": "Waktu"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dasbor", "dashboards": "Dasbor",
"datasources": "Sumber Data", "datasources": "Sumber Data",
@@ -860,16 +844,16 @@
}, },
"romm": { "romm": {
"platforms": "Platform", "platforms": "Platform",
"totalRoms": "Permainan", "totalRoms": "Games",
"saves": "Saves", "saves": "Saves",
"states": "Kondisi", "states": "States",
"screenshots": "Tangkapan Layar", "screenshots": "Screenshots",
"totalfilesize": "Total Ukuran" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Jumlah Domain", "domains": "Jumlah Domain",
"mailboxes": "Kotak surat", "mailboxes": "Mailboxes",
"mails": "Surat", "mails": "Mails",
"storage": "Penyimpanan" "storage": "Penyimpanan"
}, },
"netdata": { "netdata": {
@@ -888,48 +872,48 @@
"pulls": "Pull Requests" "pulls": "Pull Requests"
}, },
"stash": { "stash": {
"scenes": "Adegan", "scenes": "Scenes",
"scenesPlayed": "Adegan Dimainkan", "scenesPlayed": "Scenes Played",
"playCount": "Total Dimainkan", "playCount": "Total Plays",
"playDuration": "Waktu Ditonton", "playDuration": "Time Watched",
"sceneSize": "Ukuran Adegan", "sceneSize": "Scenes Size",
"sceneDuration": "Durasi Adegan", "sceneDuration": "Scenes Duration",
"images": "Gambar", "images": "Images",
"imageSize": "Ukuran Gambar", "imageSize": "Images Size",
"galleries": "Galeri", "galleries": "Galleries",
"performers": "Pemain", "performers": "Performers",
"studios": "Studio", "studios": "Studios",
"movies": "Film", "movies": "Film",
"tags": "Tag", "tags": "Tag",
"oCount": "Jumlah O" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Pengguna", "users": "Pengguna",
"recipes": "Resep", "recipes": "Resep",
"keywords": "Kata Kunci" "keywords": "Keywords"
}, },
"homebox": { "homebox": {
"items": "Items", "items": "Items",
"totalWithWarranty": "Dengan Garansi", "totalWithWarranty": "With Warranty",
"locations": "Lokasi", "locations": "Locations",
"labels": "Label", "labels": "Labels",
"users": "Pengguna", "users": "Pengguna",
"totalValue": "Total Nilai" "totalValue": "Total Value"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Peringatan", "alerts": "Peringatan",
"bans": "Bans" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "Tersambung", "connected": "Connected",
"enabled": "Aktif", "enabled": "Aktif",
"disabled": "Nonaktif", "disabled": "Nonaktif",
"total": "Total" "total": "Total"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Diproksi", "proxied": "Proxied",
"auth": "With Auth", "auth": "With Auth",
"outdated": "Usang", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
}, },
"myspeed": { "myspeed": {
@@ -938,97 +922,36 @@
"upload": "Unggah" "upload": "Unggah"
}, },
"stocks": { "stocks": {
"stocks": "Saham", "stocks": "Stocks",
"loading": "Memuat", "loading": "Loading",
"open": "Buka - Pasar AS", "open": "Open - US Market",
"closed": "Tutup - Pasar AS", "closed": "Closed - US Market",
"invalidConfiguration": "Konfigurasi Invalid" "invalidConfiguration": "Invalid Configuration"
}, },
"frigate": { "frigate": {
"cameras": "Kamera", "cameras": "Cameras",
"uptime": "Waktu Aktif", "uptime": "Waktu Aktif",
"version": "Versi" "version": "Versi"
}, },
"linkwarden": { "linkwarden": {
"links": "Tautan", "links": "Links",
"collections": "Koleksi", "collections": "Collections",
"tags": "Tag" "tags": "Tag"
}, },
"zabbix": { "zabbix": {
"unclassified": "Not classified", "unclassified": "Not classified",
"information": "Informasi", "information": "Informasi",
"warning": "Peringatan", "warning": "Warning",
"average": "Rata-rata", "average": "Average",
"high": "Tinggi", "high": "High",
"disaster": "Bencana" "disaster": "Disaster"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "Kendaraan", "vehicle": "Vehicle",
"vehicles": "Kendaraan", "vehicles": "Vehicles",
"serviceRecords": "Service Records", "serviceRecords": "Service Records",
"reminders": "Pengingat", "reminders": "Reminders",
"nextReminder": "Pengingat Berikutnya", "nextReminder": "Next Reminder",
"none": "Tidak ada" "none": "None"
},
"vikunja": {
"projects": "Proyek Aktif",
"tasks7d": "Tugas Jatuh Tempo Minggu Ini",
"tasksOverdue": "Tugas Terlewat",
"tasksInProgress": "Tugas Berlangsung"
},
"headscale": {
"name": "Nama",
"address": "Alamat",
"last_seen": "Terakhir terlihat",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Nama",
"systems": "Sistem",
"up": "Hidup",
"down": "Mati",
"paused": "Pause",
"pending": "Pending",
"status": "Status",
"updated": "Terbarui",
"cpu": "CPU",
"memory": "MEM",
"disk": "Diska",
"network": "NET"
},
"argocd": {
"apps": "Apl",
"synced": "Tersinkron",
"outOfSync": "Tidak Sinkron",
"healthy": "Lancar",
"degraded": "Terdegradasi",
"progressing": "Progressing",
"missing": "Tidak Ditemukan",
"suspended": "Ditangguhkan"
},
"spoolman": {
"loading": "Memuat"
},
"gitlab": {
"groups": "Grup",
"issues": "Isu",
"merges": "Merge Requests",
"projects": "Proyek"
},
"apcups": {
"status": "Status",
"load": "Beban",
"bcharge": "Sisa Baterai",
"timeleft": "Sisa Waktu"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tag"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "g", "days": "g",
"hours": "o", "hours": "o",
@@ -120,7 +120,7 @@
"grid_power": "Griglia", "grid_power": "Griglia",
"home_power": "Consumo", "home_power": "Consumo",
"charge_power": "Caricatore", "charge_power": "Caricatore",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Download", "download": "Download",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "Ricevuti", "received": "Ricevuti",
"sent": "Inviati", "sent": "Inviati",
"externalIPAddress": "IP Esterno", "externalIPAddress": "IP Esterno"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstream", "upstreams": "Upstream",
@@ -178,7 +176,7 @@
"connectedAp": "AP Connessi", "connectedAp": "AP Connessi",
"activeUser": "Dispositivi attivi", "activeUser": "Dispositivi attivi",
"alerts": "Allarmi", "alerts": "Allarmi",
"connectedGateways": "Connected gateways", "connectedGateway": "Gateway connessi",
"connectedSwitches": "Switch connessi" "connectedSwitches": "Switch connessi"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Fermati", "stopped": "Fermati",
"total": "Totale" "total": "Totale"
}, },
"suwayomi": {
"download": "Scaricato",
"nondownload": "Non-Downloaded",
"read": "Letti",
"unread": "Non letto",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Indirizzo", "address": "Indirizzo",
"expires": "Scade", "expires": "Scade",
@@ -337,7 +325,7 @@
}, },
"technitium": { "technitium": {
"totalQueries": "Richieste", "totalQueries": "Richieste",
"totalNoError": "Successo", "totalNoError": "Success",
"totalServerFailure": "Failures", "totalServerFailure": "Failures",
"totalNxDomain": "NX Domains", "totalNxDomain": "NX Domains",
"totalRefused": "Refused", "totalRefused": "Refused",
@@ -592,7 +580,7 @@
"total": "Totale" "total": "Totale"
}, },
"peanut": { "peanut": {
"battery_charge": "Carica Batteria", "battery_charge": "Battery Charge",
"ups_load": "Carico UPS", "ups_load": "Carico UPS",
"ups_status": "Stato UPS", "ups_status": "Stato UPS",
"online": "Online", "online": "Online",
@@ -704,10 +692,6 @@
"processed": "Elaborati", "processed": "Elaborati",
"time": "Tempo" "time": "Tempo"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboard", "dashboards": "Dashboard",
"datasources": "Origine dei Dati", "datasources": "Origine dei Dati",
@@ -860,7 +844,7 @@
}, },
"romm": { "romm": {
"platforms": "Piattaforme", "platforms": "Piattaforme",
"totalRoms": "Giochi", "totalRoms": "Games",
"saves": "Saves", "saves": "Saves",
"states": "States", "states": "States",
"screenshots": "Screenshots", "screenshots": "Screenshots",
@@ -896,7 +880,7 @@
"sceneDuration": "Durata Delle Scene", "sceneDuration": "Durata Delle Scene",
"images": "Immagini", "images": "Immagini",
"imageSize": "Dimensioni immagine", "imageSize": "Dimensioni immagine",
"galleries": "Gallerie", "galleries": "Galleries",
"performers": "Esecutori", "performers": "Esecutori",
"studios": "Studi", "studios": "Studi",
"movies": "Film", "movies": "Film",
@@ -939,7 +923,7 @@
}, },
"stocks": { "stocks": {
"stocks": "Stocks", "stocks": "Stocks",
"loading": "Caricamento", "loading": "Loading",
"open": "Open - US Market", "open": "Open - US Market",
"closed": "Closed - US Market", "closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration" "invalidConfiguration": "Invalid Configuration"
@@ -950,8 +934,8 @@
"version": "Versione" "version": "Versione"
}, },
"linkwarden": { "linkwarden": {
"links": "Collegamenti", "links": "Links",
"collections": "Raccolte", "collections": "Collections",
"tags": "Tag" "tags": "Tag"
}, },
"zabbix": { "zabbix": {
@@ -963,72 +947,11 @@
"disaster": "Disaster" "disaster": "Disaster"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "Veicolo", "vehicle": "Vehicle",
"vehicles": "Veicoli", "vehicles": "Vehicles",
"serviceRecords": "Service Records", "serviceRecords": "Service Records",
"reminders": "Promemoria", "reminders": "Reminders",
"nextReminder": "Promemoria Seguente", "nextReminder": "Next Reminder",
"none": "Nessuno" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Nome",
"address": "Indirizzo",
"last_seen": "Ultima visualizzazione",
"status": "Stato",
"online": "Online",
"offline": "Non in linea"
},
"beszel": {
"name": "Nome",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "In Pausa",
"pending": "In attesa",
"status": "Stato",
"updated": "Aggiornato",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Sano",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Mancanti",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Caricamento"
},
"gitlab": {
"groups": "Groups",
"issues": "Problemi",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Stato",
"load": "Carico",
"bcharge": "Carica Batteria",
"timeleft": "Tempo Rimanente"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tag"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "月", "months": "月",
"days": "日", "days": "日",
"hours": "時間", "hours": "時間",
@@ -120,7 +120,7 @@
"grid_power": "グリッド", "grid_power": "グリッド",
"home_power": "消費", "home_power": "消費",
"charge_power": "チャージャー", "charge_power": "チャージャー",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "ダウンロード", "download": "ダウンロード",
@@ -148,9 +148,7 @@
"up": "稼働", "up": "稼働",
"received": "受信済み", "received": "受信済み",
"sent": "送信済み", "sent": "送信済み",
"externalIPAddress": "退出ID", "externalIPAddress": "退出ID"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "アップストリーム", "upstreams": "アップストリーム",
@@ -178,7 +176,7 @@
"connectedAp": "接続されたAP", "connectedAp": "接続されたAP",
"activeUser": "アクティブデバイス", "activeUser": "アクティブデバイス",
"alerts": "アラート", "alerts": "アラート",
"connectedGateways": "Connected gateways", "connectedGateway": "接続されたゲートウェイ",
"connectedSwitches": "接続スイッチ" "connectedSwitches": "接続スイッチ"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "停止中", "stopped": "停止中",
"total": "合計" "total": "合計"
}, },
"suwayomi": {
"download": "ダウンロード",
"nondownload": "Non-Downloaded",
"read": "既読",
"unread": "未読",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "アドレス", "address": "アドレス",
"expires": "失効", "expires": "失効",
@@ -704,10 +692,6 @@
"processed": "処理済み", "processed": "処理済み",
"time": "時間" "time": "時間"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "ダッシュ ボード", "dashboards": "ダッシュ ボード",
"datasources": "データソース", "datasources": "データソース",
@@ -810,7 +794,7 @@
"ping": "Ping" "ping": "Ping"
}, },
"urbackup": { "urbackup": {
"ok": "正常", "ok": "はい",
"errored": "エラー", "errored": "エラー",
"noRecent": "期限切れ", "noRecent": "期限切れ",
"totalUsed": "使用済みストレージ" "totalUsed": "使用済みストレージ"
@@ -963,72 +947,11 @@
"disaster": "災害" "disaster": "災害"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "車両", "vehicle": "Vehicle",
"vehicles": "Vehicles", "vehicles": "Vehicles",
"serviceRecords": "Service Records", "serviceRecords": "Service Records",
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "名前",
"address": "アドレス",
"last_seen": "最終日時",
"status": "状態",
"online": "オンライン",
"offline": "オフライン"
},
"beszel": {
"name": "名前",
"systems": "Systems",
"up": "稼働",
"down": "下へ",
"paused": "一時停止中",
"pending": "保留中",
"status": "状態",
"updated": "更新済",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "正常",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "不明",
"suspended": "Suspended"
},
"spoolman": {
"loading": "読み込み中"
},
"gitlab": {
"groups": "Groups",
"issues": "課題",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "状態",
"load": "ロード",
"bcharge": "バッテリー充電",
"timeleft": "残り時間"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "タグ"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "눈금", "grid_power": "눈금",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "다운로드", "download": "다운로드",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "수신됨", "received": "수신됨",
"sent": "전송됨", "sent": "전송됨",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "연결된 AP", "connectedAp": "연결된 AP",
"activeUser": "활성 장치", "activeUser": "활성 장치",
"alerts": "경고", "alerts": "경고",
"connectedGateways": "Connected gateways", "connectedGateway": "연결된 게이트웨이",
"connectedSwitches": "연결된 스위치" "connectedSwitches": "연결된 스위치"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "중지", "stopped": "중지",
"total": "총합" "total": "총합"
}, },
"suwayomi": {
"download": "다운로드됨",
"nondownload": "Non-Downloaded",
"read": "읽음",
"unread": "미열람",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "주소", "address": "주소",
"expires": "만료", "expires": "만료",
@@ -704,10 +692,6 @@
"processed": "처리됨", "processed": "처리됨",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "대시보드", "dashboards": "대시보드",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "이름",
"address": "주소",
"last_seen": "마지막 접속",
"status": "상태",
"online": "온라인",
"offline": "중지"
},
"beszel": {
"name": "이름",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "대기 중",
"status": "상태",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "좋음",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "빠짐",
"suspended": "Suspended"
},
"spoolman": {
"loading": "로드 중"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "상태",
"load": "부하",
"bcharge": "배터리 충전 중",
"timeleft": "남은 시간"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "태그"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Lejupielāde", "download": "Lejupielāde",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "Received", "received": "Received",
"sent": "Sent", "sent": "Sent",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Savienotie piekļuves punkti", "connectedAp": "Savienotie piekļuves punkti",
"activeUser": "Aktīvās ierīces", "activeUser": "Aktīvās ierīces",
"alerts": "Paziņojumi", "alerts": "Paziņojumi",
"connectedGateways": "Connected gateways", "connectedGateway": "Savienotās vārtejas",
"connectedSwitches": "Savienotie komutatori" "connectedSwitches": "Savienotie komutatori"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Stopped", "stopped": "Stopped",
"total": "Kopā" "total": "Kopā"
}, },
"suwayomi": {
"download": "Lejupielādēts",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -704,10 +692,6 @@
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Statuss",
"online": "Online",
"offline": "Bezsaistē"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Statuss",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Statuss",
"load": "Ielādē",
"bcharge": "Battery Charge",
"timeleft": "Atlikušais laiks"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "bln", "months": "bln",
"days": "h", "days": "h",
"hours": "j", "hours": "j",
@@ -120,7 +120,7 @@
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Penggunaan", "home_power": "Penggunaan",
"charge_power": "Pengecas", "charge_power": "Pengecas",
"kilowatt": "kW" "watt_hour": "Wj"
}, },
"flood": { "flood": {
"download": "Muat turun", "download": "Muat turun",
@@ -148,9 +148,7 @@
"up": "Hidup", "up": "Hidup",
"received": "Diterima", "received": "Diterima",
"sent": "Telah dihantar", "sent": "Telah dihantar",
"externalIPAddress": "IP Luaran", "externalIPAddress": "IP Luaran"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Connected APs", "connectedAp": "Connected APs",
"activeUser": "Peranti aktif", "activeUser": "Peranti aktif",
"alerts": "Perhatian", "alerts": "Perhatian",
"connectedGateways": "Connected gateways", "connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches" "connectedSwitches": "Connected switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Terhenti", "stopped": "Terhenti",
"total": "Jumlah" "total": "Jumlah"
}, },
"suwayomi": {
"download": "Telah Muat Turun",
"nondownload": "Non-Downloaded",
"read": "Baca",
"unread": "Belum dibaca",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -704,10 +692,6 @@
"processed": "Sudah diprosess", "processed": "Sudah diprosess",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Nama",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"online": "Dalam Talian",
"offline": "Luar talian"
},
"beszel": {
"name": "Nama",
"systems": "Systems",
"up": "Hidup",
"down": "Mati",
"paused": "Tangguh",
"pending": "Tertunda",
"status": "Status",
"updated": "Dikemaskini",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Sihat",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Hilang",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Beban",
"bcharge": "Bateri dicas",
"timeleft": "Masa Tinggal"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tanda nama"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mnd", "months": "mnd",
"days": "d", "days": "d",
"hours": "u", "hours": "u",
@@ -120,7 +120,7 @@
"grid_power": "Netstroom", "grid_power": "Netstroom",
"home_power": "Consumptie", "home_power": "Consumptie",
"charge_power": "Oplader", "charge_power": "Oplader",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Download", "download": "Download",
@@ -148,9 +148,7 @@
"up": "Online", "up": "Online",
"received": "Ontvangen", "received": "Ontvangen",
"sent": "Verzonden", "sent": "Verzonden",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Verbonden APs", "connectedAp": "Verbonden APs",
"activeUser": "Actieve apparaten", "activeUser": "Actieve apparaten",
"alerts": "Meldingen", "alerts": "Meldingen",
"connectedGateways": "Connected gateways", "connectedGateway": "Verbonden gateways",
"connectedSwitches": "Verbonden switches" "connectedSwitches": "Verbonden switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Gestopt", "stopped": "Gestopt",
"total": "Totaal" "total": "Totaal"
}, },
"suwayomi": {
"download": "Gedownload",
"nondownload": "Niet gedownload",
"read": "Gelezen",
"unread": "Ongelezen",
"downloadedread": "Gedownload & gelezen",
"downloadedunread": "Gedownload & ongelezen",
"nondownloadedread": "Niet-gedownload & gelezen",
"nondownloadedunread": "Niet-gedownload & ongelezen"
},
"tailscale": { "tailscale": {
"address": "Adres", "address": "Adres",
"expires": "Verloopt", "expires": "Verloopt",
@@ -704,10 +692,6 @@
"processed": "Verwerkt", "processed": "Verwerkt",
"time": "Tijd" "time": "Tijd"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Bronnen", "datasources": "Data Bronnen",
@@ -868,7 +852,7 @@
}, },
"mailcow": { "mailcow": {
"domains": "Domeinen", "domains": "Domeinen",
"mailboxes": "Mailboxen", "mailboxes": "Mailboxes",
"mails": "Mails", "mails": "Mails",
"storage": "Opslag" "storage": "Opslag"
}, },
@@ -963,72 +947,11 @@
"disaster": "Disaster" "disaster": "Disaster"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "Voertuig", "vehicle": "Vehicle",
"vehicles": "Voertuigen", "vehicles": "Vehicles",
"serviceRecords": "Service Historie", "serviceRecords": "Service Records",
"reminders": "Herinneringen", "reminders": "Reminders",
"nextReminder": "Volgende Herinnering", "nextReminder": "Next Reminder",
"none": "Geen" "none": "None"
},
"vikunja": {
"projects": "Actieve Projecten",
"tasks7d": "Taken Die Deze Week Af Moeten Zijn",
"tasksOverdue": "Achterstallige Taken",
"tasksInProgress": "Taken In Uitvoering"
},
"headscale": {
"name": "Naam",
"address": "Adres",
"last_seen": "Laatst Gezien",
"status": "Status",
"online": "Bereikbaar",
"offline": "Offline"
},
"beszel": {
"name": "Naam",
"systems": "Systemen",
"up": "Online",
"down": "Offline",
"paused": "Gepauzeerd",
"pending": "In afwachting",
"status": "Status",
"updated": "Bijgewerkt",
"cpu": "CPU",
"memory": "GEH",
"disk": "Schijf",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Gesynchroniseerd",
"outOfSync": "Niet gesynchroniseerd",
"healthy": "Gezond",
"degraded": "Gedegradeerd",
"progressing": "Doorvoeren",
"missing": "Ontbreekt",
"suspended": "Onderbroken"
},
"spoolman": {
"loading": "Laden"
},
"gitlab": {
"groups": "Groepen",
"issues": "Problemen",
"merges": "Merge Verzoeken",
"projects": "Projecten"
},
"apcups": {
"status": "Status",
"load": "Belasting",
"bcharge": "Batterij opladen",
"timeleft": "Resterende Tijd"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Label"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mnd", "months": "mnd",
"days": "d", "days": "d",
"hours": "t", "hours": "t",
@@ -120,7 +120,7 @@
"grid_power": "Nett", "grid_power": "Nett",
"home_power": "Forbruk", "home_power": "Forbruk",
"charge_power": "Lader", "charge_power": "Lader",
"kilowatt": "kW" "watt_hour": "W/t"
}, },
"flood": { "flood": {
"download": "Last ned", "download": "Last ned",
@@ -148,9 +148,7 @@
"up": "Oppe", "up": "Oppe",
"received": "Mottatt", "received": "Mottatt",
"sent": "Sendt", "sent": "Sendt",
"externalIPAddress": "Ekstern IP", "externalIPAddress": "Ekstern IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Oppstrøms", "upstreams": "Oppstrøms",
@@ -178,7 +176,7 @@
"connectedAp": "Tilkoblede AP'er", "connectedAp": "Tilkoblede AP'er",
"activeUser": "Aktive enheter", "activeUser": "Aktive enheter",
"alerts": "Varsler", "alerts": "Varsler",
"connectedGateways": "Connected gateways", "connectedGateway": "Tilkoblede gateways",
"connectedSwitches": "Tilkoblede switcher" "connectedSwitches": "Tilkoblede switcher"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Stoppet", "stopped": "Stoppet",
"total": "Totalt" "total": "Totalt"
}, },
"suwayomi": {
"download": "Nedlastede",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Ulest",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Adresse", "address": "Adresse",
"expires": "Utgår", "expires": "Utgår",
@@ -704,10 +692,6 @@
"processed": "Behandlet", "processed": "Behandlet",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Navn",
"address": "Adresse",
"last_seen": "Sist sett",
"status": "Status",
"online": "På nett",
"offline": "Frakoblet"
},
"beszel": {
"name": "Navn",
"systems": "Systems",
"up": "Oppe",
"down": "Nede",
"paused": "Pauset",
"pending": "Ventende",
"status": "Status",
"updated": "Oppdatert",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Friskt",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Mangler",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Last",
"bcharge": "Batteriladning",
"timeleft": "Gjenstående tid"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Stikkord"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mc", "months": "mc",
"days": "d", "days": "d",
"hours": "g", "hours": "g",
@@ -120,7 +120,7 @@
"grid_power": "Siatka", "grid_power": "Siatka",
"home_power": "Zużycie", "home_power": "Zużycie",
"charge_power": "Ładowarka", "charge_power": "Ładowarka",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Pobieranie", "download": "Pobieranie",
@@ -148,9 +148,7 @@
"up": "Dostępny", "up": "Dostępny",
"received": "Odebrane", "received": "Odebrane",
"sent": "Wysłane", "sent": "Wysłane",
"externalIPAddress": "Pub. IP", "externalIPAddress": "Pub. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Połączone punkty dostępowe", "connectedAp": "Połączone punkty dostępowe",
"activeUser": "Aktywne urządzenia", "activeUser": "Aktywne urządzenia",
"alerts": "Alarmy", "alerts": "Alarmy",
"connectedGateways": "Connected gateways", "connectedGateway": "Połączone bramy",
"connectedSwitches": "Połączone przełączniki" "connectedSwitches": "Połączone przełączniki"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Zatrzymane", "stopped": "Zatrzymane",
"total": "Całkowite" "total": "Całkowite"
}, },
"suwayomi": {
"download": "Pobrano",
"nondownload": "Niepobrane",
"read": "Przeczytane",
"unread": "Nieprzeczytane",
"downloadedread": "Pobrane i przeczytane",
"downloadedunread": "Pobrane i nieprzeczytane",
"nondownloadedread": "Niepobrane i przeczytane",
"nondownloadedunread": "Niepobrane i nieprzeczytane"
},
"tailscale": { "tailscale": {
"address": "Adres", "address": "Adres",
"expires": "Wygasa za", "expires": "Wygasa za",
@@ -337,15 +325,15 @@
}, },
"technitium": { "technitium": {
"totalQueries": "Zapytania", "totalQueries": "Zapytania",
"totalNoError": "Sukces", "totalNoError": "Success",
"totalServerFailure": "Porażki", "totalServerFailure": "Failures",
"totalNxDomain": "Domeny NX", "totalNxDomain": "NX Domains",
"totalRefused": "Odrzucone", "totalRefused": "Refused",
"totalAuthoritative": "Autorytatywne", "totalAuthoritative": "Authoritative",
"totalRecursive": "Rekursywne", "totalRecursive": "Recursive",
"totalCached": "Zbuforowane", "totalCached": "Cached",
"totalBlocked": "Zablokowane", "totalBlocked": "Zablokowane",
"totalDropped": "Upuszczone", "totalDropped": "Dropped",
"totalClients": "Klienci" "totalClients": "Klienci"
}, },
"tdarr": { "tdarr": {
@@ -704,10 +692,6 @@
"processed": "Przetworzone", "processed": "Przetworzone",
"time": "Czas" "time": "Czas"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Panel główny", "dashboards": "Panel główny",
"datasources": "Źródła danych", "datasources": "Źródła danych",
@@ -860,16 +844,16 @@
}, },
"romm": { "romm": {
"platforms": "Platformy", "platforms": "Platformy",
"totalRoms": "Gry", "totalRoms": "Games",
"saves": "Zapisy", "saves": "Saves",
"states": "Stany", "states": "States",
"screenshots": "Screeny", "screenshots": "Screenshots",
"totalfilesize": "Rozmiar całkowity" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Domeny", "domains": "Domeny",
"mailboxes": "Skrzynki", "mailboxes": "Mailboxes",
"mails": "Poczta", "mails": "Mails",
"storage": "Pamięć" "storage": "Pamięć"
}, },
"netdata": { "netdata": {
@@ -955,80 +939,19 @@
"tags": "Tagi" "tags": "Tagi"
}, },
"zabbix": { "zabbix": {
"unclassified": "Niezaklasyfikowane", "unclassified": "Not classified",
"information": "Informacje", "information": "Informacje",
"warning": "Ostrzeżenie", "warning": "Warning",
"average": "Średnia", "average": "Average",
"high": "Wysokie", "high": "High",
"disaster": "Katastrofa" "disaster": "Disaster"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "Pojazd", "vehicle": "Vehicle",
"vehicles": "Pojazdy", "vehicles": "Vehicles",
"serviceRecords": "Wpisy serwisowe", "serviceRecords": "Service Records",
"reminders": "Przypomnienia", "reminders": "Reminders",
"nextReminder": "Następne przypomnienie", "nextReminder": "Next Reminder",
"none": "Brak" "none": "None"
},
"vikunja": {
"projects": "Aktywne Projekty",
"tasks7d": "Zadania w tym tygodniu",
"tasksOverdue": "Zaległe zadania",
"tasksInProgress": "Zadania w toku"
},
"headscale": {
"name": "Nazwa",
"address": "Adres",
"last_seen": "Ostatnio dostępny",
"status": "Stan",
"online": "Dostępny",
"offline": "Nieosiągalny"
},
"beszel": {
"name": "Nazwa",
"systems": "Systemy",
"up": "Dostępny",
"down": "Niedostępny",
"paused": "Zatrzymane",
"pending": "Oczekiwane",
"status": "Stan",
"updated": "Zaktualizowane",
"cpu": "Procesor",
"memory": "RAM",
"disk": "Dysk",
"network": "NET"
},
"argocd": {
"apps": "Aplikacje",
"synced": "Synchronizowane",
"outOfSync": "Bez synchronizacji",
"healthy": "Zdrowy",
"degraded": "Zdegradowane",
"progressing": "Postępujące",
"missing": "Brakujące",
"suspended": "Zawieszone"
},
"spoolman": {
"loading": "Wczytywanie"
},
"gitlab": {
"groups": "Grupy",
"issues": "Zgłoszenia",
"merges": "Żądania scaleń",
"projects": "Projekty"
},
"apcups": {
"status": "Stan",
"load": "Obciążenie",
"bcharge": "Stan baterii",
"timeleft": "Pozostało"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tagi"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mês", "months": "mês",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -30,9 +30,9 @@
"response_data": "Dados da Resposta" "response_data": "Dados da Resposta"
}, },
"weather": { "weather": {
"current": "Localização actual", "current": "Localização atual",
"allow": "Clique para permitir", "allow": "Clique para permitir",
"updating": "A actualizar", "updating": "Atualizando",
"wait": "Por favor aguarde" "wait": "Por favor aguarde"
}, },
"search": { "search": {
@@ -79,7 +79,7 @@
"starting": "A iniciar", "starting": "A iniciar",
"unhealthy": "Não-saudável", "unhealthy": "Não-saudável",
"not_found": "Não Encontrado", "not_found": "Não Encontrado",
"exited": "Saiu", "exited": "Encerrado",
"partial": "Parcial" "partial": "Parcial"
}, },
"ping": { "ping": {
@@ -117,10 +117,10 @@
"evcc": { "evcc": {
"pv_power": "Produção", "pv_power": "Produção",
"battery_soc": "Bateria", "battery_soc": "Bateria",
"grid_power": "Grelha", "grid_power": "Grade",
"home_power": "Consumo", "home_power": "Consumo",
"charge_power": "Carregador", "charge_power": "Carregador",
"kilowatt": "kW" "watt_hour": "Kw"
}, },
"flood": { "flood": {
"download": "Descarregar", "download": "Descarregar",
@@ -129,16 +129,16 @@
"seed": "Semente" "seed": "Semente"
}, },
"freshrss": { "freshrss": {
"subscriptions": "Subscrições", "subscriptions": "Assinaturas",
"unread": "Não lida" "unread": "Não lida"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Estado", "connectionStatus": "Estado",
"connectionStatusUnconfigured": "Desconfigurado", "connectionStatusUnconfigured": "Não configurado",
"connectionStatusConnecting": "A conectar", "connectionStatusConnecting": "A conectar",
"connectionStatusAuthenticating": "A Autenticar", "connectionStatusAuthenticating": "Autenticando",
"connectionStatusPendingDisconnect": "Desconexão pendente", "connectionStatusPendingDisconnect": "Desconexão pendente",
"connectionStatusDisconnecting": "A Desconectar", "connectionStatusDisconnecting": "Desconectando",
"connectionStatusDisconnected": "Desconectado", "connectionStatusDisconnected": "Desconectado",
"connectionStatusConnected": "Conectado", "connectionStatusConnected": "Conectado",
"uptime": "Ligado", "uptime": "Ligado",
@@ -148,21 +148,19 @@
"up": "Up", "up": "Up",
"received": "Recebido", "received": "Recebido",
"sent": "Enviado", "sent": "Enviado",
"externalIPAddress": "Endereço IP Externo", "externalIPAddress": "Endereço IP externo"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
"requests": "Solicitações actuais", "requests": "Solicitações atuais",
"requests_failed": "Solicitações falhadas" "requests_failed": "Solicitações com falha"
}, },
"changedetectionio": { "changedetectionio": {
"totalObserved": "Total Observado", "totalObserved": "Total Observado",
"diffsDetected": "Diferenças Detectadas" "diffsDetected": "Diferenças Detetadas"
}, },
"channelsdvrserver": { "channelsdvrserver": {
"shows": "Séries", "shows": "Shows",
"recordings": "Gravações", "recordings": "Gravações",
"scheduled": "Agendado", "scheduled": "Agendado",
"passes": "Passes" "passes": "Passes"
@@ -172,22 +170,22 @@
"transcoding": "Transcodificação", "transcoding": "Transcodificação",
"bitrate": "Taxa de bits", "bitrate": "Taxa de bits",
"no_active": "Sem streams ativas", "no_active": "Sem streams ativas",
"plex_connection_error": "Verifique a conexão do Plex" "plex_connection_error": "Verifique a conexão Plex"
}, },
"omada": { "omada": {
"connectedAp": "APs Ligados", "connectedAp": "APs Ligados",
"activeUser": "Dispositivos activos", "activeUser": "Dispositivos activos",
"alerts": "Alertas", "alerts": "Alertas",
"connectedGateways": "Connected gateways", "connectedGateway": "Gateways ligados",
"connectedSwitches": "Switches ligados" "connectedSwitches": "Switches ligados"
}, },
"nzbget": { "nzbget": {
"rate": "Taxa", "rate": "Taxa",
"remaining": "Restante", "remaining": "Restante",
"downloaded": "Descarregado" "downloaded": "Baixado"
}, },
"plex": { "plex": {
"streams": "Streams Activas", "streams": "Streams Ativas",
"albums": "Álbuns", "albums": "Álbuns",
"movies": "Filmes", "movies": "Filmes",
"tv": "Series de TV" "tv": "Series de TV"
@@ -195,10 +193,10 @@
"sabnzbd": { "sabnzbd": {
"rate": "Taxa", "rate": "Taxa",
"queue": "Fila", "queue": "Fila",
"timeleft": "Tempo Restante" "timeleft": "Tempo restante"
}, },
"rutorrent": { "rutorrent": {
"active": "Activo", "active": "Ativo",
"upload": "Carregar", "upload": "Carregar",
"download": "Descarregar" "download": "Descarregar"
}, },
@@ -216,8 +214,8 @@
}, },
"qnap": { "qnap": {
"cpuUsage": "Utilização do CPU", "cpuUsage": "Utilização do CPU",
"memUsage": "Utilização de Memória", "memUsage": "Utilização de memória",
"systemTempC": "Temperatura do Sistema", "systemTempC": "Temperatura do sistema",
"poolUsage": "Uso de Banco", "poolUsage": "Uso de Banco",
"volumeUsage": "Uso do Volume", "volumeUsage": "Uso do Volume",
"invalid": "Inválido" "invalid": "Inválido"
@@ -229,8 +227,8 @@
"seed": "Semente" "seed": "Semente"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "Bytes de Acerto na Memória transitória", "cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Bytes de Falha de Memória transitória" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Descarregar", "download": "Descarregar",
@@ -239,54 +237,54 @@
"seed": "Semente" "seed": "Semente"
}, },
"sonarr": { "sonarr": {
"wanted": "Desejados", "wanted": "Desejada",
"queued": "Em fila de espera", "queued": "Em fila",
"series": "Séries", "series": "Séries",
"queue": "Fila", "queue": "Fila",
"unknown": "Desconhecido" "unknown": "Desconhecido"
}, },
"radarr": { "radarr": {
"wanted": "Desejados", "wanted": "Desejada",
"missing": "Em falta", "missing": "Faltando",
"queued": "Em fila de espera", "queued": "Em fila",
"movies": "Filmes", "movies": "Filmes",
"queue": "Fila", "queue": "Fila",
"unknown": "Desconhecido" "unknown": "Desconhecido"
}, },
"lidarr": { "lidarr": {
"wanted": "Desejados", "wanted": "Desejada",
"queued": "Em fila de espera", "queued": "Em fila",
"artists": "Artistas" "artists": "Artistas"
}, },
"readarr": { "readarr": {
"wanted": "Desejados", "wanted": "Desejada",
"queued": "Em fila de espera", "queued": "Em fila",
"books": "Livros" "books": "Livros"
}, },
"bazarr": { "bazarr": {
"missingEpisodes": "Episódios em Falta", "missingEpisodes": "Episódios Faltantes",
"missingMovies": "Filmes em Falta" "missingMovies": "Filmes Faltantes"
}, },
"ombi": { "ombi": {
"pending": "Pendente", "pending": "Pendente",
"approved": "Aprovado", "approved": "Aprovada",
"available": "Disponível" "available": "Disponível"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pendente", "pending": "Pendente",
"approved": "Aprovado", "approved": "Aprovada",
"available": "Disponível" "available": "Disponível"
}, },
"overseerr": { "overseerr": {
"pending": "Pendente", "pending": "Pendente",
"processing": "A Processar", "processing": "Processando",
"approved": "Aprovado", "approved": "Aprovada",
"available": "Disponível" "available": "Disponível"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Conectado", "connected": "Conectado",
"new_devices": "Novos Dispositivos", "new_devices": "Novos dispositivos",
"down_alerts": "Alertas de Falha" "down_alerts": "Alertas de Falha"
}, },
"pihole": { "pihole": {
@@ -311,21 +309,11 @@
"stopped": "Parado", "stopped": "Parado",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Descarregado",
"nondownload": "Non-Downloaded",
"read": "Lido",
"unread": "Não lida",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Endereço", "address": "Endereço",
"expires": "Expira", "expires": "Expira",
"never": "Nunca", "never": "Nunca",
"last_seen": "Última Vez Visto", "last_seen": "Última vez visto",
"now": "Agora", "now": "Agora",
"years": "{{number}}y", "years": "{{number}}y",
"weeks": "{{number}}w", "weeks": "{{number}}w",
@@ -337,15 +325,15 @@
}, },
"technitium": { "technitium": {
"totalQueries": "Consultas", "totalQueries": "Consultas",
"totalNoError": "Sucesso", "totalNoError": "Success",
"totalServerFailure": "Falhas", "totalServerFailure": "Failures",
"totalNxDomain": "Domínios NX", "totalNxDomain": "NX Domains",
"totalRefused": "Recusado", "totalRefused": "Refused",
"totalAuthoritative": "Autoritário", "totalAuthoritative": "Authoritative",
"totalRecursive": "Recursivo", "totalRecursive": "Recursive",
"totalCached": "Em Memória transitória", "totalCached": "Cached",
"totalBlocked": "Bloqueado", "totalBlocked": "Bloqueado",
"totalDropped": "Perdidos", "totalDropped": "Dropped",
"totalClients": "Clientes" "totalClients": "Clientes"
}, },
"tdarr": { "tdarr": {
@@ -357,19 +345,19 @@
"traefik": { "traefik": {
"routers": "Roteadores", "routers": "Roteadores",
"services": "Serviços", "services": "Serviços",
"middleware": "Middleware" "middleware": "Software Middleware"
}, },
"navidrome": { "navidrome": {
"nothing_streaming": "Sem streams ativas", "nothing_streaming": "Sem streams ativas",
"please_wait": "Por Favor, Aguarde" "please_wait": "Por favor aguarde"
}, },
"npm": { "npm": {
"enabled": "Activo", "enabled": "Ativo",
"disabled": "Desabilitado", "disabled": "Desabilitado",
"total": "Total" "total": "Total"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Configure uma ou mais criptomoedas para rastrear", "configure": "Configurar uma ou mais moedas",
"1hour": "1 Hora", "1hour": "1 Hora",
"1day": "1 Dia", "1day": "1 Dia",
"7days": "7 Dias", "7days": "7 Dias",
@@ -403,8 +391,8 @@
"domain_count": "Domínios" "domain_count": "Domínios"
}, },
"medusa": { "medusa": {
"wanted": "Desejados", "wanted": "Desejada",
"queued": "Em fila de espera", "queued": "Em fila",
"series": "Séries" "series": "Séries"
}, },
"minecraft": { "minecraft": {
@@ -420,8 +408,8 @@
}, },
"authentik": { "authentik": {
"users": "Utilizadores", "users": "Utilizadores",
"loginsLast24H": "Inícios de Sessão (24h)", "loginsLast24H": "Inícios de sessão (24h)",
"failedLoginsLast24H": "Inícios de Sessão Falhados (24h)" "failedLoginsLast24H": "Inícios de sessão falhados (24h)"
}, },
"proxmox": { "proxmox": {
"mem": "MEM", "mem": "MEM",
@@ -452,7 +440,7 @@
"quicklaunch": { "quicklaunch": {
"bookmark": "Marcador", "bookmark": "Marcador",
"service": "Serviço", "service": "Serviço",
"search": "Pesquisa", "search": "Busca",
"custom": "Personalizado", "custom": "Personalizado",
"visit": "Visitar", "visit": "Visitar",
"url": "Endereço URL", "url": "Endereço URL",
@@ -461,7 +449,7 @@
"wmo": { "wmo": {
"0-day": "Solarengo", "0-day": "Solarengo",
"0-night": "Limpo", "0-night": "Limpo",
"1-day": "Maioritariamente Solarengo", "1-day": "Maioritariamente ensolarado",
"1-night": "Maioritariamente Limpo", "1-night": "Maioritariamente Limpo",
"2-day": "Parcialmente Nublado", "2-day": "Parcialmente Nublado",
"2-night": "Parcialmente Nublado", "2-night": "Parcialmente Nublado",
@@ -499,16 +487,16 @@
"75-night": "Neve forte", "75-night": "Neve forte",
"77-day": "Grãos de Neve", "77-day": "Grãos de Neve",
"77-night": "Grãos de Neve", "77-night": "Grãos de Neve",
"80-day": "Chuviscos Leves", "80-day": "Neve fraca",
"80-night": "Chuviscos Leves", "80-night": "Neve fraca",
"81-day": "Chuviscos", "81-day": "Chuviscos",
"81-night": "Chuviscos", "81-night": "Chuviscos",
"82-day": "Chuviscos fortes", "82-day": "Chuviscos fortes",
"82-night": "Chuviscos fortes", "82-night": "Chuviscos fortes",
"85-day": "Chuva de Neve", "85-day": "Precipitação de Neve",
"85-night": "Chuva de Neve", "85-night": "Precipitação de Neve",
"86-day": "Chuva de Neve", "86-day": "Precipitação de Neve",
"86-night": "Chuva de Neve", "86-night": "Precipitação de Neve",
"95-day": "Trovoada", "95-day": "Trovoada",
"95-night": "Trovoada", "95-night": "Trovoada",
"96-day": "Trovoada com granizo", "96-day": "Trovoada com granizo",
@@ -518,10 +506,10 @@
}, },
"homebridge": { "homebridge": {
"available_update": "Sistema", "available_update": "Sistema",
"updates": "Actualizações", "updates": "Atualizações",
"update_available": "Atualização disponível", "update_available": "Atualização disponível",
"up_to_date": "Atualizado", "up_to_date": "Atualizado",
"child_bridges": "Child Bridges", "child_bridges": "Pontes Filhas",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Up",
"pending": "Pendente", "pending": "Pendente",
@@ -530,12 +518,12 @@
"healthchecks": { "healthchecks": {
"new": "Novo", "new": "Novo",
"up": "Up", "up": "Up",
"grace": "Em Período de Graça", "grace": "Em Período Gratuito",
"down": "Down", "down": "Down",
"paused": "Pausa", "paused": "Pausado",
"status": "Estado", "status": "Estado",
"last_ping": "Ultimo Ping", "last_ping": "Ultimo Ping",
"never": "Nenhum Ping ainda" "never": "Nenhum ping ainda"
}, },
"watchtower": { "watchtower": {
"containers_scanned": "Verificado", "containers_scanned": "Verificado",
@@ -543,7 +531,7 @@
"containers_failed": "Falhou" "containers_failed": "Falhou"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Aprovado", "approvedPushes": "Aprovada",
"rejectedPushes": "Rejeitado", "rejectedPushes": "Rejeitado",
"filters": "Filtros", "filters": "Filtros",
"indexers": "Indexadores" "indexers": "Indexadores"
@@ -561,7 +549,7 @@
}, },
"pyload": { "pyload": {
"speed": "Velocidade", "speed": "Velocidade",
"active": "Activo", "active": "Ativo",
"queue": "Fila", "queue": "Fila",
"total": "Total" "total": "Total"
}, },
@@ -600,8 +588,8 @@
"low_battery": "Bateria Fraca" "low_battery": "Bateria Fraca"
}, },
"nextdns": { "nextdns": {
"wait": "Por Favor, Aguarde", "wait": "Por favor aguarde",
"no_devices": "Nenhum Dado do Dispositivo Recebido" "no_devices": "Nenhum dado do dispositivo recebido"
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "Carga do CPU", "cpuLoad": "Carga do CPU",
@@ -611,7 +599,7 @@
}, },
"xteve": { "xteve": {
"streams_all": "Todos os Streams", "streams_all": "Todos os Streams",
"streams_active": "Streams Activas", "streams_active": "Streams Ativas",
"streams_xepg": "Canais XEPG" "streams_xepg": "Canais XEPG"
}, },
"opendtu": { "opendtu": {
@@ -649,7 +637,7 @@
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"temp": "Temp", "temp": "Temp",
"disk": "Utilização do Disco", "disk": "Utilização",
"wanIP": "WAN IP" "wanIP": "WAN IP"
}, },
"proxmoxbackupserver": { "proxmoxbackupserver": {
@@ -690,35 +678,31 @@
"mylar": { "mylar": {
"series": "Séries", "series": "Séries",
"issues": "Problemas", "issues": "Problemas",
"wanted": "Desejados" "wanted": "Desejada"
}, },
"photoprism": { "photoprism": {
"albums": "Álbuns", "albums": "Álbuns",
"photos": "Fotos", "photos": "Fotos",
"videos": "Vídeos", "videos": "Vídeos",
"people": "Pessoas" "people": "Pessoa"
}, },
"fileflows": { "fileflows": {
"queue": "Fila", "queue": "Fila",
"processing": "A Processar", "processing": "Processando",
"processed": "Processado", "processed": "Processado",
"time": "Hora" "time": "Hora"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Painéis", "dashboards": "Painéis",
"datasources": "Origem de Dados", "datasources": "Origem de Dados",
"totalalerts": "Total Alertas", "totalalerts": "Total Alertas",
"alertstriggered": "Alertas Desencadeados" "alertstriggered": "Alertas Disparados"
}, },
"nextcloud": { "nextcloud": {
"cpuload": "Carga de CPU", "cpuload": "Carga de CPU",
"memoryusage": "Memória Utilizada", "memoryusage": "Memória Utilizada",
"freespace": "Espaço Livre", "freespace": "Espaço Livre",
"activeusers": "Utilizadores Activos", "activeusers": "Utilizadores Ativos",
"numfiles": "Ficheiros", "numfiles": "Ficheiros",
"numshares": "Itens partilhados" "numshares": "Itens partilhados"
}, },
@@ -740,7 +724,7 @@
}, },
"prometheus": { "prometheus": {
"targets_up": "Alvo ativo", "targets_up": "Alvo ativo",
"targets_down": "Alvo Inactivo", "targets_down": "Alvo inativo",
"targets_total": "Total de Alvos" "targets_total": "Total de Alvos"
}, },
"gatus": { "gatus": {
@@ -751,7 +735,7 @@
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Hoje", "gross_percent_today": "Hoje",
"gross_percent_1y": "Um ano", "gross_percent_1y": "Um ano",
"gross_percent_max": "Desde Sempre" "gross_percent_max": "Todo o tempo"
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasts", "podcasts": "Podcasts",
@@ -766,7 +750,7 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "A monitorizar", "monitoring": "A monitorizar",
"updates": "Actualizações" "updates": "Atualizações"
}, },
"calibreweb": { "calibreweb": {
"books": "Livros", "books": "Livros",
@@ -788,14 +772,14 @@
"result": "Resultado", "result": "Resultado",
"status": "Estado", "status": "Estado",
"buildId": "ID da compilação", "buildId": "ID da compilação",
"succeeded": "Bem sucedido", "succeeded": "Com êxito",
"notStarted": "Não Iniciado", "notStarted": "Não Iniciado",
"failed": "Falhou", "failed": "Falhou",
"canceled": "Cancelado", "canceled": "Cancelado",
"inProgress": "Em progresso", "inProgress": "Em progresso",
"totalPrs": "Total de PRs", "totalPrs": "Total de PRs",
"myPrs": "Os Meus PRs", "myPrs": "Meus PRs",
"approved": "Aprovado" "approved": "Aprovada"
}, },
"gamedig": { "gamedig": {
"status": "Estado", "status": "Estado",
@@ -803,7 +787,7 @@
"offline": "Desligado", "offline": "Desligado",
"name": "Nome", "name": "Nome",
"map": "Mapa", "map": "Mapa",
"currentPlayers": "Jogadores actuais", "currentPlayers": "Jogadores atuais",
"players": "Reprodutores", "players": "Reprodutores",
"maxPlayers": "Máximo de Jogadores", "maxPlayers": "Máximo de Jogadores",
"bots": "Bots", "bots": "Bots",
@@ -812,7 +796,7 @@
"urbackup": { "urbackup": {
"ok": "Ok", "ok": "Ok",
"errored": "Erros", "errored": "Erros",
"noRecent": "Desactualizado", "noRecent": "Desatualizado",
"totalUsed": "Espaço utilizado" "totalUsed": "Espaço utilizado"
}, },
"mealie": { "mealie": {
@@ -822,7 +806,7 @@
"tags": "Etiquetas" "tags": "Etiquetas"
}, },
"openmediavault": { "openmediavault": {
"downloading": "A descarregar", "downloading": "A transferir",
"total": "Total", "total": "Total",
"running": "A correr", "running": "A correr",
"stopped": "Parado", "stopped": "Parado",
@@ -840,14 +824,14 @@
"uptimerobot": { "uptimerobot": {
"status": "Estado", "status": "Estado",
"uptime": "Ligado", "uptime": "Ligado",
"lastDown": "Última Inactividade", "lastDown": "Última inatividade",
"downDuration": "Duração de Inactividade", "downDuration": "Duração de inatividade",
"sitesUp": "Sites no Ar", "sitesUp": "Sites no Ar",
"sitesDown": "Sites Fora do Ar", "sitesDown": "Sites Fora do Ar",
"paused": "Pausa", "paused": "Pausado",
"notyetchecked": "Ainda não verificado", "notyetchecked": "Ainda não verificado",
"up": "Up", "up": "Up",
"seemsdown": "Parece em Baixo", "seemsdown": "Parece Baixo",
"down": "Down", "down": "Down",
"unknown": "Desconhecido" "unknown": "Desconhecido"
}, },
@@ -860,16 +844,16 @@
}, },
"romm": { "romm": {
"platforms": "Plataformas", "platforms": "Plataformas",
"totalRoms": "Jogos", "totalRoms": "Games",
"saves": "Saves", "saves": "Saves",
"states": "Estados", "states": "States",
"screenshots": "Screenshots", "screenshots": "Screenshots",
"totalfilesize": "Tamanho Total" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Domínios", "domains": "Domínios",
"mailboxes": "Caixas de Correio", "mailboxes": "Mailboxes",
"mails": "E-mails", "mails": "Mails",
"storage": "Armazenamento" "storage": "Armazenamento"
}, },
"netdata": { "netdata": {
@@ -897,7 +881,7 @@
"images": "Imagens", "images": "Imagens",
"imageSize": "Tamanho das imagens", "imageSize": "Tamanho das imagens",
"galleries": "Galerias", "galleries": "Galerias",
"performers": "Artistas de palco", "performers": "Artistas",
"studios": "Estúdios", "studios": "Estúdios",
"movies": "Filmes", "movies": "Filmes",
"tags": "Etiquetas", "tags": "Etiquetas",
@@ -922,14 +906,14 @@
}, },
"wgeasy": { "wgeasy": {
"connected": "Conectado", "connected": "Conectado",
"enabled": "Activo", "enabled": "Ativo",
"disabled": "Desabilitado", "disabled": "Desabilitado",
"total": "Total" "total": "Total"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Com proxy", "proxied": "Com proxy",
"auth": "Com Autorização", "auth": "Com Autorização",
"outdated": "Desactualizado", "outdated": "Desatualizado",
"banned": "Banido" "banned": "Banido"
}, },
"myspeed": { "myspeed": {
@@ -938,97 +922,36 @@
"upload": "Carregar" "upload": "Carregar"
}, },
"stocks": { "stocks": {
"stocks": "Acções", "stocks": "Ações",
"loading": "A carregar", "loading": "Carregando",
"open": "Aberto - Mercado dos EUA", "open": "Aberto - Mercado dos EUA",
"closed": "Fechado - Mercado dos EUA", "closed": "Fechado - Mercado dos EUA",
"invalidConfiguration": "Configuração Inválida" "invalidConfiguration": "Configuração inválida"
}, },
"frigate": { "frigate": {
"cameras": "Câmeras", "cameras": "Câmaras",
"uptime": "Ligado", "uptime": "Ligado",
"version": "Versão" "version": "Versão"
}, },
"linkwarden": { "linkwarden": {
"links": "Links", "links": "Links",
"collections": "Colecções", "collections": "Collections",
"tags": "Etiquetas" "tags": "Etiquetas"
}, },
"zabbix": { "zabbix": {
"unclassified": "Não Classificados", "unclassified": "Not classified",
"information": "Informação", "information": "Informação",
"warning": "Avisos", "warning": "Warning",
"average": "Média", "average": "Average",
"high": "Elevado", "high": "High",
"disaster": "Desastre" "disaster": "Disaster"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "Veículo", "vehicle": "Vehicle",
"vehicles": "Veículos", "vehicles": "Vehicles",
"serviceRecords": "Registros de Serviço", "serviceRecords": "Service Records",
"reminders": "Lembretes", "reminders": "Reminders",
"nextReminder": "Próximo Lembrete", "nextReminder": "Next Reminder",
"none": "Nenhum" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Nome",
"address": "Endereço",
"last_seen": "Última Vez Visto",
"status": "Estado",
"online": "Online",
"offline": "Desligado"
},
"beszel": {
"name": "Nome",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Pausa",
"pending": "Pendente",
"status": "Estado",
"updated": "Atualizado",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Saudável",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Em falta",
"suspended": "Suspended"
},
"spoolman": {
"loading": "A carregar"
},
"gitlab": {
"groups": "Groups",
"issues": "Problemas",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Estado",
"load": "Carga",
"bcharge": "Carga da bateria",
"timeleft": "Tempo Restante"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Etiquetas"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "M", "months": "M",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Grade", "grid_power": "Grade",
"home_power": "Consumo", "home_power": "Consumo",
"charge_power": "Carregador", "charge_power": "Carregador",
"kilowatt": "kW" "watt_hour": "Kw"
}, },
"flood": { "flood": {
"download": "Descarregar", "download": "Descarregar",
@@ -148,9 +148,7 @@
"up": "Ativo", "up": "Ativo",
"received": "Recebido", "received": "Recebido",
"sent": "Enviado", "sent": "Enviado",
"externalIPAddress": "IP Externo", "externalIPAddress": "IP Externo"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Streams de Envio", "upstreams": "Streams de Envio",
@@ -178,7 +176,7 @@
"connectedAp": "APs Ligados", "connectedAp": "APs Ligados",
"activeUser": "Dispositivos ativos", "activeUser": "Dispositivos ativos",
"alerts": "Alertas", "alerts": "Alertas",
"connectedGateways": "Connected gateways", "connectedGateway": "Gateways conectados",
"connectedSwitches": "Switches conectados" "connectedSwitches": "Switches conectados"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Parado", "stopped": "Parado",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Baixado",
"nondownload": "Non-Downloaded",
"read": "Lido",
"unread": "Não lida",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Endereço", "address": "Endereço",
"expires": "Expira em", "expires": "Expira em",
@@ -704,10 +692,6 @@
"processed": "Processado", "processed": "Processado",
"time": "Hora" "time": "Hora"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Painéis", "dashboards": "Painéis",
"datasources": "Origem de Dados", "datasources": "Origem de Dados",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Nome",
"address": "Endereço",
"last_seen": "Visto por último",
"status": "Status",
"online": "Disponível",
"offline": "Offline"
},
"beszel": {
"name": "Nome",
"systems": "Systems",
"up": "Ativo",
"down": "Inativo",
"paused": "Pausado",
"pending": "Pendente",
"status": "Status",
"updated": "Atualizado",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Saudável",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Faltando",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Carregando"
},
"gitlab": {
"groups": "Groups",
"issues": "Problemas",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Carga",
"bcharge": "Carga da bateria",
"timeleft": "Tempo restante"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Marcadores"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Grilă", "grid_power": "Grilă",
"home_power": "Consum", "home_power": "Consum",
"charge_power": "Încărcător", "charge_power": "Încărcător",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Descarcă", "download": "Descarcă",
@@ -148,9 +148,7 @@
"up": "Sus", "up": "Sus",
"received": "Received", "received": "Received",
"sent": "Sent", "sent": "Sent",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreamuri", "upstreams": "Upstreamuri",
@@ -178,7 +176,7 @@
"connectedAp": "Connected APs", "connectedAp": "Connected APs",
"activeUser": "Active devices", "activeUser": "Active devices",
"alerts": "Alerts", "alerts": "Alerts",
"connectedGateways": "Connected gateways", "connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches" "connectedSwitches": "Connected switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Oprit", "stopped": "Oprit",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Descărcat",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Necitit",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -704,10 +692,6 @@
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Stare",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Sus",
"down": "Jos",
"paused": "Paused",
"pending": "În așteptare",
"status": "Stare",
"updated": "Updated",
"cpu": "Procesor",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Sănătos",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Stare",
"load": "Sarcină",
"bcharge": "Battery Charge",
"timeleft": "Timp rămas"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "мес", "months": "мес",
"days": "дней", "days": "дней",
"hours": "час", "hours": "час",
@@ -120,7 +120,7 @@
"grid_power": "Сетка", "grid_power": "Сетка",
"home_power": "Потребление", "home_power": "Потребление",
"charge_power": "Зарядка", "charge_power": "Зарядка",
"kilowatt": "кВт" "watt_hour": "Вт"
}, },
"flood": { "flood": {
"download": "Скачивание", "download": "Скачивание",
@@ -148,9 +148,7 @@
"up": "Онлайн", "up": "Онлайн",
"received": "Получено", "received": "Получено",
"sent": "Отправлено", "sent": "Отправлено",
"externalIPAddress": "Внеш. IP", "externalIPAddress": "Внеш. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Входящие каналы", "upstreams": "Входящие каналы",
@@ -178,7 +176,7 @@
"connectedAp": "Подключенные точки доступа", "connectedAp": "Подключенные точки доступа",
"activeUser": "Активные устройства", "activeUser": "Активные устройства",
"alerts": "Предупреждения", "alerts": "Предупреждения",
"connectedGateways": "Connected gateways", "connectedGateway": "Подключенные шлюзы",
"connectedSwitches": "Подключенные коммутаторы" "connectedSwitches": "Подключенные коммутаторы"
}, },
"nzbget": { "nzbget": {
@@ -229,8 +227,8 @@
"seed": "Сид" "seed": "Сид"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "Хит байты кэша", "cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Мисс байты кэша" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Скачивание", "download": "Скачивание",
@@ -286,7 +284,7 @@
"netalertx": { "netalertx": {
"total": "Всего", "total": "Всего",
"connected": "Подключено", "connected": "Подключено",
"new_devices": "Новые устройства", "new_devices": "Новое устройство",
"down_alerts": "Оповещение о недоступности" "down_alerts": "Оповещение о недоступности"
}, },
"pihole": { "pihole": {
@@ -311,16 +309,6 @@
"stopped": "Остановлено", "stopped": "Остановлено",
"total": "Всего" "total": "Всего"
}, },
"suwayomi": {
"download": "Загружено",
"nondownload": "Незагруженные",
"read": "Прочитано",
"unread": "Не прочитано",
"downloadedread": "Загруженные и прочитанные",
"downloadedunread": "Загруженные и непрочитанные",
"nondownloadedread": "Незагруженные и прочитанные",
"nondownloadedunread": "Незагруженные и непрочитанные"
},
"tailscale": { "tailscale": {
"address": "Адрес", "address": "Адрес",
"expires": "Истекает", "expires": "Истекает",
@@ -337,15 +325,15 @@
}, },
"technitium": { "technitium": {
"totalQueries": "Запросы", "totalQueries": "Запросы",
"totalNoError": "Успешные", "totalNoError": "Success",
"totalServerFailure": "Ошибки", "totalServerFailure": "Failures",
"totalNxDomain": "NX домены", "totalNxDomain": "NX Domains",
"totalRefused": "Отказано", "totalRefused": "Refused",
"totalAuthoritative": "Авторитетные", "totalAuthoritative": "Authoritative",
"totalRecursive": "Рекурсивные", "totalRecursive": "Recursive",
"totalCached": "Кэш", "totalCached": "Cached",
"totalBlocked": "Заблокировано", "totalBlocked": "Заблокировано",
"totalDropped": "Отброшенные", "totalDropped": "Dropped",
"totalClients": "Клиенты" "totalClients": "Клиенты"
}, },
"tdarr": { "tdarr": {
@@ -704,10 +692,6 @@
"processed": "Обработано", "processed": "Обработано",
"time": "Время" "time": "Время"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Панели", "dashboards": "Панели",
"datasources": "Источники данных", "datasources": "Источники данных",
@@ -860,16 +844,16 @@
}, },
"romm": { "romm": {
"platforms": "Платформы", "platforms": "Платформы",
"totalRoms": "Игры", "totalRoms": "Games",
"saves": "Сейвы", "saves": "Saves",
"states": "Состояния", "states": "States",
"screenshots": "Скриншоты", "screenshots": "Screenshots",
"totalfilesize": "Общий объем" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Домены", "domains": "Домены",
"mailboxes": "Почтовые ящики", "mailboxes": "Mailboxes",
"mails": "Письма", "mails": "Mails",
"storage": "Хранилище" "storage": "Хранилище"
}, },
"netdata": { "netdata": {
@@ -918,7 +902,7 @@
}, },
"crowdsec": { "crowdsec": {
"alerts": "Предупреждения", "alerts": "Предупреждения",
"bans": "Блокировки" "bans": "Запреты"
}, },
"wgeasy": { "wgeasy": {
"connected": "Подключено", "connected": "Подключено",
@@ -927,10 +911,10 @@
"total": "Всего" "total": "Всего"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Прокси", "proxied": "Proxied",
"auth": "С Авторизацией", "auth": "With Auth",
"outdated": "Устаревшие", "outdated": "Outdated",
"banned": "Заблокированные" "banned": "Banned"
}, },
"myspeed": { "myspeed": {
"ping": "Пинг", "ping": "Пинг",
@@ -938,97 +922,36 @@
"upload": "Загрузка" "upload": "Загрузка"
}, },
"stocks": { "stocks": {
"stocks": "Акции", "stocks": "Stocks",
"loading": "Загрузка", "loading": "Loading",
"open": "Открыто - Рынок США", "open": "Open - US Market",
"closed": "Закрыто - рынок США", "closed": "Closed - US Market",
"invalidConfiguration": "Неверная конфигурация" "invalidConfiguration": "Invalid Configuration"
}, },
"frigate": { "frigate": {
"cameras": "Камеры", "cameras": "Cameras",
"uptime": "Время работы", "uptime": "Время работы",
"version": "Версия" "version": "Версия"
}, },
"linkwarden": { "linkwarden": {
"links": "Ссылки", "links": "Links",
"collections": "Коллекции", "collections": "Collections",
"tags": "Теги" "tags": "Теги"
}, },
"zabbix": { "zabbix": {
"unclassified": "Не классифицировано", "unclassified": "Not classified",
"information": "Информация", "information": "Информация",
"warning": "Предупреждение", "warning": "Warning",
"average": "Средняя", "average": "Average",
"high": "Высокая", "high": "High",
"disaster": "Чрезвычайная" "disaster": "Disaster"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "Автомобиль", "vehicle": "Vehicle",
"vehicles": "Автомобили", "vehicles": "Vehicles",
"serviceRecords": "Сервисные работы", "serviceRecords": "Service Records",
"reminders": "Напоминания", "reminders": "Reminders",
"nextReminder": "Следующее напоминание", "nextReminder": "Next Reminder",
"none": "Нет" "none": "None"
},
"vikunja": {
"projects": "Активные Проекты",
"tasks7d": "Задачи на этой неделе",
"tasksOverdue": "Просроченные задачи",
"tasksInProgress": "Задачи в процессе"
},
"headscale": {
"name": "Имя",
"address": "Адрес",
"last_seen": "Последнее посещение",
"status": "Статус",
"online": "В сети",
"offline": "Не в сети"
},
"beszel": {
"name": "Имя",
"systems": "Системы",
"up": "Онлайн",
"down": "Офлайн",
"paused": "Приостановлено",
"pending": "В обработке",
"status": "Статус",
"updated": "Обновленно",
"cpu": "ЦП",
"memory": "ОЗУ",
"disk": "Диск",
"network": "Сеть"
},
"argocd": {
"apps": "Приложения",
"synced": "Синхронизированные",
"outOfSync": "Не синхронизированные",
"healthy": "Здоровый",
"degraded": "Деградированные",
"progressing": "Выполняются",
"missing": "Отсутствует",
"suspended": "Приостановленные"
},
"spoolman": {
"loading": "Загрузка"
},
"gitlab": {
"groups": "Группы",
"issues": "Вопросы",
"merges": "Мердж-реквесты",
"projects": "Проекты"
},
"apcups": {
"status": "Статус",
"load": "Загрузка",
"bcharge": "Заряд батареи",
"timeleft": "Осталось"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Теги"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mes", "months": "mes",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Mriežka", "grid_power": "Mriežka",
"home_power": "Spotreba", "home_power": "Spotreba",
"charge_power": "Nabíjačka", "charge_power": "Nabíjačka",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Sťahovanie", "download": "Sťahovanie",
@@ -148,9 +148,7 @@
"up": "Nahrávanie", "up": "Nahrávanie",
"received": "Prijaté", "received": "Prijaté",
"sent": "Odoslané", "sent": "Odoslané",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Odosielanie dát", "upstreams": "Odosielanie dát",
@@ -178,7 +176,7 @@
"connectedAp": "Pripojené prístupové body", "connectedAp": "Pripojené prístupové body",
"activeUser": "Aktívne zariadenia", "activeUser": "Aktívne zariadenia",
"alerts": "Upozornenia", "alerts": "Upozornenia",
"connectedGateways": "Connected gateways", "connectedGateway": "Pripojené sieťové brány",
"connectedSwitches": "Pripojené prepínače" "connectedSwitches": "Pripojené prepínače"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Zastavené", "stopped": "Zastavené",
"total": "Celkovo" "total": "Celkovo"
}, },
"suwayomi": {
"download": "Stiahnuté",
"nondownload": "Non-Downloaded",
"read": "Prečítané",
"unread": "Neprečítané",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Adresa", "address": "Adresa",
"expires": "Vyprší", "expires": "Vyprší",
@@ -704,10 +692,6 @@
"processed": "Spracované", "processed": "Spracované",
"time": "Čas" "time": "Čas"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Panely", "dashboards": "Panely",
"datasources": "Zdroje dát", "datasources": "Zdroje dát",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Meno",
"address": "Adresa",
"last_seen": "Naposledy videné",
"status": "Stav",
"online": "Online",
"offline": "Nedostupný"
},
"beszel": {
"name": "Meno",
"systems": "Systems",
"up": "Nahrávanie",
"down": "Sťahovanie",
"paused": "Pozastavené",
"pending": "Čakajúce",
"status": "Stav",
"updated": "Aktualizované",
"cpu": "CPU",
"memory": "RAM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Zdravý",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Chýbajúce",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Problémy",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Stav",
"load": "Záťaž",
"bcharge": "Nabitie batérie",
"timeleft": "Zostávajúci čas"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Štítky"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mes", "months": "mes",
"days": "d", "days": "d",
"hours": "u", "hours": "u",
@@ -120,7 +120,7 @@
"grid_power": "Omrežje", "grid_power": "Omrežje",
"home_power": "Poraba", "home_power": "Poraba",
"charge_power": "Polnilec", "charge_power": "Polnilec",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Prenos", "download": "Prenos",
@@ -148,9 +148,7 @@
"up": "Povezan", "up": "Povezan",
"received": "Prejeto", "received": "Prejeto",
"sent": "Poslano", "sent": "Poslano",
"externalIPAddress": "Zun. IP", "externalIPAddress": "Zun. IP"
"externalIPv6Address": "Eks. IPv6",
"externalIPv6Prefix": "Eks. IPv6-predpona"
}, },
"caddy": { "caddy": {
"upstreams": "Pretok gor", "upstreams": "Pretok gor",
@@ -178,7 +176,7 @@
"connectedAp": "Povezanih AP", "connectedAp": "Povezanih AP",
"activeUser": "Aktivne naprave", "activeUser": "Aktivne naprave",
"alerts": "Opozorila", "alerts": "Opozorila",
"connectedGateways": "Povezani prehodi", "connectedGateway": "Povezan prehod",
"connectedSwitches": "Povezana stikala" "connectedSwitches": "Povezana stikala"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Ustavljen", "stopped": "Ustavljen",
"total": "Skupaj" "total": "Skupaj"
}, },
"suwayomi": {
"download": "Preneseno",
"nondownload": "Nepreneseno",
"read": "Prebrano",
"unread": "Neprebrano",
"downloadedread": "Preneseno in prebrano",
"downloadedunread": "Preneseno in neprebrano",
"nondownloadedread": "Nepreneseno in prebrano",
"nondownloadedunread": "Nepreneseno in neprebrano"
},
"tailscale": { "tailscale": {
"address": "Naslov", "address": "Naslov",
"expires": "Poteče", "expires": "Poteče",
@@ -704,10 +692,6 @@
"processed": "Procesiran", "processed": "Procesiran",
"time": "Čas" "time": "Čas"
}, },
"firefly": {
"networth": "Neto vrednost",
"budget": "Proračun"
},
"grafana": { "grafana": {
"dashboards": "Nadzorne plošče", "dashboards": "Nadzorne plošče",
"datasources": "Viri podatkov", "datasources": "Viri podatkov",
@@ -969,66 +953,5 @@
"reminders": "Opomniki", "reminders": "Opomniki",
"nextReminder": "Naslednji opomnik", "nextReminder": "Naslednji opomnik",
"none": "Brez" "none": "Brez"
},
"vikunja": {
"projects": "Aktivni projekti",
"tasks7d": "Potekla opravila tega tedna",
"tasksOverdue": "Potekla opravila",
"tasksInProgress": "Tekoča opravila"
},
"headscale": {
"name": "Naziv",
"address": "Naslov",
"last_seen": "Viden",
"status": "Stanje",
"online": "Na spletu",
"offline": "Ni povezan"
},
"beszel": {
"name": "Naziv",
"systems": "Sistemi",
"up": "Povezan",
"down": "Nepovezan",
"paused": "Pavziran",
"pending": "V teku",
"status": "Stanje",
"updated": "Posodobljen",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "Mreža"
},
"argocd": {
"apps": "Aplikacije",
"synced": "Sinhro",
"outOfSync": "Ni sinhro",
"healthy": "Zdrav",
"degraded": "Degragirano",
"progressing": "V teku",
"missing": "Manjka",
"suspended": "Prekinjeno"
},
"spoolman": {
"loading": "Nalaganje"
},
"gitlab": {
"groups": "Skupine",
"issues": "Težave",
"merges": "Združi zahtevke",
"projects": "Projekti"
},
"apcups": {
"status": "Stanje",
"load": "Bremenitev",
"bcharge": "Napolnjenost baterije",
"timeleft": "Preostali čas"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Značke"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Download", "download": "Download",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "Received", "received": "Received",
"sent": "Sent", "sent": "Sent",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Connected APs", "connectedAp": "Connected APs",
"activeUser": "Active devices", "activeUser": "Active devices",
"alerts": "Alerts", "alerts": "Alerts",
"connectedGateways": "Connected gateways", "connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches" "connectedSwitches": "Connected switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Stopped", "stopped": "Stopped",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Downloaded",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -704,10 +692,6 @@
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "Status",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Load",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mån", "months": "mån",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Download", "download": "Download",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "Received", "received": "Received",
"sent": "Sent", "sent": "Sent",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Connected APs", "connectedAp": "Connected APs",
"activeUser": "Active devices", "activeUser": "Active devices",
"alerts": "Alerts", "alerts": "Alerts",
"connectedGateways": "Connected gateways", "connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches" "connectedSwitches": "Connected switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Stoppade", "stopped": "Stoppade",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Nedladdat",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -704,10 +692,6 @@
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Avvaktar",
"status": "Status",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Status",
"load": "Laddar",
"bcharge": "Battery Charge",
"timeleft": "Tid kvar"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Download", "download": "Download",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "Received", "received": "Received",
"sent": "Sent", "sent": "Sent",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Connected APs", "connectedAp": "Connected APs",
"activeUser": "Active devices", "activeUser": "Active devices",
"alerts": "Alerts", "alerts": "Alerts",
"connectedGateways": "Connected gateways", "connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches" "connectedSwitches": "Connected switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "ఆగిపోయినవి", "stopped": "ఆగిపోయినవి",
"total": "మొత్తం" "total": "మొత్తం"
}, },
"suwayomi": {
"download": "డౌన్‌లోడ్ చేయబడింది",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -704,10 +692,6 @@
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "హోదా",
"online": "Online",
"offline": "ఆఫ్‌లైన్"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "పెండింగ్",
"status": "హోదా",
"updated": "నవీకరించబడింది",
"cpu": "సీపియూ",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "మిస్సింగ్",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "హోదా",
"load": "లోడ్",
"bcharge": "Battery Charge",
"timeleft": "మిగిలి వున్న సమయం"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "ดาวน์โหลด", "download": "ดาวน์โหลด",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "Received", "received": "Received",
"sent": "Sent", "sent": "Sent",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Connected APs", "connectedAp": "Connected APs",
"activeUser": "Active devices", "activeUser": "Active devices",
"alerts": "Alerts", "alerts": "Alerts",
"connectedGateways": "Connected gateways", "connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches" "connectedSwitches": "Connected switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Stopped", "stopped": "Stopped",
"total": "ทั้งหมด" "total": "ทั้งหมด"
}, },
"suwayomi": {
"download": "Downloaded",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -704,10 +692,6 @@
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "สถานะ",
"online": "Online",
"offline": "ออฟไลน์"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Pending",
"status": "สถานะ",
"updated": "Updated",
"cpu": "ซีพียู",
"memory": "เมม",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "สถานะ",
"load": "โหลด",
"bcharge": "Battery Charge",
"timeleft": "Time Left"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "ay", "months": "ay",
"days": "g", "days": "g",
"hours": "sa", "hours": "sa",
@@ -120,7 +120,7 @@
"grid_power": "Güç", "grid_power": "Güç",
"home_power": "Tüketim", "home_power": "Tüketim",
"charge_power": "Şarj", "charge_power": "Şarj",
"kilowatt": "kW" "watt_hour": "Watt/Saat"
}, },
"flood": { "flood": {
"download": "İndirme", "download": "İndirme",
@@ -148,9 +148,7 @@
"up": "Yükleme", "up": "Yükleme",
"received": "Alınan", "received": "Alınan",
"sent": "Gönderilen", "sent": "Gönderilen",
"externalIPAddress": "Harici IP", "externalIPAddress": "Harici IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Akış", "upstreams": "Akış",
@@ -178,7 +176,7 @@
"connectedAp": "Bağlı AP'ler", "connectedAp": "Bağlı AP'ler",
"activeUser": "Aktif cihazlar", "activeUser": "Aktif cihazlar",
"alerts": "Alarmlar", "alerts": "Alarmlar",
"connectedGateways": "Connected gateways", "connectedGateway": "Bağlı ağ geçitleri",
"connectedSwitches": "Bağlı anahtarlar" "connectedSwitches": "Bağlı anahtarlar"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Durduruldu", "stopped": "Durduruldu",
"total": "Toplam" "total": "Toplam"
}, },
"suwayomi": {
"download": "İndirilen",
"nondownload": "Non-Downloaded",
"read": "Okunan",
"unread": "Okunmamış",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Adres", "address": "Adres",
"expires": "Geciken", "expires": "Geciken",
@@ -704,10 +692,6 @@
"processed": "İşlendi", "processed": "İşlendi",
"time": "Zaman" "time": "Zaman"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Kontrol Paneli", "dashboards": "Kontrol Paneli",
"datasources": "Veri Kaynakları", "datasources": "Veri Kaynakları",
@@ -869,7 +853,7 @@
"mailcow": { "mailcow": {
"domains": "Etki Alanları", "domains": "Etki Alanları",
"mailboxes": "Mailboxes", "mailboxes": "Mailboxes",
"mails": "Postalar", "mails": "Mails",
"storage": "Depo" "storage": "Depo"
}, },
"netdata": { "netdata": {
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Bitişi Bu Hafta Olan Görevler",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "İsim",
"address": "Adres",
"last_seen": "Son Görülme",
"status": "Durum",
"online": "Çevrimiçi",
"offline": "Çevrimdışı"
},
"beszel": {
"name": "İsim",
"systems": "Systems",
"up": "Yükleme",
"down": "İndirme",
"paused": "Duraklatıldı",
"pending": "Bekleyen",
"status": "Durum",
"updated": "Güncellendi",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Sağlıklı",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Eksik",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Yükleniyor"
},
"gitlab": {
"groups": "Groups",
"issues": "Sorunlar",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Durum",
"load": "Yük",
"bcharge": "Pil Yüzdesi",
"timeleft": "Kalan Zaman"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Etiketler"
} }
} }

View File

@@ -13,10 +13,10 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "міс", "months": "міс",
"days": нів", "days": "д",
"hours": "год", "hours": "г",
"minutes": "хв", "minutes": "хв",
"seconds": "с" "seconds": "с"
}, },
@@ -47,7 +47,7 @@
"load": "Завантаження", "load": "Завантаження",
"temp": "Температура", "temp": "Температура",
"max": "Макс.", "max": "Макс.",
"uptime": "Онлайн" "uptime": "Відправка"
}, },
"unifi": { "unifi": {
"users": "Користувачі", "users": "Користувачі",
@@ -61,7 +61,7 @@
"wlan_devices": "WLAN пристрої", "wlan_devices": "WLAN пристрої",
"lan_users": "LAN користувачі", "lan_users": "LAN користувачі",
"wlan_users": "WLAN користувачі", "wlan_users": "WLAN користувачі",
"up": "Онлайн", "up": "Відправка",
"down": "Завантаження", "down": "Завантаження",
"wait": "Будь ласка, зачекайте", "wait": "Будь ласка, зачекайте",
"empty_data": "Статус підсистеми невідомий" "empty_data": "Статус підсистеми невідомий"
@@ -75,7 +75,7 @@
"offline": "Офлайн", "offline": "Офлайн",
"error": "Помилка", "error": "Помилка",
"unknown": "Невідомий", "unknown": "Невідомий",
"healthy": "Здоровий", "healthy": "Здоров",
"starting": "Запуск", "starting": "Запуск",
"unhealthy": "Нездоровий", "unhealthy": "Нездоровий",
"not_found": "Не знайдено", "not_found": "Не знайдено",
@@ -99,7 +99,7 @@
}, },
"emby": { "emby": {
"playing": "Відтворення", "playing": "Відтворення",
"transcoding": "Транскодування", "transcoding": "Перекодування",
"bitrate": "Бітрейт", "bitrate": "Бітрейт",
"no_active": "Немає активних потоків", "no_active": "Немає активних потоків",
"movies": "Фільми", "movies": "Фільми",
@@ -120,11 +120,11 @@
"grid_power": "Сітка", "grid_power": "Сітка",
"home_power": "Споживання", "home_power": "Споживання",
"charge_power": "Зарядний пристрій", "charge_power": "Зарядний пристрій",
"kilowatt": "kW" "watt_hour": "Вт/год"
}, },
"flood": { "flood": {
"download": "Завантажено", "download": "Завантаження",
"upload": "Відправлено", "upload": "Відправлення",
"leech": "Ліч", "leech": "Ліч",
"seed": "Сід" "seed": "Сід"
}, },
@@ -142,15 +142,13 @@
"connectionStatusDisconnected": "Відключено", "connectionStatusDisconnected": "Відключено",
"connectionStatusConnected": "З'єднано", "connectionStatusConnected": "З'єднано",
"uptime": "Час роботи", "uptime": "Час роботи",
"maxDown": "Макс. завантаження", "maxDown": "Макс. зав",
"maxUp": "Макс. віддача", "maxUp": "Макс. віддача",
"down": "Офлайн", "down": "Офлайн",
"up": "Онлайн", "up": "Онлайн",
"received": "Отримано", "received": "Отримано",
"sent": "Надіслано", "sent": "Надісл.",
"externalIPAddress": "Зовнішній IP", "externalIPAddress": "Зовн. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Потоки", "upstreams": "Потоки",
@@ -165,11 +163,11 @@
"shows": "Вистави", "shows": "Вистави",
"recordings": "Записи", "recordings": "Записи",
"scheduled": "Заплановано", "scheduled": "Заплановано",
"passes": ропуски" "passes": ерепустки"
}, },
"tautulli": { "tautulli": {
"playing": "Відтворення", "playing": "Відтворення",
"transcoding": "Транскодування", "transcoding": "Перекодування",
"bitrate": "Бітрейт", "bitrate": "Бітрейт",
"no_active": "Немає активних потоків", "no_active": "Немає активних потоків",
"plex_connection_error": "Перевірте з'єднання Plex" "plex_connection_error": "Перевірте з'єднання Plex"
@@ -178,7 +176,7 @@
"connectedAp": "Підключені точки доступу", "connectedAp": "Підключені точки доступу",
"activeUser": "Активні пристрої", "activeUser": "Активні пристрої",
"alerts": "Оповіщення", "alerts": "Оповіщення",
"connectedGateways": "Connected gateways", "connectedGateway": "Підключені шлюзи",
"connectedSwitches": "Підключені перемикачі" "connectedSwitches": "Підключені перемикачі"
}, },
"nzbget": { "nzbget": {
@@ -199,18 +197,18 @@
}, },
"rutorrent": { "rutorrent": {
"active": "Активний", "active": "Активний",
"upload": "Відправлено", "upload": "Відправлення",
"download": "Завантажено" "download": "Завантаження"
}, },
"transmission": { "transmission": {
"download": "Завантажено", "download": "Завантаження",
"upload": "Відправлено", "upload": "Відправлення",
"leech": "Ліч", "leech": "Ліч",
"seed": "Сід" "seed": "Сід"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Завантажено", "download": "Завантаження",
"upload": "Відправлено", "upload": "Відправлення",
"leech": "Ліч", "leech": "Ліч",
"seed": "Сід" "seed": "Сід"
}, },
@@ -223,18 +221,18 @@
"invalid": "Недійсний" "invalid": "Недійсний"
}, },
"deluge": { "deluge": {
"download": "Завантажено", "download": "Завантаження",
"upload": "Відправлено", "upload": "Відправлення",
"leech": "Ліч", "leech": "Ліч",
"seed": "Сід" "seed": "Сід"
}, },
"develancacheui": { "develancacheui": {
"cachehitbytes": "Кеш-хіт байт", "cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Кеш-міс байт" "cachemissbytes": "Cache Miss Bytes"
}, },
"downloadstation": { "downloadstation": {
"download": "Завантажено", "download": "Завантаження",
"upload": "Відправлено", "upload": "Відправлення",
"leech": "Ліч", "leech": "Ліч",
"seed": "Сід" "seed": "Сід"
}, },
@@ -287,13 +285,13 @@
"total": "Усього", "total": "Усього",
"connected": "З'єднано", "connected": "З'єднано",
"new_devices": "Нові пристрої", "new_devices": "Нові пристрої",
"down_alerts": "Сповіщення про падіння" "down_alerts": "Спов. про падіння"
}, },
"pihole": { "pihole": {
"queries": "Запити", "queries": "Запити",
"blocked": "Заблоковано", "blocked": "Заблоковано",
"blocked_percent": "Заблоковано %", "blocked_percent": "Заблоковано %",
"gravity": "Доменів в списку" "gravity": "Гравітація"
}, },
"adguard": { "adguard": {
"queries": "Запити", "queries": "Запити",
@@ -302,8 +300,8 @@
"latency": "Затримка" "latency": "Затримка"
}, },
"speedtest": { "speedtest": {
"upload": "Відправлено", "upload": "Відправлення",
"download": "Завантажено", "download": "Завантаження",
"ping": "Пінг" "ping": "Пінг"
}, },
"portainer": { "portainer": {
@@ -311,16 +309,6 @@
"stopped": "Зупинено", "stopped": "Зупинено",
"total": "Усього" "total": "Усього"
}, },
"suwayomi": {
"download": "Завантажено",
"nondownload": "Не завантажено",
"read": "Прочитано",
"unread": "Не прочитано",
"downloadedread": "Завантажено та Прочитано",
"downloadedunread": "Завантажено та Непрочитано",
"nondownloadedread": "Не завантажено та Прочитано",
"nondownloadedunread": "Не завантажено та Не прочитано"
},
"tailscale": { "tailscale": {
"address": "Адреса", "address": "Адреса",
"expires": "Дійсний до", "expires": "Дійсний до",
@@ -337,15 +325,15 @@
}, },
"technitium": { "technitium": {
"totalQueries": "Запити", "totalQueries": "Запити",
"totalNoError": "Успішно", "totalNoError": "Success",
"totalServerFailure": "Помилки", "totalServerFailure": "Failures",
"totalNxDomain": "NX Домени", "totalNxDomain": "NX Domains",
"totalRefused": "Відмовлено", "totalRefused": "Refused",
"totalAuthoritative": "Авторитетні", "totalAuthoritative": "Authoritative",
"totalRecursive": "Рекурсивні", "totalRecursive": "Recursive",
"totalCached": "Кешовані", "totalCached": "Cached",
"totalBlocked": "Заблоковано", "totalBlocked": "Заблоковано",
"totalDropped": "Видалені", "totalDropped": "Dropped",
"totalClients": "Клієнти" "totalClients": "Клієнти"
}, },
"tdarr": { "tdarr": {
@@ -436,12 +424,12 @@
"temp": "Температура", "temp": "Температура",
"_temp": "Темп.", "_temp": "Темп.",
"warn": "Увага", "warn": "Увага",
"uptime": "Онлайн", "uptime": "Відправка",
"total": "Усього", "total": "Усього",
"free": "Вільно", "free": "Вільно",
"used": "Використано", "used": "Використано",
"days": нів", "days": "д",
"hours": "год", "hours": "г",
"crit": "Крит", "crit": "Крит",
"read": "Прочитано", "read": "Прочитано",
"write": "Написати", "write": "Написати",
@@ -704,10 +692,6 @@
"processed": "Обробка", "processed": "Обробка",
"time": "Час" "time": "Час"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Інформаційні панелі", "dashboards": "Інформаційні панелі",
"datasources": "Джерела даних", "datasources": "Джерела даних",
@@ -831,77 +815,77 @@
}, },
"openwrt": { "openwrt": {
"uptime": "Час роботи", "uptime": "Час роботи",
"cpuLoad": "Сер. навантаження ЦП (5 хв)", "cpuLoad": "CPU Load Avg (5m)",
"up": "Онлайн", "up": "Онлайн",
"down": "Офлайн", "down": "Офлайн",
"bytesTx": "Передано", "bytesTx": "Transmitted",
"bytesRx": "Отримано" "bytesRx": "Отримано"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Стан", "status": "Стан",
"uptime": "Час роботи", "uptime": "Час роботи",
"lastDown": "Останній час простою", "lastDown": "Last Downtime",
"downDuration": "Тривалість простою", "downDuration": "Downtime Duration",
"sitesUp": "Активні сайти", "sitesUp": "Активні сайти",
"sitesDown": "Неактивні сайти", "sitesDown": "Неактивні сайти",
"paused": "Призупинено", "paused": "Призупинено",
"notyetchecked": "Ще не перевірено", "notyetchecked": "Not Yet Checked",
"up": "Онлайн", "up": "Онлайн",
"seemsdown": "Вірогідно в простої", "seemsdown": "Seems Down",
"down": "Офлайн", "down": "Офлайн",
"unknown": "Невідомий" "unknown": "Невідомий"
}, },
"calendar": { "calendar": {
"inCinemas": "У кінотеатрах", "inCinemas": "In cinemas",
"physicalRelease": "Фізичний реліз", "physicalRelease": "Physical release",
"digitalRelease": "Цифровий реліз", "digitalRelease": "Digital release",
"noEventsToday": "Події на сьогодні відсутні", "noEventsToday": "No events for today!",
"noEventsFound": "Події не знайдено" "noEventsFound": "No events found"
}, },
"romm": { "romm": {
"platforms": "Платформи", "platforms": "Platforms",
"totalRoms": "Ігри", "totalRoms": "Games",
"saves": "Збереження", "saves": "Saves",
"states": "Стани", "states": "States",
"screenshots": "Знімки екрану", "screenshots": "Screenshots",
"totalfilesize": "Загальний обсяг" "totalfilesize": "Total Size"
}, },
"mailcow": { "mailcow": {
"domains": "Домени", "domains": "Домени",
"mailboxes": "Пошта", "mailboxes": "Mailboxes",
"mails": "Листи", "mails": "Mails",
"storage": "Сховище" "storage": "Сховище"
}, },
"netdata": { "netdata": {
"warnings": "Попередження", "warnings": "Попередження",
"criticals": "Критичні" "criticals": "Criticals"
}, },
"plantit": { "plantit": {
"events": "Події", "events": "Events",
"plants": "Рослини", "plants": "Plants",
"photos": "Фотографії", "photos": "Фотографії",
"species": "Види" "species": "Species"
}, },
"gitea": { "gitea": {
"notifications": "Сповіщення", "notifications": "Сповіщення",
"issues": "Питання", "issues": "Питання",
"pulls": "Pull-запити" "pulls": "Pull Requests"
}, },
"stash": { "stash": {
"scenes": "Сцени", "scenes": "Scenes",
"scenesPlayed": "Зіграні сцени", "scenesPlayed": "Scenes Played",
"playCount": "Всього п'єс", "playCount": "Total Plays",
"playDuration": "Переглянуто", "playDuration": "Time Watched",
"sceneSize": "Розміри сцен", "sceneSize": "Scenes Size",
"sceneDuration": "Тривалість сцен", "sceneDuration": "Scenes Duration",
"images": "Зображення", "images": "Images",
"imageSize": "Розміри зображень", "imageSize": "Images Size",
"galleries": "Галереї", "galleries": "Galleries",
"performers": "Виконавці", "performers": "Виконавці",
"studios": "Студії", "studios": "Studios",
"movies": "Фільми", "movies": "Фільми",
"tags": "Теги", "tags": "Теги",
"oCount": "Кількість O" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "Користувачі", "users": "Користувачі",
@@ -909,16 +893,16 @@
"keywords": "Ключові слова" "keywords": "Ключові слова"
}, },
"homebox": { "homebox": {
"items": "Речі", "items": "Items",
"totalWithWarranty": "З гарантією", "totalWithWarranty": "With Warranty",
"locations": "Місцезнаходження", "locations": "Місцезнаходження",
"labels": "Мітки", "labels": "Мітки",
"users": "Користувачі", "users": "Користувачі",
"totalValue": "Загальне значення" "totalValue": "Total Value"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Оповіщення", "alerts": "Оповіщення",
"bans": "Блокування" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "З'єднано", "connected": "З'єднано",
@@ -927,21 +911,21 @@
"total": "Усього" "total": "Усього"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Пропущено через проксі", "proxied": "Proxied",
"auth": "З аутентифікацією", "auth": "With Auth",
"outdated": "Застаріле", "outdated": "Outdated",
"banned": "Заблоковано" "banned": "Banned"
}, },
"myspeed": { "myspeed": {
"ping": "Пінг", "ping": "Пінг",
"download": "Завантажено", "download": "Завантаження",
"upload": "Відправлено" "upload": "Відправлення"
}, },
"stocks": { "stocks": {
"stocks": "Акції", "stocks": "Stocks",
"loading": "Завантажую", "loading": "Завантажую",
"open": "Відкрито - ринок США", "open": "Open - US Market",
"closed": "Закрито - ринок США", "closed": "Closed - US Market",
"invalidConfiguration": "Неприпустима конфігурація" "invalidConfiguration": "Неприпустима конфігурація"
}, },
"frigate": { "frigate": {
@@ -950,85 +934,24 @@
"version": "Версія" "version": "Версія"
}, },
"linkwarden": { "linkwarden": {
"links": "Посилання", "links": "Links",
"collections": "Колекції", "collections": "Collections",
"tags": "Теги" "tags": "Теги"
}, },
"zabbix": { "zabbix": {
"unclassified": "Не визначено", "unclassified": "Not classified",
"information": "Інформація", "information": "Інформація",
"warning": "Попередження", "warning": "Warning",
"average": "Середнє", "average": "Average",
"high": "Високе", "high": "High",
"disaster": "Катастрофа" "disaster": "Disaster"
}, },
"lubelogger": { "lubelogger": {
"vehicle": "Транспортний засіб", "vehicle": "Vehicle",
"vehicles": "Транспортні засоби", "vehicles": "Vehicles",
"serviceRecords": "Записи служб", "serviceRecords": "Service Records",
"reminders": "Нагадування", "reminders": "Reminders",
"nextReminder": "Наступне нагадування", "nextReminder": "Next Reminder",
"none": "Жодного" "none": "None"
},
"vikunja": {
"projects": "Активні проекти",
"tasks7d": "Завдання цього тижня",
"tasksOverdue": "Прострочені завдання",
"tasksInProgress": "Завдання в процесі"
},
"headscale": {
"name": "Назва",
"address": "Адреса",
"last_seen": "Востаннє у мережі",
"status": "Стан",
"online": "Онлайн",
"offline": "Офлайн"
},
"beszel": {
"name": "Назва",
"systems": "Системи",
"up": "Онлайн",
"down": "Офлайн",
"paused": "Призупинено",
"pending": "В очікуванні",
"status": "Стан",
"updated": "Оновлено",
"cpu": "ЦП",
"memory": "ОЗП",
"disk": "Диск",
"network": "МЕРЕЖА"
},
"argocd": {
"apps": "Додатки",
"synced": "Синхронізовано",
"outOfSync": "Не синхронізовано",
"healthy": "Здоровий",
"degraded": "Деградує",
"progressing": "Прогрес",
"missing": "Відсутній",
"suspended": "Призупинено"
},
"spoolman": {
"loading": "Завантажую"
},
"gitlab": {
"groups": "Групи",
"issues": "Питання",
"merges": "Запити на злиття",
"projects": "Проєкти"
},
"apcups": {
"status": "Стан",
"load": "Завантаження",
"bcharge": "Заряд батареї",
"timeleft": "Залишилось"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Теги"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"duration": "{{value, duration}}", "uptime": "{{value, uptime}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -120,7 +120,7 @@
"grid_power": "Grid", "grid_power": "Grid",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
"kilowatt": "kW" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Download", "download": "Download",
@@ -148,9 +148,7 @@
"up": "Up", "up": "Up",
"received": "Received", "received": "Received",
"sent": "Sent", "sent": "Sent",
"externalIPAddress": "Ext. IP", "externalIPAddress": "Ext. IP"
"externalIPv6Address": "Ext. IPv6",
"externalIPv6Prefix": "Ext. IPv6-Prefix"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
@@ -178,7 +176,7 @@
"connectedAp": "Connected APs", "connectedAp": "Connected APs",
"activeUser": "Active devices", "activeUser": "Active devices",
"alerts": "Alerts", "alerts": "Alerts",
"connectedGateways": "Connected gateways", "connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches" "connectedSwitches": "Connected switches"
}, },
"nzbget": { "nzbget": {
@@ -311,16 +309,6 @@
"stopped": "Stopped", "stopped": "Stopped",
"total": "Tổng" "total": "Tổng"
}, },
"suwayomi": {
"download": "Đã tải",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -704,10 +692,6 @@
"processed": "Processed", "processed": "Processed",
"time": "Time" "time": "Time"
}, },
"firefly": {
"networth": "Net Worth",
"budget": "Budget"
},
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "Dashboards",
"datasources": "Data Sources", "datasources": "Data Sources",
@@ -969,66 +953,5 @@
"reminders": "Reminders", "reminders": "Reminders",
"nextReminder": "Next Reminder", "nextReminder": "Next Reminder",
"none": "None" "none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Trạng thái",
"online": "Online",
"offline": "Ngoại tuyến"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"down": "Down",
"paused": "Paused",
"pending": "Đang xử lý",
"status": "Trạng thái",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
},
"apcups": {
"status": "Trạng thái",
"load": "Load",
"bcharge": "Battery Charge",
"timeleft": "Thời gian còn lại"
},
"hoarder": {
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"archived": "Archived",
"highlights": "Highlights",
"lists": "Lists",
"tags": "Tags"
} }
} }

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