mirror of
https://github.com/DI0IK/homepage-plus.git
synced 2025-07-06 20:28:48 +00:00
Compare commits
1 commit
homepage-p
...
v0.10.7-pl
Author | SHA1 | Date | |
---|---|---|---|
827e37df2a |
410 changed files with 13552 additions and 7723 deletions
3
.babelrc
Normal file
3
.babelrc
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"presets": ["next/babel"]
|
||||
}
|
|
@ -16,11 +16,11 @@
|
|||
**/compose*
|
||||
**/Dockerfile*
|
||||
**/node_modules
|
||||
!.next/standalone/node_modules
|
||||
**/npm-debug.log
|
||||
**/obj
|
||||
**/secrets.dev.yaml
|
||||
**/values.dev.yaml
|
||||
**/.next
|
||||
README.md
|
||||
config/
|
||||
k3d/
|
||||
|
|
|
@ -1,9 +1,5 @@
|
|||
{
|
||||
"extends": [
|
||||
"next/core-web-vitals",
|
||||
"prettier",
|
||||
"plugin:react-hooks/recommended"
|
||||
],
|
||||
"extends": ["airbnb", "next/core-web-vitals", "prettier"],
|
||||
"plugins": ["prettier"],
|
||||
"rules": {
|
||||
"import/no-cycle": [
|
||||
|
@ -31,12 +27,5 @@
|
|||
"paths": ["src"]
|
||||
}
|
||||
}
|
||||
},
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 6,
|
||||
"sourceType": "module",
|
||||
"ecmaFeatures": {
|
||||
"modules": true
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
2
.github/DISCUSSION_TEMPLATE/support.yml
vendored
2
.github/DISCUSSION_TEMPLATE/support.yml
vendored
|
@ -51,7 +51,7 @@ body:
|
|||
id: troubleshooting
|
||||
attributes:
|
||||
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:
|
||||
required: true
|
||||
- type: markdown
|
||||
|
|
8
.github/PULL_REQUEST_TEMPLATE.md
vendored
8
.github/PULL_REQUEST_TEMPLATE.md
vendored
|
@ -6,7 +6,6 @@
|
|||
==================== 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.
|
||||
-->
|
||||
|
||||
|
@ -15,6 +14,9 @@ If this PR does not meet those guidelines it will not be accepted, and everyone
|
|||
<!--
|
||||
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.
|
||||
-->
|
||||
|
||||
|
@ -28,13 +30,13 @@ What type of change does your PR introduce to Homepage?
|
|||
|
||||
- [ ] New service widget
|
||||
- [ ] 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
|
||||
- [ ] Other (please explain)
|
||||
|
||||
## Checklist:
|
||||
|
||||
- [ ] 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).
|
||||
- [ ] If applicable, I have tested my code for new features & regressions on both mobile & desktop devices, using the latest version of major browsers.
|
||||
|
|
5
.github/pull.yml
vendored
Normal file
5
.github/pull.yml
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
version: "1"
|
||||
rules:
|
||||
- base: dev
|
||||
upstream: gethomepage:dev
|
||||
mergeMethod: hardreset
|
4
.github/workflows/crowdin.yml
vendored
4
.github/workflows/crowdin.yml
vendored
|
@ -2,8 +2,8 @@ name: Crowdin Action
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
# schedule:
|
||||
# - cron: '2 */12 * * *'
|
||||
schedule:
|
||||
- cron: '2 */12 * * *'
|
||||
push:
|
||||
paths: [
|
||||
'/public/locales/en/**',
|
||||
|
|
130
.github/workflows/docker-publish.yml
vendored
130
.github/workflows/docker-publish.yml
vendored
|
@ -1,4 +1,9 @@
|
|||
name: Docker CI
|
||||
name: Docker
|
||||
|
||||
# This workflow uses actions that are not certified by GitHub.
|
||||
# They are provided by a third-party and are governed by
|
||||
# separate terms of service, privacy policy, and support
|
||||
# documentation.
|
||||
|
||||
on:
|
||||
# schedule:
|
||||
|
@ -23,41 +28,26 @@ on:
|
|||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
# github.repository as <account>/<repo>
|
||||
IMAGE_NAME: ${{ github.repository }}
|
||||
|
||||
|
||||
jobs:
|
||||
pre-commit:
|
||||
name: Linting Checks
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
-
|
||||
name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install python
|
||||
-
|
||||
name: Install python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: 3.x
|
||||
|
||||
- name: Check files
|
||||
uses: pre-commit/action@v3.0.1
|
||||
|
||||
- name: Install pnpm
|
||||
uses: pnpm/action-setup@v4
|
||||
with:
|
||||
version: 10
|
||||
run_install: false
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
cache: 'pnpm'
|
||||
|
||||
- name: Install dependencies
|
||||
run: pnpm install
|
||||
|
||||
- name: Lint frontend
|
||||
run: pnpm run lint
|
||||
-
|
||||
name: Check files
|
||||
uses: pre-commit/action@v3.0.0
|
||||
|
||||
build:
|
||||
name: Docker Build & Push
|
||||
|
@ -72,55 +62,27 @@ jobs:
|
|||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Extract Docker metadata
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: |
|
||||
${{ env.IMAGE_NAME }}
|
||||
ghcr.io/${{ env.IMAGE_NAME }}
|
||||
tags: |
|
||||
# Default tags
|
||||
type=schedule,pattern=nightly
|
||||
type=ref,event=branch
|
||||
type=ref,event=tag
|
||||
# Versioning tags
|
||||
type=semver,pattern=v{{version}}
|
||||
type=semver,pattern=v{{major}}.{{minor}}
|
||||
type=semver,pattern=v{{major}}
|
||||
flavor: |
|
||||
latest=auto
|
||||
# Setup QEMU
|
||||
# https://github.com/marketplace/actions/docker-setup-buildx#with-qemu
|
||||
- name: Setup QEMU
|
||||
uses: docker/setup-qemu-action@v3
|
||||
|
||||
- name: Next.js build cache
|
||||
uses: actions/cache@v4
|
||||
# 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: .next/cache
|
||||
key: nextjs-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}-${{ hashFiles('**/*.js', '**/*.jsx') }}
|
||||
path: /tmp/.buildx-cache
|
||||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||
restore-keys: |
|
||||
nextjs-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
|
||||
|
||||
- name: Install pnpm
|
||||
uses: pnpm/action-setup@v4
|
||||
with:
|
||||
version: 10
|
||||
run_install: false
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 20
|
||||
cache: 'pnpm'
|
||||
|
||||
- name: Install dependencies
|
||||
run: pnpm install
|
||||
|
||||
- name: Build app
|
||||
run: |
|
||||
NEXT_PUBLIC_BUILDTIME="${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}" \
|
||||
NEXT_PUBLIC_VERSION="${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }}" \
|
||||
NEXT_PUBLIC_REVISION="${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}" \
|
||||
pnpm run build
|
||||
${{ runner.os }}-buildx-
|
||||
|
||||
# Login against a Docker registry except on PR
|
||||
# https://github.com/docker/login-action
|
||||
- name: Log into registry ${{ env.REGISTRY }}
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: docker/login-action@v3
|
||||
|
@ -128,7 +90,6 @@ jobs:
|
|||
registry: ghcr.io
|
||||
username: ${{ github.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Login to Docker Hub
|
||||
if: github.event_name != 'pull_request'
|
||||
uses: docker/login-action@v3
|
||||
|
@ -136,12 +97,20 @@ jobs:
|
|||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
- name: Setup QEMU
|
||||
uses: docker/setup-qemu-action@v3.6.0
|
||||
|
||||
- name: Setup Docker buildx
|
||||
uses: docker/setup-buildx-action@v3
|
||||
# Extract metadata (tags, labels) for Docker
|
||||
# https://github.com/docker/metadata-action
|
||||
- name: Extract Docker metadata
|
||||
id: meta
|
||||
uses: docker/metadata-action@v5
|
||||
with:
|
||||
images: |
|
||||
${{ env.IMAGE_NAME }}
|
||||
ghcr.io/${{ env.IMAGE_NAME }}
|
||||
flavor: |
|
||||
latest=auto
|
||||
|
||||
# Build and push Docker image with Buildx (don't push on PR)
|
||||
# https://github.com/docker/build-push-action
|
||||
- name: Build and push Docker image
|
||||
id: build-and-push
|
||||
uses: docker/build-push-action@v6
|
||||
|
@ -151,15 +120,18 @@ jobs:
|
|||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
build-args: |
|
||||
CI=true
|
||||
BUILDTIME=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
|
||||
VERSION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }}
|
||||
REVISION=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
|
||||
platforms: linux/amd64,linux/arm64
|
||||
# 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/arm/v7,linux/arm/v6
|
||||
cache-from: type=local,src=/tmp/.buildx-cache
|
||||
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
|
||||
|
||||
# https://github.com/docker/build-push-action/issues/252 / https://github.com/moby/buildkit/issues/1896
|
||||
# Temp fix
|
||||
# https://github.com/docker/build-push-action/issues/252
|
||||
# https://github.com/moby/buildkit/issues/1896
|
||||
- name: Move cache
|
||||
run: |
|
||||
rm -rf /tmp/.buildx-cache
|
||||
|
|
2
.github/workflows/docs-publish.yml
vendored
2
.github/workflows/docs-publish.yml
vendored
|
@ -55,7 +55,7 @@ jobs:
|
|||
run: MKINSIDERS=false mkdocs build
|
||||
deploy:
|
||||
name: Build & Deploy
|
||||
if: github.repository == 'gethomepage/homepage' && github.event_name != 'pull_request' && github.ref == 'refs/heads/main'
|
||||
if: github.repository == 'gethomepage/homepage' && github.event_name != 'pull_request'
|
||||
runs-on: ubuntu-latest
|
||||
needs:
|
||||
- pre-commit
|
||||
|
|
2
.github/workflows/reaction-comments.yml
vendored
2
.github/workflows/reaction-comments.yml
vendored
|
@ -5,6 +5,8 @@ on:
|
|||
types: [created, edited]
|
||||
pull_request_review_comment:
|
||||
types: [created, edited]
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
|
||||
permissions:
|
||||
actions: write
|
||||
|
|
|
@ -9,14 +9,11 @@ repos:
|
|||
- id: check-yaml
|
||||
exclude: "(^mkdocs\\.yml$)"
|
||||
- id: check-added-large-files
|
||||
- repo: https://github.com/rbubley/mirrors-prettier
|
||||
rev: 'v3.3.3'
|
||||
- repo: https://github.com/pre-commit/mirrors-prettier
|
||||
rev: 'v3.0.3'
|
||||
hooks:
|
||||
- id: prettier
|
||||
types_or:
|
||||
- javascript
|
||||
- markdown
|
||||
- jsx
|
||||
additional_dependencies:
|
||||
- prettier@3.3.3
|
||||
- 'prettier-plugin-organize-imports@4.1.0'
|
||||
|
|
1
.prettierrc
Normal file
1
.prettierrc
Normal file
|
@ -0,0 +1 @@
|
|||
{}
|
|
@ -1,5 +0,0 @@
|
|||
const config = {
|
||||
plugins: [require("prettier-plugin-organize-imports")],
|
||||
};
|
||||
|
||||
module.exports = config;
|
83
Dockerfile
83
Dockerfile
|
@ -1,63 +1,66 @@
|
|||
# =========================
|
||||
# Builder Stage
|
||||
# =========================
|
||||
FROM node:22-slim AS builder
|
||||
# syntax = docker/dockerfile:latest
|
||||
|
||||
# Install dependencies only when needed
|
||||
FROM docker.io/node:18-alpine AS deps
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Setup
|
||||
RUN mkdir config
|
||||
COPY . .
|
||||
COPY --link package.json pnpm-lock.yaml* ./
|
||||
|
||||
SHELL ["/bin/ash", "-xeo", "pipefail", "-c"]
|
||||
RUN apk add --no-cache libc6-compat \
|
||||
&& apk add --no-cache --virtual .gyp python3 make g++ \
|
||||
&& npm install -g pnpm
|
||||
|
||||
RUN --mount=type=cache,id=pnpm-store,target=/root/.local/share/pnpm/store pnpm fetch | grep -v "cross-device link not permitted\|Falling back to copying packages from store"
|
||||
|
||||
RUN --mount=type=cache,id=pnpm-store,target=/root/.local/share/pnpm/store pnpm install -r --offline
|
||||
|
||||
# Rebuild the source code only when needed
|
||||
FROM docker.io/node:18-alpine AS builder
|
||||
WORKDIR /app
|
||||
|
||||
ARG CI
|
||||
ARG BUILDTIME
|
||||
ARG VERSION
|
||||
ARG REVISION
|
||||
ENV CI=$CI
|
||||
|
||||
# Install and build only outside CI
|
||||
RUN if [ "$CI" != "true" ]; then \
|
||||
corepack enable && corepack prepare pnpm@latest --activate && \
|
||||
pnpm install --frozen-lockfile --prefer-offline && \
|
||||
NEXT_TELEMETRY_DISABLED=1 \
|
||||
NEXT_PUBLIC_BUILDTIME=$BUILDTIME \
|
||||
NEXT_PUBLIC_VERSION=$VERSION \
|
||||
NEXT_PUBLIC_REVISION=$REVISION \
|
||||
pnpm run build; \
|
||||
else \
|
||||
echo "✅ Using prebuilt app from CI context"; \
|
||||
fi
|
||||
COPY --link --from=deps /app/node_modules ./node_modules/
|
||||
COPY . .
|
||||
|
||||
# =========================
|
||||
# Runtime Stage
|
||||
# =========================
|
||||
FROM node:22-alpine AS runner
|
||||
LABEL org.opencontainers.image.title="Homepage"
|
||||
LABEL org.opencontainers.image.description="A self-hosted services landing page, with docker and service integrations."
|
||||
LABEL org.opencontainers.image.url="https://github.com/di0ik/homepage-plus"
|
||||
SHELL ["/bin/ash", "-xeo", "pipefail", "-c"]
|
||||
RUN npm run telemetry \
|
||||
&& mkdir config \
|
||||
&& NEXT_PUBLIC_BUILDTIME=$BUILDTIME NEXT_PUBLIC_VERSION=$VERSION NEXT_PUBLIC_REVISION=$REVISION npm run build
|
||||
|
||||
# Production image, copy all the files and run next
|
||||
FROM docker.io/node:18-alpine AS runner
|
||||
LABEL org.opencontainers.image.title "Homepage"
|
||||
LABEL org.opencontainers.image.description "A self-hosted services landing page, with docker and service integrations."
|
||||
LABEL org.opencontainers.image.url="https://github.com/gethomepage/homepage"
|
||||
LABEL org.opencontainers.image.documentation='https://github.com/gethomepage/homepage/wiki'
|
||||
LABEL org.opencontainers.image.source='https://github.com/di0ik/homepage-plus'
|
||||
LABEL org.opencontainers.image.source='https://github.com/gethomepage/homepage'
|
||||
LABEL org.opencontainers.image.licenses='Apache-2.0'
|
||||
|
||||
# Setup
|
||||
ENV NODE_ENV production
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
# Copy some files from context
|
||||
# Copy files from context (this allows the files to copy before the builder stage is done).
|
||||
COPY --link --chown=1000:1000 package.json next.config.js ./
|
||||
COPY --link --chown=1000:1000 /public ./public/
|
||||
|
||||
# Copy files from builder
|
||||
COPY --link --from=builder --chown=1000:1000 /app/.next/standalone ./
|
||||
COPY --link --from=builder --chown=1000:1000 /app/.next/static/ ./.next/static/
|
||||
COPY --link --chmod=755 docker-entrypoint.sh /usr/local/bin/
|
||||
|
||||
# Copy only necessary files from the build stage
|
||||
COPY --link --from=builder --chown=1000:1000 /app/.next/standalone/ ./
|
||||
COPY --link --from=builder --chown=1000:1000 /app/.next/static/ ./.next/static
|
||||
RUN apk add --no-cache su-exec
|
||||
|
||||
RUN apk add --no-cache su-exec iputils-ping
|
||||
|
||||
ENV NODE_ENV=production
|
||||
ENV HOSTNAME=0.0.0.0
|
||||
ENV PORT=3000
|
||||
ENV PORT 3000
|
||||
EXPOSE $PORT
|
||||
|
||||
HEALTHCHECK --interval=10s --timeout=3s --start-period=20s \
|
||||
CMD wget --no-verbose --tries=1 --spider http://127.0.0.1:$PORT/api/healthcheck || exit 1
|
||||
CMD wget --no-verbose --tries=1 --spider --no-check-certificate http://localhost:$PORT/api/healthcheck || exit 1
|
||||
|
||||
ENTRYPOINT ["docker-entrypoint.sh"]
|
||||
CMD ["node", "server.js"]
|
||||
|
|
|
@ -10,7 +10,7 @@ RUN <<EOF
|
|||
apk add libc6-compat
|
||||
apk add --virtual .gyp python3 make g++
|
||||
npm install -g pnpm
|
||||
pnpm install -g next
|
||||
npm install -g next
|
||||
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"
|
||||
|
|
|
@ -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.
|
||||
- **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.
|
||||
- **Service & Web Bookmarks** - Add custom links to the homepage.
|
||||
- **Docker Integration** - Container status and stats. Automatic service discovery via labels.
|
||||
|
@ -80,7 +80,6 @@ services:
|
|||
image: ghcr.io/gethomepage/homepage:latest
|
||||
container_name: homepage
|
||||
environment:
|
||||
HOMEPAGE_ALLOWED_HOSTS: gethomepage.dev # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts
|
||||
PUID: 1000 # optional, your user id
|
||||
PGID: 1000 # optional, your group id
|
||||
ports:
|
||||
|
@ -95,7 +94,6 @@ or docker run:
|
|||
|
||||
```bash
|
||||
docker run --name homepage \
|
||||
-e HOMEPAGE_ALLOWED_HOSTS=gethomepage.dev \
|
||||
-e PUID=1000 \
|
||||
-e PGID=1000 \
|
||||
-p 3000:3000 \
|
||||
|
@ -113,7 +111,7 @@ First, clone the repository:
|
|||
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
|
||||
pnpm install
|
||||
|
|
|
@ -15,7 +15,7 @@ export HOMEPAGE_BUILDTIME=$(date +%s)
|
|||
# Set privileges for /app but only if pid 1 user is root and we are dropping privileges.
|
||||
# If container is run as an unprivileged user, it means owner already handled ownership setup on their own.
|
||||
# Running chown in that case (as non-root) will cause error
|
||||
[ "$(id -u)" == "0" ] && [ "${PUID}" != "0" ] && chown -R ${PUID}:${PGID} /app/config /app/public
|
||||
[ "$(id -u)" == "0" ] && [ "${PUID}" != "0" ] && chown -R ${PUID}:${PGID} /app
|
||||
|
||||
# Drop privileges (when asked to) if root, otherwise run as current user
|
||||
if [ "$(id -u)" == "0" ] && [ "${PUID}" != "0" ]; then
|
||||
|
|
3
docs/assets/custom.css
Normal file
3
docs/assets/custom.css
Normal file
|
@ -0,0 +1,3 @@
|
|||
.md-typeset[data-page-id="landing"] .md-header-anchor {
|
||||
display: none;
|
||||
}
|
|
@ -157,12 +157,12 @@ 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
|
||||
- homepage.widget[0].type=emby
|
||||
- homepage.widget[0].url=http://emby.home
|
||||
- homepage.widget[0].key=yourembyapikeyhere
|
||||
- homepage.widget[1].type=uptimekuma
|
||||
- homepage.widget[1].url=http://uptimekuma.home
|
||||
- homepage.widget[1].slug=youreventslughere
|
||||
```
|
||||
|
||||
You can add specify fields for e.g. the [CustomAPI](../widgets/services/customapi.md) widget by using array-style dot notation:
|
||||
|
|
|
@ -8,7 +8,6 @@ The Kubernetes connectivity has the following requirements:
|
|||
- Kubernetes 1.19+
|
||||
- Metrics Service
|
||||
- An Ingress controller
|
||||
- Optionally: Gateway-API
|
||||
|
||||
The Kubernetes connection is configured in the `kubernetes.yaml` file. There are 3 modes to choose from:
|
||||
|
||||
|
@ -20,22 +19,6 @@ The Kubernetes connection is configured in the `kubernetes.yaml` file. There are
|
|||
mode: default
|
||||
```
|
||||
|
||||
To configure Kubernetes gateway-api, ingress or ingressRoute service discovery, add one or multiple of the following settings.
|
||||
|
||||
Example settings:
|
||||
|
||||
```yaml
|
||||
ingress: true # default, enable ingress only
|
||||
```
|
||||
|
||||
or
|
||||
|
||||
```yaml
|
||||
ingress: true # default, enable ingress
|
||||
traefik: true # enable traefik ingressRoute
|
||||
gateway: true # enable gateway-api
|
||||
```
|
||||
|
||||
## Services
|
||||
|
||||
Once the Kubernetes connection is configured, individual services can be configured to pull statistics. Only CPU and Memory are currently supported.
|
||||
|
@ -159,10 +142,6 @@ spec:
|
|||
|
||||
If the `href` attribute is not present, Homepage will ignore the specific IngressRoute.
|
||||
|
||||
### 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).
|
||||
|
||||
## Caveats
|
||||
|
||||
Similarly to Docker service discovery, there currently is no rigid ordering to discovered services and discovered services will be displayed above those specified in the `services.yaml`.
|
||||
|
|
|
@ -97,10 +97,6 @@ Each service can have multiple widgets attached to it, for example:
|
|||
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.
|
||||
|
@ -138,7 +134,7 @@ Services may have descriptions,
|
|||
|
||||
## 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:
|
||||
|
||||
|
@ -182,10 +178,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.
|
||||
|
||||
!!! 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
|
||||
- Group A:
|
||||
- Sonarr:
|
||||
|
|
|
@ -78,7 +78,7 @@ background:
|
|||
You can apply a blur filter to the service & bookmark cards. Note this option is incompatible with the background blur, saturate and brightness filters.
|
||||
|
||||
```yaml
|
||||
cardBlur: xs # xs, md, etc... see https://tailwindcss.com/docs/backdrop-blur
|
||||
cardBlur: sm # sm, "", md, etc... see https://tailwindcss.com/docs/backdrop-blur
|
||||
```
|
||||
|
||||
## Favicon
|
||||
|
@ -254,29 +254,15 @@ layout:
|
|||
columns: 4
|
||||
```
|
||||
|
||||
### Full Width
|
||||
### Five Columns
|
||||
|
||||
You can make homepage take up the entire window width by adding:
|
||||
You can add a fifth column to services (when `style: columns` which is default) by adding:
|
||||
|
||||
```yaml
|
||||
fullWidth: true
|
||||
fiveColumns: true
|
||||
```
|
||||
|
||||
### Maximum Group Columns
|
||||
|
||||
You can set the maximum number of columns of groups on larger screen sizes (note this is only for groups with the default `style: columns`, not groups with `stle: row`) by adding:
|
||||
|
||||
```yaml
|
||||
maxGroupColumns: 8 # default is 4 for services, 6 for bookmarks, max 8
|
||||
```
|
||||
|
||||
By default homepage will max out at 4 columns for services and 6 for bookmarks, thus the minimum for this setting is _5_. Of course, if you're setting this to higher numbers, you may want to consider enabling the [fullWidth](#full-width) option as well.
|
||||
|
||||
If you want to set the maximum columns for bookmark groups separately, you can do so by adding:
|
||||
|
||||
```yaml
|
||||
maxBookmarkGroupColumns: 6 # default is 6, max 8
|
||||
```
|
||||
By default homepage will max out at 4 columns for services with `columns` style
|
||||
|
||||
### Collapsible sections
|
||||
|
||||
|
@ -461,7 +447,7 @@ quicklaunch:
|
|||
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:
|
||||
|
||||
|
@ -469,12 +455,6 @@ By default the release version is displayed at the bottom of the page. To hide t
|
|||
hideVersion: true
|
||||
```
|
||||
|
||||
You can disable checking for new versions from GitHub (enabled by default) with:
|
||||
|
||||
```yaml
|
||||
disableUpdateCheck: true
|
||||
```
|
||||
|
||||
## 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.
|
||||
|
|
|
@ -15,8 +15,6 @@ services:
|
|||
volumes:
|
||||
- /path/to/config:/app/config # Make sure your local config directory exists
|
||||
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
|
||||
environment:
|
||||
HOMEPAGE_ALLOWED_HOSTS: gethomepage.dev # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts
|
||||
```
|
||||
|
||||
### Running as non-root
|
||||
|
@ -38,7 +36,6 @@ services:
|
|||
- /path/to/config:/app/config # Make sure your local config directory exists
|
||||
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations, see alternative methods
|
||||
environment:
|
||||
HOMEPAGE_ALLOWED_HOSTS: gethomepage.dev # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts
|
||||
PUID: $PUID
|
||||
PGID: $PGID
|
||||
```
|
||||
|
@ -46,7 +43,7 @@ services:
|
|||
### With Docker Run
|
||||
|
||||
```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
|
||||
|
|
|
@ -4,37 +4,27 @@ description: Docs intro
|
|||
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.
|
||||
</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.
|
||||
|
||||
<br>
|
||||
|
||||
<div class="grid cards" style="margin: 0 auto;" markdown>
|
||||
[:simple-docker: Install on Docker :octicons-arrow-right-24:](docker.md)
|
||||
:simple-docker: [ Install on Docker :octicons-arrow-right-24:](docker.md)
|
||||
{ .card }
|
||||
|
||||
[:simple-kubernetes: Install on Kubernetes :octicons-arrow-right-24:](k8s.md)
|
||||
:simple-kubernetes: [ Install on Kubernetes :octicons-arrow-right-24:](k8s.md)
|
||||
{ .card }
|
||||
|
||||
[:simple-unraid: Install on UNRAID :octicons-arrow-right-24:](unraid.md)
|
||||
:simple-unraid: [ Install on UNRAID :octicons-arrow-right-24:](unraid.md)
|
||||
{ .card }
|
||||
|
||||
[:simple-nextdotjs: Building from source :octicons-arrow-right-24:](source.md)
|
||||
:simple-nextdotjs: [ Building from source :octicons-arrow-right-24:](source.md)
|
||||
{ .card }
|
||||
|
||||
</div>
|
||||
|
||||
### `HOMEPAGE_ALLOWED_HOSTS`
|
||||
|
||||
As of v1.0 there is one required environment variable to access homepage via a URL other than `localhost`, <code>HOMEPAGE_ALLOWED_HOSTS</code>. The setting helps prevent certain kinds of attacks when retrieving data from the homepage API proxy.
|
||||
|
||||
The value is a comma-separated (no spaces) list of allowed hosts (sometimes with the port) that can host your homepage install. See the [docker](docker.md), [kubernetes](k8s.md) and [source](source.md) installation pages for more information about where / how to set the variable.
|
||||
|
||||
`localhost:3000` and `127.0.0.1:3000` are always included, but you can add a domain or IP address to this list to allow that host such as `HOMEPAGE_ALLOWED_HOSTS=gethomepage.dev,192.168.1.2:1234`, etc.
|
||||
|
||||
If you are seeing errors about host validation, check the homepage logs and ensure that the host exactly as output in the logs is in the `HOMEPAGE_ALLOWED_HOSTS` list.
|
||||
|
||||
This can be disabled by setting `HOMEPAGE_ALLOWED_HOSTS` to `*` but this is not recommended.
|
||||
|
|
|
@ -3,6 +3,85 @@ title: Kubernetes Installation
|
|||
description: Install on Kubernetes
|
||||
---
|
||||
|
||||
## Install with Helm
|
||||
|
||||
There is an [unofficial helm chart](https://github.com/jameswynn/helm-charts/tree/main/charts/homepage) that creates all the necessary manifests, including the service account and RBAC entities necessary for service discovery.
|
||||
|
||||
```sh
|
||||
helm repo add jameswynn https://jameswynn.github.io/helm-charts
|
||||
helm install homepage jameswynn/homepage -f values.yaml
|
||||
```
|
||||
|
||||
The helm chart allows for all the configurations to be inlined directly in your `values.yaml`:
|
||||
|
||||
```yaml
|
||||
config:
|
||||
bookmarks:
|
||||
- Developer:
|
||||
- Github:
|
||||
- abbr: GH
|
||||
href: https://github.com/
|
||||
services:
|
||||
- My First Group:
|
||||
- My First Service:
|
||||
href: http://localhost/
|
||||
description: Homepage is awesome
|
||||
|
||||
- My Second Group:
|
||||
- My Second Service:
|
||||
href: http://localhost/
|
||||
description: Homepage is the best
|
||||
|
||||
- My Third Group:
|
||||
- My Third Service:
|
||||
href: http://localhost/
|
||||
description: Homepage is 😎
|
||||
widgets:
|
||||
# show the kubernetes widget, with the cluster summary and individual nodes
|
||||
- kubernetes:
|
||||
cluster:
|
||||
show: true
|
||||
cpu: true
|
||||
memory: true
|
||||
showLabel: true
|
||||
label: "cluster"
|
||||
nodes:
|
||||
show: true
|
||||
cpu: true
|
||||
memory: true
|
||||
showLabel: true
|
||||
- search:
|
||||
provider: duckduckgo
|
||||
target: _blank
|
||||
kubernetes:
|
||||
mode: cluster
|
||||
settings:
|
||||
|
||||
# The service account is necessary to allow discovery of other services
|
||||
serviceAccount:
|
||||
create: true
|
||||
name: homepage
|
||||
|
||||
# This enables the service account to access the necessary resources
|
||||
enableRbac: true
|
||||
|
||||
ingress:
|
||||
main:
|
||||
enabled: true
|
||||
annotations:
|
||||
# Example annotations to add Homepage to your Homepage!
|
||||
gethomepage.dev/enabled: "true"
|
||||
gethomepage.dev/name: "Homepage"
|
||||
gethomepage.dev/description: "Dynamically Detected Homepage"
|
||||
gethomepage.dev/group: "Dynamic"
|
||||
gethomepage.dev/icon: "homepage.png"
|
||||
hosts:
|
||||
- host: homepage.example.com
|
||||
paths:
|
||||
- path: /
|
||||
pathType: Prefix
|
||||
```
|
||||
|
||||
## Install with Kubernetes Manifests
|
||||
|
||||
If you don't want to use the unofficial Helm chart, you can also create your own Kubernetes manifest(s) and apply them with `kubectl apply -f filename.yaml`.
|
||||
|
@ -137,14 +216,6 @@ rules:
|
|||
verbs:
|
||||
- get
|
||||
- list
|
||||
- apiGroups:
|
||||
- gateway.networking.k8s.io
|
||||
resources:
|
||||
- httproutes
|
||||
- gateways
|
||||
verbs:
|
||||
- get
|
||||
- list
|
||||
- apiGroups:
|
||||
- metrics.k8s.io
|
||||
resources:
|
||||
|
@ -223,9 +294,6 @@ spec:
|
|||
- name: homepage
|
||||
image: "ghcr.io/gethomepage/homepage:latest"
|
||||
imagePullPolicy: Always
|
||||
env:
|
||||
- name: HOMEPAGE_ALLOWED_HOSTS
|
||||
value: gethomepage.dev # required, may need port. See gethomepage.dev/installation/#homepage_allowed_hosts
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 3000
|
||||
|
|
|
@ -9,13 +9,7 @@ First, clone the repository:
|
|||
git clone https://github.com/gethomepage/homepage.git
|
||||
```
|
||||
|
||||
If `pnpm` is not installed, install it:
|
||||
|
||||
```bash
|
||||
npm install -g pnpm
|
||||
```
|
||||
|
||||
Then install dependencies and build the production bundle:
|
||||
Then install dependencies and build the production bundle (I'm using pnpm here, you can use npm or yarn if you like):
|
||||
|
||||
```bash
|
||||
pnpm install
|
||||
|
@ -27,9 +21,5 @@ If this is your first time starting, copy the `src/skeleton` directory to `confi
|
|||
Finally, run the server:
|
||||
|
||||
```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.
|
||||
|
||||
See [HOMEPAGE_ALLOWED_HOSTS](index.md#homepage_allowed_hosts) for more information on this environment variable.
|
||||
|
|
|
@ -286,13 +286,3 @@ body[data-md-color-scheme="default"] {
|
|||
.md-tabs__link {
|
||||
transform: translateZ(0);
|
||||
}
|
||||
|
||||
.grid.cards .card {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.grid.cards .card a {
|
||||
display: block;
|
||||
padding: 0.8rem;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
|
|
@ -12,17 +12,14 @@ hide:
|
|||
- Check config/logs/homepage.log, on docker simply e.g. `docker logs homepage`. This may provide some insight into the reason for an error.
|
||||
- Check the browser error console, this can also sometimes provide useful information.
|
||||
- Consider setting the `ENV` variable `LOG_LEVEL` to `debug`.
|
||||
- If certain widgets are failing when connecting to public APIs, consider [disabling IPv6](#disabling-ipv6).
|
||||
|
||||
## Service Widget Errors
|
||||
|
||||
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. **URLs should not end with a / or other API path. Each widget will handle the path on its own.**. Including a trailing slash can result in an error.
|
||||
|
||||
2. All services with a widget require a unique name.
|
||||
|
||||
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.:
|
||||
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.:
|
||||
|
||||
```
|
||||
docker exec homepage ping SERVICEIPORDOMAIN
|
||||
|
@ -30,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.
|
||||
|
||||
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
|
||||
|
||||
|
@ -67,17 +64,3 @@ All service widgets work essentially the same, that is, homepage makes a proxied
|
|||
## Missing custom icons
|
||||
|
||||
If, after correctly adding and mapping your custom icons via the [Icons](../configs/services.md#icons) instructions, you are still unable to see your icons please try recreating your container.
|
||||
|
||||
## Disabling IPv6
|
||||
|
||||
If you are having issues with certain widgets that are unable to reach public APIs (e.g. weather), in certain setups you may need to disable IPv6. You can set the environment variable `HOMEPAGE_PROXY_DISABLE_IPV6` to `true` to disable IPv6 for the homepage proxy.
|
||||
|
||||
Alternatively, you can use the `sysctls` option in your docker-compose file to disable IPv6 for the homepage container completely:
|
||||
|
||||
```yaml
|
||||
services:
|
||||
homepage:
|
||||
...
|
||||
sysctls:
|
||||
- net.ipv6.conf.all.disable_ipv6=1
|
||||
```
|
||||
|
|
|
@ -46,9 +46,9 @@ 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
|
||||
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 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.
|
||||
|
||||
## Service Widget Guidelines
|
||||
|
|
|
@ -22,8 +22,9 @@ An optional 'site' parameter can be supplied, if it is not the widget will use t
|
|||
```yaml
|
||||
- unifi_console:
|
||||
url: https://unifi.host.or.ip:port
|
||||
site: Site Name # optional
|
||||
username: user
|
||||
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_
|
||||
|
|
|
@ -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
|
||||
```
|
|
@ -9,8 +9,6 @@ The widget has two modes, a single system with detailed info if `systemId` is pr
|
|||
|
||||
The `systemID` is the `id` field on the collections page of Beszel under the PocketBase admin panel. You can also use the 'nice name' from the Beszel UI.
|
||||
|
||||
A "superuser" is currently required to access the data from tbe Beszel API.
|
||||
|
||||
Allowed fields for 'overview' mode: `["systems", "up"]`
|
||||
Allowed fields for a single system: `["name", "status", "updated", "cpu", "memory", "disk", "network"]`
|
||||
|
||||
|
|
|
@ -19,22 +19,27 @@ widget:
|
|||
requestBody: # optional, can be string or object, see below
|
||||
display: # optional, default to block, see below
|
||||
mappings:
|
||||
- field: key
|
||||
- field: key # needs to be YAML string or object
|
||||
label: Field 1
|
||||
format: text # optional - defaults to text
|
||||
- field: path.to.key2
|
||||
- field: # needs to be YAML string or object
|
||||
path:
|
||||
to: key2
|
||||
format: number # optional - defaults to text
|
||||
label: Field 2
|
||||
- field: path.to.another.key3
|
||||
- field: # needs to be YAML string or object
|
||||
path:
|
||||
to:
|
||||
another: key3
|
||||
label: Field 3
|
||||
format: percent # optional - defaults to text
|
||||
- field: key
|
||||
- field: key # needs to be YAML string or object
|
||||
label: Field 4
|
||||
format: date # optional - defaults to text
|
||||
locale: nl # optional
|
||||
dateStyle: long # optional - defaults to "long". Allowed values: `["full", "long", "medium", "short"]`.
|
||||
timeStyle: medium # optional - Allowed values: `["full", "long", "medium", "short"]`.
|
||||
- field: key
|
||||
- field: key # needs to be YAML string or object
|
||||
label: Field 5
|
||||
format: relativeDate # optional - defaults to text
|
||||
locale: nl # optional
|
||||
|
@ -44,7 +49,9 @@ widget:
|
|||
label: Field 6
|
||||
format: text
|
||||
additionalField: # optional
|
||||
field: hourly.time.key
|
||||
field:
|
||||
hourly:
|
||||
time: other key
|
||||
color: theme # optional - defaults to "". Allowed values: `["theme", "adaptive", "black", "white"]`.
|
||||
format: date # optional
|
||||
- field: key
|
||||
|
@ -55,12 +62,10 @@ widget:
|
|||
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 `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`.
|
||||
|
||||
## Example
|
||||
|
@ -96,16 +101,9 @@ mappings:
|
|||
label: Name
|
||||
- field: status # Alive
|
||||
label: Status
|
||||
- field: origin.name # Earth (C-137)
|
||||
- field:
|
||||
origin: name # Earth (C-137)
|
||||
label: Origin
|
||||
- field: locations.1.name # Citadel of Ricks
|
||||
label: Location
|
||||
```
|
||||
|
||||
Note that older versions of the widget accepted fields as a yaml object, which is still supported. E.g.:
|
||||
|
||||
```yaml
|
||||
mappings:
|
||||
- field:
|
||||
locations:
|
||||
1: name # Citadel of Ricks
|
||||
|
@ -138,15 +136,7 @@ You can manipulate data with the following tools `remap`, `scale`, `prefix` and
|
|||
prefix: "$"
|
||||
```
|
||||
|
||||
## Display Options
|
||||
|
||||
The widget supports different display modes that can be set using the `display` property.
|
||||
|
||||
### Block View (Default)
|
||||
|
||||
The default display mode is `block`, which shows fields in a block format.
|
||||
|
||||
### List View
|
||||
## List View
|
||||
|
||||
You can change the default block view to a list view by setting the `display` option to `list`.
|
||||
|
||||
|
@ -170,54 +160,13 @@ The list view can optionally display an additional field next to the primary fie
|
|||
- any: true # will map all other values
|
||||
to: Unknown
|
||||
additionalField:
|
||||
field: hourly.time.key
|
||||
field:
|
||||
hourly:
|
||||
time: key
|
||||
color: theme
|
||||
format: date
|
||||
```
|
||||
|
||||
### Dynamic List View
|
||||
|
||||
To display a list of items from an array in the API response, set the `display` property to `dynamic-list` and configure the `mappings` object with the following properties:
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
type: customapi
|
||||
url: https://example.com/api/servers
|
||||
display: dynamic-list
|
||||
mappings:
|
||||
items: data # optional, the path to the array in the API response. Omit this option if the array is at the root level
|
||||
name: id # required, field in each item to use as the item name (left side)
|
||||
label: ip_address # required, field in each item to use as the item label (right side)
|
||||
limit: 5 # optional, limit the number of items to display
|
||||
format: text # optional - format of the label field
|
||||
target: https://example.com/server/{id} # optional, makes items clickable with template support
|
||||
```
|
||||
|
||||
This configuration would work with an API that returns a response like:
|
||||
|
||||
```json
|
||||
{
|
||||
"data": [
|
||||
{ "id": "server1", "name": "Server 1", "ip_address": "192.168.0.1" },
|
||||
{ "id": "server2", "name": "Server 2", "ip_address": "192.168.0.2" }
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
The widget would display a list with two items:
|
||||
|
||||
- "Server 1" on the left and "192.168.0.1" on the right, clickable to "https://example.com/server/server1"
|
||||
- "Server 2" on the left and "192.168.0.2" on the right, clickable to "https://example.com/server/server2"
|
||||
|
||||
For nested fields in the items, you can use dot notation:
|
||||
|
||||
```yaml
|
||||
mappings:
|
||||
items: data.results.servers
|
||||
name: details.id
|
||||
label: details.name
|
||||
```
|
||||
|
||||
## Custom Headers
|
||||
|
||||
Pass custom headers using the `headers` option, for example:
|
||||
|
|
|
@ -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
|
||||
```
|
|
@ -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.
|
||||
|
||||
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
|
||||
widget:
|
||||
|
|
|
@ -7,7 +7,7 @@ Learn more about [Gitea](https://gitea.com).
|
|||
|
||||
API token requires `notifications`, `repository` and `issue` permissions. See the [gitea documentation](https://docs.gitea.com/development/api-usage#generating-and-listing-api-tokens) for details on generating tokens.
|
||||
|
||||
Allowed fields: `["repositories", "notifications", "issues", "pulls"]`.
|
||||
Allowed fields: `["notifications", "issues", "pulls"]`.
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
|
|
|
@ -11,7 +11,7 @@ Learn more about [Gluetun](https://github.com/qdm12/gluetun).
|
|||
|
||||
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
|
||||
widget:
|
||||
|
|
|
@ -8,7 +8,6 @@ search:
|
|||
You can also find a list of all available service widgets in the sidebar navigation.
|
||||
|
||||
- [Adguard Home](adguard-home.md)
|
||||
- [APC UPS](apcups.md)
|
||||
- [ArgoCD](argocd.md)
|
||||
- [Atsumeru](atsumeru.md)
|
||||
- [Audiobookshelf](audiobookshelf.md)
|
||||
|
@ -34,7 +33,6 @@ You can also find a list of all available service widgets in the sidebar navigat
|
|||
- [ESPHome](esphome.md)
|
||||
- [EVCC](evcc.md)
|
||||
- [Fileflows](fileflows.md)
|
||||
- [Firefly III](firefly.md)
|
||||
- [Flood](flood.md)
|
||||
- [FreshRSS](freshrss.md)
|
||||
- [Frigate](frigate.md)
|
||||
|
@ -51,7 +49,6 @@ You can also find a list of all available service widgets in the sidebar navigat
|
|||
- [HDHomeRun](hdhomerun.md)
|
||||
- [Headscale](headscale.md)
|
||||
- [Healthchecks](healthchecks.md)
|
||||
- [Karakeep](karakeep.md)
|
||||
- [Home Assistant](homeassistant.md)
|
||||
- [HomeBox](homebox.md)
|
||||
- [Homebridge](homebridge.md)
|
||||
|
@ -117,7 +114,6 @@ You can also find a list of all available service widgets in the sidebar navigat
|
|||
- [ruTorrent](rutorrent.md)
|
||||
- [SABnzbd](sabnzbd.md)
|
||||
- [Scrutiny](scrutiny.md)
|
||||
- [Slskd](slskd.md)
|
||||
- [Sonarr](sonarr.md)
|
||||
- [Speedtest Tracker](speedtest-tracker.md)
|
||||
- [Stash](stash.md)
|
||||
|
|
|
@ -1,17 +0,0 @@
|
|||
---
|
||||
title: Karakeep
|
||||
description: Karakeep Widget Configuration
|
||||
---
|
||||
|
||||
Learn more about [Karakeep](https://karakeep.app) (formerly known as Hoarder).
|
||||
|
||||
Generate an API key for your user at `User Settings > API Keys`.
|
||||
|
||||
Allowed fields: `["bookmarks", "favorites", "archived", "highlights", "lists", "tags"]` (maximum of 4).
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
type: karakeep
|
||||
url: http[s]://karakeep.host.or.ip[:port]
|
||||
key: karakeep_api_key
|
||||
```
|
|
@ -15,5 +15,4 @@ widget:
|
|||
url: http://kavita.host.or.ip:port
|
||||
username: username
|
||||
password: password
|
||||
key: kavitaapikey # Optional, e.g. if not using username and password
|
||||
```
|
||||
|
|
|
@ -9,16 +9,10 @@ Uses the same username and password used to login from the web.
|
|||
|
||||
Allowed fields: `["libraries", "series", "books"]`.
|
||||
|
||||
| Komga API Version | Homepage Widget Version |
|
||||
| ----------------- | ----------------------- |
|
||||
| < v2 | 1 (default) |
|
||||
| >= v2 | 2 |
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
type: komga
|
||||
url: http://komga.host.or.ip:port
|
||||
username: username
|
||||
password: password
|
||||
key: komgaapikey # optional
|
||||
```
|
||||
|
|
|
@ -20,6 +20,4 @@ widget:
|
|||
type: peanut
|
||||
url: http://peanut.host.or.ip:port
|
||||
key: nameofyourups
|
||||
username: username # only needed if set
|
||||
password: password # only needed if set
|
||||
```
|
||||
|
|
|
@ -10,5 +10,7 @@ If more than (4) fields are provided, only the first (4) will be used.
|
|||
widget:
|
||||
type: romm
|
||||
url: http://romm.host.or.ip
|
||||
username: username # optional
|
||||
password: password # optional
|
||||
fields: ["platforms", "totalRoms", "saves", "states"] # optional - default fields shown
|
||||
```
|
||||
|
|
|
@ -1,25 +0,0 @@
|
|||
---
|
||||
title: Slskd
|
||||
description: Slskd Widget Configuration
|
||||
---
|
||||
|
||||
Learn more about [Slskd](https://github.com/slskd/slskd).
|
||||
|
||||
Generate an API key for slskd with `openssl rand -base64 48`.
|
||||
Add it to your `path/to/config/slskd.yml` in `web > authentication > api_keys`:
|
||||
|
||||
```yaml
|
||||
homepage_widget:
|
||||
key: <generated key>
|
||||
role: readonly
|
||||
cidr: <homepage subnet>
|
||||
```
|
||||
|
||||
Allowed fields: `["slskStatus", "updateStatus", "downloads", "uploads", "sharedFiles"]` (maximum of 4).
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
type: slskd
|
||||
url: http[s]://slskd.host.or.ip[:5030]
|
||||
key: generatedapikey
|
||||
```
|
|
@ -8,12 +8,7 @@ Learn more about [Speedtest Tracker](https://github.com/alexjustesen/speedtest-t
|
|||
|
||||
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).
|
||||
|
||||
| Speedtest Version (AJ) | Speedtest Version (HW) | Homepage Widget Version |
|
||||
| ---------------------- | ---------------------- | ----------------------- |
|
||||
| < 1.2.1 | ≤ 1.12.0 | 1 (default) |
|
||||
| >= 1.2.1 | N/A | 2 |
|
||||
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).
|
||||
|
||||
Allowed fields: `["download", "upload", "ping"]`.
|
||||
|
||||
|
@ -21,7 +16,5 @@ Allowed fields: `["download", "upload", "ping"]`.
|
|||
widget:
|
||||
type: speedtest
|
||||
url: http://speedtest.host.or.ip
|
||||
version: 1 # optional, default is 1
|
||||
key: speedtestapikey # required for version 2
|
||||
bitratePrecision: 3 # optional, default is 0
|
||||
```
|
||||
|
|
|
@ -19,14 +19,15 @@ Allowed fields: `["uptime", "wan", "lan", "lan_users", "lan_devices", "wlan", "w
|
|||
|
||||
!!! 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
|
||||
widget:
|
||||
type: unifi
|
||||
url: https://unifi.host.or.ip:port
|
||||
username: username
|
||||
password: password
|
||||
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_
|
||||
|
|
|
@ -46,10 +46,6 @@ config:
|
|||
docker:
|
||||
settings:
|
||||
|
||||
env:
|
||||
- name: HOMEPAGE_ALLOWED_HOSTS
|
||||
value: "homepage.k3d.localhost:8080"
|
||||
|
||||
serviceAccount:
|
||||
create: true
|
||||
name: homepage
|
||||
|
|
|
@ -23,12 +23,6 @@ Set the `mode` in the `kubernetes.yaml` to `cluster`.
|
|||
mode: default
|
||||
```
|
||||
|
||||
To enable Kubernetes gateway-api compatibility, set `route` to `gateway`.
|
||||
|
||||
```yaml
|
||||
route: gateway
|
||||
```
|
||||
|
||||
## Widgets
|
||||
|
||||
The Kubernetes widget can show a high-level overview of the cluster,
|
||||
|
|
|
@ -31,7 +31,6 @@ nav:
|
|||
- "Service Widgets":
|
||||
- widgets/services/index.md
|
||||
- widgets/services/adguard-home.md
|
||||
- widgets/services/apcups.md
|
||||
- widgets/services/argocd.md
|
||||
- widgets/services/atsumeru.md
|
||||
- widgets/services/audiobookshelf.md
|
||||
|
@ -57,7 +56,6 @@ nav:
|
|||
- widgets/services/esphome.md
|
||||
- widgets/services/evcc.md
|
||||
- widgets/services/fileflows.md
|
||||
- widgets/services/firefly.md
|
||||
- widgets/services/flood.md
|
||||
- widgets/services/freshrss.md
|
||||
- widgets/services/frigate.md
|
||||
|
@ -74,7 +72,6 @@ nav:
|
|||
- widgets/services/hdhomerun.md
|
||||
- widgets/services/headscale.md
|
||||
- widgets/services/healthchecks.md
|
||||
- widgets/services/karakeep.md
|
||||
- widgets/services/homeassistant.md
|
||||
- widgets/services/homebox.md
|
||||
- widgets/services/homebridge.md
|
||||
|
|
|
@ -131,8 +131,8 @@ module.exports = {
|
|||
? BIBIT_UNITS
|
||||
: BIT_UNITS
|
||||
: options.binary
|
||||
? BIBYTE_UNITS
|
||||
: BYTE_UNITS;
|
||||
? BIBYTE_UNITS
|
||||
: BYTE_UNITS;
|
||||
|
||||
if (value === 0) return `0 ${sizes[0]}/s`;
|
||||
|
||||
|
|
8660
package-lock.json
generated
Normal file
8660
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
65
package.json
65
package.json
|
@ -1,9 +1,8 @@
|
|||
{
|
||||
"name": "homepage",
|
||||
"version": "1.2.0",
|
||||
"version": "0.9.6",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"preinstall": "npx only-allow pnpm",
|
||||
"dev": "next dev",
|
||||
"build": "next build",
|
||||
"start": "next start",
|
||||
|
@ -11,55 +10,55 @@
|
|||
"telemetry": "next telemetry disable"
|
||||
},
|
||||
"dependencies": {
|
||||
"@headlessui/react": "^1.7.19",
|
||||
"@kubernetes/client-node": "^1.0.0",
|
||||
"@headlessui/react": "^1.7.18",
|
||||
"@kubernetes/client-node": "^0.17.1",
|
||||
"cal-parser": "^1.0.2",
|
||||
"classnames": "^2.5.1",
|
||||
"compare-versions": "^6.1.1",
|
||||
"dockerode": "^4.0.4",
|
||||
"compare-versions": "^6.1.0",
|
||||
"dockerode": "^4.0.2",
|
||||
"follow-redirects": "^1.15.9",
|
||||
"gamedig": "^5.2.0",
|
||||
"i18next": "^24.2.3",
|
||||
"gamedig": "^5.1.4",
|
||||
"i18next": "^21.10.0",
|
||||
"js-yaml": "^4.1.0",
|
||||
"json-rpc-2.0": "^1.7.0",
|
||||
"luxon": "^3.5.0",
|
||||
"memory-cache": "^0.2.0",
|
||||
"minecraftstatuspinger": "^1.2.2",
|
||||
"next": "^15.2.4",
|
||||
"minecraft-ping-js": "^1.0.2",
|
||||
"next": "^12.3.4",
|
||||
"next-i18next": "^12.1.0",
|
||||
"ping": "^0.4.4",
|
||||
"pretty-bytes": "^6.1.1",
|
||||
"raw-body": "^3.0.0",
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1",
|
||||
"react-dom": "^18.2.0",
|
||||
"react-i18next": "^11.18.6",
|
||||
"react-icons": "^5.4.0",
|
||||
"recharts": "^2.15.1",
|
||||
"react-icons": "^4.12.0",
|
||||
"recharts": "^2.12.6",
|
||||
"rrule": "^2.8.1",
|
||||
"swr": "^2.3.3",
|
||||
"systeminformation": "^5.25.11",
|
||||
"tough-cookie": "^5.1.2",
|
||||
"urbackup-server-api": "^0.8.9",
|
||||
"winston": "^3.17.0",
|
||||
"swr": "^1.3.0",
|
||||
"systeminformation": "^5.23.8",
|
||||
"tough-cookie": "^4.1.3",
|
||||
"urbackup-server-api": "^0.52.1",
|
||||
"winston": "^3.11.0",
|
||||
"xml-js": "^1.6.11"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@tailwindcss/forms": "^0.5.10",
|
||||
"@tailwindcss/postcss": "^4.0.9",
|
||||
"eslint": "^9.21.0",
|
||||
"eslint-config-next": "^15.2.4",
|
||||
"eslint-config-prettier": "^10.1.1",
|
||||
"@tailwindcss/forms": "^0.5.8",
|
||||
"autoprefixer": "^10.4.20",
|
||||
"eslint": "^8.57.1",
|
||||
"eslint-config-airbnb": "^19.0.4",
|
||||
"eslint-config-next": "^14.2.3",
|
||||
"eslint-config-prettier": "^9.1.0",
|
||||
"eslint-plugin-import": "^2.31.0",
|
||||
"eslint-plugin-jsx-a11y": "^6.10.2",
|
||||
"eslint-plugin-prettier": "^5.2.3",
|
||||
"eslint-plugin-react": "^7.37.4",
|
||||
"eslint-plugin-react-hooks": "^5.1.0",
|
||||
"postcss": "^8.5.3",
|
||||
"prettier": "^3.5.2",
|
||||
"prettier-plugin-organize-imports": "^4.1.0",
|
||||
"tailwind-scrollbar": "^4.0.1",
|
||||
"tailwindcss": "^4.0.9",
|
||||
"typescript": "^5.7.3"
|
||||
"eslint-plugin-jsx-a11y": "^6.8.0",
|
||||
"eslint-plugin-prettier": "^5.2.1",
|
||||
"eslint-plugin-react": "^7.37.2",
|
||||
"eslint-plugin-react-hooks": "^4.6.2",
|
||||
"postcss": "^8.4.47",
|
||||
"prettier": "^3.2.5",
|
||||
"tailwind-scrollbar": "^3.0.5",
|
||||
"tailwindcss": "^3.4.14",
|
||||
"typescript": "^5.6.3"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"osx-temperature-sensor": "^1.0.8"
|
||||
|
|
4652
pnpm-lock.yaml
generated
4652
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
@ -1,5 +1,6 @@
|
|||
module.exports = {
|
||||
plugins: {
|
||||
"@tailwindcss/postcss": {},
|
||||
tailwindcss: {},
|
||||
autoprefixer: {},
|
||||
},
|
||||
};
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Op",
|
||||
"received": "Ontvang",
|
||||
"sent": "Gestuur",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Voorvoegsel"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Stroomop",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Gekoppelde APs",
|
||||
"activeUser": "Aktiewe toestelle",
|
||||
"alerts": "Waarskuwings",
|
||||
"connectedGateways": "Gekoppelde poorte",
|
||||
"connectedGateway": "Gekoppelde poorte",
|
||||
"connectedSwitches": "Gekoppelde skakelaars"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Verwerk",
|
||||
"time": "Tyd"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Netto Waarde",
|
||||
"budget": "Begroting"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Databronne",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Kennisgewings",
|
||||
"issues": "Kwessies",
|
||||
"pulls": "Trek Versoeke",
|
||||
"repositories": "Bewaarplekke"
|
||||
"pulls": "Trek Versoeke"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Tonele",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Kwessies",
|
||||
"merges": "Saamvleg Versoeke",
|
||||
"projects": "Projekte"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Status",
|
||||
"load": "Las",
|
||||
"bcharge": "Batterylading",
|
||||
"timeleft": "Oorblywende Tyd"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Boekmerke",
|
||||
"favorites": "Gunstelinge",
|
||||
"archived": "Geargiveer",
|
||||
"highlights": "Hoogtepunte",
|
||||
"lists": "Lyste",
|
||||
"tags": "Merkers"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Netwerk",
|
||||
"connected": "Gekoppel",
|
||||
"disconnected": "Ontkoppel",
|
||||
"updateStatus": "Opdateer",
|
||||
"update_yes": "Beskikbaar",
|
||||
"update_no": "Op Datum",
|
||||
"downloads": "Aflaaie",
|
||||
"uploads": "Oplaaie",
|
||||
"sharedFiles": "Lêers"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "يعمل",
|
||||
"received": "تم الإستلام",
|
||||
"sent": "تم الإرسال",
|
||||
"externalIPAddress": "IP الخارجي",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "IP الخارجي"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "تدفق",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "المتصلة APs",
|
||||
"activeUser": "الأجهزة النشطة",
|
||||
"alerts": "تنبيهات",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "البوابات المتصلة",
|
||||
"connectedSwitches": "مفاتيح التبديل المتصلة"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "معالجة",
|
||||
"time": "الوقت"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "لوحات المعلومات",
|
||||
"datasources": "مصادر البيانات",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "الإشعارات",
|
||||
"issues": "المُشكِلات",
|
||||
"pulls": "طلبات السحب",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "طلبات السحب"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "المشاهد",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "المُشكِلات",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "الحالة",
|
||||
"load": "الضغط",
|
||||
"bcharge": "شحن البطارية",
|
||||
"timeleft": "الوقت المتبقي"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "التصنيفات"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "الشبكة",
|
||||
"connected": "متصل",
|
||||
"disconnected": "غير متصل",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "متاح",
|
||||
"update_no": "حتى الآن",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "ملفات"
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -148,9 +148,7 @@
|
|||
"up": "Actiu",
|
||||
"received": "Rebuts",
|
||||
"sent": "Enviats",
|
||||
"externalIPAddress": "IP ext.",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "IP ext."
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "AP connectats",
|
||||
"activeUser": "Dispositius actius",
|
||||
"alerts": "Alertes",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Pasarel·les connectades",
|
||||
"connectedSwitches": "Conmutadors connectats"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processat",
|
||||
"time": "Temps"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Taulells",
|
||||
"datasources": "Orígens de dades",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notificacions",
|
||||
"issues": "Problemes",
|
||||
"pulls": "Sol·licitud de Canvis",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Sol·licitud de Canvis"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Escenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Problemes",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projectes"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Estat",
|
||||
"load": "Càrrega",
|
||||
"bcharge": "Càrrega de la bateria",
|
||||
"timeleft": "Temps restant"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Etiquetes"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Xarxa",
|
||||
"connected": "Connectat",
|
||||
"disconnected": "Desconnectat",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Disponible",
|
||||
"update_no": "Actualitzat",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Fitxers"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -85,16 +85,16 @@
|
|||
"ping": {
|
||||
"error": "Chyba",
|
||||
"ping": "Odezva",
|
||||
"down": "Výpadek",
|
||||
"up": "Běží",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"not_available": "Není k dispozici"
|
||||
},
|
||||
"siteMonitor": {
|
||||
"http_status": "Stav HTTP",
|
||||
"error": "Chyba",
|
||||
"response": "Odpověď",
|
||||
"down": "Výpadek",
|
||||
"up": "Běží",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"not_available": "Není k dispozici"
|
||||
},
|
||||
"emby": {
|
||||
|
@ -144,13 +144,11 @@
|
|||
"uptime": "Doba spuštění",
|
||||
"maxDown": "Max. Down",
|
||||
"maxUp": "Max. Up",
|
||||
"down": "Výpadek",
|
||||
"up": "Běží",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"received": "Přijaté",
|
||||
"sent": "Odeslané",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Veřejná IPv6",
|
||||
"externalIPv6Prefix": "Věřejná IPv6 prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Odesílání dat",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Připojené APs",
|
||||
"activeUser": "Aktivní zařízení",
|
||||
"alerts": "Upozornění",
|
||||
"connectedGateways": "Připojené brány",
|
||||
"connectedGateway": "Připojené brány",
|
||||
"connectedSwitches": "Připojené přepínače"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -229,8 +227,8 @@
|
|||
"seed": "Seedované"
|
||||
},
|
||||
"develancacheui": {
|
||||
"cachehitbytes": "Byty nalezené v mezipaměti",
|
||||
"cachemissbytes": "Byty nenalezené v mezipaměti"
|
||||
"cachehitbytes": "Cache Hit Bytes",
|
||||
"cachemissbytes": "Cache Miss Bytes"
|
||||
},
|
||||
"downloadstation": {
|
||||
"download": "Stahování",
|
||||
|
@ -287,7 +285,7 @@
|
|||
"total": "Celkem",
|
||||
"connected": "",
|
||||
"new_devices": "",
|
||||
"down_alerts": "Upozornění na výpadek"
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Dotazy",
|
||||
|
@ -313,13 +311,13 @@
|
|||
},
|
||||
"suwayomi": {
|
||||
"download": "Staženo",
|
||||
"nondownload": "Nestaženo",
|
||||
"nondownload": "Non-Downloaded",
|
||||
"read": "Přečteno",
|
||||
"unread": "Nepřečteno",
|
||||
"downloadedread": "Staženo a přečteno",
|
||||
"downloadedunread": "Staženo a nepřečteno",
|
||||
"nondownloadedread": "Nestaženo a přečteno",
|
||||
"nondownloadedunread": "Nestaženo a nepřečteno"
|
||||
"downloadedread": "Downloaded & Read",
|
||||
"downloadedunread": "Downloaded & Unread",
|
||||
"nondownloadedread": "Non-Downloaded & Read",
|
||||
"nondownloadedunread": "Non-Downloaded & Unread"
|
||||
},
|
||||
"tailscale": {
|
||||
"address": "Adresa",
|
||||
|
@ -337,15 +335,15 @@
|
|||
},
|
||||
"technitium": {
|
||||
"totalQueries": "Dotazy",
|
||||
"totalNoError": "Úspěšně",
|
||||
"totalServerFailure": "Chyby",
|
||||
"totalNxDomain": "NX domény",
|
||||
"totalRefused": "Odmítnuto",
|
||||
"totalAuthoritative": "Autoritativní",
|
||||
"totalRecursive": "Rekurzivní",
|
||||
"totalCached": "V mezipaměti",
|
||||
"totalNoError": "Success",
|
||||
"totalServerFailure": "Failures",
|
||||
"totalNxDomain": "NX Domains",
|
||||
"totalRefused": "Refused",
|
||||
"totalAuthoritative": "Authoritative",
|
||||
"totalRecursive": "Recursive",
|
||||
"totalCached": "Cached",
|
||||
"totalBlocked": "Blokováno",
|
||||
"totalDropped": "Vynecháno",
|
||||
"totalDropped": "Dropped",
|
||||
"totalClients": "Klienti"
|
||||
},
|
||||
"tdarr": {
|
||||
|
@ -434,7 +432,7 @@
|
|||
"load": "Zatížení",
|
||||
"wait": "Počkejte prosím",
|
||||
"temp": "TEPLOTA",
|
||||
"_temp": "Teplota",
|
||||
"_temp": "Temp",
|
||||
"warn": "Varováni",
|
||||
"uptime": "BĚŽÍ",
|
||||
"total": "Celkem",
|
||||
|
@ -442,12 +440,12 @@
|
|||
"used": "Využité",
|
||||
"days": "d",
|
||||
"hours": "h",
|
||||
"crit": "Kritické",
|
||||
"crit": "Crit",
|
||||
"read": "Přečteno",
|
||||
"write": "Zápis",
|
||||
"gpu": "Grafická karta",
|
||||
"mem": "Pamět RAM",
|
||||
"swap": "Swap RAM"
|
||||
"write": "Write",
|
||||
"gpu": "GPU",
|
||||
"mem": "Mem",
|
||||
"swap": "Swap"
|
||||
},
|
||||
"quicklaunch": {
|
||||
"bookmark": "Záložka",
|
||||
|
@ -456,7 +454,7 @@
|
|||
"custom": "Vlastní",
|
||||
"visit": "Navštivte",
|
||||
"url": "Odkaz",
|
||||
"searchsuggestion": "Doporučení"
|
||||
"searchsuggestion": "Suggestion"
|
||||
},
|
||||
"wmo": {
|
||||
"0-day": "Slunečno",
|
||||
|
@ -523,15 +521,15 @@
|
|||
"up_to_date": "Žádné",
|
||||
"child_bridges": "Podřízené můstky",
|
||||
"child_bridges_status": "{{ok}}/{{total}}",
|
||||
"up": "Běží",
|
||||
"up": "Up",
|
||||
"pending": "Čeká",
|
||||
"down": "Výpadek"
|
||||
"down": "Down"
|
||||
},
|
||||
"healthchecks": {
|
||||
"new": "Nové",
|
||||
"up": "Běží",
|
||||
"up": "Up",
|
||||
"grace": "V období odkladu",
|
||||
"down": "Výpadek",
|
||||
"down": "Down",
|
||||
"paused": "Pozastaveno",
|
||||
"status": "Stav",
|
||||
"last_ping": "Poslední ping",
|
||||
|
@ -573,14 +571,14 @@
|
|||
"hdhomerun": {
|
||||
"channels": "Kanály",
|
||||
"hd": "HD",
|
||||
"tunerCount": "Tuner",
|
||||
"channelNumber": "Kanál",
|
||||
"channelNetwork": "Síť",
|
||||
"signalStrength": "Síla",
|
||||
"signalQuality": "Kvalita",
|
||||
"symbolQuality": "Kvalita",
|
||||
"tunerCount": "Tuners",
|
||||
"channelNumber": "Channel",
|
||||
"channelNetwork": "Network",
|
||||
"signalStrength": "Strength",
|
||||
"signalQuality": "Quality",
|
||||
"symbolQuality": "Quality",
|
||||
"networkRate": "Přenosová rychlost",
|
||||
"clientIP": "Klient"
|
||||
"clientIP": "Client"
|
||||
},
|
||||
"scrutiny": {
|
||||
"passed": "Úspěšné",
|
||||
|
@ -592,12 +590,12 @@
|
|||
"total": "Celkem"
|
||||
},
|
||||
"peanut": {
|
||||
"battery_charge": "Úroveň baterie",
|
||||
"ups_load": "Zítěž UPS",
|
||||
"ups_status": "Stav UPS",
|
||||
"battery_charge": "Battery Charge",
|
||||
"ups_load": "UPS Load",
|
||||
"ups_status": "UPS Status",
|
||||
"online": "Online",
|
||||
"on_battery": "Na baterii",
|
||||
"low_battery": "Nízký stav baterie"
|
||||
"on_battery": "On Battery",
|
||||
"low_battery": "Low Battery"
|
||||
},
|
||||
"nextdns": {
|
||||
"wait": "Čekejte prosím",
|
||||
|
@ -615,9 +613,9 @@
|
|||
"streams_xepg": "Kanály XEPG"
|
||||
},
|
||||
"opendtu": {
|
||||
"yieldDay": "Dnes",
|
||||
"absolutePower": "Výkon",
|
||||
"relativePower": "Výkon %",
|
||||
"yieldDay": "Today",
|
||||
"absolutePower": "Power",
|
||||
"relativePower": "Power %",
|
||||
"limit": "Limit"
|
||||
},
|
||||
"opnsense": {
|
||||
|
@ -646,9 +644,9 @@
|
|||
"load": "Prům. zatížení",
|
||||
"memory": "Využití paměti",
|
||||
"wanStatus": "Stav WAN",
|
||||
"up": "Běží",
|
||||
"down": "Výpadek",
|
||||
"temp": "Teplota",
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"temp": "Temp",
|
||||
"disk": "Využití disku",
|
||||
"wanIP": "IP WAN"
|
||||
},
|
||||
|
@ -668,14 +666,14 @@
|
|||
"up": "Stránky Up",
|
||||
"down": "Stránky Down",
|
||||
"uptime": "Doba spuštění",
|
||||
"incident": "Událost",
|
||||
"incident": "Incident",
|
||||
"m": "m"
|
||||
},
|
||||
"atsumeru": {
|
||||
"series": "Seriály",
|
||||
"archives": "Archivy",
|
||||
"chapters": "Kapitoly",
|
||||
"categories": "Kategorie"
|
||||
"archives": "Archives",
|
||||
"chapters": "Chapters",
|
||||
"categories": "Categories"
|
||||
},
|
||||
"komga": {
|
||||
"libraries": "Knihovny",
|
||||
|
@ -704,14 +702,10 @@
|
|||
"processed": "Zpracováno",
|
||||
"time": "Čas"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Čisté jmění",
|
||||
"budget": "Rozpočet"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Nástěnky",
|
||||
"datasources": "Zdroje dat",
|
||||
"totalalerts": "Celkový počet upozornění2",
|
||||
"totalalerts": "Celkový počet upozornění",
|
||||
"alertstriggered": "Spuštěné výstrahy"
|
||||
},
|
||||
"nextcloud": {
|
||||
|
@ -749,7 +743,7 @@
|
|||
"uptime": "Doba spuštění"
|
||||
},
|
||||
"ghostfolio": {
|
||||
"gross_percent_today": "Dnes",
|
||||
"gross_percent_today": "Today",
|
||||
"gross_percent_1y": "Jeden rok",
|
||||
"gross_percent_max": "Za celou dobu"
|
||||
},
|
||||
|
@ -770,8 +764,8 @@
|
|||
},
|
||||
"calibreweb": {
|
||||
"books": "Knihy",
|
||||
"authors": "Autoři",
|
||||
"categories": "Kategorie",
|
||||
"authors": "Authors",
|
||||
"categories": "Categories",
|
||||
"series": "Seriály"
|
||||
},
|
||||
"jdownloader": {
|
||||
|
@ -785,44 +779,44 @@
|
|||
"totalFiles": "Soubory"
|
||||
},
|
||||
"azuredevops": {
|
||||
"result": "Výsledek",
|
||||
"result": "Result",
|
||||
"status": "Stav",
|
||||
"buildId": "ID sestavení",
|
||||
"succeeded": "Úspěšně",
|
||||
"notStarted": "Nezahájeno",
|
||||
"buildId": "Build ID",
|
||||
"succeeded": "Succeeded",
|
||||
"notStarted": "Not Started",
|
||||
"failed": "Selhalo",
|
||||
"canceled": "Zrušeno",
|
||||
"inProgress": "Probíhá",
|
||||
"totalPrs": "Celkem PR",
|
||||
"myPrs": "Moje PR",
|
||||
"canceled": "Canceled",
|
||||
"inProgress": "In Progress",
|
||||
"totalPrs": "Total PRs",
|
||||
"myPrs": "My PRs",
|
||||
"approved": "Schváleno"
|
||||
},
|
||||
"gamedig": {
|
||||
"status": "Stav",
|
||||
"online": "Online",
|
||||
"offline": "Offline",
|
||||
"name": "Jméno",
|
||||
"map": "Mapa",
|
||||
"currentPlayers": "Počet hráčů",
|
||||
"name": "Name",
|
||||
"map": "Map",
|
||||
"currentPlayers": "Current players",
|
||||
"players": "Hráči",
|
||||
"maxPlayers": "Maximální počet hráčů",
|
||||
"bots": "Boti",
|
||||
"maxPlayers": "Max players",
|
||||
"bots": "Bots",
|
||||
"ping": "Odezva"
|
||||
},
|
||||
"urbackup": {
|
||||
"ok": "Ok",
|
||||
"errored": "Chyby",
|
||||
"noRecent": "Zastaralý",
|
||||
"totalUsed": "Využití úložiště"
|
||||
"errored": "Errors",
|
||||
"noRecent": "Out of Date",
|
||||
"totalUsed": "Used Storage"
|
||||
},
|
||||
"mealie": {
|
||||
"recipes": "Recepty",
|
||||
"recipes": "Recipes",
|
||||
"users": "Uživatelé",
|
||||
"categories": "Kategorie",
|
||||
"tags": "Štítky"
|
||||
"categories": "Categories",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"openmediavault": {
|
||||
"downloading": "Stahování",
|
||||
"downloading": "Downloading",
|
||||
"total": "Celkem",
|
||||
"running": "Běží",
|
||||
"stopped": "Zastaveno",
|
||||
|
@ -831,95 +825,94 @@
|
|||
},
|
||||
"openwrt": {
|
||||
"uptime": "Doba spuštění",
|
||||
"cpuLoad": "Prům. zatížení procesoru (5m)",
|
||||
"up": "Běží",
|
||||
"down": "Výpadek",
|
||||
"bytesTx": "Přeneseno",
|
||||
"cpuLoad": "CPU Load Avg (5m)",
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"bytesTx": "Transmitted",
|
||||
"bytesRx": "Přijaté"
|
||||
},
|
||||
"uptimerobot": {
|
||||
"status": "Stav",
|
||||
"uptime": "Doba spuštění",
|
||||
"lastDown": "Poslední výpadek",
|
||||
"downDuration": "Trvání výpadku",
|
||||
"lastDown": "Last Downtime",
|
||||
"downDuration": "Downtime Duration",
|
||||
"sitesUp": "Stránky Up",
|
||||
"sitesDown": "Stránky Down",
|
||||
"paused": "Pozastaveno",
|
||||
"notyetchecked": "Zatím nezkontrolováno",
|
||||
"up": "Běží",
|
||||
"seemsdown": "Zdá se nedostupný",
|
||||
"down": "Výpadek",
|
||||
"notyetchecked": "Not Yet Checked",
|
||||
"up": "Up",
|
||||
"seemsdown": "Seems Down",
|
||||
"down": "Down",
|
||||
"unknown": "Neznámý"
|
||||
},
|
||||
"calendar": {
|
||||
"inCinemas": "V kinech",
|
||||
"physicalRelease": "Fyzické vydání",
|
||||
"digitalRelease": "Digitální vydání",
|
||||
"noEventsToday": "Pro dnešek žádné události!",
|
||||
"noEventsFound": "Nemáte žádné události"
|
||||
"inCinemas": "In cinemas",
|
||||
"physicalRelease": "Physical release",
|
||||
"digitalRelease": "Digital release",
|
||||
"noEventsToday": "No events for today!",
|
||||
"noEventsFound": "No events found"
|
||||
},
|
||||
"romm": {
|
||||
"platforms": "Platformy",
|
||||
"totalRoms": "Hry",
|
||||
"saves": "Uložené",
|
||||
"states": "Stavy",
|
||||
"screenshots": "Snímky obrazovky",
|
||||
"totalfilesize": "Celková velikost"
|
||||
"platforms": "Platforms",
|
||||
"totalRoms": "Games",
|
||||
"saves": "Saves",
|
||||
"states": "States",
|
||||
"screenshots": "Screenshots",
|
||||
"totalfilesize": "Total Size"
|
||||
},
|
||||
"mailcow": {
|
||||
"domains": "Domény",
|
||||
"mailboxes": "E-mailové schránky",
|
||||
"mails": "Maily",
|
||||
"mailboxes": "Mailboxes",
|
||||
"mails": "Mails",
|
||||
"storage": "Úložiště"
|
||||
},
|
||||
"netdata": {
|
||||
"warnings": "Upozornění",
|
||||
"criticals": "Kritické"
|
||||
"warnings": "Warnings",
|
||||
"criticals": "Criticals"
|
||||
},
|
||||
"plantit": {
|
||||
"events": "Události",
|
||||
"plants": "Rostliny",
|
||||
"events": "Events",
|
||||
"plants": "Plants",
|
||||
"photos": "Fotografie",
|
||||
"species": "Druhy"
|
||||
"species": "Species"
|
||||
},
|
||||
"gitea": {
|
||||
"notifications": "Oznámení",
|
||||
"notifications": "Notifications",
|
||||
"issues": "Problémy",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repozitáře"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scény",
|
||||
"scenesPlayed": "Přehrané scény",
|
||||
"playCount": "Celkový počet přehrání",
|
||||
"playDuration": "Čas sledování",
|
||||
"sceneSize": "Velikost scén",
|
||||
"sceneDuration": "Délka scény",
|
||||
"images": "Obrázky",
|
||||
"imageSize": "Velikost obrázků",
|
||||
"galleries": "Galerie",
|
||||
"performers": "Herci",
|
||||
"studios": "Studia",
|
||||
"scenes": "Scenes",
|
||||
"scenesPlayed": "Scenes Played",
|
||||
"playCount": "Total Plays",
|
||||
"playDuration": "Time Watched",
|
||||
"sceneSize": "Scenes Size",
|
||||
"sceneDuration": "Scenes Duration",
|
||||
"images": "Images",
|
||||
"imageSize": "Images Size",
|
||||
"galleries": "Galleries",
|
||||
"performers": "Performers",
|
||||
"studios": "Studios",
|
||||
"movies": "Filmy",
|
||||
"tags": "Štítky",
|
||||
"oCount": "Počet O"
|
||||
"tags": "Tags",
|
||||
"oCount": "O Count"
|
||||
},
|
||||
"tandoor": {
|
||||
"users": "Uživatelé",
|
||||
"recipes": "Recepty",
|
||||
"keywords": "Klíčová slova"
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Položky",
|
||||
"totalWithWarranty": "Se zárukou",
|
||||
"locations": "Lokality",
|
||||
"labels": "Štítky",
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Uživatelé",
|
||||
"totalValue": "Celková hodnota"
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Upozornění",
|
||||
"bans": "Bany"
|
||||
"bans": "Bans"
|
||||
},
|
||||
"wgeasy": {
|
||||
"connected": "",
|
||||
|
@ -928,10 +921,10 @@
|
|||
"total": "Celkem"
|
||||
},
|
||||
"swagdashboard": {
|
||||
"proxied": "Přes proxy",
|
||||
"auth": "S ověřením",
|
||||
"outdated": "Zastaralé",
|
||||
"banned": "Zabanován"
|
||||
"proxied": "Proxied",
|
||||
"auth": "With Auth",
|
||||
"outdated": "Outdated",
|
||||
"banned": "Banned"
|
||||
},
|
||||
"myspeed": {
|
||||
"ping": "Odezva",
|
||||
|
@ -939,46 +932,46 @@
|
|||
"upload": "Nahrávání"
|
||||
},
|
||||
"stocks": {
|
||||
"stocks": "Akcie",
|
||||
"loading": "Načítání",
|
||||
"open": "Otevřeno - US trh",
|
||||
"closed": "Uzavřeno - US trh",
|
||||
"invalidConfiguration": "Neplatná konfigurace"
|
||||
"stocks": "Stocks",
|
||||
"loading": "Loading",
|
||||
"open": "Open - US Market",
|
||||
"closed": "Closed - US Market",
|
||||
"invalidConfiguration": "Invalid Configuration"
|
||||
},
|
||||
"frigate": {
|
||||
"cameras": "Kamery",
|
||||
"cameras": "Cameras",
|
||||
"uptime": "Doba spuštění",
|
||||
"version": "Verze"
|
||||
},
|
||||
"linkwarden": {
|
||||
"links": "Linky",
|
||||
"collections": "Sbírky",
|
||||
"tags": "Štítky"
|
||||
"links": "Links",
|
||||
"collections": "Collections",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"zabbix": {
|
||||
"unclassified": "Neklasifikováno",
|
||||
"unclassified": "Not classified",
|
||||
"information": "Informace",
|
||||
"warning": "Upozornění",
|
||||
"average": "Průměr",
|
||||
"high": "Vysoký",
|
||||
"disaster": "Katastrofa"
|
||||
"warning": "Warning",
|
||||
"average": "Average",
|
||||
"high": "High",
|
||||
"disaster": "Disaster"
|
||||
},
|
||||
"lubelogger": {
|
||||
"vehicle": "Vozidlo",
|
||||
"vehicles": "Vozidla",
|
||||
"serviceRecords": "Servisní záznamy",
|
||||
"reminders": "Připomenutí",
|
||||
"nextReminder": "Další připomenutí",
|
||||
"none": "Žádné"
|
||||
"vehicle": "Vehicle",
|
||||
"vehicles": "Vehicles",
|
||||
"serviceRecords": "Service Records",
|
||||
"reminders": "Reminders",
|
||||
"nextReminder": "Next Reminder",
|
||||
"none": "None"
|
||||
},
|
||||
"vikunja": {
|
||||
"projects": "Aktivní projekty",
|
||||
"tasks7d": "Úkoly k dokončení tento týden",
|
||||
"tasksOverdue": "Zpožděné úkoly",
|
||||
"tasksInProgress": "Probíhají úkoly"
|
||||
"projects": "Active Projects",
|
||||
"tasks7d": "Tasks Due This Week",
|
||||
"tasksOverdue": "Overdue Tasks",
|
||||
"tasksInProgress": "Tasks In Progress"
|
||||
},
|
||||
"headscale": {
|
||||
"name": "Jméno",
|
||||
"name": "Name",
|
||||
"address": "Adresa",
|
||||
"last_seen": "Naposledy viděno",
|
||||
"status": "Stav",
|
||||
|
@ -986,10 +979,10 @@
|
|||
"offline": "Offline"
|
||||
},
|
||||
"beszel": {
|
||||
"name": "Jméno",
|
||||
"systems": "Systém",
|
||||
"up": "Běží",
|
||||
"down": "Výpadek",
|
||||
"name": "Name",
|
||||
"systems": "Systems",
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"paused": "Pozastaveno",
|
||||
"pending": "Čeká",
|
||||
"status": "Stav",
|
||||
|
@ -997,50 +990,25 @@
|
|||
"cpu": "CPU",
|
||||
"memory": "RAM",
|
||||
"disk": "Disk",
|
||||
"network": "Síť"
|
||||
"network": "NET"
|
||||
},
|
||||
"argocd": {
|
||||
"apps": "Aplikace",
|
||||
"synced": "Synchronizováno",
|
||||
"outOfSync": "Nesynchronizováno",
|
||||
"apps": "Apps",
|
||||
"synced": "Synced",
|
||||
"outOfSync": "Out Of Sync",
|
||||
"healthy": "Zdravý",
|
||||
"degraded": "Degradováno",
|
||||
"progressing": "Probíhá",
|
||||
"degraded": "Degraded",
|
||||
"progressing": "Progressing",
|
||||
"missing": "Chybějící",
|
||||
"suspended": "Pozastaveno"
|
||||
"suspended": "Suspended"
|
||||
},
|
||||
"spoolman": {
|
||||
"loading": "Načítání"
|
||||
"loading": "Loading"
|
||||
},
|
||||
"gitlab": {
|
||||
"groups": "Skupiny",
|
||||
"groups": "Groups",
|
||||
"issues": "Problémy",
|
||||
"merges": "Žádosti o sloučení",
|
||||
"projects": "Projekty"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Stav",
|
||||
"load": "Zatížení",
|
||||
"bcharge": "Úroveň baterie",
|
||||
"timeleft": "Zbývající čas"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Záložky",
|
||||
"favorites": "Oblíbené",
|
||||
"archived": "Archivováno",
|
||||
"highlights": "Zvýraznění",
|
||||
"lists": "Seznamy",
|
||||
"tags": "Štítky"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Síť",
|
||||
"connected": "",
|
||||
"disconnected": "Odpojeno",
|
||||
"updateStatus": "Aktualizace",
|
||||
"update_yes": "Dostupné",
|
||||
"update_no": "Žádné",
|
||||
"downloads": "Stažení",
|
||||
"uploads": "Nahrávání",
|
||||
"sharedFiles": "Soubory"
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Op",
|
||||
"received": "Modtaget",
|
||||
"sent": "Sendt",
|
||||
"externalIPAddress": "Ekstern IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ekstern IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Forbundne APs",
|
||||
"activeUser": "Aktive enheder",
|
||||
"alerts": "Advarsler",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Forbundne gateways",
|
||||
"connectedSwitches": "Forbundne switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Behandlet",
|
||||
"time": "Tid"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Kontrolpanel",
|
||||
"datasources": "Data Kilder",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Problemer",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Problemer",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Status",
|
||||
"load": "Belastning",
|
||||
"bcharge": "Batteriniveau",
|
||||
"timeleft": "Resterende tid"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Network",
|
||||
"connected": "Connected",
|
||||
"disconnected": "Disconnected",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Tilgængelig",
|
||||
"update_no": "Opdateret",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Filer"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -85,16 +85,16 @@
|
|||
"ping": {
|
||||
"error": "Fehler",
|
||||
"ping": "Ping",
|
||||
"down": "Offline",
|
||||
"up": "Online",
|
||||
"down": "Empfangen",
|
||||
"up": "Senden",
|
||||
"not_available": "Nicht verfügbar"
|
||||
},
|
||||
"siteMonitor": {
|
||||
"http_status": "HTTP-Status",
|
||||
"error": "Fehler",
|
||||
"response": "Antwort",
|
||||
"down": "Offline",
|
||||
"up": "Online",
|
||||
"down": "Empfangen",
|
||||
"up": "Senden",
|
||||
"not_available": "Nicht verfügbar"
|
||||
},
|
||||
"emby": {
|
||||
|
@ -144,13 +144,11 @@
|
|||
"uptime": "Betriebszeit",
|
||||
"maxDown": "Max. Down",
|
||||
"maxUp": "Max. Up",
|
||||
"down": "Offline",
|
||||
"up": "Online",
|
||||
"down": "Empfangen",
|
||||
"up": "Senden",
|
||||
"received": "Empfangen",
|
||||
"sent": "Gesendet",
|
||||
"externalIPAddress": "Externe IP",
|
||||
"externalIPv6Address": "Externe IPv6",
|
||||
"externalIPv6Prefix": "Externer IPv4-Präfix"
|
||||
"externalIPAddress": "Externe IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Verbundene APs",
|
||||
"activeUser": "Aktive Geräte",
|
||||
"alerts": "Warnungen",
|
||||
"connectedGateways": "Verbundene Gateways",
|
||||
"connectedGateway": "Verbundene Gateways",
|
||||
"connectedSwitches": "Verbundene Switche"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -352,7 +350,7 @@
|
|||
"queue": "Warteschlange",
|
||||
"processed": "Verarbeitet",
|
||||
"errored": "Fehlgeschlagen",
|
||||
"saved": "Eingespart"
|
||||
"saved": "Gespeichert"
|
||||
},
|
||||
"traefik": {
|
||||
"routers": "Router",
|
||||
|
@ -447,7 +445,7 @@
|
|||
"write": "Schreiben",
|
||||
"gpu": "GPU",
|
||||
"mem": "RAM",
|
||||
"swap": "Auslagerung"
|
||||
"swap": "Swap"
|
||||
},
|
||||
"quicklaunch": {
|
||||
"bookmark": "Lesezeichen",
|
||||
|
@ -523,15 +521,15 @@
|
|||
"up_to_date": "Aktuell",
|
||||
"child_bridges": "Unter-Bridges",
|
||||
"child_bridges_status": "{{ok}}/{{total}}",
|
||||
"up": "Online",
|
||||
"up": "Senden",
|
||||
"pending": "Ausstehend",
|
||||
"down": "Offline"
|
||||
"down": "Empfangen"
|
||||
},
|
||||
"healthchecks": {
|
||||
"new": "Neu",
|
||||
"up": "Online",
|
||||
"up": "Senden",
|
||||
"grace": "In Karenzzeit",
|
||||
"down": "Offline",
|
||||
"down": "Empfangen",
|
||||
"paused": "Pausiert",
|
||||
"status": "Status",
|
||||
"last_ping": "Letzter Ping",
|
||||
|
@ -646,8 +644,8 @@
|
|||
"load": "Durchschnittliche Last",
|
||||
"memory": "Speichernutzung",
|
||||
"wanStatus": "WAN-Status",
|
||||
"up": "Online",
|
||||
"down": "Offline",
|
||||
"up": "Senden",
|
||||
"down": "Empfangen",
|
||||
"temp": "Temperatur",
|
||||
"disk": "Datenträgernutzung",
|
||||
"wanIP": "WAN-IP"
|
||||
|
@ -665,8 +663,8 @@
|
|||
"storage": "Speicher"
|
||||
},
|
||||
"uptimekuma": {
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"up": "Seiten verfügbar",
|
||||
"down": "Seiten nicht verfügbar",
|
||||
"uptime": "Betriebszeit",
|
||||
"incident": "Vorfall",
|
||||
"m": "min"
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Verarbeitet",
|
||||
"time": "Zeit"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Reinvermögen",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Datenquellen",
|
||||
|
@ -744,8 +738,8 @@
|
|||
"targets_total": "Alle Ziele"
|
||||
},
|
||||
"gatus": {
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"up": "Seiten verfügbar",
|
||||
"down": "Seiten nicht verfügbar",
|
||||
"uptime": "Betriebszeit"
|
||||
},
|
||||
"ghostfolio": {
|
||||
|
@ -832,8 +826,8 @@
|
|||
"openwrt": {
|
||||
"uptime": "Betriebszeit",
|
||||
"cpuLoad": "CPU-Last (5 min-Durchschnitt)",
|
||||
"up": "Online",
|
||||
"down": "Offline",
|
||||
"up": "Senden",
|
||||
"down": "Empfangen",
|
||||
"bytesTx": "Übertragen",
|
||||
"bytesRx": "Empfangen"
|
||||
},
|
||||
|
@ -842,13 +836,13 @@
|
|||
"uptime": "Betriebszeit",
|
||||
"lastDown": "Letzter Ausfall",
|
||||
"downDuration": "Ausfalldauer",
|
||||
"sitesUp": "Up",
|
||||
"sitesDown": "Down",
|
||||
"sitesUp": "Seiten verfügbar",
|
||||
"sitesDown": "Seiten nicht verfügbar",
|
||||
"paused": "Pausiert",
|
||||
"notyetchecked": "Noch nicht geprüft",
|
||||
"up": "Online",
|
||||
"up": "Senden",
|
||||
"seemsdown": "Scheint nicht verfügbar",
|
||||
"down": "Offline",
|
||||
"down": "Empfangen",
|
||||
"unknown": "Unbekannt"
|
||||
},
|
||||
"calendar": {
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Benachrichtigungen",
|
||||
"issues": "Probleme",
|
||||
"pulls": "Pull-Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull-Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Szenen",
|
||||
|
@ -988,8 +981,8 @@
|
|||
"beszel": {
|
||||
"name": "Name",
|
||||
"systems": "Systeme",
|
||||
"up": "Online",
|
||||
"down": "Offline",
|
||||
"up": "Senden",
|
||||
"down": "Empfangen",
|
||||
"paused": "Pausiert",
|
||||
"pending": "Ausstehend",
|
||||
"status": "Status",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Probleme",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projekte"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Status",
|
||||
"load": "Last",
|
||||
"bcharge": "Akkuladung",
|
||||
"timeleft": "Verbleibende Zeit"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Schlagwörter"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Netzwerk",
|
||||
"connected": "Verbunden",
|
||||
"disconnected": "Getrennt",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Verfügbar",
|
||||
"update_no": "Aktuell",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Dateien"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Ping up",
|
||||
"received": "Ληφθέντα",
|
||||
"sent": "Απεσταλμένα",
|
||||
"externalIPAddress": "Εξωτερική IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Εξωτερική IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Συνδεδεμένα APs",
|
||||
"activeUser": "Ενεργές συσκευές",
|
||||
"alerts": "Ειδοποιήσεις",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Συνδεδεμένα gateways",
|
||||
"connectedSwitches": "Συνδεδεμένα switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Σε επεξεργασία",
|
||||
"time": "Ώρα"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Πίνακας Ελέγχου",
|
||||
"datasources": "Πηγές Δεδομένων",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Κατάσταση",
|
||||
"load": "Φόρτωση",
|
||||
"bcharge": "Battery Charge",
|
||||
"timeleft": "Χρόνος που απομένει"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Ετικέτες"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Δίκτυο",
|
||||
"connected": "Συνδέθηκε",
|
||||
"disconnected": "Αποσυνδέθηκε",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Διαθέσιμο",
|
||||
"update_no": "Ενημερωμένο",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Αρχεία"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Up",
|
||||
"received": "Received",
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Connected APs",
|
||||
"activeUser": "Active devices",
|
||||
"alerts": "Alerts",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Connected gateways",
|
||||
"connectedSwitches": "Connected switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processed",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -883,10 +877,9 @@
|
|||
"species": "Species"
|
||||
},
|
||||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Status",
|
||||
"load": "Load",
|
||||
"bcharge":"Battery Charge",
|
||||
"timeleft":"Time Left"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Network",
|
||||
"connected": "Connected",
|
||||
"disconnected": "Disconnected",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Available",
|
||||
"update_no": "Up to Date",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Up",
|
||||
"received": "Received",
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Connected APs",
|
||||
"activeUser": "Active devices",
|
||||
"alerts": "Alerts",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Connected gateways",
|
||||
"connectedSwitches": "Connected switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processed",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Stato",
|
||||
"load": "Ŝarĝo",
|
||||
"bcharge": "Battery Charge",
|
||||
"timeleft": "Time Left"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Network",
|
||||
"connected": "Connected",
|
||||
"disconnected": "Disconnected",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Havebla",
|
||||
"update_no": "Up to Date",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Activo",
|
||||
"received": "Recibido",
|
||||
"sent": "Enviado",
|
||||
"externalIPAddress": "IP ext.",
|
||||
"externalIPv6Address": "IPv6 ext.",
|
||||
"externalIPv6Prefix": "Prefijo IPv6 ext."
|
||||
"externalIPAddress": "IP ext."
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstream (desarrollo de software)",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "AP conectados",
|
||||
"activeUser": "Dispositivos activos",
|
||||
"alerts": "Alertas",
|
||||
"connectedGateways": "Puertas de enlace conectadas",
|
||||
"connectedGateway": "Puertas de enlace conectadas",
|
||||
"connectedSwitches": "Conmutadores conectados"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Procesado",
|
||||
"time": "Tiempo"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Patrimonio neto",
|
||||
"budget": "Presupuesto"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Tableros",
|
||||
"datasources": "Fuentes de datos",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notificaciones",
|
||||
"issues": "Números",
|
||||
"pulls": "Solicitudes de cambios",
|
||||
"repositories": "Repositorios"
|
||||
"pulls": "Solicitudes de cambios"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Escenas",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Números",
|
||||
"merges": "Solicitudes de fusión",
|
||||
"projects": "Proyectos"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Estado",
|
||||
"load": "Carga",
|
||||
"bcharge": "Carga de la batería",
|
||||
"timeleft": "Tiempo restante"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Etiquetas"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Red",
|
||||
"connected": "Conectado",
|
||||
"disconnected": "Desconectado",
|
||||
"updateStatus": "Actualización",
|
||||
"update_yes": "Disponible",
|
||||
"update_no": "Actualizado",
|
||||
"downloads": "Descargas",
|
||||
"uploads": "Subidas",
|
||||
"sharedFiles": "Archivos"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -85,16 +85,16 @@
|
|||
"ping": {
|
||||
"error": "Error",
|
||||
"ping": "Ping",
|
||||
"down": "Behera",
|
||||
"up": "Gora",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"not_available": "Not Available"
|
||||
},
|
||||
"siteMonitor": {
|
||||
"http_status": "HTTP status",
|
||||
"error": "Error",
|
||||
"response": "Erantzuna",
|
||||
"down": "Behera",
|
||||
"up": "Gora",
|
||||
"response": "Response",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"not_available": "Not Available"
|
||||
},
|
||||
"emby": {
|
||||
|
@ -102,8 +102,8 @@
|
|||
"transcoding": "Transcoding",
|
||||
"bitrate": "Bit-tasa",
|
||||
"no_active": "No Active Streams",
|
||||
"movies": "Filmak",
|
||||
"series": "Serieak",
|
||||
"movies": "Movies",
|
||||
"series": "Series",
|
||||
"episodes": "Episodes",
|
||||
"songs": "Abestiak"
|
||||
},
|
||||
|
@ -115,42 +115,40 @@
|
|||
"unknown": "Ezezaguna"
|
||||
},
|
||||
"evcc": {
|
||||
"pv_power": "Produkzioak",
|
||||
"battery_soc": "Bateria",
|
||||
"grid_power": "Sarea",
|
||||
"home_power": "Kontsumoa",
|
||||
"charge_power": "Kargagailua",
|
||||
"pv_power": "Production",
|
||||
"battery_soc": "Battery",
|
||||
"grid_power": "Grid",
|
||||
"home_power": "Consumption",
|
||||
"charge_power": "Charger",
|
||||
"kilowatt": "kW"
|
||||
},
|
||||
"flood": {
|
||||
"download": "Jeitsierak",
|
||||
"upload": "Kargatu",
|
||||
"download": "Download",
|
||||
"upload": "Upload",
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
"freshrss": {
|
||||
"subscriptions": "Harpidetzak",
|
||||
"unread": "Irakurri gabe"
|
||||
"subscriptions": "Subscriptions",
|
||||
"unread": "Unread"
|
||||
},
|
||||
"fritzbox": {
|
||||
"connectionStatus": "Status",
|
||||
"connectionStatusUnconfigured": "Unconfigured",
|
||||
"connectionStatusConnecting": "Konektatzen",
|
||||
"connectionStatusConnecting": "Connecting",
|
||||
"connectionStatusAuthenticating": "Authenticating",
|
||||
"connectionStatusPendingDisconnect": "Pending Disconnect",
|
||||
"connectionStatusDisconnecting": "Disconnecting",
|
||||
"connectionStatusDisconnected": "Deskonektatuta",
|
||||
"connectionStatusConnected": "Konektatuta",
|
||||
"connectionStatusDisconnected": "Disconnected",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Uptime",
|
||||
"maxDown": "Max. Down",
|
||||
"maxUp": "Max. Up",
|
||||
"down": "Behera",
|
||||
"up": "Gora",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"received": "Received",
|
||||
"sent": "Bidalita",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Connected APs",
|
||||
"activeUser": "Active devices",
|
||||
"alerts": "Alerts",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Connected gateways",
|
||||
"connectedSwitches": "Connected switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -189,7 +187,7 @@
|
|||
"plex": {
|
||||
"streams": "Active Streams",
|
||||
"albums": "Albums",
|
||||
"movies": "Filmak",
|
||||
"movies": "Movies",
|
||||
"tv": "TV Shows"
|
||||
},
|
||||
"sabnzbd": {
|
||||
|
@ -199,18 +197,18 @@
|
|||
},
|
||||
"rutorrent": {
|
||||
"active": "Active",
|
||||
"upload": "Kargatu",
|
||||
"download": "Jeitsierak"
|
||||
"upload": "Upload",
|
||||
"download": "Download"
|
||||
},
|
||||
"transmission": {
|
||||
"download": "Jeitsierak",
|
||||
"upload": "Kargatu",
|
||||
"download": "Download",
|
||||
"upload": "Upload",
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
"qbittorrent": {
|
||||
"download": "Jeitsierak",
|
||||
"upload": "Kargatu",
|
||||
"download": "Download",
|
||||
"upload": "Upload",
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
|
@ -223,8 +221,8 @@
|
|||
"invalid": "Invalid"
|
||||
},
|
||||
"deluge": {
|
||||
"download": "Jeitsierak",
|
||||
"upload": "Kargatu",
|
||||
"download": "Download",
|
||||
"upload": "Upload",
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
|
@ -233,15 +231,15 @@
|
|||
"cachemissbytes": "Cache Miss Bytes"
|
||||
},
|
||||
"downloadstation": {
|
||||
"download": "Jeitsierak",
|
||||
"upload": "Kargatu",
|
||||
"download": "Download",
|
||||
"upload": "Upload",
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
"sonarr": {
|
||||
"wanted": "Wanted",
|
||||
"queued": "Queued",
|
||||
"series": "Serieak",
|
||||
"series": "Series",
|
||||
"queue": "Queue",
|
||||
"unknown": "Ezezaguna"
|
||||
},
|
||||
|
@ -249,7 +247,7 @@
|
|||
"wanted": "Wanted",
|
||||
"missing": "Missing",
|
||||
"queued": "Queued",
|
||||
"movies": "Filmak",
|
||||
"movies": "Movies",
|
||||
"queue": "Queue",
|
||||
"unknown": "Ezezaguna"
|
||||
},
|
||||
|
@ -285,7 +283,7 @@
|
|||
},
|
||||
"netalertx": {
|
||||
"total": "Guztira",
|
||||
"connected": "Konektatuta",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
|
@ -302,8 +300,8 @@
|
|||
"latency": "Latency"
|
||||
},
|
||||
"speedtest": {
|
||||
"upload": "Kargatu",
|
||||
"download": "Jeitsierak",
|
||||
"upload": "Upload",
|
||||
"download": "Download",
|
||||
"ping": "Ping"
|
||||
},
|
||||
"portainer": {
|
||||
|
@ -315,7 +313,7 @@
|
|||
"download": "Downloaded",
|
||||
"nondownload": "Non-Downloaded",
|
||||
"read": "Read",
|
||||
"unread": "Irakurri gabe",
|
||||
"unread": "Unread",
|
||||
"downloadedread": "Downloaded & Read",
|
||||
"downloadedunread": "Downloaded & Unread",
|
||||
"nondownloadedread": "Non-Downloaded & Read",
|
||||
|
@ -405,7 +403,7 @@
|
|||
"medusa": {
|
||||
"wanted": "Wanted",
|
||||
"queued": "Queued",
|
||||
"series": "Serieak"
|
||||
"series": "Series"
|
||||
},
|
||||
"minecraft": {
|
||||
"players": "Jokalariak",
|
||||
|
@ -416,7 +414,7 @@
|
|||
},
|
||||
"miniflux": {
|
||||
"read": "Read",
|
||||
"unread": "Irakurri gabe"
|
||||
"unread": "Unread"
|
||||
},
|
||||
"authentik": {
|
||||
"users": "Users",
|
||||
|
@ -523,15 +521,15 @@
|
|||
"up_to_date": "Up to Date",
|
||||
"child_bridges": "Child Bridges",
|
||||
"child_bridges_status": "{{ok}}/{{total}}",
|
||||
"up": "Gora",
|
||||
"up": "Up",
|
||||
"pending": "Pending",
|
||||
"down": "Behera"
|
||||
"down": "Down"
|
||||
},
|
||||
"healthchecks": {
|
||||
"new": "New",
|
||||
"up": "Gora",
|
||||
"up": "Up",
|
||||
"grace": "In Grace Period",
|
||||
"down": "Behera",
|
||||
"down": "Down",
|
||||
"paused": "Paused",
|
||||
"status": "Status",
|
||||
"last_ping": "Last Ping",
|
||||
|
@ -646,8 +644,8 @@
|
|||
"load": "Load Avg",
|
||||
"memory": "Mem Usage",
|
||||
"wanStatus": "WAN Status",
|
||||
"up": "Gora",
|
||||
"down": "Behera",
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"temp": "Temp",
|
||||
"disk": "Disk Usage",
|
||||
"wanIP": "WAN IP"
|
||||
|
@ -660,7 +658,7 @@
|
|||
},
|
||||
"immich": {
|
||||
"users": "Users",
|
||||
"photos": "Argazkiak",
|
||||
"photos": "Photos",
|
||||
"videos": "Videos",
|
||||
"storage": "Storage"
|
||||
},
|
||||
|
@ -672,14 +670,14 @@
|
|||
"m": "m"
|
||||
},
|
||||
"atsumeru": {
|
||||
"series": "Serieak",
|
||||
"series": "Series",
|
||||
"archives": "Archives",
|
||||
"chapters": "Chapters",
|
||||
"categories": "Categories"
|
||||
},
|
||||
"komga": {
|
||||
"libraries": "Libraries",
|
||||
"series": "Serieak",
|
||||
"series": "Series",
|
||||
"books": "Books"
|
||||
},
|
||||
"diskstation": {
|
||||
|
@ -688,13 +686,13 @@
|
|||
"volumeAvailable": "Available"
|
||||
},
|
||||
"mylar": {
|
||||
"series": "Serieak",
|
||||
"issues": "Arazoak",
|
||||
"series": "Series",
|
||||
"issues": "Issues",
|
||||
"wanted": "Wanted"
|
||||
},
|
||||
"photoprism": {
|
||||
"albums": "Albums",
|
||||
"photos": "Argazkiak",
|
||||
"photos": "Photos",
|
||||
"videos": "Videos",
|
||||
"people": "People"
|
||||
},
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processed",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -772,7 +766,7 @@
|
|||
"books": "Books",
|
||||
"authors": "Authors",
|
||||
"categories": "Categories",
|
||||
"series": "Serieak"
|
||||
"series": "Series"
|
||||
},
|
||||
"jdownloader": {
|
||||
"downloadCount": "Queue",
|
||||
|
@ -781,7 +775,7 @@
|
|||
"downloadSpeed": "Speed"
|
||||
},
|
||||
"kavita": {
|
||||
"seriesCount": "Serieak",
|
||||
"seriesCount": "Series",
|
||||
"totalFiles": "Files"
|
||||
},
|
||||
"azuredevops": {
|
||||
|
@ -801,8 +795,8 @@
|
|||
"status": "Status",
|
||||
"online": "Online",
|
||||
"offline": "Offline",
|
||||
"name": "Izena",
|
||||
"map": "Mapa",
|
||||
"name": "Name",
|
||||
"map": "Map",
|
||||
"currentPlayers": "Current players",
|
||||
"players": "Jokalariak",
|
||||
"maxPlayers": "Max players",
|
||||
|
@ -819,10 +813,10 @@
|
|||
"recipes": "Recipes",
|
||||
"users": "Users",
|
||||
"categories": "Categories",
|
||||
"tags": "Etiketak"
|
||||
"tags": "Tags"
|
||||
},
|
||||
"openmediavault": {
|
||||
"downloading": "Deskargatzen",
|
||||
"downloading": "Downloading",
|
||||
"total": "Guztira",
|
||||
"running": "Running",
|
||||
"stopped": "Stopped",
|
||||
|
@ -832,8 +826,8 @@
|
|||
"openwrt": {
|
||||
"uptime": "Uptime",
|
||||
"cpuLoad": "CPU Load Avg (5m)",
|
||||
"up": "Gora",
|
||||
"down": "Behera",
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"bytesTx": "Transmitted",
|
||||
"bytesRx": "Received"
|
||||
},
|
||||
|
@ -846,9 +840,9 @@
|
|||
"sitesDown": "Sites Down",
|
||||
"paused": "Paused",
|
||||
"notyetchecked": "Not Yet Checked",
|
||||
"up": "Gora",
|
||||
"up": "Up",
|
||||
"seemsdown": "Seems Down",
|
||||
"down": "Behera",
|
||||
"down": "Down",
|
||||
"unknown": "Ezezaguna"
|
||||
},
|
||||
"calendar": {
|
||||
|
@ -856,7 +850,7 @@
|
|||
"physicalRelease": "Physical release",
|
||||
"digitalRelease": "Digital release",
|
||||
"noEventsToday": "No events for today!",
|
||||
"noEventsFound": "Ez da gertaerarik aurkitu."
|
||||
"noEventsFound": "No events found"
|
||||
},
|
||||
"romm": {
|
||||
"platforms": "Platforms",
|
||||
|
@ -868,7 +862,7 @@
|
|||
},
|
||||
"mailcow": {
|
||||
"domains": "Domains",
|
||||
"mailboxes": "Gutunontziak",
|
||||
"mailboxes": "Mailboxes",
|
||||
"mails": "Mails",
|
||||
"storage": "Storage"
|
||||
},
|
||||
|
@ -877,16 +871,15 @@
|
|||
"criticals": "Criticals"
|
||||
},
|
||||
"plantit": {
|
||||
"events": "Ekitaldiak",
|
||||
"plants": "Landareak",
|
||||
"photos": "Argazkiak",
|
||||
"events": "Events",
|
||||
"plants": "Plants",
|
||||
"photos": "Photos",
|
||||
"species": "Species"
|
||||
},
|
||||
"gitea": {
|
||||
"notifications": "Jakinarazpenak",
|
||||
"issues": "Arazoak",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -895,34 +888,34 @@
|
|||
"playDuration": "Time Watched",
|
||||
"sceneSize": "Scenes Size",
|
||||
"sceneDuration": "Scenes Duration",
|
||||
"images": "Irudia",
|
||||
"imageSize": "Irudiaren tamaina",
|
||||
"images": "Images",
|
||||
"imageSize": "Images Size",
|
||||
"galleries": "Galleries",
|
||||
"performers": "Performers",
|
||||
"studios": "Studios",
|
||||
"movies": "Filmak",
|
||||
"tags": "Etiketak",
|
||||
"movies": "Movies",
|
||||
"tags": "Tags",
|
||||
"oCount": "O Count"
|
||||
},
|
||||
"tandoor": {
|
||||
"users": "Users",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Hitz gakoak"
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Elementuak",
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Etiketak",
|
||||
"labels": "Labels",
|
||||
"users": "Users",
|
||||
"totalValue": "Guztira"
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alerts",
|
||||
"bans": "Bans"
|
||||
},
|
||||
"wgeasy": {
|
||||
"connected": "Konektatuta",
|
||||
"connected": "Connected",
|
||||
"enabled": "Enabled",
|
||||
"disabled": "Disabled",
|
||||
"total": "Guztira"
|
||||
|
@ -935,8 +928,8 @@
|
|||
},
|
||||
"myspeed": {
|
||||
"ping": "Ping",
|
||||
"download": "Jeitsierak",
|
||||
"upload": "Kargatu"
|
||||
"download": "Download",
|
||||
"upload": "Upload"
|
||||
},
|
||||
"stocks": {
|
||||
"stocks": "Stocks",
|
||||
|
@ -952,23 +945,23 @@
|
|||
},
|
||||
"linkwarden": {
|
||||
"links": "Links",
|
||||
"collections": "Bildumak",
|
||||
"tags": "Etiketak"
|
||||
"collections": "Collections",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"zabbix": {
|
||||
"unclassified": "Not classified",
|
||||
"information": "Informazioa",
|
||||
"warning": "Abisua",
|
||||
"average": "Batez besteko",
|
||||
"high": "Altua",
|
||||
"warning": "Warning",
|
||||
"average": "Average",
|
||||
"high": "High",
|
||||
"disaster": "Disaster"
|
||||
},
|
||||
"lubelogger": {
|
||||
"vehicle": "Vehicle",
|
||||
"vehicles": "Ibilgailuak",
|
||||
"vehicles": "Vehicles",
|
||||
"serviceRecords": "Service Records",
|
||||
"reminders": "Oroigarriak",
|
||||
"nextReminder": "Hurrengo abisua",
|
||||
"reminders": "Reminders",
|
||||
"nextReminder": "Next Reminder",
|
||||
"none": "None"
|
||||
},
|
||||
"vikunja": {
|
||||
|
@ -978,7 +971,7 @@
|
|||
"tasksInProgress": "Tasks In Progress"
|
||||
},
|
||||
"headscale": {
|
||||
"name": "Izena",
|
||||
"name": "Name",
|
||||
"address": "Address",
|
||||
"last_seen": "Last Seen",
|
||||
"status": "Status",
|
||||
|
@ -986,10 +979,10 @@
|
|||
"offline": "Offline"
|
||||
},
|
||||
"beszel": {
|
||||
"name": "Izena",
|
||||
"name": "Name",
|
||||
"systems": "Systems",
|
||||
"up": "Gora",
|
||||
"down": "Behera",
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"paused": "Paused",
|
||||
"pending": "Pending",
|
||||
"status": "Status",
|
||||
|
@ -1000,47 +993,22 @@
|
|||
"network": "NET"
|
||||
},
|
||||
"argocd": {
|
||||
"apps": "Aplikazioak",
|
||||
"synced": "Sinkronizatuta",
|
||||
"apps": "Apps",
|
||||
"synced": "Synced",
|
||||
"outOfSync": "Out Of Sync",
|
||||
"healthy": "Osasuntsu",
|
||||
"degraded": "Degraded",
|
||||
"progressing": "Progressing",
|
||||
"missing": "Missing",
|
||||
"suspended": "Etenda"
|
||||
"suspended": "Suspended"
|
||||
},
|
||||
"spoolman": {
|
||||
"loading": "Loading"
|
||||
},
|
||||
"gitlab": {
|
||||
"groups": "Taldeak",
|
||||
"issues": "Arazoak",
|
||||
"groups": "Groups",
|
||||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Proiektuak"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Status",
|
||||
"load": "Load",
|
||||
"bcharge": "Battery Charge",
|
||||
"timeleft": "Time Left"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Etiketak"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Network",
|
||||
"connected": "Konektatuta",
|
||||
"disconnected": "Deskonektatuta",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Available",
|
||||
"update_no": "Up to Date",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
"projects": "Projects"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Up",
|
||||
"received": "Received",
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Connected APs",
|
||||
"activeUser": "Active devices",
|
||||
"alerts": "Alerts",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Connected gateways",
|
||||
"connectedSwitches": "Connected switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processed",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Tila",
|
||||
"load": "Kuorma",
|
||||
"bcharge": "Battery Charge",
|
||||
"timeleft": "Aikaa jäljellä"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Network",
|
||||
"connected": "Connected",
|
||||
"disconnected": "Disconnected",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Saatavilla",
|
||||
"update_no": "Up to Date",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -57,14 +57,14 @@
|
|||
"lan": "LAN",
|
||||
"wlan": "WLAN",
|
||||
"devices": "Équipt.",
|
||||
"lan_devices": "Périphériques LAN",
|
||||
"lan_devices": "Équipt. LAN",
|
||||
"wlan_devices": "Périphériques WLAN",
|
||||
"lan_users": "Utilisateurs LAN",
|
||||
"wlan_users": "Utilisateurs WLAN",
|
||||
"up": "Up",
|
||||
"down": "INACTIF",
|
||||
"wait": "Veuillez patienter",
|
||||
"empty_data": "Statut du sous-système inconnu"
|
||||
"empty_data": "Statut sous-système inconnu"
|
||||
},
|
||||
"docker": {
|
||||
"rx": "Rx",
|
||||
|
@ -77,14 +77,14 @@
|
|||
"unknown": "Inconnu",
|
||||
"healthy": "Fonctionnel",
|
||||
"starting": "Démarrage",
|
||||
"unhealthy": "Mauvaise santé",
|
||||
"not_found": "Introuvable",
|
||||
"unhealthy": "Dysfonctionnement",
|
||||
"not_found": "Inconnu",
|
||||
"exited": "Arrêté",
|
||||
"partial": "Partiel"
|
||||
},
|
||||
"ping": {
|
||||
"error": "Erreur",
|
||||
"ping": "Latence",
|
||||
"ping": "Ping",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"not_available": "Non disponible"
|
||||
|
@ -105,7 +105,7 @@
|
|||
"movies": "Films",
|
||||
"series": "Séries TV",
|
||||
"episodes": "Épisodes",
|
||||
"songs": "Chansons"
|
||||
"songs": "Musique"
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Hors ligne",
|
||||
|
@ -124,7 +124,7 @@
|
|||
},
|
||||
"flood": {
|
||||
"download": "Récep.",
|
||||
"upload": "Téléverser",
|
||||
"upload": "Envoi",
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
|
@ -142,27 +142,25 @@
|
|||
"connectionStatusDisconnected": "Déconnecté",
|
||||
"connectionStatusConnected": "Connecté",
|
||||
"uptime": "Démarré depuis",
|
||||
"maxDown": "Max. Down",
|
||||
"maxUp": "Max. Up",
|
||||
"maxDown": "Max. Bas",
|
||||
"maxUp": "Max. Haut",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"received": "Reçu",
|
||||
"sent": "Envoyé",
|
||||
"externalIPAddress": "IP externe",
|
||||
"externalIPv6Address": "IPv6 externe",
|
||||
"externalIPv6Prefix": "Préfixe IPv6 externe"
|
||||
"externalIPAddress": "IP externe"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "En amont",
|
||||
"upstreams": "Upstreams",
|
||||
"requests": "Demandes en cours",
|
||||
"requests_failed": "Demandes échouées"
|
||||
},
|
||||
"changedetectionio": {
|
||||
"totalObserved": "Total Observé",
|
||||
"diffsDetected": "Différences détectées"
|
||||
"diffsDetected": "Diffs détectées"
|
||||
},
|
||||
"channelsdvrserver": {
|
||||
"shows": "Séries",
|
||||
"shows": "Affichages",
|
||||
"recordings": "Enregistrements",
|
||||
"scheduled": "Planifié",
|
||||
"passes": "Passes"
|
||||
|
@ -176,10 +174,10 @@
|
|||
},
|
||||
"omada": {
|
||||
"connectedAp": "AP connectés",
|
||||
"activeUser": "Périphériques actifs",
|
||||
"activeUser": "Équipts actifs",
|
||||
"alerts": "Alertes",
|
||||
"connectedGateways": "Passerelles connectées",
|
||||
"connectedSwitches": "Switchs connectés"
|
||||
"connectedGateway": "Passerelles connectées",
|
||||
"connectedSwitches": "Switches connectés"
|
||||
},
|
||||
"nzbget": {
|
||||
"rate": "Débit",
|
||||
|
@ -190,7 +188,7 @@
|
|||
"streams": "Flux actif",
|
||||
"albums": "Albums",
|
||||
"movies": "Films",
|
||||
"tv": "Séries"
|
||||
"tv": "Séries TV"
|
||||
},
|
||||
"sabnzbd": {
|
||||
"rate": "Débit",
|
||||
|
@ -199,32 +197,32 @@
|
|||
},
|
||||
"rutorrent": {
|
||||
"active": "Actif",
|
||||
"upload": "Téléverser",
|
||||
"upload": "Envoi",
|
||||
"download": "Récep."
|
||||
},
|
||||
"transmission": {
|
||||
"download": "Récep.",
|
||||
"upload": "Téléverser",
|
||||
"upload": "Envoi",
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
"qbittorrent": {
|
||||
"download": "Récep.",
|
||||
"upload": "Téléverser",
|
||||
"upload": "Envoi",
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
"qnap": {
|
||||
"cpuUsage": "Processeur utilisé",
|
||||
"memUsage": "Mémoire utilisée",
|
||||
"systemTempC": "Température système",
|
||||
"poolUsage": "Utilisation de la pool",
|
||||
"volumeUsage": "Utilisation du volume",
|
||||
"cpuUsage": "Cpu",
|
||||
"memUsage": "Mém",
|
||||
"systemTempC": "Temp",
|
||||
"poolUsage": "Pool",
|
||||
"volumeUsage": "Volume",
|
||||
"invalid": "Invalide"
|
||||
},
|
||||
"deluge": {
|
||||
"download": "Récep.",
|
||||
"upload": "Téléverser",
|
||||
"upload": "Envoi",
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
|
@ -234,33 +232,33 @@
|
|||
},
|
||||
"downloadstation": {
|
||||
"download": "Récep.",
|
||||
"upload": "Téléverser",
|
||||
"upload": "Envoi",
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
"sonarr": {
|
||||
"wanted": "Demandé",
|
||||
"queued": "En file d'attente",
|
||||
"wanted": "Demande",
|
||||
"queued": "Attente",
|
||||
"series": "Séries TV",
|
||||
"queue": "En attente",
|
||||
"unknown": "Inconnu"
|
||||
},
|
||||
"radarr": {
|
||||
"wanted": "Demandé",
|
||||
"wanted": "Demande",
|
||||
"missing": "Manquant",
|
||||
"queued": "En file d'attente",
|
||||
"queued": "Attente",
|
||||
"movies": "Films",
|
||||
"queue": "En attente",
|
||||
"unknown": "Inconnu"
|
||||
},
|
||||
"lidarr": {
|
||||
"wanted": "Demandé",
|
||||
"queued": "En file d'attente",
|
||||
"wanted": "Demande",
|
||||
"queued": "Attente",
|
||||
"artists": "Artistes"
|
||||
},
|
||||
"readarr": {
|
||||
"wanted": "Demandé",
|
||||
"queued": "En file d'attente",
|
||||
"wanted": "Demande",
|
||||
"queued": "Attente",
|
||||
"books": "Livres"
|
||||
},
|
||||
"bazarr": {
|
||||
|
@ -269,18 +267,18 @@
|
|||
},
|
||||
"ombi": {
|
||||
"pending": "En attente",
|
||||
"approved": "Approuvé",
|
||||
"approved": "Validé",
|
||||
"available": "Disponible"
|
||||
},
|
||||
"jellyseerr": {
|
||||
"pending": "En attente",
|
||||
"approved": "Approuvé",
|
||||
"approved": "Validé",
|
||||
"available": "Disponible"
|
||||
},
|
||||
"overseerr": {
|
||||
"pending": "En attente",
|
||||
"processing": "En cours de traitement",
|
||||
"approved": "Approuvé",
|
||||
"processing": "Traitement",
|
||||
"approved": "Validé",
|
||||
"available": "Disponible"
|
||||
},
|
||||
"netalertx": {
|
||||
|
@ -292,7 +290,7 @@
|
|||
"pihole": {
|
||||
"queries": "Requêtes",
|
||||
"blocked": "Bloqué",
|
||||
"blocked_percent": "% bloqué",
|
||||
"blocked_percent": "Bloqué %",
|
||||
"gravity": "Listes dom. bloqués"
|
||||
},
|
||||
"adguard": {
|
||||
|
@ -302,9 +300,9 @@
|
|||
"latency": "Latence"
|
||||
},
|
||||
"speedtest": {
|
||||
"upload": "Téléverser",
|
||||
"upload": "Envoi",
|
||||
"download": "Récep.",
|
||||
"ping": "Latence"
|
||||
"ping": "Ping"
|
||||
},
|
||||
"portainer": {
|
||||
"running": "Démarré",
|
||||
|
@ -337,7 +335,7 @@
|
|||
},
|
||||
"technitium": {
|
||||
"totalQueries": "Requêtes",
|
||||
"totalNoError": "Succès",
|
||||
"totalNoError": "Effectué avec succès",
|
||||
"totalServerFailure": "Échecs",
|
||||
"totalNxDomain": "Domaines NX",
|
||||
"totalRefused": "Refusés",
|
||||
|
@ -351,8 +349,8 @@
|
|||
"tdarr": {
|
||||
"queue": "En attente",
|
||||
"processed": "Traité",
|
||||
"errored": "Erroné",
|
||||
"saved": "Enregistré"
|
||||
"errored": "En erreur",
|
||||
"saved": "Libéré"
|
||||
},
|
||||
"traefik": {
|
||||
"routers": "Routeurs",
|
||||
|
@ -376,35 +374,35 @@
|
|||
"30days": "30 Jours"
|
||||
},
|
||||
"gotify": {
|
||||
"apps": "Applications",
|
||||
"apps": "Applis",
|
||||
"clients": "Clients",
|
||||
"messages": "Messages"
|
||||
"messages": "Msg"
|
||||
},
|
||||
"prowlarr": {
|
||||
"enableIndexers": "Indexeur",
|
||||
"numberOfGrabs": "Captures",
|
||||
"numberOfGrabs": "Capture",
|
||||
"numberOfQueries": "Requêtes",
|
||||
"numberOfFailGrabs": "Captures échouées",
|
||||
"numberOfFailQueries": "Demandes échouées"
|
||||
"numberOfFailGrabs": "Capt. échouée",
|
||||
"numberOfFailQueries": "Dem. échouée"
|
||||
},
|
||||
"jackett": {
|
||||
"configured": "Configuré",
|
||||
"errored": "Erroné"
|
||||
"errored": "En erreur"
|
||||
},
|
||||
"strelaysrv": {
|
||||
"numActiveSessions": "Sessions",
|
||||
"numConnections": "Connexions",
|
||||
"numConnections": "Cnx",
|
||||
"dataRelayed": "Relayé",
|
||||
"transferRate": "Débit"
|
||||
},
|
||||
"mastodon": {
|
||||
"user_count": "Utilisateurs",
|
||||
"status_count": "Articles",
|
||||
"status_count": "Messages",
|
||||
"domain_count": "Domaines"
|
||||
},
|
||||
"medusa": {
|
||||
"wanted": "Demandé",
|
||||
"queued": "En file d'attente",
|
||||
"wanted": "Demande",
|
||||
"queued": "Attente",
|
||||
"series": "Séries TV"
|
||||
},
|
||||
"minecraft": {
|
||||
|
@ -420,13 +418,13 @@
|
|||
},
|
||||
"authentik": {
|
||||
"users": "Utilisateurs",
|
||||
"loginsLast24H": "Connexions (24 h)",
|
||||
"failedLoginsLast24H": "Connexions échouées (24 h)"
|
||||
"loginsLast24H": "Cnx. (24h)",
|
||||
"failedLoginsLast24H": "Cnx. échouées (24h)"
|
||||
},
|
||||
"proxmox": {
|
||||
"mem": "MÉM",
|
||||
"cpu": "CPU",
|
||||
"lxc": "LXC",
|
||||
"lxc": "LxC",
|
||||
"vms": "VMs"
|
||||
},
|
||||
"glances": {
|
||||
|
@ -434,7 +432,7 @@
|
|||
"load": "Charge",
|
||||
"wait": "Veuillez patienter",
|
||||
"temp": "Temp",
|
||||
"_temp": "Température",
|
||||
"_temp": "T°",
|
||||
"warn": "Alerte",
|
||||
"uptime": "Up",
|
||||
"total": "Total",
|
||||
|
@ -445,12 +443,12 @@
|
|||
"crit": "Crit.",
|
||||
"read": "Lu",
|
||||
"write": "Écrit.",
|
||||
"gpu": "Carte Graphique",
|
||||
"gpu": "GPU",
|
||||
"mem": "Mém.",
|
||||
"swap": "Swap"
|
||||
},
|
||||
"quicklaunch": {
|
||||
"bookmark": "Marque-Page",
|
||||
"bookmark": "Signet",
|
||||
"service": "Service",
|
||||
"search": "Recherche",
|
||||
"custom": "Personnalisé",
|
||||
|
@ -460,13 +458,13 @@
|
|||
},
|
||||
"wmo": {
|
||||
"0-day": "Ensoleillé",
|
||||
"0-night": "Clair",
|
||||
"0-night": "Ciel clair",
|
||||
"1-day": "Principalement ensoleillé",
|
||||
"1-night": "Principalement clair",
|
||||
"2-day": "Partiellement nuageux",
|
||||
"2-night": "Partiellement nuageux",
|
||||
"3-day": "Nuageux",
|
||||
"3-night": "Nuageux",
|
||||
"2-day": "Partiellement couvert",
|
||||
"2-night": "Partiellement couvert",
|
||||
"3-day": "Couvert",
|
||||
"3-night": "Couvert",
|
||||
"45-day": "Brumeux",
|
||||
"45-night": "Brumeux",
|
||||
"48-day": "Brumeux",
|
||||
|
@ -485,14 +483,14 @@
|
|||
"61-night": "Pluie légère",
|
||||
"63-day": "Pluie",
|
||||
"63-night": "Pluie",
|
||||
"65-day": "Forte pluie",
|
||||
"65-night": "Forte pluie",
|
||||
"65-day": "Pluie forte",
|
||||
"65-night": "Pluie forte",
|
||||
"66-day": "Pluie verglaçante",
|
||||
"66-night": "Pluie verglaçante",
|
||||
"67-day": "Pluie verglaçante",
|
||||
"67-night": "Pluie verglaçante",
|
||||
"71-day": "Légères chutes de neige",
|
||||
"71-night": "Légères chutes de neige",
|
||||
"71-day": "Neige légère",
|
||||
"71-night": "Neige légère",
|
||||
"73-day": "Neige",
|
||||
"73-night": "Neige",
|
||||
"75-day": "Neige abondante",
|
||||
|
@ -543,7 +541,7 @@
|
|||
"containers_failed": "Échoué"
|
||||
},
|
||||
"autobrr": {
|
||||
"approvedPushes": "Approuvé",
|
||||
"approvedPushes": "Validé",
|
||||
"rejectedPushes": "Rejeté",
|
||||
"filters": "Filtres",
|
||||
"indexers": "Indexeur"
|
||||
|
@ -552,7 +550,7 @@
|
|||
"downloads": "En attente",
|
||||
"videos": "Vidéos",
|
||||
"channels": "Chaînes",
|
||||
"playlists": "Listes de lecture"
|
||||
"playlists": "Playlists"
|
||||
},
|
||||
"truenas": {
|
||||
"load": "Charge Système",
|
||||
|
@ -592,9 +590,9 @@
|
|||
"total": "Total"
|
||||
},
|
||||
"peanut": {
|
||||
"battery_charge": "Charge de la batterie",
|
||||
"ups_load": "Charge de l’ASI",
|
||||
"ups_status": "État de l’ASI",
|
||||
"battery_charge": "Charge Batterie",
|
||||
"ups_load": "Charge de l'UPS",
|
||||
"ups_status": "État de l'UPS",
|
||||
"online": "En ligne",
|
||||
"on_battery": "Sur Batterie",
|
||||
"low_battery": "Batterie Faible"
|
||||
|
@ -604,8 +602,8 @@
|
|||
"no_devices": "Aucune donnée d'appareil reçue"
|
||||
},
|
||||
"mikrotik": {
|
||||
"cpuLoad": "Charge du processeur",
|
||||
"memoryUsed": "Mémoire utilisée",
|
||||
"cpuLoad": "Charge CPU",
|
||||
"memoryUsed": "Mém. Utilisée",
|
||||
"uptime": "Démarré depuis",
|
||||
"numberOfLeases": "Baux"
|
||||
},
|
||||
|
@ -617,25 +615,25 @@
|
|||
"opendtu": {
|
||||
"yieldDay": "Aujourd'hui",
|
||||
"absolutePower": "Puissance",
|
||||
"relativePower": "% de puissance",
|
||||
"relativePower": "Puissance %",
|
||||
"limit": "Limite"
|
||||
},
|
||||
"opnsense": {
|
||||
"cpu": "Charge du processeur",
|
||||
"memory": "Mémoire utilisée",
|
||||
"cpu": "Charge CPU",
|
||||
"memory": "Mém. utilisée",
|
||||
"wanUpload": "WAN Envoi",
|
||||
"wanDownload": "WAN Récep."
|
||||
},
|
||||
"moonraker": {
|
||||
"printer_state": "État de l'imprimante",
|
||||
"print_status": "Statut de l'imprimante",
|
||||
"printer_state": "État Imprimante",
|
||||
"print_status": "Statut Imprimante",
|
||||
"print_progress": "Progression",
|
||||
"layers": "Couches"
|
||||
},
|
||||
"octoprint": {
|
||||
"printer_state": "Statut",
|
||||
"temp_tool": "Temp. de l'outil",
|
||||
"temp_bed": "Temp. du lit",
|
||||
"temp_tool": "Tool T°",
|
||||
"temp_bed": "Bed T°",
|
||||
"job_completion": "Achèvement"
|
||||
},
|
||||
"cloudflared": {
|
||||
|
@ -648,7 +646,7 @@
|
|||
"wanStatus": "Statut WAN",
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"temp": "Température",
|
||||
"temp": "T°",
|
||||
"disk": "Util. Disque",
|
||||
"wanIP": "IP WAN"
|
||||
},
|
||||
|
@ -690,7 +688,7 @@
|
|||
"mylar": {
|
||||
"series": "Séries TV",
|
||||
"issues": "Anomalies",
|
||||
"wanted": "Demandé"
|
||||
"wanted": "Demande"
|
||||
},
|
||||
"photoprism": {
|
||||
"albums": "Albums",
|
||||
|
@ -700,14 +698,10 @@
|
|||
},
|
||||
"fileflows": {
|
||||
"queue": "En attente",
|
||||
"processing": "En cours de traitement",
|
||||
"processing": "Traitement",
|
||||
"processed": "Traité",
|
||||
"time": "Temps"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Valeur Nette",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Tableau de bord",
|
||||
"datasources": "Sources données",
|
||||
|
@ -760,9 +754,9 @@
|
|||
"booksDuration": "Durée"
|
||||
},
|
||||
"homeassistant": {
|
||||
"people_home": "Personne à la maison",
|
||||
"people_home": "People Home",
|
||||
"lights_on": "Lumières allumées",
|
||||
"switches_on": "Interrupteurs allumés"
|
||||
"switches_on": "Commutateur On"
|
||||
},
|
||||
"whatsupdocker": {
|
||||
"monitoring": "Conteneurs",
|
||||
|
@ -795,7 +789,7 @@
|
|||
"inProgress": "En cours",
|
||||
"totalPrs": "PRs Total",
|
||||
"myPrs": "Mes PRs",
|
||||
"approved": "Approuvé"
|
||||
"approved": "Validé"
|
||||
},
|
||||
"gamedig": {
|
||||
"status": "Statut",
|
||||
|
@ -806,8 +800,8 @@
|
|||
"currentPlayers": "Joueurs actuels",
|
||||
"players": "Joueurs",
|
||||
"maxPlayers": "Joueurs max",
|
||||
"bots": "Robots",
|
||||
"ping": "Latence"
|
||||
"bots": "Bots",
|
||||
"ping": "Ping"
|
||||
},
|
||||
"urbackup": {
|
||||
"ok": "Ok",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Anomalies",
|
||||
"pulls": "Demandes de tirage",
|
||||
"repositories": "Dépôts"
|
||||
"pulls": "Demandes de tirage"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scènes",
|
||||
|
@ -919,7 +912,7 @@
|
|||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alertes",
|
||||
"bans": "Bannissements"
|
||||
"bans": "Exclusions"
|
||||
},
|
||||
"wgeasy": {
|
||||
"connected": "Connecté",
|
||||
|
@ -934,12 +927,12 @@
|
|||
"banned": "Banni"
|
||||
},
|
||||
"myspeed": {
|
||||
"ping": "Latence",
|
||||
"ping": "Ping",
|
||||
"download": "Récep.",
|
||||
"upload": "Téléverser"
|
||||
"upload": "Envoi"
|
||||
},
|
||||
"stocks": {
|
||||
"stocks": "Stocks",
|
||||
"stocks": "Actions",
|
||||
"loading": "Chargement",
|
||||
"open": "Ouvert - Marché américain",
|
||||
"closed": "Fermé - marché américain",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Anomalies",
|
||||
"merges": "Demandes de fusion de branches",
|
||||
"projects": "Projets"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Statut",
|
||||
"load": "Charge",
|
||||
"bcharge": "Charge de la batterie",
|
||||
"timeleft": "Temps restant"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Marque-pages",
|
||||
"favorites": "Favoris",
|
||||
"archived": "Archivé",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Listes",
|
||||
"tags": "Étiquettes"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Réseau",
|
||||
"connected": "Connecté",
|
||||
"disconnected": "Déconnecté",
|
||||
"updateStatus": "Mise à jour",
|
||||
"update_yes": "Disponible",
|
||||
"update_no": "À jour",
|
||||
"downloads": "Téléchargements",
|
||||
"uploads": "Téléversements",
|
||||
"sharedFiles": "Fichiers"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Up",
|
||||
"received": "Received",
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Connected APs",
|
||||
"activeUser": "Active devices",
|
||||
"alerts": "Alerts",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Connected gateways",
|
||||
"connectedSwitches": "Connected switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processed",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "סטטוס",
|
||||
"load": "עומס",
|
||||
"bcharge": "Battery Charge",
|
||||
"timeleft": "זמן שנותר"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Network",
|
||||
"connected": "Connected",
|
||||
"disconnected": "Disconnected",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "זמין",
|
||||
"update_no": "Up to Date",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Up",
|
||||
"received": "Received",
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Connected APs",
|
||||
"activeUser": "Active devices",
|
||||
"alerts": "Alerts",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Connected gateways",
|
||||
"connectedSwitches": "Connected switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processed",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Status",
|
||||
"load": "Load",
|
||||
"bcharge": "Battery Charge",
|
||||
"timeleft": "Time Left"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Network",
|
||||
"connected": "Connected",
|
||||
"disconnected": "Disconnected",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Available",
|
||||
"update_no": "Up to Date",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Dostupno",
|
||||
"received": "Primljeno",
|
||||
"sent": "Poslano",
|
||||
"externalIPAddress": "Eksterna IP adresa",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Eksterna IP adresa"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Glavne grane",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Povezani AP-ovi",
|
||||
"activeUser": "Aktivni uređaji",
|
||||
"alerts": "Upozorenja",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Povezani pristupi",
|
||||
"connectedSwitches": "Povezani prekidači"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Obrađeno",
|
||||
"time": "Vrijeme"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Pregledne ploče",
|
||||
"datasources": "Izvori podataka",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Obavijesti",
|
||||
"issues": "Problemi",
|
||||
"pulls": "Zahtjevi za povlačenje",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Zahtjevi za povlačenje"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scene",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Problemi",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Stanje",
|
||||
"load": "Opterećenje",
|
||||
"bcharge": "Napunjenost baterije",
|
||||
"timeleft": "Preostalo vrijeme"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Oznake"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Mreža",
|
||||
"connected": "Povezano",
|
||||
"disconnected": "Odspojeno",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Dostupno",
|
||||
"update_no": "Aktualno",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Datoteke"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Fel",
|
||||
"received": "Fogadott",
|
||||
"sent": "Küldött",
|
||||
"externalIPAddress": "Külső IP cím",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Külső IP cím"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreamek",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Csatlakoztatott AP-k",
|
||||
"activeUser": "Aktív eszközök",
|
||||
"alerts": "Riasztások",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Csatlakoztatott gateway-ek",
|
||||
"connectedSwitches": "Csatlakoztatott switch-ek"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Feldolgozott",
|
||||
"time": "Idő"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Nettó érték",
|
||||
"budget": "Költségkeret"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Műszerfalak",
|
||||
"datasources": "Adatforrások",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Üzenetek",
|
||||
"issues": "Problémák",
|
||||
"pulls": "Pull request-ek",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull request-ek"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Jelenetek",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"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ő"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Címkék"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Hálózat",
|
||||
"connected": "Csatlakozva",
|
||||
"disconnected": "Kapcsolat bontva",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Elérhető",
|
||||
"update_no": "Naprakész",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Fájlok"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
"date": "{{value, date}}",
|
||||
"relativeDate": "{{value, relativeDate}}",
|
||||
"duration": "{{value, duration}}",
|
||||
"months": "bln",
|
||||
"months": "bulan",
|
||||
"days": "h",
|
||||
"hours": "j",
|
||||
"minutes": "m",
|
||||
|
@ -140,7 +140,7 @@
|
|||
"connectionStatusPendingDisconnect": "Menunggu Terputus",
|
||||
"connectionStatusDisconnecting": "Sedan Memutus",
|
||||
"connectionStatusDisconnected": "Terputus",
|
||||
"connectionStatusConnected": "Tersambung",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Waktu Aktif",
|
||||
"maxDown": "Maks Unduh",
|
||||
"maxUp": "Maks Unggah",
|
||||
|
@ -148,9 +148,7 @@
|
|||
"up": "Hidup",
|
||||
"received": "Diterima",
|
||||
"sent": "Terkirim",
|
||||
"externalIPAddress": "IP Eksternal",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "IP Eksternal"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Strim Luar",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "AP Tersambung",
|
||||
"activeUser": "Perangakat yang Aktif",
|
||||
"alerts": "Peringatan",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Gateway Tersambung",
|
||||
"connectedSwitches": "Switch Tersambung"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -285,9 +283,9 @@
|
|||
},
|
||||
"netalertx": {
|
||||
"total": "Total",
|
||||
"connected": "Tersambung",
|
||||
"new_devices": "Perangkat Baru",
|
||||
"down_alerts": "Peringatan Pemadaman"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Kueri",
|
||||
|
@ -313,17 +311,17 @@
|
|||
},
|
||||
"suwayomi": {
|
||||
"download": "Terunduh",
|
||||
"nondownload": "Belum Diunduh",
|
||||
"nondownload": "Non-Downloaded",
|
||||
"read": "Baca",
|
||||
"unread": "Belum Dibaca",
|
||||
"downloadedread": "Diunduh & Dibaca",
|
||||
"downloadedunread": "Diunduh & Belum Dibaca",
|
||||
"nondownloadedread": "Belum Diunduh & Dibaca",
|
||||
"nondownloadedunread": "Belum Diunduh & Belum Dibaca"
|
||||
"downloadedread": "Downloaded & Read",
|
||||
"downloadedunread": "Downloaded & Unread",
|
||||
"nondownloadedread": "Non-Downloaded & Read",
|
||||
"nondownloadedunread": "Non-Downloaded & Unread"
|
||||
},
|
||||
"tailscale": {
|
||||
"address": "Alamat",
|
||||
"expires": "Kedaluwarsa",
|
||||
"expires": "Kadaluarsa",
|
||||
"never": "Tidak Pernah",
|
||||
"last_seen": "Terakhir terlihat",
|
||||
"now": "Sekarang",
|
||||
|
@ -337,12 +335,12 @@
|
|||
},
|
||||
"technitium": {
|
||||
"totalQueries": "Kueri",
|
||||
"totalNoError": "Berhasil",
|
||||
"totalServerFailure": "Gagal",
|
||||
"totalNxDomain": "Domain NX",
|
||||
"totalRefused": "Ditolak",
|
||||
"totalNoError": "Success",
|
||||
"totalServerFailure": "Failures",
|
||||
"totalNxDomain": "NX Domains",
|
||||
"totalRefused": "Refused",
|
||||
"totalAuthoritative": "Authoritative",
|
||||
"totalRecursive": "Rekursif",
|
||||
"totalRecursive": "Recursive",
|
||||
"totalCached": "Cached",
|
||||
"totalBlocked": "Terblokir",
|
||||
"totalDropped": "Dropped",
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Terproses",
|
||||
"time": "Waktu"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Kekayaan Bersih",
|
||||
"budget": "Anggaran"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dasbor",
|
||||
"datasources": "Sumber Data",
|
||||
|
@ -860,16 +854,16 @@
|
|||
},
|
||||
"romm": {
|
||||
"platforms": "Platform",
|
||||
"totalRoms": "Permainan",
|
||||
"totalRoms": "Games",
|
||||
"saves": "Saves",
|
||||
"states": "Kondisi",
|
||||
"screenshots": "Tangkapan Layar",
|
||||
"totalfilesize": "Total Ukuran"
|
||||
"states": "States",
|
||||
"screenshots": "Screenshots",
|
||||
"totalfilesize": "Total Size"
|
||||
},
|
||||
"mailcow": {
|
||||
"domains": "Jumlah Domain",
|
||||
"mailboxes": "Kotak surat",
|
||||
"mails": "Surat",
|
||||
"mailboxes": "Mailboxes",
|
||||
"mails": "Mails",
|
||||
"storage": "Penyimpanan"
|
||||
},
|
||||
"netdata": {
|
||||
|
@ -885,52 +879,51 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifikasi",
|
||||
"issues": "Isu",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Adegan",
|
||||
"scenesPlayed": "Adegan Dimainkan",
|
||||
"playCount": "Total Dimainkan",
|
||||
"playDuration": "Waktu Ditonton",
|
||||
"sceneSize": "Ukuran Adegan",
|
||||
"sceneDuration": "Durasi Adegan",
|
||||
"images": "Gambar",
|
||||
"imageSize": "Ukuran Gambar",
|
||||
"galleries": "Galeri",
|
||||
"performers": "Pemain",
|
||||
"studios": "Studio",
|
||||
"scenes": "Scenes",
|
||||
"scenesPlayed": "Scenes Played",
|
||||
"playCount": "Total Plays",
|
||||
"playDuration": "Time Watched",
|
||||
"sceneSize": "Scenes Size",
|
||||
"sceneDuration": "Scenes Duration",
|
||||
"images": "Images",
|
||||
"imageSize": "Images Size",
|
||||
"galleries": "Galleries",
|
||||
"performers": "Performers",
|
||||
"studios": "Studios",
|
||||
"movies": "Film",
|
||||
"tags": "Tag",
|
||||
"oCount": "Jumlah O"
|
||||
"oCount": "O Count"
|
||||
},
|
||||
"tandoor": {
|
||||
"users": "Pengguna",
|
||||
"recipes": "Resep",
|
||||
"keywords": "Kata Kunci"
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "Dengan Garansi",
|
||||
"locations": "Lokasi",
|
||||
"labels": "Label",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Pengguna",
|
||||
"totalValue": "Total Nilai"
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Peringatan",
|
||||
"bans": "Bans"
|
||||
},
|
||||
"wgeasy": {
|
||||
"connected": "Tersambung",
|
||||
"connected": "Connected",
|
||||
"enabled": "Aktif",
|
||||
"disabled": "Nonaktif",
|
||||
"total": "Total"
|
||||
},
|
||||
"swagdashboard": {
|
||||
"proxied": "Diproksi",
|
||||
"proxied": "Proxied",
|
||||
"auth": "With Auth",
|
||||
"outdated": "Usang",
|
||||
"outdated": "Outdated",
|
||||
"banned": "Banned"
|
||||
},
|
||||
"myspeed": {
|
||||
|
@ -939,43 +932,43 @@
|
|||
"upload": "Unggah"
|
||||
},
|
||||
"stocks": {
|
||||
"stocks": "Saham",
|
||||
"loading": "Memuat",
|
||||
"open": "Buka - Pasar AS",
|
||||
"closed": "Tutup - Pasar AS",
|
||||
"invalidConfiguration": "Konfigurasi Invalid"
|
||||
"stocks": "Stocks",
|
||||
"loading": "Loading",
|
||||
"open": "Open - US Market",
|
||||
"closed": "Closed - US Market",
|
||||
"invalidConfiguration": "Invalid Configuration"
|
||||
},
|
||||
"frigate": {
|
||||
"cameras": "Kamera",
|
||||
"cameras": "Cameras",
|
||||
"uptime": "Waktu Aktif",
|
||||
"version": "Versi"
|
||||
},
|
||||
"linkwarden": {
|
||||
"links": "Tautan",
|
||||
"collections": "Koleksi",
|
||||
"links": "Links",
|
||||
"collections": "Collections",
|
||||
"tags": "Tag"
|
||||
},
|
||||
"zabbix": {
|
||||
"unclassified": "Not classified",
|
||||
"information": "Informasi",
|
||||
"warning": "Peringatan",
|
||||
"average": "Rata-rata",
|
||||
"high": "Tinggi",
|
||||
"disaster": "Bencana"
|
||||
"warning": "Warning",
|
||||
"average": "Average",
|
||||
"high": "High",
|
||||
"disaster": "Disaster"
|
||||
},
|
||||
"lubelogger": {
|
||||
"vehicle": "Kendaraan",
|
||||
"vehicles": "Kendaraan",
|
||||
"serviceRecords": "Catatan Servis",
|
||||
"reminders": "Pengingat",
|
||||
"nextReminder": "Pengingat Berikutnya",
|
||||
"none": "Tidak ada"
|
||||
"vehicle": "Vehicle",
|
||||
"vehicles": "Vehicles",
|
||||
"serviceRecords": "Service Records",
|
||||
"reminders": "Reminders",
|
||||
"nextReminder": "Next Reminder",
|
||||
"none": "None"
|
||||
},
|
||||
"vikunja": {
|
||||
"projects": "Proyek Aktif",
|
||||
"tasks7d": "Tugas Jatuh Tempo Minggu Ini",
|
||||
"tasksOverdue": "Tugas Terlewat",
|
||||
"tasksInProgress": "Tugas Berlangsung"
|
||||
"projects": "Active Projects",
|
||||
"tasks7d": "Tasks Due This Week",
|
||||
"tasksOverdue": "Overdue Tasks",
|
||||
"tasksInProgress": "Tasks In Progress"
|
||||
},
|
||||
"headscale": {
|
||||
"name": "Nama",
|
||||
|
@ -987,7 +980,7 @@
|
|||
},
|
||||
"beszel": {
|
||||
"name": "Nama",
|
||||
"systems": "Sistem",
|
||||
"systems": "Systems",
|
||||
"up": "Hidup",
|
||||
"down": "Mati",
|
||||
"paused": "Pause",
|
||||
|
@ -996,51 +989,26 @@
|
|||
"updated": "Terbarui",
|
||||
"cpu": "CPU",
|
||||
"memory": "MEM",
|
||||
"disk": "Diska",
|
||||
"disk": "Disk",
|
||||
"network": "NET"
|
||||
},
|
||||
"argocd": {
|
||||
"apps": "Apl",
|
||||
"synced": "Tersinkron",
|
||||
"outOfSync": "Tidak Sinkron",
|
||||
"apps": "Apps",
|
||||
"synced": "Synced",
|
||||
"outOfSync": "Out Of Sync",
|
||||
"healthy": "Lancar",
|
||||
"degraded": "Terdegradasi",
|
||||
"degraded": "Degraded",
|
||||
"progressing": "Progressing",
|
||||
"missing": "Tidak Ditemukan",
|
||||
"suspended": "Ditangguhkan"
|
||||
"suspended": "Suspended"
|
||||
},
|
||||
"spoolman": {
|
||||
"loading": "Memuat"
|
||||
"loading": "Loading"
|
||||
},
|
||||
"gitlab": {
|
||||
"groups": "Grup",
|
||||
"groups": "Groups",
|
||||
"issues": "Isu",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Proyek"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Status",
|
||||
"load": "Beban",
|
||||
"bcharge": "Sisa Baterai",
|
||||
"timeleft": "Sisa Waktu"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tag"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Jaringan",
|
||||
"connected": "Tersambung",
|
||||
"disconnected": "Terputus",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Tersedia",
|
||||
"update_no": "Terbaru",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "File"
|
||||
"projects": "Projects"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Up",
|
||||
"received": "Ricevuti",
|
||||
"sent": "Inviati",
|
||||
"externalIPAddress": "IP Esterno",
|
||||
"externalIPv6Address": "IPv6 Esterno",
|
||||
"externalIPv6Prefix": "Prefisso IPv6 Esterno"
|
||||
"externalIPAddress": "IP Esterno"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstream",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "AP Connessi",
|
||||
"activeUser": "Dispositivi attivi",
|
||||
"alerts": "Allarmi",
|
||||
"connectedGateways": "Gateway connessi",
|
||||
"connectedGateway": "Gateway connessi",
|
||||
"connectedSwitches": "Switch connessi"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -338,7 +336,7 @@
|
|||
"technitium": {
|
||||
"totalQueries": "Richieste",
|
||||
"totalNoError": "Successo",
|
||||
"totalServerFailure": "Fallimenti",
|
||||
"totalServerFailure": "Failures",
|
||||
"totalNxDomain": "NX Domains",
|
||||
"totalRefused": "Refused",
|
||||
"totalAuthoritative": "Authoritative",
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Elaborati",
|
||||
"time": "Tempo"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboard",
|
||||
"datasources": "Origine dei Dati",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifiche",
|
||||
"issues": "Problemi",
|
||||
"pulls": "Richieste di Pull",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Richieste di Pull"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scene",
|
||||
|
@ -943,7 +936,7 @@
|
|||
"loading": "Caricamento",
|
||||
"open": "Open - US Market",
|
||||
"closed": "Closed - US Market",
|
||||
"invalidConfiguration": "Configurazione non valida"
|
||||
"invalidConfiguration": "Invalid Configuration"
|
||||
},
|
||||
"frigate": {
|
||||
"cameras": "Cameras",
|
||||
|
@ -959,7 +952,7 @@
|
|||
"unclassified": "Not classified",
|
||||
"information": "Informazioni",
|
||||
"warning": "Warning",
|
||||
"average": "Media",
|
||||
"average": "Average",
|
||||
"high": "High",
|
||||
"disaster": "Disaster"
|
||||
},
|
||||
|
@ -987,7 +980,7 @@
|
|||
},
|
||||
"beszel": {
|
||||
"name": "Nome",
|
||||
"systems": "Sistemi",
|
||||
"systems": "Systems",
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"paused": "In Pausa",
|
||||
|
@ -996,15 +989,15 @@
|
|||
"updated": "Aggiornato",
|
||||
"cpu": "CPU",
|
||||
"memory": "MEM",
|
||||
"disk": "Disco",
|
||||
"disk": "Disk",
|
||||
"network": "NET"
|
||||
},
|
||||
"argocd": {
|
||||
"apps": "Applicazioni",
|
||||
"synced": "Sincronizzato",
|
||||
"outOfSync": "Non Sincronizzato",
|
||||
"apps": "Apps",
|
||||
"synced": "Synced",
|
||||
"outOfSync": "Out Of Sync",
|
||||
"healthy": "Sano",
|
||||
"degraded": "Degradato",
|
||||
"degraded": "Degraded",
|
||||
"progressing": "Progressing",
|
||||
"missing": "Mancanti",
|
||||
"suspended": "Suspended"
|
||||
|
@ -1013,34 +1006,9 @@
|
|||
"loading": "Caricamento"
|
||||
},
|
||||
"gitlab": {
|
||||
"groups": "Gruppi",
|
||||
"groups": "Groups",
|
||||
"issues": "Problemi",
|
||||
"merges": "Richieste di merge",
|
||||
"projects": "Progetti"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Stato",
|
||||
"load": "Carico",
|
||||
"bcharge": "Carica Batteria",
|
||||
"timeleft": "Tempo Rimanente"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Segnalibri",
|
||||
"favorites": "Preferiti",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Liste",
|
||||
"tags": "Tag"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Rete",
|
||||
"connected": "Connesso",
|
||||
"disconnected": "Disconnesso",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Disponibili",
|
||||
"update_no": "Aggiornato",
|
||||
"downloads": "Download",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "File"
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "稼働",
|
||||
"received": "受信済み",
|
||||
"sent": "送信済み",
|
||||
"externalIPAddress": "退出ID",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "退出ID"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "アップストリーム",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "接続されたAP",
|
||||
"activeUser": "アクティブデバイス",
|
||||
"alerts": "アラート",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "接続されたゲートウェイ",
|
||||
"connectedSwitches": "接続スイッチ"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "処理済み",
|
||||
"time": "時間"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "ダッシュ ボード",
|
||||
"datasources": "データソース",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "通知",
|
||||
"issues": "課題",
|
||||
"pulls": "プルリクエスト",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "プルリクエスト"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "シーン",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "課題",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "状態",
|
||||
"load": "ロード",
|
||||
"bcharge": "バッテリー充電",
|
||||
"timeleft": "残り時間"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "タグ"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "ネットワーク",
|
||||
"connected": "接続済",
|
||||
"disconnected": "切断されました",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "利用可",
|
||||
"update_no": "最新",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "ファイル"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,11 +14,11 @@
|
|||
"date": "{{value, date}}",
|
||||
"relativeDate": "{{value, relativeDate}}",
|
||||
"duration": "{{value, duration}}",
|
||||
"months": "달",
|
||||
"days": "일",
|
||||
"hours": "시",
|
||||
"minutes": "분",
|
||||
"seconds": "초"
|
||||
"months": "mo",
|
||||
"days": "d",
|
||||
"hours": "h",
|
||||
"minutes": "m",
|
||||
"seconds": "s"
|
||||
},
|
||||
"widget": {
|
||||
"missing_type": "없는 위젯 유형: {{type}}",
|
||||
|
@ -51,7 +51,7 @@
|
|||
},
|
||||
"unifi": {
|
||||
"users": "사용자",
|
||||
"uptime": "가동 시간",
|
||||
"uptime": "Uptime",
|
||||
"days": "일",
|
||||
"wan": "WAN",
|
||||
"lan": "LAN",
|
||||
|
@ -141,16 +141,14 @@
|
|||
"connectionStatusDisconnecting": "연결을 끊는 중...",
|
||||
"connectionStatusDisconnected": "연결 끊김",
|
||||
"connectionStatusConnected": "연결됨",
|
||||
"uptime": "가동 시간",
|
||||
"uptime": "Uptime",
|
||||
"maxDown": "Max. Down",
|
||||
"maxUp": "Max. Up",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"received": "수신됨",
|
||||
"sent": "전송됨",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "연결된 AP",
|
||||
"activeUser": "활성 장치",
|
||||
"alerts": "경고",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "연결된 게이트웨이",
|
||||
"connectedSwitches": "연결된 스위치"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -188,7 +186,7 @@
|
|||
},
|
||||
"plex": {
|
||||
"streams": "활성 스트림",
|
||||
"albums": "앨범",
|
||||
"albums": "Albums",
|
||||
"movies": "영화",
|
||||
"tv": "TV 쇼"
|
||||
},
|
||||
|
@ -440,8 +438,8 @@
|
|||
"total": "총합",
|
||||
"free": "남음",
|
||||
"used": "사용",
|
||||
"days": "일",
|
||||
"hours": "시",
|
||||
"days": "d",
|
||||
"hours": "h",
|
||||
"crit": "Crit",
|
||||
"read": "읽음",
|
||||
"write": "쓰기",
|
||||
|
@ -556,7 +554,7 @@
|
|||
},
|
||||
"truenas": {
|
||||
"load": "System Load",
|
||||
"uptime": "가동 시간",
|
||||
"uptime": "Uptime",
|
||||
"alerts": "경고"
|
||||
},
|
||||
"pyload": {
|
||||
|
@ -606,7 +604,7 @@
|
|||
"mikrotik": {
|
||||
"cpuLoad": "CPU Load",
|
||||
"memoryUsed": "메모리 사용량",
|
||||
"uptime": "가동 시간",
|
||||
"uptime": "Uptime",
|
||||
"numberOfLeases": "Leases"
|
||||
},
|
||||
"xteve": {
|
||||
|
@ -667,9 +665,9 @@
|
|||
"uptimekuma": {
|
||||
"up": "Sites Up",
|
||||
"down": "Sites Down",
|
||||
"uptime": "가동 시간",
|
||||
"uptime": "Uptime",
|
||||
"incident": "Incident",
|
||||
"m": "분"
|
||||
"m": "m"
|
||||
},
|
||||
"atsumeru": {
|
||||
"series": "시리즈",
|
||||
|
@ -684,7 +682,7 @@
|
|||
},
|
||||
"diskstation": {
|
||||
"days": "일",
|
||||
"uptime": "가동 시간",
|
||||
"uptime": "Uptime",
|
||||
"volumeAvailable": "이용 가능"
|
||||
},
|
||||
"mylar": {
|
||||
|
@ -693,7 +691,7 @@
|
|||
"wanted": "요청"
|
||||
},
|
||||
"photoprism": {
|
||||
"albums": "앨범",
|
||||
"albums": "Albums",
|
||||
"photos": "사진",
|
||||
"videos": "동영상",
|
||||
"people": "People"
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "처리됨",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "순자산",
|
||||
"budget": "예산"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "대시보드",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -746,7 +740,7 @@
|
|||
"gatus": {
|
||||
"up": "Sites Up",
|
||||
"down": "Sites Down",
|
||||
"uptime": "가동 시간"
|
||||
"uptime": "Uptime"
|
||||
},
|
||||
"ghostfolio": {
|
||||
"gross_percent_today": "오늘",
|
||||
|
@ -816,7 +810,7 @@
|
|||
"totalUsed": "Used Storage"
|
||||
},
|
||||
"mealie": {
|
||||
"recipes": "레시피",
|
||||
"recipes": "Recipes",
|
||||
"users": "사용자",
|
||||
"categories": "분류",
|
||||
"tags": "태그"
|
||||
|
@ -830,7 +824,7 @@
|
|||
"failed": "Failed"
|
||||
},
|
||||
"openwrt": {
|
||||
"uptime": "가동 시간",
|
||||
"uptime": "Uptime",
|
||||
"cpuLoad": "CPU Load Avg (5m)",
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
|
@ -839,7 +833,7 @@
|
|||
},
|
||||
"uptimerobot": {
|
||||
"status": "상태",
|
||||
"uptime": "가동 시간",
|
||||
"uptime": "Uptime",
|
||||
"lastDown": "Last Downtime",
|
||||
"downDuration": "Downtime Duration",
|
||||
"sitesUp": "Sites Up",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "알림",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "장면",
|
||||
|
@ -906,7 +899,7 @@
|
|||
},
|
||||
"tandoor": {
|
||||
"users": "사용자",
|
||||
"recipes": "레시피",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "키워드"
|
||||
},
|
||||
"homebox": {
|
||||
|
@ -947,7 +940,7 @@
|
|||
},
|
||||
"frigate": {
|
||||
"cameras": "카메라",
|
||||
"uptime": "가동 시간",
|
||||
"uptime": "Uptime",
|
||||
"version": "버전"
|
||||
},
|
||||
"linkwarden": {
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "상태",
|
||||
"load": "부하",
|
||||
"bcharge": "배터리 충전 중",
|
||||
"timeleft": "남은 시간"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "태그"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "네트워크",
|
||||
"connected": "연결됨",
|
||||
"disconnected": "연결 끊김",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "이용 가능",
|
||||
"update_no": "최신 상태",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "파일"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Up",
|
||||
"received": "Received",
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Savienotie piekļuves punkti",
|
||||
"activeUser": "Aktīvās ierīces",
|
||||
"alerts": "Paziņojumi",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Savienotās vārtejas",
|
||||
"connectedSwitches": "Savienotie komutatori"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processed",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Statuss",
|
||||
"load": "Ielādē",
|
||||
"bcharge": "Battery Charge",
|
||||
"timeleft": "Atlikušais laiks"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Network",
|
||||
"connected": "Connected",
|
||||
"disconnected": "Disconnected",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Available",
|
||||
"update_no": "Up to Date",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Hidup",
|
||||
"received": "Diterima",
|
||||
"sent": "Telah dihantar",
|
||||
"externalIPAddress": "IP Luaran",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "IP Luaran"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Connected APs",
|
||||
"activeUser": "Peranti aktif",
|
||||
"alerts": "Perhatian",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Connected gateways",
|
||||
"connectedSwitches": "Connected switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Sudah diprosess",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Adegan",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Status",
|
||||
"load": "Beban",
|
||||
"bcharge": "Bateri dicas",
|
||||
"timeleft": "Masa Tinggal"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tanda nama"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Rangkaian",
|
||||
"connected": "Connected",
|
||||
"disconnected": "Sambungan Terputus",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Sudah Ada",
|
||||
"update_no": "Terkemaskini",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Online",
|
||||
"received": "Ontvangen",
|
||||
"sent": "Verzonden",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Verbonden APs",
|
||||
"activeUser": "Actieve apparaten",
|
||||
"alerts": "Meldingen",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Verbonden gateways",
|
||||
"connectedSwitches": "Verbonden switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Verwerkt",
|
||||
"time": "Tijd"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Bronnen",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notificaties",
|
||||
"issues": "Problemen",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scènes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Problemen",
|
||||
"merges": "Merge Verzoeken",
|
||||
"projects": "Projecten"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Status",
|
||||
"load": "Belasting",
|
||||
"bcharge": "Batterij opladen",
|
||||
"timeleft": "Resterende Tijd"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Label"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Netwerk",
|
||||
"connected": "Verbonden",
|
||||
"disconnected": "Verbinding verbroken",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Beschikbaar",
|
||||
"update_no": "Bijgewerkt",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Bestanden"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Oppe",
|
||||
"received": "Mottatt",
|
||||
"sent": "Sendt",
|
||||
"externalIPAddress": "Ekstern IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ekstern IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Oppstrøms",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Tilkoblede AP'er",
|
||||
"activeUser": "Aktive enheter",
|
||||
"alerts": "Varsler",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Tilkoblede gateways",
|
||||
"connectedSwitches": "Tilkoblede switcher"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Behandlet",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Varslinger",
|
||||
"issues": "Issues",
|
||||
"pulls": "Forespørsel",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Forespørsel"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scener",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Status",
|
||||
"load": "Last",
|
||||
"bcharge": "Batteriladning",
|
||||
"timeleft": "Gjenstående tid"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Stikkord"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Nettverk",
|
||||
"connected": "Tilkoblet",
|
||||
"disconnected": "Frakoblet",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Tilgjengelig",
|
||||
"update_no": "Oppdatert",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Dostępny",
|
||||
"received": "Odebrane",
|
||||
"sent": "Wysłane",
|
||||
"externalIPAddress": "Pub. IP",
|
||||
"externalIPv6Address": "Zewn. IPv6",
|
||||
"externalIPv6Prefix": "Zewn. prefiks IPv6"
|
||||
"externalIPAddress": "Pub. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Połączone punkty dostępowe",
|
||||
"activeUser": "Aktywne urządzenia",
|
||||
"alerts": "Alarmy",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Połączone bramy",
|
||||
"connectedSwitches": "Połączone przełączniki"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Przetworzone",
|
||||
"time": "Czas"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Wartość netto",
|
||||
"budget": "Budżet"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Panel główny",
|
||||
"datasources": "Źródła danych",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Powiadomienia",
|
||||
"issues": "Zgłoszenia",
|
||||
"pulls": "Żądania Pull",
|
||||
"repositories": "Repozytoria"
|
||||
"pulls": "Żądania Pull"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Sceny",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Zgłoszenia",
|
||||
"merges": "Żądania scaleń",
|
||||
"projects": "Projekty"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Stan",
|
||||
"load": "Obciążenie",
|
||||
"bcharge": "Stan baterii",
|
||||
"timeleft": "Pozostało"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Zakładki",
|
||||
"favorites": "Ulubione",
|
||||
"archived": "Zarchiwizowane",
|
||||
"highlights": "Wyróżnione",
|
||||
"lists": "Listy",
|
||||
"tags": "Tagi"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Sieć",
|
||||
"connected": "Połączono",
|
||||
"disconnected": "Rozłączono",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Dostępne",
|
||||
"update_no": "Aktualny",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Pliki"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Up",
|
||||
"received": "Recebido",
|
||||
"sent": "Enviado",
|
||||
"externalIPAddress": "Endereço IP Externo",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Endereço IP Externo"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "APs Ligados",
|
||||
"activeUser": "Dispositivos activos",
|
||||
"alerts": "Alertas",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Gateways ligados",
|
||||
"connectedSwitches": "Switches ligados"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processado",
|
||||
"time": "Hora"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Painéis",
|
||||
"datasources": "Origem de Dados",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notificações",
|
||||
"issues": "Problemas",
|
||||
"pulls": "Solicitar pull",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Solicitar pull"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Cenas",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Problemas",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Estado",
|
||||
"load": "Carga",
|
||||
"bcharge": "Carga da bateria",
|
||||
"timeleft": "Tempo Restante"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Etiquetas"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Rede",
|
||||
"connected": "Conectado",
|
||||
"disconnected": "Desconectado",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Disponível",
|
||||
"update_no": "Atualizado",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Ficheiros"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
"load": "Carga",
|
||||
"temp": "TEMP",
|
||||
"max": "Máximo",
|
||||
"uptime": "ATIVO"
|
||||
"uptime": "CIMA"
|
||||
},
|
||||
"unifi": {
|
||||
"users": "Usuários",
|
||||
|
@ -61,7 +61,7 @@
|
|||
"wlan_devices": "Dispositivos WLAN",
|
||||
"lan_users": "Usuários de LAN",
|
||||
"wlan_users": "Usuários de WLAN",
|
||||
"up": "ATIVO",
|
||||
"up": "CIMA",
|
||||
"down": "Desligado",
|
||||
"wait": "Por favor, aguarde",
|
||||
"empty_data": "Status do Subsistema desconhecido"
|
||||
|
@ -148,9 +148,7 @@
|
|||
"up": "Ativo",
|
||||
"received": "Recebido",
|
||||
"sent": "Enviado",
|
||||
"externalIPAddress": "IP Externo",
|
||||
"externalIPv6Address": "IPv6 Externo",
|
||||
"externalIPv6Prefix": "Prefixo IPv6 Externo"
|
||||
"externalIPAddress": "IP Externo"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Streams de Envio",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "APs Ligados",
|
||||
"activeUser": "Dispositivos ativos",
|
||||
"alerts": "Alertas",
|
||||
"connectedGateways": "Gateways conectados",
|
||||
"connectedGateway": "Gateways conectados",
|
||||
"connectedSwitches": "Switches conectados"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -229,8 +227,8 @@
|
|||
"seed": "Semente"
|
||||
},
|
||||
"develancacheui": {
|
||||
"cachehitbytes": "Bytes de Acerto de Cache",
|
||||
"cachemissbytes": "Bytes de Falha de Cache"
|
||||
"cachehitbytes": "Cache Hit Bytes",
|
||||
"cachemissbytes": "Cache Miss Bytes"
|
||||
},
|
||||
"downloadstation": {
|
||||
"download": "Descarregar",
|
||||
|
@ -313,13 +311,13 @@
|
|||
},
|
||||
"suwayomi": {
|
||||
"download": "Baixado",
|
||||
"nondownload": "Não Baixado",
|
||||
"nondownload": "Non-Downloaded",
|
||||
"read": "Lido",
|
||||
"unread": "Não lida",
|
||||
"downloadedread": "Baixado e Lido",
|
||||
"downloadedunread": "Baixado e Não Lido",
|
||||
"nondownloadedread": "Não Baixado e Lido",
|
||||
"nondownloadedunread": "Não Baixado e Não Lido"
|
||||
"downloadedread": "Downloaded & Read",
|
||||
"downloadedunread": "Downloaded & Unread",
|
||||
"nondownloadedread": "Non-Downloaded & Read",
|
||||
"nondownloadedunread": "Non-Downloaded & Unread"
|
||||
},
|
||||
"tailscale": {
|
||||
"address": "Endereço",
|
||||
|
@ -337,15 +335,15 @@
|
|||
},
|
||||
"technitium": {
|
||||
"totalQueries": "Consultas",
|
||||
"totalNoError": "Sucesso",
|
||||
"totalServerFailure": "Falhas",
|
||||
"totalNxDomain": "Domínios NX",
|
||||
"totalRefused": "Recusado",
|
||||
"totalAuthoritative": "Autoritativo",
|
||||
"totalRecursive": "Recursivo",
|
||||
"totalCached": "Em cache",
|
||||
"totalNoError": "Success",
|
||||
"totalServerFailure": "Failures",
|
||||
"totalNxDomain": "NX Domains",
|
||||
"totalRefused": "Refused",
|
||||
"totalAuthoritative": "Authoritative",
|
||||
"totalRecursive": "Recursive",
|
||||
"totalCached": "Cached",
|
||||
"totalBlocked": "Bloqueado",
|
||||
"totalDropped": "Perdidos",
|
||||
"totalDropped": "Dropped",
|
||||
"totalClients": "Clientes"
|
||||
},
|
||||
"tdarr": {
|
||||
|
@ -436,7 +434,7 @@
|
|||
"temp": "TEMP",
|
||||
"_temp": "Temperatura",
|
||||
"warn": "Aviso",
|
||||
"uptime": "ATIVO",
|
||||
"uptime": "CIMA",
|
||||
"total": "Total",
|
||||
"free": "Livre",
|
||||
"used": "Utilizado",
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processado",
|
||||
"time": "Hora"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Valor Líquido",
|
||||
"budget": "Orçamento"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Painéis",
|
||||
"datasources": "Origem de Dados",
|
||||
|
@ -860,16 +854,16 @@
|
|||
},
|
||||
"romm": {
|
||||
"platforms": "Plataformas",
|
||||
"totalRoms": "Jogos",
|
||||
"totalRoms": "Games",
|
||||
"saves": "Saves",
|
||||
"states": "Estados",
|
||||
"screenshots": "Capturas de Tela",
|
||||
"totalfilesize": "Tamanho total"
|
||||
"states": "States",
|
||||
"screenshots": "Screenshots",
|
||||
"totalfilesize": "Total Size"
|
||||
},
|
||||
"mailcow": {
|
||||
"domains": "Domínios",
|
||||
"mailboxes": "Caixas de e-mail",
|
||||
"mails": "Mensagens",
|
||||
"mailboxes": "Mailboxes",
|
||||
"mails": "Mails",
|
||||
"storage": "Armazenamento"
|
||||
},
|
||||
"netdata": {
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notificações",
|
||||
"issues": "Problemas",
|
||||
"pulls": "Solicitações de Envio",
|
||||
"repositories": "Repositórios"
|
||||
"pulls": "Solicitações de Envio"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Cenas",
|
||||
|
@ -952,30 +945,30 @@
|
|||
},
|
||||
"linkwarden": {
|
||||
"links": "Links",
|
||||
"collections": "Coleções",
|
||||
"collections": "Collections",
|
||||
"tags": "Marcadores"
|
||||
},
|
||||
"zabbix": {
|
||||
"unclassified": "Não classificado",
|
||||
"unclassified": "Not classified",
|
||||
"information": "Informação",
|
||||
"warning": "Aviso",
|
||||
"average": "Médio",
|
||||
"high": "Alto",
|
||||
"disaster": "Desastre"
|
||||
"warning": "Warning",
|
||||
"average": "Average",
|
||||
"high": "High",
|
||||
"disaster": "Disaster"
|
||||
},
|
||||
"lubelogger": {
|
||||
"vehicle": "Veículo",
|
||||
"vehicles": "Veículos",
|
||||
"serviceRecords": "Registros de Serviço",
|
||||
"reminders": "Lembretes",
|
||||
"nextReminder": "Próximo Lembrete",
|
||||
"none": "Nenhum"
|
||||
"vehicle": "Vehicle",
|
||||
"vehicles": "Vehicles",
|
||||
"serviceRecords": "Service Records",
|
||||
"reminders": "Reminders",
|
||||
"nextReminder": "Next Reminder",
|
||||
"none": "None"
|
||||
},
|
||||
"vikunja": {
|
||||
"projects": "Projetos Ativos",
|
||||
"tasks7d": "Tarefas que vencem nesta semana",
|
||||
"tasksOverdue": "Tarefas Atrasadas",
|
||||
"tasksInProgress": "Tarefas em Andamento"
|
||||
"projects": "Active Projects",
|
||||
"tasks7d": "Tasks Due This Week",
|
||||
"tasksOverdue": "Overdue Tasks",
|
||||
"tasksInProgress": "Tasks In Progress"
|
||||
},
|
||||
"headscale": {
|
||||
"name": "Nome",
|
||||
|
@ -987,7 +980,7 @@
|
|||
},
|
||||
"beszel": {
|
||||
"name": "Nome",
|
||||
"systems": "Sistemas",
|
||||
"systems": "Systems",
|
||||
"up": "Ativo",
|
||||
"down": "Inativo",
|
||||
"paused": "Pausado",
|
||||
|
@ -996,51 +989,26 @@
|
|||
"updated": "Atualizado",
|
||||
"cpu": "CPU",
|
||||
"memory": "MEM",
|
||||
"disk": "Disco",
|
||||
"network": "Rede"
|
||||
"disk": "Disk",
|
||||
"network": "NET"
|
||||
},
|
||||
"argocd": {
|
||||
"apps": "Aplicativos",
|
||||
"synced": "Sincronizado",
|
||||
"outOfSync": "Fora de sincronia",
|
||||
"apps": "Apps",
|
||||
"synced": "Synced",
|
||||
"outOfSync": "Out Of Sync",
|
||||
"healthy": "Saudável",
|
||||
"degraded": "Degradado",
|
||||
"progressing": "Progredindo",
|
||||
"degraded": "Degraded",
|
||||
"progressing": "Progressing",
|
||||
"missing": "Faltando",
|
||||
"suspended": "Suspenso"
|
||||
"suspended": "Suspended"
|
||||
},
|
||||
"spoolman": {
|
||||
"loading": "Carregando"
|
||||
},
|
||||
"gitlab": {
|
||||
"groups": "Grupos",
|
||||
"groups": "Groups",
|
||||
"issues": "Problemas",
|
||||
"merges": "Solicitações de mesclagem",
|
||||
"projects": "Projetos"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Status",
|
||||
"load": "Carga",
|
||||
"bcharge": "Carga da bateria",
|
||||
"timeleft": "Tempo restante"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Marcadores",
|
||||
"favorites": "Favoritos",
|
||||
"archived": "Arquivados",
|
||||
"highlights": "Destaques",
|
||||
"lists": "Listas",
|
||||
"tags": "Marcadores"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Rede",
|
||||
"connected": "Conectado",
|
||||
"disconnected": "Desconectado",
|
||||
"updateStatus": "Atualize",
|
||||
"update_yes": "Disponível",
|
||||
"update_no": "Atualizado",
|
||||
"downloads": "Transferências",
|
||||
"uploads": "Envios",
|
||||
"sharedFiles": "Arquivos"
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Sus",
|
||||
"received": "Received",
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreamuri",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Connected APs",
|
||||
"activeUser": "Active devices",
|
||||
"alerts": "Alerts",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Connected gateways",
|
||||
"connectedSwitches": "Connected switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processed",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Stare",
|
||||
"load": "Sarcină",
|
||||
"bcharge": "Battery Charge",
|
||||
"timeleft": "Timp rămas"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Network",
|
||||
"connected": "Connected",
|
||||
"disconnected": "Disconnected",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Disponibile",
|
||||
"update_no": "Up to Date",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Онлайн",
|
||||
"received": "Получено",
|
||||
"sent": "Отправлено",
|
||||
"externalIPAddress": "Внеш. IP",
|
||||
"externalIPv6Address": "Внешний IPv6",
|
||||
"externalIPv6Prefix": "Внешний IPv6 префикс"
|
||||
"externalIPAddress": "Внеш. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Входящие каналы",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Подключенные точки доступа",
|
||||
"activeUser": "Активные устройства",
|
||||
"alerts": "Предупреждения",
|
||||
"connectedGateways": "Подключенные шлюзы",
|
||||
"connectedGateway": "Подключенные шлюзы",
|
||||
"connectedSwitches": "Подключенные коммутаторы"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Обработано",
|
||||
"time": "Время"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Общая средства",
|
||||
"budget": "Бюджет"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Панели",
|
||||
"datasources": "Источники данных",
|
||||
|
@ -861,7 +855,7 @@
|
|||
"romm": {
|
||||
"platforms": "Платформы",
|
||||
"totalRoms": "Игры",
|
||||
"saves": "Сохранения",
|
||||
"saves": "Сейвы",
|
||||
"states": "Состояния",
|
||||
"screenshots": "Скриншоты",
|
||||
"totalfilesize": "Общий объем"
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Уведомления",
|
||||
"issues": "Вопросы",
|
||||
"pulls": "Запросы на слияние (Pull Request)",
|
||||
"repositories": "Репозитории"
|
||||
"pulls": "Запросы на слияние (Pull Request)"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Сцены",
|
||||
|
@ -928,7 +921,7 @@
|
|||
"total": "Всего"
|
||||
},
|
||||
"swagdashboard": {
|
||||
"proxied": "Проксировано",
|
||||
"proxied": "Прокси",
|
||||
"auth": "С Авторизацией",
|
||||
"outdated": "Устаревшие",
|
||||
"banned": "Заблокированные"
|
||||
|
@ -959,17 +952,17 @@
|
|||
"unclassified": "Не классифицировано",
|
||||
"information": "Информация",
|
||||
"warning": "Предупреждение",
|
||||
"average": "Среднее",
|
||||
"average": "Средняя",
|
||||
"high": "Высокая",
|
||||
"disaster": "Чрезвычайное"
|
||||
"disaster": "Чрезвычайная"
|
||||
},
|
||||
"lubelogger": {
|
||||
"vehicle": "Транспорт",
|
||||
"vehicles": "Транспорты",
|
||||
"serviceRecords": "Сервисные записи",
|
||||
"vehicle": "Автомобиль",
|
||||
"vehicles": "Автомобили",
|
||||
"serviceRecords": "Сервисные работы",
|
||||
"reminders": "Напоминания",
|
||||
"nextReminder": "Следующее напоминание",
|
||||
"none": "Отсутствует"
|
||||
"none": "Нет"
|
||||
},
|
||||
"vikunja": {
|
||||
"projects": "Активные Проекты",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Вопросы",
|
||||
"merges": "Мердж-реквесты",
|
||||
"projects": "Проекты"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Статус",
|
||||
"load": "Загрузка",
|
||||
"bcharge": "Заряд батареи",
|
||||
"timeleft": "Осталось"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Закладки",
|
||||
"favorites": "Избранное",
|
||||
"archived": "Архив",
|
||||
"highlights": "События",
|
||||
"lists": "Список",
|
||||
"tags": "Теги"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Сеть",
|
||||
"connected": "Подключено",
|
||||
"disconnected": "Отключено",
|
||||
"updateStatus": "Обновление",
|
||||
"update_yes": "Доступно",
|
||||
"update_no": "Последняя версия",
|
||||
"downloads": "Скачивания",
|
||||
"uploads": "Загрузки",
|
||||
"sharedFiles": "Файлов"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Nahrávanie",
|
||||
"received": "Prijaté",
|
||||
"sent": "Odoslané",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Odosielanie dát",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Pripojené prístupové body",
|
||||
"activeUser": "Aktívne zariadenia",
|
||||
"alerts": "Upozornenia",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Pripojené sieťové brány",
|
||||
"connectedSwitches": "Pripojené prepínače"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Spracované",
|
||||
"time": "Čas"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Panely",
|
||||
"datasources": "Zdroje dát",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Oznámenia",
|
||||
"issues": "Problémy",
|
||||
"pulls": "Pull requesty",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull requesty"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scény",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Problémy",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Stav",
|
||||
"load": "Záťaž",
|
||||
"bcharge": "Nabitie batérie",
|
||||
"timeleft": "Zostávajúci čas"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Štítky"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Sieť",
|
||||
"connected": "Pripojené",
|
||||
"disconnected": "Odpojené",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Dostupné",
|
||||
"update_no": "Aktuálny",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Súborov"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Povezan",
|
||||
"received": "Prejeto",
|
||||
"sent": "Poslano",
|
||||
"externalIPAddress": "Zun. IP",
|
||||
"externalIPv6Address": "Eks. IPv6",
|
||||
"externalIPv6Prefix": "Eks. IPv6-predpona"
|
||||
"externalIPAddress": "Zun. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Pretok gor",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Povezanih AP",
|
||||
"activeUser": "Aktivne naprave",
|
||||
"alerts": "Opozorila",
|
||||
"connectedGateways": "Povezani prehodi",
|
||||
"connectedGateway": "Povezan prehod",
|
||||
"connectedSwitches": "Povezana stikala"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Procesiran",
|
||||
"time": "Čas"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Neto vrednost",
|
||||
"budget": "Proračun"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Nadzorne plošče",
|
||||
"datasources": "Viri podatkov",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Obvestila",
|
||||
"issues": "Težave",
|
||||
"pulls": "Zahteve za prenos",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Zahteve za prenos"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scene",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Težave",
|
||||
"merges": "Združi zahtevke",
|
||||
"projects": "Projekti"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Stanje",
|
||||
"load": "Bremenitev",
|
||||
"bcharge": "Napolnjenost baterije",
|
||||
"timeleft": "Preostali čas"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Značke"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Omrežje",
|
||||
"connected": "Povezan",
|
||||
"disconnected": "Prekinjeno",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Na voljo",
|
||||
"update_no": "Posodobljeno",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Datotek"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Up",
|
||||
"received": "Received",
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Connected APs",
|
||||
"activeUser": "Active devices",
|
||||
"alerts": "Alerts",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Connected gateways",
|
||||
"connectedSwitches": "Connected switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processed",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Status",
|
||||
"load": "Load",
|
||||
"bcharge": "Battery Charge",
|
||||
"timeleft": "Time Left"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Network",
|
||||
"connected": "Connected",
|
||||
"disconnected": "Disconnected",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Available",
|
||||
"update_no": "Up to Date",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Up",
|
||||
"received": "Received",
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Connected APs",
|
||||
"activeUser": "Active devices",
|
||||
"alerts": "Alerts",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Connected gateways",
|
||||
"connectedSwitches": "Connected switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processed",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Status",
|
||||
"load": "Laddar",
|
||||
"bcharge": "Battery Charge",
|
||||
"timeleft": "Tid kvar"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Network",
|
||||
"connected": "Connected",
|
||||
"disconnected": "Disconnected",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Tillgänglig",
|
||||
"update_no": "Up to Date",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Up",
|
||||
"received": "Received",
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Connected APs",
|
||||
"activeUser": "Active devices",
|
||||
"alerts": "Alerts",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Connected gateways",
|
||||
"connectedSwitches": "Connected switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processed",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "హోదా",
|
||||
"load": "లోడ్",
|
||||
"bcharge": "Battery Charge",
|
||||
"timeleft": "మిగిలి వున్న సమయం"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Network",
|
||||
"connected": "Connected",
|
||||
"disconnected": "Disconnected",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "అందుబాటులో వున్నవి",
|
||||
"update_no": "తాజాగా",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Up",
|
||||
"received": "Received",
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Connected APs",
|
||||
"activeUser": "Active devices",
|
||||
"alerts": "Alerts",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Connected gateways",
|
||||
"connectedSwitches": "Connected switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processed",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Issues",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "สถานะ",
|
||||
"load": "โหลด",
|
||||
"bcharge": "Battery Charge",
|
||||
"timeleft": "Time Left"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Network",
|
||||
"connected": "Connected",
|
||||
"disconnected": "Disconnected",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Available",
|
||||
"update_no": "Up to Date",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Yükleme",
|
||||
"received": "Alınan",
|
||||
"sent": "Gönderilen",
|
||||
"externalIPAddress": "Harici IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Harici IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Akış",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Bağlı AP'ler",
|
||||
"activeUser": "Aktif cihazlar",
|
||||
"alerts": "Alarmlar",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Bağlı ağ geçitleri",
|
||||
"connectedSwitches": "Bağlı anahtarlar"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "İşlendi",
|
||||
"time": "Zaman"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Kontrol Paneli",
|
||||
"datasources": "Veri Kaynakları",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Bildirimler",
|
||||
"issues": "Sorunlar",
|
||||
"pulls": "Değişiklik İstekleri",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Değişiklik İstekleri"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Sahneler",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Sorunlar",
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Durum",
|
||||
"load": "Yük",
|
||||
"bcharge": "Pil Yüzdesi",
|
||||
"timeleft": "Kalan Zaman"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Etiketler"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Ağ",
|
||||
"connected": "Bağlandı",
|
||||
"disconnected": "Bağlantı kesildi",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Kullanılabilir",
|
||||
"update_no": "Güncel",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Dosyalar"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -120,7 +120,7 @@
|
|||
"grid_power": "Сітка",
|
||||
"home_power": "Споживання",
|
||||
"charge_power": "Зарядний пристрій",
|
||||
"kilowatt": "кВт"
|
||||
"kilowatt": "kW"
|
||||
},
|
||||
"flood": {
|
||||
"download": "Завантажено",
|
||||
|
@ -148,9 +148,7 @@
|
|||
"up": "Онлайн",
|
||||
"received": "Отримано",
|
||||
"sent": "Надіслано",
|
||||
"externalIPAddress": "Зовнішній IP",
|
||||
"externalIPv6Address": "Зовнішній IPv6",
|
||||
"externalIPv6Prefix": "Зовнішній Префікс IPv6-"
|
||||
"externalIPAddress": "Зовнішній IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Потоки",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Підключені точки доступу",
|
||||
"activeUser": "Активні пристрої",
|
||||
"alerts": "Оповіщення",
|
||||
"connectedGateways": "Підключені шлюзи",
|
||||
"connectedGateway": "Підключені шлюзи",
|
||||
"connectedSwitches": "Підключені перемикачі"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -287,13 +285,13 @@
|
|||
"total": "Усього",
|
||||
"connected": "З'єднано",
|
||||
"new_devices": "Нові пристрої",
|
||||
"down_alerts": "Сповіщення про падіння"
|
||||
"down_alerts": "Спов. про падіння"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Запити",
|
||||
"blocked": "Заблоковано",
|
||||
"blocked_percent": "Заблоковано %",
|
||||
"gravity": "Доменів в списку"
|
||||
"gravity": "Гравітація"
|
||||
},
|
||||
"adguard": {
|
||||
"queries": "Запити",
|
||||
|
@ -420,8 +418,8 @@
|
|||
},
|
||||
"authentik": {
|
||||
"users": "Користувачі",
|
||||
"loginsLast24H": "Вхід (протягом доби)",
|
||||
"failedLoginsLast24H": "Невдалі входи (протягом доби)"
|
||||
"loginsLast24H": "Вхід (24 години)",
|
||||
"failedLoginsLast24H": "Невдалі входи (24 години)"
|
||||
},
|
||||
"proxmox": {
|
||||
"mem": "ОЗП",
|
||||
|
@ -434,7 +432,7 @@
|
|||
"load": "Завантаження",
|
||||
"wait": "Будь ласка, зачекайте",
|
||||
"temp": "Температура",
|
||||
"_temp": "Температура",
|
||||
"_temp": "Темп.",
|
||||
"warn": "Увага",
|
||||
"uptime": "Онлайн",
|
||||
"total": "Усього",
|
||||
|
@ -616,7 +614,7 @@
|
|||
},
|
||||
"opendtu": {
|
||||
"yieldDay": "Сьогодні",
|
||||
"absolutePower": "Потужність",
|
||||
"absolutePower": "Абс. потуж.",
|
||||
"relativePower": "Заряд %",
|
||||
"limit": "Ліміт"
|
||||
},
|
||||
|
@ -648,13 +646,13 @@
|
|||
"wanStatus": "Статус WAN",
|
||||
"up": "Онлайн",
|
||||
"down": "Офлайн",
|
||||
"temp": "Температура",
|
||||
"temp": "Темп.",
|
||||
"disk": "Використання диска",
|
||||
"wanIP": "WAN IP"
|
||||
},
|
||||
"proxmoxbackupserver": {
|
||||
"datastore_usage": "Сховище даних",
|
||||
"failed_tasks_24h": "Невиконані завдання за останню добу",
|
||||
"failed_tasks_24h": "Невиконані завдання 24 години",
|
||||
"cpu_usage": "ЦП",
|
||||
"memory_usage": "Пам'ять"
|
||||
},
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Обробка",
|
||||
"time": "Час"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Чисті Активи",
|
||||
"budget": "Бюджет"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Інформаційні панелі",
|
||||
"datasources": "Джерела даних",
|
||||
|
@ -831,7 +825,7 @@
|
|||
},
|
||||
"openwrt": {
|
||||
"uptime": "Час роботи",
|
||||
"cpuLoad": "Сер. навантаження ЦП (\"5\" хв)",
|
||||
"cpuLoad": "Сер. навантаження ЦП (5 хв)",
|
||||
"up": "Онлайн",
|
||||
"down": "Офлайн",
|
||||
"bytesTx": "Передано",
|
||||
|
@ -855,14 +849,14 @@
|
|||
"inCinemas": "У кінотеатрах",
|
||||
"physicalRelease": "Фізичний реліз",
|
||||
"digitalRelease": "Цифровий реліз",
|
||||
"noEventsToday": "Події на сьогодні відсутні!",
|
||||
"noEventsToday": "Події на сьогодні відсутні",
|
||||
"noEventsFound": "Події не знайдено"
|
||||
},
|
||||
"romm": {
|
||||
"platforms": "Платформи",
|
||||
"totalRoms": "Ігри",
|
||||
"saves": "Збереження",
|
||||
"states": "Стани",
|
||||
"states": "Штати",
|
||||
"screenshots": "Знімки екрану",
|
||||
"totalfilesize": "Загальний обсяг"
|
||||
},
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Сповіщення",
|
||||
"issues": "Питання",
|
||||
"pulls": "Pull-запити",
|
||||
"repositories": "Репозиторії"
|
||||
"pulls": "Pull-запити"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Сцени",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"issues": "Питання",
|
||||
"merges": "Запити на злиття",
|
||||
"projects": "Проєкти"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "Стан",
|
||||
"load": "Завантаження",
|
||||
"bcharge": "Заряд батареї",
|
||||
"timeleft": "Залишилось"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Закладки",
|
||||
"favorites": "Обране",
|
||||
"archived": "Заархівовані",
|
||||
"highlights": "Основні моменти",
|
||||
"lists": "Списки",
|
||||
"tags": "Теги"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Мережа",
|
||||
"connected": "З'єднано",
|
||||
"disconnected": "Відключено",
|
||||
"updateStatus": "Оновити",
|
||||
"update_yes": "Доступно",
|
||||
"update_no": "Актуально",
|
||||
"downloads": "Завантаження",
|
||||
"uploads": "Вивантаження",
|
||||
"sharedFiles": "Файли"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Up",
|
||||
"received": "Received",
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "Ext. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "Connected APs",
|
||||
"activeUser": "Active devices",
|
||||
"alerts": "Alerts",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "Connected gateways",
|
||||
"connectedSwitches": "Connected switches"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "Processed",
|
||||
"time": "Time"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
|
@ -1017,30 +1010,5 @@
|
|||
"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"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "Network",
|
||||
"connected": "Connected",
|
||||
"disconnected": "Disconnected",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "Available",
|
||||
"update_no": "Up to Date",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
"bbytes": "{{value, bytes(binary: true)}}",
|
||||
"bbits": "{{value, bytes(bits: true; binary: true)}}",
|
||||
"byterate": "{{value, rate(bits: false)}}",
|
||||
"bibyterate": "{{value, bytes(bits: true; binary: true)}}",
|
||||
"bibyterate": "{{value, rate(bits: false; binary: true)}}",
|
||||
"bitrate": "{{value, rate(bits: true)}}",
|
||||
"bibitrate": "{{value, bytes(bits: true; binary: true)}}",
|
||||
"bibitrate": "{{value, rate(bits: true; binary: true)}}",
|
||||
"percent": "{{value, percent}}",
|
||||
"number": "{{value, number}}",
|
||||
"ms": "{{value, number}}",
|
||||
|
@ -120,7 +120,7 @@
|
|||
"grid_power": "電網",
|
||||
"home_power": "電源使用率",
|
||||
"charge_power": "充電",
|
||||
"kilowatt": "千瓦"
|
||||
"kilowatt": "kW"
|
||||
},
|
||||
"flood": {
|
||||
"download": "下載速率",
|
||||
|
@ -140,7 +140,7 @@
|
|||
"connectionStatusPendingDisconnect": "待辦的斷開",
|
||||
"connectionStatusDisconnecting": "正在中斷連線",
|
||||
"connectionStatusDisconnected": "連接已中斷",
|
||||
"connectionStatusConnected": "已連線",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "運行時間",
|
||||
"maxDown": "最大下載速率",
|
||||
"maxUp": "最大上傳速率",
|
||||
|
@ -148,9 +148,7 @@
|
|||
"up": "在線",
|
||||
"received": "已接收",
|
||||
"sent": "已送出",
|
||||
"externalIPAddress": "外部 IP",
|
||||
"externalIPv6Address": "外部 IP",
|
||||
"externalIPv6Prefix": "擴展 IPv-前綴"
|
||||
"externalIPAddress": "外部 IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "上行",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "已連接的存取點",
|
||||
"activeUser": "在線裝置",
|
||||
"alerts": "警示",
|
||||
"connectedGateways": "已連繫的網關",
|
||||
"connectedGateway": "已連接的閘道",
|
||||
"connectedSwitches": "已連接的交換器"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -229,8 +227,8 @@
|
|||
"seed": "已完成下載"
|
||||
},
|
||||
"develancacheui": {
|
||||
"cachehitbytes": "快取未命中位元組",
|
||||
"cachemissbytes": "快取未命中位元組"
|
||||
"cachehitbytes": "Cache Hit Bytes",
|
||||
"cachemissbytes": "Cache Miss Bytes"
|
||||
},
|
||||
"downloadstation": {
|
||||
"download": "下載速率",
|
||||
|
@ -285,9 +283,9 @@
|
|||
},
|
||||
"netalertx": {
|
||||
"total": "全部",
|
||||
"connected": "已連線",
|
||||
"new_devices": "新裝置",
|
||||
"down_alerts": "離線警告"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "查詢",
|
||||
|
@ -313,13 +311,13 @@
|
|||
},
|
||||
"suwayomi": {
|
||||
"download": "下載咗",
|
||||
"nondownload": "已下載",
|
||||
"nondownload": "Non-Downloaded",
|
||||
"read": "已讀",
|
||||
"unread": "未讀",
|
||||
"downloadedread": "已下載且已閱讀",
|
||||
"downloadedunread": "已下載且未閱讀",
|
||||
"nondownloadedread": "未下載但已閱讀",
|
||||
"nondownloadedunread": "未下載且未閱讀"
|
||||
"downloadedread": "Downloaded & Read",
|
||||
"downloadedunread": "Downloaded & Unread",
|
||||
"nondownloadedread": "Non-Downloaded & Read",
|
||||
"nondownloadedunread": "Non-Downloaded & Unread"
|
||||
},
|
||||
"tailscale": {
|
||||
"address": "位址",
|
||||
|
@ -337,15 +335,15 @@
|
|||
},
|
||||
"technitium": {
|
||||
"totalQueries": "查詢",
|
||||
"totalNoError": "成功",
|
||||
"totalServerFailure": "失敗",
|
||||
"totalNxDomain": "網域",
|
||||
"totalRefused": "對方拒投誠信",
|
||||
"totalAuthoritative": "權威的",
|
||||
"totalRecursive": "遞迴",
|
||||
"totalCached": "快取",
|
||||
"totalNoError": "Success",
|
||||
"totalServerFailure": "Failures",
|
||||
"totalNxDomain": "NX Domains",
|
||||
"totalRefused": "Refused",
|
||||
"totalAuthoritative": "Authoritative",
|
||||
"totalRecursive": "Recursive",
|
||||
"totalCached": "Cached",
|
||||
"totalBlocked": "封鎖",
|
||||
"totalDropped": "丟棄",
|
||||
"totalDropped": "Dropped",
|
||||
"totalClients": "客戶端"
|
||||
},
|
||||
"tdarr": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "已處理",
|
||||
"time": "時間"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "淨值",
|
||||
"budget": "預算"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "控制面板",
|
||||
"datasources": "數據來源",
|
||||
|
@ -860,16 +854,16 @@
|
|||
},
|
||||
"romm": {
|
||||
"platforms": "平台",
|
||||
"totalRoms": "遊戲",
|
||||
"saves": "已儲存",
|
||||
"states": "州",
|
||||
"screenshots": "螢幕截圖",
|
||||
"totalfilesize": "大小總計"
|
||||
"totalRoms": "Games",
|
||||
"saves": "Saves",
|
||||
"states": "States",
|
||||
"screenshots": "Screenshots",
|
||||
"totalfilesize": "Total Size"
|
||||
},
|
||||
"mailcow": {
|
||||
"domains": "域",
|
||||
"mailboxes": "信箱",
|
||||
"mails": "郵件數",
|
||||
"mailboxes": "Mailboxes",
|
||||
"mails": "Mails",
|
||||
"storage": "儲存空間"
|
||||
},
|
||||
"netdata": {
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "信息",
|
||||
"issues": "出版",
|
||||
"pulls": "提取請求",
|
||||
"repositories": "套件來源"
|
||||
"pulls": "提取請求"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "場景",
|
||||
|
@ -922,16 +915,16 @@
|
|||
"bans": "禁止"
|
||||
},
|
||||
"wgeasy": {
|
||||
"connected": "已連線",
|
||||
"connected": "Connected",
|
||||
"enabled": "啟用",
|
||||
"disabled": "停用咗",
|
||||
"total": "全部"
|
||||
},
|
||||
"swagdashboard": {
|
||||
"proxied": "已代理",
|
||||
"auth": "已授權",
|
||||
"outdated": "須更新",
|
||||
"banned": "已封鎖"
|
||||
"proxied": "Proxied",
|
||||
"auth": "With Auth",
|
||||
"outdated": "Outdated",
|
||||
"banned": "Banned"
|
||||
},
|
||||
"myspeed": {
|
||||
"ping": "延遲",
|
||||
|
@ -939,43 +932,43 @@
|
|||
"upload": "上傳速率"
|
||||
},
|
||||
"stocks": {
|
||||
"stocks": "股票",
|
||||
"loading": "載入中 ",
|
||||
"open": "美國市場已開放",
|
||||
"closed": "美國市場已關閉",
|
||||
"invalidConfiguration": "無效的設定"
|
||||
"stocks": "Stocks",
|
||||
"loading": "Loading",
|
||||
"open": "Open - US Market",
|
||||
"closed": "Closed - US Market",
|
||||
"invalidConfiguration": "Invalid Configuration"
|
||||
},
|
||||
"frigate": {
|
||||
"cameras": " ",
|
||||
"cameras": "Cameras",
|
||||
"uptime": "運行時間",
|
||||
"version": "版本"
|
||||
},
|
||||
"linkwarden": {
|
||||
"links": " ",
|
||||
"collections": "收藏庫",
|
||||
"links": "Links",
|
||||
"collections": "Collections",
|
||||
"tags": "標籤"
|
||||
},
|
||||
"zabbix": {
|
||||
"unclassified": "未分類",
|
||||
"unclassified": "Not classified",
|
||||
"information": "資訊",
|
||||
"warning": "警告",
|
||||
"average": "平均",
|
||||
"high": "高優先權",
|
||||
"disaster": "災難"
|
||||
"warning": "Warning",
|
||||
"average": "Average",
|
||||
"high": "High",
|
||||
"disaster": "Disaster"
|
||||
},
|
||||
"lubelogger": {
|
||||
"vehicle": "車輛",
|
||||
"vehicles": "車輛",
|
||||
"serviceRecords": "保養記錄",
|
||||
"reminders": "提醒",
|
||||
"nextReminder": "下一個提醒",
|
||||
"none": "沒有"
|
||||
"vehicle": "Vehicle",
|
||||
"vehicles": "Vehicles",
|
||||
"serviceRecords": "Service Records",
|
||||
"reminders": "Reminders",
|
||||
"nextReminder": "Next Reminder",
|
||||
"none": "None"
|
||||
},
|
||||
"vikunja": {
|
||||
"projects": "正在應用的項目",
|
||||
"tasks7d": "本週到期任務",
|
||||
"tasksOverdue": "逾期處理",
|
||||
"tasksInProgress": "正在執行的任務"
|
||||
"projects": "Active Projects",
|
||||
"tasks7d": "Tasks Due This Week",
|
||||
"tasksOverdue": "Overdue Tasks",
|
||||
"tasksInProgress": "Tasks In Progress"
|
||||
},
|
||||
"headscale": {
|
||||
"name": "名稱",
|
||||
|
@ -987,7 +980,7 @@
|
|||
},
|
||||
"beszel": {
|
||||
"name": "名稱",
|
||||
"systems": "系統",
|
||||
"systems": "Systems",
|
||||
"up": "在線",
|
||||
"down": "離線",
|
||||
"paused": "擱置中",
|
||||
|
@ -996,51 +989,26 @@
|
|||
"updated": "已更新",
|
||||
"cpu": "CPU",
|
||||
"memory": "記憶體",
|
||||
"disk": "儲存空間",
|
||||
"network": "網路"
|
||||
"disk": "Disk",
|
||||
"network": "NET"
|
||||
},
|
||||
"argocd": {
|
||||
"apps": "應用程式",
|
||||
"synced": "已同步",
|
||||
"outOfSync": "不同步",
|
||||
"apps": "Apps",
|
||||
"synced": "Synced",
|
||||
"outOfSync": "Out Of Sync",
|
||||
"healthy": "健康",
|
||||
"degraded": "已降級",
|
||||
"progressing": "進度",
|
||||
"degraded": "Degraded",
|
||||
"progressing": "Progressing",
|
||||
"missing": "缺少",
|
||||
"suspended": "暫停"
|
||||
"suspended": "Suspended"
|
||||
},
|
||||
"spoolman": {
|
||||
"loading": "載入中 "
|
||||
"loading": "Loading"
|
||||
},
|
||||
"gitlab": {
|
||||
"groups": "群組",
|
||||
"groups": "Groups",
|
||||
"issues": "出版",
|
||||
"merges": "合併請求",
|
||||
"projects": "專"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "狀況",
|
||||
"load": "負荷",
|
||||
"bcharge": "充電",
|
||||
"timeleft": "用時"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "書籤",
|
||||
"favorites": "我的最愛",
|
||||
"archived": "已存檔",
|
||||
"highlights": "標記",
|
||||
"lists": "列表",
|
||||
"tags": "標籤"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "網絡",
|
||||
"connected": "已連線",
|
||||
"disconnected": "連接已中斷",
|
||||
"updateStatus": "更新",
|
||||
"update_yes": "可用",
|
||||
"update_no": "已更新至最新",
|
||||
"downloads": "下載",
|
||||
"uploads": "上傳",
|
||||
"sharedFiles": "檔案"
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -148,9 +148,7 @@
|
|||
"up": "Up",
|
||||
"received": "已接收",
|
||||
"sent": "已发送",
|
||||
"externalIPAddress": "外部IP",
|
||||
"externalIPv6Address": "Ext. IPv6",
|
||||
"externalIPv6Prefix": "Ext. IPv6-Prefix"
|
||||
"externalIPAddress": "外部IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "上游",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "连接中的AP",
|
||||
"activeUser": "活跃设备",
|
||||
"alerts": "警报",
|
||||
"connectedGateways": "Connected gateways",
|
||||
"connectedGateway": "已连接网关",
|
||||
"connectedSwitches": "已连接开关"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -313,13 +311,13 @@
|
|||
},
|
||||
"suwayomi": {
|
||||
"download": "下载",
|
||||
"nondownload": "未下载",
|
||||
"nondownload": "Non-Downloaded",
|
||||
"read": "已读",
|
||||
"unread": "未读",
|
||||
"downloadedread": "已下载 & 已读",
|
||||
"downloadedunread": "已下载 & 未读",
|
||||
"nondownloadedread": "未下载 & 已读",
|
||||
"nondownloadedunread": "未下载 & 未读"
|
||||
"downloadedread": "Downloaded & Read",
|
||||
"downloadedunread": "Downloaded & Unread",
|
||||
"nondownloadedread": "Non-Downloaded & Read",
|
||||
"nondownloadedunread": "Non-Downloaded & Unread"
|
||||
},
|
||||
"tailscale": {
|
||||
"address": "地址",
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "已处理",
|
||||
"time": "时间"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "Net Worth",
|
||||
"budget": "Budget"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "控制面板",
|
||||
"datasources": "数据来源",
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "通知",
|
||||
"issues": "问题",
|
||||
"pulls": "PR",
|
||||
"repositories": "Repositories"
|
||||
"pulls": "PR"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "场景",
|
||||
|
@ -987,7 +980,7 @@
|
|||
},
|
||||
"beszel": {
|
||||
"name": "Name",
|
||||
"systems": "系统",
|
||||
"systems": "Systems",
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"paused": "暂停",
|
||||
|
@ -996,51 +989,26 @@
|
|||
"updated": "已升级",
|
||||
"cpu": "CPU",
|
||||
"memory": "内存",
|
||||
"disk": "磁盘",
|
||||
"network": "网络"
|
||||
"disk": "Disk",
|
||||
"network": "NET"
|
||||
},
|
||||
"argocd": {
|
||||
"apps": "应用程序",
|
||||
"synced": "已同步",
|
||||
"outOfSync": "未同步",
|
||||
"synced": "Synced",
|
||||
"outOfSync": "Out Of Sync",
|
||||
"healthy": "健康",
|
||||
"degraded": "已降级",
|
||||
"progressing": "进行中",
|
||||
"degraded": "Degraded",
|
||||
"progressing": "Progressing",
|
||||
"missing": "丢失",
|
||||
"suspended": "已停用"
|
||||
"suspended": "Suspended"
|
||||
},
|
||||
"spoolman": {
|
||||
"loading": "正在加载"
|
||||
},
|
||||
"gitlab": {
|
||||
"groups": "群组",
|
||||
"groups": "Groups",
|
||||
"issues": "问题",
|
||||
"merges": "合并请求",
|
||||
"projects": "项目"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "状态",
|
||||
"load": "负载",
|
||||
"bcharge": "充电中",
|
||||
"timeleft": "剩余时间"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "Bookmarks",
|
||||
"favorites": "Favorites",
|
||||
"archived": "Archived",
|
||||
"highlights": "Highlights",
|
||||
"lists": "Lists",
|
||||
"tags": "Tags"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "网络",
|
||||
"connected": "已连接",
|
||||
"disconnected": "未连接",
|
||||
"updateStatus": "Update",
|
||||
"update_yes": "可用",
|
||||
"update_no": "Up to Date",
|
||||
"downloads": "Downloads",
|
||||
"uploads": "Uploads",
|
||||
"sharedFiles": "Files"
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
"bbytes": "{{value, bytes(binary: true)}}",
|
||||
"bbits": "{{value, bytes(bits: true; binary: true)}}",
|
||||
"byterate": "{{value, rate(bits: false)}}",
|
||||
"bibyterate": "{{value, bytes(bits: true; binary: true)}}",
|
||||
"bibyterate": "{{value, rate(bits: false; binary: true)}}",
|
||||
"bitrate": "{{value, rate(bits: true)}}",
|
||||
"bibitrate": "{{value, bytes(bits: true; binary: true)}}",
|
||||
"bibitrate": "{{value, rate(bits: true; binary: true)}}",
|
||||
"percent": "{{value, percent}}",
|
||||
"number": "{{value, number}}",
|
||||
"ms": "{{value, number}}",
|
||||
|
@ -120,7 +120,7 @@
|
|||
"grid_power": "電網",
|
||||
"home_power": "電源使用率",
|
||||
"charge_power": "充電",
|
||||
"kilowatt": "千瓦"
|
||||
"kilowatt": "kW"
|
||||
},
|
||||
"flood": {
|
||||
"download": "下載速率",
|
||||
|
@ -140,7 +140,7 @@
|
|||
"connectionStatusPendingDisconnect": "待辦的斷開",
|
||||
"connectionStatusDisconnecting": "正在中斷連線",
|
||||
"connectionStatusDisconnected": "連接已中斷",
|
||||
"connectionStatusConnected": "已連線",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "運行時間",
|
||||
"maxDown": "最大下載速率",
|
||||
"maxUp": "最大上傳速率",
|
||||
|
@ -148,9 +148,7 @@
|
|||
"up": "在線",
|
||||
"received": "已接收",
|
||||
"sent": "已送出",
|
||||
"externalIPAddress": "外部 IP",
|
||||
"externalIPv6Address": "外部 IP",
|
||||
"externalIPv6Prefix": "擴展 IPv-前綴"
|
||||
"externalIPAddress": "外部 IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "上行",
|
||||
|
@ -178,7 +176,7 @@
|
|||
"connectedAp": "已連接的存取點",
|
||||
"activeUser": "在線裝置",
|
||||
"alerts": "警示",
|
||||
"connectedGateways": "已連繫的網關",
|
||||
"connectedGateway": "已連接的閘道",
|
||||
"connectedSwitches": "已連接的交換器"
|
||||
},
|
||||
"nzbget": {
|
||||
|
@ -229,8 +227,8 @@
|
|||
"seed": "已完成下載"
|
||||
},
|
||||
"develancacheui": {
|
||||
"cachehitbytes": "快取未命中位元組",
|
||||
"cachemissbytes": "快取未命中位元組"
|
||||
"cachehitbytes": "Cache Hit Bytes",
|
||||
"cachemissbytes": "Cache Miss Bytes"
|
||||
},
|
||||
"downloadstation": {
|
||||
"download": "下載速率",
|
||||
|
@ -285,9 +283,9 @@
|
|||
},
|
||||
"netalertx": {
|
||||
"total": "全部",
|
||||
"connected": "已連線",
|
||||
"new_devices": "新裝置",
|
||||
"down_alerts": "離線警告"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "查詢",
|
||||
|
@ -313,13 +311,13 @@
|
|||
},
|
||||
"suwayomi": {
|
||||
"download": "已下載",
|
||||
"nondownload": "已下載",
|
||||
"nondownload": "Non-Downloaded",
|
||||
"read": "已讀",
|
||||
"unread": "未讀",
|
||||
"downloadedread": "已下載且已閱讀",
|
||||
"downloadedunread": "已下載且未閱讀",
|
||||
"nondownloadedread": "未下載但已閱讀",
|
||||
"nondownloadedunread": "未下載且未閱讀"
|
||||
"downloadedread": "Downloaded & Read",
|
||||
"downloadedunread": "Downloaded & Unread",
|
||||
"nondownloadedread": "Non-Downloaded & Read",
|
||||
"nondownloadedunread": "Non-Downloaded & Unread"
|
||||
},
|
||||
"tailscale": {
|
||||
"address": "位址",
|
||||
|
@ -337,15 +335,15 @@
|
|||
},
|
||||
"technitium": {
|
||||
"totalQueries": "查詢",
|
||||
"totalNoError": "成功",
|
||||
"totalServerFailure": "失敗",
|
||||
"totalNxDomain": "網域",
|
||||
"totalRefused": "對方拒投誠信",
|
||||
"totalAuthoritative": "權威的",
|
||||
"totalRecursive": "遞迴",
|
||||
"totalCached": "快取",
|
||||
"totalNoError": "Success",
|
||||
"totalServerFailure": "Failures",
|
||||
"totalNxDomain": "NX Domains",
|
||||
"totalRefused": "Refused",
|
||||
"totalAuthoritative": "Authoritative",
|
||||
"totalRecursive": "Recursive",
|
||||
"totalCached": "Cached",
|
||||
"totalBlocked": "已阻擋",
|
||||
"totalDropped": "丟棄",
|
||||
"totalDropped": "Dropped",
|
||||
"totalClients": "客戶端"
|
||||
},
|
||||
"tdarr": {
|
||||
|
@ -704,10 +702,6 @@
|
|||
"processed": "已處理",
|
||||
"time": "時間"
|
||||
},
|
||||
"firefly": {
|
||||
"networth": "淨值",
|
||||
"budget": "預算"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "控制面板",
|
||||
"datasources": "數據來源",
|
||||
|
@ -860,16 +854,16 @@
|
|||
},
|
||||
"romm": {
|
||||
"platforms": "平台",
|
||||
"totalRoms": "遊戲",
|
||||
"saves": "已儲存",
|
||||
"states": "州",
|
||||
"screenshots": "螢幕截圖",
|
||||
"totalfilesize": "大小總計"
|
||||
"totalRoms": "Games",
|
||||
"saves": "Saves",
|
||||
"states": "States",
|
||||
"screenshots": "Screenshots",
|
||||
"totalfilesize": "Total Size"
|
||||
},
|
||||
"mailcow": {
|
||||
"domains": "網域",
|
||||
"mailboxes": "信箱",
|
||||
"mails": "郵件數",
|
||||
"mailboxes": "Mailboxes",
|
||||
"mails": "Mails",
|
||||
"storage": "儲存空間"
|
||||
},
|
||||
"netdata": {
|
||||
|
@ -885,8 +879,7 @@
|
|||
"gitea": {
|
||||
"notifications": "信息",
|
||||
"issues": "出版",
|
||||
"pulls": "提取請求",
|
||||
"repositories": "套件來源"
|
||||
"pulls": "提取請求"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "場景",
|
||||
|
@ -922,16 +915,16 @@
|
|||
"bans": "禁止"
|
||||
},
|
||||
"wgeasy": {
|
||||
"connected": "已連線",
|
||||
"connected": "Connected",
|
||||
"enabled": "已啟用",
|
||||
"disabled": "已停用",
|
||||
"total": "全部"
|
||||
},
|
||||
"swagdashboard": {
|
||||
"proxied": "已代理",
|
||||
"auth": "已授權",
|
||||
"outdated": "須更新",
|
||||
"banned": "已封鎖"
|
||||
"proxied": "Proxied",
|
||||
"auth": "With Auth",
|
||||
"outdated": "Outdated",
|
||||
"banned": "Banned"
|
||||
},
|
||||
"myspeed": {
|
||||
"ping": "延遲",
|
||||
|
@ -939,43 +932,43 @@
|
|||
"upload": "上傳速率"
|
||||
},
|
||||
"stocks": {
|
||||
"stocks": "股票",
|
||||
"loading": "載入中 ",
|
||||
"open": "美國市場已開放",
|
||||
"closed": "美國市場已關閉",
|
||||
"invalidConfiguration": "無效的設定"
|
||||
"stocks": "Stocks",
|
||||
"loading": "Loading",
|
||||
"open": "Open - US Market",
|
||||
"closed": "Closed - US Market",
|
||||
"invalidConfiguration": "Invalid Configuration"
|
||||
},
|
||||
"frigate": {
|
||||
"cameras": " ",
|
||||
"cameras": "Cameras",
|
||||
"uptime": "運行時間",
|
||||
"version": "版本"
|
||||
},
|
||||
"linkwarden": {
|
||||
"links": " ",
|
||||
"collections": "收藏庫",
|
||||
"links": "Links",
|
||||
"collections": "Collections",
|
||||
"tags": "標籤"
|
||||
},
|
||||
"zabbix": {
|
||||
"unclassified": "未分類",
|
||||
"unclassified": "Not classified",
|
||||
"information": "資訊",
|
||||
"warning": "警告",
|
||||
"average": "平均",
|
||||
"high": "高優先權",
|
||||
"disaster": "災難"
|
||||
"warning": "Warning",
|
||||
"average": "Average",
|
||||
"high": "High",
|
||||
"disaster": "Disaster"
|
||||
},
|
||||
"lubelogger": {
|
||||
"vehicle": "車輛",
|
||||
"vehicles": "車輛",
|
||||
"serviceRecords": "保養記錄",
|
||||
"reminders": "提醒",
|
||||
"nextReminder": "下一個提醒",
|
||||
"none": "沒有"
|
||||
"vehicle": "Vehicle",
|
||||
"vehicles": "Vehicles",
|
||||
"serviceRecords": "Service Records",
|
||||
"reminders": "Reminders",
|
||||
"nextReminder": "Next Reminder",
|
||||
"none": "None"
|
||||
},
|
||||
"vikunja": {
|
||||
"projects": "正在應用的項目",
|
||||
"tasks7d": "本週到期任務",
|
||||
"tasksOverdue": "逾期處理",
|
||||
"tasksInProgress": "正在執行的任務"
|
||||
"projects": "Active Projects",
|
||||
"tasks7d": "Tasks Due This Week",
|
||||
"tasksOverdue": "Overdue Tasks",
|
||||
"tasksInProgress": "Tasks In Progress"
|
||||
},
|
||||
"headscale": {
|
||||
"name": "名稱",
|
||||
|
@ -987,7 +980,7 @@
|
|||
},
|
||||
"beszel": {
|
||||
"name": "名稱",
|
||||
"systems": "系統",
|
||||
"systems": "Systems",
|
||||
"up": "在線",
|
||||
"down": "離線",
|
||||
"paused": "擱置中",
|
||||
|
@ -996,51 +989,26 @@
|
|||
"updated": "已更新",
|
||||
"cpu": "CPU",
|
||||
"memory": "記憶體",
|
||||
"disk": "儲存空間",
|
||||
"network": "網路"
|
||||
"disk": "Disk",
|
||||
"network": "NET"
|
||||
},
|
||||
"argocd": {
|
||||
"apps": "應用程式",
|
||||
"synced": "已同步",
|
||||
"outOfSync": "不同步",
|
||||
"apps": "Apps",
|
||||
"synced": "Synced",
|
||||
"outOfSync": "Out Of Sync",
|
||||
"healthy": "健康",
|
||||
"degraded": "已降級",
|
||||
"progressing": "進度",
|
||||
"degraded": "Degraded",
|
||||
"progressing": "Progressing",
|
||||
"missing": "缺少",
|
||||
"suspended": "暫停"
|
||||
"suspended": "Suspended"
|
||||
},
|
||||
"spoolman": {
|
||||
"loading": "載入中 "
|
||||
"loading": "Loading"
|
||||
},
|
||||
"gitlab": {
|
||||
"groups": "群組",
|
||||
"groups": "Groups",
|
||||
"issues": "出版",
|
||||
"merges": "合併請求",
|
||||
"projects": "專"
|
||||
},
|
||||
"apcups": {
|
||||
"status": "狀態",
|
||||
"load": "負載",
|
||||
"bcharge": "充電",
|
||||
"timeleft": "剩餘時間"
|
||||
},
|
||||
"karakeep": {
|
||||
"bookmarks": "書籤",
|
||||
"favorites": "我的最愛",
|
||||
"archived": "已存檔",
|
||||
"highlights": "標記",
|
||||
"lists": "列表",
|
||||
"tags": "標籤"
|
||||
},
|
||||
"slskd": {
|
||||
"slskStatus": "網絡",
|
||||
"connected": "已連線",
|
||||
"disconnected": "連接已中斷",
|
||||
"updateStatus": "更新",
|
||||
"update_yes": "可觀看",
|
||||
"update_no": "已更新至最新",
|
||||
"downloads": "下載",
|
||||
"uploads": "上傳",
|
||||
"sharedFiles": "檔案"
|
||||
"merges": "Merge Requests",
|
||||
"projects": "Projects"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
import { Disclosure, Transition } from "@headlessui/react";
|
||||
import { useRef, useEffect } from "react";
|
||||
import classNames from "classnames";
|
||||
import List from "components/bookmarks/list";
|
||||
import ErrorBoundary from "components/errorboundry";
|
||||
import ResolvedIcon from "components/resolvedicon";
|
||||
import { useEffect, useRef } from "react";
|
||||
import { Disclosure, Transition } from "@headlessui/react";
|
||||
import { MdKeyboardArrowDown } from "react-icons/md";
|
||||
|
||||
import ErrorBoundary from "components/errorboundry";
|
||||
import List from "components/bookmarks/list";
|
||||
import ResolvedIcon from "components/resolvedicon";
|
||||
|
||||
export default function BookmarksGroup({
|
||||
bookmarks,
|
||||
layout,
|
||||
disableCollapse,
|
||||
groupsInitiallyCollapsed,
|
||||
bookmarksStyle,
|
||||
maxGroupColumns,
|
||||
}) {
|
||||
const panel = useRef();
|
||||
|
||||
|
@ -26,9 +26,6 @@ export default function BookmarksGroup({
|
|||
className={classNames(
|
||||
"bookmark-group flex-1 overflow-hidden",
|
||||
layout?.style === "row" ? "basis-full" : "basis-full md:basis-1/4 lg:basis-1/5 xl:basis-1/6",
|
||||
layout?.style !== "row" && maxGroupColumns && parseInt(maxGroupColumns, 10) > 6
|
||||
? `3xl:basis-1/${maxGroupColumns}`
|
||||
: "",
|
||||
layout?.header === false ? "px-1" : "p-1 pb-0",
|
||||
)}
|
||||
>
|
||||
|
@ -38,7 +35,7 @@ export default function BookmarksGroup({
|
|||
{layout?.header !== false && (
|
||||
<Disclosure.Button disabled={disableCollapse} className="flex w-full select-none items-center group">
|
||||
{layout?.icon && (
|
||||
<div className="shrink-0 mr-2 w-7 h-7 bookmark-group-icon">
|
||||
<div className="flex-shrink-0 mr-2 w-7 h-7 bookmark-group-icon">
|
||||
<ResolvedIcon icon={layout.icon} />
|
||||
</div>
|
||||
)}
|
||||
|
@ -56,7 +53,7 @@ export default function BookmarksGroup({
|
|||
)}
|
||||
<Transition
|
||||
// Otherwise the transition group does display: none and cancels animation
|
||||
className="block!"
|
||||
className="!block"
|
||||
unmount={false}
|
||||
beforeLeave={() => {
|
||||
panel.current.style.height = `${panel.current.scrollHeight}px`;
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
import classNames from "classnames";
|
||||
import ResolvedIcon from "components/resolvedicon";
|
||||
import { useContext } from "react";
|
||||
import classNames from "classnames";
|
||||
|
||||
import { SettingsContext } from "utils/contexts/settings";
|
||||
import ResolvedIcon from "components/resolvedicon";
|
||||
|
||||
export default function Item({ bookmark, iconOnly = false }) {
|
||||
const description = bookmark.description ?? new URL(bookmark.href).hostname;
|
||||
|
@ -22,7 +23,7 @@ export default function Item({ bookmark, iconOnly = false }) {
|
|||
className={classNames(
|
||||
settings.cardBlur !== undefined && `backdrop-blur${settings.cardBlur.length ? "-" : ""}${settings.cardBlur}`,
|
||||
"text-left cursor-pointer transition-all rounded-md font-medium text-theme-700 dark:text-theme-200 dark:hover:text-theme-300 shadow-md shadow-theme-900/10 dark:shadow-theme-900/20 bg-theme-100/20 hover:bg-theme-300/20 dark:bg-white/5 dark:hover:bg-white/10",
|
||||
iconOnly ? "h-[60px] w-[60px] grid" : "block w-full mb-3",
|
||||
iconOnly ? "h-[60px] w-[60px] grid" : "block w-full h-15 mb-3",
|
||||
)}
|
||||
>
|
||||
{iconOnly ? (
|
||||
|
@ -36,9 +37,9 @@ export default function Item({ bookmark, iconOnly = false }) {
|
|||
</div>
|
||||
) : (
|
||||
<div className="flex">
|
||||
<div className="shrink-0 flex items-center justify-center w-11 bg-theme-500/10 dark:bg-theme-900/50 text-theme-700 hover:text-theme-700 dark:text-theme-200 text-sm font-medium rounded-l-md bookmark-icon">
|
||||
<div className="flex-shrink-0 flex items-center justify-center w-11 bg-theme-500/10 dark:bg-theme-900/50 text-theme-700 hover:text-theme-700 dark:text-theme-200 text-sm font-medium rounded-l-md bookmark-icon">
|
||||
{bookmark.icon && (
|
||||
<div className="shrink-0 w-5 h-5">
|
||||
<div className="flex-shrink-0 w-5 h-5">
|
||||
<ResolvedIcon icon={bookmark.icon} alt={bookmark.abbr} />
|
||||
</div>
|
||||
)}
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
import classNames from "classnames";
|
||||
import Item from "components/bookmarks/item";
|
||||
|
||||
import { columnMap } from "../../utils/layout/columns";
|
||||
|
||||
import Item from "components/bookmarks/item";
|
||||
|
||||
export default function List({ bookmarks, layout, bookmarksStyle }) {
|
||||
let classes = layout?.style === "row" ? `grid ${columnMap[layout?.columns]} gap-x-2` : "flex flex-col bookmark-list";
|
||||
const style = {};
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue