Merge branch 'dev' into feature/next-14
Some checks failed
Docker / Linting Checks (push) Has been cancelled
Docker / Docker Build & Push (push) Has been cancelled

This commit is contained in:
shamoon
2024-11-24 10:44:49 -08:00
215 changed files with 13540 additions and 5081 deletions

View File

@@ -13,6 +13,12 @@
{ {
"newlines-between": "always" "newlines-between": "always"
} }
],
"no-else-return": [
"error",
{
"allowElseIf": true
}
] ]
}, },
"settings": { "settings": {

View File

@@ -1,4 +1,11 @@
body: body:
- type: markdown
attributes:
value: |
### ⚠️ Before opening a discussion:
- [Check the troubleshooting guide](https://gethomepage.dev/troubleshooting/).
- [Search existing issues](https://github.com/gethomepage/homepage/search?q=&type=issues) [and discussions](https://github.com/gethomepage/homepage/search?q=&type=discussions) (including closed ones!).
- type: textarea - type: textarea
id: description id: description
attributes: attributes:
@@ -44,6 +51,6 @@ body:
id: troubleshooting id: troubleshooting
attributes: attributes:
label: Troubleshooting label: Troubleshooting
description: Please include output from your [troubleshooting tests](https://gethomepage.dev/latest/more/troubleshooting/#service-widget-errors), if relevant. description: Please include output from your [troubleshooting tests](https://gethomepage.dev/more/troubleshooting/#service-widget-errors), if relevant.
validations: validations:
required: true required: true

View File

@@ -13,7 +13,7 @@ body:
attributes: attributes:
label: Before submitting, please confirm the following label: Before submitting, please confirm the following
options: options:
- label: I confirm this was discussed, and the maintainers suggest I open an issue (note that AI bots are not maintainers). - label: I confirm this was discussed, and the maintainers asked that I open an issue.
required: true required: true
- label: I am aware that if I create this issue without a discussion, it will be removed without a response. - label: I am aware that if I create this issue without a discussion, it will be removed without a response.
required: true required: true

View File

@@ -3,7 +3,7 @@
<!-- <!--
Please include a summary of the change. Screenshots and/or videos can also be helpful if appropriate. Please include a summary of the change. Screenshots and/or videos can also be helpful if appropriate.
*** Please see the development guidelines for new widgets: https://gethomepage.dev/latest/more/development/#service-widget-guidelines *** 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. *** If you do not follow these guidelines your PR will likely be closed without review.
New service widgets should include example(s) of relevant API output as well as updates to the docs for the new widget. New service widgets should include example(s) of relevant API output as well as updates to the docs for the new widget.
@@ -26,6 +26,6 @@ What type of change does your PR introduce to Homepage?
## Checklist: ## Checklist:
- [ ] If applicable, I have added corresponding documentation changes. - [ ] If applicable, I have added corresponding documentation changes.
- [ ] If applicable, I have reviewed the [feature](https://gethomepage.dev/latest/more/development/#new-feature-guidelines) and / or [service widget guidelines](https://gethomepage.dev/latest/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/latest/more/development/#code-formatting-with-pre-commit-hooks) and [linting checks](https://gethomepage.dev/latest/more/development/#code-linting). - [ ] I have checked that all code style checks pass using [pre-commit hooks](https://gethomepage.dev/more/development/#code-formatting-with-pre-commit-hooks) and [linting checks](https://gethomepage.dev/more/development/#code-linting).
- [ ] If applicable, I have tested my code for new features & regressions on both mobile & desktop devices, using the latest version of major browsers. - [ ] If applicable, I have tested my code for new features & regressions on both mobile & desktop devices, using the latest version of major browsers.

View File

@@ -8,7 +8,7 @@ on:
paths: [ paths: [
'/public/locales/en/**', '/public/locales/en/**',
] ]
branches: [ main ] branches: [ dev ]
jobs: jobs:
synchronize-with-crowdin: synchronize-with-crowdin:
@@ -23,8 +23,8 @@ jobs:
with: with:
upload_translations: false upload_translations: false
download_translations: true download_translations: true
crowdin_branch_name: main crowdin_branch_name: dev
localization_branch_name: l10n_main localization_branch_name: l10n_dev
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}

View File

@@ -12,21 +12,20 @@ on:
branches: branches:
- main - main
- feature/** - feature/**
- dev
# Publish semver tags as releases. # Publish semver tags as releases.
tags: [ 'v*.*.*' ] tags: [ 'v*.*.*' ]
paths-ignore: paths-ignore:
- 'docs/**' - 'docs/**'
- 'mkdocs.yml' - 'mkdocs.yml'
pull_request: pull_request:
branches: [ "main" ] branches: [ "dev" ]
paths-ignore: paths-ignore:
- 'docs/**' - 'docs/**'
- 'mkdocs.yml' - 'mkdocs.yml'
merge_group: merge_group:
env: env:
# Use docker.io for Docker Hub if empty
REGISTRY: ghcr.io
# github.repository as <account>/<repo> # github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }} IMAGE_NAME: ${{ github.repository }}
@@ -65,14 +64,6 @@ jobs:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
# Install the cosign tool except on PR
# https://github.com/sigstore/cosign-installer
- name: Install cosign
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@main
with:
cosign-release: 'v1.13.1' # optional
# Setup QEMU # Setup QEMU
# https://github.com/marketplace/actions/docker-setup-buildx#with-qemu # https://github.com/marketplace/actions/docker-setup-buildx#with-qemu
- name: Setup QEMU - name: Setup QEMU
@@ -98,9 +89,15 @@ jobs:
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: ${{ env.REGISTRY }} registry: ghcr.io
username: ${{ github.actor }} username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }} password: ${{ secrets.GITHUB_TOKEN }}
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
# Extract metadata (tags, labels) for Docker # Extract metadata (tags, labels) for Docker
# https://github.com/docker/metadata-action # https://github.com/docker/metadata-action
@@ -108,7 +105,9 @@ jobs:
id: meta id: meta
uses: docker/metadata-action@v5 uses: docker/metadata-action@v5
with: with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} images: |
${{ env.IMAGE_NAME }}
ghcr.io/${{ env.IMAGE_NAME }}
flavor: | flavor: |
latest=auto latest=auto
@@ -132,19 +131,6 @@ jobs:
cache-from: type=local,src=/tmp/.buildx-cache cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max
# Sign the resulting Docker image digest except on PRs.
# This will only write to the public Rekor transparency log when the Docker
# repository is public to avoid leaking data. If you would like to publish
# transparency data even for private images, pass --force to cosign below.
# https://github.com/sigstore/cosign
# - name: Sign the published Docker image
# if: ${{ github.event_name != 'pull_request' }}
# env:
# COSIGN_EXPERIMENTAL: "true"
# # This step uses the identity token to provision an ephemeral certificate
# # against the sigstore community Fulcio instance.
# run: echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign {}@${{ steps.build-and-push.outputs.digest }}
# Temp fix # Temp fix
# https://github.com/docker/build-push-action/issues/252 # https://github.com/docker/build-push-action/issues/252
# https://github.com/moby/buildkit/issues/1896 # https://github.com/moby/buildkit/issues/1896

View File

@@ -50,7 +50,6 @@ jobs:
restore-keys: | restore-keys: |
mkdocs-material- mkdocs-material-
- run: sudo apt-get install pngquant - run: sudo apt-get install pngquant
- run: pip install mike
- run: pip install mkdocs-material mkdocs-redirects "mkdocs-material[imaging]" - run: pip install mkdocs-material mkdocs-redirects "mkdocs-material[imaging]"
- name: Test Docs Build - name: Test Docs Build
run: MKINSIDERS=false mkdocs build run: MKINSIDERS=false mkdocs build
@@ -62,8 +61,10 @@ jobs:
- pre-commit - pre-commit
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: - name: Configure Git Credentials
ref: main run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v5 - uses: actions/setup-python@v5
with: with:
python-version: 3.x python-version: 3.x
@@ -75,24 +76,9 @@ jobs:
restore-keys: | restore-keys: |
mkdocs-material- mkdocs-material-
- run: sudo apt-get install pngquant - run: sudo apt-get install pngquant
- run: pip install mike==2.0.0
- run: pip install git+https://${GH_TOKEN}@github.com/benphelps/mkdocs-material-insiders.git - run: pip install git+https://${GH_TOKEN}@github.com/benphelps/mkdocs-material-insiders.git
- run: pip install mkdocs-redirects "mkdocs-material[imaging]" - run: pip install mkdocs-redirects "mkdocs-material[imaging]"
- name: Set Git config - name: Docs Deploy
run: | run: MKINSIDERS=true mkdocs gh-deploy --force
git config --global user.name "GitHub Action"
git config --global user.email "action@github.com"
- name: Sync gh-pages
run: |
git fetch origin gh-pages
git checkout gh-pages
git pull origin gh-pages
git checkout main
- name: Docs Deploy for Main
if: github.ref == 'refs/heads/main'
run: MKINSIDERS=true mike deploy --update --push ${{github.ref_name}}
- name: Docs Deploy for Tags
if: github.ref != 'refs/heads/main'
run: MKINSIDERS=true mike deploy --update --push ${{github.ref_name}} latest
env: env:
GH_TOKEN: ${{ secrets.GH_TOKEN }} GH_TOKEN: ${{ secrets.GH_TOKEN }}

20
.github/workflows/reaction-comments.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: 'Reaction Comments'
on:
issue_comment:
types: [created, edited]
pull_request_review_comment:
types: [created, edited]
schedule:
- cron: '0 0 * * *'
permissions:
actions: write
issues: write
pull-requests: write
jobs:
action:
runs-on: ubuntu-latest
steps:
- uses: dessant/reaction-comments@v4

View File

@@ -38,11 +38,11 @@ People _love_ thorough bug reports. I'm not even kidding.
## Development Guidelines ## Development Guidelines
Please see the [documentation regarding development](https://gethomepage.dev/latest/more/development/) and specifically the [guidelines for new service widgets](https://gethomepage.dev/latest/more/development/#service-widget-guidelines) if you are considering making one. Please see the [documentation regarding development](https://gethomepage.dev/more/development/) and specifically the [guidelines for new service widgets](https://gethomepage.dev/more/development/#service-widget-guidelines) if you are considering making one.
## Use a Consistent Coding Style ## Use a Consistent Coding Style
Please see information in the docs regarding [code formatting with pre-commit hooks](https://gethomepage.dev/latest/more/development/#code-formatting-with-pre-commit-hooks). Please see information in the docs regarding [code formatting with pre-commit hooks](https://gethomepage.dev/more/development/#code-formatting-with-pre-commit-hooks).
## License ## License

View File

@@ -20,7 +20,7 @@
&nbsp; &nbsp;
<a href="https://discord.gg/k4ruYNrudu"><img alt="Discord" src="https://img.shields.io/discord/1019316731635834932"></a> <a href="https://discord.gg/k4ruYNrudu"><img alt="Discord" src="https://img.shields.io/discord/1019316731635834932"></a>
&nbsp; &nbsp;
<a href="http://gethomepage.dev/latest/" title="Docs"><img title="Docs" src="https://github.com/gethomepage/homepage/actions/workflows/docs-publish.yml/badge.svg"/></a> <a href="https://gethomepage.dev/" title="Docs"><img title="Docs" src="https://github.com/gethomepage/homepage/actions/workflows/docs-publish.yml/badge.svg"/></a>
&nbsp; &nbsp;
<a href="https://paypal.me/phelpsben" title="Donate"><img alt="GitHub Sponsors" src="https://img.shields.io/github/sponsors/benphelps"></a> <a href="https://paypal.me/phelpsben" title="Donate"><img alt="GitHub Sponsors" src="https://img.shields.io/github/sponsors/benphelps"></a>
</p> </p>
@@ -48,19 +48,19 @@ With features like quick search, bookmarks, weather support, a wide range of int
## Docker Integration ## Docker Integration
Homepage has built-in support for Docker, and can automatically discover and add services to the homepage based on labels. See the [Docker Service Discovery](https://gethomepage.dev/latest/configs/docker/#automatic-service-discovery) page for more information. Homepage has built-in support for Docker, and can automatically discover and add services to the homepage based on labels. See the [Docker Service Discovery](https://gethomepage.dev/configs/docker/#automatic-service-discovery) page for more information.
## Service Widgets ## Service Widgets
Homepage also has support for over 100 3rd party services, including all popular starr apps, and most popular self-hosted apps. Some examples include: Radarr, Sonarr, Lidarr, Bazarr, Ombi, Tautulli, Plex, Jellyfin, Emby, Transmission, qBittorrent, Deluge, Jackett, NZBGet, SABnzbd, etc. As well as service integrations, Homepage also has a number of information providers, sourcing information from a variety of external 3rd party APIs. See the [Service](https://gethomepage.dev/latest/widgets/) page for more information. Homepage also has support for over 100 3rd party services, including all popular starr apps, and most popular self-hosted apps. Some examples include: Radarr, Sonarr, Lidarr, Bazarr, Ombi, Tautulli, Plex, Jellyfin, Emby, Transmission, qBittorrent, Deluge, Jackett, NZBGet, SABnzbd, etc. As well as service integrations, Homepage also has a number of information providers, sourcing information from a variety of external 3rd party APIs. See the [Service](https://gethomepage.dev/widgets/) page for more information.
## Information Widgets ## Information Widgets
Homepage has built-in support for a number of information providers, including weather, time, date, search, glances and more. System and status information presented at the top of the page. See the [Information Providers](https://gethomepage.dev/latest/widgets/) page for more information. Homepage has built-in support for a number of information providers, including weather, time, date, search, glances and more. System and status information presented at the top of the page. See the [Information Providers](https://gethomepage.dev/widgets/) page for more information.
## Customization ## Customization
Homepage is highly customizable, with support for custom themes, custom CSS & JS, custom layouts, formatting, localization and more. See the [Settings](https://gethomepage.dev/latest/configs/settings/) page for more information. Homepage is highly customizable, with support for custom themes, custom CSS & JS, custom layouts, formatting, localization and more. See the [Settings](https://gethomepage.dev/configs/settings/) page for more information.
# Getting Started # Getting Started
@@ -75,14 +75,13 @@ Please note that when using features such as widgets, Homepage can access person
Using docker compose: Using docker compose:
```yaml ```yaml
version: "3.3"
services: services:
homepage: homepage:
image: ghcr.io/gethomepage/homepage:latest image: ghcr.io/gethomepage/homepage:latest
container_name: homepage container_name: homepage
environment: environment:
PUID: 1000 -- optional, your user id PUID: 1000 # optional, your user id
PGID: 1000 -- optional, your group id PGID: 1000 # optional, your group id
ports: ports:
- 3000:3000 - 3000:3000
volumes: volumes:
@@ -104,7 +103,7 @@ docker run --name homepage \
ghcr.io/gethomepage/homepage:latest ghcr.io/gethomepage/homepage:latest
``` ```
## With Node ## From Source
First, clone the repository: First, clone the repository:
@@ -127,15 +126,9 @@ Finally, run the server in production mode:
pnpm start pnpm start
``` ```
or development mode:
```bash
pnpm dev
```
# Configuration # Configuration
Please refer to the [homepage documentation](https://gethomepage.dev/) website for more information. Everything you need to know about configuring Homepage is there. Please read everything carefully before asking for help, as most questions are answered there or are simple YAML configuration issues. Please refer to the [homepage documentation website](https://gethomepage.dev/) for more information. Everything you need to know about configuring Homepage is there. Please read everything carefully before asking for help, as most questions are answered there or are simple YAML configuration issues.
# Development # Development
@@ -175,6 +168,10 @@ mkdocs serve # or build, to build the static site
If you have any questions, suggestions, or general issues, please start a discussion on the [Discussions](https://github.com/gethomepage/homepage/discussions) page. If you have any questions, suggestions, or general issues, please start a discussion on the [Discussions](https://github.com/gethomepage/homepage/discussions) page.
## Troubleshooting
In addition to the docs, the [troubleshooting guide](https://gethomepage.dev/troubleshooting/) can help reveal many basic config or network issues. If you're having a problem, it's a good place to start.
## Contributing & Contributors ## Contributing & Contributors
Contributions are welcome! Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file for more information. Contributions are welcome! Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file for more information.

1
docs/CNAME Normal file
View File

@@ -0,0 +1 @@
gethomepage.dev

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@@ -36,7 +36,7 @@ Inside of the service you'd like to connect to a pod:
The `app` field is used to create a label selector, in this example case it would match pods with the label: `app.kubernetes.io/name=emby`. The `app` field is used to create a label selector, in this example case it would match pods with the label: `app.kubernetes.io/name=emby`.
Sometimes this is insufficient for complex or atypical application deployments. In these cases, the `pod-selector` field can be used. Any field selector can be used with it, so it allows for some very powerful selection capabilities. Sometimes this is insufficient for complex or atypical application deployments. In these cases, the `podSelector` field can be used. Any field selector can be used with it, so it allows for some very powerful selection capabilities.
For instance, it can be utilized to roll multiple underlying deployments under one application to see a high-level aggregate: For instance, it can be utilized to roll multiple underlying deployments under one application to see a high-level aggregate:
@@ -47,7 +47,7 @@ For instance, it can be utilized to roll multiple underlying deployments under o
description: Matrix Synapse Powered Chat description: Matrix Synapse Powered Chat
app: matrix-element app: matrix-element
namespace: comms namespace: comms
pod-selector: >- podSelector: >-
app.kubernetes.io/instance in ( app.kubernetes.io/instance in (
matrix-element, matrix-element,
matrix-media-repo, matrix-media-repo,
@@ -58,7 +58,7 @@ For instance, it can be utilized to roll multiple underlying deployments under o
!!! note !!! note
A blank string as a pod-selector does not deactivate it, but will actually select all pods in the namespace. This is a useful way to capture the resource usage of a complex application siloed to a single namespace, like Longhorn. A blank string as a podSelector does not deactivate it, but will actually select all pods in the namespace. This is a useful way to capture the resource usage of a complex application siloed to a single namespace, like Longhorn.
## Automatic Service Discovery ## Automatic Service Discovery
@@ -100,6 +100,8 @@ If you are using multiple instances of homepage, an `instance` annotation can be
If you have a single service that needs to be shown on multiple specific instances of homepage (but not on all of them), the service can be annotated by multiple `instance.name` annotations, where `name` can be the names of your specific multiple homepage instances. For example, a service that is annotated with `gethomepage.dev/instance.public: ""` and `gethomepage.dev/instance.internal: ""` will be shown on `public` and `internal` homepage instances. If you have a single service that needs to be shown on multiple specific instances of homepage (but not on all of them), the service can be annotated by multiple `instance.name` annotations, where `name` can be the names of your specific multiple homepage instances. For example, a service that is annotated with `gethomepage.dev/instance.public: ""` and `gethomepage.dev/instance.internal: ""` will be shown on `public` and `internal` homepage instances.
Use the `gethomepage.dev/pod-selector` selector to specify the pod used for the health check. For example, a service that is annotated with `gethomepage.dev/pod-selector: app.kubernetes.io/name=deployment` would link to a pod with the label `app.kubernetes.io/name: deployment`.
### Traefik IngressRoute support ### Traefik IngressRoute support
Homepage can also read ingresses defined using the Traefik IngressRoute custom resource definition. Due to the complex nature of Traefik routing rules, it is required for the `gethomepage.dev/href` annotation to be set: Homepage can also read ingresses defined using the Traefik IngressRoute custom resource definition. Due to the complex nature of Traefik routing rules, it is required for the `gethomepage.dev/href` annotation to be set:

View File

@@ -65,9 +65,13 @@ Services may have descriptions,
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. 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 [Material Design Icons](https://materialdesignicons.com) with `mdi-XX` or [Simple Icons](https://simpleicons.org/) with `si-XX`. You can also specify prefixed icons from:
You can specify a custom color by adding a hex color code as suffix e.g. `mdi-XX-#f0d453` or `si-XX-#a712a2`. - [Material Design Icons](https://pictogrammers.com/library/mdi/) with `mdi-XX`
- [Simple Icons](https://simpleicons.org/) with `si-XX`
- [selfh.st/icons](https://selfh.st/icons/) with `sh-XX` to use the png version or `sh-XX.svg/png/webp` for a specific version
You can specify a custom color for `mdi` and `si` icons by adding a hex color code as a suffix e.g. `mdi-XX-#f0d453` or `si-XX-#a712a2`.
To use a remote icon, use the absolute URL (e.g. `https://...`). To use a remote icon, use the absolute URL (e.g. `https://...`).
@@ -171,7 +175,7 @@ Services may be connected to a Docker container, either running on the local mac
!!! note !!! note
This can also be controlled with `showStats`. See [show docker stats](docker.md#show-docker-stats) for more information This can also be controlled with `showStats`. See [show docker stats](docker.md#show-stats) for more information
<img width="1038" alt="Docker Stats Expanded" src="https://github.com/gethomepage/homepage/assets/88257202/f95fd595-449e-48ae-af67-fd89618904ec"> <img width="1038" alt="Docker Stats Expanded" src="https://github.com/gethomepage/homepage/assets/88257202/f95fd595-449e-48ae-af67-fd89618904ec">

View File

@@ -6,7 +6,6 @@ description: Install and run homepage from Docker
Using docker compose: Using docker compose:
```yaml ```yaml
version: "3.3"
services: services:
homepage: homepage:
image: ghcr.io/gethomepage/homepage:latest image: ghcr.io/gethomepage/homepage:latest
@@ -27,7 +26,6 @@ _Using the docker socket directly is not the recommended method of integration a
In the docker compose example below, the environment variables `$PUID` and `$PGID` are set in a `.env` file. In the docker compose example below, the environment variables `$PUID` and `$PGID` are set in a `.env` file.
```yaml ```yaml
version: "3.3"
services: services:
homepage: homepage:
image: ghcr.io/gethomepage/homepage:latest image: ghcr.io/gethomepage/homepage:latest

View File

@@ -8,7 +8,7 @@ icon: simple/docker
You have a few options for deploying homepage, depending on your needs. We offer docker images for a majority of platforms. You can also install and run homepage from source if Docker is not your thing. It can even be installed on Kubernetes with Helm. You have a few options for deploying homepage, depending on your needs. We offer docker images for a majority of platforms. You can also install and run homepage from source if Docker is not your thing. It can even be installed on Kubernetes with Helm.
</p> </p>
!!! danger !!! warning
Please note that when using features such as widgets, Homepage can access personal information (for example from your home automation system) and Homepage currently does not (and is not planned to) include any authentication layer itself. Thus, we recommend homepage be deployed behind a reverse proxy including authentication, SSL etc, and / or behind a VPN. Please note that when using features such as widgets, Homepage can access personal information (for example from your home automation system) and Homepage currently does not (and is not planned to) include any authentication layer itself. Thus, we recommend homepage be deployed behind a reverse proxy including authentication, SSL etc, and / or behind a VPN.

View File

@@ -31,15 +31,15 @@ You may need to set the permissions of the folders to be able to edit the files.
- To use the [Docker integration](../configs/docker.md), you only need to use the `container:` parameter. There is no need to set the server. - To use the [Docker integration](../configs/docker.md), you only need to use the `container:` parameter. There is no need to set the server.
!!! note !!! note
To view detailed container statistics (CPU, RAM, etc.), or if you use a remote docker socket, `container:` will still need to be set. For example: To view detailed container statistics (CPU, RAM, etc.), or if you use a remote docker socket, `container:` will still need to be set. For example:
``` ```
- Plex: - Plex:
icon: /icons/plex.png icon: /icons/plex.png
href: https://app.plex.com href: https://app.plex.com
container: plex container: plex
``` ```
- When you upload a new image into the **/images** folder, you will need to restart the container for it to show up in the WebUI. Please see the [service icons](../configs/services.md#icons) for more information. - When you upload a new image into the **/images** folder, you will need to restart the container for it to show up in the WebUI. Please see the [service icons](../configs/services.md#icons) for more information.

View File

@@ -34,13 +34,6 @@ These companies help the Homepage project by providing services, tools, and reso
</p> </p>
</div> </div>
<div style="margin-bottom: 16px;">
<a href="https://glimelab.ai/"><img src="https://framerusercontent.com/images/28KxmT1G06GrFM8TKeNAC03QIms.svg" alt="Crowdin" style="max-width: 100%; height: 64px; display: block;" /></a>
<p>
GlimeLab provides the project with the awesome AI chatbot here and on GitHub and Discord.
</p>
</div>
<div style="margin-bottom: 16px;"> <div style="margin-bottom: 16px;">
<a href="https://www.jetbrains.com/"><img src="https://resources.jetbrains.com/storage/products/company/brand/logos/jetbrains.png" alt="JetBrains" style="max-width: 100%; height: 64px; display: block;" /></a> <a href="https://www.jetbrains.com/"><img src="https://resources.jetbrains.com/storage/products/company/brand/logos/jetbrains.png" alt="JetBrains" style="max-width: 100%; height: 64px; display: block;" /></a>
<p> <p>

View File

@@ -1,35 +0,0 @@
var glimeScript;
var glimeStyles = [];
document$.subscribe(function () {
if (!glimeScript) {
glimeScript = document.createElement("script");
glimeScript.setAttribute("src", "https://cdn.glimelab.ai/widget/1.0.0/widget.js");
glimeScript.setAttribute("onload", "onGlimeLoad()");
document.head.appendChild(glimeScript);
} else {
var newGlimeStyle = document.createElement("style");
document.head.appendChild(newGlimeStyle);
var i = 0;
glimeStyles.forEach((rule) => {
newGlimeStyle.sheet.insertRule(rule.cssText, i);
i++;
});
}
});
onGlimeLoad = () => {
window.glime.init("Bl3mlvfCnTnRm5");
setTimeout(() => {
const sheets = document.styleSheets;
[...sheets].forEach((sheet) => {
if (!sheet.href) {
[...sheet.cssRules].forEach((rule) => {
if (!rule || rule.href || !rule.selectorText) return;
if (rule.selectorText.indexOf(".css-") === 0 || rule.selectorText.indexOf("glime") > -1) {
glimeStyles.push(rule);
}
});
}
});
}, 1000);
};

View File

@@ -14,6 +14,16 @@
--md-default-fg-color: white; --md-default-fg-color: white;
} }
[data-md-color-scheme="default"] .md-search__inner {
--md-default-fg-color--light: gray;
--md-default-fg-color--lighter: black;
--md-default-bg-color: hsla(0, 0%, 100%, 0.9);
}
[data-md-color-scheme="default"] .md-search__inner .md-search__input {
color: var(--md-default-fg-color--light);
}
[data-md-toggle="search"]:not(:checked) ~ .md-header .md-search__form::after { [data-md-toggle="search"]:not(:checked) ~ .md-header .md-search__form::after {
position: absolute; position: absolute;
top: 0.3rem; top: 0.3rem;
@@ -35,10 +45,6 @@
} }
} }
#glimeRoot * {
font-family: var(--md-text-font) !important;
}
#carbonads { #carbonads {
margin-top: 10px; margin-top: 10px;
} }
@@ -51,6 +57,11 @@
--carbon-text-color: var(--md-typeset-color) !important; --carbon-text-color: var(--md-typeset-color) !important;
} }
[data-md-color-scheme="default"] .carbon-text {
color: var(--md-code-fg-color) !important;
--carbon-text-color: #313131 !important;
}
.md-typeset__table { .md-typeset__table {
width: 100%; width: 100%;
} }
@@ -92,11 +103,11 @@
} }
body { body {
background-color: transparent !important;
background-image: url("https://raw.githubusercontent.com/gethomepage/homepage/main/docs/assets/blossom_valley.jpg"); background-image: url("https://raw.githubusercontent.com/gethomepage/homepage/main/docs/assets/blossom_valley.jpg");
background-size: cover; background-size: cover;
background-attachment: fixed; background-attachment: fixed;
background-position: center; background-position: center;
background-color: transparent;
color: rgba(255, 255, 255, 0.8); color: rgba(255, 255, 255, 0.8);
} }
@@ -152,6 +163,12 @@ body[data-md-color-scheme="default"] {
-webkit-backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
} }
.md-header:has(.md-search-result__item),
.md-header:has(.md-search__input.focus-visible) {
backdrop-filter: none !important;
-webkit-backdrop-filter: none !important;
}
.md-footer-meta { .md-footer-meta {
background-color: transparent; background-color: transparent;
} }
@@ -212,7 +229,7 @@ body[data-md-color-scheme="default"] {
} }
.md-search__scrollwrap { .md-search__scrollwrap {
background-color: hsla(0, 0%, 0%, 0.3); background-color: hsla(0, 0%, 0%, 0.8);
backdrop-filter: blur(16px); backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
} }

View File

@@ -6,10 +6,6 @@ hide:
- navigation - navigation
--- ---
## Introducing the Homepage AI Bot
Thanks to the generous folks at [Glime](https://glimelab.ai), Homepage is now equipped with a pretty clever AI-powered bot. The bot has full knowledge of our docs, GitHub issues and discussions and is great at answering specific questions about setting up your Homepage. To use the bot, just hit the 'Ask AI' button on any page in our docs, [open a GitHub discussion](https://github.com/gethomepage/homepage/discussions) or check out the [#ai-support channel on Discord](https://discord.com/channels/1019316731635834932/1177885603552038993)!
## General Troubleshooting Tips ## General Troubleshooting Tips
- For API errors, clicking the "API Error Information" button in the widget will usually show some helpful information as to whether the issue is reaching the service host, an authentication issue, etc. - For API errors, clicking the "API Error Information" button in the widget will usually show some helpful information as to whether the issue is reaching the service host, an authentication issue, etc.
@@ -21,7 +17,7 @@ Thanks to the generous folks at [Glime](https://glimelab.ai), Homepage is now eq
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: 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. Ensure that you follow the rule mentioned on https://gethomepage.dev/latest/configs/service-widgets/. **Unless otherwise noted, URLs should not end with a / or other API path. Each widget will handle the path on its own.**. This is very important as including a trailing slash can result in an error. 1. Ensure that you follow the rule mentioned on https://gethomepage.dev/configs/service-widgets/. **Unless otherwise noted, URLs should not end with a / or other API path. Each widget will handle the path on its own.**. This is very important as including a trailing slash can result in an error.
2. 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.:

View File

@@ -48,15 +48,15 @@ self-hosted / open-source alternative, we ask that any widgets, etc. are develop
## New Feature Guidelines ## New Feature Guidelines
- New features should be linked to an existing feature request with at least 10 'up-votes'. The purpose of this requirement is to avoid the addition (and maintenance) of features that might only benefit a small number of users. - New features should usually be linked to an existing feature request. The purpose of this requirement is to avoid the addition (and maintenance) of features that might only benefit a small number of users.
- If you have ideas for a larger feature, please open a discussion first. - If you have ideas for a larger feature you may want to open a discussion first.
- Please note that though it is a requirement, a discussion with 10 'up-votes' in no way guarantees that a PR will be merged.
## Service Widget Guidelines ## Service Widget Guidelines
To ensure cohesiveness of various widgets, the following should be used as a guide for developing new widgets: To ensure cohesiveness of various widgets, the following should be used as a guide for developing new widgets:
- Please only submit widgets that have been requested and have at least 10 'up-votes'. The purpose of this requirement is to avoid the addition (and maintenance) of service widgets that might only benefit a small number of users. - Please only submit widgets that target a feature request discussion with at least 10 'up-votes'. The purpose of this requirement is to avoid the addition (and maintenance) of service widgets that might only benefit a small number of users.
- Note that we reserve the right to decline widgets for projects that are very young (eg < ~1y) or those with a small reach (eg low GitHub stars). Again, this is in an effort to keep overall widget maintenance under control.
- Widgets should be only one row of blocks - Widgets should be only one row of blocks
- Widgets should be no more than 4 blocks wide and generally conform to the styling / design choices of other widgets - Widgets should be no more than 4 blocks wide and generally conform to the styling / design choices of other widgets
- Minimize the number of API calls - Minimize the number of API calls

View File

@@ -79,7 +79,21 @@ By default the key is passed as an `X-API-Key` header. If you need to pass the k
### `jsonrpcProxyHandler` ### `jsonrpcProxyHandler`
A proxy handler that makes authenticated JSON-RPC requests to the specified API endpoint. Where the endpoint is the method to call. A proxy handler that makes authenticated JSON-RPC requests to the specified API endpoint, either using username + password or an API token.
The endpoint is the method to call and queryParams are used as the parameters.
=== "component.js"
```js
import Container from "components/services/widget/container";
import useWidgetAPI from "utils/proxy/use-widget-api";
export default function Component({ service }) {
const { widget } = service;
const { data, error } = useWidgetAPI(widget, 'trigger', { "triggerids": "14062", "output": "extend", "selectFunctions": "extend" });
}
```
=== "widget.js" === "widget.js"
@@ -93,6 +107,7 @@ A proxy handler that makes authenticated JSON-RPC requests to the specified API
mappings: { mappings: {
total: { endpoint: "total" }, total: { endpoint: "total" },
average: { endpoint: "average" }, average: { endpoint: "average" },
trigger: { endpoint: "trigger.get" },
}, },
}; };
``` ```
@@ -110,6 +125,16 @@ A proxy handler that makes authenticated JSON-RPC requests to the specified API
password: your-password password: your-password
``` ```
```yaml
- Your Widget:
icon: yourwidget.svg
href: https://example.com/
widget:
type: yourwidget
url: http://127.0.0.1:1337
key: your-api-token
```
### `synologyProxyHandler` ### `synologyProxyHandler`
A proxy handler that makes authenticated requests to the specified Synology API endpoint. This is used exclusively for Synology DSM services. A proxy handler that makes authenticated requests to the specified Synology API endpoint. This is used exclusively for Synology DSM services.

View File

@@ -71,7 +71,7 @@ Homepage provides a set of common translations that you can use in your widgets.
| `common.ms` | `1,000 ms` | Format a number in milliseconds. | | `common.ms` | `1,000 ms` | Format a number in milliseconds. |
| `common.date` | `2024-01-01` | Format a date. | | `common.date` | `2024-01-01` | Format a date. |
| `common.relativeDate` | `1 day ago` | Format a relative date. | | `common.relativeDate` | `1 day ago` | Format a relative date. |
| `common.uptime` | `1 day, 1 hour` | Format an uptime. | | `common.duration` | `1 day, 1 hour` | Format an duration. |
### Text ### Text

View File

@@ -6,6 +6,8 @@ icon: material/widgets
Homepage has two types of widgets: info and service. Below we'll cover each type and how to configure them. Homepage has two types of widgets: info and service. Below we'll cover each type and how to configure them.
The left navigation of this site contains links to all available widgets.
## Service Widgets ## Service Widgets
Service widgets are used to display the status of a service, often a web service or API. Services (and their widgets) are defined in your `services.yaml` file. Here's an example: Service widgets are used to display the status of a service, often a web service or API. Services (and their widgets) are defined in your `services.yaml` file. Here's an example:

View File

@@ -1,4 +1,21 @@
--- ---
title: Info Widgets title: Info Widgets
description: Homepage info widgets. description: Homepage info widgets.
search:
exclude: true
--- ---
You can also find a list of all available info widgets in the sidebar navigation.
- [Date & Time](datetime.md)
- [Glances](glances.md)
- [Greeting](greeting.md)
- [Kubernetes](kubernetes.md)
- [Logo](logo.md)
- [Longhorn](longhorn.md)
- [OpenMeteo](openmeteo.md)
- [OpenWeatherMap](openweathermap.md)
- [Resources](resources.md)
- [Search](search.md)
- [Stocks](stocks.md)
- [UniFi Controller](unifi_controller.md)

View File

@@ -9,6 +9,8 @@ The disk path is the path reported by `df` (Mounted On), or the mount point of t
The cpu and memory resource information are the container's usage while [glances](glances.md) displays statistics for the host machine on which it is installed. The cpu and memory resource information are the container's usage while [glances](glances.md) displays statistics for the host machine on which it is installed.
The resources widget primarily relies on a popular tool called [systeminformation](https://systeminformation.io). Thus, any limitiations of that software apply, for example, BRTFS RAID is not supported for the disk usage. In this case users may want to use the [glances widget](glances.md) instead.
_Note: unfortunately, the package used for getting CPU temp ([systeminformation](https://systeminformation.io)) is not compatible with some setups and will not report any value(s) for CPU temp._ _Note: unfortunately, the package used for getting CPU temp ([systeminformation](https://systeminformation.io)) is not compatible with some setups and will not report any value(s) for CPU temp._
**Any disk you wish to access must be mounted to your container as a volume.** **Any disk you wish to access must be mounted to your container as a volume.**

View File

@@ -0,0 +1,48 @@
---
title: Stocks
description: Stocks Information Widget Configuration
---
_(Find the Stocks service widget [here](../services/stocks.md))_
The Stocks Information Widget allows you to include basic stock market data in
your Homepage header. The widget includes the current price of a stock, and the
change in price for the day.
Finnhub.io is currently the only supported provider for the stocks widget.
You can sign up for a free api key at [finnhub.io](https://finnhub.io).
You are encouraged to read finnhub.io's
[terms of service/privacy policy](https://finnhub.io/terms-of-service) before
signing up. The documentation for the endpoint that is utilized can be viewed
[here](https://finnhub.io/docs/api/quote).
You must set `finnhub` as a provider in your `settings.yaml` like below:
```yaml
providers:
finnhub: yourfinnhubapikeyhere
```
Next, configure the stocks widget in your `widgets.yaml`:
The information widget allows for up to 8 items in the watchlist.
```yaml
- stocks:
provider: finnhub
color: true # optional, defaults to true
cache: 1 # optional, default caches results for 1 minute
watchlist:
- GME
- AMC
- NVDA
- AMD
- TSM
- MSFT
- AAPL
- BRK.A
```
The above configuration would result in something like this:
![Example of Stocks Widget](../../assets/widget_stocks_demo.png)

View File

@@ -5,11 +5,17 @@ description: Unifi Controller Information Widget Configuration
_(Find the Unifi Controller service widget [here](../services/unifi-controller.md))_ _(Find the Unifi Controller service widget [here](../services/unifi-controller.md))_
You can display general connectivity status from your Unifi (Network) Controller. When authenticating you will want to use a local account that has at least read privileges. You can display general connectivity status from your Unifi (Network) Controller.
!!!
When authenticating you will want to use a local account that has at least read privileges.
An optional 'site' parameter can be supplied, if it is not the widget will use the default site for the controller. An optional 'site' parameter can be supplied, if it is not the widget will use the default site for the controller.
_Note: If you enter e.g. incorrect credentials and receive an "API Error", you may need to recreate the container to clear the cache._ !!! hint
If you enter e.g. incorrect credentials and receive an "API Error", you may need to recreate the container to clear the cache.
<img width="162" alt="unifi_infowidget" src="https://user-images.githubusercontent.com/4887959/197706832-f5a8706b-7282-4892-a666-b7d999752562.png"> <img width="162" alt="unifi_infowidget" src="https://user-images.githubusercontent.com/4887959/197706832-f5a8706b-7282-4892-a666-b7d999752562.png">

View File

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

View File

@@ -0,0 +1,22 @@
---
title: Beszel
description: Beszel Widget Configuration
---
Learn more about [Beszel](https://github.com/henrygd/beszel)
The widget has two modes, a single system with detailed info if `systemId` is provided, or an overview of all systems if `systemId` is not provided.
The `systemID` in the `id` field on the collections page of Beszel.
Allowed fields for 'overview' mode: `["systems", "up"]`
Allowed fields for a single system: `["name", "status", "updated", "cpu", "memory", "disk", "network"]`
```yaml
widget:
type: beszel
url: http://beszel.host.or.ip
username: username # email
password: password
systemId: systemId # optional
```

View File

@@ -7,6 +7,8 @@ Learn more about [Changedetection.io](https://github.com/dgtlmoon/changedetectio
Find your API key under `Settings > API`. Find your API key under `Settings > API`.
Allowed fields: `["diffsDetected", "totalObserved"]`.
```yaml ```yaml
widget: widget:
type: changedetectionio type: changedetectionio

View File

@@ -54,12 +54,20 @@ widget:
time: other key time: other key
color: theme # optional - defaults to "". Allowed values: `["theme", "adaptive", "black", "white"]`. color: theme # optional - defaults to "". Allowed values: `["theme", "adaptive", "black", "white"]`.
format: date # optional format: date # optional
- field: key
label: Number of things in array
format: size
# This (no field) will take the root of the API response, e.g. when APIs return an array:
- label: Number of items
format: size
``` ```
Supported formats for the values are `text`, `number`, `float`, `percent`, `bytes`, `bitrate`, `date` and `relativeDate`. Supported formats for the values are `text`, `number`, `float`, `percent`, `bytes`, `bitrate`, `size`, `date` and `relativeDate`.
The `dateStyle` and `timeStyle` options of the `date` format are passed directly to [Intl.DateTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat) and the `style` and `numeric` options of `relativeDate` are passed to [Intl.RelativeTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat). The `dateStyle` and `timeStyle` options of the `date` format are passed directly to [Intl.DateTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat) and the `style` and `numeric` options of `relativeDate` are passed to [Intl.RelativeTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat).
The `size` format will return the length of the array or string, or the number of keys in an object. This is then formatted as `number`.
## Example ## Example
For the following JSON object from the API: For the following JSON object from the API:

View File

@@ -0,0 +1,14 @@
---
title: DeveLanCacheUI
description: DeveLanCacheUI Widget Configuration
---
Learn more about [DeveLanCacheUI](https://github.com/devedse/DeveLanCacheUI_Backend).
```yaml
widget:
type: develancacheui
url: http://your.develancacheui_backend.host:port
```
The url should point to the DeveLanCacheUI Backend (API)

View File

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

View File

@@ -0,0 +1,17 @@
---
title: Frigate
description: Frigate Widget Configuration
---
Learn more about [Frigate](https://frigate.video/).
Allowed fields: `["cameras", "uptime", "version"]`.
A recent event listing is disabled by default, but can be enabled with the `enableRecentEvents` option.
```yaml
widget:
type: frigate
url: http://frigate.host.or.ip:port
enableRecentEvents: true # Optional, defaults to false
```

View File

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

View File

@@ -11,8 +11,11 @@ Learn more about [Gluetun](https://github.com/qdm12/gluetun).
Allowed fields: `["public_ip", "region", "country"]`. Allowed fields: `["public_ip", "region", "country"]`.
To setup authentication, follow [the official Gluetun documentation](https://github.com/qdm12/gluetun-wiki/blob/main/setup/advanced/control-server.md#authentication).
```yaml ```yaml
widget: widget:
type: gluetun type: gluetun
url: http://gluetun.host.or.ip:port url: http://gluetun.host.or.ip:port
key: gluetunkey # Not required if /v1/publicip/ip endpoint is configured with `auth = none`
``` ```

View File

@@ -0,0 +1,19 @@
---
title: Headscale
description: Headscale Widget Configuration
---
Learn more about [Headscale](https://headscale.net/).
You will need to generate an API access token from the [command line](https://headscale.net/ref/remote-cli/#create-an-api-key) using `headscale apikeys create` command.
To find your node ID, you can use `headscale nodes list` command.
Allowed fields: `["name", "address", "last_seen", "status"]`.
```yaml
widget:
type: headscale
nodeId: nodeid
key: headscaleapiaccesstoken
```

View File

@@ -5,6 +5,11 @@ description: Immich Widget Configuration
Learn more about [Immich](https://github.com/immich-app/immich). Learn more about [Immich](https://github.com/immich-app/immich).
| Immich Version | Homepage Widget Version |
| -------------- | ----------------------- |
| < v1.118 | 1 (default) |
| >= v1.118 | 2 |
Find your API key under `Account Settings > API Keys`. Find your API key under `Account Settings > API Keys`.
Allowed fields: `["users" ,"photos", "videos", "storage"]`. Allowed fields: `["users" ,"photos", "videos", "storage"]`.
@@ -16,4 +21,5 @@ widget:
type: immich type: immich
url: http://immich.host.or.ip url: http://immich.host.or.ip
key: adminapikeyadminapikeyadminapikey key: adminapikeyadminapikeyadminapikey
version: 2 # optional, default is 1
``` ```

View File

@@ -1,4 +1,141 @@
--- ---
title: Service Widgets title: Service Widgets
description: Homepage service widgets. description: Homepage service widgets.
search:
exclude: true
--- ---
You can also find a list of all available service widgets in the sidebar navigation.
- [Adguard Home](adguard-home.md)
- [ArgoCD](argocd.md)
- [Atsumeru](atsumeru.md)
- [Audiobookshelf](audiobookshelf.md)
- [Authentik](authentik.md)
- [Autobrr](autobrr.md)
- [Azure DevOps](azuredevops.md)
- [Bazarr](bazarr.md)
- [Beszel](beszel.md)
- [Caddy](caddy.md)
- [Calendar](calendar.md)
- [Calibre-Web](calibre-web.md)
- [ChangeDetection.io](changedetectionio.md)
- [Channels DVR Server](channelsdvrserver.md)
- [Cloudflared](cloudflared.md)
- [Coin Market Cap](coin-market-cap.md)
- [CrowdSec](crowdsec.md)
- [Custom API](customapi.md)
- [Deluge](deluge.md)
- [DeveLanCacheUI](develancacheui.md)
- [DiskStation](diskstation.md)
- [DownloadStation](downloadstation.md)
- [Emby](emby.md)
- [ESPHome](esphome.md)
- [EVCC](evcc.md)
- [Fileflows](fileflows.md)
- [Flood](flood.md)
- [FreshRSS](freshrss.md)
- [Frigate](frigate.md)
- [Fritz!Box](fritzbox.md)
- [GameDig](gamedig.md)
- [Gatus](gatus.md)
- [Ghostfolio](ghostfolio.md)
- [Gitea](gitea.md)
- [Gitlab](gitlab.md)
- [Glances](glances.md)
- [Gluetun](gluetun.md)
- [Gotify](gotify.md)
- [Grafana](grafana.md)
- [HDHomeRun](hdhomerun.md)
- [Headscale](headscale.md)
- [Healthchecks](healthchecks.md)
- [Home Assistant](homeassistant.md)
- [HomeBox](homebox.md)
- [Homebridge](homebridge.md)
- [iFrame](iframe.md)
- [Immich](immich.md)
- [Jackett](jackett.md)
- [JDownloader](jdownloader.md)
- [Jellyfin](jellyfin.md)
- [Jellyseerr](jellyseerr.md)
- [Kavita](kavita.md)
- [Komga](komga.md)
- [Kopia](kopia.md)
- [Lidarr](lidarr.md)
- [Linkwarden](linkwarden.md)
- [Lubelogger](lubelogger.md)
- [Mastodon](mastodon.md)
- [Mailcow](mailcow.md)
- [Mealie](mealie.md)
- [Medusa](medusa.md)
- [Mikrotik](mikrotik.md)
- [Minecraft](minecraft.md)
- [Miniflux](miniflux.md)
- [MJpeg](mjpeg.md)
- [Moonraker](moonraker.md)
- [Mylar](mylar.md)
- [MySpeed](myspeed.md)
- [Navidrome](navidrome.md)
- [NetAlertX](netalertx.md)
- [Netdata](netdata.md)
- [Nextcloud](nextcloud.md)
- [NextDNS](nextdns.md)
- [NGINX Proxy Manager](nginx-proxy-manager.md)
- [NZBGet](nzbget.md)
- [OctoPrint](octoprint.md)
- [Omada](omada.md)
- [Ombi](ombi.md)
- [OpenDTU](opendtu.md)
- [OpenMediaVault](openmediavault.md)
- [OpenWRT](openwrt.md)
- [OPNsense](opnsense.md)
- [Overseerr](overseerr.md)
- [PaperlessNGX](paperlessngx.md)
- [Peanut](peanut.md)
- [pfSense](pfsense.md)
- [PhotoPrism](photoprism.md)
- [Pi-hole](pihole.md)
- [PlantIt](plantit.md)
- [Plex & Tautulli](plex-tautulli.md)
- [Plex](plex.md)
- [Portainer](portainer.md)
- [Prometheus](prometheus.md)
- [Prometheus Metric](prometheusmetric.md)
- [Prowlarr](prowlarr.md)
- [Proxmox](proxmox.md)
- [Proxmox Backup Server](proxmoxbackupserver.md)
- [Pterodactyl](pterodactyl.md)
- [PyLoad](pyload.md)
- [qBittorrent](qbittorrent.md)
- [QNAP](qnap.md)
- [Radarr](radarr.md)
- [Readarr](readarr.md)
- [ROMM](romm.md)
- [ruTorrent](rutorrent.md)
- [SABnzbd](sabnzbd.md)
- [Scrutiny](scrutiny.md)
- [Sonarr](sonarr.md)
- [Speedtest Tracker](speedtest-tracker.md)
- [Stash](stash.md)
- [Stocks](stocks.md)
- [SwagDashboard](swagdashboard.md)
- [Syncthing Relay Server](syncthing-relay-server.md)
- [Tailscale](tailscale.md)
- [Tandoor](tandoor.md)
- [Technitium DNS](technitium.md)
- [TDarr](tdarr.md)
- [Traefik](traefik.md)
- [Transmission](transmission.md)
- [TrueNAS](truenas.md)
- [TubeArchivist](tubearchivist.md)
- [UniFi Controller](unifi-controller.md)
- [Unmanic](unmanic.md)
- [Uptime Kuma](uptime-kuma.md)
- [UptimeRobot](uptimerobot.md)
- [UrBackup](urbackup.md)
- [Vikunja](vikunja.md)
- [Watchtower](watchtower.md)
- [WGEasy](wgeasy.md)
- [WhatsUpDocker](whatsupdocker.md)
- [xTeVe](xteve.md)
- [Zabbix](zabbix.md)

View File

@@ -0,0 +1,15 @@
---
title: Linkwarden
description: Linkwarden Widget Configuration
---
Learn more about [Linkwarden](https://linkwarden.app/).
Allowed fields: `["links", "collections", "tags"]`.
```yaml
widget:
type: linkwarden
url: http://linkwarden.host.or.ip
key: myApiKeyHere # On your Linkwarden install, go to Settings > Access Tokens. Generate a token.
```

View File

@@ -0,0 +1,20 @@
---
title: LubeLogger
description: LubeLogger Widget Configuration
---
Learn more about [LubeLogger](https://github.com/hargata/lubelog) (v1.3.7 or higher is required).
The widget comes in two 'flavors', one shows data for all vehicles or for just a specific vehicle with the `vehicleID` parameter.
Allowed fields: `["vehicles", "serviceRecords", "reminders"]`.
For the single-vehicle version: `["vehicle", "serviceRecords", "reminders", "nextReminder"]`.
```yaml
widget:
type: lubelogger
url: https://lubelogger.host.or.ip
username: lubeloggerusername
password: lubeloggerpassword
vehicleID: 1 # optional, changes to single-vehicle version
```

View File

@@ -0,0 +1,15 @@
---
title: Mailcow
description: Mailcow Widget Configuration
---
Learn more about [Mailcow](https://github.com/mailcow/mailcow-dockerized).
Allowed fields: `["domains", "mailboxes", "mails", "storage"]`.
```yaml
widget:
type: mailcow
url: https://mailcow.host.or.ip
key: mailcowapikey
```

View File

@@ -14,4 +14,5 @@ widget:
type: mealie type: mealie
url: http://mealie-frontend.host.or.ip url: http://mealie-frontend.host.or.ip
key: mealieapitoken key: mealieapitoken
version: 2 # only required if version > 1, defaults to 1
``` ```

View File

@@ -9,8 +9,11 @@ _Note that the project was renamed from PiAlert to NetAlertX._
Allowed fields: `["total", "connected", "new_devices", "down_alerts"]`. Allowed fields: `["total", "connected", "new_devices", "down_alerts"]`.
If you have enabled a password on your NetAlertX instance, you will need to provide the `SYNC_api_token` as the `key` in your config.
```yaml ```yaml
widget: widget:
type: netalertx type: netalertx
url: http://ip:port url: http://ip:port
key: netalertxsyncapitoken # optional, only if password is enabled
``` ```

View File

@@ -9,7 +9,7 @@ This widget requires the installation of the [pfsense-api](https://github.com/ja
Once pfSense API is installed, you can set the API to be read-only in System > API > Settings. Once pfSense API is installed, you can set the API to be read-only in System > API > Settings.
There are two currently supported authentication modes: 'Local Database' and 'API Token'. For 'Local Database', use `username` and `password` with the credentials of an admin user. For 'API Token', utilize the `headers` parameter with `client_token` and `client_id` obtained from pfSense as shown below. Do not use both headers and username / password. There are two currently supported authentication modes: 'Local Database' and 'API Key' (v2) / 'API Token' (v1). For 'Local Database', use `username` and `password` with the credentials of an admin user. The specifics of using the API key / token depend on the version of the pfSense API, see the config examples below. Do not use both headers and username / password.
The interface to monitor is defined by updating the `wan` parameter. It should be referenced as it is shown under Interfaces > Assignments in pfSense. The interface to monitor is defined by updating the `wan` parameter. It should be referenced as it is shown under Interfaces > Assignments in pfSense.
@@ -17,14 +17,25 @@ Load is returned instead of cpu utilization. This is a limitation in the pfSense
Allowed fields: `["load", "memory", "temp", "wanStatus", "wanIP", "disk"]` (maximum of 4) Allowed fields: `["load", "memory", "temp", "wanStatus", "wanIP", "disk"]` (maximum of 4)
For version 2:
```yaml ```yaml
widget: widget:
type: pfsense type: pfsense
url: http://pfsense.host.or.ip:port url: http://pfsense.host.or.ip:port
username: user # optional, or API token username: user # optional, or API key
password: pass # optional, or API token password: pass # optional, or API key
headers: # optional, or username/password headers: # optional, or username/password
Authorization: client_id client_token X-API-Key: key
wan: igb0 wan: igb0
version: 2 # optional, defaults to 1 for api v1
fields: ["load", "memory", "temp", "wanStatus"] # optional fields: ["load", "memory", "temp", "wanStatus"] # optional
``` ```
For version 1:
```yaml
headers: # optional, or username/password
Authorization: client_id client_token # obtained from pfSense API
version: 1
```

View File

@@ -3,7 +3,9 @@ title: PhotoPrism
description: PhotoPrism Widget Configuration description: PhotoPrism Widget Configuration
--- ---
Learn more about [PhotoPrism](https://github.com/photoprism/photoprism).. Learn more about [PhotoPrism](https://github.com/photoprism/photoprism).
Authentication is possible via [app passwords](https://docs.photoprism.app/user-guide/settings/account/#apps-and-devices) or username/password.
Allowed fields: `["albums", "photos", "videos", "people"]`. Allowed fields: `["albums", "photos", "videos", "people"]`.
@@ -11,6 +13,7 @@ Allowed fields: `["albums", "photos", "videos", "people"]`.
widget: widget:
type: photoprism type: photoprism
url: http://photoprism.host.or.ip:port url: http://photoprism.host.or.ip:port
username: admin username: admin # required only if using username/password
password: password password: password # required only if using username/password
key: # required only if using app passwords
``` ```

View File

@@ -5,8 +5,6 @@ description: PiHole Widget Configuration
Learn more about [PiHole](https://github.com/pi-hole/pi-hole). Learn more about [PiHole](https://github.com/pi-hole/pi-hole).
As of v2022.12 [PiHole requires the use of an API key](https://pi-hole.net/blog/2022/11/17/upcoming-changes-authentication-for-more-api-endpoints-required/#page-content) if an admin password is set. Older versions do not require any authentication even if the admin uses a password.
Allowed fields: `["queries", "blocked", "blocked_percent", "gravity"]`. Allowed fields: `["queries", "blocked", "blocked_percent", "gravity"]`.
Note: by default the "blocked" and "blocked_percent" fields are merged e.g. "1,234 (15%)" but explicitly including the "blocked_percent" field will change them to display separately. Note: by default the "blocked" and "blocked_percent" fields are merged e.g. "1,234 (15%)" but explicitly including the "blocked_percent" field will change them to display separately.
@@ -16,7 +14,5 @@ widget:
type: pihole type: pihole
url: http://pi.hole.or.ip url: http://pi.hole.or.ip
version: 6 # required if running v6 or higher, defaults to 5 version: 6 # required if running v6 or higher, defaults to 5
key: yourpiholeapikey # optional key: yourpiholeapikey # optional, in v6 can be your password or app password
``` ```
_Added in v0.1.0, updated in v0.8.9_

View File

@@ -0,0 +1,67 @@
---
title: Prometheus Metric
description: Prometheus Metric Widget Configuration
---
Learn more about [Querying Prometheus](https://prometheus.io/docs/prometheus/latest/querying/basics/).
This widget can show metrics for your service defined by PromQL queries which are requested from a running Prometheus instance.
Quries can be defined in the `metrics` array of the widget along with a label to be used to present the metric value. You can optionally specify a global `refreshInterval` in milliseconds and/or define the `refreshInterval` per metric. Inside the optional `format` object of a metric various formatting styles and transformations can be applied (see below).
```yaml
widget:
type: prometheusmetric
url: https://prometheus.host.or.ip
refreshInterval: 10000 # optional - in milliseconds, defaults to 10s
metrics:
- label: Metric 1
query: alertmanager_alerts{state="active"}
- label: Metric 2
query: apiserver_storage_size_bytes{node="mynode"}
format:
type: bytes
- label: Metric 3
query: avg(prometheus_notifications_latency_seconds)
format:
type: number
suffix: s
options:
maximumFractionDigits: 4
- label: Metric 4
query: time()
refreshInterval: 1000 # will override global refreshInterval
format:
type: date
scale: 1000
options:
timeStyle: medium
```
## Formatting
Supported values for `format.type` are `text`, `number`, `percent`, `bytes`, `bits`, `bbytes`, `bbits`, `byterate`, `bibyterate`, `bitrate`, `bibitrate`, `date`, `duration`, `relativeDate`, and `text` which is the default.
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). For the `number` format, options of [Intl.NumberFormat](https://developer.mozilla.org/de/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat) can be used, e.g. `maximumFractionDigits` or `minimumFractionDigits`.
### Data Transformation
You can manipulate your metric value with the following tools: `scale`, `prefix` and `suffix`, for example:
```yaml
- query: my_custom_metric{}
label: Metric 1
format:
type: number
scale: 1000 # multiplies value by a number or fraction string e.g. 1/16
- query: my_custom_metric{}
label: Metric 2
format:
type: number
prefix: "$" # prefixes value with given string
- query: my_custom_metric{}
label: Metric 3
format:
type: number
suffix: "€" # suffixes value with given string
```

View File

@@ -9,22 +9,22 @@ This widget shows the running and total counts of both QEMU VMs and LX Container
You will need to generate an API Token for new or an existing user. Here is an example of how to do this for a new user. You will need to generate an API Token for new or an existing user. Here is an example of how to do this for a new user.
1. Navigate to the Proxmox portal, click on Datacenter 1. Navigate to the Proxmox portal, click on Datacenter
2. Expand Permissions, click on Groups 2. Expand Permissions, click on Groups
3. Click the Create button 3. Click the Create button
4. Name the group something informative, like api-ro-users 4. Name the group something informative, like api-ro-users
5. Click on the Permissions "folder" 5. Click on the Permissions "folder"
6. Click Add -> Group Permission 6. Click Add -> Group Permission
- Path: / - Path: /
- Group: group from bullet 4 above - Group: group from bullet 4 above
- Role: PVEAuditor - Role: PVEAuditor
- Propagate: Checked - Propagate: Checked
7. Expand Permissions, click on Users 7. Expand Permissions, click on Users
8. Click the Add button 8. Click the Add button
- User name: something informative like `api` - User name: something informative like `api`
- Realm: Linux PAM standard authentication - Realm: Linux PAM standard authentication
- Group: group from bullet 4 above - Group: group from bullet 4 above
9. Expand Permissions, click on API Tokens 9. Expand Permissions, click on API Tokens
10. Click the Add button 10. Click the Add button
- User: user from bullet 8 above - User: user from bullet 8 above
- Token ID: something informative like the application or purpose like `homepage` - Token ID: something informative like the application or purpose like `homepage`

View File

@@ -3,7 +3,8 @@ title: Romm
description: Romm Widget Configuration description: Romm Widget Configuration
--- ---
Allowed fields: `["platforms", "totalRoms"]`. Allowed fields: `["platforms", "totalRoms", "saves", "states", "screenshots", "totalfilesize"]`.
If more than (4) fields are provided, only the first (4) will be used.
```yaml ```yaml
widget: widget:
@@ -11,4 +12,5 @@ widget:
url: http://romm.host.or.ip url: http://romm.host.or.ip
username: username # optional username: username # optional
password: password # optional password: password # optional
fields: ["platforms", "totalRoms", "saves", "states"] # optional - default fields shown
``` ```

View File

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

View File

@@ -0,0 +1,50 @@
---
title: Stocks
description: Stocks Service Widget Configuration
---
_(Find the Stocks information widget [here](../info/stocks.md))_
The widget includes:
- US stock market status
- Current price of provided stock symbol
- Change in price of stock symbol for the day.
Finnhub.io is currently the only supported provider for the stocks widget.
You can sign up for a free api key at [finnhub.io](https://finnhub.io).
You are encouraged to read finnhub.io's
[terms of service/privacy policy](https://finnhub.io/terms-of-service) before
signing up.
Allowed fields: no configurable fields for this widget.
You must set `finnhub` as a provider in your `settings.yaml`:
```yaml
providers:
finnhub: yourfinnhubapikeyhere
```
Next, configure the stocks widget in your `services.yaml`:
The service widget allows for up to 28 items in the watchlist. You may get rate
limited if using the information and service widgets together.
```yaml
widget:
type: stocks
provider: finnhub
showUSMarketStatus: true # optional, defaults to true
watchlist:
- GME
- AMC
- NVDA
- TSM
- BRK.A
- TSLA
- AAPL
- MSFT
- AMZN
- BRK.B
```

View File

@@ -0,0 +1,20 @@
---
title: Suwayomi
description: Suwayomi Widget Configuration
---
Learn more about [Suwayomi](https://github.com/Suwayomi/Suwayomi-Server).
Allowed fields: ["download", "nondownload", "read", "unread", "downloadedread", "downloadedunread", "nondownloadedread", "nondownloadedunread"]
The widget defaults to the first four above. If more than four fields are provided, only the first 4 are displayed.
Category IDs can be obtained from the url when navigating to it, `?tab={categoryID}`.
```yaml
widget:
type: suwayomi
url: http://suwayomi.host.or.ip
username: username #optional
password: password #optional
category: 0 #optional, defaults to all categories
```

View File

@@ -11,4 +11,5 @@ Allowed fields: `["queue", "processed", "errored", "saved"]`.
widget: widget:
type: tdarr type: tdarr
url: http://tdarr.host.or.ip url: http://tdarr.host.or.ip
key: tdarrapikey # optional
``` ```

View File

@@ -0,0 +1,26 @@
---
title: Technitium DNS Server
description: Technitium DNS Server Widget Configuration
---
Learn more about [Technitium DNS Server](https://technitium.com/dns/).
Allowed fields (up to 4): `["totalQueries","totalNoError","totalServerFailure","totalNxDomain","totalRefused","totalAuthoritative","totalRecursive","totalCached","totalBlocked","totalDropped","totalClients"]`.
Defaults to: `["totalQueries", "totalAuthoritative", "totalCached", "totalServerFailure"]`
```yaml
widget:
type: technitium
url: <url to dns server>
key: biglongapitoken
range: LastDay # optional, defaults to LastHour
```
#### API Key
This can be generated via the Technitium DNS Dashboard, and should be generated from a special API specific user.
#### Range
`range` value determines how far back of statistics to pull data for. The value comes directly from Technitium API documentation found [here](https://github.com/TechnitiumSoftware/DnsServer/blob/master/APIDOCS.md#dashboard-api-calls), defined as `"type"`. The value can be one of: `LastHour`, `LastDay`, `LastWeek`, `LastMonth`, `LastYear`.

View File

@@ -5,7 +5,7 @@ description: Tube Archivist Widget Configuration
Learn more about [Tube Archivist](https://github.com/tubearchivist/tubearchivist). Learn more about [Tube Archivist](https://github.com/tubearchivist/tubearchivist).
Requires API key. You must be running at least version 0.4.4
Allowed fields: `["downloads", "videos", "channels", "playlists"]`. Allowed fields: `["downloads", "videos", "channels", "playlists"]`.
@@ -13,5 +13,5 @@ Allowed fields: `["downloads", "videos", "channels", "playlists"]`.
widget: widget:
type: tubearchivist type: tubearchivist
url: http://tubearchivist.host.or.ip url: http://tubearchivist.host.or.ip
key: apikeyapikeyapikeyapikeyapikey key: tubearchivistapikey
``` ```

View File

@@ -7,13 +7,19 @@ Learn more about [Unifi Controller](https://ui.com/).
_(Find the Unifi Controller information widget [here](../info/unifi_controller.md))_ _(Find the Unifi Controller information widget [here](../info/unifi_controller.md))_
You can display general connectivity status from your Unifi (Network) Controller. When authenticating you will want to use an account that has at least read privileges. You can display general connectivity status from your Unifi (Network) Controller.
!!!
When authenticating you will want to use a local account that has at least read privileges.
An optional 'site' parameter can be supplied, if it is not the widget will use the default site for the controller. An optional 'site' parameter can be supplied, if it is not the widget will use the default site for the controller.
Allowed fields: `["uptime", "wan", "lan", "lan_users", "lan_devices", "wlan", "wlan_users", "wlan_devices"]` (maximum of four). Allowed fields: `["uptime", "wan", "lan", "lan_users", "lan_devices", "wlan", "wlan_users", "wlan_devices"]` (maximum of four). Fields unsupported by the unifi device will not be shown.
Note that fields unsupported by the unifi device will not be shown. !!! hint
If you enter e.g. incorrect credentials and receive an "API Error", you may need to recreate the container to clear the cache.
```yaml ```yaml
widget: widget:

View File

@@ -0,0 +1,18 @@
---
title: Vikunja
description: Vikunja Widget Configuration
---
Learn more about [Vikunja](https://vikunja.io).
Allowed fields: `["projects", "tasks7d", "tasksOverdue", "tasksInProgress"]`.
A list of the next 5 tasks ordered by due date is disabled by default, but can be enabled with the `enableTaskList` option.
```yaml
widget:
type: vikunja
url: http[s]://vikunja.host.or.ip[:port]
key: vikunjaapikey
enableTaskList: true # optional, defaults to false
```

View File

@@ -5,7 +5,7 @@ description: Watchtower Widget Configuration
Learn more about [Watchtower](https://github.com/containrrr/watchtower). Learn more about [Watchtower](https://github.com/containrrr/watchtower).
To use this widget, Watchtower needs to be configured to to [enable metrics](https://containrrr.dev/watchtower/metrics/). To use this widget, Watchtower needs to be configured to [enable metrics](https://containrrr.dev/watchtower/metrics/).
Allowed fields: `["containers_scanned", "containers_updated", "containers_failed"]`. Allowed fields: `["containers_scanned", "containers_updated", "containers_failed"]`.

View File

@@ -0,0 +1,21 @@
---
title: Zabbix
description: Zabbix Widget Configuration
---
Learn more about [Zabbix](https://github.com/zabbix/zabbix). The widget supports (at least) Zibbax server version 7.0.
---
Allowed fields: `["unclassified", "information", "warning", "average", "high", "disaster"]`.
Only 4 fields can be shown at a time, with the default being: `["warning", "average", "high", "disaster"]`.
```yaml
widget:
type: zabbix
url: http://zabbix.host.or.ip/zabbix
key: your-api-key
```
See the [Zabbix documentation](https://www.zabbix.com/documentation/current/en/manual/web_interface/frontend_sections/users/api_tokens) for details on generating API tokens.

View File

@@ -31,12 +31,14 @@ nav:
- "Service Widgets": - "Service Widgets":
- widgets/services/index.md - widgets/services/index.md
- widgets/services/adguard-home.md - widgets/services/adguard-home.md
- widgets/services/argocd.md
- widgets/services/atsumeru.md - widgets/services/atsumeru.md
- widgets/services/audiobookshelf.md - widgets/services/audiobookshelf.md
- widgets/services/authentik.md - widgets/services/authentik.md
- widgets/services/autobrr.md - widgets/services/autobrr.md
- widgets/services/azuredevops.md - widgets/services/azuredevops.md
- widgets/services/bazarr.md - widgets/services/bazarr.md
- widgets/services/beszel.md
- widgets/services/caddy.md - widgets/services/caddy.md
- widgets/services/calendar.md - widgets/services/calendar.md
- widgets/services/calibre-web.md - widgets/services/calibre-web.md
@@ -47,6 +49,7 @@ nav:
- widgets/services/crowdsec.md - widgets/services/crowdsec.md
- widgets/services/customapi.md - widgets/services/customapi.md
- widgets/services/deluge.md - widgets/services/deluge.md
- widgets/services/develancacheui.md
- widgets/services/diskstation.md - widgets/services/diskstation.md
- widgets/services/downloadstation.md - widgets/services/downloadstation.md
- widgets/services/emby.md - widgets/services/emby.md
@@ -55,16 +58,19 @@ nav:
- widgets/services/fileflows.md - widgets/services/fileflows.md
- widgets/services/flood.md - widgets/services/flood.md
- widgets/services/freshrss.md - widgets/services/freshrss.md
- widgets/services/frigate.md
- widgets/services/fritzbox.md - widgets/services/fritzbox.md
- widgets/services/gamedig.md - widgets/services/gamedig.md
- widgets/services/gatus.md - widgets/services/gatus.md
- widgets/services/ghostfolio.md - widgets/services/ghostfolio.md
- widgets/services/gitea.md - widgets/services/gitea.md
- widgets/services/gitlab.md
- widgets/services/glances.md - widgets/services/glances.md
- widgets/services/gluetun.md - widgets/services/gluetun.md
- widgets/services/gotify.md - widgets/services/gotify.md
- widgets/services/grafana.md - widgets/services/grafana.md
- widgets/services/hdhomerun.md - widgets/services/hdhomerun.md
- widgets/services/headscale.md
- widgets/services/healthchecks.md - widgets/services/healthchecks.md
- widgets/services/homeassistant.md - widgets/services/homeassistant.md
- widgets/services/homebox.md - widgets/services/homebox.md
@@ -79,7 +85,10 @@ nav:
- widgets/services/komga.md - widgets/services/komga.md
- widgets/services/kopia.md - widgets/services/kopia.md
- widgets/services/lidarr.md - widgets/services/lidarr.md
- widgets/services/linkwarden.md
- widgets/services/lubelogger.md
- widgets/services/mastodon.md - widgets/services/mastodon.md
- widgets/services/mailcow.md
- widgets/services/mealie.md - widgets/services/mealie.md
- widgets/services/medusa.md - widgets/services/medusa.md
- widgets/services/mikrotik.md - widgets/services/mikrotik.md
@@ -114,6 +123,7 @@ nav:
- widgets/services/plex.md - widgets/services/plex.md
- widgets/services/portainer.md - widgets/services/portainer.md
- widgets/services/prometheus.md - widgets/services/prometheus.md
- widgets/services/prometheusmetric.md
- widgets/services/prowlarr.md - widgets/services/prowlarr.md
- widgets/services/proxmox.md - widgets/services/proxmox.md
- widgets/services/proxmoxbackupserver.md - widgets/services/proxmoxbackupserver.md
@@ -129,11 +139,14 @@ nav:
- widgets/services/scrutiny.md - widgets/services/scrutiny.md
- widgets/services/sonarr.md - widgets/services/sonarr.md
- widgets/services/speedtest-tracker.md - widgets/services/speedtest-tracker.md
- widgets/services/spoolman.md
- widgets/services/stash.md - widgets/services/stash.md
- widgets/services/stocks.md
- widgets/services/swagdashboard.md - widgets/services/swagdashboard.md
- widgets/services/syncthing-relay-server.md - widgets/services/syncthing-relay-server.md
- widgets/services/tailscale.md - widgets/services/tailscale.md
- widgets/services/tandoor.md - widgets/services/tandoor.md
- widgets/services/technitium.md
- widgets/services/tdarr.md - widgets/services/tdarr.md
- widgets/services/traefik.md - widgets/services/traefik.md
- widgets/services/transmission.md - widgets/services/transmission.md
@@ -144,10 +157,12 @@ nav:
- widgets/services/uptime-kuma.md - widgets/services/uptime-kuma.md
- widgets/services/uptimerobot.md - widgets/services/uptimerobot.md
- widgets/services/urbackup.md - widgets/services/urbackup.md
- widgets/services/vikunja.md
- widgets/services/watchtower.md - widgets/services/watchtower.md
- widgets/services/wgeasy.md - widgets/services/wgeasy.md
- widgets/services/whatsupdocker.md - widgets/services/whatsupdocker.md
- widgets/services/xteve.md - widgets/services/xteve.md
- widgets/services/zabbix.md
- "Information Widgets": - "Information Widgets":
- widgets/info/index.md - widgets/info/index.md
- widgets/info/datetime.md - widgets/info/datetime.md
@@ -160,6 +175,7 @@ nav:
- widgets/info/openweathermap.md - widgets/info/openweathermap.md
- widgets/info/resources.md - widgets/info/resources.md
- widgets/info/search.md - widgets/info/search.md
- widgets/info/stocks.md
- widgets/info/unifi_controller.md - widgets/info/unifi_controller.md
- widgets/info/weather.md - widgets/info/weather.md
- "Learn": - "Learn":
@@ -223,12 +239,8 @@ theme:
extra_css: extra_css:
- "stylesheets/extra.css" - "stylesheets/extra.css"
extra_javascript:
- "scripts/extra.js"
extra: extra:
version:
provider: mike
social: social:
- icon: fontawesome/brands/discord - icon: fontawesome/brands/discord
link: https://discord.gg/k4ruYNrudu link: https://discord.gg/k4ruYNrudu

View File

@@ -84,12 +84,12 @@ function prettyBytes(number, options) {
return `${prefix + numberString} ${unit}`; return `${prefix + numberString} ${unit}`;
} }
function uptime(uptimeInSeconds, i18next) { function duration(durationInSeconds, i18next) {
const mo = Math.floor(uptimeInSeconds / (3600 * 24 * 31)); const mo = Math.floor(durationInSeconds / (3600 * 24 * 31));
const d = Math.floor((uptimeInSeconds % (3600 * 24 * 31)) / (3600 * 24)); const d = Math.floor((durationInSeconds % (3600 * 24 * 31)) / (3600 * 24));
const h = Math.floor((uptimeInSeconds % (3600 * 24)) / 3600); const h = Math.floor((durationInSeconds % (3600 * 24)) / 3600);
const m = Math.floor((uptimeInSeconds % 3600) / 60); const m = Math.floor((durationInSeconds % 3600) / 60);
const s = Math.floor(uptimeInSeconds % 60); const s = Math.floor(durationInSeconds % 60);
const moDisplay = mo > 0 ? mo + i18next.t("common.months") : ""; const moDisplay = mo > 0 ? mo + i18next.t("common.months") : "";
const dDisplay = d > 0 ? d + i18next.t("common.days") : ""; const dDisplay = d > 0 ? d + i18next.t("common.days") : "";
@@ -156,7 +156,7 @@ module.exports = {
i18next.services.formatter.add("relativeDate", (value, lng, options) => i18next.services.formatter.add("relativeDate", (value, lng, options) =>
relativeDate(new Date(value), new Intl.RelativeTimeFormat(lng, { ...options })), relativeDate(new Date(value), new Intl.RelativeTimeFormat(lng, { ...options })),
); );
i18next.services.formatter.add("uptime", (value, lng) => uptime(value, i18next)); i18next.services.formatter.add("duration", (value, lng) => duration(value, i18next));
}, },
type: "3rdParty", type: "3rdParty",
}, },

1468
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
{ {
"name": "startpage", "name": "homepage",
"version": "0.1.0", "version": "0.9.6",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "next dev", "dev": "next dev",
@@ -16,19 +16,19 @@
"classnames": "^2.5.1", "classnames": "^2.5.1",
"compare-versions": "^6.1.0", "compare-versions": "^6.1.0",
"dockerode": "^4.0.2", "dockerode": "^4.0.2",
"follow-redirects": "^1.15.6", "follow-redirects": "^1.15.9",
"gamedig": "^4.3.1", "gamedig": "^5.1.2",
"i18next": "^21.10.0", "i18next": "^21.10.0",
"js-yaml": "^4.1.0", "js-yaml": "^4.1.0",
"json-rpc-2.0": "^1.7.0", "json-rpc-2.0": "^1.7.0",
"luxon": "^3.4.4", "luxon": "^3.5.0",
"memory-cache": "^0.2.0", "memory-cache": "^0.2.0",
"minecraft-ping-js": "^1.0.2", "minecraft-ping-js": "^1.0.2",
"next": "^14.2.4", "next": "^14.2.4",
"next-i18next": "^12.1.0", "next-i18next": "^12.1.0",
"ping": "^0.4.4", "ping": "^0.4.4",
"pretty-bytes": "^6.1.1", "pretty-bytes": "^6.1.1",
"raw-body": "^2.5.2", "raw-body": "^3.0.0",
"react": "^18.3.1", "react": "^18.3.1",
"react-dom": "^18.3.1", "react-dom": "^18.3.1",
"react-i18next": "^11.18.6", "react-i18next": "^11.18.6",
@@ -36,29 +36,29 @@
"recharts": "^2.12.7", "recharts": "^2.12.7",
"rrule": "^2.8.1", "rrule": "^2.8.1",
"swr": "^1.3.0", "swr": "^1.3.0",
"systeminformation": "^5.22.11", "systeminformation": "^5.23.2",
"tough-cookie": "^4.1.4", "tough-cookie": "^4.1.4",
"urbackup-server-api": "^0.8.9", "urbackup-server-api": "^0.8.9",
"winston": "^3.13.0", "winston": "^3.13.0",
"xml-js": "^1.6.11" "xml-js": "^1.6.11"
}, },
"devDependencies": { "devDependencies": {
"@tailwindcss/forms": "^0.5.7", "@tailwindcss/forms": "^0.5.8",
"autoprefixer": "^10.4.19", "autoprefixer": "^10.4.20",
"eslint": "^8.57.0", "eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^14.2.4", "eslint-config-next": "^14.2.4",
"eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1", "eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.9.0", "eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^4.2.1", "eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.34.3", "eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2", "eslint-plugin-react-hooks": "^4.6.2",
"postcss": "^8.4.38", "postcss": "^8.4.48",
"prettier": "^3.3.2", "prettier": "^3.3.2",
"tailwind-scrollbar": "^3.0.5", "tailwind-scrollbar": "^3.0.5",
"tailwindcss": "^3.4.4", "tailwindcss": "^3.4.14",
"typescript": "^5.4.5" "typescript": "^5.6.3"
}, },
"optionalDependencies": { "optionalDependencies": {
"osx-temperature-sensor": "^1.0.8" "osx-temperature-sensor": "^1.0.8"

6585
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "ma", "months": "ma",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -226,6 +226,10 @@
"leech": "Seier", "leech": "Seier",
"seed": "Vul" "seed": "Vul"
}, },
"develancacheui": {
"cachehitbytes": "Kas Tref Grepe",
"cachemissbytes": "Kas Mis Grepe"
},
"downloadstation": { "downloadstation": {
"download": "Aflaai", "download": "Aflaai",
"upload": "Laai Op", "upload": "Laai Op",
@@ -305,6 +309,16 @@
"stopped": "Gestop", "stopped": "Gestop",
"total": "Totaal" "total": "Totaal"
}, },
"suwayomi": {
"download": "Afgelaai",
"nondownload": "Nie-Afgelaai",
"read": "Gelees",
"unread": "Ongelees",
"downloadedread": "Afgelaai & Gelees",
"downloadedunread": "Afgelaai en Ongelees",
"nondownloadedread": "Nie-Afgelaai & Gelees",
"nondownloadedunread": "Nie-Afgelaai & Ongelees"
},
"tailscale": { "tailscale": {
"address": "Adres", "address": "Adres",
"expires": "Verval", "expires": "Verval",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Terug" "ago": "{{value}} Terug"
}, },
"technitium": {
"totalQueries": "Navraë",
"totalNoError": "Sukses",
"totalServerFailure": "Mislukkings",
"totalNxDomain": "NX-domeine",
"totalRefused": "Geweier",
"totalAuthoritative": "Gesaghebbend",
"totalRecursive": "Rekursief",
"totalCached": "Gekas",
"totalBlocked": "Geblok",
"totalDropped": "Geval",
"totalClients": "Kliënte"
},
"tdarr": { "tdarr": {
"queue": "Tou", "queue": "Tou",
"processed": "Verwerk", "processed": "Verwerk",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platform", "platforms": "Platform",
"totalRoms": "Totale ROMs" "totalRoms": "Spelle",
"saves": "Beware",
"states": "Toestande",
"screenshots": "Skermskote",
"totalfilesize": "Totale Grootte"
},
"mailcow": {
"domains": "Domeine",
"mailboxes": "Posbusse",
"mails": "E-posse",
"storage": "Bergplek"
}, },
"netdata": { "netdata": {
"warnings": "Waarskuwings", "warnings": "Waarskuwings",
@@ -884,9 +921,91 @@
"total": "Totaal" "total": "Totaal"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Gevolmagtig",
"auth": "With Auth", "auth": "Met Aut",
"outdated": "Outdated", "outdated": "Verouderd",
"banned": "Banned" "banned": "Verban"
},
"myspeed": {
"ping": "Pieng",
"download": "Aflaai",
"upload": "Laai Op"
},
"stocks": {
"stocks": "Aandele",
"loading": "Laai",
"open": "Oop - VS Mark",
"closed": "Toe - VS Mark",
"invalidConfiguration": "Ongeldige opstelling"
},
"frigate": {
"cameras": "Kameras",
"uptime": "Optyd",
"version": "Weergawe"
},
"linkwarden": {
"links": "Skakels",
"collections": "Versamelings",
"tags": "Merkers"
},
"zabbix": {
"unclassified": "Nie geklassifiseer nie",
"information": "Informasie",
"warning": "Waarskuwing",
"average": "Gemiddeld",
"high": "Hoog",
"disaster": "Ramp"
},
"lubelogger": {
"vehicle": "Voertuig",
"vehicles": "Voertuie",
"serviceRecords": "Diensrekords",
"reminders": "Herinneringe",
"nextReminder": "Volgende Herinnering",
"none": "Geen"
},
"vikunja": {
"projects": "Aktiewe Projekte",
"tasks7d": "Take Hierdie week",
"tasksOverdue": "Agterstallige Take",
"tasksInProgress": "Take Aan Die Gang"
},
"headscale": {
"name": "Naam",
"address": "Adres",
"last_seen": "Laaste Gesien",
"status": "Status",
"online": "Aanlyn",
"offline": "Vanlyn"
},
"beszel": {
"name": "Naam",
"systems": "Stelsels",
"up": "Op",
"status": "Status",
"updated": "Opgedateer",
"cpu": "SVE",
"memory": "GEH",
"disk": "Skyf",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Gesond",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Vermis",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Laai"
},
"gitlab": {
"groups": "Groups",
"issues": "Kwessies",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "ش", "months": "ش",
"days": "ي", "days": "ي",
"hours": "س", "hours": "س",
@@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "في انتظار قطع الاتصال", "connectionStatusPendingDisconnect": "في انتظار قطع الاتصال",
"connectionStatusDisconnecting": "جار قطع الاتصال", "connectionStatusDisconnecting": "جار قطع الاتصال",
"connectionStatusDisconnected": "غير متصل", "connectionStatusDisconnected": "غير متصل",
"connectionStatusConnected": "Connected", "connectionStatusConnected": "متصل",
"uptime": "مدة التشغيل", "uptime": "مدة التشغيل",
"maxDown": "أقصى حد للتنزيل", "maxDown": "أقصى حد للتنزيل",
"maxUp": "أقصى حد للتحميل", "maxUp": "أقصى حد للتحميل",
@@ -226,6 +226,10 @@
"leech": "القرناء", "leech": "القرناء",
"seed": "البذور" "seed": "البذور"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "التنزيل", "download": "التنزيل",
"upload": "التحميل", "upload": "التحميل",
@@ -279,9 +283,9 @@
}, },
"netalertx": { "netalertx": {
"total": "المجموع", "total": "المجموع",
"connected": "Connected", "connected": "متصل",
"new_devices": "New Devices", "new_devices": "أجهزة جديدة",
"down_alerts": "Down Alerts" "down_alerts": "تنبيهات تعطل"
}, },
"pihole": { "pihole": {
"queries": "الاستعلامات", "queries": "الاستعلامات",
@@ -305,6 +309,16 @@
"stopped": "متوقف", "stopped": "متوقف",
"total": "المجموع" "total": "المجموع"
}, },
"suwayomi": {
"download": "مُنزل",
"nondownload": "Non-Downloaded",
"read": "قراءة",
"unread": "غير مقروءة",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "عنوان", "address": "عنوان",
"expires": "تنتهي", "expires": "تنتهي",
@@ -319,6 +333,19 @@
"seconds": "{{number}}ث", "seconds": "{{number}}ث",
"ago": "منذ {{value}}" "ago": "منذ {{value}}"
}, },
"technitium": {
"totalQueries": "الاستعلامات",
"totalNoError": "تم بنجاح",
"totalServerFailure": "فشل",
"totalNxDomain": "مجالات NX",
"totalRefused": "مرفوض",
"totalAuthoritative": "موثوقة",
"totalRecursive": "عودي",
"totalCached": "مخبأ",
"totalBlocked": "محظور",
"totalDropped": "أسقطت",
"totalClients": "العملاء"
},
"tdarr": { "tdarr": {
"queue": "إنتظار", "queue": "إنتظار",
"processed": "معالجة", "processed": "معالجة",
@@ -427,7 +454,7 @@
"custom": "مُخصّص", "custom": "مُخصّص",
"visit": "زيارة", "visit": "زيارة",
"url": "الرابط", "url": "الرابط",
"searchsuggestion": "Suggestion" "searchsuggestion": "الإقتراحات"
}, },
"wmo": { "wmo": {
"0-day": "مشمس", "0-day": "مشمس",
@@ -544,7 +571,7 @@
"hdhomerun": { "hdhomerun": {
"channels": "القنوات", "channels": "القنوات",
"hd": "جودة HD", "hd": "جودة HD",
"tunerCount": "Tuners", "tunerCount": "التونز",
"channelNumber": "القناة", "channelNumber": "القناة",
"channelNetwork": "الشبكة", "channelNetwork": "الشبكة",
"signalStrength": "القوة", "signalStrength": "القوة",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "المِنصات", "platforms": "المِنصات",
"totalRoms": "مجموع الروومات" "totalRoms": "ألعاب",
"saves": "نُقَط حفظ",
"states": "حالات",
"screenshots": "لقطات شاشة",
"totalfilesize": "الحجم الكلي"
},
"mailcow": {
"domains": "مجالات",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "التخزين"
}, },
"netdata": { "netdata": {
"warnings": "تحذيرات", "warnings": "تحذيرات",
@@ -846,7 +883,7 @@
}, },
"stash": { "stash": {
"scenes": "المشاهد", "scenes": "المشاهد",
"scenesPlayed": "Scenes Played", "scenesPlayed": "مشاهد شغلت",
"playCount": "إجمالي المشغلات", "playCount": "إجمالي المشغلات",
"playDuration": "وقت المشاهدة", "playDuration": "وقت المشاهدة",
"sceneSize": "حجم المشاهد", "sceneSize": "حجم المشاهد",
@@ -854,7 +891,7 @@
"images": "صور", "images": "صور",
"imageSize": "حجم الصور", "imageSize": "حجم الصور",
"galleries": "المعارض", "galleries": "المعارض",
"performers": "Performers", "performers": "ممثلين",
"studios": "استوديوهات", "studios": "استوديوهات",
"movies": "أفلام", "movies": "أفلام",
"tags": "التصنيفات", "tags": "التصنيفات",
@@ -863,11 +900,11 @@
"tandoor": { "tandoor": {
"users": "المستخدمون", "users": "المستخدمون",
"recipes": "وصفات", "recipes": "وصفات",
"keywords": "Keywords" "keywords": "كلمات مفتاح"
}, },
"homebox": { "homebox": {
"items": "Items", "items": "عناصر",
"totalWithWarranty": "With Warranty", "totalWithWarranty": "بالضمان",
"locations": "Locations", "locations": "Locations",
"labels": "Labels", "labels": "Labels",
"users": "المستخدمون", "users": "المستخدمون",
@@ -878,7 +915,7 @@
"bans": "Bans" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "متصل",
"enabled": "مفعل", "enabled": "مفعل",
"disabled": "معطل", "disabled": "معطل",
"total": "المجموع" "total": "المجموع"
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "بينغ",
"download": "التنزيل",
"upload": "التحميل"
},
"stocks": {
"stocks": "Stocks",
"loading": "تحميل",
"open": "مفتوحة - السوق الأمريكية",
"closed": "مغلقة - السوق الأمريكية",
"invalidConfiguration": "إعدادات غير صحيحة"
},
"frigate": {
"cameras": "كاميرات",
"uptime": "مدة التشغيل",
"version": "الإصدار"
},
"linkwarden": {
"links": "روابط",
"collections": "مجموعات",
"tags": "التصنيفات"
},
"zabbix": {
"unclassified": "غير مصنفة",
"information": "معلومات",
"warning": "تحذيرات",
"average": "متوسط",
"high": "عالي",
"disaster": "كارثة"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "الاسم",
"address": "عنوان",
"last_seen": "آخر ظهور",
"status": "الحالة",
"online": "مُتّصل",
"offline": "غير متصل"
},
"beszel": {
"name": "الاسم",
"systems": "Systems",
"up": "يعمل",
"status": "الحالة",
"updated": "محدث",
"cpu": "المعالج",
"memory": "الذاكرة",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "سليم",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "مفقود",
"suspended": "Suspended"
},
"spoolman": {
"loading": "تحميل"
},
"gitlab": {
"groups": "Groups",
"issues": "المُشكِلات",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,10 +13,10 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "ч",
"minutes": "m", "minutes": "m",
"seconds": "s" "seconds": "s"
}, },
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
@@ -305,6 +309,16 @@
"stopped": "Спрян", "stopped": "Спрян",
"total": "Общо" "total": "Общо"
}, },
"suwayomi": {
"download": "Изтеглени",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -319,6 +333,19 @@
"seconds": "{{number}}сек", "seconds": "{{number}}сек",
"ago": "преди {{value}}" "ago": "преди {{value}}"
}, },
"technitium": {
"totalQueries": "Заявки",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Блокирани",
"totalDropped": "Dropped",
"totalClients": "Clients"
},
"tdarr": { "tdarr": {
"queue": "Опашка", "queue": "Опашка",
"processed": "Processed", "processed": "Processed",
@@ -412,7 +439,7 @@
"free": "Свободни", "free": "Свободни",
"used": "Заети", "used": "Заети",
"days": "d", "days": "d",
"hours": "h", "hours": "ч",
"crit": "Crit", "crit": "Crit",
"read": "Read", "read": "Read",
"write": "Write", "write": "Write",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Platforms",
"totalRoms": "Total ROMs" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domains",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Warnings",
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Uptime",
"version": "Version"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Тагове"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Информация",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Последно видян",
"status": "Статус",
"online": "Online",
"offline": "Изключен"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"status": "Статус",
"updated": "Updated",
"cpu": "Процесор",
"memory": "Памет",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Липсващи",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mes", "months": "mes",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -36,7 +36,7 @@
"wait": "Si us plau, espereu" "wait": "Si us plau, espereu"
}, },
"search": { "search": {
"placeholder": "Cercar…" "placeholder": "Cerca…"
}, },
"resources": { "resources": {
"cpu": "CPU", "cpu": "CPU",
@@ -125,8 +125,8 @@
"flood": { "flood": {
"download": "Descarregar", "download": "Descarregar",
"upload": "Pujada", "upload": "Pujada",
"leech": "Company", "leech": "Sangonera",
"seed": "Llavor" "seed": "Llavors"
}, },
"freshrss": { "freshrss": {
"subscriptions": "Subcripcions", "subscriptions": "Subcripcions",
@@ -203,14 +203,14 @@
"transmission": { "transmission": {
"download": "Descarregar", "download": "Descarregar",
"upload": "Pujada", "upload": "Pujada",
"leech": "Company", "leech": "Sangonera",
"seed": "Llavor" "seed": "Llavors"
}, },
"qbittorrent": { "qbittorrent": {
"download": "Descarregar", "download": "Descarregar",
"upload": "Pujada", "upload": "Pujada",
"leech": "Company", "leech": "Sangonera",
"seed": "Llavor" "seed": "Llavors"
}, },
"qnap": { "qnap": {
"cpuUsage": "Ús de CPU", "cpuUsage": "Ús de CPU",
@@ -223,14 +223,18 @@
"deluge": { "deluge": {
"download": "Descarregar", "download": "Descarregar",
"upload": "Pujada", "upload": "Pujada",
"leech": "Company", "leech": "Sangonera",
"seed": "Llavor" "seed": "Llavors"
},
"develancacheui": {
"cachehitbytes": "Bytes trobats a la memòria cau",
"cachemissbytes": "Bytes no trobats a la memòria cau"
}, },
"downloadstation": { "downloadstation": {
"download": "Descarregar", "download": "Descarregar",
"upload": "Pujada", "upload": "Pujada",
"leech": "Company", "leech": "Sangonera",
"seed": "Llavor" "seed": "Llavors"
}, },
"sonarr": { "sonarr": {
"wanted": "Volgut", "wanted": "Volgut",
@@ -241,7 +245,7 @@
}, },
"radarr": { "radarr": {
"wanted": "Volgut", "wanted": "Volgut",
"missing": "Faltant", "missing": "Falten",
"queued": "En cua", "queued": "En cua",
"movies": "Pel·lícules", "movies": "Pel·lícules",
"queue": "Cua", "queue": "Cua",
@@ -305,6 +309,16 @@
"stopped": "Aturat", "stopped": "Aturat",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Descarregat",
"nondownload": "No descarregat",
"read": "Llegit",
"unread": "Sense llegir",
"downloadedread": "Descarregat i llegit",
"downloadedunread": "Descarregat i per llegir",
"nondownloadedread": "No descarregat i llegit",
"nondownloadedunread": "No descarregat i per llegir"
},
"tailscale": { "tailscale": {
"address": "Adreça", "address": "Adreça",
"expires": "Caduca", "expires": "Caduca",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "Fa {{value}}" "ago": "Fa {{value}}"
}, },
"technitium": {
"totalQueries": "Consultes",
"totalNoError": "Èxits",
"totalServerFailure": "Fallades",
"totalNxDomain": "Dominis NX",
"totalRefused": "Rebutjat",
"totalAuthoritative": "Autoritatiu",
"totalRecursive": "Recursiu",
"totalCached": "A la memòria cau",
"totalBlocked": "Bloquejat",
"totalDropped": "Abandonat",
"totalClients": "Clients"
},
"tdarr": { "tdarr": {
"queue": "Cua", "queue": "Cua",
"processed": "Processat", "processed": "Processat",
@@ -386,7 +413,7 @@
"down": "Fora de línia" "down": "Fora de línia"
}, },
"miniflux": { "miniflux": {
"read": "Llegir", "read": "Llegit",
"unread": "Sense llegir" "unread": "Sense llegir"
}, },
"authentik": { "authentik": {
@@ -414,8 +441,8 @@
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Crític", "crit": "Crític",
"read": "Llegir", "read": "Llegit",
"write": "Escriure", "write": "Escriptura",
"gpu": "GPU", "gpu": "GPU",
"mem": "Mem", "mem": "Mem",
"swap": "Intercanvi" "swap": "Intercanvi"
@@ -423,9 +450,9 @@
"quicklaunch": { "quicklaunch": {
"bookmark": "Marcador", "bookmark": "Marcador",
"service": "Servei", "service": "Servei",
"search": "Cercar", "search": "Cerca",
"custom": "Personalitzat", "custom": "Personalitzat",
"visit": "Visitar", "visit": "Visita",
"url": "URL", "url": "URL",
"searchsuggestion": "Suggeriment" "searchsuggestion": "Suggeriment"
}, },
@@ -581,7 +608,7 @@
"numberOfLeases": "IPs assignades" "numberOfLeases": "IPs assignades"
}, },
"xteve": { "xteve": {
"streams_all": "Tots els fluxos", "streams_all": "Tots els streams",
"streams_active": "Transmissions actives", "streams_active": "Transmissions actives",
"streams_xepg": "Canals XEPG" "streams_xepg": "Canals XEPG"
}, },
@@ -600,7 +627,7 @@
"moonraker": { "moonraker": {
"printer_state": "Estat de l'impressora", "printer_state": "Estat de l'impressora",
"print_status": "Estat de l'impressió", "print_status": "Estat de l'impressió",
"print_progress": "Progress", "print_progress": "Progrés",
"layers": "Capes" "layers": "Capes"
}, },
"octoprint": { "octoprint": {
@@ -614,14 +641,14 @@
"status": "Estat" "status": "Estat"
}, },
"pfsense": { "pfsense": {
"load": "Promig Càrrega", "load": "Càrrega mitjana",
"memory": "Ús Memòria", "memory": "Ús Memòria",
"wanStatus": "Estat WAN", "wanStatus": "Estat WAN",
"up": "Actiu", "up": "Actiu",
"down": "Inactiu", "down": "Inactiu",
"temp": "Temp", "temp": "Temp",
"disk": "Ús Disc", "disk": "Ús Disc",
"wanIP": "WAN IP" "wanIP": "IP WAN"
}, },
"proxmoxbackupserver": { "proxmoxbackupserver": {
"datastore_usage": "Datastore", "datastore_usage": "Datastore",
@@ -677,7 +704,7 @@
}, },
"grafana": { "grafana": {
"dashboards": "Taulells", "dashboards": "Taulells",
"datasources": "Origen de dades", "datasources": "Orígens de dades",
"totalalerts": "Alertes Totals", "totalalerts": "Alertes Totals",
"alertstriggered": "Alertes disparades" "alertstriggered": "Alertes disparades"
}, },
@@ -718,10 +745,10 @@
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Avui", "gross_percent_today": "Avui",
"gross_percent_1y": "Un any", "gross_percent_1y": "Un any",
"gross_percent_max": "Tot" "gross_percent_max": "Sempre"
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasts", "podcasts": "Pòdcasts",
"books": "Llibres", "books": "Llibres",
"podcastsDuration": "Durada", "podcastsDuration": "Durada",
"booksDuration": "Durada" "booksDuration": "Durada"
@@ -760,8 +787,8 @@
"failed": "Error", "failed": "Error",
"canceled": "Cancel·lat", "canceled": "Cancel·lat",
"inProgress": "En curs", "inProgress": "En curs",
"totalPrs": "RP Totals", "totalPrs": "PRs Totals",
"myPrs": "Els meus RP", "myPrs": "Les meves PRs",
"approved": "Aprovat" "approved": "Aprovat"
}, },
"gamedig": { "gamedig": {
@@ -798,7 +825,7 @@
}, },
"openwrt": { "openwrt": {
"uptime": "Temps actiu", "uptime": "Temps actiu",
"cpuLoad": "Càrrega promig de CPU (5m)", "cpuLoad": "Càrrega mitjana de CPU (5min)",
"up": "Actiu", "up": "Actiu",
"down": "Inactiu", "down": "Inactiu",
"bytesTx": "Enviat", "bytesTx": "Enviat",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Plataformes", "platforms": "Plataformes",
"totalRoms": "ROMs totals" "totalRoms": "Jocs",
"saves": "Partides desades",
"states": "Estats",
"screenshots": "Captures de pantalla",
"totalfilesize": "Tamany total"
},
"mailcow": {
"domains": "Dominis",
"mailboxes": "Bústies",
"mails": "Correus",
"storage": "Emmagatzematge"
}, },
"netdata": { "netdata": {
"warnings": "Avisos", "warnings": "Avisos",
@@ -849,10 +886,10 @@
"scenesPlayed": "Escenes reproduïdes", "scenesPlayed": "Escenes reproduïdes",
"playCount": "Total reproduccions", "playCount": "Total reproduccions",
"playDuration": "Temps visionat", "playDuration": "Temps visionat",
"sceneSize": "Tamany Escena", "sceneSize": "Tamany d'escenes",
"sceneDuration": "Duració Escenes", "sceneDuration": "Duració Escenes",
"images": "Imatges", "images": "Imatges",
"imageSize": "Mida Imatges", "imageSize": "Tamany d'imatges",
"galleries": "Biblioteques", "galleries": "Biblioteques",
"performers": "Intèrprets", "performers": "Intèrprets",
"studios": "Estudis", "studios": "Estudis",
@@ -884,9 +921,91 @@
"total": "Total" "total": "Total"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Intermediat",
"auth": "With Auth", "auth": "Amb autentificació",
"outdated": "Outdated", "outdated": "Obsolet",
"banned": "Banned" "banned": "Bloquejat"
},
"myspeed": {
"ping": "Latència",
"download": "Descarregar",
"upload": "Pujada"
},
"stocks": {
"stocks": "Accions",
"loading": "Carregant",
"open": "Obert - Mercat EEUU",
"closed": "Tancat - Mercat EEUU",
"invalidConfiguration": "Configuració no vàlida"
},
"frigate": {
"cameras": "Càmeres",
"uptime": "Temps actiu",
"version": "Versió"
},
"linkwarden": {
"links": "Enllaços",
"collections": "Col·leccions",
"tags": "Etiquetes"
},
"zabbix": {
"unclassified": "No classificat",
"information": "Informació",
"warning": "Avís",
"average": "Mitjana",
"high": "Alt",
"disaster": "Desastre"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Constàncies de manteniment",
"reminders": "Recordatoris",
"nextReminder": "Proper recordatori",
"none": "Cap"
},
"vikunja": {
"projects": "Projectes actius",
"tasks7d": "Tasques a completar aquesta setmana",
"tasksOverdue": "Tasques vençudes",
"tasksInProgress": "Tasques en marxa"
},
"headscale": {
"name": "Nom",
"address": "Adreça",
"last_seen": "Vist per darrer cop",
"status": "Estat",
"online": "En línia",
"offline": "Fora de línia"
},
"beszel": {
"name": "Nom",
"systems": "Sistemes",
"up": "Actiu",
"status": "Estat",
"updated": "Actualitzat",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disc",
"network": "XARXA"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Saludable",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Falten",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Carregant"
},
"gitlab": {
"groups": "Groups",
"issues": "Problemes",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "měs.", "months": "měs.",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Čeká na odpojení", "connectionStatusPendingDisconnect": "Čeká na odpojení",
"connectionStatusDisconnecting": "Odpojování", "connectionStatusDisconnecting": "Odpojování",
"connectionStatusDisconnected": "Odpojeno", "connectionStatusDisconnected": "Odpojeno",
"connectionStatusConnected": "Connected", "connectionStatusConnected": "",
"uptime": "Doba spuštění", "uptime": "Doba spuštění",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
@@ -226,6 +226,10 @@
"leech": "Leechované", "leech": "Leechované",
"seed": "Seedované" "seed": "Seedované"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Stahování", "download": "Stahování",
"upload": "Nahrávání", "upload": "Nahrávání",
@@ -279,8 +283,8 @@
}, },
"netalertx": { "netalertx": {
"total": "Celkem", "total": "Celkem",
"connected": "Connected", "connected": "",
"new_devices": "New Devices", "new_devices": "",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
}, },
"pihole": { "pihole": {
@@ -305,6 +309,16 @@
"stopped": "Zastaveno", "stopped": "Zastaveno",
"total": "Celkem" "total": "Celkem"
}, },
"suwayomi": {
"download": "Staženo",
"nondownload": "Non-Downloaded",
"read": "Přečteno",
"unread": "Nepřečteno",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Adresa", "address": "Adresa",
"expires": "Vyprší", "expires": "Vyprší",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "Před {{value}}" "ago": "Před {{value}}"
}, },
"technitium": {
"totalQueries": "Dotazy",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blokováno",
"totalDropped": "Dropped",
"totalClients": "Klienti"
},
"tdarr": { "tdarr": {
"queue": "Fronta", "queue": "Fronta",
"processed": "Zpracováno", "processed": "Zpracováno",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Platforms",
"totalRoms": "Total ROMs" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domény",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Úložiště"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Warnings",
@@ -878,7 +915,7 @@
"bans": "Bans" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "",
"enabled": "Povoleno", "enabled": "Povoleno",
"disabled": "Zakázáno", "disabled": "Zakázáno",
"total": "Celkem" "total": "Celkem"
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Odezva",
"download": "Stahování",
"upload": "Nahrávání"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Doba spuštění",
"version": "Verze"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tags"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Informace",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Adresa",
"last_seen": "Naposledy viděno",
"status": "Stav",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"status": "Stav",
"updated": "Aktualizováno",
"cpu": "CPU",
"memory": "RAM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Zdravý",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Chybějící",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Problémy",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mnd", "months": "mnd",
"days": "d", "days": "d",
"hours": "t", "hours": "t",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
@@ -305,6 +309,16 @@
"stopped": "Stoppede", "stopped": "Stoppede",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Hentet",
"nondownload": "Non-Downloaded",
"read": "Læst",
"unread": "Ulæst",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Adresse", "address": "Adresse",
"expires": "Udløber", "expires": "Udløber",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Siden" "ago": "{{value}} Siden"
}, },
"technitium": {
"totalQueries": "Forespørgsler",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blokerede",
"totalDropped": "Dropped",
"totalClients": "Klienter"
},
"tdarr": { "tdarr": {
"queue": "Kø", "queue": "Kø",
"processed": "Behandlet", "processed": "Behandlet",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platforme", "platforms": "Platforme",
"totalRoms": "Total ROMs" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domæner",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Lager"
}, },
"netdata": { "netdata": {
"warnings": "Advarsler", "warnings": "Advarsler",
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Oppetid",
"version": "Version"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tags"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Information",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Navn",
"address": "Adresse",
"last_seen": "Sidst Set",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Navn",
"systems": "Systems",
"up": "Op",
"status": "Status",
"updated": "Opdateret",
"cpu": "CPU",
"memory": "RAM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Sund",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Mangler",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Problemer",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,8 +13,8 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mo", "months": "Mo.",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"minutes": "min", "minutes": "min",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache-Trefferbytes",
"cachemissbytes": "Cache-Fehlbytes"
},
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
@@ -301,10 +305,20 @@
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Werden ausgeführt", "running": "Wird ausgeführt",
"stopped": "Gestoppt", "stopped": "Gestoppt",
"total": "Gesamt" "total": "Gesamt"
}, },
"suwayomi": {
"download": "Heruntergeladen",
"nondownload": "Nicht heruntergeladen",
"read": "Gelesen",
"unread": "Ungelesen",
"downloadedread": "Heruntergeladen & gelesen",
"downloadedunread": "Heruntergeladen & ungelesen",
"nondownloadedread": "Nicht heruntergeladen & gelesen",
"nondownloadedunread": "Nicht heruntergeladen & ungelesen"
},
"tailscale": { "tailscale": {
"address": "Adresse", "address": "Adresse",
"expires": "Läuft ab", "expires": "Läuft ab",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "Vor {{value}}" "ago": "Vor {{value}}"
}, },
"technitium": {
"totalQueries": "Anfragen",
"totalNoError": "Erfolgreich",
"totalServerFailure": "Fehler",
"totalNxDomain": "NX-Domänen",
"totalRefused": "Verweigert",
"totalAuthoritative": "Autoritativ",
"totalRecursive": "Rekursiv",
"totalCached": "Im Cache",
"totalBlocked": "Blockiert",
"totalDropped": "Verworfen",
"totalClients": "Benutzer"
},
"tdarr": { "tdarr": {
"queue": "Warteschlange", "queue": "Warteschlange",
"processed": "Verarbeitet", "processed": "Verarbeitet",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Plattformen", "platforms": "Plattformen",
"totalRoms": "ROMs gesamt" "totalRoms": "Spiele",
"saves": "Spielstände",
"states": "Speicherstände",
"screenshots": "Bildschirmfotos",
"totalfilesize": "Gesamtgröße"
},
"mailcow": {
"domains": "Domänen",
"mailboxes": "Postfächer",
"mails": "E-Mails",
"storage": "Speicher"
}, },
"netdata": { "netdata": {
"warnings": "Warnungen", "warnings": "Warnungen",
@@ -888,5 +925,87 @@
"auth": "Mit Auth", "auth": "Mit Auth",
"outdated": "Veraltet", "outdated": "Veraltet",
"banned": "Gebannt" "banned": "Gebannt"
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
},
"stocks": {
"stocks": "Aktien",
"loading": "Wird geladen",
"open": "Offen - US-Markt",
"closed": "Geschlossen - US-Markt",
"invalidConfiguration": "Ungültige Konfiguration"
},
"frigate": {
"cameras": "Kameras",
"uptime": "Betriebszeit",
"version": "Version"
},
"linkwarden": {
"links": "Links",
"collections": "Sammlungen",
"tags": "Schlagwörter"
},
"zabbix": {
"unclassified": "Nicht klassifiziert",
"information": "Informationen",
"warning": "Warnung",
"average": "Durchschnitt",
"high": "Hoch",
"disaster": "Katastrophe"
},
"lubelogger": {
"vehicle": "Fahrzeug",
"vehicles": "Fahrzeuge",
"serviceRecords": "Wartungseinträge",
"reminders": "Erinnerungen",
"nextReminder": "Nächste Erinnerung",
"none": "Keine"
},
"vikunja": {
"projects": "Aktive Projekte",
"tasks7d": "Diese Woche fällige Aufgaben",
"tasksOverdue": "Überfällige Aufgaben",
"tasksInProgress": "Aufgaben in Arbeit"
},
"headscale": {
"name": "Name",
"address": "Adresse",
"last_seen": "Zuletzt gesehen",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systeme",
"up": "Senden",
"status": "Status",
"updated": "Aktualisiert",
"cpu": "CPU",
"memory": "RAM",
"disk": "Festplatte",
"network": "NET"
},
"argocd": {
"apps": "Anwendungen",
"synced": "Synchronisiert",
"outOfSync": "Nicht mehr synchronisiert",
"healthy": "Fehlerfrei",
"degraded": "Beeinträchtigt",
"progressing": "Fortschritt",
"missing": "Fehlend",
"suspended": "Unterbrochen"
},
"spoolman": {
"loading": "Wird geladen"
},
"gitlab": {
"groups": "Groups",
"issues": "Probleme",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Λήξη", "download": "Λήξη",
"upload": "Μεταφόρτωση", "upload": "Μεταφόρτωση",
@@ -305,6 +309,16 @@
"stopped": "Σταματημένο", "stopped": "Σταματημένο",
"total": "Σύνολο" "total": "Σύνολο"
}, },
"suwayomi": {
"download": "Κατεβασμένο",
"nondownload": "Non-Downloaded",
"read": "Διαβάστηκε",
"unread": "Μη Διαβασμένο",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Διεύθυνση", "address": "Διεύθυνση",
"expires": "Λήγει", "expires": "Λήγει",
@@ -319,6 +333,19 @@
"seconds": "{{number}}δευτερόλεπτα", "seconds": "{{number}}δευτερόλεπτα",
"ago": "{{value}} πρίν" "ago": "{{value}} πρίν"
}, },
"technitium": {
"totalQueries": "Queries",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Αποκλεισμένο",
"totalDropped": "Dropped",
"totalClients": "Πελάτες"
},
"tdarr": { "tdarr": {
"queue": "Ουρά", "queue": "Ουρά",
"processed": "Σε επεξεργασία", "processed": "Σε επεξεργασία",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Platforms",
"totalRoms": "Total ROMs" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Τομείς",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Αποθηκευτικός χώρος"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Warnings",
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Λήξη",
"upload": "Μεταφόρτωση"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Χρόνος Λειτουργίας",
"version": "Έκδοση"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Ετικέτες"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Πληροφορία",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Όνομα",
"address": "Διεύθυνση",
"last_seen": "Τελευταία Σύνδεση",
"status": "Κατάσταση",
"online": "Συνδεδεμένοι",
"offline": "Εκτός σύνδεσης"
},
"beszel": {
"name": "Όνομα",
"systems": "Systems",
"up": "Ping up",
"status": "Κατάσταση",
"updated": "Ενημερώθηκε",
"cpu": "Επεξεργαστής",
"memory": "Μνήμη",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Υγειές",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Απουσιάζει",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
@@ -305,6 +309,16 @@
"stopped": "Stopped", "stopped": "Stopped",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Downloaded",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Ago" "ago": "{{value}} Ago"
}, },
"technitium": {
"totalQueries": "Queries",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blocked",
"totalDropped": "Dropped",
"totalClients": "Clients"
},
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "Queue",
"processed": "Processed", "processed": "Processed",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Platforms",
"totalRoms": "Total ROMs" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domains",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Warnings",
@@ -893,5 +930,82 @@
"ping": "Ping", "ping": "Ping",
"download": "Download", "download": "Download",
"upload": "Upload" "upload": "Upload"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Uptime",
"version": "Version"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tags"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Information",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"status": "Status",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Elŝuti", "download": "Elŝuti",
"upload": "Alŝuti", "upload": "Alŝuti",
@@ -305,6 +309,16 @@
"stopped": "Stopped", "stopped": "Stopped",
"total": "Totalo" "total": "Totalo"
}, },
"suwayomi": {
"download": "Downloaded",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Ago" "ago": "{{value}} Ago"
}, },
"technitium": {
"totalQueries": "Queries",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blocked",
"totalDropped": "Dropped",
"totalClients": "Klientoj"
},
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "Queue",
"processed": "Processed", "processed": "Processed",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Platforms",
"totalRoms": "Total ROMs" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domains",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Warnings",
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Sondaĵo",
"download": "Elŝuti",
"upload": "Alŝuti"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Uptime",
"version": "Version"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tags"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Informo",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Stato",
"online": "Online",
"offline": "Malkonekta"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"status": "Stato",
"updated": "Updated",
"cpu": "Ĉefprocesoro",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Sana",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -12,8 +12,8 @@
"number": "{{value, number}}", "number": "{{value, number}}",
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{valor, relativaFecha}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "me", "months": "me",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -31,7 +31,7 @@
}, },
"weather": { "weather": {
"current": "Ubicación actual", "current": "Ubicación actual",
"allow": "Clic para permitir", "allow": "Pulsa para permitir",
"updating": "Actualizando", "updating": "Actualizando",
"wait": "Espera, por favor" "wait": "Espera, por favor"
}, },
@@ -77,9 +77,9 @@
"unknown": "Desconocido", "unknown": "Desconocido",
"healthy": "Saludable", "healthy": "Saludable",
"starting": "Comenzando", "starting": "Comenzando",
"unhealthy": "Insalubre", "unhealthy": "No saludable",
"not_found": "No encontrado", "not_found": "No encontrado",
"exited": "Salida", "exited": "Terminado",
"partial": "Parcial" "partial": "Parcial"
}, },
"ping": { "ping": {
@@ -226,6 +226,10 @@
"leech": "Descargas", "leech": "Descargas",
"seed": "Semillas" "seed": "Semillas"
}, },
"develancacheui": {
"cachehitbytes": "Bytes encontrados en caché",
"cachemissbytes": "Bytes faltantes en caché"
},
"downloadstation": { "downloadstation": {
"download": "Descarga", "download": "Descarga",
"upload": "Subida", "upload": "Subida",
@@ -305,6 +309,16 @@
"stopped": "Detenido", "stopped": "Detenido",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Descargado",
"nondownload": "Non-Downloaded",
"read": "Leer",
"unread": "Sin leer",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Dirección", "address": "Dirección",
"expires": "Caduca en", "expires": "Caduca en",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "Hace {{value}}" "ago": "Hace {{value}}"
}, },
"technitium": {
"totalQueries": "Consultas",
"totalNoError": "Éxitos",
"totalServerFailure": "Fallas",
"totalNxDomain": "Dominios NX",
"totalRefused": "Rechazados",
"totalAuthoritative": "Autoritarios",
"totalRecursive": "Recursivos",
"totalCached": "En caché",
"totalBlocked": "Bloqueado",
"totalDropped": "Descartados",
"totalClients": "Clientes"
},
"tdarr": { "tdarr": {
"queue": "En cola", "queue": "En cola",
"processed": "Procesado", "processed": "Procesado",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Plataformas", "platforms": "Plataformas",
"totalRoms": "ROMs totales" "totalRoms": "Juegos",
"saves": "Guardados",
"states": "Estados",
"screenshots": "Capturas de pantalla",
"totalfilesize": "Tamaño total"
},
"mailcow": {
"domains": "Dominios",
"mailboxes": "Buzones de correo",
"mails": "Correos",
"storage": "Almacenamiento"
}, },
"netdata": { "netdata": {
"warnings": "Advertencias", "warnings": "Advertencias",
@@ -852,13 +889,13 @@
"sceneSize": "Tamaño de las escenas", "sceneSize": "Tamaño de las escenas",
"sceneDuration": "Duración de las escenas", "sceneDuration": "Duración de las escenas",
"images": "Imágenes", "images": "Imágenes",
"imageSize": "Tamaño de imagen", "imageSize": "Tamaño de las imágenes",
"galleries": "Galerías", "galleries": "Galerías",
"performers": "Intérpretes", "performers": "Intérpretes",
"studios": "Estudios", "studios": "Estudios",
"movies": "Películas", "movies": "Películas",
"tags": "Etiquetas", "tags": "Etiquetas",
"oCount": "O cuenta" "oCount": "Cantidad de O"
}, },
"tandoor": { "tandoor": {
"users": "Usuarios", "users": "Usuarios",
@@ -867,7 +904,7 @@
}, },
"homebox": { "homebox": {
"items": "Objetos", "items": "Objetos",
"totalWithWarranty": "Con Garantía", "totalWithWarranty": "Con garantía",
"locations": "Ubicaciones", "locations": "Ubicaciones",
"labels": "Etiquetas", "labels": "Etiquetas",
"users": "Usuarios", "users": "Usuarios",
@@ -884,9 +921,91 @@
"total": "Total" "total": "Total"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxy activado",
"auth": "With Auth", "auth": "Con autenticación",
"outdated": "Outdated", "outdated": "Desactualizado",
"banned": "Banned" "banned": "Baneado"
},
"myspeed": {
"ping": "Ping",
"download": "Descarga",
"upload": "Subida"
},
"stocks": {
"stocks": "Acciones",
"loading": "Cargando",
"open": "Abierto - Mercado EE. UU.",
"closed": "Cerrado - Mercado EE. UU.",
"invalidConfiguration": "Configuración inválida"
},
"frigate": {
"cameras": "Cámaras",
"uptime": "Tiempo activo",
"version": "Versión"
},
"linkwarden": {
"links": "Enlaces",
"collections": "Colecciones",
"tags": "Etiquetas"
},
"zabbix": {
"unclassified": "No clasificado",
"information": "Información",
"warning": "Advertencia",
"average": "Promedio",
"high": "Alto",
"disaster": "Desastre"
},
"lubelogger": {
"vehicle": "Vehículo",
"vehicles": "Vehículos",
"serviceRecords": "Registros de servicio",
"reminders": "Recordatorios",
"nextReminder": "Siguiente recordatorio",
"none": "Nada"
},
"vikunja": {
"projects": "Proyectos activos",
"tasks7d": "Tareas que vencen esta semana",
"tasksOverdue": "Tareas vencidas",
"tasksInProgress": "Tareas en progreso"
},
"headscale": {
"name": "Nombre",
"address": "Dirección",
"last_seen": "Visto por última vez",
"status": "Estado",
"online": "En línea",
"offline": "Desconectado"
},
"beszel": {
"name": "Nombre",
"systems": "Systems",
"up": "Activo",
"status": "Estado",
"updated": "Actualizado",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Saludable",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Faltantes",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Cargando"
},
"gitlab": {
"groups": "Groups",
"issues": "Números",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
@@ -305,6 +309,16 @@
"stopped": "Stopped", "stopped": "Stopped",
"total": "Guztira" "total": "Guztira"
}, },
"suwayomi": {
"download": "Downloaded",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Ago" "ago": "{{value}} Ago"
}, },
"technitium": {
"totalQueries": "Queries",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blocked",
"totalDropped": "Dropped",
"totalClients": "Clients"
},
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "Queue",
"processed": "Processed", "processed": "Processed",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Platforms",
"totalRoms": "Total ROMs" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domains",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Warnings",
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Uptime",
"version": "Version"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tags"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Informazioa",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"status": "Status",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Osasuntsu",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
@@ -305,6 +309,16 @@
"stopped": "Pysäytetty", "stopped": "Pysäytetty",
"total": "Yhteensä" "total": "Yhteensä"
}, },
"suwayomi": {
"download": "Ladattu",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Ago" "ago": "{{value}} Ago"
}, },
"technitium": {
"totalQueries": "Kyselyjä",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Estetty",
"totalDropped": "Dropped",
"totalClients": "Asiakasohjelmia"
},
"tdarr": { "tdarr": {
"queue": "Jono", "queue": "Jono",
"processed": "Processed", "processed": "Processed",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Platforms",
"totalRoms": "Total ROMs" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Verkkotunnuksia",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Warnings",
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Uptime",
"version": "Version"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tags"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Information",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Tila",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"status": "Tila",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mo", "months": "mo",
"days": "j", "days": "j",
"hours": "h", "hours": "h",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Octets de la mémoire cache",
"cachemissbytes": "Octets manquants du cache"
},
"downloadstation": { "downloadstation": {
"download": "Récep.", "download": "Récep.",
"upload": "Envoi", "upload": "Envoi",
@@ -305,6 +309,16 @@
"stopped": "Arrêté", "stopped": "Arrêté",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Téléchargé",
"nondownload": "Non téléchargé",
"read": "Lu",
"unread": "Non lu",
"downloadedread": "Téléchargé et lu",
"downloadedunread": "Téléchargé et non lu",
"nondownloadedread": "Non téléchargé et lu",
"nondownloadedunread": "Non téléchargé et non lu"
},
"tailscale": { "tailscale": {
"address": "Adresse", "address": "Adresse",
"expires": "Expire", "expires": "Expire",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "Il y a {{value}}" "ago": "Il y a {{value}}"
}, },
"technitium": {
"totalQueries": "Requêtes",
"totalNoError": "Effectué avec succès",
"totalServerFailure": "Échecs",
"totalNxDomain": "Domaines NX",
"totalRefused": "Refusés",
"totalAuthoritative": "Autoritaire",
"totalRecursive": "Récursif",
"totalCached": "Mis en cache",
"totalBlocked": "Bloqué",
"totalDropped": "Abandonné",
"totalClients": "Clients"
},
"tdarr": { "tdarr": {
"queue": "En attente", "queue": "En attente",
"processed": "Traité", "processed": "Traité",
@@ -739,7 +766,7 @@
"books": "Livres", "books": "Livres",
"authors": "Auteurs", "authors": "Auteurs",
"categories": "Catégories", "categories": "Catégories",
"series": "Séries" "series": "Séries TV"
}, },
"jdownloader": { "jdownloader": {
"downloadCount": "En attente", "downloadCount": "En attente",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Plateformes", "platforms": "Plateformes",
"totalRoms": "Total des ROMs" "totalRoms": "Jeux",
"saves": "Sauvegardes",
"states": "États",
"screenshots": "Captures d'écran",
"totalfilesize": "Taille totale"
},
"mailcow": {
"domains": "Domaines",
"mailboxes": "Boites mail",
"mails": "Courriels",
"storage": "Stockage"
}, },
"netdata": { "netdata": {
"warnings": "Avertissements", "warnings": "Avertissements",
@@ -888,5 +925,87 @@
"auth": "Avec authentification", "auth": "Avec authentification",
"outdated": "Obsolète", "outdated": "Obsolète",
"banned": "Banni" "banned": "Banni"
},
"myspeed": {
"ping": "Ping",
"download": "Récep.",
"upload": "Envoi"
},
"stocks": {
"stocks": "Actions",
"loading": "Chargement",
"open": "Ouvert - Marché américain",
"closed": "Fermé - marché américain",
"invalidConfiguration": "Configuration invalide"
},
"frigate": {
"cameras": "Caméras",
"uptime": "Démarré depuis",
"version": "Version"
},
"linkwarden": {
"links": "Liens",
"collections": "Collections",
"tags": "Étiquettes"
},
"zabbix": {
"unclassified": "Non classé",
"information": "Informations",
"warning": "Attention",
"average": "Moyenne",
"high": "Élevé",
"disaster": ""
},
"lubelogger": {
"vehicle": "Véhicule",
"vehicles": "Véhicules",
"serviceRecords": "Service d'enregistrements",
"reminders": "Rappels",
"nextReminder": "Prochain rappel",
"none": "Aucun"
},
"vikunja": {
"projects": "Projets actifs",
"tasks7d": "Tâches à faire cette semaine",
"tasksOverdue": "Tâches en retard",
"tasksInProgress": "Tâche en cours"
},
"headscale": {
"name": "Nom",
"address": "Adresse",
"last_seen": "Vu pour la dernière fois",
"status": "Statut",
"online": "En ligne",
"offline": "Hors ligne"
},
"beszel": {
"name": "Nom",
"systems": "Systèmes",
"up": "Up",
"status": "Statut",
"updated": "Mis à jour",
"cpu": "CPU",
"memory": "MÉM",
"disk": "Disque",
"network": "Réseau"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Fonctionnel",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Manquant",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Chargement"
},
"gitlab": {
"groups": "Groups",
"issues": "Anomalies",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
@@ -305,6 +309,16 @@
"stopped": "נעצר", "stopped": "נעצר",
"total": "סה\"כ" "total": "סה\"כ"
}, },
"suwayomi": {
"download": "הורד",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Ago" "ago": "{{value}} Ago"
}, },
"technitium": {
"totalQueries": "שאילתות",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "נחסם",
"totalDropped": "Dropped",
"totalClients": "לקוחות"
},
"tdarr": { "tdarr": {
"queue": "תור", "queue": "תור",
"processed": "Processed", "processed": "Processed",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Platforms",
"totalRoms": "Total ROMs" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domains",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Warnings",
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Uptime",
"version": "Version"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tags"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Information",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "סטטוס",
"online": "Online",
"offline": "כבוי"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"status": "סטטוס",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{value, date}", "date": "{value, date}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "माह", "months": "माह",
"days": "d", "days": "d",
"hours": "घं.", "hours": "घं.",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
@@ -305,6 +309,16 @@
"stopped": "Stopped", "stopped": "Stopped",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Downloaded",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Ago" "ago": "{{value}} Ago"
}, },
"technitium": {
"totalQueries": "Queries",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blocked",
"totalDropped": "Dropped",
"totalClients": "Clients"
},
"tdarr": { "tdarr": {
"queue": "Queue", "queue": "Queue",
"processed": "Processed", "processed": "Processed",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Platforms",
"totalRoms": "Total ROMs" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domains",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Warnings",
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Uptime",
"version": "Version"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tags"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Information",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"status": "Status",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mj", "months": "mj",
"days": "dan(a)", "days": "dan(a)",
"hours": "h", "hours": "h",
@@ -226,6 +226,10 @@
"leech": "Korištenje tuđeg sadržaja", "leech": "Korištenje tuđeg sadržaja",
"seed": "Prenošenje preuzetog sadržaja" "seed": "Prenošenje preuzetog sadržaja"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Preuzimanje", "download": "Preuzimanje",
"upload": "Prijenos", "upload": "Prijenos",
@@ -305,6 +309,16 @@
"stopped": "Prekinuto", "stopped": "Prekinuto",
"total": "Ukupno" "total": "Ukupno"
}, },
"suwayomi": {
"download": "Preuzeto",
"nondownload": "Non-Downloaded",
"read": "Pročitano",
"unread": "Nepročitano",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Adresa", "address": "Adresa",
"expires": "Isteče", "expires": "Isteče",
@@ -319,6 +333,19 @@
"seconds": "{{number}} s", "seconds": "{{number}} s",
"ago": "Prije {{value}}" "ago": "Prije {{value}}"
}, },
"technitium": {
"totalQueries": "Upiti",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blokirano",
"totalDropped": "Dropped",
"totalClients": "Klijenti"
},
"tdarr": { "tdarr": {
"queue": "Red čekanja", "queue": "Red čekanja",
"processed": "Obrađeno", "processed": "Obrađeno",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platforme", "platforms": "Platforme",
"totalRoms": "Ukupne ROM memorije" "totalRoms": "Igre",
"saves": "Saves",
"states": "States",
"screenshots": "Snimke ekrana",
"totalfilesize": "Ukupna veličina"
},
"mailcow": {
"domains": "Domene",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Spremište"
}, },
"netdata": { "netdata": {
"warnings": "Upozorenja", "warnings": "Upozorenja",
@@ -888,5 +925,87 @@
"auth": "S autentifikacijom", "auth": "S autentifikacijom",
"outdated": "Zastarjelo", "outdated": "Zastarjelo",
"banned": "Zabranjen pristup" "banned": "Zabranjen pristup"
},
"myspeed": {
"ping": "Ping",
"download": "Preuzimanje",
"upload": "Prijenos"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Kamere",
"uptime": "Vrijeme rada",
"version": "Verzija"
},
"linkwarden": {
"links": "Poveznice",
"collections": "Zbirke",
"tags": "Oznake"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Informacije",
"warning": "Upozorenje",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Podsjetnici",
"nextReminder": "Sljedeći podsjetnik",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Ime",
"address": "Adresa",
"last_seen": "Zadnje viđeno",
"status": "Stanje",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Ime",
"systems": "Systems",
"up": "Dostupno",
"status": "Stanje",
"updated": "Aktualizirano",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Funkcionalno",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Nedostaje",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Problemi",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "hó", "months": "hó",
"days": "n", "days": "n",
"hours": "ó", "hours": "ó",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Letöltés", "download": "Letöltés",
"upload": "Feltöltés", "upload": "Feltöltés",
@@ -305,6 +309,16 @@
"stopped": "Megállított", "stopped": "Megállított",
"total": "Összes" "total": "Összes"
}, },
"suwayomi": {
"download": "Letöltött",
"nondownload": "Non-Downloaded",
"read": "Olvasott",
"unread": "Olvasatlan",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Cím", "address": "Cím",
"expires": "Lejár", "expires": "Lejár",
@@ -319,6 +333,19 @@
"seconds": "{{number}}mp", "seconds": "{{number}}mp",
"ago": "{{value}} Ezelőtt" "ago": "{{value}} Ezelőtt"
}, },
"technitium": {
"totalQueries": "Lekérdezések",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blokkolt",
"totalDropped": "Dropped",
"totalClients": "Kliensek"
},
"tdarr": { "tdarr": {
"queue": "Sor", "queue": "Sor",
"processed": "Feldolgozott", "processed": "Feldolgozott",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Felület", "platforms": "Felület",
"totalRoms": "Minden ROM" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domainek",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Tárhely"
}, },
"netdata": { "netdata": {
"warnings": "Figyelmeztetések", "warnings": "Figyelmeztetések",
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Letöltés",
"upload": "Feltöltés"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Üzemidő",
"version": "Verzió"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Címkék"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Információ",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Jármű",
"vehicles": "Járművek",
"serviceRecords": "Szolgáltatások nyílvántartása",
"reminders": "Emlékeztetők",
"nextReminder": "Következő emlékeztető",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Név",
"address": "Cím",
"last_seen": "Utoljára látott",
"status": "Státusz",
"online": "Csatlakozva",
"offline": "Nem elérhető"
},
"beszel": {
"name": "Név",
"systems": "Systems",
"up": "Fel",
"status": "Státusz",
"updated": "Frissített",
"cpu": "Processzor",
"memory": "RAM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Egészséges",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Hiányzik",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Problémák",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "bulan", "months": "bulan",
"days": "h", "days": "h",
"hours": "j", "hours": "j",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Unduh", "download": "Unduh",
"upload": "Unggah", "upload": "Unggah",
@@ -305,6 +309,16 @@
"stopped": "Terhenti", "stopped": "Terhenti",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Terunduh",
"nondownload": "Non-Downloaded",
"read": "Baca",
"unread": "Belum Dibaca",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Alamat", "address": "Alamat",
"expires": "Kadaluarsa", "expires": "Kadaluarsa",
@@ -319,6 +333,19 @@
"seconds": "{{number}}d", "seconds": "{{number}}d",
"ago": "{{value}} Yang Lalu" "ago": "{{value}} Yang Lalu"
}, },
"technitium": {
"totalQueries": "Kueri",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Terblokir",
"totalDropped": "Dropped",
"totalClients": "Klien"
},
"tdarr": { "tdarr": {
"queue": "Antrian", "queue": "Antrian",
"processed": "Terproses", "processed": "Terproses",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platform", "platforms": "Platform",
"totalRoms": "ROM Total" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Jumlah Domain",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Penyimpanan"
}, },
"netdata": { "netdata": {
"warnings": "Peringatan", "warnings": "Peringatan",
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Unduh",
"upload": "Unggah"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Waktu Aktif",
"version": "Versi"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tag"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Informasi",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Nama",
"address": "Alamat",
"last_seen": "Terakhir terlihat",
"status": "Status",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Nama",
"systems": "Systems",
"up": "Hidup",
"status": "Status",
"updated": "Terbarui",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Lancar",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Tidak Ditemukan",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Isu",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mo", "months": "mo",
"days": "g", "days": "g",
"hours": "o", "hours": "o",
@@ -226,6 +226,10 @@
"leech": "In download", "leech": "In download",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
@@ -287,7 +291,7 @@
"queries": "Richieste", "queries": "Richieste",
"blocked": "Bloccati", "blocked": "Bloccati",
"blocked_percent": "Bloccato %", "blocked_percent": "Bloccato %",
"gravity": "Severità" "gravity": "Gravity"
}, },
"adguard": { "adguard": {
"queries": "Richieste", "queries": "Richieste",
@@ -305,6 +309,16 @@
"stopped": "Fermati", "stopped": "Fermati",
"total": "Totale" "total": "Totale"
}, },
"suwayomi": {
"download": "Scaricato",
"nondownload": "Non-Downloaded",
"read": "Letti",
"unread": "Non letto",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Indirizzo", "address": "Indirizzo",
"expires": "Scade", "expires": "Scade",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Fa" "ago": "{{value}} Fa"
}, },
"technitium": {
"totalQueries": "Richieste",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Bloccati",
"totalDropped": "Dropped",
"totalClients": "Client"
},
"tdarr": { "tdarr": {
"queue": "Coda", "queue": "Coda",
"processed": "Elaborati", "processed": "Elaborati",
@@ -545,11 +572,11 @@
"channels": "Canali", "channels": "Canali",
"hd": "HD", "hd": "HD",
"tunerCount": "Tuners", "tunerCount": "Tuners",
"channelNumber": "Channel", "channelNumber": "Canale",
"channelNetwork": "Rete", "channelNetwork": "Rete",
"signalStrength": "Intensità", "signalStrength": "Intensità",
"signalQuality": "Quality", "signalQuality": "Qualità",
"symbolQuality": "Quality", "symbolQuality": "Qualità",
"networkRate": "Bitrate", "networkRate": "Bitrate",
"clientIP": "Client" "clientIP": "Client"
}, },
@@ -564,11 +591,11 @@
}, },
"peanut": { "peanut": {
"battery_charge": "Battery Charge", "battery_charge": "Battery Charge",
"ups_load": "UPS Load", "ups_load": "Carico UPS",
"ups_status": "UPS Status", "ups_status": "Stato UPS",
"online": "Online", "online": "Online",
"on_battery": "On Battery", "on_battery": "Alimentazione a batteria",
"low_battery": "Low Battery" "low_battery": "Batteria Quasi Scarica"
}, },
"nextdns": { "nextdns": {
"wait": "Attendere prego", "wait": "Attendere prego",
@@ -798,10 +825,10 @@
}, },
"openwrt": { "openwrt": {
"uptime": "Tempo di attività", "uptime": "Tempo di attività",
"cpuLoad": "CPU Load Avg (5m)", "cpuLoad": "Media Carico Cpu (5m)",
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"bytesTx": "Transmitted", "bytesTx": "Trasmessi",
"bytesRx": "Ricevuti" "bytesRx": "Ricevuti"
}, },
"uptimerobot": { "uptimerobot": {
@@ -826,15 +853,25 @@
"noEventsFound": "Nessun evento trovato" "noEventsFound": "Nessun evento trovato"
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Piattaforme",
"totalRoms": "Total ROMs" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domini",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Archiviazione"
}, },
"netdata": { "netdata": {
"warnings": "Avvisi", "warnings": "Avvisi",
"criticals": "Criticals" "criticals": "Criticals"
}, },
"plantit": { "plantit": {
"events": "Events", "events": "Eventi",
"plants": "Plants", "plants": "Plants",
"photos": "Foto", "photos": "Foto",
"species": "Specie" "species": "Specie"
@@ -852,7 +889,7 @@
"sceneSize": "Dimensione Delle Scene", "sceneSize": "Dimensione Delle Scene",
"sceneDuration": "Durata Delle Scene", "sceneDuration": "Durata Delle Scene",
"images": "Immagini", "images": "Immagini",
"imageSize": "Images Size", "imageSize": "Dimensioni immagine",
"galleries": "Galleries", "galleries": "Galleries",
"performers": "Esecutori", "performers": "Esecutori",
"studios": "Studi", "studios": "Studi",
@@ -863,19 +900,19 @@
"tandoor": { "tandoor": {
"users": "Utenti", "users": "Utenti",
"recipes": "Ricette", "recipes": "Ricette",
"keywords": "Keywords" "keywords": "Parole chiave"
}, },
"homebox": { "homebox": {
"items": "Items", "items": "Elementi",
"totalWithWarranty": "With Warranty", "totalWithWarranty": "Con Garanzia",
"locations": "Locations", "locations": "Luoghi",
"labels": "Labels", "labels": "Etichette",
"users": "Utenti", "users": "Utenti",
"totalValue": "Total Value" "totalValue": "Valore totale"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Allarmi", "alerts": "Allarmi",
"bans": "Bans" "bans": "Bannati"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connesso", "connected": "Connesso",
@@ -886,7 +923,89 @@
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Obsoleto",
"banned": "Banned" "banned": "Bannato"
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Tempo di attività",
"version": "Versione"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tag"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Informazioni",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Nome",
"address": "Indirizzo",
"last_seen": "Ultima visualizzazione",
"status": "Stato",
"online": "Online",
"offline": "Non in linea"
},
"beszel": {
"name": "Nome",
"systems": "Systems",
"up": "Up",
"status": "Stato",
"updated": "Aggiornato",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Sano",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Mancanti",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Problemi",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "月", "months": "月",
"days": "日", "days": "日",
"hours": "時間", "hours": "時間",
@@ -226,6 +226,10 @@
"leech": "リーチ", "leech": "リーチ",
"seed": "シード" "seed": "シード"
}, },
"develancacheui": {
"cachehitbytes": "キャッシュ・ヒットバイト",
"cachemissbytes": "キャッシュミスバイト"
},
"downloadstation": { "downloadstation": {
"download": "ダウンロード", "download": "ダウンロード",
"upload": "アップロード", "upload": "アップロード",
@@ -305,6 +309,16 @@
"stopped": "停止中", "stopped": "停止中",
"total": "合計" "total": "合計"
}, },
"suwayomi": {
"download": "ダウンロード",
"nondownload": "Non-Downloaded",
"read": "既読",
"unread": "未読",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "アドレス", "address": "アドレス",
"expires": "失効", "expires": "失効",
@@ -319,6 +333,19 @@
"seconds": "{{number}}秒", "seconds": "{{number}}秒",
"ago": "{{value}} 前" "ago": "{{value}} 前"
}, },
"technitium": {
"totalQueries": "クエリ",
"totalNoError": "成功",
"totalServerFailure": "失敗",
"totalNxDomain": "NXドメイン",
"totalRefused": "拒否",
"totalAuthoritative": "正式",
"totalRecursive": "再帰的",
"totalCached": "キャッシュ済み",
"totalBlocked": "ブロック中",
"totalDropped": "ドロップ済み",
"totalClients": "クライアント"
},
"tdarr": { "tdarr": {
"queue": "キュー", "queue": "キュー",
"processed": "処理済み", "processed": "処理済み",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "プラットフォーム", "platforms": "プラットフォーム",
"totalRoms": "ROMの合計" "totalRoms": "ゲーム",
"saves": "保存",
"states": "状態",
"screenshots": "スクリーンショット",
"totalfilesize": "合計サイズ"
},
"mailcow": {
"domains": "ドメイン",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "ストレージ"
}, },
"netdata": { "netdata": {
"warnings": "警告", "warnings": "警告",
@@ -884,9 +921,91 @@
"total": "合計" "total": "合計"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "プロキシ済",
"auth": "With Auth", "auth": "認証あり",
"outdated": "Outdated", "outdated": "最新の状態ではありません",
"banned": "Banned" "banned": "禁止"
},
"myspeed": {
"ping": "Ping",
"download": "ダウンロード",
"upload": "アップロード"
},
"stocks": {
"stocks": "在庫",
"loading": "読み込み中",
"open": "オープン - 米国市場",
"closed": "クローズ - 米国市場",
"invalidConfiguration": "無効な設定"
},
"frigate": {
"cameras": "カメラ",
"uptime": "稼働時間",
"version": "バージョン"
},
"linkwarden": {
"links": "リンク",
"collections": "コレクション",
"tags": "タグ"
},
"zabbix": {
"unclassified": "Not classified",
"information": "情報",
"warning": "警告",
"average": "平均",
"high": "高い",
"disaster": "災害"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "名前",
"address": "アドレス",
"last_seen": "最終日時",
"status": "状態",
"online": "オンライン",
"offline": "オフライン"
},
"beszel": {
"name": "名前",
"systems": "Systems",
"up": "稼働",
"status": "状態",
"updated": "更新済",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "正常",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "不明",
"suspended": "Suspended"
},
"spoolman": {
"loading": "読み込み中"
},
"gitlab": {
"groups": "Groups",
"issues": "課題",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -21,7 +21,7 @@
"seconds": "s" "seconds": "s"
}, },
"widget": { "widget": {
"missing_type": "Missing Widget Type: {{type}}", "missing_type": "없는 위젯 유형: {{type}}",
"api_error": "API 오류", "api_error": "API 오류",
"information": "정보", "information": "정보",
"status": "상태", "status": "상태",
@@ -87,15 +87,15 @@
"ping": "Ping", "ping": "Ping",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
"not_available": "Not Available" "not_available": "사용할 수 없음"
}, },
"siteMonitor": { "siteMonitor": {
"http_status": "HTTP status", "http_status": "HTTP 상태",
"error": "오류", "error": "오류",
"response": "Response", "response": "응답",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
"not_available": "Not Available" "not_available": "사용할 수 없음"
}, },
"emby": { "emby": {
"playing": "재생 중", "playing": "재생 중",
@@ -110,14 +110,14 @@
"esphome": { "esphome": {
"offline": "중지", "offline": "중지",
"offline_alt": "중지", "offline_alt": "중지",
"online": "Online", "online": "온라인",
"total": "총합", "total": "총합",
"unknown": "알 수 없음" "unknown": "알 수 없음"
}, },
"evcc": { "evcc": {
"pv_power": "Production", "pv_power": "Production",
"battery_soc": "Battery", "battery_soc": "배터리",
"grid_power": "Grid", "grid_power": "눈금",
"home_power": "Consumption", "home_power": "Consumption",
"charge_power": "Charger", "charge_power": "Charger",
"watt_hour": "Wh" "watt_hour": "Wh"
@@ -129,25 +129,25 @@
"seed": "시드" "seed": "시드"
}, },
"freshrss": { "freshrss": {
"subscriptions": "Subscriptions", "subscriptions": "구독",
"unread": "Unread" "unread": "미열람"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "상태", "connectionStatus": "상태",
"connectionStatusUnconfigured": "Unconfigured", "connectionStatusUnconfigured": "구성되지 않음",
"connectionStatusConnecting": "Connecting", "connectionStatusConnecting": "연결중",
"connectionStatusAuthenticating": "Authenticating", "connectionStatusAuthenticating": "인증",
"connectionStatusPendingDisconnect": "Pending Disconnect", "connectionStatusPendingDisconnect": "Pending Disconnect",
"connectionStatusDisconnecting": "Disconnecting", "connectionStatusDisconnecting": "연결을 끊는 중...",
"connectionStatusDisconnected": "Disconnected", "connectionStatusDisconnected": "연결 끊김",
"connectionStatusConnected": "Connected", "connectionStatusConnected": "연결됨",
"uptime": "Uptime", "uptime": "Uptime",
"maxDown": "Max. Down", "maxDown": "Max. Down",
"maxUp": "Max. Up", "maxUp": "Max. Up",
"down": "Down", "down": "Down",
"up": "Up", "up": "Up",
"received": "Received", "received": "수신됨",
"sent": "Sent", "sent": "전송됨",
"externalIPAddress": "Ext. IP" "externalIPAddress": "Ext. IP"
}, },
"caddy": { "caddy": {
@@ -160,9 +160,9 @@
"diffsDetected": "변경 감지됨" "diffsDetected": "변경 감지됨"
}, },
"channelsdvrserver": { "channelsdvrserver": {
"shows": "Shows", "shows": "보기",
"recordings": "Recordings", "recordings": "녹화",
"scheduled": "Scheduled", "scheduled": "예정됨",
"passes": "Passes" "passes": "Passes"
}, },
"tautulli": { "tautulli": {
@@ -213,12 +213,12 @@
"seed": "시드" "seed": "시드"
}, },
"qnap": { "qnap": {
"cpuUsage": "CPU Usage", "cpuUsage": "CPU 사용",
"memUsage": "MEM Usage", "memUsage": "메모리 사용",
"systemTempC": "System Temp", "systemTempC": "시스템 온도",
"poolUsage": "Pool Usage", "poolUsage": "Pool Usage",
"volumeUsage": "Volume Usage", "volumeUsage": "Volume Usage",
"invalid": "Invalid" "invalid": "잘못됨"
}, },
"deluge": { "deluge": {
"download": "다운로드", "download": "다운로드",
@@ -226,6 +226,10 @@
"leech": "리치", "leech": "리치",
"seed": "시드" "seed": "시드"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "다운로드", "download": "다운로드",
"upload": "업로드", "upload": "업로드",
@@ -279,7 +283,7 @@
}, },
"netalertx": { "netalertx": {
"total": "총합", "total": "총합",
"connected": "Connected", "connected": "연결됨",
"new_devices": "New Devices", "new_devices": "New Devices",
"down_alerts": "Down Alerts" "down_alerts": "Down Alerts"
}, },
@@ -305,19 +309,42 @@
"stopped": "중지", "stopped": "중지",
"total": "총합" "total": "총합"
}, },
"suwayomi": {
"download": "다운로드됨",
"nondownload": "Non-Downloaded",
"read": "읽음",
"unread": "미열람",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "주소",
"expires": "Expires", "expires": "만료",
"never": "Never", "never": "Never",
"last_seen": "Last Seen", "last_seen": "마지막 접속",
"now": "Now", "now": "지금",
"years": "{{number}}y", "years": "{{number}}",
"weeks": "{{number}}w", "weeks": "{{number}}",
"days": "{{number}}d", "days": "{{number}}",
"hours": "{{number}}h", "hours": "{{number}}",
"minutes": "{{number}}m", "minutes": "{{number}}",
"seconds": "{{number}}s", "seconds": "{{number}}",
"ago": "{{value}} Ago" "ago": "{{value}} "
},
"technitium": {
"totalQueries": "쿼리",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "차단됨",
"totalDropped": "Dropped",
"totalClients": "클라이언트"
}, },
"tdarr": { "tdarr": {
"queue": "대기열", "queue": "대기열",
@@ -359,7 +386,7 @@
"numberOfFailQueries": "Fail Queries" "numberOfFailQueries": "Fail Queries"
}, },
"jackett": { "jackett": {
"configured": "Configured", "configured": "구성됨",
"errored": "오류" "errored": "오류"
}, },
"strelaysrv": { "strelaysrv": {
@@ -370,7 +397,7 @@
}, },
"mastodon": { "mastodon": {
"user_count": "사용자", "user_count": "사용자",
"status_count": "Posts", "status_count": "게시글",
"domain_count": "Domains" "domain_count": "Domains"
}, },
"medusa": { "medusa": {
@@ -380,33 +407,33 @@
}, },
"minecraft": { "minecraft": {
"players": "Players", "players": "Players",
"version": "Version", "version": "버전",
"status": "상태", "status": "상태",
"up": "Online", "up": "온라인",
"down": "중지" "down": "중지"
}, },
"miniflux": { "miniflux": {
"read": "Read", "read": "읽음",
"unread": "Unread" "unread": "미열람"
}, },
"authentik": { "authentik": {
"users": "사용자", "users": "사용자",
"loginsLast24H": "Logins (24h)", "loginsLast24H": "로그인 (24h)",
"failedLoginsLast24H": "Failed Logins (24h)" "failedLoginsLast24H": "실패한 로그인 (24h)"
}, },
"proxmox": { "proxmox": {
"mem": "MEM", "mem": "MEM",
"cpu": "CPU", "cpu": "CPU",
"lxc": "LXC", "lxc": "LXC",
"vms": "VMs" "vms": "가상머신"
}, },
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "부하", "load": "부하",
"wait": "잠시만 기다리세요", "wait": "잠시만 기다리세요",
"temp": "온도", "temp": "온도",
"_temp": "Temp", "_temp": "온도",
"warn": "Warn", "warn": "경고",
"uptime": "가동", "uptime": "가동",
"total": "총합", "total": "총합",
"free": "남음", "free": "남음",
@@ -414,30 +441,30 @@
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"crit": "Crit", "crit": "Crit",
"read": "Read", "read": "읽음",
"write": "Write", "write": "쓰기",
"gpu": "GPU", "gpu": "GPU",
"mem": "Mem", "mem": "Men",
"swap": "Swap" "swap": "Swap"
}, },
"quicklaunch": { "quicklaunch": {
"bookmark": "Bookmark", "bookmark": "즐겨찾기",
"service": "Service", "service": "서비스",
"search": "Search", "search": "검색",
"custom": "Custom", "custom": "사용자 정의",
"visit": "Visit", "visit": "Visit",
"url": "URL", "url": "URL",
"searchsuggestion": "Suggestion" "searchsuggestion": "Suggestion"
}, },
"wmo": { "wmo": {
"0-day": "Sunny", "0-day": "화창함",
"0-night": "Clear", "0-night": "Clear",
"1-day": "Mainly Sunny", "1-day": "Mainly Sunny",
"1-night": "Mainly Clear", "1-night": "Mainly Clear",
"2-day": "Partly Cloudy", "2-day": "Partly Cloudy",
"2-night": "Partly Cloudy", "2-night": "Partly Cloudy",
"3-day": "Cloudy", "3-day": "구름 낀",
"3-night": "Cloudy", "3-night": "구름 낀",
"45-day": "Foggy", "45-day": "Foggy",
"45-night": "Foggy", "45-night": "Foggy",
"48-day": "Foggy", "48-day": "Foggy",
@@ -462,14 +489,14 @@
"66-night": "Freezing Rain", "66-night": "Freezing Rain",
"67-day": "Freezing Rain", "67-day": "Freezing Rain",
"67-night": "Freezing Rain", "67-night": "Freezing Rain",
"71-day": "Light Snow", "71-day": "약한 눈",
"71-night": "Light Snow", "71-night": "약한 눈",
"73-day": "Snow", "73-day": "Snow",
"73-night": "Snow", "73-night": "Snow",
"75-day": "Heavy Snow", "75-day": "폭설",
"75-night": "Heavy Snow", "75-night": "폭설",
"77-day": "Snow Grains", "77-day": "싸락눈",
"77-night": "Snow Grains", "77-night": "싸락눈",
"80-day": "Light Showers", "80-day": "Light Showers",
"80-night": "Light Showers", "80-night": "Light Showers",
"81-day": "Showers", "81-day": "Showers",
@@ -489,9 +516,9 @@
}, },
"homebridge": { "homebridge": {
"available_update": "System", "available_update": "System",
"updates": "Updates", "updates": "업데이트",
"update_available": "Update Available", "update_available": "새 업데이트 사용 가능",
"up_to_date": "Up to Date", "up_to_date": "최신 상태",
"child_bridges": "Child Bridges", "child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Up",
@@ -499,7 +526,7 @@
"down": "Down" "down": "Down"
}, },
"healthchecks": { "healthchecks": {
"new": "New", "new": "신규",
"up": "Up", "up": "Up",
"grace": "In Grace Period", "grace": "In Grace Period",
"down": "Down", "down": "Down",
@@ -521,9 +548,9 @@
}, },
"tubearchivist": { "tubearchivist": {
"downloads": "대기열", "downloads": "대기열",
"videos": "Videos", "videos": "동영상",
"channels": "Channels", "channels": "채널",
"playlists": "Playlists" "playlists": "재생 목록"
}, },
"truenas": { "truenas": {
"load": "System Load", "load": "System Load",
@@ -542,16 +569,16 @@
"country": "Country" "country": "Country"
}, },
"hdhomerun": { "hdhomerun": {
"channels": "Channels", "channels": "채널",
"hd": "HD", "hd": "HD",
"tunerCount": "Tuners", "tunerCount": "Tuners",
"channelNumber": "Channel", "channelNumber": "채널",
"channelNetwork": "Network", "channelNetwork": "네트워크",
"signalStrength": "Strength", "signalStrength": "Strength",
"signalQuality": "Quality", "signalQuality": "Quality",
"symbolQuality": "Quality", "symbolQuality": "Quality",
"networkRate": "비트레이트", "networkRate": "비트레이트",
"clientIP": "Client" "clientIP": "클라이언트"
}, },
"scrutiny": { "scrutiny": {
"passed": "Passed", "passed": "Passed",
@@ -559,16 +586,16 @@
"unknown": "알 수 없음" "unknown": "알 수 없음"
}, },
"paperlessngx": { "paperlessngx": {
"inbox": "Inbox", "inbox": "받은메일함",
"total": "총합" "total": "총합"
}, },
"peanut": { "peanut": {
"battery_charge": "Battery Charge", "battery_charge": "배터리 충전 중",
"ups_load": "UPS Load", "ups_load": "UPS Load",
"ups_status": "UPS Status", "ups_status": "UPS Status",
"online": "Online", "online": "온라인",
"on_battery": "On Battery", "on_battery": "배터리 사용",
"low_battery": "Low Battery" "low_battery": "배터리 부족"
}, },
"nextdns": { "nextdns": {
"wait": "잠시만 기다리세요", "wait": "잠시만 기다리세요",
@@ -576,20 +603,20 @@
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "CPU Load", "cpuLoad": "CPU Load",
"memoryUsed": "Memory Used", "memoryUsed": "메모리 사용량",
"uptime": "Uptime", "uptime": "Uptime",
"numberOfLeases": "Leases" "numberOfLeases": "Leases"
}, },
"xteve": { "xteve": {
"streams_all": "All Streams", "streams_all": "모든 스트림",
"streams_active": "활성 스트림", "streams_active": "활성 스트림",
"streams_xepg": "XEPG Channels" "streams_xepg": "XEPG Channels"
}, },
"opendtu": { "opendtu": {
"yieldDay": "Today", "yieldDay": "오늘",
"absolutePower": "Power", "absolutePower": "전원",
"relativePower": "Power %", "relativePower": "전원 %",
"limit": "Limit" "limit": "제한"
}, },
"opnsense": { "opnsense": {
"cpu": "CPU Load", "cpu": "CPU Load",
@@ -600,7 +627,7 @@
"moonraker": { "moonraker": {
"printer_state": "Printer State", "printer_state": "Printer State",
"print_status": "Print Status", "print_status": "Print Status",
"print_progress": "Progress", "print_progress": "진행",
"layers": "Layers" "layers": "Layers"
}, },
"octoprint": { "octoprint": {
@@ -619,7 +646,7 @@
"wanStatus": "WAN Status", "wanStatus": "WAN Status",
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"temp": "Temp", "temp": "온도",
"disk": "Disk Usage", "disk": "Disk Usage",
"wanIP": "WAN IP" "wanIP": "WAN IP"
}, },
@@ -631,9 +658,9 @@
}, },
"immich": { "immich": {
"users": "사용자", "users": "사용자",
"photos": "Photos", "photos": "사진",
"videos": "Videos", "videos": "동영상",
"storage": "Storage" "storage": "저장됨"
}, },
"uptimekuma": { "uptimekuma": {
"up": "Sites Up", "up": "Sites Up",
@@ -646,10 +673,10 @@
"series": "시리즈", "series": "시리즈",
"archives": "Archives", "archives": "Archives",
"chapters": "Chapters", "chapters": "Chapters",
"categories": "Categories" "categories": "분류"
}, },
"komga": { "komga": {
"libraries": "Libraries", "libraries": "서재",
"series": "시리즈", "series": "시리즈",
"books": "책" "books": "책"
}, },
@@ -665,8 +692,8 @@
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Albums",
"photos": "Photos", "photos": "사진",
"videos": "Videos", "videos": "동영상",
"people": "People" "people": "People"
}, },
"fileflows": { "fileflows": {
@@ -676,18 +703,18 @@
"time": "Time" "time": "Time"
}, },
"grafana": { "grafana": {
"dashboards": "Dashboards", "dashboards": "대시보드",
"datasources": "Data Sources", "datasources": "Data Sources",
"totalalerts": "Total Alerts", "totalalerts": "Total Alerts",
"alertstriggered": "Alerts Triggered" "alertstriggered": "Alerts Triggered"
}, },
"nextcloud": { "nextcloud": {
"cpuload": "Cpu Load", "cpuload": "CPU 부하량",
"memoryusage": "Memory Usage", "memoryusage": "메모리 사용량",
"freespace": "Free Space", "freespace": "여유 공간",
"activeusers": "Active Users", "activeusers": "활성 유저",
"numfiles": "Files", "numfiles": "파일",
"numshares": "Shared Items" "numshares": "공유된 항목"
}, },
"kopia": { "kopia": {
"status": "상태", "status": "상태",
@@ -703,7 +730,7 @@
}, },
"pterodactyl": { "pterodactyl": {
"servers": "Servers", "servers": "Servers",
"nodes": "Nodes" "nodes": "노드"
}, },
"prometheus": { "prometheus": {
"targets_up": "Targets Up", "targets_up": "Targets Up",
@@ -716,15 +743,15 @@
"uptime": "Uptime" "uptime": "Uptime"
}, },
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Today", "gross_percent_today": "오늘",
"gross_percent_1y": "One year", "gross_percent_1y": "One year",
"gross_percent_max": "All time" "gross_percent_max": "All time"
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasts", "podcasts": "Podcasts",
"books": "책", "books": "책",
"podcastsDuration": "Duration", "podcastsDuration": "지속시간",
"booksDuration": "Duration" "booksDuration": "지속시간"
}, },
"homeassistant": { "homeassistant": {
"people_home": "People Home", "people_home": "People Home",
@@ -733,12 +760,12 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "Monitoring", "monitoring": "Monitoring",
"updates": "Updates" "updates": "업데이트"
}, },
"calibreweb": { "calibreweb": {
"books": "책", "books": "책",
"authors": "Authors", "authors": "저자",
"categories": "Categories", "categories": "분류",
"series": "시리즈" "series": "시리즈"
}, },
"jdownloader": { "jdownloader": {
@@ -749,7 +776,7 @@
}, },
"kavita": { "kavita": {
"seriesCount": "시리즈", "seriesCount": "시리즈",
"totalFiles": "Files" "totalFiles": "파일"
}, },
"azuredevops": { "azuredevops": {
"result": "Result", "result": "Result",
@@ -766,30 +793,30 @@
}, },
"gamedig": { "gamedig": {
"status": "상태", "status": "상태",
"online": "Online", "online": "온라인",
"offline": "중지", "offline": "중지",
"name": "Name", "name": "이름",
"map": "Map", "map": "지도",
"currentPlayers": "Current players", "currentPlayers": "Current players",
"players": "Players", "players": "Players",
"maxPlayers": "Max players", "maxPlayers": "Max players",
"bots": "Bots", "bots": "",
"ping": "Ping" "ping": "Ping"
}, },
"urbackup": { "urbackup": {
"ok": "Ok", "ok": "확인",
"errored": "Errors", "errored": "오류 :",
"noRecent": "Out of Date", "noRecent": "Out of Date",
"totalUsed": "Used Storage" "totalUsed": "Used Storage"
}, },
"mealie": { "mealie": {
"recipes": "Recipes", "recipes": "Recipes",
"users": "사용자", "users": "사용자",
"categories": "Categories", "categories": "분류",
"tags": "Tags" "tags": "태그"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Downloading", "downloading": "다운로드 중",
"total": "총합", "total": "총합",
"running": "가동 중", "running": "가동 중",
"stopped": "중지", "stopped": "중지",
@@ -802,7 +829,7 @@
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"bytesTx": "Transmitted", "bytesTx": "Transmitted",
"bytesRx": "Received" "bytesRx": "수신됨"
}, },
"uptimerobot": { "uptimerobot": {
"status": "상태", "status": "상태",
@@ -826,8 +853,18 @@
"noEventsFound": "No events found" "noEventsFound": "No events found"
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "기종",
"totalRoms": "Total ROMs" "totalRoms": "게임",
"saves": "세이브",
"states": "스테이트",
"screenshots": "스크린샷",
"totalfilesize": "전체 용량"
},
"mailcow": {
"domains": "Domains",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "저장됨"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Warnings",
@@ -836,16 +873,16 @@
"plantit": { "plantit": {
"events": "Events", "events": "Events",
"plants": "Plants", "plants": "Plants",
"photos": "Photos", "photos": "사진",
"species": "Species" "species": "Species"
}, },
"gitea": { "gitea": {
"notifications": "Notifications", "notifications": "알림",
"issues": "Issues", "issues": "Issues",
"pulls": "Pull Requests" "pulls": "Pull Requests"
}, },
"stash": { "stash": {
"scenes": "Scenes", "scenes": "장면",
"scenesPlayed": "Scenes Played", "scenesPlayed": "Scenes Played",
"playCount": "Total Plays", "playCount": "Total Plays",
"playDuration": "Time Watched", "playDuration": "Time Watched",
@@ -855,18 +892,18 @@
"imageSize": "Images Size", "imageSize": "Images Size",
"galleries": "Galleries", "galleries": "Galleries",
"performers": "Performers", "performers": "Performers",
"studios": "Studios", "studios": "스튜디오",
"movies": "영화", "movies": "영화",
"tags": "Tags", "tags": "태그",
"oCount": "O Count" "oCount": "O Count"
}, },
"tandoor": { "tandoor": {
"users": "사용자", "users": "사용자",
"recipes": "Recipes", "recipes": "Recipes",
"keywords": "Keywords" "keywords": "키워드"
}, },
"homebox": { "homebox": {
"items": "Items", "items": "아이템",
"totalWithWarranty": "With Warranty", "totalWithWarranty": "With Warranty",
"locations": "Locations", "locations": "Locations",
"labels": "Labels", "labels": "Labels",
@@ -878,7 +915,7 @@
"bans": "Bans" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "연결됨",
"enabled": "활성", "enabled": "활성",
"disabled": "비활성", "disabled": "비활성",
"total": "총합" "total": "총합"
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "다운로드",
"upload": "업로드"
},
"stocks": {
"stocks": "Stocks",
"loading": "로드 중",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "카메라",
"uptime": "Uptime",
"version": "버전"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "태그"
},
"zabbix": {
"unclassified": "Not classified",
"information": "정보",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "이름",
"address": "주소",
"last_seen": "마지막 접속",
"status": "상태",
"online": "온라인",
"offline": "중지"
},
"beszel": {
"name": "이름",
"systems": "Systems",
"up": "Up",
"status": "상태",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "좋음",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "빠짐",
"suspended": "Suspended"
},
"spoolman": {
"loading": "로드 중"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -226,6 +226,10 @@
"leech": "Ņēmēji", "leech": "Ņēmēji",
"seed": "Devēji" "seed": "Devēji"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Lejupielāde", "download": "Lejupielāde",
"upload": "Augšupielāde", "upload": "Augšupielāde",
@@ -305,6 +309,16 @@
"stopped": "Stopped", "stopped": "Stopped",
"total": "Kopā" "total": "Kopā"
}, },
"suwayomi": {
"download": "Lejupielādēts",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Unread",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Ago" "ago": "{{value}} Ago"
}, },
"technitium": {
"totalQueries": "Queries",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blocked",
"totalDropped": "Dropped",
"totalClients": "Clients"
},
"tdarr": { "tdarr": {
"queue": "Rindā", "queue": "Rindā",
"processed": "Processed", "processed": "Processed",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Platforms",
"totalRoms": "Total ROMs" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domains",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Warnings",
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Lejupielāde",
"upload": "Augšupielāde"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Uptime",
"version": "Version"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tags"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Informācija",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Statuss",
"online": "Online",
"offline": "Bezsaistē"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Up",
"status": "Statuss",
"updated": "Updated",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Healthy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "bln", "months": "bln",
"days": "h", "days": "h",
"hours": "j", "hours": "j",
@@ -174,8 +174,8 @@
}, },
"omada": { "omada": {
"connectedAp": "Connected APs", "connectedAp": "Connected APs",
"activeUser": "Active devices", "activeUser": "Peranti aktif",
"alerts": "Alerts", "alerts": "Perhatian",
"connectedGateway": "Connected gateways", "connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches" "connectedSwitches": "Connected switches"
}, },
@@ -186,7 +186,7 @@
}, },
"plex": { "plex": {
"streams": "Strim Aktif", "streams": "Strim Aktif",
"albums": "Albums", "albums": "Album",
"movies": "Filem", "movies": "Filem",
"tv": "Rancangan TV" "tv": "Rancangan TV"
}, },
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Muat turun", "download": "Muat turun",
"upload": "Muat naik", "upload": "Muat naik",
@@ -250,7 +254,7 @@
"lidarr": { "lidarr": {
"wanted": "Mahu", "wanted": "Mahu",
"queued": "Dibaris Gilir", "queued": "Dibaris Gilir",
"artists": "Artists" "artists": "Artis"
}, },
"readarr": { "readarr": {
"wanted": "Mahu", "wanted": "Mahu",
@@ -305,12 +309,22 @@
"stopped": "Terhenti", "stopped": "Terhenti",
"total": "Jumlah" "total": "Jumlah"
}, },
"suwayomi": {
"download": "Telah Muat Turun",
"nondownload": "Non-Downloaded",
"read": "Baca",
"unread": "Belum dibaca",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
"never": "Never", "never": "Never",
"last_seen": "Last Seen", "last_seen": "Last Seen",
"now": "Now", "now": "Sekarang",
"years": "{{number}}y", "years": "{{number}}y",
"weeks": "{{number}}w", "weeks": "{{number}}w",
"days": "{{number}}d", "days": "{{number}}d",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Lepas" "ago": "{{value}} Lepas"
}, },
"technitium": {
"totalQueries": "Permintaan",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Disekat",
"totalDropped": "Dropped",
"totalClients": "Klien"
},
"tdarr": { "tdarr": {
"queue": "Barisan", "queue": "Barisan",
"processed": "Sudah diprosess", "processed": "Sudah diprosess",
@@ -528,7 +555,7 @@
"truenas": { "truenas": {
"load": "Beban Sistem", "load": "Beban Sistem",
"uptime": "Masa Hidup", "uptime": "Masa Hidup",
"alerts": "Alerts" "alerts": "Perhatian"
}, },
"pyload": { "pyload": {
"speed": "Kelajuan", "speed": "Kelajuan",
@@ -600,7 +627,7 @@
"moonraker": { "moonraker": {
"printer_state": "Printer State", "printer_state": "Printer State",
"print_status": "Print Status", "print_status": "Print Status",
"print_progress": "Progress", "print_progress": "Kemajuan",
"layers": "Layers" "layers": "Layers"
}, },
"octoprint": { "octoprint": {
@@ -631,7 +658,7 @@
}, },
"immich": { "immich": {
"users": "Pengguna", "users": "Pengguna",
"photos": "Photos", "photos": "Gambar",
"videos": "Video", "videos": "Video",
"storage": "Storage" "storage": "Storage"
}, },
@@ -646,7 +673,7 @@
"series": "Siri", "series": "Siri",
"archives": "Archives", "archives": "Archives",
"chapters": "Chapters", "chapters": "Chapters",
"categories": "Categories" "categories": "Memori"
}, },
"komga": { "komga": {
"libraries": "Libraries", "libraries": "Libraries",
@@ -664,8 +691,8 @@
"wanted": "Mahu" "wanted": "Mahu"
}, },
"photoprism": { "photoprism": {
"albums": "Albums", "albums": "Album",
"photos": "Photos", "photos": "Gambar",
"videos": "Video", "videos": "Video",
"people": "People" "people": "People"
}, },
@@ -738,7 +765,7 @@
"calibreweb": { "calibreweb": {
"books": "Buku", "books": "Buku",
"authors": "Pengarang/Penulis", "authors": "Pengarang/Penulis",
"categories": "Categories", "categories": "Memori",
"series": "Siri" "series": "Siri"
}, },
"jdownloader": { "jdownloader": {
@@ -785,7 +812,7 @@
"mealie": { "mealie": {
"recipes": "Resipi", "recipes": "Resipi",
"users": "Pengguna", "users": "Pengguna",
"categories": "Categories", "categories": "Memori",
"tags": "Tanda nama" "tags": "Tanda nama"
}, },
"openmediavault": { "openmediavault": {
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platform", "platforms": "Platform",
"totalRoms": "Jumlah ROM" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domain",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
}, },
"netdata": { "netdata": {
"warnings": "Amaran", "warnings": "Amaran",
@@ -836,7 +873,7 @@
"plantit": { "plantit": {
"events": "Events", "events": "Events",
"plants": "Plants", "plants": "Plants",
"photos": "Photos", "photos": "Gambar",
"species": "Species" "species": "Species"
}, },
"gitea": { "gitea": {
@@ -845,7 +882,7 @@
"pulls": "Pull Requests" "pulls": "Pull Requests"
}, },
"stash": { "stash": {
"scenes": "Scenes", "scenes": "Adegan",
"scenesPlayed": "Scenes Played", "scenesPlayed": "Scenes Played",
"playCount": "Total Plays", "playCount": "Total Plays",
"playDuration": "Time Watched", "playDuration": "Time Watched",
@@ -868,13 +905,13 @@
"homebox": { "homebox": {
"items": "Items", "items": "Items",
"totalWithWarranty": "With Warranty", "totalWithWarranty": "With Warranty",
"locations": "Locations", "locations": "Lokasi",
"labels": "Labels", "labels": "Labels",
"users": "Pengguna", "users": "Pengguna",
"totalValue": "Total Value" "totalValue": "Jumlah nilai"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alerts", "alerts": "Perhatian",
"bans": "Bans" "bans": "Bans"
}, },
"wgeasy": { "wgeasy": {
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Muat turun",
"upload": "Muat naik"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Masa Hidup",
"version": "Versi"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tanda nama"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Informasi",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Nama",
"address": "Address",
"last_seen": "Last Seen",
"status": "Status",
"online": "Dalam Talian",
"offline": "Luar talian"
},
"beszel": {
"name": "Nama",
"systems": "Systems",
"up": "Hidup",
"status": "Status",
"updated": "Dikemaskini",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Sihat",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Hilang",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mnd", "months": "mnd",
"days": "d", "days": "d",
"hours": "u", "hours": "u",
@@ -71,8 +71,8 @@
"tx": "TX", "tx": "TX",
"mem": "GEH", "mem": "GEH",
"cpu": "CPU", "cpu": "CPU",
"running": "Wordt uitgevoerd", "running": "Actief",
"offline": "Onbereikbaar", "offline": "Offline",
"error": "Fout", "error": "Fout",
"unknown": "Onbekend", "unknown": "Onbekend",
"healthy": "Gezond", "healthy": "Gezond",
@@ -108,8 +108,8 @@
"songs": "Nummers" "songs": "Nummers"
}, },
"esphome": { "esphome": {
"offline": "Onbereikbaar", "offline": "Offline",
"offline_alt": "Onbereikbaar", "offline_alt": "Offline",
"online": "Bereikbaar", "online": "Bereikbaar",
"total": "Totaal", "total": "Totaal",
"unknown": "Onbekend" "unknown": "Onbekend"
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Delen" "seed": "Delen"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Download", "download": "Download",
"upload": "Upload", "upload": "Upload",
@@ -301,10 +305,20 @@
"ping": "Ping" "ping": "Ping"
}, },
"portainer": { "portainer": {
"running": "Wordt uitgevoerd", "running": "Actief",
"stopped": "Gestopt", "stopped": "Gestopt",
"total": "Totaal" "total": "Totaal"
}, },
"suwayomi": {
"download": "Gedownload",
"nondownload": "Non-Downloaded",
"read": "Gelezen",
"unread": "Ongelezen",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Adres", "address": "Adres",
"expires": "Verloopt", "expires": "Verloopt",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Geleden" "ago": "{{value}} Geleden"
}, },
"technitium": {
"totalQueries": "Verzoeken",
"totalNoError": "Geslaagd",
"totalServerFailure": "Gefaald",
"totalNxDomain": "NX Domains",
"totalRefused": "Geweigerd",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Gecached",
"totalBlocked": "Geblokkeerd",
"totalDropped": "Dropped",
"totalClients": "Cliënten"
},
"tdarr": { "tdarr": {
"queue": "Wachtrij", "queue": "Wachtrij",
"processed": "Verwerkt", "processed": "Verwerkt",
@@ -383,7 +410,7 @@
"version": "Versie", "version": "Versie",
"status": "Status", "status": "Status",
"up": "Bereikbaar", "up": "Bereikbaar",
"down": "Onbereikbaar" "down": "Offline"
}, },
"miniflux": { "miniflux": {
"read": "Gelezen", "read": "Gelezen",
@@ -767,7 +794,7 @@
"gamedig": { "gamedig": {
"status": "Status", "status": "Status",
"online": "Bereikbaar", "online": "Bereikbaar",
"offline": "Onbereikbaar", "offline": "Offline",
"name": "Naam", "name": "Naam",
"map": "Kaart", "map": "Kaart",
"currentPlayers": "Huidige spelers", "currentPlayers": "Huidige spelers",
@@ -791,7 +818,7 @@
"openmediavault": { "openmediavault": {
"downloading": "Downloaden", "downloading": "Downloaden",
"total": "Totaal", "total": "Totaal",
"running": "Wordt uitgevoerd", "running": "Actief",
"stopped": "Gestopt", "stopped": "Gestopt",
"passed": "Geslaagd", "passed": "Geslaagd",
"failed": "Gefaald" "failed": "Gefaald"
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platformen", "platforms": "Platformen",
"totalRoms": "Totale ROM's" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots ",
"totalfilesize": "Totale grootte"
},
"mailcow": {
"domains": "Domeinen",
"mailboxes": "Mailboxen",
"mails": "Mails",
"storage": "Opslag"
}, },
"netdata": { "netdata": {
"warnings": "Waarschuwingen", "warnings": "Waarschuwingen",
@@ -886,7 +923,89 @@
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxied",
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Verouderd",
"banned": "Banned" "banned": "Verbannen"
},
"myspeed": {
"ping": "Ping",
"download": "Download",
"upload": "Upload"
},
"stocks": {
"stocks": "Aandelen",
"loading": "Laden",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Ongeldige configuratie"
},
"frigate": {
"cameras": "Camera's",
"uptime": "Online",
"version": "Versie"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Label"
},
"zabbix": {
"unclassified": "Niet geclassificeerd",
"information": "Informatie",
"warning": "Waarschuwingen",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Voertuig",
"vehicles": "Voertuigen",
"serviceRecords": "Service Historie",
"reminders": "Herinneringen",
"nextReminder": "Volgende Herinnering",
"none": "Geen"
},
"vikunja": {
"projects": "Actieve Projecten",
"tasks7d": "Taken Die Deze Week Af Moeten Zijn",
"tasksOverdue": "Achterstallige Taken",
"tasksInProgress": "Taken In Uitvoering"
},
"headscale": {
"name": "Naam",
"address": "Adres",
"last_seen": "Laatst Gezien",
"status": "Status",
"online": "Bereikbaar",
"offline": "Offline"
},
"beszel": {
"name": "Naam",
"systems": "Systems",
"up": "Online",
"status": "Status",
"updated": "Bijgewerkt",
"cpu": "CPU",
"memory": "GEH",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Gezond",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Ontbreekt",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Laden"
},
"gitlab": {
"groups": "Groups",
"issues": "Problemen",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mnd", "months": "mnd",
"days": "d", "days": "d",
"hours": "t", "hours": "t",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Last ned", "download": "Last ned",
"upload": "Opplastning", "upload": "Opplastning",
@@ -305,6 +309,16 @@
"stopped": "Stoppet", "stopped": "Stoppet",
"total": "Totalt" "total": "Totalt"
}, },
"suwayomi": {
"download": "Nedlastede",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Ulest",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Adresse", "address": "Adresse",
"expires": "Utgår", "expires": "Utgår",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Ago" "ago": "{{value}} Ago"
}, },
"technitium": {
"totalQueries": "Spørringer",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blokkert",
"totalDropped": "Dropped",
"totalClients": "Klienter"
},
"tdarr": { "tdarr": {
"queue": "Kø", "queue": "Kø",
"processed": "Behandlet", "processed": "Behandlet",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Plattformer", "platforms": "Plattformer",
"totalRoms": "Totale ROM-er" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domener",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Lagring"
}, },
"netdata": { "netdata": {
"warnings": "Advarsler", "warnings": "Advarsler",
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Responstid",
"download": "Last ned",
"upload": "Opplastning"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Oppetid",
"version": "Versjon"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Stikkord"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Informasjon",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Navn",
"address": "Adresse",
"last_seen": "Sist sett",
"status": "Status",
"online": "På nett",
"offline": "Frakoblet"
},
"beszel": {
"name": "Navn",
"systems": "Systems",
"up": "Oppe",
"status": "Status",
"updated": "Oppdatert",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Friskt",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Mangler",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mc", "months": "mc",
"days": "d", "days": "d",
"hours": "g", "hours": "g",
@@ -140,7 +140,7 @@
"connectionStatusPendingDisconnect": "Oczekujące rozłączenie", "connectionStatusPendingDisconnect": "Oczekujące rozłączenie",
"connectionStatusDisconnecting": "Rozłączanie", "connectionStatusDisconnecting": "Rozłączanie",
"connectionStatusDisconnected": "Rozłączono", "connectionStatusDisconnected": "Rozłączono",
"connectionStatusConnected": "Connected", "connectionStatusConnected": "Połączono",
"uptime": "Czas działania", "uptime": "Czas działania",
"maxDown": "Maks. Pobieranie", "maxDown": "Maks. Pobieranie",
"maxUp": "Maks. Wysyłanie", "maxUp": "Maks. Wysyłanie",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Trafienia w cache'u",
"cachemissbytes": "Straty cache'u"
},
"downloadstation": { "downloadstation": {
"download": "Pobieranie", "download": "Pobieranie",
"upload": "Wysyłanie", "upload": "Wysyłanie",
@@ -279,9 +283,9 @@
}, },
"netalertx": { "netalertx": {
"total": "Całkowite", "total": "Całkowite",
"connected": "Connected", "connected": "Połączono",
"new_devices": "New Devices", "new_devices": "Nowe urządzenia",
"down_alerts": "Down Alerts" "down_alerts": "Alerty niedostępności"
}, },
"pihole": { "pihole": {
"queries": "Zapytania", "queries": "Zapytania",
@@ -305,6 +309,16 @@
"stopped": "Zatrzymane", "stopped": "Zatrzymane",
"total": "Całkowite" "total": "Całkowite"
}, },
"suwayomi": {
"download": "Pobrano",
"nondownload": "Non-Downloaded",
"read": "Przeczytane",
"unread": "Nieprzeczytane",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Adres", "address": "Adres",
"expires": "Wygasa za", "expires": "Wygasa za",
@@ -319,6 +333,19 @@
"seconds": "{{number}}sekund", "seconds": "{{number}}sekund",
"ago": "{{value}} temu" "ago": "{{value}} temu"
}, },
"technitium": {
"totalQueries": "Zapytania",
"totalNoError": "Sukces",
"totalServerFailure": "Porażki",
"totalNxDomain": "Domeny NX",
"totalRefused": "Odrzucone",
"totalAuthoritative": "Autorytatywne",
"totalRecursive": "Rekursywne",
"totalCached": "Zbuforowane",
"totalBlocked": "Zablokowane",
"totalDropped": "Upuszczone",
"totalClients": "Klienci"
},
"tdarr": { "tdarr": {
"queue": "Kolejka", "queue": "Kolejka",
"processed": "Przetworzone", "processed": "Przetworzone",
@@ -446,8 +473,8 @@
"51-night": "Lekka mżawka", "51-night": "Lekka mżawka",
"53-day": "Mżawka", "53-day": "Mżawka",
"53-night": "Mżawka", "53-night": "Mżawka",
"55-day": "Ciężka mżawka", "55-day": "Gęsta mżawka",
"55-night": "Ciężka mżawka", "55-night": "Gęsta mżawka",
"56-day": "Lekko chłodna mżawka", "56-day": "Lekko chłodna mżawka",
"56-night": "Lekko chłodna mżawka", "56-night": "Lekko chłodna mżawka",
"57-day": "Chłodna mżawka", "57-day": "Chłodna mżawka",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platformy", "platforms": "Platformy",
"totalRoms": "Łącznie ROM" "totalRoms": "Gry",
"saves": "Zapisy",
"states": "Stany",
"screenshots": "Screeny",
"totalfilesize": "Rozmiar całkowity"
},
"mailcow": {
"domains": "Domeny",
"mailboxes": "Skrzynki",
"mails": "Poczta",
"storage": "Pamięć"
}, },
"netdata": { "netdata": {
"warnings": "Ostrzeżenia", "warnings": "Ostrzeżenia",
@@ -878,15 +915,97 @@
"bans": "Bany" "bans": "Bany"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Połączono",
"enabled": "Włączone", "enabled": "Włączone",
"disabled": "Wyłączone", "disabled": "Wyłączone",
"total": "Całkowite" "total": "Całkowite"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Proxy",
"auth": "With Auth", "auth": "Z uwietrzytelnieniem",
"outdated": "Outdated", "outdated": "Nieaktualne",
"banned": "Banned" "banned": "Zbanowano"
},
"myspeed": {
"ping": "Ping",
"download": "Pobieranie",
"upload": "Wysyłanie"
},
"stocks": {
"stocks": "Giełda",
"loading": "Wczytywanie",
"open": "Otwarte - rynek US",
"closed": "Zamknięte - rynek US",
"invalidConfiguration": "Nieprawidłowa konfiguracja"
},
"frigate": {
"cameras": "Kamery",
"uptime": "Czas działania",
"version": "Wersja"
},
"linkwarden": {
"links": "Łącza",
"collections": "Kolekcje",
"tags": "Tagi"
},
"zabbix": {
"unclassified": "Niezaklasyfikowane",
"information": "Informacje",
"warning": "Ostrzeżenie",
"average": "Średnia",
"high": "Wysokie",
"disaster": "Katastrofa"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Nazwa",
"address": "Adres",
"last_seen": "Ostatnio dostępny",
"status": "Stan",
"online": "Dostępny",
"offline": "Nieosiągalny"
},
"beszel": {
"name": "Nazwa",
"systems": "Systems",
"up": "Dostępny",
"status": "Stan",
"updated": "Zaktualizowane",
"cpu": "Procesor",
"memory": "RAM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Zdrowy",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Brakujące",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Wczytywanie"
},
"gitlab": {
"groups": "Groups",
"issues": "Zgłoszenia",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,8 +13,8 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mes", "months": "mês",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
"minutes": "min", "minutes": "min",
@@ -30,9 +30,9 @@
"response_data": "Dados da Resposta" "response_data": "Dados da Resposta"
}, },
"weather": { "weather": {
"current": "Localização atual", "current": "Localização actual",
"allow": "Clique para permitir", "allow": "Clique para permitir",
"updating": "Atualizando", "updating": "A actualizar",
"wait": "Por favor aguarde" "wait": "Por favor aguarde"
}, },
"search": { "search": {
@@ -79,7 +79,7 @@
"starting": "A iniciar", "starting": "A iniciar",
"unhealthy": "Não-saudável", "unhealthy": "Não-saudável",
"not_found": "Não Encontrado", "not_found": "Não Encontrado",
"exited": "Encerrado", "exited": "Saiu",
"partial": "Parcial" "partial": "Parcial"
}, },
"ping": { "ping": {
@@ -117,10 +117,10 @@
"evcc": { "evcc": {
"pv_power": "Produção", "pv_power": "Produção",
"battery_soc": "Bateria", "battery_soc": "Bateria",
"grid_power": "Grade", "grid_power": "Grelha",
"home_power": "Consumo", "home_power": "Consumo",
"charge_power": "Carregador", "charge_power": "Carregador",
"watt_hour": "Kw" "watt_hour": "Wh"
}, },
"flood": { "flood": {
"download": "Descarregar", "download": "Descarregar",
@@ -129,18 +129,18 @@
"seed": "Semente" "seed": "Semente"
}, },
"freshrss": { "freshrss": {
"subscriptions": "Assinaturas", "subscriptions": "Subscrições",
"unread": "Não lida" "unread": "Não lida"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Estado", "connectionStatus": "Estado",
"connectionStatusUnconfigured": "Não configurado", "connectionStatusUnconfigured": "Desconfigurado",
"connectionStatusConnecting": "A conectar", "connectionStatusConnecting": "A conectar",
"connectionStatusAuthenticating": "Autenticando", "connectionStatusAuthenticating": "A Autenticar",
"connectionStatusPendingDisconnect": "Desconexão pendente", "connectionStatusPendingDisconnect": "Desconexão pendente",
"connectionStatusDisconnecting": "Desconectando", "connectionStatusDisconnecting": "A Desconectar",
"connectionStatusDisconnected": "Desconectado", "connectionStatusDisconnected": "Desconectado",
"connectionStatusConnected": "Connected", "connectionStatusConnected": "Conectado",
"uptime": "Ligado", "uptime": "Ligado",
"maxDown": "Máx. de Descarga", "maxDown": "Máx. de Descarga",
"maxUp": "Max. de Envio", "maxUp": "Max. de Envio",
@@ -148,19 +148,19 @@
"up": "Up", "up": "Up",
"received": "Recebido", "received": "Recebido",
"sent": "Enviado", "sent": "Enviado",
"externalIPAddress": "Endereço IP externo" "externalIPAddress": "Endereço IP Externo"
}, },
"caddy": { "caddy": {
"upstreams": "Upstreams", "upstreams": "Upstreams",
"requests": "Solicitações atuais", "requests": "Solicitações actuais",
"requests_failed": "Solicitações com falha" "requests_failed": "Solicitações falhadas"
}, },
"changedetectionio": { "changedetectionio": {
"totalObserved": "Total Observado", "totalObserved": "Total Observado",
"diffsDetected": "Diferenças Detetadas" "diffsDetected": "Diferenças Detectadas"
}, },
"channelsdvrserver": { "channelsdvrserver": {
"shows": "Shows", "shows": "Séries",
"recordings": "Gravações", "recordings": "Gravações",
"scheduled": "Agendado", "scheduled": "Agendado",
"passes": "Passes" "passes": "Passes"
@@ -170,7 +170,7 @@
"transcoding": "Transcodificação", "transcoding": "Transcodificação",
"bitrate": "Taxa de bits", "bitrate": "Taxa de bits",
"no_active": "Sem streams ativas", "no_active": "Sem streams ativas",
"plex_connection_error": "Verifique a conexão Plex" "plex_connection_error": "Verifique a conexão do Plex"
}, },
"omada": { "omada": {
"connectedAp": "APs Ligados", "connectedAp": "APs Ligados",
@@ -182,10 +182,10 @@
"nzbget": { "nzbget": {
"rate": "Taxa", "rate": "Taxa",
"remaining": "Restante", "remaining": "Restante",
"downloaded": "Baixado" "downloaded": "Descarregado"
}, },
"plex": { "plex": {
"streams": "Streams Ativas", "streams": "Streams Activas",
"albums": "Álbuns", "albums": "Álbuns",
"movies": "Filmes", "movies": "Filmes",
"tv": "Series de TV" "tv": "Series de TV"
@@ -193,10 +193,10 @@
"sabnzbd": { "sabnzbd": {
"rate": "Taxa", "rate": "Taxa",
"queue": "Fila", "queue": "Fila",
"timeleft": "Tempo restante" "timeleft": "Tempo Restante"
}, },
"rutorrent": { "rutorrent": {
"active": "Ativo", "active": "Activo",
"upload": "Carregar", "upload": "Carregar",
"download": "Descarregar" "download": "Descarregar"
}, },
@@ -214,8 +214,8 @@
}, },
"qnap": { "qnap": {
"cpuUsage": "Utilização do CPU", "cpuUsage": "Utilização do CPU",
"memUsage": "Utilização de memória", "memUsage": "Utilização de Memória",
"systemTempC": "Temperatura do sistema", "systemTempC": "Temperatura do Sistema",
"poolUsage": "Uso de Banco", "poolUsage": "Uso de Banco",
"volumeUsage": "Uso do Volume", "volumeUsage": "Uso do Volume",
"invalid": "Inválido" "invalid": "Inválido"
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Semente" "seed": "Semente"
}, },
"develancacheui": {
"cachehitbytes": "Bytes de Acerto na Memória transitória",
"cachemissbytes": "Bytes de Falha de Memória transitória"
},
"downloadstation": { "downloadstation": {
"download": "Descarregar", "download": "Descarregar",
"upload": "Carregar", "upload": "Carregar",
@@ -233,55 +237,55 @@
"seed": "Semente" "seed": "Semente"
}, },
"sonarr": { "sonarr": {
"wanted": "Desejada", "wanted": "Desejados",
"queued": "Em fila", "queued": "Em fila de espera",
"series": "Séries", "series": "Séries",
"queue": "Fila", "queue": "Fila",
"unknown": "Desconhecido" "unknown": "Desconhecido"
}, },
"radarr": { "radarr": {
"wanted": "Desejada", "wanted": "Desejados",
"missing": "Faltando", "missing": "Em falta",
"queued": "Em fila", "queued": "Em fila de espera",
"movies": "Filmes", "movies": "Filmes",
"queue": "Fila", "queue": "Fila",
"unknown": "Desconhecido" "unknown": "Desconhecido"
}, },
"lidarr": { "lidarr": {
"wanted": "Desejada", "wanted": "Desejados",
"queued": "Em fila", "queued": "Em fila de espera",
"artists": "Artistas" "artists": "Artistas"
}, },
"readarr": { "readarr": {
"wanted": "Desejada", "wanted": "Desejados",
"queued": "Em fila", "queued": "Em fila de espera",
"books": "Livros" "books": "Livros"
}, },
"bazarr": { "bazarr": {
"missingEpisodes": "Episódios Faltantes", "missingEpisodes": "Episódios em Falta",
"missingMovies": "Filmes Faltantes" "missingMovies": "Filmes em Falta"
}, },
"ombi": { "ombi": {
"pending": "Pendente", "pending": "Pendente",
"approved": "Aprovada", "approved": "Aprovado",
"available": "Disponível" "available": "Disponível"
}, },
"jellyseerr": { "jellyseerr": {
"pending": "Pendente", "pending": "Pendente",
"approved": "Aprovada", "approved": "Aprovado",
"available": "Disponível" "available": "Disponível"
}, },
"overseerr": { "overseerr": {
"pending": "Pendente", "pending": "Pendente",
"processing": "Processando", "processing": "A Processar",
"approved": "Aprovada", "approved": "Aprovado",
"available": "Disponível" "available": "Disponível"
}, },
"netalertx": { "netalertx": {
"total": "Total", "total": "Total",
"connected": "Connected", "connected": "Conectado",
"new_devices": "New Devices", "new_devices": "Novos Dispositivos",
"down_alerts": "Down Alerts" "down_alerts": "Alertas de Falha"
}, },
"pihole": { "pihole": {
"queries": "Consultas", "queries": "Consultas",
@@ -305,11 +309,21 @@
"stopped": "Parado", "stopped": "Parado",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Descarregado",
"nondownload": "Non-Downloaded",
"read": "Lido",
"unread": "Não lida",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Endereço", "address": "Endereço",
"expires": "Expira", "expires": "Expira",
"never": "Nunca", "never": "Nunca",
"last_seen": "Última vez visto", "last_seen": "Última Vez Visto",
"now": "Agora", "now": "Agora",
"years": "{{number}}y", "years": "{{number}}y",
"weeks": "{{number}}w", "weeks": "{{number}}w",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Atrás" "ago": "{{value}} Atrás"
}, },
"technitium": {
"totalQueries": "Consultas",
"totalNoError": "Sucesso",
"totalServerFailure": "Falhas",
"totalNxDomain": "Domínios NX",
"totalRefused": "Recusado",
"totalAuthoritative": "Autoritário",
"totalRecursive": "Recursivo",
"totalCached": "Em Memória transitória",
"totalBlocked": "Bloqueado",
"totalDropped": "Perdidos",
"totalClients": "Clientes"
},
"tdarr": { "tdarr": {
"queue": "Fila", "queue": "Fila",
"processed": "Processado", "processed": "Processado",
@@ -328,19 +355,19 @@
"traefik": { "traefik": {
"routers": "Roteadores", "routers": "Roteadores",
"services": "Serviços", "services": "Serviços",
"middleware": "Software Middleware" "middleware": "Middleware"
}, },
"navidrome": { "navidrome": {
"nothing_streaming": "Sem streams ativas", "nothing_streaming": "Sem streams ativas",
"please_wait": "Por favor aguarde" "please_wait": "Por Favor, Aguarde"
}, },
"npm": { "npm": {
"enabled": "Ativo", "enabled": "Activo",
"disabled": "Desabilitado", "disabled": "Desabilitado",
"total": "Total" "total": "Total"
}, },
"coinmarketcap": { "coinmarketcap": {
"configure": "Configurar uma ou mais moedas", "configure": "Configure uma ou mais criptomoedas para rastrear",
"1hour": "1 Hora", "1hour": "1 Hora",
"1day": "1 Dia", "1day": "1 Dia",
"7days": "7 Dias", "7days": "7 Dias",
@@ -374,8 +401,8 @@
"domain_count": "Domínios" "domain_count": "Domínios"
}, },
"medusa": { "medusa": {
"wanted": "Desejada", "wanted": "Desejados",
"queued": "Em fila", "queued": "Em fila de espera",
"series": "Séries" "series": "Séries"
}, },
"minecraft": { "minecraft": {
@@ -391,8 +418,8 @@
}, },
"authentik": { "authentik": {
"users": "Utilizadores", "users": "Utilizadores",
"loginsLast24H": "Inícios de sessão (24h)", "loginsLast24H": "Inícios de Sessão (24h)",
"failedLoginsLast24H": "Inícios de sessão falhados (24h)" "failedLoginsLast24H": "Inícios de Sessão Falhados (24h)"
}, },
"proxmox": { "proxmox": {
"mem": "MEM", "mem": "MEM",
@@ -423,16 +450,16 @@
"quicklaunch": { "quicklaunch": {
"bookmark": "Marcador", "bookmark": "Marcador",
"service": "Serviço", "service": "Serviço",
"search": "Busca", "search": "Pesquisa",
"custom": "Personalizado", "custom": "Personalizado",
"visit": "Visitar", "visit": "Visitar",
"url": "Endereço URL", "url": "Endereço URL",
"searchsuggestion": "Suggestion" "searchsuggestion": "Sugestão"
}, },
"wmo": { "wmo": {
"0-day": "Solarengo", "0-day": "Solarengo",
"0-night": "Limpo", "0-night": "Limpo",
"1-day": "Maioritariamente ensolarado", "1-day": "Maioritariamente Solarengo",
"1-night": "Maioritariamente Limpo", "1-night": "Maioritariamente Limpo",
"2-day": "Parcialmente Nublado", "2-day": "Parcialmente Nublado",
"2-night": "Parcialmente Nublado", "2-night": "Parcialmente Nublado",
@@ -470,16 +497,16 @@
"75-night": "Neve forte", "75-night": "Neve forte",
"77-day": "Grãos de Neve", "77-day": "Grãos de Neve",
"77-night": "Grãos de Neve", "77-night": "Grãos de Neve",
"80-day": "Neve fraca", "80-day": "Chuviscos Leves",
"80-night": "Neve fraca", "80-night": "Chuviscos Leves",
"81-day": "Chuviscos", "81-day": "Chuviscos",
"81-night": "Chuviscos", "81-night": "Chuviscos",
"82-day": "Chuviscos fortes", "82-day": "Chuviscos fortes",
"82-night": "Chuviscos fortes", "82-night": "Chuviscos fortes",
"85-day": "Precipitação de Neve", "85-day": "Chuva de Neve",
"85-night": "Precipitação de Neve", "85-night": "Chuva de Neve",
"86-day": "Precipitação de Neve", "86-day": "Chuva de Neve",
"86-night": "Precipitação de Neve", "86-night": "Chuva de Neve",
"95-day": "Trovoada", "95-day": "Trovoada",
"95-night": "Trovoada", "95-night": "Trovoada",
"96-day": "Trovoada com granizo", "96-day": "Trovoada com granizo",
@@ -489,10 +516,10 @@
}, },
"homebridge": { "homebridge": {
"available_update": "Sistema", "available_update": "Sistema",
"updates": "Atualizações", "updates": "Actualizações",
"update_available": "Atualização disponível", "update_available": "Atualização disponível",
"up_to_date": "Atualizado", "up_to_date": "Atualizado",
"child_bridges": "Pontes Filhas", "child_bridges": "Child Bridges",
"child_bridges_status": "{{ok}}/{{total}}", "child_bridges_status": "{{ok}}/{{total}}",
"up": "Up", "up": "Up",
"pending": "Pendente", "pending": "Pendente",
@@ -501,12 +528,12 @@
"healthchecks": { "healthchecks": {
"new": "Novo", "new": "Novo",
"up": "Up", "up": "Up",
"grace": "Em Período Gratuito", "grace": "Em Período de Graça",
"down": "Down", "down": "Down",
"paused": "Pausado", "paused": "Pausa",
"status": "Estado", "status": "Estado",
"last_ping": "Ultimo Ping", "last_ping": "Ultimo Ping",
"never": "Nenhum ping ainda" "never": "Nenhum Ping ainda"
}, },
"watchtower": { "watchtower": {
"containers_scanned": "Verificado", "containers_scanned": "Verificado",
@@ -514,7 +541,7 @@
"containers_failed": "Falhou" "containers_failed": "Falhou"
}, },
"autobrr": { "autobrr": {
"approvedPushes": "Aprovada", "approvedPushes": "Aprovado",
"rejectedPushes": "Rejeitado", "rejectedPushes": "Rejeitado",
"filters": "Filtros", "filters": "Filtros",
"indexers": "Indexadores" "indexers": "Indexadores"
@@ -532,7 +559,7 @@
}, },
"pyload": { "pyload": {
"speed": "Velocidade", "speed": "Velocidade",
"active": "Ativo", "active": "Activo",
"queue": "Fila", "queue": "Fila",
"total": "Total" "total": "Total"
}, },
@@ -544,14 +571,14 @@
"hdhomerun": { "hdhomerun": {
"channels": "Canais", "channels": "Canais",
"hd": "HD", "hd": "HD",
"tunerCount": "Tuners", "tunerCount": "Sintonizadores",
"channelNumber": "Channel", "channelNumber": "Canal",
"channelNetwork": "Network", "channelNetwork": "Rede",
"signalStrength": "Strength", "signalStrength": "Potência",
"signalQuality": "Quality", "signalQuality": "Qualidade",
"symbolQuality": "Quality", "symbolQuality": "Qualidade",
"networkRate": "Taxa de bits", "networkRate": "Taxa de bits",
"clientIP": "Client" "clientIP": "Cliente"
}, },
"scrutiny": { "scrutiny": {
"passed": "Aprovado", "passed": "Aprovado",
@@ -571,8 +598,8 @@
"low_battery": "Bateria Fraca" "low_battery": "Bateria Fraca"
}, },
"nextdns": { "nextdns": {
"wait": "Por favor aguarde", "wait": "Por Favor, Aguarde",
"no_devices": "Nenhum dado do dispositivo recebido" "no_devices": "Nenhum Dado do Dispositivo Recebido"
}, },
"mikrotik": { "mikrotik": {
"cpuLoad": "Carga do CPU", "cpuLoad": "Carga do CPU",
@@ -582,7 +609,7 @@
}, },
"xteve": { "xteve": {
"streams_all": "Todos os Streams", "streams_all": "Todos os Streams",
"streams_active": "Streams Ativas", "streams_active": "Streams Activas",
"streams_xepg": "Canais XEPG" "streams_xepg": "Canais XEPG"
}, },
"opendtu": { "opendtu": {
@@ -620,7 +647,7 @@
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"temp": "Temp", "temp": "Temp",
"disk": "Utilização", "disk": "Utilização do Disco",
"wanIP": "WAN IP" "wanIP": "WAN IP"
}, },
"proxmoxbackupserver": { "proxmoxbackupserver": {
@@ -661,17 +688,17 @@
"mylar": { "mylar": {
"series": "Séries", "series": "Séries",
"issues": "Problemas", "issues": "Problemas",
"wanted": "Desejada" "wanted": "Desejados"
}, },
"photoprism": { "photoprism": {
"albums": "Álbuns", "albums": "Álbuns",
"photos": "Fotos", "photos": "Fotos",
"videos": "Vídeos", "videos": "Vídeos",
"people": "Pessoa" "people": "Pessoas"
}, },
"fileflows": { "fileflows": {
"queue": "Fila", "queue": "Fila",
"processing": "Processando", "processing": "A Processar",
"processed": "Processado", "processed": "Processado",
"time": "Hora" "time": "Hora"
}, },
@@ -679,13 +706,13 @@
"dashboards": "Painéis", "dashboards": "Painéis",
"datasources": "Origem de Dados", "datasources": "Origem de Dados",
"totalalerts": "Total Alertas", "totalalerts": "Total Alertas",
"alertstriggered": "Alertas Disparados" "alertstriggered": "Alertas Desencadeados"
}, },
"nextcloud": { "nextcloud": {
"cpuload": "Carga de CPU", "cpuload": "Carga de CPU",
"memoryusage": "Memória Utilizada", "memoryusage": "Memória Utilizada",
"freespace": "Espaço Livre", "freespace": "Espaço Livre",
"activeusers": "Utilizadores Ativos", "activeusers": "Utilizadores Activos",
"numfiles": "Ficheiros", "numfiles": "Ficheiros",
"numshares": "Itens partilhados" "numshares": "Itens partilhados"
}, },
@@ -707,7 +734,7 @@
}, },
"prometheus": { "prometheus": {
"targets_up": "Alvo ativo", "targets_up": "Alvo ativo",
"targets_down": "Alvo inativo", "targets_down": "Alvo Inactivo",
"targets_total": "Total de Alvos" "targets_total": "Total de Alvos"
}, },
"gatus": { "gatus": {
@@ -718,7 +745,7 @@
"ghostfolio": { "ghostfolio": {
"gross_percent_today": "Hoje", "gross_percent_today": "Hoje",
"gross_percent_1y": "Um ano", "gross_percent_1y": "Um ano",
"gross_percent_max": "Todo o tempo" "gross_percent_max": "Desde Sempre"
}, },
"audiobookshelf": { "audiobookshelf": {
"podcasts": "Podcasts", "podcasts": "Podcasts",
@@ -733,7 +760,7 @@
}, },
"whatsupdocker": { "whatsupdocker": {
"monitoring": "A monitorizar", "monitoring": "A monitorizar",
"updates": "Atualizações" "updates": "Actualizações"
}, },
"calibreweb": { "calibreweb": {
"books": "Livros", "books": "Livros",
@@ -755,14 +782,14 @@
"result": "Resultado", "result": "Resultado",
"status": "Estado", "status": "Estado",
"buildId": "ID da compilação", "buildId": "ID da compilação",
"succeeded": "Com êxito", "succeeded": "Bem sucedido",
"notStarted": "Não Iniciado", "notStarted": "Não Iniciado",
"failed": "Falhou", "failed": "Falhou",
"canceled": "Cancelado", "canceled": "Cancelado",
"inProgress": "Em progresso", "inProgress": "Em progresso",
"totalPrs": "Total de PRs", "totalPrs": "Total de PRs",
"myPrs": "Meus PRs", "myPrs": "Os Meus PRs",
"approved": "Aprovada" "approved": "Aprovado"
}, },
"gamedig": { "gamedig": {
"status": "Estado", "status": "Estado",
@@ -770,7 +797,7 @@
"offline": "Desligado", "offline": "Desligado",
"name": "Nome", "name": "Nome",
"map": "Mapa", "map": "Mapa",
"currentPlayers": "Jogadores atuais", "currentPlayers": "Jogadores actuais",
"players": "Reprodutores", "players": "Reprodutores",
"maxPlayers": "Máximo de Jogadores", "maxPlayers": "Máximo de Jogadores",
"bots": "Bots", "bots": "Bots",
@@ -779,7 +806,7 @@
"urbackup": { "urbackup": {
"ok": "Ok", "ok": "Ok",
"errored": "Erros", "errored": "Erros",
"noRecent": "Desatualizado", "noRecent": "Desactualizado",
"totalUsed": "Espaço utilizado" "totalUsed": "Espaço utilizado"
}, },
"mealie": { "mealie": {
@@ -789,7 +816,7 @@
"tags": "Etiquetas" "tags": "Etiquetas"
}, },
"openmediavault": { "openmediavault": {
"downloading": "A transferir", "downloading": "A descarregar",
"total": "Total", "total": "Total",
"running": "A correr", "running": "A correr",
"stopped": "Parado", "stopped": "Parado",
@@ -798,23 +825,23 @@
}, },
"openwrt": { "openwrt": {
"uptime": "Ligado", "uptime": "Ligado",
"cpuLoad": "CPU Load Avg (5m)", "cpuLoad": "Carga da CPU média (5m)",
"up": "Up", "up": "Up",
"down": "Down", "down": "Down",
"bytesTx": "Transmitted", "bytesTx": "Transmitido",
"bytesRx": "Recebido" "bytesRx": "Recebido"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Estado", "status": "Estado",
"uptime": "Ligado", "uptime": "Ligado",
"lastDown": "Última inatividade", "lastDown": "Última Inactividade",
"downDuration": "Duração de inatividade", "downDuration": "Duração de Inactividade",
"sitesUp": "Sites no Ar", "sitesUp": "Sites no Ar",
"sitesDown": "Sites Fora do Ar", "sitesDown": "Sites Fora do Ar",
"paused": "Pausado", "paused": "Pausa",
"notyetchecked": "Ainda não verificado", "notyetchecked": "Ainda não verificado",
"up": "Up", "up": "Up",
"seemsdown": "Parece Baixo", "seemsdown": "Parece em Baixo",
"down": "Down", "down": "Down",
"unknown": "Desconhecido" "unknown": "Desconhecido"
}, },
@@ -826,67 +853,159 @@
"noEventsFound": "Nenhum evento encontrado" "noEventsFound": "Nenhum evento encontrado"
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Plataformas",
"totalRoms": "Total ROMs" "totalRoms": "Jogos",
"saves": "Saves",
"states": "Estados",
"screenshots": "Screenshots",
"totalfilesize": "Tamanho Total"
},
"mailcow": {
"domains": "Domínios",
"mailboxes": "Caixas de Correio",
"mails": "E-mails",
"storage": "Armazenamento"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Avisos",
"criticals": "Criticals" "criticals": "Críticos"
}, },
"plantit": { "plantit": {
"events": "Events", "events": "Eventos",
"plants": "Plants", "plants": "Plantas",
"photos": "Fotos", "photos": "Fotos",
"species": "Species" "species": "Espécies"
}, },
"gitea": { "gitea": {
"notifications": "Notifications", "notifications": "Notificações",
"issues": "Problemas", "issues": "Problemas",
"pulls": "Pull Requests" "pulls": "Solicitar pull"
}, },
"stash": { "stash": {
"scenes": "Scenes", "scenes": "Cenas",
"scenesPlayed": "Scenes Played", "scenesPlayed": "Cenas reproduzidas",
"playCount": "Total Plays", "playCount": "Total de Reproduções",
"playDuration": "Time Watched", "playDuration": "Tempo Assistido",
"sceneSize": "Scenes Size", "sceneSize": "Tamanho das cenas",
"sceneDuration": "Scenes Duration", "sceneDuration": "Duração das cenas",
"images": "Images", "images": "Imagens",
"imageSize": "Images Size", "imageSize": "Tamanho das imagens",
"galleries": "Galleries", "galleries": "Galerias",
"performers": "Performers", "performers": "Artistas de palco",
"studios": "Studios", "studios": "Estúdios",
"movies": "Filmes", "movies": "Filmes",
"tags": "Etiquetas", "tags": "Etiquetas",
"oCount": "O Count" "oCount": "Contagem de O's"
}, },
"tandoor": { "tandoor": {
"users": "Utilizadores", "users": "Utilizadores",
"recipes": "Receitas", "recipes": "Receitas",
"keywords": "Keywords" "keywords": "Palavras-chave"
}, },
"homebox": { "homebox": {
"items": "Items", "items": "Items",
"totalWithWarranty": "With Warranty", "totalWithWarranty": "Com Garantia",
"locations": "Locations", "locations": "Localizações",
"labels": "Labels", "labels": "Etiquetas",
"users": "Utilizadores", "users": "Utilizadores",
"totalValue": "Total Value" "totalValue": "Valor Total"
}, },
"crowdsec": { "crowdsec": {
"alerts": "Alertas", "alerts": "Alertas",
"bans": "Bans" "bans": "Banidos"
}, },
"wgeasy": { "wgeasy": {
"connected": "Connected", "connected": "Conectado",
"enabled": "Ativo", "enabled": "Activo",
"disabled": "Desabilitado", "disabled": "Desabilitado",
"total": "Total" "total": "Total"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Com proxy",
"auth": "With Auth", "auth": "Com Autorização",
"outdated": "Outdated", "outdated": "Desactualizado",
"banned": "Banned" "banned": "Banido"
},
"myspeed": {
"ping": "Tempo de resposta",
"download": "Descarregar",
"upload": "Carregar"
},
"stocks": {
"stocks": "Acções",
"loading": "A carregar",
"open": "Aberto - Mercado dos EUA",
"closed": "Fechado - Mercado dos EUA",
"invalidConfiguration": "Configuração Inválida"
},
"frigate": {
"cameras": "Câmeras",
"uptime": "Ligado",
"version": "Versão"
},
"linkwarden": {
"links": "Links",
"collections": "Colecções",
"tags": "Etiquetas"
},
"zabbix": {
"unclassified": "Não Classificados",
"information": "Informação",
"warning": "Avisos",
"average": "Média",
"high": "Elevado",
"disaster": "Desastre"
},
"lubelogger": {
"vehicle": "Veículo",
"vehicles": "Veículos",
"serviceRecords": "Registros de Serviço",
"reminders": "Lembretes",
"nextReminder": "Próximo Lembrete",
"none": "Nenhum"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Nome",
"address": "Endereço",
"last_seen": "Última Vez Visto",
"status": "Estado",
"online": "Online",
"offline": "Desligado"
},
"beszel": {
"name": "Nome",
"systems": "Systems",
"up": "Up",
"status": "Estado",
"updated": "Atualizado",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Saudável",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Em falta",
"suspended": "Suspended"
},
"spoolman": {
"loading": "A carregar"
},
"gitlab": {
"groups": "Groups",
"issues": "Problemas",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "M", "months": "M",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -24,16 +24,16 @@
"missing_type": "Tipo de Widget ausente: {{type}}", "missing_type": "Tipo de Widget ausente: {{type}}",
"api_error": "Erros de API", "api_error": "Erros de API",
"information": "Informação", "information": "Informação",
"status": "Estado", "status": "Status",
"url": "Endereço URL", "url": "Endereço URL",
"raw_error": "Erro Raw", "raw_error": "Erro Bruto",
"response_data": "Dados da Resposta" "response_data": "Dados de Resposta"
}, },
"weather": { "weather": {
"current": "Localização atual", "current": "Localização atual",
"allow": "Clicar para permitir", "allow": "Clique para permitir",
"updating": "Atualizando", "updating": "Atualizando",
"wait": "Por favor aguarde" "wait": "Por favor, aguarde"
}, },
"search": { "search": {
"placeholder": "Pesquisar…" "placeholder": "Pesquisar…"
@@ -50,7 +50,7 @@
"uptime": "CIMA" "uptime": "CIMA"
}, },
"unifi": { "unifi": {
"users": "Utilizadores", "users": "Usuários",
"uptime": "Ligado", "uptime": "Ligado",
"days": "Dias", "days": "Dias",
"wan": "WAN", "wan": "WAN",
@@ -59,20 +59,20 @@
"devices": "Dispositivos", "devices": "Dispositivos",
"lan_devices": "Dispositivos LAN", "lan_devices": "Dispositivos LAN",
"wlan_devices": "Dispositivos WLAN", "wlan_devices": "Dispositivos WLAN",
"lan_users": "Utilizadores LAN", "lan_users": "Usuários de LAN",
"wlan_users": "Utilizadores WLAN", "wlan_users": "Usuários de WLAN",
"up": "CIMA", "up": "CIMA",
"down": "Desligado", "down": "Desligado",
"wait": "Por favor aguarde", "wait": "Por favor, aguarde",
"empty_data": "Status de Subsistema Desconhecido" "empty_data": "Status do Subsistema desconhecido"
}, },
"docker": { "docker": {
"rx": "Rx", "rx": "Rx",
"tx": "Tx", "tx": "Tx",
"mem": "MEM", "mem": "MEM",
"cpu": "CPU", "cpu": "CPU",
"running": "A correr", "running": "Executando",
"offline": "Desligado", "offline": "Offline",
"error": "Erro", "error": "Erro",
"unknown": "Desconhecido", "unknown": "Desconhecido",
"healthy": "Saudável", "healthy": "Saudável",
@@ -108,8 +108,8 @@
"songs": "Canções" "songs": "Canções"
}, },
"esphome": { "esphome": {
"offline": "Desligado", "offline": "Offline",
"offline_alt": "Desligado", "offline_alt": "Offline",
"online": "Disponível", "online": "Disponível",
"total": "Total", "total": "Total",
"unknown": "Desconhecido" "unknown": "Desconhecido"
@@ -133,7 +133,7 @@
"unread": "Não lida" "unread": "Não lida"
}, },
"fritzbox": { "fritzbox": {
"connectionStatus": "Estado", "connectionStatus": "Status",
"connectionStatusUnconfigured": "Não configurado", "connectionStatusUnconfigured": "Não configurado",
"connectionStatusConnecting": "Conectando", "connectionStatusConnecting": "Conectando",
"connectionStatusAuthenticating": "Autenticando", "connectionStatusAuthenticating": "Autenticando",
@@ -142,7 +142,7 @@
"connectionStatusDisconnected": "Desconectado", "connectionStatusDisconnected": "Desconectado",
"connectionStatusConnected": "Conectado", "connectionStatusConnected": "Conectado",
"uptime": "Ligado", "uptime": "Ligado",
"maxDown": "Max. Down", "maxDown": "Tempo de inatividade máximo",
"maxUp": "Máx. Acima", "maxUp": "Máx. Acima",
"down": "Inativo", "down": "Inativo",
"up": "Ativo", "up": "Ativo",
@@ -216,7 +216,7 @@
"cpuUsage": "Uso de CPU", "cpuUsage": "Uso de CPU",
"memUsage": "Uso de Memória", "memUsage": "Uso de Memória",
"systemTempC": "Temp. do Sistema", "systemTempC": "Temp. do Sistema",
"poolUsage": "Pool Usage", "poolUsage": "Uso do Pool",
"volumeUsage": "Uso do volume", "volumeUsage": "Uso do volume",
"invalid": "Inválido" "invalid": "Inválido"
}, },
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Semente" "seed": "Semente"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Descarregar", "download": "Descarregar",
"upload": "Carregar", "upload": "Carregar",
@@ -301,23 +305,46 @@
"ping": "Tempo de resposta" "ping": "Tempo de resposta"
}, },
"portainer": { "portainer": {
"running": "A correr", "running": "Executando",
"stopped": "Parado", "stopped": "Parado",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Baixado",
"nondownload": "Non-Downloaded",
"read": "Lido",
"unread": "Não lida",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Endereço", "address": "Endereço",
"expires": "Expira em", "expires": "Expira em",
"never": "Nunca", "never": "Nunca",
"last_seen": "Visto por último", "last_seen": "Visto por último",
"now": "Agora", "now": "Agora",
"years": "{{number}}y", "years": "{{number}}a",
"weeks": "{{number}}w", "weeks": "{{number}}s",
"days": "{{number}}d", "days": "{{number}}d",
"hours": "{{number}}h", "hours": "{{number}}h",
"minutes": "{{number}}m", "minutes": "{{number}}m",
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Ago" "ago": "{{value}} Atrás"
},
"technitium": {
"totalQueries": "Consultas",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Bloqueado",
"totalDropped": "Dropped",
"totalClients": "Clientes"
}, },
"tdarr": { "tdarr": {
"queue": "Fila", "queue": "Fila",
@@ -328,7 +355,7 @@
"traefik": { "traefik": {
"routers": "Roteadores", "routers": "Roteadores",
"services": "Serviços", "services": "Serviços",
"middleware": "Middleware" "middleware": ""
}, },
"navidrome": { "navidrome": {
"nothing_streaming": "Sem Streams Ativos", "nothing_streaming": "Sem Streams Ativos",
@@ -369,7 +396,7 @@
"transferRate": "Taxa" "transferRate": "Taxa"
}, },
"mastodon": { "mastodon": {
"user_count": "Utilizadores", "user_count": "Usuários",
"status_count": "Postagens", "status_count": "Postagens",
"domain_count": "Domínios" "domain_count": "Domínios"
}, },
@@ -381,16 +408,16 @@
"minecraft": { "minecraft": {
"players": "Reprodutores", "players": "Reprodutores",
"version": "Versão", "version": "Versão",
"status": "Estado", "status": "Status",
"up": "Disponível", "up": "Disponível",
"down": "Desligado" "down": "Offline"
}, },
"miniflux": { "miniflux": {
"read": "Lido", "read": "Lido",
"unread": "Não lida" "unread": "Não lida"
}, },
"authentik": { "authentik": {
"users": "Utilizadores", "users": "Usuários",
"loginsLast24H": "Inícios de sessão (24h)", "loginsLast24H": "Inícios de sessão (24h)",
"failedLoginsLast24H": "Inícios de sessão falhados (24h)" "failedLoginsLast24H": "Inícios de sessão falhados (24h)"
}, },
@@ -403,7 +430,7 @@
"glances": { "glances": {
"cpu": "CPU", "cpu": "CPU",
"load": "Carga", "load": "Carga",
"wait": "Por favor aguarde", "wait": "Por favor, aguarde",
"temp": "TEMP", "temp": "TEMP",
"_temp": "Temperatura", "_temp": "Temperatura",
"warn": "Aviso", "warn": "Aviso",
@@ -504,7 +531,7 @@
"grace": "Em Período Gratuito", "grace": "Em Período Gratuito",
"down": "Inativo", "down": "Inativo",
"paused": "Pausado", "paused": "Pausado",
"status": "Estado", "status": "Status",
"last_ping": "Ultimo Ping", "last_ping": "Ultimo Ping",
"never": "Nenhum ping ainda" "never": "Nenhum ping ainda"
}, },
@@ -604,14 +631,14 @@
"layers": "Camadas" "layers": "Camadas"
}, },
"octoprint": { "octoprint": {
"printer_state": "Estado", "printer_state": "Status",
"temp_tool": "Temp. Ferramenta", "temp_tool": "Temp. Ferramenta",
"temp_bed": "Temp. Cama", "temp_bed": "Temp. Cama",
"job_completion": "Conclusão" "job_completion": "Conclusão"
}, },
"cloudflared": { "cloudflared": {
"origin_ip": "IP Origem", "origin_ip": "IP Origem",
"status": "Estado" "status": "Status"
}, },
"pfsense": { "pfsense": {
"load": "Carga Média", "load": "Carga Média",
@@ -630,7 +657,7 @@
"memory_usage": "Memória" "memory_usage": "Memória"
}, },
"immich": { "immich": {
"users": "Utilizadores", "users": "Usuários",
"photos": "Fotos", "photos": "Fotos",
"videos": "Vídeos", "videos": "Vídeos",
"storage": "Armazenamento" "storage": "Armazenamento"
@@ -690,7 +717,7 @@
"numshares": "Itens compartilhados" "numshares": "Itens compartilhados"
}, },
"kopia": { "kopia": {
"status": "Estado", "status": "Status",
"size": "Tamanho", "size": "Tamanho",
"lastrun": "Ultima Execução", "lastrun": "Ultima Execução",
"nextrun": "Próxima Execução", "nextrun": "Próxima Execução",
@@ -753,7 +780,7 @@
}, },
"azuredevops": { "azuredevops": {
"result": "Resultado", "result": "Resultado",
"status": "Estado", "status": "Status",
"buildId": "ID Compilação", "buildId": "ID Compilação",
"succeeded": "Bem-sucedido", "succeeded": "Bem-sucedido",
"notStarted": "Não iniciado", "notStarted": "Não iniciado",
@@ -765,9 +792,9 @@
"approved": "Aprovada" "approved": "Aprovada"
}, },
"gamedig": { "gamedig": {
"status": "Estado", "status": "Status",
"online": "Disponível", "online": "Disponível",
"offline": "Desligado", "offline": "Offline",
"name": "Nome", "name": "Nome",
"map": "Mapa", "map": "Mapa",
"currentPlayers": "Jogadores atuais", "currentPlayers": "Jogadores atuais",
@@ -784,14 +811,14 @@
}, },
"mealie": { "mealie": {
"recipes": "Receitas", "recipes": "Receitas",
"users": "Utilizadores", "users": "Usuários",
"categories": "Categorias", "categories": "Categorias",
"tags": "Marcadores" "tags": "Marcadores"
}, },
"openmediavault": { "openmediavault": {
"downloading": "Baixando", "downloading": "Baixando",
"total": "Total", "total": "Total",
"running": "A correr", "running": "Executando",
"stopped": "Parado", "stopped": "Parado",
"passed": "Aprovado", "passed": "Aprovado",
"failed": "Falhou" "failed": "Falhou"
@@ -805,7 +832,7 @@
"bytesRx": "Recebido" "bytesRx": "Recebido"
}, },
"uptimerobot": { "uptimerobot": {
"status": "Estado", "status": "Status",
"uptime": "Ligado", "uptime": "Ligado",
"lastDown": "Última inatividade", "lastDown": "Última inatividade",
"downDuration": "Duração de inatividade", "downDuration": "Duração de inatividade",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Plataformas", "platforms": "Plataformas",
"totalRoms": "Total de ROMs" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domínios",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Armazenamento"
}, },
"netdata": { "netdata": {
"warnings": "Alertas", "warnings": "Alertas",
@@ -861,7 +898,7 @@
"oCount": "Contagem 0" "oCount": "Contagem 0"
}, },
"tandoor": { "tandoor": {
"users": "Utilizadores", "users": "Usuários",
"recipes": "Receitas", "recipes": "Receitas",
"keywords": "Palavras-chave" "keywords": "Palavras-chave"
}, },
@@ -870,7 +907,7 @@
"totalWithWarranty": "Com Garantia", "totalWithWarranty": "Com Garantia",
"locations": "Localização", "locations": "Localização",
"labels": "Rótulos", "labels": "Rótulos",
"users": "Utilizadores", "users": "Usuários",
"totalValue": "Valor Total" "totalValue": "Valor Total"
}, },
"crowdsec": { "crowdsec": {
@@ -884,9 +921,91 @@
"total": "Total" "total": "Total"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Com proxy",
"auth": "With Auth", "auth": "Com Autenticação",
"outdated": "Outdated", "outdated": "Desatualizado",
"banned": "Banned" "banned": "Banido"
},
"myspeed": {
"ping": "Tempo de resposta",
"download": "Descarregar",
"upload": "Carregar"
},
"stocks": {
"stocks": "Ações",
"loading": "Carregando",
"open": "Abrir - Mercado Americano",
"closed": "Fechado - Mercado americano",
"invalidConfiguration": "Configuração Inválida"
},
"frigate": {
"cameras": "Câmeras",
"uptime": "Ligado",
"version": "Versão"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Marcadores"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Informação",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Nome",
"address": "Endereço",
"last_seen": "Visto por último",
"status": "Status",
"online": "Disponível",
"offline": "Offline"
},
"beszel": {
"name": "Nome",
"systems": "Systems",
"up": "Ativo",
"status": "Status",
"updated": "Atualizado",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Saudável",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Faltando",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Carregando"
},
"gitlab": {
"groups": "Groups",
"issues": "Problemas",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mo", "months": "mo",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -226,6 +226,10 @@
"leech": "Leech", "leech": "Leech",
"seed": "Seed" "seed": "Seed"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Descarcă", "download": "Descarcă",
"upload": "Încarcă", "upload": "Încarcă",
@@ -305,6 +309,16 @@
"stopped": "Oprit", "stopped": "Oprit",
"total": "Total" "total": "Total"
}, },
"suwayomi": {
"download": "Descărcat",
"nondownload": "Non-Downloaded",
"read": "Read",
"unread": "Necitit",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Address", "address": "Address",
"expires": "Expires", "expires": "Expires",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} Ago" "ago": "{{value}} Ago"
}, },
"technitium": {
"totalQueries": "Cereri",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Blocate",
"totalDropped": "Dropped",
"totalClients": "Clienți"
},
"tdarr": { "tdarr": {
"queue": "Coadă", "queue": "Coadă",
"processed": "Processed", "processed": "Processed",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platforms", "platforms": "Platforms",
"totalRoms": "Total ROMs" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domenii",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Storage"
}, },
"netdata": { "netdata": {
"warnings": "Warnings", "warnings": "Warnings",
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Outdated", "outdated": "Outdated",
"banned": "Banned" "banned": "Banned"
},
"myspeed": {
"ping": "Ping",
"download": "Descarcă",
"upload": "Încarcă"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Uptime",
"version": "Version"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Tags"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Informație",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Name",
"address": "Address",
"last_seen": "Last Seen",
"status": "Stare",
"online": "Online",
"offline": "Offline"
},
"beszel": {
"name": "Name",
"systems": "Systems",
"up": "Sus",
"status": "Stare",
"updated": "Updated",
"cpu": "Procesor",
"memory": "MEM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Sănătos",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Missing",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Issues",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "мес", "months": "мес",
"days": "дней", "days": "дней",
"hours": "час", "hours": "час",
@@ -39,7 +39,7 @@
"placeholder": "Поиск…" "placeholder": "Поиск…"
}, },
"resources": { "resources": {
"cpu": "ЦПУ", "cpu": "ЦП",
"mem": "ОЗУ", "mem": "ОЗУ",
"total": "Всего", "total": "Всего",
"free": "Свободно", "free": "Свободно",
@@ -70,7 +70,7 @@
"rx": "RX", "rx": "RX",
"tx": "TX", "tx": "TX",
"mem": "ОЗУ", "mem": "ОЗУ",
"cpu": "ЦПУ", "cpu": "ЦП",
"running": "Запущено", "running": "Запущено",
"offline": "Не в сети", "offline": "Не в сети",
"error": "Ошибка", "error": "Ошибка",
@@ -226,6 +226,10 @@
"leech": "Лич", "leech": "Лич",
"seed": "Сид" "seed": "Сид"
}, },
"develancacheui": {
"cachehitbytes": "Хит байты кэша",
"cachemissbytes": "Мисс байты кэша"
},
"downloadstation": { "downloadstation": {
"download": "Скачивание", "download": "Скачивание",
"upload": "Загрузка", "upload": "Загрузка",
@@ -280,7 +284,7 @@
"netalertx": { "netalertx": {
"total": "Всего", "total": "Всего",
"connected": "Подключено", "connected": "Подключено",
"new_devices": "Новое устройство", "new_devices": "Новые устройства",
"down_alerts": "Оповещение о недоступности" "down_alerts": "Оповещение о недоступности"
}, },
"pihole": { "pihole": {
@@ -305,6 +309,16 @@
"stopped": "Остановлено", "stopped": "Остановлено",
"total": "Всего" "total": "Всего"
}, },
"suwayomi": {
"download": "Загружено",
"nondownload": "Незагруженные",
"read": "Прочитано",
"unread": "Не прочитано",
"downloadedread": "Загруженные и прочитанные",
"downloadedunread": "Загруженные и непрочитанные",
"nondownloadedread": "Незагруженные и прочитанные",
"nondownloadedunread": "Незагруженные и непрочитанные"
},
"tailscale": { "tailscale": {
"address": "Адрес", "address": "Адрес",
"expires": "Истекает", "expires": "Истекает",
@@ -319,6 +333,19 @@
"seconds": "{{number}}с", "seconds": "{{number}}с",
"ago": "{{value}} назад" "ago": "{{value}} назад"
}, },
"technitium": {
"totalQueries": "Запросы",
"totalNoError": "Успешные",
"totalServerFailure": "Ошибки",
"totalNxDomain": "NX домены",
"totalRefused": "Отказано",
"totalAuthoritative": "Авторитетные",
"totalRecursive": "Рекурсивные",
"totalCached": "Кэш",
"totalBlocked": "Заблокировано",
"totalDropped": "Отброшенные",
"totalClients": "Клиенты"
},
"tdarr": { "tdarr": {
"queue": "Очередь", "queue": "Очередь",
"processed": "Обработано", "processed": "Обработано",
@@ -396,12 +423,12 @@
}, },
"proxmox": { "proxmox": {
"mem": "ОЗУ", "mem": "ОЗУ",
"cpu": "ЦПУ", "cpu": "ЦП",
"lxc": "LXC", "lxc": "LXC",
"vms": "Виртуальные машины" "vms": "Виртуальные машины"
}, },
"glances": { "glances": {
"cpu": "ЦПУ", "cpu": "ЦП",
"load": "Загрузка", "load": "Загрузка",
"wait": "Пожалуйста, подождите", "wait": "Пожалуйста, подождите",
"temp": "Температура", "temp": "Температура",
@@ -626,7 +653,7 @@
"proxmoxbackupserver": { "proxmoxbackupserver": {
"datastore_usage": "Хранилище данных", "datastore_usage": "Хранилище данных",
"failed_tasks_24h": "Неудачные задачи 24 часа", "failed_tasks_24h": "Неудачные задачи 24 часа",
"cpu_usage": "ЦПУ", "cpu_usage": "ЦП",
"memory_usage": "ОЗУ" "memory_usage": "ОЗУ"
}, },
"immich": { "immich": {
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Платформы", "platforms": "Платформы",
"totalRoms": "Всего ПЗУ" "totalRoms": "Игры",
"saves": "Сейвы",
"states": "Состояния",
"screenshots": "Скриншоты",
"totalfilesize": "Общий объем"
},
"mailcow": {
"domains": "Домены",
"mailboxes": "Почтовые ящики",
"mails": "Письма",
"storage": "Хранилище"
}, },
"netdata": { "netdata": {
"warnings": "Предупреждения", "warnings": "Предупреждения",
@@ -875,7 +912,7 @@
}, },
"crowdsec": { "crowdsec": {
"alerts": "Предупреждения", "alerts": "Предупреждения",
"bans": "Запреты" "bans": "Блокировки"
}, },
"wgeasy": { "wgeasy": {
"connected": "Подключено", "connected": "Подключено",
@@ -884,9 +921,91 @@
"total": "Всего" "total": "Всего"
}, },
"swagdashboard": { "swagdashboard": {
"proxied": "Proxied", "proxied": "Прокси",
"auth": "With Auth", "auth": "С Авторизацией",
"outdated": "Outdated", "outdated": "Устаревшие",
"banned": "Banned" "banned": "Заблокированные"
},
"myspeed": {
"ping": "Пинг",
"download": "Скачивание",
"upload": "Загрузка"
},
"stocks": {
"stocks": "Акции",
"loading": "Загрузка",
"open": "Открыто - Рынок США",
"closed": "Закрыто - рынок США",
"invalidConfiguration": "Неверная конфигурация"
},
"frigate": {
"cameras": "Камеры",
"uptime": "Время работы",
"version": "Версия"
},
"linkwarden": {
"links": "Ссылки",
"collections": "Коллекции",
"tags": "Теги"
},
"zabbix": {
"unclassified": "Не классифицировано",
"information": "Информация",
"warning": "Предупреждение",
"average": "Средняя",
"high": "Высокая",
"disaster": "Чрезвычайная"
},
"lubelogger": {
"vehicle": "Автомобиль",
"vehicles": "Автомобили",
"serviceRecords": "Сервисные работы",
"reminders": "Напоминания",
"nextReminder": "Следующее напоминание",
"none": "Нет"
},
"vikunja": {
"projects": "Активные Проекты",
"tasks7d": "Задачи на этой неделе",
"tasksOverdue": "Просроченные задачи",
"tasksInProgress": "Задачи в процессе"
},
"headscale": {
"name": "Имя",
"address": "Адрес",
"last_seen": "Последнее посещение",
"status": "Статус",
"online": "В сети",
"offline": "Не в сети"
},
"beszel": {
"name": "Имя",
"systems": "Системы",
"up": "Онлайн",
"status": "Статус",
"updated": "Обновленно",
"cpu": "ЦП",
"memory": "ОЗУ",
"disk": "Диск",
"network": "Сеть"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Здоровый",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Отсутствует",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Загрузка"
},
"gitlab": {
"groups": "Groups",
"issues": "Вопросы",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mes", "months": "mes",
"days": "d", "days": "d",
"hours": "h", "hours": "h",
@@ -226,6 +226,10 @@
"leech": "Leechované", "leech": "Leechované",
"seed": "Seedované" "seed": "Seedované"
}, },
"develancacheui": {
"cachehitbytes": "Cache Hit Bytes",
"cachemissbytes": "Cache Miss Bytes"
},
"downloadstation": { "downloadstation": {
"download": "Sťahovanie", "download": "Sťahovanie",
"upload": "Nahrávanie", "upload": "Nahrávanie",
@@ -305,6 +309,16 @@
"stopped": "Zastavené", "stopped": "Zastavené",
"total": "Celkovo" "total": "Celkovo"
}, },
"suwayomi": {
"download": "Stiahnuté",
"nondownload": "Non-Downloaded",
"read": "Prečítané",
"unread": "Neprečítané",
"downloadedread": "Downloaded & Read",
"downloadedunread": "Downloaded & Unread",
"nondownloadedread": "Non-Downloaded & Read",
"nondownloadedunread": "Non-Downloaded & Unread"
},
"tailscale": { "tailscale": {
"address": "Adresa", "address": "Adresa",
"expires": "Vyprší", "expires": "Vyprší",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "Pred {{value}}" "ago": "Pred {{value}}"
}, },
"technitium": {
"totalQueries": "Dopyty",
"totalNoError": "Success",
"totalServerFailure": "Failures",
"totalNxDomain": "NX Domains",
"totalRefused": "Refused",
"totalAuthoritative": "Authoritative",
"totalRecursive": "Recursive",
"totalCached": "Cached",
"totalBlocked": "Zablokované",
"totalDropped": "Dropped",
"totalClients": "Klienti"
},
"tdarr": { "tdarr": {
"queue": "V poradí", "queue": "V poradí",
"processed": "Spracované", "processed": "Spracované",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platformy", "platforms": "Platformy",
"totalRoms": "Celkovo ROM" "totalRoms": "Games",
"saves": "Saves",
"states": "States",
"screenshots": "Screenshots",
"totalfilesize": "Total Size"
},
"mailcow": {
"domains": "Domény",
"mailboxes": "Mailboxes",
"mails": "Mails",
"storage": "Úložisko"
}, },
"netdata": { "netdata": {
"warnings": "Upozornenia", "warnings": "Upozornenia",
@@ -888,5 +925,87 @@
"auth": "With Auth", "auth": "With Auth",
"outdated": "Zastarané", "outdated": "Zastarané",
"banned": "Zabanovaný" "banned": "Zabanovaný"
},
"myspeed": {
"ping": "Odozva",
"download": "Sťahovanie",
"upload": "Nahrávanie"
},
"stocks": {
"stocks": "Stocks",
"loading": "Loading",
"open": "Open - US Market",
"closed": "Closed - US Market",
"invalidConfiguration": "Invalid Configuration"
},
"frigate": {
"cameras": "Cameras",
"uptime": "Prevádzka",
"version": "Verzia"
},
"linkwarden": {
"links": "Links",
"collections": "Collections",
"tags": "Štítky"
},
"zabbix": {
"unclassified": "Not classified",
"information": "Informácia",
"warning": "Warning",
"average": "Average",
"high": "High",
"disaster": "Disaster"
},
"lubelogger": {
"vehicle": "Vehicle",
"vehicles": "Vehicles",
"serviceRecords": "Service Records",
"reminders": "Reminders",
"nextReminder": "Next Reminder",
"none": "None"
},
"vikunja": {
"projects": "Active Projects",
"tasks7d": "Tasks Due This Week",
"tasksOverdue": "Overdue Tasks",
"tasksInProgress": "Tasks In Progress"
},
"headscale": {
"name": "Meno",
"address": "Adresa",
"last_seen": "Naposledy videné",
"status": "Stav",
"online": "Online",
"offline": "Nedostupný"
},
"beszel": {
"name": "Meno",
"systems": "Systems",
"up": "Nahrávanie",
"status": "Stav",
"updated": "Aktualizované",
"cpu": "CPU",
"memory": "RAM",
"disk": "Disk",
"network": "NET"
},
"argocd": {
"apps": "Apps",
"synced": "Synced",
"outOfSync": "Out Of Sync",
"healthy": "Zdravý",
"degraded": "Degraded",
"progressing": "Progressing",
"missing": "Chýbajúce",
"suspended": "Suspended"
},
"spoolman": {
"loading": "Loading"
},
"gitlab": {
"groups": "Groups",
"issues": "Problémy",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

View File

@@ -13,7 +13,7 @@
"ms": "{{value, number}}", "ms": "{{value, number}}",
"date": "{{value, date}}", "date": "{{value, date}}",
"relativeDate": "{{value, relativeDate}}", "relativeDate": "{{value, relativeDate}}",
"uptime": "{{value, uptime}}", "duration": "{{value, duration}}",
"months": "mes", "months": "mes",
"days": "d", "days": "d",
"hours": "u", "hours": "u",
@@ -226,6 +226,10 @@
"leech": "Pijavka", "leech": "Pijavka",
"seed": "Sejanje" "seed": "Sejanje"
}, },
"develancacheui": {
"cachehitbytes": "Predpomn. zadetki",
"cachemissbytes": "Predpomn. zgrešeno"
},
"downloadstation": { "downloadstation": {
"download": "Prenos", "download": "Prenos",
"upload": "Nalaganje", "upload": "Nalaganje",
@@ -305,6 +309,16 @@
"stopped": "Ustavljen", "stopped": "Ustavljen",
"total": "Skupaj" "total": "Skupaj"
}, },
"suwayomi": {
"download": "Preneseno",
"nondownload": "Nepreneseno",
"read": "Prebrano",
"unread": "Neprebrano",
"downloadedread": "Preneseno in prebrano",
"downloadedunread": "Preneseno in neprebrano",
"nondownloadedread": "Nepreneseno in prebrano",
"nondownloadedunread": "Nepreneseno in neprebrano"
},
"tailscale": { "tailscale": {
"address": "Naslov", "address": "Naslov",
"expires": "Poteče", "expires": "Poteče",
@@ -319,6 +333,19 @@
"seconds": "{{number}}s", "seconds": "{{number}}s",
"ago": "{{value}} nazaj" "ago": "{{value}} nazaj"
}, },
"technitium": {
"totalQueries": "Poizvedbe",
"totalNoError": "Uspeh",
"totalServerFailure": "Neuspehi",
"totalNxDomain": "NX domene",
"totalRefused": "Zavrnjeno",
"totalAuthoritative": "Avtoratitavno",
"totalRecursive": "Rekurzivno",
"totalCached": "Predpomnjeno",
"totalBlocked": "Blokirano",
"totalDropped": "Izpuščeno",
"totalClients": "Klienti"
},
"tdarr": { "tdarr": {
"queue": "Vrsta", "queue": "Vrsta",
"processed": "Procesiran", "processed": "Procesiran",
@@ -827,7 +854,17 @@
}, },
"romm": { "romm": {
"platforms": "Platforme", "platforms": "Platforme",
"totalRoms": "Skupaj ROM-ov" "totalRoms": "Igre",
"saves": "Shranitve",
"states": "Stanja",
"screenshots": "Posnetki zaslona",
"totalfilesize": "Skupna velikost"
},
"mailcow": {
"domains": "Domene",
"mailboxes": "Nabiralniki",
"mails": "Pošta",
"storage": "Shramba"
}, },
"netdata": { "netdata": {
"warnings": "Opozorila", "warnings": "Opozorila",
@@ -888,5 +925,87 @@
"auth": "Z Auth", "auth": "Z Auth",
"outdated": "Zastarelo", "outdated": "Zastarelo",
"banned": "Prepovedan" "banned": "Prepovedan"
},
"myspeed": {
"ping": "Ping",
"download": "Prenos",
"upload": "Nalaganje"
},
"stocks": {
"stocks": "Delnice",
"loading": "Nalaganje",
"open": "Odprto - US trg",
"closed": "Zaprto - US trg",
"invalidConfiguration": "Neveljavna konfiguracija"
},
"frigate": {
"cameras": "Kamere",
"uptime": "Čas delovanja",
"version": "Verzija"
},
"linkwarden": {
"links": "Povezave",
"collections": "Zbirke",
"tags": "Značke"
},
"zabbix": {
"unclassified": "Nerazvrščeno",
"information": "Informacija",
"warning": "Opozorilo",
"average": "Povprečno",
"high": "Visoko",
"disaster": "Katastrofa"
},
"lubelogger": {
"vehicle": "Vozilo",
"vehicles": "Vozila",
"serviceRecords": "Zapisi servisov",
"reminders": "Opomniki",
"nextReminder": "Naslednji opomnik",
"none": "Brez"
},
"vikunja": {
"projects": "Aktivni projekti",
"tasks7d": "Potekla opravila tega tedna",
"tasksOverdue": "Potekla opravila",
"tasksInProgress": "Tekoča opravila"
},
"headscale": {
"name": "Naziv",
"address": "Naslov",
"last_seen": "Viden",
"status": "Stanje",
"online": "Na spletu",
"offline": "Ni povezan"
},
"beszel": {
"name": "Naziv",
"systems": "Sistemi",
"up": "Povezan",
"status": "Stanje",
"updated": "Posodobljen",
"cpu": "CPU",
"memory": "MEM",
"disk": "Disk",
"network": "Mreža"
},
"argocd": {
"apps": "Aplikacije",
"synced": "Sinhro",
"outOfSync": "Ni sinhro",
"healthy": "Zdrav",
"degraded": "Degragirano",
"progressing": "V teku",
"missing": "Manjka",
"suspended": "Prekinjeno"
},
"spoolman": {
"loading": "Nalaganje"
},
"gitlab": {
"groups": "Groups",
"issues": "Težave",
"merges": "Merge Requests",
"projects": "Projects"
} }
} }

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