diff --git a/.dockerignore b/.dockerignore index 90fbe165..edbf8525 100644 --- a/.dockerignore +++ b/.dockerignore @@ -16,7 +16,6 @@ **/compose* **/Dockerfile* **/node_modules -!**/node_modules/.pnpm/compressjs@*/** **/npm-debug.log **/obj **/secrets.dev.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 9b39aa24..e9d4ee40 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -1,18 +1,23 @@ name: Bug report description: Create a report to help us improve -title: "[Bug] " +title: "[Bug] Concise description of the issue" labels: ["bug, unconfirmed"] body: - type: markdown attributes: value: | - Have a question? 👉 [Start a new discussion](https://github.com/benphelps/homepage/discussions/new) or [ask in chat](https://discord.gg/SaPGSzrEZC). + ## ⚠️ Please remember: issues are for *bugs* + That is, something you believe affects every single homepage user, not just you. Otherwise, start with one of the other options below. + - type: markdown + attributes: + value: | + Have a question? 👉 [Start a new discussion](https://github.com/gethomepage/homepage/discussions/new) or [ask in chat](https://discord.gg/SaPGSzrEZC). Before opening an issue, please double check: - - [The troubleshooting guide](https://gethomepage.dev/en/more/troubleshooting/). + - [The troubleshooting guide](https://gethomepage.dev/latest/more/troubleshooting/). - [The homepage documentation](https://gethomepage.dev/) - - [Existing issues](https://github.com/benphelps/homepage/search?q=&type=issues) and [discussions](https://github.com/benphelps/homepage/search?q=&type=discussions). + - [Existing issues](https://github.com/gethomepage/homepage/search?q=&type=issues) and [discussions](https://github.com/gethomepage/homepage/search?q=&type=discussions). - type: textarea id: description attributes: @@ -73,7 +78,7 @@ body: id: troubleshooting attributes: label: Troubleshooting - description: Please include output from your [troubleshooting tests](https://gethomepage.dev/en/more/troubleshooting/#service-widget-errors). If this is a service widget issue and you do not include any information here your issue will be closed. If it is not, indicate e.g. 'n/a' + description: Please include output from your [troubleshooting tests](https://gethomepage.dev/latest/more/troubleshooting/#service-widget-errors). If this is a service widget issue and you do not include any information here your issue will be closed. If it is not, indicate e.g. 'n/a' validations: required: true - type: textarea @@ -88,7 +93,7 @@ body: options: - label: Check [the documentation](https://gethomepage.dev/) required: true - - label: Follow [the troubleshooting guide](https://gethomepage.dev/en/more/troubleshooting/) (please include output above if applicable). + - label: Follow [the troubleshooting guide](https://gethomepage.dev/latest/more/troubleshooting/) (please include output above if applicable). required: true - - label: Search [existing issues](https://github.com/benphelps/homepage/search?q=&type=issues) and [discussions](https://github.com/benphelps/homepage/search?q=&type=discussions). + - label: Search [existing issues](https://github.com/gethomepage/homepage/search?q=&type=issues) and [discussions](https://github.com/gethomepage/homepage/search?q=&type=discussions). required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index a2ae1dfb..e3f14d07 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,11 +1,11 @@ blank_issues_enabled: false contact_links: - name: 🤔 Questions and Help - url: https://github.com/benphelps/homepage/discussions + url: https://github.com/gethomepage/homepage/discussions about: This issue tracker is for bugs only, not general support questions. Please refer to our Discussions. - name: 💬 Chat url: https://discord.gg/k4ruYNrudu about: Want to discuss homepage with others? Check out our chat. - name: 🚀 Feature Request - url: https://github.com/benphelps/homepage/discussions/new?category=feature-requests + url: https://github.com/gethomepage/homepage/discussions/new?category=feature-requests about: Remember to search for existing feature requests and "up-vote" any you like diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 1f7773b8..fa149921 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -3,10 +3,10 @@ Closes # (issue) @@ -20,11 +20,12 @@ What type of change does your PR introduce to Homepage? - [ ] New service widget - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) +- [ ] Documentation only - [ ] Other (please explain) ## Checklist: -- [ ] If adding a service widget or a change that requires it, I have added a corresponding PR to the [documentation](https://github.com/benphelps/homepage-docs) here: -- [ ] If adding a new widget I have reviewed the [guidelines](https://gethomepage.dev/en/more/development/#service-widget-guidelines). +- [ ] If adding a service widget or a change that requires it, I have added corresponding documentation changes. +- [ ] If adding a new widget I have reviewed the [guidelines](https://gethomepage.dev/latest/more/development/#service-widget-guidelines). - [ ] If applicable, I have checked that all tests pass with e.g. `pnpm lint`. - [ ] If applicable, I have tested my code for new features & regressions on both mobile & desktop devices, using the latest version of major browsers. diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index bd80a153..3baa9125 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -12,8 +12,15 @@ on: branches: [ "main" ] # Publish semver tags as releases. tags: [ 'v*.*.*' ] + paths-ignore: + - 'docs/**' + - 'mkdocs.yml' pull_request: branches: [ "main" ] + paths-ignore: + - 'docs/**' + - 'mkdocs.yml' + merge_group: env: # Use docker.io for Docker Hub if empty @@ -24,7 +31,8 @@ env: jobs: build: - + name: Docker Build & Push + if: github.repository == 'gethomepage/homepage' runs-on: self-hosted permissions: contents: read @@ -35,12 +43,12 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + 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' + if: github.event_name != 'pull_request' uses: sigstore/cosign-installer@main with: cosign-release: 'v1.13.1' # optional @@ -48,11 +56,11 @@ jobs: # Setup QEMU # https://github.com/marketplace/actions/docker-setup-buildx#with-qemu - name: Setup QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v3 # Workaround: https://github.com/docker/build-push-action/issues/461 - name: Setup Docker buildx - uses: docker/setup-buildx-action@v2 + uses: docker/setup-buildx-action@v3 # This step is being disabled because the runner is on a self-hosted machine # where the cache will stick between runs. @@ -68,7 +76,7 @@ jobs: # https://github.com/docker/login-action - name: Log into registry ${{ env.REGISTRY }} if: github.event_name != 'pull_request' - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -78,7 +86,7 @@ jobs: # https://github.com/docker/metadata-action - name: Extract Docker metadata id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} flavor: | @@ -88,7 +96,7 @@ jobs: # https://github.com/docker/build-push-action - name: Build and push Docker image id: build-and-push - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: context: . push: ${{ github.event_name != 'pull_request' }} diff --git a/.github/workflows/docs-publish.yml b/.github/workflows/docs-publish.yml new file mode 100644 index 00000000..f13c85b1 --- /dev/null +++ b/.github/workflows/docs-publish.yml @@ -0,0 +1,80 @@ +name: Docs + +on: + push: + tags: [ 'v*.*.*' ] + branches: ['main'] + paths: + - 'docs/**' + - 'mkdocs.yml' + pull_request: + paths: + - 'docs/**' + - 'mkdocs.yml' + merge_group: + workflow_dispatch: + +permissions: + contents: write + +jobs: + test: + name: Test Build + if: github.repository == 'gethomepage/homepage' && github.event_name == 'pull_request' + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v4 + with: + python-version: 3.x + - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV + - uses: actions/cache@v3 + with: + key: mkdocs-material-${{ env.cache_id }} + path: .cache + restore-keys: | + mkdocs-material- + - run: sudo apt-get install pngquant + - run: pip install mike + - run: pip install mkdocs-material + - name: Test Docs Build + run: MKINSIDERS=false mkdocs build + deploy: + name: Build & Deploy + if: github.repository == 'gethomepage/homepage' && github.event_name != 'pull_request' + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + ref: main + - uses: actions/setup-python@v4 + with: + python-version: 3.x + - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV + - uses: actions/cache@v3 + with: + key: mkdocs-material-${{ env.cache_id }} + path: .cache + restore-keys: | + mkdocs-material- + - run: sudo apt-get install pngquant + - run: pip install mike + - run: pip install git+https://${GH_TOKEN}@github.com/benphelps/mkdocs-material-insiders.git + - name: Set Git config + run: | + 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: + GH_TOKEN: ${{ secrets.GH_TOKEN }} diff --git a/.gitignore b/.gitignore index 7fdc6550..9eccc8c6 100644 --- a/.gitignore +++ b/.gitignore @@ -46,4 +46,9 @@ next-env.d.ts # IDEs /.idea/ +# MkDocs documentation +site*/ +.cache/ +# venv +.venv/ diff --git a/.vscode/launch.json b/.vscode/launch.json index 0e71c3ba..366b5438 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -16,4 +16,4 @@ } } ] -} \ No newline at end of file +} diff --git a/.vscode/settings.json b/.vscode/settings.json index 5a9e97f1..5fde0b3a 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,5 +2,18 @@ "files.exclude": { "**/.next": true, "**/node_modules": true - } -} \ No newline at end of file + }, + "yaml.schemas": { + "https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml" + }, + "yaml.customTags": [ + "!ENV scalar", + "!ENV sequence", + "tag:yaml.org,2002:python/name:material.extensions.emoji.to_svg", + "tag:yaml.org,2002:python/name:material.extensions.emoji.twemoji", + "tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format" + ], + "[python]": { + "editor.defaultFormatter": "ms-python.autopep8" + }, +} diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2f383ede..ef705612 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -13,8 +13,8 @@ We use github to host code, to track issues and feature requests, as well as acc ## Any contributions you make will be under the GNU General Public License v3.0 In short, when you submit code changes, your submissions are understood to be under the same [GNU General Public License v3.0](https://choosealicense.com/licenses/gpl-3.0/) that covers the project. Feel free to contact the maintainers if that's a concern. -## Report bugs using Github's [issues](https://github.com/benphelps/homepage/issues) -We use GitHub issues to track public bugs. Report a bug by [opening a new issue](https://github.com/benphelps/homepage/issues/new); it's that easy! +## Report bugs using Github's [issues](https://github.com/gethomepage/homepage/issues) +We use GitHub issues to track public bugs. Report a bug by [opening a new issue](https://github.com/gethomepage/homepage/issues/new); it's that easy! ## Write bug reports with detail, background, and sample configurations Homepage includes a lot of configuration options and is often deploying in larger systems. Please include as much information (configurations, deployment method, Docker & API versions, etc) as you can when reporting an issue. @@ -32,7 +32,7 @@ Homepage includes a lot of configuration options and is often deploying in large People *love* thorough bug reports. I'm not even kidding. ## Development Guidelines -Please see the [documentation regarding development](https://gethomepage.dev/en/more/development/) and specifically the [guidelines for new service widgets](https://gethomepage.dev/en/more/development/#service-widget-guidelines) if you are considering making one. +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. ## Use a Consistent Coding Style This project follows the [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript), please follow it when submitting pull requests. diff --git a/Dockerfile b/Dockerfile index f8bb1551..3e6de756 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,9 +36,9 @@ RUN npm run telemetry \ FROM docker.io/node:18-alpine AS runner LABEL org.opencontainers.image.title "Homepage" LABEL org.opencontainers.image.description "A self-hosted services landing page, with docker and service integrations." -LABEL org.opencontainers.image.url="https://github.com/benphelps/homepage" -LABEL org.opencontainers.image.documentation='https://github.com/benphelps/homepage/wiki' -LABEL org.opencontainers.image.source='https://github.com/benphelps/homepage' +LABEL org.opencontainers.image.url="https://github.com/gethomepage/homepage" +LABEL org.opencontainers.image.documentation='https://github.com/gethomepage/homepage/wiki' +LABEL org.opencontainers.image.source='https://github.com/gethomepage/homepage' LABEL org.opencontainers.image.licenses='Apache-2.0' ENV NODE_ENV production @@ -52,8 +52,6 @@ COPY --link --chown=1000:1000 /public ./public/ # Copy files from builder COPY --link --from=builder --chown=1000:1000 /app/.next/standalone ./ COPY --link --from=builder --chown=1000:1000 /app/.next/static/ ./.next/static/ -# see https://github.com/benphelps/homepage/issues/1795 -COPY --link --from=builder /app/node_modules/.pnpm/compressjs@1.0.3/node_modules/compressjs/lib/ ./node_modules/.pnpm/compressjs@1.0.3/node_modules/compressjs/lib/ COPY --link --chmod=755 docker-entrypoint.sh /usr/local/bin/ RUN apk add --no-cache su-exec diff --git a/README.md b/README.md index 0a81bb08..6dc4095e 100644 --- a/README.md +++ b/README.md @@ -6,71 +6,60 @@

- A modern (fully static, fast), secure (fully proxied), highly customizable application dashboard with integrations for more than 25 services and translations for over 15 languages. Easily configured via YAML files (or discovery via docker labels). + A modern, fully static, fast, secure fully proxied, highly customizable application dashboard with integrations for over 100 services and translations into multiple languages. Easily configured via YAML files or through docker label discovery.

- +

- - - - - + GitHub Workflow Status (with event) +   + +   + Discord +   + +   + GitHub Sponsors

-

- - Linkedin - phelpsben -

+# Features -

- Docker - Weblate -

+With features like quick search, bookmarks, weather support, a wide range of integrations and widgets, an elegant and modern design, and a focus on performance, Homepage is your ideal start to the day and a handy companion throughout it. -## Features +- **Fast** - The site is statically generated at build time for instant load times. +- **Secure** - All API requests to backend services are proxied, keeping your API keys hidden. Constantly reviewed for security by the community. +- **For Everyone** - Images built for AMD64, ARM64, ARMv7, and ARMv6. +- **Full i18n** - Support for over 40 languages. +- **Service & Web Bookmarks** - Add custom links to the homepage. +- **Docker Integration** - Container status and stats. Automatic service discovery via labels. +- **Service Integration** - Over 100 service integrations, including popular starr and self-hosted apps. +- **Information & Utility Widgets** - Weather, time, date, search, and more. +- **And much more...** -- **Fast!** The entire site is statically generated at build time, so you can expect instant load times -- **Secure!** Every API request to backend services goes through a proxy server, so your API keys are never exposed to the frontend client. -- Images built for AMD64 (x86_64), ARM64, ARMv7 and ARMv6 - - Supports all Raspberry Pi's, most SBCs & Apple Silicon -- Full i18n support with translations for Catalan, Chinese, Dutch, Finnish, French, German, Hebrew, Hungarian, Malay, Norwegian Bokmål, Polish, Portuguese, Portuguese (Brazil), Romanian, Russian, Spanish, Swedish and Yue - - Want to help translate? [Join the Weblate project](https://hosted.weblate.org/engage/homepage/) -- Service & Web Bookmarks -- Docker Integration - - Container status (Running / Stopped) & statistics (CPU, Memory, Network) - - Automatic service discovery (via labels) -- Service Integration - - Sonarr, Radarr, Readarr, Prowlarr, Bazarr, Lidarr, Emby, Jellyfin, Tautulli, Plex and more - - Ombi, Overseerr, Jellyseerr, Jackett, NZBGet, SABnzbd, ruTorrent, Transmission, qBittorrent and more - - Portainer, Traefik, Speedtest Tracker, PiHole, AdGuard Home, Nginx Proxy Manager, Gotify, Syncthing Relay Server, Authentik, Proxmox and more -- Information Providers - - Coin Market Cap, Mastodon and more -- Information & Utility Widgets - - System Stats (Disk, CPU, Memory) - - Weather via [OpenWeatherMap](https://openweathermap.org/) or [Open-Meteo](https://open-meteo.com/) - - Web Search Bar - - UniFi Console, Glances and more -- Instant "Quick-launch" search -- Customizable - - 21 theme colors with light and dark mode support - - Background image support - - Column and Row layout options +## Docker Integration -## Support & Suggestions +Homepage has built-in support for Docker, and can automatically discover and add services to the homepage based on labels. See the [Docker](https://gethomepage.dev/latest/installation/docker/) page for more information. -If you have any questions, suggestions, or general issues, please start a discussion on the [Discussions](https://github.com/benphelps/homepage/discussions) page. +## Service Widgets -For bug reports, please open an issue on the [Issues](https://github.com/benphelps/homepage/issues) page. +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/configs/service-widgets/) page for more information. -## Getting Started +## Information Widgets -For configuration options, examples and more, [please check out the homepage site](http://gethomepage.dev). +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/configs/widgets/) page for more information. -### With Docker +## 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. + +# Getting Started + +For configuration options, examples and more, [please check out the homepage documentation](http://gethomepage.dev). + +## With Docker Using docker compose: @@ -78,27 +67,38 @@ Using docker compose: version: "3.3" services: homepage: - image: ghcr.io/benphelps/homepage:latest + image: ghcr.io/gethomepage/homepage:latest container_name: homepage + environment: + PUID: 1000 -- optional, your user id + PGID: 1000 -- optional, your group id ports: - 3000:3000 volumes: - /path/to/config:/app/config # Make sure your local config directory exists - - /var/run/docker.sock:/var/run/docker.sock:ro # (optional) For docker integrations + - /var/run/docker.sock:/var/run/docker.sock:ro # optional, for docker integrations + restart: unless-stopped ``` or docker run: ```bash -docker run -p 3000:3000 -v /path/to/config:/app/config -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/benphelps/homepage:latest +docker run --name homepage \ + -e PUID=1000 \ + -e PGID=1000 \ + -p 3000:3000 \ + -v /path/to/config:/app/config \ + -v /var/run/docker.sock:/var/run/docker.sock:ro \ + --restart unless-stopped \ + ghcr.io/gethomepage/homepage:latest ``` -### With Node +## With Node First, clone the repository: ```bash -git clone https://github.com/benphelps/homepage.git +git clone https://github.com/gethomepage/homepage.git ``` Then install dependencies and build the production bundle (I'm using pnpm here, you can use npm or yarn if you like): @@ -110,22 +110,23 @@ pnpm build If this is your first time starting, copy the `src/skeleton` directory to `config/` to populate initial example config files. -Finally, run the server: +Finally, run the server in production mode: ```bash pnpm start ``` -## Configuration +or development mode: -Configuration files will be generated and placed on the first request. +```bash +pnpm dev +``` -Configuration is done in the /config directory using .yaml files. Refer to each config for -the specific configuration options. +# Configuration -You may also check [the homepage site](http://gethomepage.dev) for detailed configuration instructions, examples and more. +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. -## Development +# Development Install NPM packages, this project uses [pnpm](https://pnpm.io/) (and so should you!): @@ -141,21 +142,34 @@ pnpm dev Open [http://localhost:3000](http://localhost:3000) to start. -This is a [Next.js](https://nextjs.org/) application, see their documentation for more information: +This is a [Next.js](https://nextjs.org/) application, see their documentation for more information. -## Contributors +# Documentation - - - +The homepage documentation is available at [https://gethomepage.dev/](https://gethomepage.dev/). - - +Homepage uses Material for MkDocs for documentation. To run the documentation locally, first install the dependencies: - +```bash +pip install -r requirements.txt +``` +Then run the development server: +```bash +mkdocs serve # or build, to build the static site +``` - -[![All Contributors](https://img.shields.io/badge/all_contributors-13-orange.svg?style=flat-square)](#contributors) - +# Support & Suggestions + +If you have any questions, suggestions, or general issues, please start a discussion on the [Discussions](https://github.com/gethomepage/homepage/discussions) page. + +For bug reports, please open an issue on the [Issues](https://github.com/gethomepage/homepage/issues) page. + +## Contributing & Contributers + +Contributions are welcome! Please see the [CONTRIBUTING.md](CONTRIBUTING.md) file for more information. + +Thanks to the over 200 contributors who have helped make this project what it is today! + +Especially huge thanks to [@shamoon](https://github.com/shamoon), who has been the backbone of this community from the very start. diff --git a/crowdin.yml b/crowdin.yml new file mode 100644 index 00000000..0b3d36a9 --- /dev/null +++ b/crowdin.yml @@ -0,0 +1,3 @@ +files: + - source: /public/locales/en/*.json + translation: /public/locales/%osx_locale%/%original_file_name% diff --git a/docs/assets/banner_dark@2x.png b/docs/assets/banner_dark@2x.png new file mode 100644 index 00000000..87bcd0a7 Binary files /dev/null and b/docs/assets/banner_dark@2x.png differ diff --git a/docs/assets/banner_light@2x.png b/docs/assets/banner_light@2x.png new file mode 100644 index 00000000..721446b8 Binary files /dev/null and b/docs/assets/banner_light@2x.png differ diff --git a/docs/assets/custom.css b/docs/assets/custom.css new file mode 100644 index 00000000..f959128e --- /dev/null +++ b/docs/assets/custom.css @@ -0,0 +1,3 @@ +.md-typeset[data-page-id="landing"] .md-header-anchor { + display: none; +} diff --git a/docs/assets/favicon.ico b/docs/assets/favicon.ico new file mode 100644 index 00000000..5ffe0eb4 Binary files /dev/null and b/docs/assets/favicon.ico differ diff --git a/docs/assets/homepage_demo.png b/docs/assets/homepage_demo.png new file mode 100644 index 00000000..52c69028 Binary files /dev/null and b/docs/assets/homepage_demo.png differ diff --git a/docs/assets/light_squircle@2x.png b/docs/assets/light_squircle@2x.png new file mode 100644 index 00000000..e7a1ee29 Binary files /dev/null and b/docs/assets/light_squircle@2x.png differ diff --git a/docs/configs/bookmarks.md b/docs/configs/bookmarks.md new file mode 100644 index 00000000..1b1b1059 --- /dev/null +++ b/docs/configs/bookmarks.md @@ -0,0 +1,32 @@ +--- +title: Bookmarks +description: Bookmark Configuration +--- + +Bookmarks function much the same as [Services](services.md), in how groups and lists work. They're just much simpler, smaller, and contain no extra features other than being a link out. + +The design of homepage expects `abbr` to be 2 letters, but is not otherwise forced. + +You can also use an icon for bookmarks similar to the [options for service icons](services.md#icons). If both icon and abbreviation are supplied, the icon takes precedence. + +By default, the description will use the hostname of the link, but you can override it with a custom description. + +```yaml +- Developer: + - Github: + - abbr: GH + href: https://github.com/ + +- Social: + - Reddit: + - icon: reddit.png + href: https://reddit.com/ + description: The front page of the internet + +- Entertainment: + - YouTube: + - abbr: YT + href: https://youtube.com/ +``` + +Bookmarks diff --git a/docs/configs/custom-css-js.md b/docs/configs/custom-css-js.md new file mode 100644 index 00000000..a76ea650 --- /dev/null +++ b/docs/configs/custom-css-js.md @@ -0,0 +1,17 @@ +--- +title: Custom CSS & JS +description: Adding Custom CSS or JS +--- + +As of version v0.6.30 homepage supports adding your own custom css & javascript. Please do so **at your own risk**. + +To add custom css simply edit the `custom.css` file under your config directory, similarly for javascript you would edit `custom.js`. You can then target elements in homepage with various classes / ids to customize things to your liking. + +You can also set a specific `id` for a service or bookmark to target with your custom css or javascript, e.g. + +```yaml +Service: + id: myserviceid + icon: icon.png + ... +``` diff --git a/docs/configs/docker.md b/docs/configs/docker.md new file mode 100644 index 00000000..133c263b --- /dev/null +++ b/docs/configs/docker.md @@ -0,0 +1,205 @@ +--- +title: Docker +description: Docker Configuration +--- + +Docker instances are configured inside the `docker.yaml` file. Both IP:PORT and Socket connections are supported. + +For IP:PORT, simply make sure your Docker instance [has been configured](https://gist.github.com/styblope/dc55e0ad2a9848f2cc3307d4819d819f) to accept API traffic over the HTTP API. + +```yaml +my-remote-docker: + host: 192.168.0.101 + port: 2375 +``` + +## Using Docker TLS + +Since Docker supports connecting with TLS and client certificate authentication, you can include TLS details when connecting to the HTTP API. Further details of setting up Docker to accept TLS connections, and generation of the keys and certs can be found [in the Docker documentation](https://docs.docker.com/engine/security/protect-access/#use-tls-https-to-protect-the-docker-daemon-socket). The file entries are relative to the `config` directory (location of `docker.yaml` file). + +```yaml +my-remote-docker: + host: 192.168.0.101 + port: 275 + tls: + keyFile: tls/key.pem + caFile: tls/ca.pem + certFile: tls/cert.pem +``` + +## Using Docker Socket Proxy + +Due to security concerns with exposing the docker socket directly, you can use a [docker-socket-proxy](https://github.com/Tecnativa/docker-socket-proxy) container to expose the docker socket on a more restricted and secure API. + +Here is an example docker-compose file that will expose the docker socket, and then connect to it from the homepage container: + +```yaml +dockerproxy: + image: ghcr.io/tecnativa/docker-socket-proxy:latest + container_name: dockerproxy + environment: + - CONTAINERS=1 # Allow access to viewing containers + - SERVICES=1 # Allow access to viewing services (necessary when using Docker Swarm) + - TASKS=1 # Allow access to viewing tasks (necessary when using Docker Swarm) + - POST=0 # Disallow any POST operations (effectively read-only) + ports: + - 127.0.0.1:2375:2375 + volumes: + - /var/run/docker.sock:/var/run/docker.sock:ro # Mounted as read-only + restart: unless-stopped + +homepage: + image: ghcr.io/gethomepage/homepage:latest + container_name: homepage + volumes: + - /path/to/config:/app/config + ports: + - 3000:3000 + restart: unless-stopped +``` + +Then, inside of your `docker.yaml` settings file, you'd configure the docker instance like so: + +```yaml +my-docker: + host: dockerproxy + port: 2375 +``` + +## Using Socket Directly + +If you'd rather use the socket directly, first make sure that you're passing the local socket into the Docker container. + +!!! note + + In order to use the socket directly homepage must be running as root + +```yaml +homepage: + image: ghcr.io/gethomepage/homepage:latest + container_name: homepage + volumes: + - /path/to/config:/app/config + - /var/run/docker.sock:/var/run/docker.sock # pass local proxy + ports: + - 3000:3000 + restart: unless-stopped +``` + +If you're using `docker run`, this would be `-v /var/run/docker.sock:/var/run/docker.sock`. + +Then, inside of your `docker.yaml` settings file, you'd configure the docker instance like so: + +```yaml +my-docker: + socket: /var/run/docker.sock +``` + +## Services + +Once you've configured your docker instances, you can then apply them to your services, to get stats and status reporting shown. + +Inside of the service you'd like to connect to docker: + +```yaml +- Emby: + icon: emby.png + href: "http://emby.home/" + description: Media server + server: my-docker # The docker server that was configured + container: emby # The name of the container you'd like to connect +``` + +## Automatic Service Discovery + +Homepage features automatic service discovery for containers with the proper labels attached, all configuration options can be applied using dot notation, beginning with `homepage`. + +Below is an example of the same service entry shown above, as docker labels. + +```yaml +services: + emby: + image: lscr.io/linuxserver/emby:latest + container_name: emby + ports: + - 8096:8096 + restart: unless-stopped + labels: + - homepage.group=Media + - homepage.name=Emby + - homepage.icon=emby.png + - homepage.href=http://emby.home/ + - homepage.description=Media server +``` + +When your Docker instance has been properly configured, this service will be automatically discovered and added to your Homepage. **You do not need to specify the `server` or `container` values, as they will be automatically inferred.** + +**When using docker swarm use _deploy/labels_** + +## Widgets + +You may also configure widgets, along with the standard service entry, again, using dot notation. + +```yaml +labels: + - homepage.group=Media + - homepage.name=Emby + - homepage.icon=emby.png + - homepage.href=http://emby.home/ + - homepage.description=Media server + - homepage.widget.type=emby + - homepage.widget.url=http://emby.home + - homepage.widget.key=yourembyapikeyhere + - homepage.widget.fields=["field1","field2"] # optional +``` + +## Docker Swarm + +Docker swarm is supported and Docker services are specified with the same `server` and `container` notation. To enable swarm support you will need to include a `swarm` setting in your docker.yaml, e.g. + +```yaml +my-docker: + socket: /var/run/docker.sock + swarm: true +``` + +For the automatic service discovery to discover all services it is important that homepage should be deployed on a manager node. Set deploy requirements to the master node in your stack yaml config, e.g. + +```yaml +.... + deploy: + placement: + constraints: + - node.role == manager +... +``` + +In order to detect every service within the Docker swarm it is necessary that service labels should be used and not container labels. Specify the homepage labels as: + +```yaml +.... + deploy: + labels: + - homepage.icon=foobar +... +``` + +## Ordering + +As of v0.6.4 discovered services can include an optional `weight` field to determine sorting such that: + +- Default weight for discovered services is 0 +- Default weight for configured services is their index within their group scaled by 100, i.e. (index + 1) \* 100 +- If two items have the same weight value, then they will be sorted by name + +## Show stats + +You can show the docker stats by clicking the status indicator but this can also be controlled per-service with: + +```yaml +- Example Service: + ... + showStats: true +``` + +Also see the settings for [show docker stats](docker.md#show-docker-stats). diff --git a/docs/configs/index.md b/docs/configs/index.md new file mode 100644 index 00000000..a43977f6 --- /dev/null +++ b/docs/configs/index.md @@ -0,0 +1,16 @@ +--- +title: Configuration +description: Homepage Configuration +--- + +Homepage uses YAML for configuration, YAML stands for "YAML Ain't Markup Language.". It's a human-readable data serialization format that's a superset of JSON. Great for config files, easy to read and write. Supports complex data types like lists and objects. **Indentation matters.** If you already use Docker Compose, you already use YAML. + +Here are some tips when writing YAML: + +1. **Use Indentation Carefully**: YAML relies on indentation, not brackets. +2. Avoid Tabs: Stick to spaces for indentation to avoid parsing errors. 2 spaces are common. +3. Quote Strings: Use single or double quotes for strings with special characters, this is especially important for API keys. +4. Key-Value Syntax: Use key: value format. Colon must be followed by a space. +5. Validate: Always validate your YAML with a linter before deploying. + +You can find tons of online YAML validators, here's one: [https://codebeautify.org/yaml-validator](https://codebeautify.org/yaml-validator), heres another: [https://jsonformatter.org/yaml-validator](https://jsonformatter.org/yaml-validator). diff --git a/docs/configs/kubernetes.md b/docs/configs/kubernetes.md new file mode 100644 index 00000000..1035db40 --- /dev/null +++ b/docs/configs/kubernetes.md @@ -0,0 +1,138 @@ +--- +title: Kubernetes +description: Kubernetes Configuration +--- + +The Kubernetes connectivity has the following requirements: + +- Kubernetes 1.19+ +- Metrics Service +- An Ingress controller + +The Kubernetes connection is configured in the `kubernetes.yaml` file. There are 3 modes to choose from: + +- **disabled** - disables kubernetes connectivity +- **default** - uses the default kubeconfig [resolution](https://kubernetes.io/docs/concepts/configuration/organize-cluster-access-kubeconfig/) +- **cluster** - uses a service account inside the cluster + +```yaml +mode: default +``` + +## Services + +Once the Kubernetes connection is configured, individual services can be configured to pull statistics. Only CPU and Memory are currently supported. + +Inside of the service you'd like to connect to a pod: + +```yaml +- Emby: + icon: emby.png + href: "http://emby.home/" + description: Media server + namespace: media # The kubernetes namespace the app resides in + app: emby # The name of the deployed app +``` + +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. + +For instance, it can be utilized to roll multiple underlying deployments under one application to see a high-level aggregate: + +```yaml +- Element Chat: + icon: matrix-light.png + href: https://chat.example.com + description: Matrix Synapse Powered Chat + app: matrix-element + namespace: comms + pod-selector: >- + app.kubernetes.io/instance in ( + matrix-element, + matrix-media-repo, + matrix-media-repo-postgresql, + matrix-synapse + ) +``` + +!!! 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. + +## Automatic Service Discovery + +Homepage features automatic service discovery by Ingress annotations. All configuration options can be applied using typical annotation syntax, beginning with `gethomepage.dev/`. + +```yaml +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: emby + annotations: + gethomepage.dev/enabled: "true" + gethomepage.dev/description: Media Server + gethomepage.dev/group: Media + gethomepage.dev/icon: emby.png + gethomepage.dev/name: Emby + gethomepage.dev/widget.type: "emby" + gethomepage.dev/widget.url: "https://emby.example.com" + gethomepage.dev/pod-selector: "" + gethomepage.dev/weight: 10 # optional +spec: + rules: + - host: emby.example.com + http: + paths: + - backend: + service: + name: emby + port: + number: 8080 + path: / + pathType: Prefix +``` + +When the Kubernetes cluster connection has been properly configured, this service will be automatically discovered and added to your Homepage. **You do not need to specify the `namespace` or `app` values, as they will be automatically inferred.** + +### 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: + +```yaml +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: emby + annotations: + gethomepage.dev/href: "https://emby.example.com" + gethomepage.dev/enabled: "true" + gethomepage.dev/description: Media Server + gethomepage.dev/group: Media + gethomepage.dev/icon: emby.png + gethomepage.dev/name: Emby + gethomepage.dev/widget.type: "emby" + gethomepage.dev/widget.url: "https://emby.example.com" + gethomepage.dev/pod-selector: "" + gethomepage.dev/weight: 10 # optional +spec: + entryPoints: + - websecure + routes: + - kind: Rule + match: Host(`emby.example.com`) + services: + - kind: Service + name: emby + namespace: emby + port: 8080 + scheme: http + strategy: RoundRobin + weight: 10 +``` + +If the `href` attribute is not present, Homepage will ignore the specific IngressRoute. + +## Caveats + +Similarly to Docker service discovery, there currently is no rigid ordering to discovered services and discovered services will be displayed above those specified in the `services.yaml`. diff --git a/docs/configs/service-widgets.md b/docs/configs/service-widgets.md new file mode 100644 index 00000000..93ed968e --- /dev/null +++ b/docs/configs/service-widgets.md @@ -0,0 +1,40 @@ +--- +title: Service Widgets +description: Service Widget Configuration +--- + +Unless otherwise noted, URLs should not end with a `/` or other API path. Each widget will handle the path on its own. + +Each service can have one widget attached to it (often matching the service type, but thats not forced). + +In addition to the href of the service, you can also specify the target location in which to open that link. See [Link Target](settings.md#link-target) for more details. + +Using Emby as an example, this is how you would attach the Emby service widget. + +```yaml +- Emby: + icon: emby.png + href: http://emby.host.or.ip/ + description: Movies & TV Shows + widget: + type: emby + url: http://emby.host.or.ip + key: apikeyapikeyapikeyapikeyapikey +``` + +## Field Visibility + +Each widget can optionally provide a list of which fields should be visible via the `fields` widget property. If no fields are specified, then all fields will be displayed. The `fields` property must be a valid YAML array of strings. As an example, here is the entry for Sonarr showing only a couple of fields. + +**In all cases a widget will work and display all fields without specifying the `fields` property.** + +```yaml +- Sonarr: + icon: sonarr.png + href: http://sonarr.host.or.ip + widget: + type: sonarr + fields: ["wanted", "queued"] + url: http://sonarr.host.or.ip + key: apikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/configs/services.md b/docs/configs/services.md new file mode 100644 index 00000000..3a099e63 --- /dev/null +++ b/docs/configs/services.md @@ -0,0 +1,188 @@ +--- +title: Services +description: Service Configuration +--- + +Services are configured inside the `services.yaml` file. You can have any number of groups, and any number of services per group. + +## Groups + +Groups are defined as top-level array entries. + +```yaml +- Group A: + - Service A: + href: http://localhost/ + +- Group B: + - Service B: + href: http://localhost/ +``` + +Service Groups + +## Services + +Services are defined as array entries on groups, + +```yaml +- Group A: + - Service A: + href: http://localhost/ + + - Service B: + href: http://localhost/ + + - Service C: + href: http://localhost/ + +- Group B: + - Service D: + href: http://localhost/ +``` + +Service Services + +## Descriptions + +Services may have descriptions, + +```yaml +- Group A: + - Service A: + href: http://localhost/ + description: This is my service + +- Group B: + - Service B: + href: http://localhost/ + description: This is another service +``` + +Service Descriptions + +## Icons + +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 specify a custom color by adding a hex color code as 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 local icon, first create a Docker mount to `/app/public/icons` and then reference your icon as `/icons/myicon.png`. You will need to restart the container when adding new icons. + +!!! warning + + Material Design Icons for **brands** were deprecated and may be removed in the future. Using Simple Icons for brand icons will prevent any issues if / when the Material Design Icons are removed. + +```yaml +- Group A: + - Sonarr: + icon: sonarr.png + href: http://sonarr.host/ + description: Series management + +- Group B: + - Radarr: + icon: radarr.png + href: http://radarr.host/ + description: Movie management + +- Group C: + - Service: + icon: mdi-flask-outline + href: http://service.host/ + description: My cool service +``` + +Service Icons + +## Ping + +Services may have an optional `ping` property that allows you to monitor the availability of an endpoint you chose and have the response time displayed. You do not need to set your ping URL equal to your href URL. + +!!! note + + The ping feature works by making an http `HEAD` request to the URL, and falls back to `GET` in case that fails. It will not, for example, login if the URL requires auth or is behind e.g. Authelia. In the case of a reverse proxy and/or auth this usually requires the use of an 'internal' URL to make the ping feature correctly display status. + +```yaml +- Group A: + - Sonarr: + icon: sonarr.png + href: http://sonarr.host/ + ping: http://sonarr.host/ + +- Group B: + - Radarr: + icon: radarr.png + href: http://radarr.host/ + ping: http://some.other.host/ +``` + +Ping + +You can also apply different styles to the ping indicator by using the `statusStyle` property, see [settings](settings.md#status-style). + +## Docker Integration + +Services may be connected to a Docker container, either running on the local machine, or a remote machine. + +```yaml +- Group A: + - Service A: + href: http://localhost/ + description: This is my service + server: my-server + container: my-container + +- Group B: + - Service B: + href: http://localhost/ + description: This is another service + server: other-server + container: other-container +``` + +Service Containers + +**Clicking on the status label of a service with Docker integration enabled will expand the container stats, where you can see CPU, Memory, and Network activity.** + +!!! note + + This can also be controlled with `showStats`. See [show docker stats](docker.md#show-docker-stats) for more information + +Docker Stats Expanded + +## Service Integrations + +Services may also have a service widget (or integration) attached to them, this works independently of the Docker integration. + +You can find information and configuration for each of the supported integrations on the [Service Widgets](service-widgets.md) page. + +Here is an example of a Radarr & Sonarr service, with their respective integrations. + +```yaml +- Group A: + - Sonarr: + icon: sonarr.png + href: http://sonarr.host/ + description: Series management + widget: + type: sonarr + url: http://sonarr.host + key: apikeyapikeyapikeyapikeyapikey + +- Group B: + - Radarr: + icon: radarr.png + href: http://radarr.host/ + description: Movie management + widget: + type: radarr + url: http://radarr.host + key: apikeyapikeyapikeyapikeyapikey +``` + +Service Integrations diff --git a/docs/configs/settings.md b/docs/configs/settings.md new file mode 100644 index 00000000..06b6b40a --- /dev/null +++ b/docs/configs/settings.md @@ -0,0 +1,425 @@ +--- +title: Settings +description: Service Configuration +--- + +The `settings.yaml` file allows you to define application level options. For changes made to this file to take effect, you will need to regenerate the static HTML, this can be done by clicking the refresh icon in the bottom right of the page. + +## Title + +You can customize the title of the page if you'd like. + +```yaml +title: My Awesome Homepage +``` + +## Start URL + +You can customize the start_url as required for installable apps. The default is "/". + +```yaml +startUrl: https://custom.url +``` + +## Background Image + +!!! warning "Heads Up!" + + You will need to restart the container any time you add new images, this is a limitation of the Next.js static site server. + +!!! warning "Heads Up!" + + Do not create a bind mount to the entire `/app/public/` directory. + +If you'd like to use a background image instead of the solid theme color, you may provide a full URL to an image of your choice. + +```yaml +background: https://images.unsplash.com/photo-1502790671504-542ad42d5189?auto=format&fit=crop&w=2560&q=80 +``` + +Or you may pass the path to a local image relative to e.g. `/app/public/images` directory. + +For example, inside of your Docker Compose file, mount a path to where your images are kept: + +```yaml +volumes: + - /my/homepage/images:/app/public/images +``` + +and then reference that image: + +```yaml +background: /images/background.png +``` + +### Background Opacity & Filters + +You can specify filters to apply over your background image for blur, saturation and brightness as well as opacity to blend with the background color. The first three filter settings use tailwind CSS classes, see notes below regarding the options for each. You do not need to specify all options. + +```yaml +background: + image: /images/background.png + blur: sm # sm, "", md, xl... see https://tailwindcss.com/docs/backdrop-blur + saturate: 50 # 0, 50, 100... see https://tailwindcss.com/docs/backdrop-saturate + brightness: 50 # 0, 50, 75... see https://tailwindcss.com/docs/backdrop-brightness + opacity: 50 # 0-100 +``` + +### Card Background Blur + +You can apply a blur filter to the service & bookmark cards. Note this option is incompatible with the backround blur, saturate and brightness filters. + +```yaml +cardBlur: sm # sm, "", md, etc... see https://tailwindcss.com/docs/backdrop-blur +``` + +## Favicon + +If you'd like to use a custom favicon instead of the included one, you may provide a full URL to an image of your choice. + +```yaml +favicon: https://www.google.com/favicon.ico +``` + +Or you may pass the path to a local image relative to the `/app/public` directory. See [Background Image](#background-image) for more detailed information on how to provide your own files. + +## Theme + +You can configure a fixed them (and disable the theme switcher) by passing the `theme` option, like so: + +```yaml +theme: dark # or light +``` + +## Color Palette + +You can configured a fixed color palette (and disable the palette switcher) by passing the `color` option, like so: + +```yaml +color: slate +``` + +Supported colors are: `slate`, `gray`, `zinc`, `neutral`, `stone`, `amber`, `yellow`, `lime`, `green`, `emerald`, `teal`, `cyan`, `sky`, `blue`, `indigo`, `violet`, `purple`, `fuchsia`, `pink`, `rose`, `red`, `white` + +## Layout + +You can configure service and bookmarks sections to be either "column" or "row" based layouts, like so: + +Assuming you have a group named `Media` in your `services.yaml` or `bookmarks.yaml` file, + +```yaml +layout: + Media: + style: row + columns: 4 +``` + +As an example, this would produce the following layout: + +Screenshot 2022-09-15 at 8 03 57 PM + +### Sorting + +Service groups and bookmark groups can be mixed in order, **but should use different group names**. If you do not specify any bookmark groups they will all show at the bottom of the page. + +**_Using the same name for a service and bookmark group can cause unexpected behavior like a bookmark group being hidden_** + +Groups will sort based on the order in the layout block. You can also mix in groups defined by docker labels, e.g. + +```yaml +layout: + - Auto-Discovered1: + - Configured1: + - Configured2: + - Auto-Discovered2: + - Configured3: + style: row + columns: 3 +``` + +### Headers + +You can hide headers for each section in the layout as well by passing `header` as false, like so: + +```yaml +layout: + Section A: + header: false + Section B: + style: row + columns: 3 + header: false +``` + +### Category Icons + +You can also add an icon to a category under the `layout` setting similar to the [options for service icons](services.md#icons), e.g. + +```yaml + Home Management & Info: + icon: home-assistant.png + Server Tools: + icon: https://cdn-icons-png.flaticon.com/512/252/252035.png + ... +``` + +### Icon Style + +The default style for icons (e.g. `icon: mdi-XXXX`) is a gradient, or you can specify that prefixed icons match your theme with a 'flat' style using the setting below. +More information about prefixed icons can be found in [options for service icons](services.md#icons). + +```yaml +iconStyle: theme # optional, defaults to gradient +``` + +### Tabs + +Version 0.6.30 introduced a tabbed view to layouts which can be optionally specified in the layout. Tabs is only active if you set the `tab` field on at least one layout group. + +Tabs are sorted based on the order in the layout block. If a group has no tab specified (and tabs are set on other groups), services and bookmarks will be shown on all tabs. + +Every tab can be accessed directly by visiting Homepage URL with `#Group` (name lowercase and URI-encoded) at the end of the URL. + +For example, the following would create four tabs: + +```yaml +layout: + ... + Bookmark Group on First Tab: + tab: First + + First Service Group: + tab: First + style: row + columns: 4 + + Second Service Group: + tab: Second + columns: 4 + + Third Service Group: + tab: Third + style: row + + Bookmark Group on Fourth Tab: + tab: Fourth + + Service Group on every Tab: + style: row + columns: 4 +``` + +### Five Columns + +You can add a fifth column (when `style: columns` which is default) by adding: + +```yaml +fiveColumns: true +``` + +By default homepage will max out at 4 columns for column style + +### Collapsible sections + +You can disable the collapsible feature of services & bookmarks by adding: + +```yaml +disableCollapse: true +``` + +By default the feature is enabled. + +## Header Style + +There are currently 4 options for header styles, you can see each one below. + +underlined + +```yaml +headerStyle: underlined # default style +``` + +--- + +boxed + +```yaml +headerStyle: boxed +``` + +--- + +clean + +```yaml +headerStyle: clean +``` + +--- + +boxedWidgets + +```yaml +headerStyle: boxedWidgets +``` + +## Base URL + +In some proxy configurations, it may be necessary to set the documents base URL. You can do this by providing a `base` value, like so: + +```yaml +base: http://host.local/homepage +``` + +**_The URL must be a full, absolute URL, or it will be ignored by the browser._** + +## Language + +Set your desired language using: + +```yaml +language: fr +``` + +Currently supported languages: ca, de, en, es, fr, he, hr, hu, it, nb-NO, nl, pt, ru, sv, vi, zh-CN, zh-Hant + +You can also specify locales e.g. for the DateTime widget, e.g. en-AU, en-GB, etc. + +## Link Target + +Changes the behaviour of links on the homepage, + +```yaml +target: _blank # Possible options include _blank, _self, and _top +``` + +Use `_blank` to open links in a new tab, `_self` to open links in the same tab, and `_top` to open links in a new window. + +This can also be set for individual services. Note setting this at the service level overrides any setting in settings.json, e.g.: + +```yaml +- Example Service: + href: https://example.com/ + ... + target: _self +``` + +## Providers + +The `providers` section allows you to define shared API provider options and secrets. Currently this allows you to define your weather API keys in secret and is also the location of the Longhorn URL and credentials. + +```yaml +providers: + openweathermap: openweathermapapikey + weatherapi: weatherapiapikey + longhorn: + url: https://longhorn.example.com + username: admin + password: LonghornPassword +``` + +You can then pass `provider` instead of `apiKey` in your widget configuration. + +```yaml +- weather: + latitude: 50.449684 + longitude: 30.525026 + provider: weatherapi +``` + +## Quick Launch + +You can use the 'Quick Launch' feature to search services, perform a web search or open a URL. To use Quick Launch, just start typing while on your homepage (as long as the search widget doesnt have focus). + +quicklaunch + +There are a few optional settings for the Quick Launch feature: + +- `searchDescriptions`: which lets you control whether item descriptions are included in searches. This is off by default. When enabled, results that match the item name will be placed above those that only match the description. +- `hideInternetSearch`: disable automatically including the currently-selected web search (e.g. from the widget) as a Quick Launch option. This is false by default, enabling the feature. +- `hideVisitURL`: disable detecting and offering an option to open URLs. This is false by default, enabling the feature. + +```yaml +quicklaunch: + searchDescriptions: true + hideInternetSearch: true + hideVisitURL: true +``` + +## Homepage Version + +By default the release version is displayed at the bottom of the page. To hide this, use the `hideVersion` setting, like so: + +```yaml +hideVersion: true +``` + +## Log Path + +By default the homepage logfile is written to the a `logs` subdirectory of the `config` folder. In order to customize this path, you can set the `logpath` setting. A `logs` folder will be created in that location where the logfile will be written. + +```yaml +logpath: /logfile/path +``` + +## Show Docker Stats + +You can show all docker stats expanded in `settings.yaml`: + +```yaml +showStats: true +``` + +or per-service (`services.yaml`) with: + +```yaml +- Example Service: + ... + showStats: true +``` + +If you have both set the per-service settings take precedence. + +## Status Style + +You can choose from the following styles for docker or k8s status and ping: `dot` or `basic` + +- The default is no value, and displays the ping response time in ms and the docker / k8s container status +- `dot` shows a green dot for a successful ping or healthy status. +- `basic` shows either UP or DOWN for ping + +For example: + +```yaml +statusStyle: 'dot' +``` + +or per-service (`services.yaml`) with: + +```yaml +- Example Service: + ... + statusStyle: 'dot' +``` + +If you have both set, the per-service settings take precedence. + +## Hide Widget Error Messages + +Hide the visible API error messages either globally in `settings.yaml`: + +```yaml +hideErrors: true +``` + +or per service widget (`services.yaml`) with: + +```yaml +- Example Service: + ... + widget: + ... + hideErrors: true +``` + +If either value is set to true, the errror message will be hidden. diff --git a/docs/index.md b/docs/index.md new file mode 100644 index 00000000..97a3704b --- /dev/null +++ b/docs/index.md @@ -0,0 +1,19 @@ +--- +title: Home +hide: + - navigation + - toc + - path +--- + +# + +
+ +

+![Alt text](assets/banner_dark@2x.png#only-light) +![Alt text](assets/banner_light@2x.png#only-dark) + +A modern, fully static, fast, secure fully proxied, highly customizable application dashboard with integrations for over 100 services and translations into multiple languages. Easily configured via YAML files or through docker label discovery. + +![Alt text](assets/homepage_demo.png) diff --git a/docs/installation/docker.md b/docs/installation/docker.md new file mode 100644 index 00000000..7c696792 --- /dev/null +++ b/docs/installation/docker.md @@ -0,0 +1,57 @@ +--- +title: Docker Installation +description: Install and run homepage from Docker +--- + +Using docker compose: + +```yaml +version: "3.3" +services: + homepage: + image: ghcr.io/gethomepage/homepage:latest + container_name: homepage + ports: + - 3000:3000 + volumes: + - /path/to/config:/app/config # Make sure your local config directory exists + - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations +``` + +### Running as non-root + +By default, the Homepage container runs as root. Homepage also supports running your container as non-root via the standard `PUID` and `PGID` environment variables. When using these variables, make sure that any volumes mounted in to the container have the correct ownership and permissions set. + +_Using the docker socket directly is not the recommended method of integration and requires either running homepage as root or that the user be part of the docker group_ + +In the docker compose example below, the environment variables `$PUID` and `$PGID` are set in a `.env` file. + +```yaml +version: "3.3" +services: + homepage: + image: ghcr.io/gethomepage/homepage:latest + container_name: homepage + ports: + - 3000:3000 + volumes: + - /path/to/config:/app/config # Make sure your local config directory exists + - /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations, see alternative methods + environment: + PUID: $PUID + PGID: $PGID +``` + +### With Docker Run + +```bash +docker run -p 3000:3000 -v /path/to/config:/app/config -v /var/run/docker.sock:/var/run/docker.sock ghcr.io/gethomepage/homepage:latest +``` + +### Using Environment Secrets + +You can also include environment variables in your config files to protect sensitive information. Note: + +- Environment variables must start with `HOMEPAGE_VAR_` or `HOMEPAGE_FILE_` +- The value of env var `HOMEPAGE_VAR_XXX` will replace `{{HOMEPAGE_VAR_XXX}}` in any config +- The value of env var `HOMEPAGE_FILE_XXX` must be a file path, the contents of which will be used to replace `{{HOMEPAGE_FILE_XXX}}` in any config diff --git a/docs/installation/index.md b/docs/installation/index.md new file mode 100644 index 00000000..f1d317c4 --- /dev/null +++ b/docs/installation/index.md @@ -0,0 +1,25 @@ +--- +title: Installation +description: Docs intro +--- + +

+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. +

+ +
+ +
+:simple-docker: [  Install on Docker :octicons-arrow-right-24:](docker.md) +{ .card } + +:simple-kubernetes: [  Install on Kubernetes :octicons-arrow-right-24:](k8s.md) +{ .card } + +:simple-unraid: [  Install on UNRAID :octicons-arrow-right-24:](unraid.md) +{ .card } + +:simple-nextdotjs: [  Building from source :octicons-arrow-right-24:](source.md) +{ .card } + +
diff --git a/docs/installation/k8s.md b/docs/installation/k8s.md new file mode 100644 index 00000000..336801d8 --- /dev/null +++ b/docs/installation/k8s.md @@ -0,0 +1,363 @@ +--- +title: Kubernetes Installation +description: Install on Kubernetes +--- + +## Install with Helm + +There is an [unofficial helm chart](https://github.com/jameswynn/helm-charts/tree/main/charts/homepage) that creates all the necessary manifests, including the service account and RBAC entities necessary for service discovery. + +```sh +helm repo add jameswynn https://jameswynn.github.io/helm-charts +helm install homepage jameswynn/homepage -f values.yaml +``` + +The helm chart allows for all the configurations to be inlined directly in your `values.yaml`: + +```yaml +config: + bookmarks: + - Developer: + - Github: + - abbr: GH + href: https://github.com/ + services: + - My First Group: + - My First Service: + href: http://localhost/ + description: Homepage is awesome + + - My Second Group: + - My Second Service: + href: http://localhost/ + description: Homepage is the best + + - My Third Group: + - My Third Service: + href: http://localhost/ + description: Homepage is 😎 + widgets: + # show the kubernetes widget, with the cluster summary and individual nodes + - kubernetes: + cluster: + show: true + cpu: true + memory: true + showLabel: true + label: "cluster" + nodes: + show: true + cpu: true + memory: true + showLabel: true + - search: + provider: duckduckgo + target: _blank + kubernetes: + mode: cluster + settings: + +# The service account is necessary to allow discovery of other services +serviceAccount: + create: true + name: homepage + +# This enables the service account to access the necessary resources +enableRbac: true + +ingress: + main: + enabled: true + annotations: + # Example annotations to add Homepage to your Homepage! + gethomepage.dev/enabled: "true" + gethomepage.dev/name: "Homepage" + gethomepage.dev/description: "Dynamically Detected Homepage" + gethomepage.dev/group: "Dynamic" + gethomepage.dev/icon: "homepage.png" + hosts: + - host: homepage.example.com + paths: + - path: / + pathType: Prefix +``` + +## Install with Kubernetes Manifests + +If you don't want to use the unofficial Helm chart, you can also create your own Kubernetes manifest(s) and apply them with `kubectl apply -f filename.yaml`. + +Here's a working example of the resources you need: + +#### ServiceAccount + +```yaml +apiVersion: v1 +kind: ServiceAccount +metadata: + name: homepage + namespace: default + labels: + app.kubernetes.io/name: homepage +secrets: + - name: homepage +``` + +#### Secret + +```yaml +apiVersion: v1 +kind: Secret +type: kubernetes.io/service-account-token +metadata: + name: homepage + namespace: default + labels: + app.kubernetes.io/name: homepage + annotations: + kubernetes.io/service-account.name: homepage +``` + +#### ConfigMap + +```yaml +apiVersion: v1 +kind: ConfigMap +metadata: + name: homepage + namespace: default + labels: + app.kubernetes.io/name: homepage +data: + kubernetes.yaml: | + mode: cluster + settings.yaml: "" + #settings.yaml: | + # providers: + # longhorn: + # url: https://longhorn.my.network + custom.css: "" + custom.js: "" + bookmarks.yaml: | + - Developer: + - Github: + - abbr: GH + href: https://github.com/ + services.yaml: | + - My First Group: + - My First Service: + href: http://localhost/ + description: Homepage is awesome + + - My Second Group: + - My Second Service: + href: http://localhost/ + description: Homepage is the best + + - My Third Group: + - My Third Service: + href: http://localhost/ + description: Homepage is 😎 + widgets.yaml: | + - kubernetes: + cluster: + show: true + cpu: true + memory: true + showLabel: true + label: "cluster" + nodes: + show: true + cpu: true + memory: true + showLabel: true + - resources: + backend: resources + expanded: true + cpu: true + memory: true + - search: + provider: duckduckgo + target: _blank + docker.yaml: "" +``` + +#### ClusterRole and ClusterRoleBinding + +```yaml +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + name: homepage + labels: + app.kubernetes.io/name: homepage +rules: + - apiGroups: + - "" + resources: + - namespaces + - pods + - nodes + verbs: + - get + - list + - apiGroups: + - extensions + - networking.k8s.io + resources: + - ingresses + verbs: + - get + - list + - apiGroups: + - traefik.containo.us + resources: + - ingressroutes + verbs: + - get + - list + - apiGroups: + - metrics.k8s.io + resources: + - nodes + - pods + verbs: + - get + - list +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + name: homepage + labels: + app.kubernetes.io/name: homepage +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: homepage +subjects: + - kind: ServiceAccount + name: homepage + namespace: default +``` + +#### Service + +```yaml +apiVersion: v1 +kind: Service +metadata: + name: homepage + namespace: default + labels: + app.kubernetes.io/name: homepage + annotations: +spec: + type: ClusterIP + ports: + - port: 3000 + targetPort: http + protocol: TCP + name: http + selector: + app.kubernetes.io/name: homepage +``` + +#### Deployment + +```yaml +apiVersion: apps/v1 +kind: Deployment +metadata: + name: homepage + namespace: default + labels: + app.kubernetes.io/name: homepage +spec: + revisionHistoryLimit: 3 + replicas: 1 + strategy: + type: RollingUpdate + selector: + matchLabels: + app.kubernetes.io/name: homepage + template: + metadata: + labels: + app.kubernetes.io/name: homepage + spec: + serviceAccountName: homepage + automountServiceAccountToken: true + dnsPolicy: ClusterFirst + enableServiceLinks: true + containers: + - name: homepage + image: "ghcr.io/gethomepage/homepage:latest" + imagePullPolicy: Always + ports: + - name: http + containerPort: 3000 + protocol: TCP + volumeMounts: + - mountPath: /app/config/custom.js + name: homepage-config + subPath: custom.js + - mountPath: /app/config/custom.css + name: homepage-config + subPath: custom.css + - mountPath: /app/config/bookmarks.yaml + name: homepage-config + subPath: bookmarks.yaml + - mountPath: /app/config/docker.yaml + name: homepage-config + subPath: docker.yaml + - mountPath: /app/config/kubernetes.yaml + name: homepage-config + subPath: kubernetes.yaml + - mountPath: /app/config/services.yaml + name: homepage-config + subPath: services.yaml + - mountPath: /app/config/settings.yaml + name: homepage-config + subPath: settings.yaml + - mountPath: /app/config/widgets.yaml + name: homepage-config + subPath: widgets.yaml + - mountPath: /app/config/logs + name: logs + volumes: + - name: homepage-config + configMap: + name: homepage + - name: logs + emptyDir: {} +``` + +#### Ingress + +```yaml +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: homepage + namespace: default + labels: + app.kubernetes.io/name: homepage + annotations: + gethomepage.dev/description: Dynamically Detected Homepage + gethomepage.dev/enabled: "true" + gethomepage.dev/group: Cluster Management + gethomepage.dev/icon: homepage.png + gethomepage.dev/name: Homepage +spec: + rules: + - host: "homepage.my.network" + http: + paths: + - path: "/" + pathType: Prefix + backend: + service: + name: homepage + port: + number: 3000 +``` diff --git a/docs/installation/source.md b/docs/installation/source.md new file mode 100644 index 00000000..42e5fe91 --- /dev/null +++ b/docs/installation/source.md @@ -0,0 +1,25 @@ +--- +title: Source Installation +description: Install and run homepage from source +--- + +First, clone the repository: + +```bash +git clone https://github.com/gethomepage/homepage.git +``` + +Then install dependencies and build the production bundle (I'm using pnpm here, you can use npm or yarn if you like): + +```bash +pnpm install +pnpm build +``` + +If this is your first time starting, copy the `src/skeleton` directory to `config/` to populate initial example config files. + +Finally, run the server: + +```bash +pnpm start +``` diff --git a/docs/installation/unraid.md b/docs/installation/unraid.md new file mode 100644 index 00000000..192837d2 --- /dev/null +++ b/docs/installation/unraid.md @@ -0,0 +1,45 @@ +--- +title: UNRAID Installation +description: Install and run homepage on UNRAID +--- + +Homepage has an UNRAID community package that you may use to install homepage. This is the easiest way to get started with homepage on UNRAID. + +## Install the Plugin + +- In the UNRAID webGUI, go to the **Apps** tab. +- In the search bar, search for `homepage`. +- Click on **Install**. +- Change the parameters to your liking. + - Click on **APPLY**. + +## Run the Container + +- While the container is running, open the WebUI. + - Opening the page will generate the configuration files. + +You may need to set the permissions of the folders to be able to edit the files. + +- Click on the Homepage icon. +- Click on **Console**. + - Enter `chmod -R u-x,go-rwx,go+u,ugo+X /app/config` and press **Enter**. + - Enter `chmod -R u-x,go-rwx,go+u,ugo+X /app/public/icons` and press **Enter**. + - Enter `chown -R nobody:users /app/config` and press **Enter**. + - Enter `chown -R nobody:users /app/public/icons` and press **Enter**. + +## Some Other Notes + +- 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 + + 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: + icon: /icons/plex.png + href: https://app.plex.com + 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. diff --git a/docs/more/development.md b/docs/more/development.md new file mode 100644 index 00000000..af5a58dd --- /dev/null +++ b/docs/more/development.md @@ -0,0 +1,42 @@ +--- +title: Development +description: Homepage Development +--- + +## Development Overview + +First, clone the homepage repository. + +For installing NPM packages, this project uses [pnpm](https://pnpm.io/) (and so should you!): + +```bash +pnpm install +``` + +Start the development server: + +```bash +pnpm dev +``` + +Open [http://localhost:3000](http://localhost:3000) to start. + +This is a [Next.js](https://nextjs.org/) application, see their documentation for more information. + +## Code Linting + +Once dependencies have been installed you can lint your code with + +```bash +pnpm lint +``` + +## Service Widget Guidelines + +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 5 'up-votes' +- Widgets should be only one row of blocks +- Widgets should be no more than 4 blocks wide +- Minimize the number of API calls +- Avoid the use of custom proxy unless absolutely necessary diff --git a/docs/more/homepage-move.md b/docs/more/homepage-move.md new file mode 100644 index 00000000..de99e640 --- /dev/null +++ b/docs/more/homepage-move.md @@ -0,0 +1,8 @@ +--- +title: Homepage Move +description: Homepage Container Deprecation +--- + +As of v0.7.2 homepage migrated from benphelps/homepage to an "organization" repository located at [gethomepage/homepage](https://github.com/gethomepage/homepage/). The reason for this was to setup the project for longevity and allow for community maintenance. + +Migrating your installation should be as simple as changing `image: ghcr.io/benphelps/homepage:latest` to `image: ghcr.io/gethomepage/homepage:latest`. \ No newline at end of file diff --git a/docs/more/index.md b/docs/more/index.md new file mode 100644 index 00000000..1b817983 --- /dev/null +++ b/docs/more/index.md @@ -0,0 +1,6 @@ +--- +title: More +description: More homepage resources and guides. +--- + +Here you'll find resources and guides for Homepage, troubleshooting tips, and more. diff --git a/docs/more/translations.md b/docs/more/translations.md new file mode 100644 index 00000000..7a978989 --- /dev/null +++ b/docs/more/translations.md @@ -0,0 +1,19 @@ +--- +title: Translations +description: Contributing Translations +--- + +Homepage is developed in English, component contributions must be in English. All translations are community provided, so a huge thanks go out to all those who have helped out so far! + +## Support Translations + +If you'd like to lend a hand in translating Homepage into more languages, or to improve existing translations, the process is very simple: + +1. Create a free account at [Crowdin](https://crowdin.com/join) +2. Visit the [Homepage project](https://crowdin.com/project/gethomepage) +3. Select the language you'd like to translate +4. Start translating! + +## Adding a new language + +If you'd like to add a new language, please [create a new Discussion on Crowdin](https://crowdin.com/project/gethomepage/discussions), and we'll add it to the project. diff --git a/docs/more/troubleshooting.md b/docs/more/troubleshooting.md new file mode 100644 index 00000000..3ca3eb73 --- /dev/null +++ b/docs/more/troubleshooting.md @@ -0,0 +1,66 @@ +--- +title: Troubleshooting +description: Basic Troubleshooting + +hide: + - navigation +--- + +## 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. +- Check config/logs/homepage.log, on docker simply e.g. `docker logs homepage`. This may provide some insight into the reason for an error. +- Check the browser error console, this can also sometimes provide useful information. +- Consider setting the `ENV` variable `LOG_LEVEL` to `debug`. + +## Service Widget Errors + +All service widgets work essentially the same, that is, homepage makes a proxied call to an API made available by that service. The majority of the time widgets don't work it is a configuration issue. Of course, sometimes things do break. Some basic steps to 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. + +2. Verify the homepage installation can connect to the IP address or host you are using for the widget `url`. This is most simply achieved by pinging the server from the homepage machine, in Docker this means _from inside the container_ itself, e.g.: + + ``` + docker exec homepage ping SERVICEIPORDOMAIN + ``` + + If your homepage install (container) cannot reach the service then you need to figure out why, for example in Docker this can mean putting the two containers on the same network, checking firewall issues, etc. + +3. If you have verified that homepage can in fact reach the service then you can also check the API output using e.g. `curl`, which is often helpful if you do need to file a bug report. Again, depending on your networking setup this may need to be run from _inside the container_ as IP / hostname resolution can differ inside vs outside. + + !!! note + + `curl` is not installed in the base image by default but can be added inside the container with `apk add curl`. + + The exact API endpoints and authentication vary of course, but in many cases instructions can be found by searching the web or if you feel comfortable looking at the homepage source code (e.g. `src/widgets/{widget}/widget.js`). + + It is out of the scope of this to go into full detail about how to , but an example for PiHole would be: + + ``` + curl -L -k http://PIHOLEIPORHOST/admin/api.php + ``` + + Or for AdGuard: + + ``` + curl -L -k -u 'username:password' http://ADGUARDIPORHOST/control/stats + ``` + + Or for Portainer: + + ``` + curl -L -k -H 'X-Api-Key:YOURKEY' 'https://PORTAINERIPORHOST:PORT/api/endpoints/2/docker/containers/json' + ``` + + Sonarr: + + ``` + curl -L -k 'http://SONARRIPORHOST:PORT/api/v3/queue?apikey=YOURAPIKEY' + ``` + + This will return some data which may reveal an issue causing a true bug in the service widget. + +## Missing custom icons + +If, after correctly adding and mapping your custom icons via the [Icons](../configs/services.md#icons) instructions, you are still unable to see your icons please try recreating your container. diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css new file mode 100644 index 00000000..0756f278 --- /dev/null +++ b/docs/stylesheets/extra.css @@ -0,0 +1,20 @@ +[data-md-toggle="search"]:not(:checked) ~ .md-header .md-search__form::after { + position: absolute; + top: .3rem; + right: .3rem; + display: block; + padding: .1rem .4rem; + color: var(--md-default-fg-color--lighter); + font-weight: bold; + font-size: .8rem; + border: .05rem solid var(--md-default-fg-color--lighter); + border-radius: .1rem; + content: "/"; + } + +[data-md-color-scheme="default"][data-md-color-primary="black"] { + [data-md-toggle="search"]:not(:checked) ~ .md-header .md-search__form::after { + color: var(--md-default-bg-color--lighter); + border-color: var(--md-default-bg-color--lighter); + } +} \ No newline at end of file diff --git a/docs/widgets/index.md b/docs/widgets/index.md new file mode 100644 index 00000000..b2c95a0f --- /dev/null +++ b/docs/widgets/index.md @@ -0,0 +1,35 @@ +--- +title: Widgets +description: Homepage info and status widgets. +--- + +Homepage has two types of widgets: info and service. Below we'll cover each type and how to configure them. + +## 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.yml` file. Here's an example: + +```yaml +- Plex: + icon: plex.png + href: https://plex.my.host + description: Watch movies and TV shows. + server: localhost + container: plex + widget: + type: tautulli + url: http://172.16.1.1:8181 + key: aabbccddeeffgghhiijjkkllmmnnoo +``` + +## Info Widgets + +Info widgets are used to display information in the header, often about your system or environment. Info widgets are defined your `widgets.yml` file. Here's an example: + +```yaml +- openmeteo: + label: Current + latitude: 36.66 + longitude: -117.51 + cache: 5 +``` diff --git a/docs/widgets/info/datetime.md b/docs/widgets/info/datetime.md new file mode 100644 index 00000000..47feb45f --- /dev/null +++ b/docs/widgets/info/datetime.md @@ -0,0 +1,51 @@ +--- +title: Date & Time +description: Date & Time Information Widget Configuration +--- + +This allows you to display the date and/or time, can be heavily configured using [Intl.DateTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat). + +Formatting is locale aware and will present your date in the regional format you expect, for example, `9/16/22, 3:03 PM` for locale `en` and `16.09.22, 15:03` for `de`. You can also specify a locale just for the datetime widget with the `locale` option (see below). + +```yaml +- datetime: + text_size: xl + format: + timeStyle: short +``` + +Any options passed to `format` are passed directly to [Intl.DateTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/DateTimeFormat), please reference the MDN documentation for all available options. + +Valid text sizes are `4xl`, `3xl`, `2xl`, `xl`, `md`, `sm`, `xs`. + +A few examples, + +```yaml +# 13:37 +format: + timeStyle: short + hourCycle: h23 +``` + +```yaml +# 1:37 PM +format: + timeStyle: short + hour12: true +``` + +```yaml +# 1/23/22, 1:37 PM +format: + dateStyle: short + timeStyle: short + hour12: true +``` + +```yaml +# 4 januari 2023 om 13:51:25 PST +locale: nl +format: + dateStyle: long + timeStyle: long +``` diff --git a/docs/widgets/info/glances.md b/docs/widgets/info/glances.md new file mode 100644 index 00000000..e5cbc7bc --- /dev/null +++ b/docs/widgets/info/glances.md @@ -0,0 +1,33 @@ +--- +title: Glances +description: Glances Information Widget Configuration +--- + +_(Find the Glances service widget [here](../services/glances.md))_ + +The Glances widget allows you to monitor the resources (CPU, memory, storage, temp & uptime) of host or another machine, and is designed to match the `resources` info widget. You can have multiple instances by adding another configuration block. The `cputemp`, `uptime` & `disk` states require separate API calls and thus are not enabled by default. Glances needs to be running in "web server" mode to enable the API, see the [glances docs](https://glances.readthedocs.io/en/latest/quickstart.html#web-server-mode). + +```yaml +- glances: + url: http://host.or.ip:port + username: user # optional if auth enabled in Glances + password: pass # optional if auth enabled in Glances + cpu: true # optional, enabled by default, disable by setting to false + mem: true # optional, enabled by default, disable by setting to false + cputemp: true # disabled by default + uptime: true # disabled by default + disk: / # disabled by default, use mount point of disk(s) in glances. Can also be a list (see below) + expanded: true # show the expanded view + label: MyMachine # optional +``` + +Multiple disks can be specified as: + +```yaml +disk: + - / + - /boot + ... +``` + +_Added in v0.4.18, updated in v0.6.11, v0.6.21_ diff --git a/docs/widgets/info/greeting.md b/docs/widgets/info/greeting.md new file mode 100644 index 00000000..0902814a --- /dev/null +++ b/docs/widgets/info/greeting.md @@ -0,0 +1,14 @@ +--- +title: Greeting +description: Greeting Information Widget Configuration +--- + +This allows you to display simple text, can be configured like so: + +```yaml +- greeting: + text_size: xl + text: Greeting Text +``` + +Valid text sizes are `4xl`, `3xl`, `2xl`, `xl`, `md`, `sm`, `xs`. diff --git a/docs/widgets/info/index.md b/docs/widgets/info/index.md new file mode 100644 index 00000000..52edeaad --- /dev/null +++ b/docs/widgets/info/index.md @@ -0,0 +1,4 @@ +--- +title: Info Widgets +description: Homepage info widgets. +--- diff --git a/docs/widgets/info/kubernetes.md b/docs/widgets/info/kubernetes.md new file mode 100644 index 00000000..d424a9c4 --- /dev/null +++ b/docs/widgets/info/kubernetes.md @@ -0,0 +1,31 @@ +--- +title: Kubernetes +description: Kubernetes Information Widget Configuration +--- + +This is very similar to the Resources widget, but provides resource information about a Kubernetes cluster. + +It provides CPU and Memory usage, by node and/or at the cluster level. + +```yaml +- kubernetes: + cluster: + # Shows cluster-wide statistics + show: true + # Shows the aggregate CPU stats + cpu: true + # Shows the aggregate memory stats + memory: true + # Shows a custom label + showLabel: true + label: "cluster" + nodes: + # Shows node-specific statistics + show: true + # Shows the CPU for each node + cpu: true + # Shows the memory for each node + memory: true + # Shows the label, which is always the node name + showLabel: true +``` diff --git a/docs/widgets/info/logo.md b/docs/widgets/info/logo.md new file mode 100644 index 00000000..ef3255f4 --- /dev/null +++ b/docs/widgets/info/logo.md @@ -0,0 +1,13 @@ +--- +title: Logo +description: Logo Information Widget Configuration +--- + +This allows you to display the homepage logo, you can optionally specify your own icon using similar options as other icons, see [service icons](../../configs/services.md#icons). + +```yaml +- logo: + icon: https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/I_Love_New_York.svg/1101px-I_Love_New_York.svg.png # optional +``` + +_Added in v0.4.18, updated in 0.X.X_ diff --git a/docs/widgets/info/longhorn.md b/docs/widgets/info/longhorn.md new file mode 100644 index 00000000..4c7bbdbe --- /dev/null +++ b/docs/widgets/info/longhorn.md @@ -0,0 +1,29 @@ +--- +title: Longhorn +description: Longhorn Storage Widget Configuration +--- + +The Longhorn widget pulls storage utilization metrics from the Longhorn storage driver on Kubernetes. +It is designed to appear similar to the Resource widget's disk representation. + +The exact metrics should be very similar to what is seen on the Longhorn dashboard itself. + +It can show the aggregate metrics and/or the individual node metrics. + +```yaml +- longhorn: + # Show the expanded view + expanded: true + # Shows a node representing the aggregate values + total: true + # Shows the node names as labels + labels: true + # Show the nodes + nodes: true + # An explicit list of nodes to show. All are shown by default if "nodes" is true + include: + - node1 + - node2 +``` + +The Longhorn URL and credentials are stored in the `providers` section of the `settings.yaml`. diff --git a/docs/widgets/info/openmeteo.md b/docs/widgets/info/openmeteo.md new file mode 100644 index 00000000..db1daac3 --- /dev/null +++ b/docs/widgets/info/openmeteo.md @@ -0,0 +1,18 @@ +--- +title: Open-Meteo +description: Open-Meteo Information Widget Configuration +--- + +No registration is required at all! See [https://open-meteo.com/en/docs](https://open-meteo.com/en/docs) + +```yaml +- openmeteo: + label: Kyiv # optional + latitude: 50.449684 + longitude: 30.525026 + timezone: Europe/Kiev # optional + units: metric # or imperial + cache: 5 # Time in minutes to cache API responses, to stay within limits +``` + +You can optionally not pass a `latitude` and `longitude` and the widget will use your current location (requires a secure context, eg. HTTPS). diff --git a/docs/widgets/info/openweathermap.md b/docs/widgets/info/openweathermap.md new file mode 100644 index 00000000..63e7295d --- /dev/null +++ b/docs/widgets/info/openweathermap.md @@ -0,0 +1,19 @@ +--- +title: OpenWeatherMap +description: OpenWeatherMap Information Widget Configuration +--- + +The free tier "One Call API" is all thats required, you will need to [subscribe](https://home.openweathermap.org/subscriptions/unauth_subscribe/onecall_30/base) and grab your API key. + +```yaml +- openweathermap: + label: Kyiv #optional + latitude: 50.449684 + longitude: 30.525026 + units: metric # or imperial + provider: openweathermap + apiKey: youropenweathermapkey # required only if not using provider, this reveals api key in requests + cache: 5 # Time in minutes to cache API responses, to stay within limits +``` + +You can optionally not pass a `latitude` and `longitude` and the widget will use your current location (requires a secure context, eg. HTTPS). diff --git a/docs/widgets/info/resources.md b/docs/widgets/info/resources.md new file mode 100644 index 00000000..43dea381 --- /dev/null +++ b/docs/widgets/info/resources.md @@ -0,0 +1,71 @@ +--- +title: Resources +description: Resources Information Widget Configuration +--- + +You can include all or some of the available resources. If you do not want to see that resource, simply pass `false`. + +The disk path is the path reported by `df` (Mounted On), or the mount point of the disk. + +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. + +_Note: unfortunately, the package used for getting CPU temp ([systeminformation](https://systeminformation.io)) is not compatibile 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.** + +```yaml +- resources: + cpu: true + memory: true + disk: /disk/mount/path + cputemp: true + uptime: true + units: imperial # only used by cpu temp + refresh: 3000 # optional, in ms +``` + +You can also pass a `label` option, which allows you to group resources under named sections, + +```yaml +- resources: + label: System + cpu: true + memory: true + +- resources: + label: Storage + disk: /mnt/storage +``` + +Which produces something like this, + +Resource Groups + +If you have more than a single disk and would like to group them together under the same label, you can pass an array of paths instead, + +```yaml +- resources: + label: Storage + disk: + - /mnt/storage + - /mnt/backup + - /mnt/media +``` + +To produce something like this, + +Screenshot 2022-09-11 at 2 15 42 PM + +You can additionally supply an optional `expanded` property set to true in order to show additional details about the resources. By default the expanded property is set to false when not supplied. + +```yaml +- resources: + label: Array Disks + expanded: true + disk: + - /disk1 + - /disk2 + - /disk3 +``` + +![194136533-c4238c82-4d67-41a4-b3c8-18bf26d33ac2](https://user-images.githubusercontent.com/3441425/194728642-a9885274-922b-4027-acf5-a746f58fdfce.png) diff --git a/docs/widgets/info/search.md b/docs/widgets/info/search.md new file mode 100644 index 00000000..a03d711c --- /dev/null +++ b/docs/widgets/info/search.md @@ -0,0 +1,31 @@ +--- +title: Search +description: Search Information Widget Configuration +--- + +You can add a search bar to your top widget area that can search using Google, Duckduckgo, Bing, Baidu, Brave or any other custom provider that supports the basic `?q=` search query param. + +```yaml +- search: + provider: google # google, duckduckgo, bing, baidu, brave or custom + focus: true # Optional, will set focus to the search bar on page load + target: _blank # One of _self, _blank, _parent or _top +``` + +or for a custom search: + +```yaml +- search: + provider: custom + url: https://lougle.com/?q= + target: _blank +``` + +multiple providers is also supported via a dropdown (excluding custom): + +```yaml +- search: + provider: [brave, google, duckduckgo] +``` + +_Added in v0.1.6, updated in 0.6.0_ diff --git a/docs/widgets/info/unifi_controller.md b/docs/widgets/info/unifi_controller.md new file mode 100644 index 00000000..29188270 --- /dev/null +++ b/docs/widgets/info/unifi_controller.md @@ -0,0 +1,24 @@ +--- +title: Unifi Controller +description: Unifi Controller Information Widget Configuration +--- + +_(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. + +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._ + +unifi_infowidget + +```yaml +- unifi_console: + url: https://unifi.host.or.ip:port + username: user + password: pass + site: Site Name # optional +``` + +_Added in v0.4.18, updated in 0.6.7_ diff --git a/docs/widgets/info/weather.md b/docs/widgets/info/weather.md new file mode 100644 index 00000000..338ca256 --- /dev/null +++ b/docs/widgets/info/weather.md @@ -0,0 +1,20 @@ +--- +title: Weather API +description: Weather API Information Widget Configuration +--- + +**Note: this widget is considered 'deprecated' since there is no longer a free Weather API tier for new members. See the openmeteo or openweathermap widgets for alternatives.** + +The free tier is all thats required, you will need to [register](https://www.weatherapi.com/signup.aspx) and grab your API key. + +```yaml +- weatherapi: + label: Kyiv # optional + latitude: 50.449684 + longitude: 30.525026 + units: metric # or imperial + apiKey: yourweatherapikey + cache: 5 # Time in minutes to cache API responses, to stay within limits +``` + +You can optionally not pass a `latitude` and `longitude` and the widget will use your current location (requires a secure context, eg. HTTPS). diff --git a/docs/widgets/services/adguard-home.md b/docs/widgets/services/adguard-home.md new file mode 100644 index 00000000..57fad6a6 --- /dev/null +++ b/docs/widgets/services/adguard-home.md @@ -0,0 +1,16 @@ +--- +title: Adguard Home +description: Adguard Home Widget Configuration +--- + +The username and password are the same as used to login to the web interface. + +Allowed fields: `["queries", "blocked", "filtered", "latency"]`. + +```yaml +widget: + type: adguard + url: http://adguard.host.or.ip + username: admin + password: password +``` diff --git a/docs/widgets/services/atsumeru.md b/docs/widgets/services/atsumeru.md new file mode 100644 index 00000000..06126f2e --- /dev/null +++ b/docs/widgets/services/atsumeru.md @@ -0,0 +1,16 @@ +--- +title: Atsumeru +description: Atsumeru Widget Configuration +--- + +Define same username and password that is used for login from web or supported apps + +Allowed fields: `["series", "archives", "chapters", "categories"]`. + +```yaml +widget: + type: atsumeru + url: http://atsumeru.host.or.ip:port + username: username + password: password +``` diff --git a/docs/widgets/services/audiobookshelf.md b/docs/widgets/services/audiobookshelf.md new file mode 100644 index 00000000..73e2b744 --- /dev/null +++ b/docs/widgets/services/audiobookshelf.md @@ -0,0 +1,15 @@ +--- +title: Audiobookshelf +description: Audiobookshelf Widget Configuration +--- + +You can find your API token by logging into the Audiobookshelf web app as an admin, go to the config → users page, and click on your account. + +Allowed fields: `["podcasts", "podcastsDuration", "books", "booksDuration"]` + +```yaml +widget: + type: audiobookshelf + url: http://audiobookshelf.host.or.ip:port + key: audiobookshelflapikey +``` diff --git a/docs/widgets/services/authentik.md b/docs/widgets/services/authentik.md new file mode 100644 index 00000000..306107e0 --- /dev/null +++ b/docs/widgets/services/authentik.md @@ -0,0 +1,24 @@ +--- +title: Authentik +description: Authentik Widget Configuration +--- + +This widget reads the number of active users in the system, as well as logins for the last 24 hours. + +You will need to generate an API token for an existing user. To do so follow these steps: + +1. Navigate to the Authentik Admin Portal +2. Expand Directory, the click Tokens & App passwords +3. Click the Create button +4. Fill out the dialog making sure to set Intent to API Token +5. Click the Create button on the dialog +6. Click the copy button on the far right of the newly created API Token + +Allowed fields: `["users", "loginsLast24H", "failedLoginsLast24H"]`. + +```yaml +widget: + type: authentik + url: http://authentik.host.or.ip:22070 + key: api_token +``` diff --git a/docs/widgets/services/autobrr.md b/docs/widgets/services/autobrr.md new file mode 100644 index 00000000..ba034d2a --- /dev/null +++ b/docs/widgets/services/autobrr.md @@ -0,0 +1,15 @@ +--- +title: Autobrr +description: Autobrr Widget Configuration +--- + +Find your API key under `Settings > API Keys`. + +Allowed fields: `["approvedPushes", "rejectedPushes", "filters", "indexers"]`. + +```yaml +widget: + type: autobrr + url: http://autobrr.host.or.ip + key: apikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/widgets/services/azuredevops.md b/docs/widgets/services/azuredevops.md new file mode 100644 index 00000000..a9142731 --- /dev/null +++ b/docs/widgets/services/azuredevops.md @@ -0,0 +1,26 @@ +--- +title: Azure DevOps +description: Azure DevOps Widget Configuration +--- + +This widget has 2 functions: + +1. Pipelines: checks if the relevant pipeline is running or not, and if not, reports the last status.\ + Allowed fields: `["result", "status"]`. + +2. Pull Requests: returns the amount of open PRs, the amount of the PRs you have open, and how many PRs that you open are marked as 'Approved' by atleast 1 person and not yet completed.\ + Allowed fields: `["totalPrs", "myPrs", "approved"]`. + +You will need to generate a personal access token for an existing user, see the [azure documentation](https://learn.microsoft.com/en-us/azure/devops/organizations/accounts/use-personal-access-tokens-to-authenticate?view=azure-devops&tabs=Windows#create-a-pat) + +```yaml +widget: + type: azuredevops + organization: myOrganization + project: myProject + definitionId: pipelineDefinitionId # required for pipelines + branchName: branchName # optional for pipelines, leave empty for all + userEmail: email # required for pull requests + repositoryId: prRepositoryId # required for pull requests + key: personalaccesstoken +``` diff --git a/docs/widgets/services/bazarr.md b/docs/widgets/services/bazarr.md new file mode 100644 index 00000000..3a48821e --- /dev/null +++ b/docs/widgets/services/bazarr.md @@ -0,0 +1,15 @@ +--- +title: Bazarr +description: Bazarr Widget Configuration +--- + +Find your API key under `Settings > General`. + +Allowed fields: `["missingEpisodes", "missingMovies"]`. + +```yaml +widget: + type: bazarr + url: http://bazarr.host.or.ip + key: apikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/widgets/services/caddy.md b/docs/widgets/services/caddy.md new file mode 100644 index 00000000..52c1d462 --- /dev/null +++ b/docs/widgets/services/caddy.md @@ -0,0 +1,12 @@ +--- +title: Caddy +description: Caddy Widget Configuration +--- + +Allowed fields: `["upstreams", "requests", "requests_failed"]`. + +```yaml +widget: + type: caddy + url: http://caddy.host.or.ip:adminport # default admin port is 2019 +``` diff --git a/docs/widgets/services/calendar.md b/docs/widgets/services/calendar.md new file mode 100644 index 00000000..794c0ed2 --- /dev/null +++ b/docs/widgets/services/calendar.md @@ -0,0 +1,25 @@ +--- +title: Calendar +description: Calendar widget +--- + +calendar + +This widget shows monthly calendar, with optional integrations to show events from supported widgets. + +```yaml +widget: + type: calendar + firstDayInWeek: sunday # optional - defaults to monday + integrations: # optional + - type: sonarr # active widget type that is currently enabled on homepage - possible values: radarr, sonarr, lidarr, readarr + service_group: Media # group name where widget exists + service_name: Sonarr # service name for that widget + color: teal # optional - defaults to pre-defined color for the service (teal for sonarr) + params: # optional - additional params for the service + unmonitored: true # optional - defaults to false, used with *arr stack +``` + +Currently integrated widgets are [sonarr](sonarr.md), [radarr](radarr.md), [lidarr](lidarr.md) and [readarr](readarr.md). + +Supported colors can be found on [color palette](../../configs/settings.md#color-palette). diff --git a/docs/widgets/services/calibre-web.md b/docs/widgets/services/calibre-web.md new file mode 100644 index 00000000..f9090f8d --- /dev/null +++ b/docs/widgets/services/calibre-web.md @@ -0,0 +1,16 @@ +--- +title: Calibre-web +description: Calibre-web Widget Configuration +--- + +**Note: this widget requires a feature of calibre-web that has not yet been distributed in versioned release. The code is contained in ["nightly" lsio builds after 25/8/23](https://hub.docker.com/layers/linuxserver/calibre-web/nightly/images/sha256-b27cbe5d17503de38135d925e226eb3e5ba04c558dbc865dc85d77824d35d7e2) or running the calibre-web source code including commit [0499e57](https://github.com/janeczku/calibre-web/commit/0499e578cdd45db656da34cd2d7152c8d88ceb23).** + +Allowed fields: `["books", "authors", "categories", "series"]`. + +```yaml +widget: + type: calibreweb + url: http://your.calibreweb.host:port + username: username + password: password +``` diff --git a/docs/widgets/services/changedetectionio.md b/docs/widgets/services/changedetectionio.md new file mode 100644 index 00000000..674db9a8 --- /dev/null +++ b/docs/widgets/services/changedetectionio.md @@ -0,0 +1,13 @@ +--- +title: Changedetection.io +description: Changedetection.io Widget Configuration +--- + +Find your API key under `Settings > API`. + +```yaml +widget: + type: changedetectionio + url: http://changedetection.host.or.ip:port + key: apikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/widgets/services/channelsdvrserver.md b/docs/widgets/services/channelsdvrserver.md new file mode 100644 index 00000000..390df42c --- /dev/null +++ b/docs/widgets/services/channelsdvrserver.md @@ -0,0 +1,10 @@ +--- +title: Channels DVR Server +description: Channels DVR Server Widget Configuration +--- + +```yaml +widget: + type: channelsdvrserver + url: http://192.168.1.55:8089 +``` diff --git a/docs/widgets/services/cloudflared.md b/docs/widgets/services/cloudflared.md new file mode 100644 index 00000000..3212a278 --- /dev/null +++ b/docs/widgets/services/cloudflared.md @@ -0,0 +1,16 @@ +--- +title: Cloudflare Tunnels +description: Cloudflare Tunnels Widget Configuration +--- + +_As of v0.6.10 this widget no longer accepts a Cloudflare global API key (or account email) due to security concerns. Instead, you should setup an API token which only requires the permissions `Account.Cloudflare Tunnel:Read`._ + +Allowed fields: `["status", "origin_ip"]`. + +```yaml +widget: + type: cloudflared + accountid: accountid # from zero trust dashboard url e.g. https://one.dash.cloudflare.com//home/quick-start + tunnelid: tunnelid # found in tunnels dashboard under the tunnel name + key: cloudflareapitoken # api token with `Account.Cloudflare Tunnel:Read` https://dash.cloudflare.com/profile/api-tokens +``` diff --git a/docs/widgets/services/coin-market-cap.md b/docs/widgets/services/coin-market-cap.md new file mode 100644 index 00000000..a62c63f3 --- /dev/null +++ b/docs/widgets/services/coin-market-cap.md @@ -0,0 +1,25 @@ +--- +title: Coin Market Cap +description: Coin Market Cap Widget Configuration +--- + +Get your API key from your [CoinMarketCap Pro Dashboard](https://pro.coinmarketcap.com/account). + +Allowed fields: no configurable fields for this widget. + +```yaml +widget: + type: coinmarketcap + currency: GBP # Optional + symbols: [BTC, LTC, ETH] + key: apikeyapikeyapikeyapikeyapikey +``` + +You can also specify slugs instead of symbols (since symbols aren't garaunteed to be unique). If you supply both, slugs will be used. For example: + +```yaml +widget: + type: coinmarketcap + slugs: [chia-network, uniswap] + key: apikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/widgets/services/customapi.md b/docs/widgets/services/customapi.md new file mode 100644 index 00000000..79ffc6fe --- /dev/null +++ b/docs/widgets/services/customapi.md @@ -0,0 +1,109 @@ +--- +title: Custom API +description: Custom Widget Configuration from the API +--- + +This widget can show information from custom self-hosted or third party API. + +Fields need to be defined in the `mappings` section YAML object to correlate with the value in the APIs JSON object. Final field definition needs to be the key with the desired value information. + +```yaml +widget: + type: customapi + url: http://custom.api.host.or.ip:port/path/to/exact/api/endpoint + refreshInterval: 10000 # optional - in milliseconds, defaults to 10s + username: username # auth - optional + password: password # auth - optional + method: GET # optional, e.g. POST + headers: # optional, must be object, see below + mappings: + - field: key # needs to be YAML string or object + label: Field 1 + format: text # optional - defaults to text + - field: # needs to be YAML string or object + path: + to: key2 + format: number # optional - defaults to text + label: Field 2 + - field: # needs to be YAML string or object + path: + to: + another: key3 + label: Field 3 + format: percent # optional - defaults to text +``` + +Supported formats for the values are `text`, `number`, `float`, `percent`, `bytes` and `bitrate`. + +## Example + +For the following JSON object from the API: + +```json +{ + "id": 1, + "name": "Rick Sanchez", + "status": "Alive", + "species": "Human", + "gender": "Male", + "origin": { + "name": "Earth (C-137)" + }, + "locations": [ + { + "name": "Earth (C-137)" + }, + { + "name": "Citadel of Ricks" + } + ] +} +``` + +Define the `mappings` section as an aray, for example: + +```yaml +mappings: + - field: name # Rick Sanchez + label: Name + - field: status # Alive + label: Status + - field: + origin: name # Earth (C-137) + label: Origin + - field: + locations: + 1: name # Citadel of Ricks + label: Location +``` + +## Data Transformation + +You can manipulate data with the following tools `remap`, `scale` and `suffix`, for example: + +```yaml +- field: key4 + label: Field 4 + format: text + remap: + - value: 0 + to: None + - value: 1 + to: Connected + - any: true # will map all other values + to: Unknown +- field: key5 + label: Power + format: float + scale: 0.001 # can be number or string e.g. 1/16 + suffix: kW +``` + +## Custom Headers + +Pass custom headers using the `headers` option, for example: + +```yaml +headers: + X-API-Token: token +``` diff --git a/docs/widgets/services/deluge.md b/docs/widgets/services/deluge.md new file mode 100644 index 00000000..2ce7023f --- /dev/null +++ b/docs/widgets/services/deluge.md @@ -0,0 +1,15 @@ +--- +title: Deluge +description: Deluge Widget Configuration +--- + +Uses the same password used to login to the webui, see [the deluge FAQ](https://dev.deluge-torrent.org/wiki/Faq#Whatisthedefaultpassword). + +Allowed fields: `["leech", "download", "seed", "upload"]`. + +```yaml +widget: + type: deluge + url: http://deluge.host.or.ip + password: password # webui password +``` diff --git a/docs/widgets/services/diskstation.md b/docs/widgets/services/diskstation.md new file mode 100644 index 00000000..57163063 --- /dev/null +++ b/docs/widgets/services/diskstation.md @@ -0,0 +1,36 @@ +--- +title: Synology Disk Station +description: Synology Disk Station Widget Configuration +--- + +Note: the widget is not compatible with 2FA. + +An optional 'volume' parameter can be supplied to specify which volume's free space to display when more than one volume exists. The value of the parameter must be in form of `volume_N`, e.g. to display free space for volume2, `volume_2` should be set as 'volume' value. If omitted, first returned volume's free space will be shown (not guaranteed to be volume1). + +Allowed fields: `["uptime", "volumeAvailable", "resources.cpu", "resources.mem"]`. + +To access these system metrics you need to connect to the DiskStation with an account that is a member of the default `Administrators` group. That is because these metrics are requested from the API's `SYNO.Core.System` part that is only available to admin users. In order to keep the security impact as small as possible we can set the account in DSM up to limit the user's permissions inside the Synology system. In DSM 7.x, for instance, follow these steps: + +1. Create a new user, i.e. `remote_stats`. +2. Set up a strong password for the new user +3. Under the `User Groups` tab of the user config dialogue check the box for `Administrators`. +4. On the `Permissions` tab check the top box for `No Access`, effectively prohibiting the user from accessing anything in the shared folders. +5. Under `Applications` check the box next to `Deny` in the header to explicitly prohibit login to all applications. +6. Now _only_ allow login to the `Download Station` application, either by + - unchecking `Deny` in the respective row, or (if inheriting permission doesn't work because of other group settings) + - checking `Allow` for this app, or + - checking `By IP` for this app to limit the source of login attempts to one or more IP addresses/subnets. +7. When the `Preview` column shows `Allow` in the `Download Station` row, click `Save`. + +Now configure the widget with the correct login information and test it. + +If you encounter issues during testing, make sure to uncheck the option for automatic blocking due to invalid logins under `Control Panel > Security > Protection`. If desired, this setting can be reactivated once the login is established working. + +```yaml +widget: + type: diskstation + url: http://diskstation.host.or.ip:port + username: username + password: password + volume: volume_N # optional +``` diff --git a/docs/widgets/services/downloadstation.md b/docs/widgets/services/downloadstation.md new file mode 100644 index 00000000..f97dd7fb --- /dev/null +++ b/docs/widgets/services/downloadstation.md @@ -0,0 +1,16 @@ +--- +title: Synology Download Station +description: Synology Download Station Widget Configuration +--- + +Note: the widget is not compatible with 2FA. + +Allowed fields: `["leech", "download", "seed", "upload"]`. + +```yaml +widget: + type: downloadstation + url: http://downloadstation.host.or.ip:port + username: username + password: password +``` diff --git a/docs/widgets/services/emby.md b/docs/widgets/services/emby.md new file mode 100644 index 00000000..52b9e887 --- /dev/null +++ b/docs/widgets/services/emby.md @@ -0,0 +1,17 @@ +--- +title: Emby +description: Emby Widget Configuration +--- + +You can create an API key from inside Emby at `Settings > Advanced > Api Keys`. + +As of v0.6.11 the widget supports fields `["movies", "series", "episodes", "songs"]`. These blocks are disabled by default but can be enabled with the `enableBlocks` option, and the "Now Playing" feature (enabled by default) can be disabled with the `enableNowPlaying` option. + +```yaml +widget: + type: emby + url: http://emby.host.or.ip + key: apikeyapikeyapikeyapikeyapikey + enableBlocks: true # optional, defaults to false + enableNowPlaying: true # optional, defaults to true +``` diff --git a/docs/widgets/services/evcc.md b/docs/widgets/services/evcc.md new file mode 100644 index 00000000..5fbbdf91 --- /dev/null +++ b/docs/widgets/services/evcc.md @@ -0,0 +1,12 @@ +--- +title: EVCC +description: EVCC Widget Configuration +--- + +Allowed fields: `["pv_power", "grid_power", "home_power", "charge_power]`. + +```yaml +widget: + type: evcc + url: http://evcc.host.or.ip:port +``` diff --git a/docs/widgets/services/fileflows.md b/docs/widgets/services/fileflows.md new file mode 100644 index 00000000..46762f33 --- /dev/null +++ b/docs/widgets/services/fileflows.md @@ -0,0 +1,12 @@ +--- +title: Fileflows +description: Fileflows Widget Configuration +--- + +Allowed fields: `["queue", "processing", "processed", "time"]`. + +```yaml +widget: + type: fileflows + url: http://your.fileflows.host:port +``` diff --git a/docs/widgets/services/flood.md b/docs/widgets/services/flood.md new file mode 100644 index 00000000..f9b8285b --- /dev/null +++ b/docs/widgets/services/flood.md @@ -0,0 +1,14 @@ +--- +title: Flood +description: Flood Widget Configuration +--- + +Allowed fields: `["leech", "download", "seed", "upload"]`. + +```yaml +widget: + type: flood + url: http://flood.host.or.ip + username: username # if set + password: password # if set +``` diff --git a/docs/widgets/services/freshrss.md b/docs/widgets/services/freshrss.md new file mode 100644 index 00000000..a5e2c7d9 --- /dev/null +++ b/docs/widgets/services/freshrss.md @@ -0,0 +1,16 @@ +--- +title: FreshRSS +description: FreshRSS Widget Configuration +--- + +Please refer to [Enable the API in FreshRSS](https://freshrss.github.io/FreshRSS/en/users/06_Mobile_access.html#enable-the-api-in-freshrss) for the "API password" to be entered in the password field. + +Allowed fields: `["subscriptions", "unread"]`. + +```yaml +widget: + type: freshrss + url: http://freshrss.host.or.ip:port + username: username + password: password +``` diff --git a/docs/widgets/services/gamedig.md b/docs/widgets/services/gamedig.md new file mode 100644 index 00000000..2157c886 --- /dev/null +++ b/docs/widgets/services/gamedig.md @@ -0,0 +1,15 @@ +--- +title: GameDig +description: GameDig Widget Configuration +--- + +Uses the [GameDig](https://www.npmjs.com/package/gamedig) library to get game server information for any supported server type. + +Allowed fields (limited to a max of 4): `["status", "name", "map", "currentPlayers", "players", "maxPlayers", "bots", "ping"]`. + +```yaml +widget: + type: gamedig + serverType: csgo # see https://github.com/gamedig/node-gamedig#games-list + url: udp://server.host.or.ip:port +``` diff --git a/docs/widgets/services/ghostfolio.md b/docs/widgets/services/ghostfolio.md new file mode 100644 index 00000000..ca91a610 --- /dev/null +++ b/docs/widgets/services/ghostfolio.md @@ -0,0 +1,23 @@ +--- +title: Ghostfolio +description: Ghostfolio Widget Configuration +--- + +Authentication requires manually obtaining a Bearer token which can be obtained by make a POST request to the API e.g. + +``` +curl -X POST http://localhost:3333/api/v1/auth/anonymous -H 'Content-Type: application/json' -d '{ "accessToken": "SECURITY_TOKEN_OF_ACCOUNT" }' +``` + +See the [official docs](https://github.com/ghostfolio/ghostfolio#authorization-bearer-token). + +_Note that the Bearer token is valid for 6 months, after which a new one must be generated._ + +Allowed fields: `["gross_percent_today", "gross_percent_1y", "gross_percent_max"]` + +```yaml +widget: + type: ghostfolio + url: http://ghostfoliohost:port + key: ghostfoliobearertoken +``` diff --git a/docs/widgets/services/glances.md b/docs/widgets/services/glances.md new file mode 100644 index 00000000..9a7ff197 --- /dev/null +++ b/docs/widgets/services/glances.md @@ -0,0 +1,73 @@ +--- +title: Glances +description: Glances Widget Configuration +--- + +glances + +_(Find the Glances information widget [here](../info/glances.md))_ + +The Glances widget allows you to monitor the resources (cpu, memory, diskio, sensors & processes) of host or another machine. You can have multiple instances by adding another service block. + +```yaml +widget: + type: glances + url: http://glances.host.or.ip:port + username: user # optional if auth enabled in Glances + password: pass # optional if auth enabled in Glances + metric: cpu +``` + +_Please note, this widget does not need an `href`, `icon` or `description` on its parent service. To achive the same effect as the examples above, see as an example:_ + +```yaml +- CPU Usage: + widget: + type: glances + url: http://glances.host.or.ip:port + metric: cpu +- Network Usage: + widget: + type: glances + url: http://glances.host.or.ip:port + metric: network:enp0s25 +``` + +## Metrics + +The metric field in the configuration determines the type of system monitoring data to be displayed. Here are the supported metrics: + +`info`: System information. Shows the system's hostname, OS, kernel version, CPU type, CPU usage, RAM usage and SWAP usage. + +`cpu`: CPU usage. Shows how much of the system's computational resources are currently being used. + +`memory`: Memory usage. Shows how much of the system's RAM is currently being used. + +`process`: Top 5 processes based on CPU usage. Gives an overview of which processes are consuming the most resources. + +`network:`: Network data usage for the specified interface. Replace `` with the name of your network interface, e.g., `network:enp0s25`, as specificed in glances. + +`sensor:`: Temperature of the specified sensor, typically used to monitor CPU temperature. Replace `` with the name of your sensor, e.g., `sensor:Package id 0` as specificed in glances. + +`disk:`: Disk I/O data for the specified disk. Replace `` with the id of your disk, e.g., `disk:sdb`, as specificed in glances. + +`gpu:`: GPU usage for the specified GPU. Replace `` with the id of your GPU, e.g., `gpu:0`, as specificed in glances. + +`fs:`: Disk usage for the specified mount point. Replace `` with the path of your disk, e.g., `/mnt/storage`, as specificed in glances. + +## Views + +All widgets offer an alternative to the full or "graph" view, which is the compact, or "graphless" view. + +Screenshot 2023-09-06 at 1 51 48 PM + +To switch to the alternative "graphless" view, simply passs `chart: false` as an option to the widget, like so: + +```yaml +- Network Usage: + widget: + type: glances + url: http://glances.host.or.ip:port + metric: network:enp0s25 + chart: false +``` diff --git a/docs/widgets/services/gluetun.md b/docs/widgets/services/gluetun.md new file mode 100644 index 00000000..08b5c70b --- /dev/null +++ b/docs/widgets/services/gluetun.md @@ -0,0 +1,14 @@ +--- +title: Gluetun +description: Gluetun Widget Configuration +--- + +Requires [HTTP control server options](https://github.com/qdm12/gluetun-wiki/blob/main/setup/advanced/control-server.md) to be enabled. + +Allowed fields: `["public_ip", "region", "country"]`. + +```yaml +widget: + type: gluetun + url: http://gluetun.host.or.ip +``` diff --git a/docs/widgets/services/gotify.md b/docs/widgets/services/gotify.md new file mode 100644 index 00000000..1eb16c03 --- /dev/null +++ b/docs/widgets/services/gotify.md @@ -0,0 +1,15 @@ +--- +title: Gotify +description: Gotify Widget Configuration +--- + +Get a Gotify client token from an existing client or create a new one on your Gotify admin page. + +Allowed fields: `["apps", "clients", "messages"]`. + +```yaml +widget: + type: gotify + url: http://gotify.host.or.ip + key: clientoken +``` diff --git a/docs/widgets/services/grafana.md b/docs/widgets/services/grafana.md new file mode 100644 index 00000000..5d3aab9e --- /dev/null +++ b/docs/widgets/services/grafana.md @@ -0,0 +1,14 @@ +--- +title: Grafana +description: Grafana Widget Configuration +--- + +Allowed fields: `["dashboards", "datasources", "totalalerts", "alertstriggered"]`. + +```yaml +widget: + type: grafana + url: http://grafana.host.or.ip:port + username: username + password: password +``` diff --git a/docs/widgets/services/hdhomerun.md b/docs/widgets/services/hdhomerun.md new file mode 100644 index 00000000..850deea5 --- /dev/null +++ b/docs/widgets/services/hdhomerun.md @@ -0,0 +1,12 @@ +--- +title: HDHomerun +description: HDHomerun Widget Configuration +--- + +Allowed fields: `["channels", "hd"]`. + +```yaml +widget: + type: hdhomerun + url: http://hdhomerun.host.or.ip +``` diff --git a/docs/widgets/services/healthchecks.md b/docs/widgets/services/healthchecks.md new file mode 100644 index 00000000..c8effa92 --- /dev/null +++ b/docs/widgets/services/healthchecks.md @@ -0,0 +1,20 @@ +--- +title: Health checks +description: Health checks Widget Configuration +--- + +To use the Health Checks widget, you first need to generate an API key. To do this, follow these steps: + +1. Go to Settings in your check dashboard. +2. Click on API key (read-only) and then click _Create_. +3. Copy the API key that is generated for you. + +Allowed fields: `["status", "last_ping"]`. + +```yaml +widget: + type: healthchecks + url: http://healthchecks.host.or.ip:port + key: + uuid: +``` diff --git a/docs/widgets/services/homeassistant.md b/docs/widgets/services/homeassistant.md new file mode 100644 index 00000000..f792511c --- /dev/null +++ b/docs/widgets/services/homeassistant.md @@ -0,0 +1,36 @@ +--- +title: Home Assistant +description: Home Assistant Widget Configuration +--- + +You will need to generate a long-lived access token for an existing Home Assistant user in its profile. + +Allowed fields: `["people_home", "lights_on", "switches_on"]`. + +--- + +Up to a maximum of four custom states and/or templates can be queried via the `custom` property like in the example below. +The `custom` property will have no effect as long as the `fields` property is defined. + +- `state` will query the state of the specified `entity_id` + - state labels and values can be user defined and may reference entity attributes in curly brackets + - if no state label is defined it will default to `"{attributes.friendly_name}"` + - if no state value is defined it will default to `"{state} {attributes.unit_of_measurement}"` +- `template` will query the specified template, see (Home Assistant Templating)[https://www.home-assistant.io/docs/configuration/templating] + - if no template label is defined it will be empty + +```yaml +widget: + type: homeassistant + url: http://homeassistant.host.or.ip:port + key: access_token + custom: + - state: sensor.total_power + - state: sensor.total_energy_today + label: energy today + - template: "{{ states.switch|selectattr('state','equalto','on')|list|length }}" + label: switches on + - state: weather.forecast_home + label: wind speed + value: "{attributes.wind_speed} {attributes.wind_speed_unit}" +``` diff --git a/docs/widgets/services/homebridge.md b/docs/widgets/services/homebridge.md new file mode 100644 index 00000000..bd6acaf8 --- /dev/null +++ b/docs/widgets/services/homebridge.md @@ -0,0 +1,16 @@ +--- +title: Homebridge +description: Homebridge +--- + +The Homebridge API is actually provided by the Config UI X plugin that has been included with Homebridge for a while, still it is required to be installed for this widget to work. + +Allowed fields: `["updates", "child_bridges"]`. + +```yaml +widget: + type: homebridge + url: http://homebridge.host.or.ip:port + username: username + password: password +``` diff --git a/docs/widgets/services/immich.md b/docs/widgets/services/immich.md new file mode 100644 index 00000000..007d3303 --- /dev/null +++ b/docs/widgets/services/immich.md @@ -0,0 +1,15 @@ +--- +title: Immich +description: Immich Widget Configuration +--- + +Allowed fields: `["users" ,"photos", "videos", "storage"]`. + +Note that API key must be from admin user. + +```yaml +widget: + type: immich + url: http://immich.host.or.ip + key: adminapikeyadminapikeyadminapikey +``` diff --git a/docs/widgets/services/index.md b/docs/widgets/services/index.md new file mode 100644 index 00000000..b8a41d76 --- /dev/null +++ b/docs/widgets/services/index.md @@ -0,0 +1,4 @@ +--- +title: Service Widgets +description: Homepage service widgets. +--- diff --git a/docs/widgets/services/jackett.md b/docs/widgets/services/jackett.md new file mode 100644 index 00000000..cdbb7638 --- /dev/null +++ b/docs/widgets/services/jackett.md @@ -0,0 +1,14 @@ +--- +title: Jackett +description: Jackett Widget Configuration +--- + +Jackett must not have any authentication for the widget to work. + +Allowed fields: `["configured", "errored"]`. + +```yaml +widget: + type: jackett + url: http://jackett.host.or.ip +``` diff --git a/docs/widgets/services/jdownloader.md b/docs/widgets/services/jdownloader.md new file mode 100644 index 00000000..bced032e --- /dev/null +++ b/docs/widgets/services/jdownloader.md @@ -0,0 +1,16 @@ +--- +title: JDownloader +description: NextPVR Widget Configuration +--- + +Basic widget to show number of items in download queue, along with the queue size and current download speed. + +Allowed fields: `["downloadCount", "downloadTotalBytes","downloadBytesRemaining", "downloadSpeed"]`. + +```yaml +widget: + type: jdownloader + username: JDownloader Username + password: JDownloader Password + client: Name of JDownloader Instance +``` diff --git a/docs/widgets/services/jellyfin.md b/docs/widgets/services/jellyfin.md new file mode 100644 index 00000000..14f97c63 --- /dev/null +++ b/docs/widgets/services/jellyfin.md @@ -0,0 +1,17 @@ +--- +title: Jellyfin +description: Jellyfin Widget Configuration +--- + +You can create an API key from inside Jellyfin at `Settings > Advanced > Api Keys`. + +As of v0.6.11 the widget supports fields `["movies", "series", "episodes", "songs"]`. These blocks are disabled by default but can be enabled with the `enableBlocks` option, and the "Now Playing" feature (enabled by default) can be disabled with the `enableNowPlaying` option. + +```yaml +widget: + type: jellyfin + url: http://jellyfin.host.or.ip + key: apikeyapikeyapikeyapikeyapikey + enableBlocks: true # optional, defaults to false + enableNowPlaying: true # optional, defaults to true +``` diff --git a/docs/widgets/services/jellyseerr.md b/docs/widgets/services/jellyseerr.md new file mode 100644 index 00000000..57267845 --- /dev/null +++ b/docs/widgets/services/jellyseerr.md @@ -0,0 +1,15 @@ +--- +title: Jellyseerr +description: Jellyseerr Widget Configuration +--- + +Find your API key under `Settings > General > API Key`. + +Allowed fields: `["pending", "approved", "available"]`. + +```yaml +widget: + type: jellyseerr + url: http://jellyseerr.host.or.ip + key: apikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/widgets/services/kavita.md b/docs/widgets/services/kavita.md new file mode 100644 index 00000000..4c2b90e4 --- /dev/null +++ b/docs/widgets/services/kavita.md @@ -0,0 +1,16 @@ +--- +title: Kavita +description: Kavita Widget Configuration +--- + +Uses the same username and password used to login from the web. + +Allowed fields: `["seriesCount", "totalFiles"]`. + +```yaml +widget: + type: kavita + url: http://kavita.host.or.ip:port + username: username + password: password +``` diff --git a/docs/widgets/services/komga.md b/docs/widgets/services/komga.md new file mode 100644 index 00000000..0f972d71 --- /dev/null +++ b/docs/widgets/services/komga.md @@ -0,0 +1,16 @@ +--- +title: Komga +description: Komga Widget Configuration +--- + +Uses the same username and password used to login from the web. + +Allowed fields: `["libraries", "series", "books"]`. + +```yaml +widget: + type: komga + url: http://komga.host.or.ip:port + username: username + password: password +``` diff --git a/docs/widgets/services/kopia.md b/docs/widgets/services/kopia.md new file mode 100644 index 00000000..304e640a --- /dev/null +++ b/docs/widgets/services/kopia.md @@ -0,0 +1,18 @@ +--- +title: Kopia +description: Kopia Widget Configuration +--- + +Allowed fields: `["status", "size", "lastrun", "nextrun"]`. + +You may optionally pass values for `snapshotHost` and / or `snapshotPath` to select a specific backup source for the widget. + +```yaml +widget: + type: kopia + url: http://kopia.host.or.ip:port + username: username + password: password + snapshotHost: hostname # optional + snapshotPath: path # optional +``` diff --git a/docs/widgets/services/lidarr.md b/docs/widgets/services/lidarr.md new file mode 100644 index 00000000..3c7fe48f --- /dev/null +++ b/docs/widgets/services/lidarr.md @@ -0,0 +1,15 @@ +--- +title: Lidarr +description: Lidarr Widget Configuration +--- + +Find your API key under `Settings > General`. + +Allowed fields: `["wanted", "queued", "artists"]`. + +```yaml +widget: + type: lidarr + url: http://lidarr.host.or.ip + key: apikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/widgets/services/mastodon.md b/docs/widgets/services/mastodon.md new file mode 100644 index 00000000..1195af4b --- /dev/null +++ b/docs/widgets/services/mastodon.md @@ -0,0 +1,14 @@ +--- +title: Mastodon +description: Mastodon Widget Configuration +--- + +Use the base URL of the Mastodon instance you'd like to pull stats for. Does not require authentication as the stats are part of the public API endpoints. + +Allowed fields: `["user_count", "status_count", "domain_count"]`. + +```yaml +widget: + type: mastodon + url: https://mastodon.host.name +``` diff --git a/docs/widgets/services/mealie.md b/docs/widgets/services/mealie.md new file mode 100644 index 00000000..3167e812 --- /dev/null +++ b/docs/widgets/services/mealie.md @@ -0,0 +1,15 @@ +--- +title: Mealie +description: Mealie Widget Configuration +--- + +Generate a user API key under `Profile > Manage Your API Tokens > Generate`. + +Allowed fields: `["recipes", "users", "categories", "tags"]`. + +```yaml +widget: + type: mealie + url: http://mealie-frontend.host.or.ip + key: mealieapitoken +``` diff --git a/docs/widgets/services/medusa.md b/docs/widgets/services/medusa.md new file mode 100644 index 00000000..27b0f1d2 --- /dev/null +++ b/docs/widgets/services/medusa.md @@ -0,0 +1,13 @@ +--- +title: Medusa +description: Medusa Widget Configuration +--- + +Allowed fields: `["wanted", "queued", "series"]`. + +```yaml +widget: + type: medusa + url: http://medusa.host.or.ip:port + key: medusaapikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/widgets/services/mikrotik.md b/docs/widgets/services/mikrotik.md new file mode 100644 index 00000000..18371217 --- /dev/null +++ b/docs/widgets/services/mikrotik.md @@ -0,0 +1,16 @@ +--- +title: Mikrotik +description: Mikrotik Widget Configuration +--- + +HTTPS may be required, [per the documentation](https://help.mikrotik.com/docs/display/ROS/REST+API#RESTAPI-Overview) + +Allowed fields: `["uptime", "cpuLoad", "memoryUsed", "numberOfLeases"]`. + +```yaml +widget: + type: mikrotik + url: https://mikrotik.host.or.ip + username: username + password: password +``` diff --git a/docs/widgets/services/minecraft.md b/docs/widgets/services/minecraft.md new file mode 100644 index 00000000..2d15f1f5 --- /dev/null +++ b/docs/widgets/services/minecraft.md @@ -0,0 +1,12 @@ +--- +title: Minecraft +description: Minecraft Widget Configuration +--- + +Allowed fields: `["players", "version", "status"]`. + +```yaml +widget: + type: minecraft + url: udp://minecraftserveripordomain:port +``` diff --git a/docs/widgets/services/miniflux.md b/docs/widgets/services/miniflux.md new file mode 100644 index 00000000..1327dd63 --- /dev/null +++ b/docs/widgets/services/miniflux.md @@ -0,0 +1,15 @@ +--- +title: Miniflux +description: Miniflux Widget Configuration +--- + +Api key is found under Settings > API keys + +Allowed fields: `["unread", "read"]`. + +```yaml +widget: + type: miniflux + url: http://miniflux.host.or.ip:port + key: minifluxapikey +``` diff --git a/docs/widgets/services/mjpeg.md b/docs/widgets/services/mjpeg.md new file mode 100644 index 00000000..2fefbec6 --- /dev/null +++ b/docs/widgets/services/mjpeg.md @@ -0,0 +1,14 @@ +--- +title: MJPEG +description: MJPEG Stream Widget Configuration +--- + +![camera-preview](https://github.com/gethomepage/homepage-docs/assets/82196/dc375ae3-0670-489f-8db6-83ff1f423d12) + +Pass the stream URL from a service like [µStreamer](https://github.com/pikvm/ustreamer) or [camera-streamer](https://github.com/ayufan/camera-streamer). + +```yaml +widget: + type: mjpeg + stream: http://mjpeg.host.or.ip/webcam/stream +``` diff --git a/docs/widgets/services/moonraker.md b/docs/widgets/services/moonraker.md new file mode 100644 index 00000000..83293df2 --- /dev/null +++ b/docs/widgets/services/moonraker.md @@ -0,0 +1,12 @@ +--- +title: Moonraker (Klipper) +description: Moonraker (Klipper) Widget Configuration +--- + +Allowed fields: `["printer_state", "print_status", "print_progress", "layers"]`. + +```yaml +widget: + type: moonraker + url: http://moonraker.host.or.ip:port +``` diff --git a/docs/widgets/services/mylar.md b/docs/widgets/services/mylar.md new file mode 100644 index 00000000..dc49d036 --- /dev/null +++ b/docs/widgets/services/mylar.md @@ -0,0 +1,15 @@ +--- +title: Mylar3 +description: Mylar3 Widget Configuration +--- + +API must be enabled in Mylar3 settings. + +Allowed fields: `["series", "issues", "wanted"]`. + +```yaml +widget: + type: mylar + url: http://mylar3.host.or.ip:port + key: yourmylar3apikey +``` diff --git a/docs/widgets/services/navidrome.md b/docs/widgets/services/navidrome.md new file mode 100644 index 00000000..87e45dca --- /dev/null +++ b/docs/widgets/services/navidrome.md @@ -0,0 +1,17 @@ +--- +title: Navidrome +description: Navidrome Widget Configuration +--- + +For detailed information about how to generate the token see http://www.subsonic.org/pages/api.jsp. + +Allowed fields: no configurable fields for this widget. + +```yaml +widget: + type: navidrome + url: http://navidrome.host.or.ip:port + user: username + token: token #md5(password + salt) + salt: randomsalt +``` diff --git a/docs/widgets/services/nextcloud.md b/docs/widgets/services/nextcloud.md new file mode 100644 index 00000000..1ef107b5 --- /dev/null +++ b/docs/widgets/services/nextcloud.md @@ -0,0 +1,25 @@ +--- +title: Nextcloud +description: Nextcloud Widget Configuration +--- + +Use username & password, or the `NC-Token` key. Information about the token can be found under **Settings** > **System**. If both are provided, NC-Token will be used. + +Allowed fields: `["cpuload", "memoryusage", "freespace", "activeusers", "numfiles", "numshares"]`. + +Note "cpuload" and "memoryusage" were deprecated in v0.6.18 and a maximum of 4 fields can be displayed. + +```yaml +widget: + type: nextcloud + url: https://nextcloud.host.or.ip:port + key: token +``` + +```yaml +widget: + type: nextcloud + url: https://nextcloud.host.or.ip:port + username: username + password: password +``` diff --git a/docs/widgets/services/nextdns.md b/docs/widgets/services/nextdns.md new file mode 100644 index 00000000..5ba73c37 --- /dev/null +++ b/docs/widgets/services/nextdns.md @@ -0,0 +1,13 @@ +--- +title: NextDNS +description: NextDNS Widget Configuration +--- + +Api key is found under Account > API, profile ID is found under Setup > Endpoints > ID + +```yaml +widget: + type: nextdns + profile: profileid + key: yourapikeyhere +``` diff --git a/docs/widgets/services/nginx-proxy-manager.md b/docs/widgets/services/nginx-proxy-manager.md new file mode 100644 index 00000000..eb77a3ab --- /dev/null +++ b/docs/widgets/services/nginx-proxy-manager.md @@ -0,0 +1,16 @@ +--- +title: Nginx Proxy Manager +description: Nginx Proxy Manager Widget Configuration +--- + +Login with the same admin username and password used to access the web UI. + +Allowed fields: `["enabled", "disabled", "total"]`. + +```yaml +widget: + type: npm + url: http://npm.host.or.ip + username: admin_username + password: admin_password +``` diff --git a/docs/widgets/services/nzbget.md b/docs/widgets/services/nzbget.md new file mode 100644 index 00000000..36903e9b --- /dev/null +++ b/docs/widgets/services/nzbget.md @@ -0,0 +1,16 @@ +--- +title: NZBget +description: NZBget Widget Configuration +--- + +This widget uses the same authentication method as your browser when logging in (HTTP Basic Auth), and is often referred to as the ControlUsername and ControlPassword inside of Nzbget documentation. + +Allowed fields: `["rate", "remaining", "downloaded"]`. + +```yaml +widget: + type: nzbget + url: http://nzbget.host.or.ip + username: controlusername + password: controlpassword +``` diff --git a/docs/widgets/services/octoprint.md b/docs/widgets/services/octoprint.md new file mode 100644 index 00000000..7dba46ac --- /dev/null +++ b/docs/widgets/services/octoprint.md @@ -0,0 +1,13 @@ +--- +title: OctoPrint +description: OctoPrintWidget Configuration +--- + +Allowed fields: `["printer_state", "temp_tool", "temp_bed", "job_completion"]`. + +```yaml +widget: + type: octoprint + url: http://octoprint.host.or.ip:port + key: youroctoprintapikey +``` diff --git a/docs/widgets/services/omada.md b/docs/widgets/services/omada.md new file mode 100644 index 00000000..90770410 --- /dev/null +++ b/docs/widgets/services/omada.md @@ -0,0 +1,17 @@ +--- +title: Omada +description: Omada Widget Configuration +--- + +The widget supports controller versions 3, 4 and 5. + +Allowed fields: `["connectedAp", "activeUser", "alerts", "connectedGateways", "connectedSwitches"]`. + +```yaml +widget: + type: omada + url: http://omada.host.or.ip:port + username: username + password: password + site: sitename +``` diff --git a/docs/widgets/services/ombi.md b/docs/widgets/services/ombi.md new file mode 100644 index 00000000..97c22ef1 --- /dev/null +++ b/docs/widgets/services/ombi.md @@ -0,0 +1,15 @@ +--- +title: Ombi +description: Ombi Widget Configuration +--- + +Find your API key under `Settings > Configuration > General`. + +Allowed fields: `["pending", "approved", "available"]`. + +```yaml +widget: + type: ombi + url: http://ombi.host.or.ip + key: apikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/widgets/services/opendtu.md b/docs/widgets/services/opendtu.md new file mode 100644 index 00000000..81a92468 --- /dev/null +++ b/docs/widgets/services/opendtu.md @@ -0,0 +1,12 @@ +--- +title: OpenDTU +description: OpenDTU Widget +--- + +Allowed fields: `["yieldDay", "relativePower", "absolutePower", "limit"]`. + +```yaml +widget: + type: opendtu + url: http://opendtu.host.or.ip +``` diff --git a/docs/widgets/services/openmediavault.md b/docs/widgets/services/openmediavault.md new file mode 100644 index 00000000..67fe7b89 --- /dev/null +++ b/docs/widgets/services/openmediavault.md @@ -0,0 +1,25 @@ +--- +title: OpenMediaVault +description: OpenMediaVault Widget Configuration +--- + +Provides useful information from your OpenMediaVault + +```yaml +widget: + type: openmediavault + url: http://omv.host.or.ip + username: admin + password: pass + method: services.getStatus # required +``` + +## Methods + +The method field determines the type of data to be displayed and is required. Supported methods: + +`services.getStatus`: Shows status of running services. Allowed fields: `["running", "stopped", "total"]` + +`smart.getListBg`: Shows S.M.A.R.T. status from disks. Allowed fields: `["passed", "failed"]` + +`downloader.getDownloadList`: Displays the number of tasks from the Downloader plugin currently being downloaded and total. Allowed fields: `["downloading", "total"]` diff --git a/docs/widgets/services/opnsense.md b/docs/widgets/services/opnsense.md new file mode 100644 index 00000000..d4ea4497 --- /dev/null +++ b/docs/widgets/services/opnsense.md @@ -0,0 +1,21 @@ +--- +title: OPNSense +description: OPNSense Widget Configuration +--- + +The API key & secret can be generated via the webui by creating a new user at _System/Access/Users_. Ensure "Generate a scrambled password to prevent local database logins for this user" is checked and then edit the effective privileges selecting **only**: + +- Diagnostics: System Activity +- Status: Traffic Graph + +Finally, create a new API key which will download an `apikey.txt` file with your key and secret in it. Use the values as the username and password fields, respectively, in your homepage config. + +Allowed fields: `["cpu", "memory", "wanUpload", "wanDownload"]`. + +```yaml +widget: + type: opnsense + url: http://opnsense.host.or.ip + username: key + password: secret +``` diff --git a/docs/widgets/services/overseerr.md b/docs/widgets/services/overseerr.md new file mode 100644 index 00000000..f4546ed5 --- /dev/null +++ b/docs/widgets/services/overseerr.md @@ -0,0 +1,15 @@ +--- +title: Overseerr +description: Overseerr Widget Configuration +--- + +Find your API key under `Settings > General`. + +Allowed fields: `["pending", "approved", "available", "processing"]`. + +```yaml +widget: + type: overseerr + url: http://overseerr.host.or.ip + key: apikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/widgets/services/paperlessngx.md b/docs/widgets/services/paperlessngx.md new file mode 100644 index 00000000..6205b060 --- /dev/null +++ b/docs/widgets/services/paperlessngx.md @@ -0,0 +1,23 @@ +--- +title: Paperless-ngx +description: Paperless-ngx Widget Configuration +--- + +Use username & password, or the token key. Information about the token can be found in the [Paperless-ngx API documentation](https://docs.paperless-ngx.com/api/#authorization). If both are provided, the token will be used. + +Allowed fields: `["total", "inbox"]`. + +```yaml +widget: + type: paperlessngx + url: http://paperlessngx.host.or.ip:port + username: username + password: password +``` + +```yaml +widget: + type: paperlessngx + url: http://paperlessngx.host.or.ip:port + key: token +``` diff --git a/docs/widgets/services/pfsense.md b/docs/widgets/services/pfsense.md new file mode 100644 index 00000000..d37ac737 --- /dev/null +++ b/docs/widgets/services/pfsense.md @@ -0,0 +1,25 @@ +--- +title: pfSense +description: pfSense Widget Configuration +--- + +This widget requires the installation of the [pfsense-api](https://github.com/jaredhendrickson13/pfsense-api) which is a 3rd party package for pfSense routers. + +Once pfSense API is installed, you can set the API to be read-only in System > API > Settings. + +Currently the only supported authentication mode is 'Local Database'. + +WAN interface to monitor can be defined by updating the `wan` param. + +Load is returned instead of cpu utilization. This is a limitation in the pfSense API due to the complexity of this calculation. This may become available in future versions. + +Allowed fields: `["load", "memory", "temp", "wanStatus", "wanIP", "disk"]` (maximum of 4) + +```yaml +widget: + type: pfsense + url: http://pfsense.host.or.ip:port + username: user + password: pass + wan: igb0 +``` diff --git a/docs/widgets/services/photoprism.md b/docs/widgets/services/photoprism.md new file mode 100644 index 00000000..55a75857 --- /dev/null +++ b/docs/widgets/services/photoprism.md @@ -0,0 +1,14 @@ +--- +title: PhotoPrism +description: PhotoPrism Widget Configuration +--- + +Allowed fields: `["albums", "photos", "videos", "people"]`. + +```yaml +widget: + type: photoprism + url: http://photoprism.host.or.ip:port + username: admin + password: password +``` diff --git a/docs/widgets/services/pialert.md b/docs/widgets/services/pialert.md new file mode 100644 index 00000000..e3e59797 --- /dev/null +++ b/docs/widgets/services/pialert.md @@ -0,0 +1,14 @@ +--- +title: PiAlert +description: PiAlert Widget Configuration +--- + +Widget for [PiAlert](https://github.com/jokob-sk/Pi.Alert). + +Allowed fields: `["total", "connected", "new_devices", "down_alerts"]`. + +```yaml +widget: + type: pialert + url: http://ip:port +``` diff --git a/docs/widgets/services/pihole.md b/docs/widgets/services/pihole.md new file mode 100644 index 00000000..a92b8fda --- /dev/null +++ b/docs/widgets/services/pihole.md @@ -0,0 +1,17 @@ +--- +title: PiHole +description: PiHole Widget Configuration +--- + +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"]`. + +```yaml +widget: + type: pihole + url: http://pi.hole.or.ip + key: yourpiholeapikey # optional +``` + +_Added in v0.1.0, udpated in v0.6.18_ diff --git a/docs/widgets/services/plex-tautulli.md b/docs/widgets/services/plex-tautulli.md new file mode 100644 index 00000000..6d0448fd --- /dev/null +++ b/docs/widgets/services/plex-tautulli.md @@ -0,0 +1,15 @@ +--- +title: Tautulli (Plex) +description: Tautulli Widget Configuration +--- + +Provides detailed information about currently active streams. You can find the API key from inside Tautulli at `Settings > Web Interface > API`. + +Allowed fields: no configurable fields for this widget. + +```yaml +widget: + type: tautulli + url: http://tautulli.host.or.ip + key: apikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/widgets/services/plex.md b/docs/widgets/services/plex.md new file mode 100644 index 00000000..c2f93611 --- /dev/null +++ b/docs/widgets/services/plex.md @@ -0,0 +1,15 @@ +--- +title: Plex +description: Plex Widget Configuration +--- + +The core Plex API is somewhat limited but basic info regarding library sizes and the number of active streams is supported. For more detailed info regarding active streams see the [Plex Tautulli widget](plex-tautulli.md). + +Allowed fields: `["streams", "albums", "movies", "tv"]`. + +```yaml +widget: + type: plex + url: http://plex.host.or.ip:32400 + key: mytokenhere # see https://www.plexopedia.com/plex-media-server/general/plex-token/ +``` diff --git a/docs/widgets/services/portainer.md b/docs/widgets/services/portainer.md new file mode 100644 index 00000000..33a6bea6 --- /dev/null +++ b/docs/widgets/services/portainer.md @@ -0,0 +1,16 @@ +--- +title: Portainer +description: Portainer Widget Configuration +--- + +You'll need to make sure you have the correct environment set for the integration to work properly. From the Environments section inside of Portainer, click the one you'd like to connect to and observe the ID at the end of the URL (should be), something like `#!/endpoints/1`, here `1` is the value to set as the `env` value. In order to generate an API key, please follow the steps outlined here https://docs.portainer.io/api/access. + +Allowed fields: `["running", "stopped", "total"]`. + +```yaml +widget: + type: portainer + url: https://portainer.host.or.ip:9443 + env: 1 + key: ptr_accesskeyaccesskeyaccesskeyaccesskey +``` diff --git a/docs/widgets/services/prometheus.md b/docs/widgets/services/prometheus.md new file mode 100644 index 00000000..4bbbd251 --- /dev/null +++ b/docs/widgets/services/prometheus.md @@ -0,0 +1,12 @@ +--- +title: Prometheus +description: Prometheus Widget Configuration +--- + +Allowed fields: `["targets_up", "targets_down", "targets_total"]` + +```yaml +widget: + type: prometheus + url: http://prometheushost:port +``` diff --git a/docs/widgets/services/prowlarr.md b/docs/widgets/services/prowlarr.md new file mode 100644 index 00000000..dc12ee72 --- /dev/null +++ b/docs/widgets/services/prowlarr.md @@ -0,0 +1,15 @@ +--- +title: Prowlarr +description: Prowlarr Widget Configuration +--- + +Find your API key under `Settings > General`. + +Allowed fields: `["numberOfGrabs", "numberOfQueries", "numberOfFailGrabs", "numberOfFailQueries"]`. + +```yaml +widget: + type: prowlarr + url: http://prowlarr.host.or.ip + key: apikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/widgets/services/proxmox.md b/docs/widgets/services/proxmox.md new file mode 100644 index 00000000..611a1c18 --- /dev/null +++ b/docs/widgets/services/proxmox.md @@ -0,0 +1,50 @@ +--- +title: Proxmox +description: Proxmox Widget Configuration +--- + +This widget shows the running and total counts of both QEMU VMs and LX Containers in the Proxmox cluster. It also shows the CPU and memory usage of the first node in the cluster. + +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 +2. Expand Permissions, click on Groups +3. Click the Create button +4. Name the group something informative, like api-ro-users +5. Click on the Permissions "folder" +6. Click Add -> Group Permission + - Path: / + - Group: group from bullet 4 above + - Role: PVEAuditor + - Propagate: Checked +7. Expand Permissions, click on Users +8. Click the Add button + - User name: something informative like `api` + - Realm: Linux PAM standard authentication + - Group: group from bullet 4 above +9. Expand Permissions, click on API Tokens +10. Click the Add button + - User: user from bullet 8 above + - Token ID: something informative like the application or purpose like `homepage` + - Privilege Separation: Checked +11. Go back to the "Permissions" menu +12. Click Add -> API Token Permission + - Path: / + - API Token: select the Token ID created in Step 10 + - Role: PVE Auditor + - Propagate: Checked + +Use `username@pam!Token ID` as the `username` (e.g `api@pam!homepage`) setting and `Secret` as the `password` setting. + +Allowed fields: `["vms", "lxc", "resources.cpu", "resources.mem"]`. + +You can set the optional `node` setting when you want to show metrics for a single node. By default it will show the average for the complete cluster. + +```yaml +widget: + type: proxmox + url: https://proxmox.host.or.ip:8006 + username: api_token_id + password: api_token_secret + node: pve-1 # optional +``` diff --git a/docs/widgets/services/proxmoxbackupserver.md b/docs/widgets/services/proxmoxbackupserver.md new file mode 100644 index 00000000..b62f9ede --- /dev/null +++ b/docs/widgets/services/proxmoxbackupserver.md @@ -0,0 +1,14 @@ +--- +title: Proxmox Backup Server +description: Proxmox Backup Server Widget Configuration +--- + +Allowed fields: `["datastore_usage", "failed_tasks_24h", "cpu_usage", "memory_usage"]`. + +```yaml +widget: + type: proxmoxbackupserver + url: https://proxmoxbackupserver.host:port + username: api_token_id + password: api_token_secret +``` diff --git a/docs/widgets/services/pterodactyl.md b/docs/widgets/services/pterodactyl.md new file mode 100644 index 00000000..e66b7cfa --- /dev/null +++ b/docs/widgets/services/pterodactyl.md @@ -0,0 +1,13 @@ +--- +title: Pterodactyl +description: Pterodactyl Widget Configuration +--- + +Allowed fields: `["nodes", "servers"]` + +```yaml +widget: + type: pterodactyl + url: http://pterodactylhost:port + key: pterodactylapikey +``` diff --git a/docs/widgets/services/pyload.md b/docs/widgets/services/pyload.md new file mode 100644 index 00000000..ff452694 --- /dev/null +++ b/docs/widgets/services/pyload.md @@ -0,0 +1,14 @@ +--- +title: Pyload +description: Pyload Widget Configuration +--- + +Allowed fields: `["speed", "active", "queue", "total"]`. + +```yaml +widget: + type: pyload + url: http://pyload.host.or.ip:port + username: username + password: password # only needed if set +``` diff --git a/docs/widgets/services/qbittorrent.md b/docs/widgets/services/qbittorrent.md new file mode 100644 index 00000000..8d507df2 --- /dev/null +++ b/docs/widgets/services/qbittorrent.md @@ -0,0 +1,16 @@ +--- +title: qBittorrent +description: qBittorrent Widget Configuration +--- + +Uses the same username and password used to login from the web. + +Allowed fields: `["leech", "download", "seed", "upload"]`. + +```yaml +widget: + type: qbittorrent + url: http://qbittorrent.host.or.ip + username: username + password: password +``` diff --git a/docs/widgets/services/qnap.md b/docs/widgets/services/qnap.md new file mode 100644 index 00000000..ac73e227 --- /dev/null +++ b/docs/widgets/services/qnap.md @@ -0,0 +1,22 @@ +--- +title: QNAP +description: QNAP Widget Configuration +--- + +Allowed fields: `["cpuUsage", "memUsage", "systemTempC", "poolUsage", "volumeUsage"]`. + +```yaml +widget: + type: qnap + url: http://qnap.host.or.ip:port + username: user + password: pass +``` + +If the QNAP device has multiple volumes, the _poolUsage_ will be a sum of all volumes. + +If only a single volume needs to be tracked, add the following to your configuration and the Widget will track this as _volumeUsage_: + +```yaml +volume: Volume Name From QNAP +``` diff --git a/docs/widgets/services/radarr.md b/docs/widgets/services/radarr.md new file mode 100644 index 00000000..d659020a --- /dev/null +++ b/docs/widgets/services/radarr.md @@ -0,0 +1,18 @@ +--- +title: Radarr +description: Radarr Widget Configuration +--- + +Find your API key under `Settings > General`. + +Allowed fields: `["wanted", "missing", "queued", "movies"]`. + +A detailed queue listing is disabled by default, but can be enabled with the `enableQueue` option. + +```yaml +widget: + type: radarr + url: http://radarr.host.or.ip + key: apikeyapikeyapikeyapikeyapikey + enableQueue: true # optional, defaults to false +``` diff --git a/docs/widgets/services/readarr.md b/docs/widgets/services/readarr.md new file mode 100644 index 00000000..0df61e2d --- /dev/null +++ b/docs/widgets/services/readarr.md @@ -0,0 +1,15 @@ +--- +title: Readarr +description: Readarr Widget Configuration +--- + +Find your API key under `Settings > General`. + +Allowed fields: `["wanted", "queued", "books"]`. + +```yaml +widget: + type: readarr + url: http://readarr.host.or.ip + key: apikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/widgets/services/rutorrent.md b/docs/widgets/services/rutorrent.md new file mode 100644 index 00000000..a073ad02 --- /dev/null +++ b/docs/widgets/services/rutorrent.md @@ -0,0 +1,16 @@ +--- +title: ruTorrent +description: ruTorrent Widget Configuration +--- + +This requires the `httprpc` plugin to be installed and enabled, and is part of the default ruTorrent plugins. If you have not explicitly removed or disable this plugin, it should be available. + +Allowed fields: `["active", "upload", "download"]`. + +```yaml +widget: + type: rutorrent + url: http://rutorrent.host.or.ip + username: username # optional, false if not used + password: password # optional, false if not used +``` diff --git a/docs/widgets/services/sabnzbd.md b/docs/widgets/services/sabnzbd.md new file mode 100644 index 00000000..e0efb685 --- /dev/null +++ b/docs/widgets/services/sabnzbd.md @@ -0,0 +1,15 @@ +--- +title: SABnzbd +description: SABnzbd Widget Configuration +--- + +Find your API key under `Config > General`. + +Allowed fields: `["rate", "queue", "timeleft"]`. + +```yaml +widget: + type: sabnzbd + url: http://sabnzbd.host.or.ip + key: apikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/widgets/services/scrutiny.md b/docs/widgets/services/scrutiny.md new file mode 100644 index 00000000..5f9e1f88 --- /dev/null +++ b/docs/widgets/services/scrutiny.md @@ -0,0 +1,12 @@ +--- +title: Scrutiny +description: Scrutiny Widget Configuration +--- + +Allowed fields: `["passed", "failed", "unknown"]`. + +```yaml +widget: + type: scrutiny + url: http://scrutiny.host.or.ip +``` diff --git a/docs/widgets/services/sonarr.md b/docs/widgets/services/sonarr.md new file mode 100644 index 00000000..f9b6ff8b --- /dev/null +++ b/docs/widgets/services/sonarr.md @@ -0,0 +1,18 @@ +--- +title: Sonarr +description: Sonarr Widget Configuration +--- + +Find your API key under `Settings > General`. + +Allowed fields: `["wanted", "queued", "series"]`. + +A detailed queue listing is disabled by default, but can be enabled with the `enableQueue` option. + +```yaml +widget: + type: sonarr + url: http://sonarr.host.or.ip + key: apikeyapikeyapikeyapikeyapikey + enableQueue: true # optional, defaults to false +``` diff --git a/docs/widgets/services/speedtest-tracker.md b/docs/widgets/services/speedtest-tracker.md new file mode 100644 index 00000000..7ad3f4e3 --- /dev/null +++ b/docs/widgets/services/speedtest-tracker.md @@ -0,0 +1,16 @@ +--- +title: Speedtest Tracker +description: Speedtest Tracker Widget Configuration +--- + +No extra configuration is required. + +This widget is compatible with both [alexjustesen/speedtest-tracker](https://github.com/alexjustesen/speedtest-tracker) and [henrywhitaker3/Speedtest-Tracker](https://github.com/henrywhitaker3/Speedtest-Tracker). + +Allowed fields: `["download", "upload", "ping"]`. + +```yaml +widget: + type: speedtest + url: http://speedtest.host.or.ip +``` diff --git a/docs/widgets/services/syncthing-relay-server.md b/docs/widgets/services/syncthing-relay-server.md new file mode 100644 index 00000000..a6036773 --- /dev/null +++ b/docs/widgets/services/syncthing-relay-server.md @@ -0,0 +1,14 @@ +--- +title: Syncthing Relay Server +description: Syncthing Relay Server Widget Configuration +--- + +Pulls stats from the [relay server](https://docs.syncthing.net/users/strelaysrv.html). [See here](https://github.com/gethomepage/homepage/pull/230#issuecomment-1253053472) for more information on configuration. + +Allowed fields: `["numActiveSessions", "numConnections", "bytesProxied"]`. + +```yaml +widget: + type: strelaysrv + url: http://syncthing.host.or.ip:22070 +``` diff --git a/docs/widgets/services/tailscale.md b/docs/widgets/services/tailscale.md new file mode 100644 index 00000000..0db502c9 --- /dev/null +++ b/docs/widgets/services/tailscale.md @@ -0,0 +1,17 @@ +--- +title: Tailscale +description: Tailscale Widget Configuration +--- + +You will need to generate an API access token from the [keys page](https://login.tailscale.com/admin/settings/keys) on the Tailscale dashboard. + +To find your device ID, go to the [machine overview page](https://login.tailscale.com/admin/machines) and select your machine. In the "Machine Details" section, copy your `ID`. It will end with `CNTRL`. + +Allowed fields: `["address", "last_seen", "expires"]`. + +```yaml +widget: + type: tailscale + deviceid: deviceid + key: tailscalekey +``` diff --git a/docs/widgets/services/tdarr.md b/docs/widgets/services/tdarr.md new file mode 100644 index 00000000..ff182d43 --- /dev/null +++ b/docs/widgets/services/tdarr.md @@ -0,0 +1,12 @@ +--- +title: Tdarr +description: Tdarr Widget Configuration +--- + +Allowed fields: `["queue", "processed", "errored", "saved"]`. + +```yaml +widget: + type: tdarr + url: http://tdarr.host.or.ip +``` diff --git a/docs/widgets/services/traefik.md b/docs/widgets/services/traefik.md new file mode 100644 index 00000000..1d476338 --- /dev/null +++ b/docs/widgets/services/traefik.md @@ -0,0 +1,17 @@ +--- +title: Traefik +description: Traefik Widget Configuration +--- + +No extra configuration is required. +If your traefik install requires authentication, include the username and password used to login to the web interface. + +Allowed fields: `["routers", "services", "middleware"]`. + +```yaml +widget: + type: traefik + url: http://traefik.host.or.ip + username: username # optional + password: password # optional +``` diff --git a/docs/widgets/services/transmission.md b/docs/widgets/services/transmission.md new file mode 100644 index 00000000..c4960dd6 --- /dev/null +++ b/docs/widgets/services/transmission.md @@ -0,0 +1,17 @@ +--- +title: Transmission +description: Transmission Widget Configuration +--- + +Uses the same username and password used to login from the web. + +Allowed fields: `["leech", "download", "seed", "upload"]`. + +```yaml +widget: + type: transmission + url: http://transmission.host.or.ip + username: username + password: password + rpcUrl: /transmission/ # Optional. Matches the value of "rpc-url" in your Transmission's settings.json file +``` diff --git a/docs/widgets/services/truenas.md b/docs/widgets/services/truenas.md new file mode 100644 index 00000000..eb392e7c --- /dev/null +++ b/docs/widgets/services/truenas.md @@ -0,0 +1,17 @@ +--- +title: TrueNas +description: TrueNas Scale Widget Configuration +--- + +Allowed fields: `["load", "uptime", "alerts"]`. + +To create an API Key, follow [the official TrueNAS documentation](https://www.truenas.com/docs/scale/scaletutorials/toptoolbar/managingapikeys/). + +```yaml +widget: + type: truenas + url: http://truenas.host.or.ip + username: user # not required if using api key + password: pass # not required if using api key + key: yourtruenasapikey # not required if using username / password +``` diff --git a/docs/widgets/services/tubearchivist.md b/docs/widgets/services/tubearchivist.md new file mode 100644 index 00000000..c662c0e1 --- /dev/null +++ b/docs/widgets/services/tubearchivist.md @@ -0,0 +1,15 @@ +--- +title: Tube Archivist +description: Tube Archivist Widget Configuration +--- + +Requires API key. + +Allowed fields: `["downloads", "videos", "channels", "playlists"]`. + +```yaml +widget: + type: tubearchivist + url: http://tubearchivist.host.or.ip + key: apikeyapikeyapikeyapikeyapikey +``` diff --git a/docs/widgets/services/unifi-controller.md b/docs/widgets/services/unifi-controller.md new file mode 100644 index 00000000..62c72aa6 --- /dev/null +++ b/docs/widgets/services/unifi-controller.md @@ -0,0 +1,23 @@ +--- +title: Unifi Controller +description: Unifi Controller Widget Configuration +--- + +_(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. + +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_users", "wlan_users"]`. + +```yaml +widget: + type: unifi + url: https://unifi.host.or.ip:port + username: username + password: password + site: Site Name # optional +``` + +_Added in v0.4.18, updated in 0.6.7_ diff --git a/docs/widgets/services/unmanic.md b/docs/widgets/services/unmanic.md new file mode 100644 index 00000000..7e3b4ff2 --- /dev/null +++ b/docs/widgets/services/unmanic.md @@ -0,0 +1,12 @@ +--- +title: Unmanic +description: Unmanic Widget Configuration +--- + +Allowed fields: `["active_workers", "total_workers", "records_total"]`. + +```yaml +widget: + type: unmanic + url: http://unmanic.host.or.ip:port +``` diff --git a/docs/widgets/services/uptime-kuma.md b/docs/widgets/services/uptime-kuma.md new file mode 100644 index 00000000..1280eb4d --- /dev/null +++ b/docs/widgets/services/uptime-kuma.md @@ -0,0 +1,15 @@ +--- +title: Uptime Kuma +description: Uptime Kuma Widget Configuration +--- + +As Uptime Kuma does not yet have a full API the widget uses data from a single "status page". As such you will need a status page setup with a group of monitored sites, which is where you get the slug (without the `/status/` portion). + +Allowed fields: `["up", "down", "uptime", "incident"]`. + +```yaml +widget: + type: uptimekuma + url: http://uptimekuma.host.or.ip:port + slug: statuspageslug +``` diff --git a/docs/widgets/services/uptimerobot.md b/docs/widgets/services/uptimerobot.md new file mode 100644 index 00000000..5e1ba80c --- /dev/null +++ b/docs/widgets/services/uptimerobot.md @@ -0,0 +1,30 @@ +--- +title: UptimeRobot +description: UptimeRobot Widget Configuration +--- + +To generate an API key, select `My Settings`, and either `Monitor-Specific API Key` or `Read-Only API Key`. + +A `Monitor-Specific API Key` will provide the following detailed information +for the selected monitor: + +- Current status +- Current uptime +- Date/time of last downtime +- Duration of last downtime + +Allowed fields: `["status", "uptime", "lastDown", "downDuration"]`. + +A `Read-Only API Key` will provide a summary of all monitors in your account: + +- Number of 'Up' monitors +- Number of 'Down' monitors + +Allowed fields: `["sitesUp", "sitesDown"]`. + +```yaml +widget: + type: uptimerobot + url: https://api.uptimerobot.com + key: uptimerobotapitoken +``` diff --git a/docs/widgets/services/urbackup.md b/docs/widgets/services/urbackup.md new file mode 100644 index 00000000..4efe2a09 --- /dev/null +++ b/docs/widgets/services/urbackup.md @@ -0,0 +1,23 @@ +--- +title: UrBackup +description: UrBackup Widget Configuration +--- + +The UrBackup widget retrieves the total number of clients that currently have no errors, have errors, or haven't backed up recently. Clients are considered "Errored" or "Out of Date" if either the file or image backups for that client have errors/are out of date, unless the client does not support image backups. + +The default number of days that can elapse before a client is marked Out of Date is 3, but this value can be customized by setting the `maxDays` value in the config. + +Optionally, the widget can also report the total amount of disk space consumed by backups. This is disabled by default, because it requires a second API call. + +Note: client status is only shown for backups that the specified user has access to. Disk Usage shown is the total for all backups, regardless of permissions. + +Allowed fields: `["ok", "errored", "noRecent", "totalUsed"]`. _Note that `totalUsed` will not be shown unless explicitly included in `fields`._ + +```yaml +widget: + type: urbackup + username: urbackupUsername + password: urbackupPassword + url: http://urbackupUrl:55414 + maxDays: 5 # optional +``` diff --git a/docs/widgets/services/watchtower.md b/docs/widgets/services/watchtower.md new file mode 100644 index 00000000..24ef38e4 --- /dev/null +++ b/docs/widgets/services/watchtower.md @@ -0,0 +1,15 @@ +--- +title: Watchtower +description: Watchtower Widget Configuration +--- + +To use this widget, Watchtower needs to be configured to to [enable metrics](https://containrrr.dev/watchtower/metrics/). + +Allowed fields: `["containers_scanned", "containers_updated", "containers_failed"]`. + +```yaml +widget: + type: watchtower + url: http://your-ip-address:8080 + key: demotoken +``` diff --git a/docs/widgets/services/whatsupdocker.md b/docs/widgets/services/whatsupdocker.md new file mode 100644 index 00000000..01b90a98 --- /dev/null +++ b/docs/widgets/services/whatsupdocker.md @@ -0,0 +1,14 @@ +--- +title: Whats Up Docker +description: WhatsUpDocker Widget Configuration +--- + +Currently requires unauthenticated whatsupdocker instance. + +Allowed fields: `["monitoring", "updates"]`. + +```yaml +widget: + type: whatsupdocker + url: http://whatsupdocker:port +``` diff --git a/docs/widgets/services/xteve.md b/docs/widgets/services/xteve.md new file mode 100644 index 00000000..01ce67ce --- /dev/null +++ b/docs/widgets/services/xteve.md @@ -0,0 +1,14 @@ +--- +title: Xteve +description: Xteve Widget Configuration +--- + +Allowed fields: `["streams_all", "streams_active", "streams_xepg"]`. + +```yaml +widget: + type: xteve + url: http://xteve.host.or.ip + username: username # optional + password: password # optional +``` diff --git a/images/1.png b/images/1.png index 7aeb3848..52c69028 100644 Binary files a/images/1.png and b/images/1.png differ diff --git a/k3d/k3d.yaml b/k3d/k3d.yaml index e976c5c3..b93475a2 100644 --- a/k3d/k3d.yaml +++ b/k3d/k3d.yaml @@ -36,8 +36,8 @@ options: switchCurrentContext: false runtime: gpuRequest: "" - serversMemory: "1024Mi" - agentsMemory: "1024Mi" + serversMemory: "1024MiB" + agentsMemory: "1024MiB" labels: - label: foo=bar nodeFilters: diff --git a/kubernetes.md b/kubernetes.md index 0035ddd2..9da1b54b 100644 --- a/kubernetes.md +++ b/kubernetes.md @@ -98,7 +98,7 @@ be configured on the service entry. This works by creating a label selector `app.kubernetes.io/name=home-assistant`, which typically will be the same both for the ingress and the deployment. However, some deployments can be complex and will not conform to this rule. In such -cases the `podSelector` variable can bridge the gap. Any field selector can +cases the `pod-selector` variable can bridge the gap. Any field selector can be used in it which allows for some powerful selection capabilities. For instance, it can be utilized to roll multiple underlying deployments under @@ -112,7 +112,7 @@ one application to see a high-level aggregate: description: Matrix Synapse Powered Chat app: matrix-element namespace: comms - podSelector: >- + pod-selector: >- app.kubernetes.io/instance in ( matrix-element, matrix-media-repo, diff --git a/mkdocs.yml b/mkdocs.yml new file mode 100644 index 00000000..4dc382f9 --- /dev/null +++ b/mkdocs.yml @@ -0,0 +1,238 @@ +site_name: homepage + +# Project information +site_url: https://gethomepage.dev/ + +# Repository +repo_name: gethomepage/homepage +repo_url: https://github.com/gethomepage/homepage +edit_uri: https://github.com/gethomepage/homepage/tree/main/docs/ + +nav: + - "Home": + - index.md + - "Installation": + - installation/index.md + - installation/docker.md + - installation/k8s.md + - installation/unraid.md + - installation/source.md + - "Configuration": + - configs/index.md + - configs/settings.md + - configs/bookmarks.md + - configs/services.md + - configs/service-widgets.md + - configs/kubernetes.md + - configs/docker.md + - configs/custom-css-js.md + - "Widgets": + - widgets/index.md + - "Service Widgets": + - widgets/services/index.md + - widgets/services/adguard-home.md + - widgets/services/atsumeru.md + - widgets/services/audiobookshelf.md + - widgets/services/authentik.md + - widgets/services/autobrr.md + - widgets/services/azuredevops.md + - widgets/services/bazarr.md + - widgets/services/caddy.md + - widgets/services/calendar.md + - widgets/services/calibre-web.md + - widgets/services/changedetectionio.md + - widgets/services/channelsdvrserver.md + - widgets/services/cloudflared.md + - widgets/services/coin-market-cap.md + - widgets/services/customapi.md + - widgets/services/deluge.md + - widgets/services/diskstation.md + - widgets/services/downloadstation.md + - widgets/services/emby.md + - widgets/services/evcc.md + - widgets/services/fileflows.md + - widgets/services/flood.md + - widgets/services/freshrss.md + - widgets/services/gamedig.md + - widgets/services/ghostfolio.md + - widgets/services/glances.md + - widgets/services/gluetun.md + - widgets/services/gotify.md + - widgets/services/grafana.md + - widgets/services/hdhomerun.md + - widgets/services/healthchecks.md + - widgets/services/homeassistant.md + - widgets/services/homebridge.md + - widgets/services/immich.md + - widgets/services/jackett.md + - widgets/services/jdownloader.md + - widgets/services/jellyfin.md + - widgets/services/jellyseerr.md + - widgets/services/kavita.md + - widgets/services/komga.md + - widgets/services/kopia.md + - widgets/services/lidarr.md + - widgets/services/mastodon.md + - widgets/services/mealie.md + - widgets/services/medusa.md + - widgets/services/mikrotik.md + - widgets/services/minecraft.md + - widgets/services/miniflux.md + - widgets/services/mjpeg.md + - widgets/services/moonraker.md + - widgets/services/mylar.md + - widgets/services/navidrome.md + - widgets/services/nextcloud.md + - widgets/services/nextdns.md + - widgets/services/nginx-proxy-manager.md + - widgets/services/nzbget.md + - widgets/services/octoprint.md + - widgets/services/omada.md + - widgets/services/ombi.md + - widgets/services/opendtu.md + - widgets/services/openmediavault.md + - widgets/services/opnsense.md + - widgets/services/overseerr.md + - widgets/services/paperlessngx.md + - widgets/services/pfsense.md + - widgets/services/photoprism.md + - widgets/services/pialert.md + - widgets/services/pihole.md + - widgets/services/plex-tautulli.md + - widgets/services/plex.md + - widgets/services/portainer.md + - widgets/services/prometheus.md + - widgets/services/prowlarr.md + - widgets/services/proxmox.md + - widgets/services/proxmoxbackupserver.md + - widgets/services/pterodactyl.md + - widgets/services/pyload.md + - widgets/services/qbittorrent.md + - widgets/services/qnap.md + - widgets/services/radarr.md + - widgets/services/readarr.md + - widgets/services/rutorrent.md + - widgets/services/sabnzbd.md + - widgets/services/scrutiny.md + - widgets/services/sonarr.md + - widgets/services/speedtest-tracker.md + - widgets/services/syncthing-relay-server.md + - widgets/services/tailscale.md + - widgets/services/tdarr.md + - widgets/services/traefik.md + - widgets/services/transmission.md + - widgets/services/truenas.md + - widgets/services/tubearchivist.md + - widgets/services/unifi-controller.md + - widgets/services/unmanic.md + - widgets/services/uptime-kuma.md + - widgets/services/uptimerobot.md + - widgets/services/urbackup.md + - widgets/services/watchtower.md + - widgets/services/whatsupdocker.md + - widgets/services/xteve.md + - "Information Widgets": + - widgets/info/index.md + - widgets/info/datetime.md + - widgets/info/glances.md + - widgets/info/greeting.md + - widgets/info/kubernetes.md + - widgets/info/logo.md + - widgets/info/longhorn.md + - widgets/info/openmeteo.md + - widgets/info/openweathermap.md + - widgets/info/resources.md + - widgets/info/search.md + - widgets/info/unifi_controller.md + - widgets/info/weather.md + - more/troubleshooting.md + - "More": + - more/index.md + - more/development.md + - more/translations.md + - more/homepage-move.md + +theme: + name: material + language: en + palette: + - media: "(prefers-color-scheme)" + toggle: + icon: material/brightness-auto + name: Switch to light mode + - media: "(prefers-color-scheme: light)" + scheme: default + primary: black + accent: black + toggle: + icon: material/brightness-7 + name: Switch to dark mode + - media: "(prefers-color-scheme: dark)" + scheme: slate + primary: black + accent: blue + toggle: + icon: material/brightness-4 + name: Switch to system preference + logo: assets/light_squircle@2x.png + favicon: assets/favicon.ico + features: + - navigation.instant + - content.action.edit + - search.suggest + - search.share + - content.code.copy + - content.code.select + - navigation.tracking + - navigation.tabs + - navigation.sections + - navigation.indexes + +extra_css: + - "stylesheets/extra.css" + +extra: + version: + provider: mike + social: + - icon: fontawesome/brands/discord + link: https://discord.gg/k4ruYNrudu + - icon: fontawesome/regular/message + link: https://github.com/gethomepage/homepage/discussions + - icon: fontawesome/brands/github + link: https://github.com/gethomepage/homepage + +markdown_extensions: + - pymdownx.highlight: + anchor_linenums: true + line_spans: __span + pygments_lang_class: true + - pymdownx.emoji: + emoji_index: !!python/name:material.extensions.emoji.twemoji + emoji_generator: !!python/name:material.extensions.emoji.to_svg + - pymdownx.inlinehilite + - pymdownx.snippets + - pymdownx.superfences + - pymdownx.critic + - pymdownx.caret + - pymdownx.keys + - pymdownx.mark + - pymdownx.tilde + - pymdownx.details + - attr_list + - md_in_html + - admonition + +plugins: + - group: + enabled: !ENV MKINSIDERS + plugins: + - optimize + - typeset + - social + - tags + - search: + pipeline: + - stemmer + - stopWordFilter + - trimmer diff --git a/package-lock.json b/package-lock.json index 5e1bb27f..d2d9bd42 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14,10 +14,11 @@ "compare-versions": "^5.0.1", "dockerode": "^3.3.4", "follow-redirects": "^1.15.2", - "gamedig": "^4.0.6", + "gamedig": "^4.1.0", "i18next": "^21.9.2", "js-yaml": "^4.1.0", "json-rpc-2.0": "^1.4.1", + "luxon": "^3.4.3", "memory-cache": "^0.2.0", "minecraft-ping-js": "^1.0.2", "next": "^12.3.1", @@ -769,14 +770,6 @@ "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==", - "engines": { - "node": ">=0.4.2" - } - }, "node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", @@ -1503,29 +1496,6 @@ "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-5.0.3.tgz", "integrity": "sha512-4UZlZP8Z99MGEY+Ovg/uJxJuvoXuN4M6B3hKaiackiHrgzQFEe3diJi1mf1PNHbFujM7FvLrK2bpgIaImbtZ1A==" }, - "node_modules/compressjs": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/compressjs/-/compressjs-1.0.3.tgz", - "integrity": "sha512-jpKJjBTretQACTGLNuvnozP1JdP2ZLrjdGdBgk/tz1VfXlUcBhhSZW6vEsuThmeot/yjvSrPQKEgfF3X2Lpi8Q==", - "dependencies": { - "amdefine": "~1.0.0", - "commander": "~2.8.1" - }, - "bin": { - "compressjs": "bin/compressjs" - } - }, - "node_modules/compressjs/node_modules/commander": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", - "integrity": "sha512-+pJLBFVk+9ZZdlAOB5WuIElVPPth47hILFkmGym57aq8kwxsowvByvB0DHs1vQAhyMZzdcpTtF0VDKGkSDR4ZQ==", - "dependencies": { - "graceful-readlink": ">= 1.0.0" - }, - "engines": { - "node": ">= 0.6.x" - } - }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -2977,18 +2947,18 @@ } }, "node_modules/gamedig": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/gamedig/-/gamedig-4.0.6.tgz", - "integrity": "sha512-h0k9n/e5vNrd9Mh2wyFUp2Vo7ABWbDkdBxKC6FNJLOZiU5d9Z29bntGeYbXtOkcRWoV6Q63wSAJ3jLWxYQkpZw==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/gamedig/-/gamedig-4.1.0.tgz", + "integrity": "sha512-jvLUEakihJgpiw9t9yQRsbcemeALeTNlnaWY1gvYdwI63ZlkxznTaLqX5K/eluRTTCtAWNW3YceT6NVjyAZIwA==", "dependencies": { "cheerio": "^1.0.0-rc.10", - "compressjs": "^1.0.2", "gbxremote": "^0.2.1", - "got": "^12.0.3", + "got": "^12.1.0", "iconv-lite": "^0.6.3", "long": "^5.2.0", "minimist": "^1.2.6", "punycode": "^2.1.1", + "seek-bzip": "^2.0.0", "varint": "^6.0.0" }, "bin": { @@ -3190,11 +3160,6 @@ "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/graceful-readlink": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", - "integrity": "sha512-8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w==" - }, "node_modules/grapheme-splitter": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", @@ -4134,6 +4099,14 @@ "node": ">=10" } }, + "node_modules/luxon": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.4.3.tgz", + "integrity": "sha512-tFWBiv3h7z+T/tDaoxA8rqTxy1CHV6gHS//QdaH4pulbq/JuBSGgQspQQqcgnwdAx6pNI7cmvz5Sv/addzHmUg==", + "engines": { + "node": ">=12" + } + }, "node_modules/memory-cache": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/memory-cache/-/memory-cache-0.2.0.tgz", @@ -5586,6 +5559,26 @@ "loose-envify": "^1.1.0" } }, + "node_modules/seek-bzip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-2.0.0.tgz", + "integrity": "sha512-SMguiTnYrhpLdk3PwfzHeotrcwi8bNV4iemL9tx9poR/yeaMYwB9VzR1w7b57DuWpuqR8n6oZboi0hj3AxZxQg==", + "dependencies": { + "commander": "^6.0.0" + }, + "bin": { + "seek-bunzip": "bin/seek-bunzip", + "seek-table": "bin/seek-bzip-table" + } + }, + "node_modules/seek-bzip/node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "engines": { + "node": ">= 6" + } + }, "node_modules/semver": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", diff --git a/package.json b/package.json index fd9965fd..6a33b5ed 100644 --- a/package.json +++ b/package.json @@ -16,10 +16,11 @@ "compare-versions": "^5.0.1", "dockerode": "^3.3.4", "follow-redirects": "^1.15.2", - "gamedig": "^4.0.6", + "gamedig": "^4.1.0", "i18next": "^21.9.2", "js-yaml": "^4.1.0", "json-rpc-2.0": "^1.4.1", + "luxon": "^3.4.3", "memory-cache": "^0.2.0", "minecraft-ping-js": "^1.0.2", "next": "^12.3.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d5f41294..6ff7151a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,8 +24,8 @@ dependencies: specifier: ^1.15.2 version: 1.15.2 gamedig: - specifier: ^4.0.6 - version: 4.0.6 + specifier: ^4.1.0 + version: 4.1.0 i18next: specifier: ^21.9.2 version: 21.10.0 @@ -35,6 +35,9 @@ dependencies: json-rpc-2.0: specifier: ^1.4.1 version: 1.5.1 + luxon: + specifier: ^3.4.3 + version: 3.4.3 memory-cache: specifier: ^0.2.0 version: 0.2.0 @@ -602,11 +605,6 @@ packages: json-schema-traverse: 0.4.1 uri-js: 4.4.1 - /amdefine@1.0.1: - resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==} - engines: {node: '>=0.4.2'} - dev: false - /ansi-regex@5.0.1: resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} engines: {node: '>=8'} @@ -1002,28 +1000,18 @@ packages: delayed-stream: 1.0.0 dev: false - /commander@2.8.1: - resolution: {integrity: sha512-+pJLBFVk+9ZZdlAOB5WuIElVPPth47hILFkmGym57aq8kwxsowvByvB0DHs1vQAhyMZzdcpTtF0VDKGkSDR4ZQ==} - engines: {node: '>= 0.6.x'} - dependencies: - graceful-readlink: 1.0.1 - dev: false - /commander@4.1.1: resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} engines: {node: '>= 6'} dev: true - /compare-versions@5.0.3: - resolution: {integrity: sha512-4UZlZP8Z99MGEY+Ovg/uJxJuvoXuN4M6B3hKaiackiHrgzQFEe3diJi1mf1PNHbFujM7FvLrK2bpgIaImbtZ1A==} + /commander@6.2.1: + resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} + engines: {node: '>= 6'} dev: false - /compressjs@1.0.3: - resolution: {integrity: sha512-jpKJjBTretQACTGLNuvnozP1JdP2ZLrjdGdBgk/tz1VfXlUcBhhSZW6vEsuThmeot/yjvSrPQKEgfF3X2Lpi8Q==} - hasBin: true - dependencies: - amdefine: 1.0.1 - commander: 2.8.1 + /compare-versions@5.0.3: + resolution: {integrity: sha512-4UZlZP8Z99MGEY+Ovg/uJxJuvoXuN4M6B3hKaiackiHrgzQFEe3diJi1mf1PNHbFujM7FvLrK2bpgIaImbtZ1A==} dev: false /concat-map@0.0.1: @@ -1972,19 +1960,19 @@ packages: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} dev: true - /gamedig@4.0.6: - resolution: {integrity: sha512-h0k9n/e5vNrd9Mh2wyFUp2Vo7ABWbDkdBxKC6FNJLOZiU5d9Z29bntGeYbXtOkcRWoV6Q63wSAJ3jLWxYQkpZw==} + /gamedig@4.1.0: + resolution: {integrity: sha512-jvLUEakihJgpiw9t9yQRsbcemeALeTNlnaWY1gvYdwI63ZlkxznTaLqX5K/eluRTTCtAWNW3YceT6NVjyAZIwA==} engines: {node: '>=14.0.0'} hasBin: true dependencies: cheerio: 1.0.0-rc.12 - compressjs: 1.0.3 gbxremote: 0.2.1 got: 12.6.1 iconv-lite: 0.6.3 long: 5.2.3 minimist: 1.2.8 punycode: 2.3.0 + seek-bzip: 2.0.0 varint: 6.0.0 dev: false @@ -2121,10 +2109,6 @@ packages: responselike: 3.0.0 dev: false - /graceful-readlink@1.0.1: - resolution: {integrity: sha512-8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w==} - dev: false - /grapheme-splitter@1.0.4: resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} dev: true @@ -2665,6 +2649,11 @@ packages: dependencies: yallist: 4.0.0 + /luxon@3.4.3: + resolution: {integrity: sha512-tFWBiv3h7z+T/tDaoxA8rqTxy1CHV6gHS//QdaH4pulbq/JuBSGgQspQQqcgnwdAx6pNI7cmvz5Sv/addzHmUg==} + engines: {node: '>=12'} + dev: false + /memory-cache@0.2.0: resolution: {integrity: sha512-OcjA+jzjOYzKmKS6IQVALHLVz+rNTMPoJvCztFaZxwG14wtAW7VRZjwTQu06vKCYOxh4jVnik7ya0SXTB0W+xA==} dev: false @@ -3584,6 +3573,13 @@ packages: loose-envify: 1.4.0 dev: false + /seek-bzip@2.0.0: + resolution: {integrity: sha512-SMguiTnYrhpLdk3PwfzHeotrcwi8bNV4iemL9tx9poR/yeaMYwB9VzR1w7b57DuWpuqR8n6oZboi0hj3AxZxQg==} + hasBin: true + dependencies: + commander: 6.2.1 + dev: false + /semver@6.3.0: resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} dev: true diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json index 088ae2f0..cdf6b787 100644 --- a/public/locales/ar/common.json +++ b/public/locales/ar/common.json @@ -316,7 +316,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "quicklaunch": { "bookmark": "مفضلة", @@ -381,7 +382,9 @@ }, "ping": { "error": "خطأ", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "إجتاز", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories", + "series": "Series" + }, + "calibreweb": { + "categories": "Categories", + "series": "Series", + "books": "Books", + "authors": "Authors" + }, + "uptimerobot": { + "seemsdown": "Seems Down", + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json index 5a6ecc71..29c74155 100644 --- a/public/locales/bg/common.json +++ b/public/locales/bg/common.json @@ -13,7 +13,7 @@ "missing_type": "Липсваща приставка: {{type}}", "api_error": "API Грешка", "status": "Статус", - "information": "Information", + "information": "Информация", "url": "URL", "raw_error": "Raw Error", "response_data": "Response Data" @@ -28,7 +28,7 @@ "placeholder": "Търсене…" }, "resources": { - "cpu": "CPU", + "cpu": "Процесор", "total": "Общо", "free": "Свободни", "used": "Заети", @@ -54,9 +54,9 @@ "wait": "Моля изчакайте", "lan": "LAN", "wlan": "WLAN", - "devices": "Devices", - "lan_devices": "LAN Devices", - "wlan_devices": "WLAN Devices", + "devices": "Устройства", + "lan_devices": "LAN Устройства", + "wlan_devices": "WLAN Устройства", "empty_data": "Subsystem status unknown" }, "docker": { @@ -64,8 +64,8 @@ "rx": "RX", "tx": "TX", "mem": "MEM", - "cpu": "CPU", - "error": "Error", + "cpu": "Процесор", + "error": "Грешка", "unknown": "Unknown", "partial": "Partial", "running": "Running", @@ -125,7 +125,7 @@ "radarr": { "wanted": "Wanted", "queued": "Queued", - "movies": "Movies", + "movies": "Филми", "missing": "Missing", "queue": "Queue", "unknown": "Unknown" @@ -138,38 +138,38 @@ "readarr": { "wanted": "Wanted", "queued": "Queued", - "books": "Books" + "books": "Книги" }, "bazarr": { - "missingEpisodes": "Missing Episodes", - "missingMovies": "Missing Movies" + "missingEpisodes": "Липсващи Епизоди", + "missingMovies": "Липсващи Филми" }, "ombi": { "pending": "Pending", - "approved": "Approved", - "available": "Available" + "approved": "Одобрен", + "available": "Наличен" }, "jellyseerr": { "pending": "Pending", - "approved": "Approved", - "available": "Available" + "approved": "Одобрен", + "available": "Наличен" }, "overseerr": { "pending": "Pending", - "approved": "Approved", - "available": "Available", + "approved": "Одобрен", + "available": "Наличен", "processing": "Processing" }, "pihole": { - "queries": "Queries", - "blocked": "Blocked", + "queries": "Заявки", + "blocked": "Блокирани", "gravity": "Gravity", "blocked_percent": "Blocked %" }, "adguard": { "queries": "Queries", - "blocked": "Blocked", - "filtered": "Filtered", + "blocked": "Блокирани", + "filtered": "Филтрирани", "latency": "Latency" }, "speedtest": { @@ -179,7 +179,7 @@ }, "portainer": { "running": "Running", - "stopped": "Stopped", + "stopped": "Спрян", "total": "Total" }, "traefik": { @@ -188,15 +188,15 @@ "middleware": "Middleware" }, "npm": { - "enabled": "Enabled", - "disabled": "Disabled", + "enabled": "Активирано", + "disabled": "Деактивирано", "total": "Total" }, "coinmarketcap": { "configure": "Configure one or more crypto currencies to track", - "1hour": "1 Hour", - "1day": "1 Day", - "7days": "7 Days", + "1hour": "1 Час", + "1day": "1 Ден", + "7days": "7 Дена", "30days": "30 Days" }, "gotify": { @@ -254,22 +254,23 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Total Observed", "diffsDetected": "Diffs Detected" }, "wmo": { - "0-day": "Sunny", + "0-day": "Слънчево", "57-day": "Freezing Drizzle", "57-night": "Freezing Drizzle", "96-day": "Thunderstorm With Hail", "96-night": "Thunderstorm With Hail", - "0-night": "Clear", - "1-day": "Mainly Sunny", - "1-night": "Mainly Clear", - "2-day": "Partly Cloudy", + "0-night": "Ясно", + "1-day": "Предимно Слънчево", + "1-night": "Предимно Ясно", + "2-day": "Частична Облачност", "2-night": "Partly Cloudy", "3-day": "Cloudy", "3-night": "Cloudy", @@ -362,7 +363,7 @@ }, "navidrome": { "nothing_streaming": "No Active Streams", - "please_wait": "Please Wait" + "please_wait": "Моля Изчакайте" }, "pyload": { "speed": "Speed", @@ -381,7 +382,9 @@ }, "ping": { "ping": "Ping", - "error": "Error" + "error": "Грешка", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Passed", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json index 525e533d..0d1266db 100644 --- a/public/locales/ca/common.json +++ b/public/locales/ca/common.json @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Total d'observats", @@ -381,7 +382,9 @@ }, "ping": { "error": "Error", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Aprobat", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json index 1d48f636..09e7ef48 100644 --- a/public/locales/cs/common.json +++ b/public/locales/cs/common.json @@ -328,7 +328,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "quicklaunch": { "bookmark": "Záložka", @@ -381,7 +382,9 @@ }, "ping": { "error": "Chyba", - "ping": "Odezva" + "ping": "Odezva", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Úspěšné", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/da/common.json b/public/locales/da/common.json index 9c6533f0..7ae490b8 100644 --- a/public/locales/da/common.json +++ b/public/locales/da/common.json @@ -10,13 +10,13 @@ "movies": "Film", "wanted": "Ønskede", "missing": "Mangler", - "queue": "Queue", - "unknown": "Unknown" + "queue": "Kø", + "unknown": "Ukendt" }, "lidarr": { "wanted": "Ønsket", "queued": "I Kø", - "artists": "Artists" + "artists": "Artister" }, "jellyseerr": { "available": "Tilgængelig", @@ -27,13 +27,13 @@ "pending": "Afventer", "approved": "Godkendt", "available": "Tilgængelig", - "processing": "Processing" + "processing": "Behandler" }, "adguard": { "queries": "Forespørgsler", "blocked": "Blokerede", "filtered": "Filtreret", - "latency": "Latency" + "latency": "Latenstid" }, "speedtest": { "upload": "Upload", @@ -48,7 +48,7 @@ "coinmarketcap": { "30days": "30 Dage", "1day": "1 Dag", - "configure": "Konfigurer en eller flere crypto valutaer til tracking", + "configure": "Konfigurer en eller flere crypto valutaer til tracking", "7days": "7 Dage", "1hour": "1 time" }, @@ -73,67 +73,68 @@ "wait": "Vent venligst", "uptime": "UP", "days": "d", - "hours": "h", + "hours": "t", "temp": "TEMP", "load": "Load", - "warn": "Warn", + "warn": "Advar", "total": "Total", - "free": "Free", - "used": "Used", + "free": "Ledig", + "used": "Brugt", "crit": "Crit", - "read": "Read", - "write": "Write", + "read": "Læs", + "write": "Skriv", "gpu": "GPU", - "mem": "Mem", - "swap": "Swap" + "mem": "Ram", + "swap": "Swap", + "_temp": "Temp" }, "wmo": { - "1-day": "Hovedsageligt solrigt", + "1-day": "Overvejende Solrigt", "48-day": "Tåget", "48-night": "Tåget", - "51-day": "Let støvregn", - "51-night": "Let støvregn", - "66-night": "Frysende regn", - "67-day": "Frysende regn", - "67-night": "Frysende regn", + "51-day": "Let Støvregn", + "51-night": "Let Støvregn", + "66-night": "Frysende Regn", + "67-day": "Frysende Regn", + "67-night": "Frysende Regn", "71-day": "Let Sne", "75-night": "Kraftig Sne", "86-day": "Snebyger", "86-night": "Snebyger", "95-day": "Tordenvejr", - "99-day": "Tordenvejr med hagl", - "99-night": "Tordenvejr med hagl", + "99-day": "Tordenvejr Med Hagl", + "99-night": "Tordenvejr Med Hagl", "0-day": "Solrig", "0-night": "Klart", - "1-night": "Hovedsageligt klart", - "2-day": "Delvist skyet", - "2-night": "Delvist skyet", + "1-night": "Overvejende Skyfrit", + "2-day": "Delvist Overskyet", + "2-night": "Delvist Overskyet", "3-day": "Skyet", "3-night": "Skyet", "45-day": "Tåget", - "65-day": "Kraftig regn", - "65-night": "Kraftig regn", + "65-day": "Kraftig Regn", + "65-night": "Kraftig Regn", "45-night": "Tåget", "53-day": "Støvregn", "53-night": "Støvregn", - "55-day": "Kraftig støvregn", - "55-night": "Kraftig støvregn", - "56-day": "Let frysende støvregn", - "56-night": "Let frysende støvregn", - "57-day": "Frysende støvregn", - "57-night": "Frysende støvregn", + "55-day": "Kraftig Støvregn", + "55-night": "Kraftig Støvregn", + "56-day": "Let Frysende Støvregn", + "56-night": "Let Frysende Støvregn", + "57-day": "Frysende Støvregn", + "57-night": "Frysende Støvregn", "61-day": "Let Regn", "61-night": "Let Regn", "63-day": "Regn", "63-night": "Regn", - "66-day": "Frysende regn", + "66-day": "Frysende Regn", "71-night": "Let Sne", "73-day": "Sne", "73-night": "Sne", "75-day": "Kraftig Sne", "77-day": "Snekorn", - "80-day": "Lette byger", - "80-night": "Lette byger", + "80-day": "Lette Byger", + "80-night": "Lette Byger", "81-day": "Byger", "77-night": "Snekorn", "81-night": "Byger", @@ -142,19 +143,19 @@ "85-day": "Snebyger", "85-night": "Snebyger", "95-night": "Tordenvejr", - "96-day": "Tordenvejr med hagl", - "96-night": "Tordenvejr med hagl" + "96-day": "Tordenvejr Med Hagl", + "96-night": "Tordenvejr Med Hagl" }, "homebridge": { "available_update": "System", "updates": "Opdateringer", - "update_available": "Opdateringer tilgængelige", + "update_available": "Opdateringer Tilgængelige", "up_to_date": "Opdateret", "child_bridges": "Child Bridges", "child_bridges_status": "{{ok}}/{{total}}", - "up": "Up", - "pending": "Pending", - "down": "Down" + "up": "Oppe", + "pending": "Afventer", + "down": "Nede" }, "widget": { "missing_type": "Manglende Widget Type: {{type}}", @@ -162,8 +163,8 @@ "status": "Status", "information": "Information", "url": "URL", - "raw_error": "Raw Error", - "response_data": "Response Data" + "raw_error": "Rå Fejl", + "response_data": "Svardata" }, "weather": { "current": "Nuværende lokation", @@ -180,13 +181,13 @@ "free": "Fri", "used": "Brugt", "load": "Belastning", - "mem": "MEM", - "hours": "h", + "mem": "RAM", + "hours": "t", "minutes": "m", "temp": "TEMP", "max": "Max", "uptime": "UP", - "months": "mo", + "months": "mdr", "days": "d" }, "unifi": { @@ -204,7 +205,7 @@ "up": "Oppe", "down": "NED", "wait": "Vent venligst", - "empty_data": "Subsystem status unknown" + "empty_data": "Subsystem status ukendt" }, "docker": { "cpu": "CPU", @@ -213,24 +214,24 @@ "mem": "RAM", "offline": "Offline", "error": "Error", - "unknown": "Unknown", - "running": "Running", - "starting": "Starting", - "unhealthy": "Unhealthy", - "not_found": "Not Found", - "exited": "Exited", - "partial": "Partial", - "healthy": "Healthy" + "unknown": "Ukendt", + "running": "Kører", + "starting": "Starter", + "unhealthy": "Usund", + "not_found": "Ikke Fundet", + "exited": "Forladt", + "partial": "Delvis", + "healthy": "Sund" }, "emby": { "playing": "Afspiller", "transcoding": "Transcoder", "bitrate": "Bitrate", "no_active": "Ingen Aktive Streams", - "movies": "Movies", - "series": "Series", - "episodes": "Episodes", - "songs": "Songs" + "movies": "Film", + "series": "Serier", + "episodes": "Episoder", + "songs": "Sange" }, "changedetectionio": { "totalObserved": "Total Observeret", @@ -241,7 +242,7 @@ "transcoding": "Transcoder", "bitrate": "Bitrate", "no_active": "Ingen Aktive Streams", - "plex_connection_error": "Check Plex Connection" + "plex_connection_error": "Tjek Plex-forbindelse" }, "nzbget": { "rate": "Rate", @@ -274,8 +275,8 @@ "wanted": "Ønsket", "queued": "I Kø", "series": "Serier", - "queue": "Queue", - "unknown": "Unknown" + "queue": "Kø", + "unknown": "Ukendt" }, "readarr": { "wanted": "Ønskede", @@ -295,7 +296,7 @@ "blocked": "Blokerede", "gravity": "Gravity", "queries": "Forespørgsler", - "blocked_percent": "Blocked %" + "blocked_percent": "Blokeret %" }, "portainer": { "running": "Kørende", @@ -316,8 +317,8 @@ "enableIndexers": "Indeksører", "numberOfGrabs": "Grabs", "numberOfQueries": "Forespørgsler", - "numberOfFailGrabs": "Fail Grabs", - "numberOfFailQueries": "Fejl forespørgsler" + "numberOfFailGrabs": "Fejl Grabs", + "numberOfFailQueries": "Fejl Forespørgsler" }, "jackett": { "configured": "Konfigureret", @@ -332,9 +333,9 @@ "quicklaunch": { "bookmark": "Bogmærker", "service": "Service", - "search": "Search", - "custom": "Custom", - "visit": "Visit", + "search": "Søg", + "custom": "Brugerdefinerede", + "visit": "Besøg", "url": "URL" }, "watchtower": { @@ -371,25 +372,27 @@ "total": "Total" }, "gluetun": { - "public_ip": "Public IP", + "public_ip": "Offentlig IP", "region": "Region", - "country": "Country" + "country": "Land" }, "hdhomerun": { - "channels": "Channels", + "channels": "Kanaler", "hd": "HD" }, "ping": { - "error": "Error", - "ping": "Ping" + "error": "Fejl", + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { - "passed": "Passed", - "failed": "Failed", - "unknown": "Unknown" + "passed": "Bestået", + "failed": "Mislykket", + "unknown": "Ukendt" }, "paperlessngx": { - "inbox": "Inbox", + "inbox": "Indbakke", "total": "Total" }, "deluge": { @@ -405,29 +408,29 @@ "seed": "Seed" }, "tdarr": { - "queue": "Queue", - "processed": "Processed", - "errored": "Errored", - "saved": "Saved" + "queue": "Kø", + "processed": "Behandlet", + "errored": "Fejlet", + "saved": "Gemt" }, "miniflux": { - "read": "Read", - "unread": "Unread" + "read": "Læst", + "unread": "Ulæst" }, "nextdns": { - "wait": "Please Wait", - "no_devices": "No Device Data Received" + "wait": "Vent Venligst", + "no_devices": "Ingen Enhedsdata Modtaget" }, "common": { "bibyterate": "{{value, rate(bits: false; binary: true)}}", "bibitrate": "{{value, rate(bits: true; binary: true)}}" }, "omada": { - "connectedAp": "Connected APs", - "activeUser": "Active devices", - "alerts": "Alerts", - "connectedGateway": "Connected gateways", - "connectedSwitches": "Connected switches" + "connectedAp": "Forbundne APs", + "activeUser": "Aktive enheder", + "alerts": "Advarsler", + "connectedGateway": "Forbundne gateways", + "connectedSwitches": "Forbundne switches" }, "downloadstation": { "download": "Download", @@ -436,238 +439,238 @@ "seed": "Seed" }, "mikrotik": { - "cpuLoad": "CPU Load", - "memoryUsed": "Memory Used", - "uptime": "Uptime", + "cpuLoad": "CPU Belastning", + "memoryUsed": "Hukommelse Brugt", + "uptime": "Oppetid", "numberOfLeases": "Leases" }, "xteve": { - "streams_all": "All Streams", - "streams_active": "Active Streams", - "streams_xepg": "XEPG Channels" + "streams_all": "Alle Streams", + "streams_active": "Aktive Streams", + "streams_xepg": "XEPG Kanaler" }, "opnsense": { - "cpu": "CPU Load", - "memory": "Active Memory", + "cpu": "CPU Belastning", + "memory": "Aktiv Hukommelse", "wanUpload": "WAN Upload", "wanDownload": "WAN Download" }, "moonraker": { - "printer_state": "Printer State", + "printer_state": "Printer Tilstand", "print_status": "Print Status", - "print_progress": "Progress", - "layers": "Layers" + "print_progress": "Fremskridt", + "layers": "Lag" }, "medusa": { - "wanted": "Wanted", - "queued": "Queued", - "series": "Series" + "wanted": "Ønskede", + "queued": "I Kø", + "series": "Serier" }, "octoprint": { "printer_state": "Status", "temp_tool": "Tool temp", "temp_bed": "Bed temp", - "job_completion": "Completion" + "job_completion": "Færdiggørelse" }, "cloudflared": { - "origin_ip": "Origin IP", + "origin_ip": "Oprindelses-IP", "status": "Status" }, "proxmoxbackupserver": { - "datastore_usage": "Datastore", - "failed_tasks_24h": "Failed Tasks 24h", + "datastore_usage": "Datalager", + "failed_tasks_24h": "Mislykkede Opgaver 24t", "cpu_usage": "CPU", - "memory_usage": "Memory" + "memory_usage": "Hukommelse" }, "immich": { - "users": "Users", - "photos": "Photos", - "videos": "Videos", - "storage": "Storage" + "users": "Brugere", + "photos": "Billeder", + "videos": "Videoer", + "storage": "Lager" }, "uptimekuma": { - "up": "Sites Up", - "down": "Sites Down", - "uptime": "Uptime", - "incident": "Incident", + "up": "Sider Oppe", + "down": "Sider Nede", + "uptime": "Oppetid", + "incident": "Hændelse", "m": "m" }, "komga": { - "libraries": "Libraries", - "series": "Series", - "books": "Books" + "libraries": "Biblioteker", + "series": "Serier", + "books": "Bøger" }, "mylar": { - "series": "Series", - "issues": "Issues", - "wanted": "Wanted" + "series": "Serier", + "issues": "Problemer", + "wanted": "Ønskede" }, "photoprism": { "albums": "Albums", - "photos": "Photos", - "videos": "Videos", - "people": "People" + "photos": "Billeder", + "videos": "Videoer", + "people": "Mennesker" }, "diskstation": { - "days": "Days", - "uptime": "Uptime", - "volumeAvailable": "Available" + "days": "Dage", + "uptime": "Oppetid", + "volumeAvailable": "Tilgængelig" }, "fileflows": { - "queue": "Queue", - "processing": "Processing", - "processed": "Processed", - "time": "Time" + "queue": "Kø", + "processing": "Behandler", + "processed": "Behandlet", + "time": "Tid" }, "grafana": { - "totalalerts": "Total Alerts", + "totalalerts": "Totale Advarsler", "dashboards": "Dashboards", - "datasources": "Data Sources", - "alertstriggered": "Alerts Triggered" + "datasources": "Data Kilder", + "alertstriggered": "Advarsler Udløst" }, "nextcloud": { - "memoryusage": "Memory Usage", - "cpuload": "Cpu Load", - "freespace": "Free Space", - "activeusers": "Active Users", - "numfiles": "Files", - "numshares": "Shared Items" + "memoryusage": "Hukommelse Forbrug", + "cpuload": "Cpu Belastning", + "freespace": "Ledig Plads", + "activeusers": "Aktive Brugere", + "numfiles": "Filer", + "numshares": "Delte Genstande" }, "kopia": { "status": "Status", - "size": "Size", - "lastrun": "Last Run", - "nextrun": "Next Run", - "failed": "Failed" + "size": "Størrelse", + "lastrun": "Sidst Kørt", + "nextrun": "Næste Kørsel", + "failed": "Mislykket" }, "unmanic": { - "active_workers": "Active Workers", - "total_workers": "Total Workers", - "records_total": "Queue Length" + "active_workers": "Aktive Arbejdere", + "total_workers": "Totale Arbejdere", + "records_total": "Kø Længde" }, "healthchecks": { - "new": "New", + "new": "Ny", "up": "Online", "grace": "In Grace Period", "down": "Offline", - "paused": "Paused", + "paused": "Pause", "status": "Status", - "last_ping": "Last Ping", - "never": "No pings yet" + "last_ping": "Sidste Ping", + "never": "Ingen Pings Endnu" }, "pterodactyl": { - "servers": "Servers", - "nodes": "Nodes" + "servers": "Servere", + "nodes": "Noder" }, "prometheus": { - "targets_up": "Targets Up", - "targets_down": "Targets Down", - "targets_total": "Total Targets" + "targets_up": "Mål Oppe", + "targets_down": "Mål Nede", + "targets_total": "Totale Mål" }, "minecraft": { - "players": "Players", + "players": "Afspillere", "version": "Version", "status": "Status", "up": "Online", "down": "Offline" }, "ghostfolio": { - "gross_percent_today": "Today", - "gross_percent_1y": "One year", - "gross_percent_max": "All time" + "gross_percent_today": "I Dag", + "gross_percent_1y": "Et År", + "gross_percent_max": "Altid" }, "audiobookshelf": { - "booksDuration": "Duration", + "booksDuration": "Varighed", "podcasts": "Podcasts", - "books": "Books", - "podcastsDuration": "Duration" + "books": "Bøger", + "podcastsDuration": "Varighed" }, "homeassistant": { - "people_home": "People Home", - "lights_on": "Lights On", - "switches_on": "Switches On" + "people_home": "Personer Hjemme", + "lights_on": "Lys Tændt", + "switches_on": "Kontakter Tændt" }, "freshrss": { - "subscriptions": "Subscriptions", - "unread": "Unread" + "subscriptions": "Abonnementer", + "unread": "Ulæst" }, "channelsdvrserver": { "shows": "Shows", - "recordings": "Recordings", - "scheduled": "Scheduled", + "recordings": "Optagelser", + "scheduled": "Planlagt", "passes": "Passes" }, "whatsupdocker": { - "monitoring": "Monitoring", - "updates": "Updates" + "monitoring": "Overvåger", + "updates": "Opdateringer" }, "tailscale": { - "address": "Address", - "expires": "Expires", - "now": "Now", + "address": "Adresse", + "expires": "Udløber", + "now": "Nu", "years": "{{number}}y", "weeks": "{{number}}w", "days": "{{number}}d", "hours": "{{number}}h", "minutes": "{{number}}m", "seconds": "{{number}}s", - "never": "Never", - "last_seen": "Last Seen", - "ago": "{{value}} Ago" + "never": "Aldrig", + "last_seen": "Sidst Set", + "ago": "{{value}} Siden" }, "qnap": { - "cpuUsage": "CPU Usage", - "memUsage": "MEM Usage", + "cpuUsage": "CPU Forbrug", + "memUsage": "MEM Forbrug", "systemTempC": "System Temp", - "poolUsage": "Pool Usage", - "volumeUsage": "Volume Usage", - "invalid": "Invalid" + "poolUsage": "Pool Forbrug", + "volumeUsage": "Volume Forbrug", + "invalid": "Ugyldig" }, "pfsense": { - "load": "Load Avg", - "memory": "Mem Usage", + "load": "Belastning Gns", + "memory": "Hukommelse Forbrug", "wanStatus": "WAN Status", - "up": "Up", - "down": "Down", + "up": "Op", + "down": "Ned", "temp": "Temp", - "disk": "Disk Usage", + "disk": "Disk Forbrug", "wanIP": "WAN IP" }, "caddy": { "upstreams": "Upstreams", - "requests": "Current requests", - "requests_failed": "Failed requests" + "requests": "Aktuelle anmodninger", + "requests_failed": "Mislykkede anmodninger" }, "evcc": { - "pv_power": "Production", - "battery_soc": "Battery", - "grid_power": "Grid", - "home_power": "Consumption", - "charge_power": "Charger", + "pv_power": "Produktion", + "battery_soc": "Batteri", + "grid_power": "Gitter", + "home_power": "Forbrug", + "charge_power": "Oplader", "watt_hour": "Wh" }, "pialert": { "total": "Total", - "connected": "Connected", - "new_devices": "New Devices", - "down_alerts": "Down Alerts" + "connected": "Forbundet", + "new_devices": "Nye Enheder", + "down_alerts": "Nedadvarsler" }, "jdownloader": { - "downloadSpeed": "Download Speed", - "downloadCount": "Queue Count", - "downloadBytesRemaining": "Remaining", - "downloadTotalBytes": "Size" + "downloadSpeed": "Hastighed", + "downloadCount": "Kø", + "downloadBytesRemaining": "Tilbage", + "downloadTotalBytes": "Størrelse" }, "kavita": { - "seriesCount": "Series", - "totalFiles": "Files" + "seriesCount": "Serier", + "totalFiles": "Filer" }, "gamedig": { - "name": "Name", - "map": "Map", - "currentPlayers": "Current players", - "players": "Players", - "maxPlayers": "Max players", + "name": "Navn", + "map": "Kort", + "currentPlayers": "Nuværende Spillere", + "players": "Spillere", + "maxPlayers": "Maks spillere", "bots": "Bots", "ping": "Ping", "status": "Status", @@ -675,36 +678,73 @@ "offline": "Offline" }, "azuredevops": { - "result": "Result", + "result": "Resultat", "status": "Status", "buildId": "Build ID", - "succeeded": "Succeeded", - "notStarted": "Not Started", - "failed": "Failed", - "canceled": "Canceled", - "inProgress": "In Progress", + "succeeded": "Lykkedes", + "notStarted": "Ikke Startet", + "failed": "Mislykket", + "canceled": "Annulleret", + "inProgress": "I Gang", "totalPrs": "Total PRs", - "myPrs": "My PRs", - "approved": "Approved" + "myPrs": "Mine PRs", + "approved": "Godkendt" }, "urbackup": { "ok": "Ok", - "errored": "Errors", - "noRecent": "Out of Date", - "totalUsed": "Used Storage" + "errored": "Fejl", + "noRecent": "Uddateret", + "totalUsed": "Brugt Lager" }, "openmediavault": { - "downloading": "Downloading", + "downloading": "Downloader", "total": "Total", - "running": "Running", - "stopped": "Stopped", - "passed": "Passed", - "failed": "Failed" + "running": "Kører", + "stopped": "Stoppet", + "passed": "Gennemført", + "failed": "Mislykket" }, "mealie": { - "recipes": "Recipes", - "users": "Users", - "categories": "Categories", + "recipes": "Opskrifter", + "users": "Brugere", + "categories": "Kategorier", "tags": "Tags" + }, + "atsumeru": { + "series": "Serier", + "archives": "Arkiver", + "chapters": "Kapitler", + "categories": "Kategorier" + }, + "calibreweb": { + "books": "Bøger", + "authors": "Forfattere", + "categories": "Kategorier", + "series": "Serier" + }, + "uptimerobot": { + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/de/common.json b/public/locales/de/common.json index db017c20..429315b3 100644 --- a/public/locales/de/common.json +++ b/public/locales/de/common.json @@ -5,7 +5,7 @@ "status": "Status", "url": "URL", "information": "Informationen", - "raw_error": "Roher Fehler", + "raw_error": "Raw Fehler", "response_data": "Empfangene Daten" }, "search": { @@ -14,7 +14,7 @@ "resources": { "total": "Gesamt", "free": "Frei", - "used": "In Verwendung", + "used": "In Benutzung", "load": "Last", "cpu": "Prozessor", "mem": "Speicher", @@ -34,7 +34,7 @@ "offline": "Offline", "error": "Fehler", "unknown": "Unbekannt", - "running": "Laufend", + "running": "Wird ausgeführt", "starting": "Startet", "unhealthy": "Unhealthy", "not_found": "Nicht gefunden", @@ -43,8 +43,8 @@ "healthy": "Healthy" }, "emby": { - "playing": "Aktuelle Wiedergaben", - "transcoding": "Transkodieren", + "playing": "Wiedergabe", + "transcoding": "Transcodiert", "bitrate": "Bitrate", "no_active": "Keine aktiven Streams", "movies": "Filme", @@ -53,11 +53,11 @@ "songs": "Songs" }, "tautulli": { - "playing": "Spielen", + "playing": "Wiedergabe", "transcoding": "Transcodierung", "bitrate": "Bitrate", "no_active": "Keine aktiven Streams", - "plex_connection_error": "Check Plex Connection" + "plex_connection_error": "Prüfe Plex Verbindung" }, "rutorrent": { "active": "Aktiv", @@ -67,17 +67,17 @@ "sonarr": { "wanted": "Gesucht", "queued": "In Warteschlange", - "series": "Serien", - "queue": "Queue", - "unknown": "Unknown" + "series": "Serie", + "queue": "Warteschlange", + "unknown": "Unbekannt" }, "radarr": { "wanted": "Gesucht", "queued": "In Warteschlange", "movies": "Filme", "missing": "Fehlt", - "queue": "Queue", - "unknown": "Unknown" + "queue": "Warteschlange", + "unknown": "Unbekannt" }, "readarr": { "wanted": "Gesucht", @@ -106,14 +106,14 @@ "ping": "Ping" }, "portainer": { - "running": "Betrieb", + "running": "In Betrieb", "stopped": "Gestoppt", "total": "Gesamt" }, "traefik": { "routers": "Router", "services": "Dienste", - "middleware": "Zwischenanwendung" + "middleware": "Middleware" }, "npm": { "enabled": "Aktiviert", @@ -159,10 +159,10 @@ "numberOfGrabs": "Abrufungen", "numberOfQueries": "Anfragen", "numberOfFailGrabs": "Fehlgeschlagene Abrufungen", - "numberOfFailQueries": "Fehlgeschlagene Anfragen" + "numberOfFailQueries": "Fehlgeschlagene Abfragen" }, "transmission": { - "download": "Herunterladen", + "download": "Download", "upload": "Hochladen", "leech": "Leech", "seed": "Seed" @@ -178,7 +178,7 @@ "lidarr": { "wanted": "Gesucht", "queued": "In Warteschlange", - "artists": "Artists" + "artists": "Künstler" }, "adguard": { "queries": "Anfragen", @@ -193,7 +193,7 @@ "seed": "Seed" }, "mastodon": { - "user_count": "Nutzer", + "user_count": "Benutzer", "status_count": "Beiträge", "domain_count": "Domänen" }, @@ -209,14 +209,14 @@ "failedLoginsLast24H": "fehlerhafte Anmeldungen (24h)" }, "proxmox": { - "mem": "RAM", + "mem": "Speicher", "cpu": "CPU", "lxc": "LXC", "vms": "VMs" }, "unifi": { "users": "Benutzer", - "uptime": "System-Betriebszeit", + "uptime": "System-Laufzeit", "days": "Tage", "wan": "WAN", "lan_users": "LAN Benutzer", @@ -229,7 +229,7 @@ "devices": "Geräte", "lan_devices": "LAN-Geräte", "wlan_devices": "WLAN-Geräte", - "empty_data": "Subsystem-Status unbekannt" + "empty_data": "Subsystem Status unbekannt" }, "plex": { "streams": "Aktive Streams", @@ -249,48 +249,49 @@ "total": "Gesamt", "free": "Frei", "used": "Verwendet", - "write": "Write", + "write": "Schreiben", "gpu": "GPU", - "mem": "Mem", + "mem": "Speicher", "swap": "Swap", - "crit": "Crit", - "read": "Read" + "crit": "Krit", + "read": "Lesen", + "_temp": "Temperatur" }, "changedetectionio": { "totalObserved": "Gesamt beobachtet", "diffsDetected": "Erkannte Differenzen" }, "wmo": { - "0-day": "Sonnig", - "0-night": "Klar", - "1-day": "Überwiegend sonnig", - "1-night": "Überwiegend klar", - "2-day": "Teilweise bewölkt", - "2-night": "Teilweise bewölkt", + "0-day": "sonnig", + "0-night": "klar", + "1-day": "überwiegend sonnig", + "1-night": "überwiegend klar", + "2-day": "teilweise bewölkt", + "2-night": "teilweise bewölkt", "3-day": "bewölkt", - "57-day": "Gefrierender Nieselregen", - "61-day": "Leichter Regen", - "65-night": "Starker Regen", + "57-day": "gefrierender Nieselregen", + "61-day": "leichter Regen", + "65-night": "starker Regen", "66-day": "Gefrierender Regen", "66-night": "Gefrierender Regen", - "3-night": "Bewölkt", - "45-day": "Neblig", - "45-night": "Neblig", - "48-day": "Neblig", - "48-night": "Neblig", - "51-day": "Leichter Nieselregen", - "51-night": "Leichter Nieselregen", - "55-day": "Starker Nieselregen", + "3-night": "bewölkt", + "45-day": "neblig", + "45-night": "neblig", + "48-day": "neblig", + "48-night": "neblig", + "51-day": "leichter Nieselregen", + "51-night": "leichter Nieselregen", + "55-day": "starker Nieselregen", "53-day": "Nieselregen", "53-night": "Nieselregen", - "55-night": "Starker Nieselregen", - "56-day": "Leichter gefrierender Nieselregen", - "56-night": "Leichter eisiger Nieselregen", - "57-night": "Gefrierender Nieselregen", - "61-night": "Leichter Regen", + "55-night": "starker Nieselregen", + "56-day": "leichter gefrierender Nieselregen", + "56-night": "leichter eisiger Nieselregen", + "57-night": "gefrierender Nieselregen", + "61-night": "leichter Regen", "63-day": "Regen", "63-night": "Regen", - "65-day": "Starker Regen", + "65-day": "starker Regen", "67-day": "Gefrierender Regen", "67-night": "Gefrierender Regen", "71-day": "Leichter Schneefall", @@ -361,7 +362,7 @@ "time": "{{value, number(style: unit; unitDisplay: long;)}}" }, "navidrome": { - "nothing_streaming": "Keine Aktiven Übertragungen", + "nothing_streaming": "Keine aktiven Wiedergaben", "please_wait": "Bitte warten" }, "pyload": { @@ -381,7 +382,9 @@ }, "ping": { "ping": "Ping", - "error": "Fehler" + "error": "Fehler", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Bestanden", @@ -415,7 +418,7 @@ "read": "Lesen" }, "nextdns": { - "wait": "Bitte Warten", + "wait": "Bitte warten", "no_devices": "Keine Daten empfangen" }, "common": { @@ -425,9 +428,9 @@ "omada": { "connectedAp": "Verbundene APs", "activeUser": "Aktive Geräte", - "alerts": "Meldungen", + "alerts": "Alarme", "connectedGateway": "Verbundene Gateways", - "connectedSwitches": "Verbundene Switches" + "connectedSwitches": "Verbundene Switche" }, "downloadstation": { "download": "Download", @@ -438,7 +441,7 @@ "mikrotik": { "cpuLoad": "CPU Auslastung", "memoryUsed": "RAM Verbrauch", - "uptime": "Laufzeit", + "uptime": "Betriebszeit", "numberOfLeases": "Leases" }, "xteve": { @@ -488,7 +491,7 @@ "uptimekuma": { "up": "Seiten verfügbar", "down": "Seiten nicht verfügbar", - "uptime": "Laufzeit", + "uptime": "Betriebszeit", "incident": "Vorfall", "m": "m" }, @@ -510,7 +513,7 @@ }, "diskstation": { "days": "Tage", - "uptime": "Laufzeit", + "uptime": "Betriebszeit", "volumeAvailable": "Verfügbar" }, "fileflows": { @@ -557,7 +560,7 @@ }, "pterodactyl": { "servers": "Server", - "nodes": "Nodes" + "nodes": "Knotenpunkte" }, "prometheus": { "targets_up": "Ziele Up", @@ -620,7 +623,7 @@ "memUsage": "MEM Nutzung", "systemTempC": "System Temp", "poolUsage": "Pool Nutzung", - "volumeUsage": "Volume Usage", + "volumeUsage": "Speicher Nutzung", "invalid": "Ungültig" }, "pfsense": { @@ -642,8 +645,8 @@ "watt_hour": "Wh", "pv_power": "Produktion", "battery_soc": "Batterie", - "grid_power": "Grid", - "home_power": "Verbrauch", + "grid_power": "Netzstrom", + "home_power": "verbauch", "charge_power": "Ladegerät" }, "pialert": { @@ -653,58 +656,95 @@ "down_alerts": "Down Alarme" }, "jdownloader": { - "downloadCount": "Queue Count", - "downloadSpeed": "Download Speed", - "downloadBytesRemaining": "Remaining", - "downloadTotalBytes": "Size" + "downloadCount": "Warteschlange", + "downloadSpeed": "Geschwindigkeit", + "downloadBytesRemaining": "Verbleibend", + "downloadTotalBytes": "Größe" }, "kavita": { - "seriesCount": "Series", - "totalFiles": "Files" + "seriesCount": "Serie", + "totalFiles": "Dateien" }, "gamedig": { "name": "Name", - "map": "Map", - "currentPlayers": "Current players", - "players": "Players", + "map": "Karte", + "currentPlayers": "Aktuelle Spieler", + "players": "Spieler", "bots": "Bots", "ping": "Ping", - "maxPlayers": "Max players", + "maxPlayers": "Max. Spieler", "status": "Status", "online": "Online", "offline": "Offline" }, "azuredevops": { - "result": "Result", + "result": "Ergebnis", "status": "Status", - "buildId": "Build ID", - "succeeded": "Succeeded", - "notStarted": "Not Started", - "failed": "Failed", - "canceled": "Canceled", - "totalPrs": "Total PRs", - "myPrs": "My PRs", - "approved": "Approved", - "inProgress": "In Progress" + "buildId": "Build-ID", + "succeeded": "Erfolgreich", + "notStarted": "Nicht gestartet", + "failed": "Fehlgeschlagen", + "canceled": "Abgebrochen", + "totalPrs": "Gesamt PRs", + "myPrs": "Meine PRs", + "approved": "Genehmigt", + "inProgress": "In Bearbeitung" }, "urbackup": { "ok": "Ok", - "errored": "Errors", - "noRecent": "Out of Date", - "totalUsed": "Used Storage" + "errored": "Fehler", + "noRecent": "Nicht mehr aktuell", + "totalUsed": "Belegter Speicherplatz" }, "openmediavault": { - "downloading": "Downloading", - "total": "Total", - "running": "Running", - "stopped": "Stopped", - "passed": "Passed", - "failed": "Failed" + "downloading": "Wird heruntergeladen", + "total": "Gesamt", + "running": "Wird ausgeführt", + "stopped": "Gestoppt", + "passed": "Bestanden", + "failed": "Fehlgeschlagen" }, "mealie": { - "recipes": "Recipes", - "users": "Users", - "categories": "Categories", - "tags": "Tags" + "recipes": "Rezepte", + "users": "Benutzer", + "categories": "Kategorien", + "tags": "Schlagwörter" + }, + "atsumeru": { + "series": "Serie", + "archives": "Archive", + "chapters": "Kapitel", + "categories": "Kategorien" + }, + "calibreweb": { + "books": "Bücher", + "authors": "Autoren", + "categories": "Kategorien", + "series": "Serie" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Betriebszeit", + "lastDown": "Letzte Ausfallzeit", + "downDuration": "Ausfallzeit Dauer", + "sitesUp": "Seiten verfügbar", + "sitesDown": "Seiten nicht verfügbar", + "paused": "Pausiert", + "notyetchecked": "Noch nicht geprüft", + "up": "Up", + "seemsdown": "Scheint nicht verfügbar", + "down": "nicht verfügbar", + "unknown": "Unbekannt" + }, + "opendtu": { + "relativePower": "Produktion %", + "yieldDay": "Heute", + "limit": "Limit", + "absolutePower": "Produktion" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/el/common.json b/public/locales/el/common.json index ba94bf9e..3d7d3b73 100644 --- a/public/locales/el/common.json +++ b/public/locales/el/common.json @@ -136,7 +136,9 @@ }, "ping": { "error": "Σφάλμα", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "emby": { "playing": "Παίζει", @@ -150,9 +152,9 @@ }, "flood": { "download": "Λήξη", - "upload": "Φόρτωση", - "leech": "Αφαίμαξη", - "seed": "Σπείρε" + "upload": "Μεταφόρτωση", + "leech": "Leech", + "seed": "Seed" }, "changedetectionio": { "totalObserved": "Συνολικά παρατηρηθείσα", @@ -212,8 +214,8 @@ "unknown": "Άγνωστο" }, "downloadstation": { - "download": "Μεταφόρτωση", - "upload": "Φόρτωση", + "download": "Λήψη", + "upload": "Μεταφόρτωση", "leech": "Leech", "seed": "Seed" }, @@ -375,7 +377,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "quicklaunch": { "bookmark": "Bookmark", @@ -431,7 +434,7 @@ }, "pyload": { "speed": "Speed", - "active": "Active", + "active": "Ενεργό", "queue": "Queue", "total": "Total" }, @@ -589,7 +592,7 @@ }, "freshrss": { "subscriptions": "Συνδρομές", - "unread": "Αδιάβαστο" + "unread": "Μη Διαβασμένο" }, "channelsdvrserver": { "shows": "Εκπομπές", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "up": "Up", + "unknown": "Unknown", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "seemsdown": "Seems Down", + "down": "Down" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/en/common.json b/public/locales/en/common.json index 2cf3f1ba..cd6012f8 100644 --- a/public/locales/en/common.json +++ b/public/locales/en/common.json @@ -79,8 +79,12 @@ "partial": "Partial" }, "ping": { + "http_status": "HTTP status", "error": "Error", - "ping": "Ping" + "ping": "Ping", + "down": "Down", + "up": "Up", + "not_available": "Not Available" }, "emby": { "playing": "Playing", @@ -365,6 +369,7 @@ "load": "Load", "wait": "Please wait", "temp": "TEMP", + "_temp": "Temp", "warn": "Warn", "uptime": "UP", "total": "Total", @@ -528,6 +533,12 @@ "streams_active": "Active Streams", "streams_xepg": "XEPG Channels" }, + "opendtu": { + "yieldDay": "Today", + "absolutePower": "Power", + "relativePower": "Power %", + "limit": "Limit" + }, "opnsense": { "cpu": "CPU Load", "memory": "Active Memory", @@ -579,6 +590,12 @@ "incident": "Incident", "m": "m" }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, "komga": { "libraries": "Libraries", "series": "Series", @@ -661,6 +678,12 @@ "monitoring": "Monitoring", "updates": "Updates" }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, "jdownloader": { "downloadCount": "Queue", "downloadBytesRemaining": "Remaining", @@ -715,5 +738,24 @@ "stopped": "Stopped", "passed": "Passed", "failed": "Failed" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "calendar": { + "inCinemas": "In cinemas", + "physicalRelease": "Physical release", + "digitalRelease": "Digital release" } } diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json index aebc9dc2..8bf946d8 100644 --- a/public/locales/eo/common.json +++ b/public/locales/eo/common.json @@ -67,7 +67,9 @@ }, "ping": { "error": "Eraro", - "ping": "Sondaĵo" + "ping": "Sondaĵo", + "up": "Up", + "down": "Down" }, "emby": { "playing": "Ludante", @@ -272,7 +274,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "quicklaunch": { "bookmark": "Bookmark", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "categories": "Categories", + "authors": "Authors", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "notyetchecked": "Not Yet Checked", + "downDuration": "Downtime Duration", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/es/common.json b/public/locales/es/common.json index e2592519..348b8c5a 100644 --- a/public/locales/es/common.json +++ b/public/locales/es/common.json @@ -48,7 +48,7 @@ "bitrate": "Tasa de bits", "no_active": "Sin transmisiones activas", "movies": "Películas", - "series": "Serie", + "series": "Series", "episodes": "Episodios", "songs": "Canciones" }, @@ -254,7 +254,8 @@ "write": "Escribir", "gpu": "GPU", "mem": "Memoria", - "swap": "Intercambiar" + "swap": "Intercambiar", + "_temp": "Temperatura" }, "changedetectionio": { "totalObserved": "Total Observados", @@ -299,8 +300,8 @@ "73-night": "Nevada", "75-day": "Fuertes Nevadas", "75-night": "Fuertes Nevadas", - "77-day": "Nevada Leve", - "77-night": "Nevada Leve", + "77-day": "Granizada", + "77-night": "Granizada", "80-day": "Llovizna", "80-night": "Llovizna", "81-day": "Lluvia", @@ -381,7 +382,9 @@ }, "ping": { "error": "Error", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Aprobado", @@ -461,7 +464,7 @@ "medusa": { "wanted": "Querido", "queued": "A la espera", - "series": "Serie" + "series": "Series" }, "octoprint": { "temp_bed": "Temperatura de la plataforma", @@ -659,7 +662,7 @@ "downloadTotalBytes": "Tamaño" }, "kavita": { - "seriesCount": "Serie", + "seriesCount": "Series", "totalFiles": "Archivos" }, "gamedig": { @@ -702,9 +705,46 @@ "failed": "Fallido" }, "mealie": { - "recipes": "Recipes", - "users": "Users", - "categories": "Categories", - "tags": "Tags" + "recipes": "Recetas", + "users": "Usuarios", + "categories": "Categorías", + "tags": "Etiquetas" + }, + "atsumeru": { + "series": "Series", + "archives": "Archivos", + "chapters": "Capítulos", + "categories": "Categorías" + }, + "calibreweb": { + "books": "Libros", + "authors": "Autores", + "categories": "Categorías", + "series": "Series" + }, + "uptimerobot": { + "status": "Estado", + "uptime": "Tiempo de actividad", + "lastDown": "Último periodo de inactividad", + "downDuration": "Tiempo de inactividad", + "sitesUp": "Páginas web con conexión", + "sitesDown": "Páginas web caídas", + "paused": "Pausado", + "notyetchecked": "Aún no verificado", + "up": "Arriba", + "seemsdown": "Parece caída", + "down": "Abajo", + "unknown": "Desconocido" + }, + "opendtu": { + "relativePower": "Encender %", + "yieldDay": "Hoy", + "limit": "Límite", + "absolutePower": "Encender" + }, + "calendar": { + "physicalRelease": "Lanzamiento en físico", + "inCinemas": "En cine", + "digitalRelease": "Lanzamiento en digital" } } diff --git a/public/locales/eu/common.json b/public/locales/eu/common.json index 4fa20c75..f8221ef0 100644 --- a/public/locales/eu/common.json +++ b/public/locales/eu/common.json @@ -140,7 +140,9 @@ }, "ping": { "error": "Errorea", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "emby": { "playing": "Playing", @@ -437,7 +439,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "quicklaunch": { "bookmark": "Bookmark", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "uptime": "Uptime", + "status": "Status", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json index 050db077..a7e49f58 100644 --- a/public/locales/fi/common.json +++ b/public/locales/fi/common.json @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Total Observed", @@ -381,7 +382,9 @@ }, "ping": { "error": "Error", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Passed", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories", + "series": "Series" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json index ea30ccb7..6fc4c07d 100644 --- a/public/locales/fr/common.json +++ b/public/locales/fr/common.json @@ -254,7 +254,8 @@ "write": "Écrit.", "gpu": "GPU", "mem": "Mém.", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Total Observé", @@ -381,7 +382,9 @@ }, "ping": { "error": "Erreur", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Réussi", @@ -526,7 +529,7 @@ "alertstriggered": "Alertes déclenchées" }, "nextcloud": { - "freespace": "Espace Libre", + "freespace": "Libre", "activeusers": "Utilisateurs Actifs", "cpuload": "Charge Cpu", "memoryusage": "Utilisation Mémoire", @@ -702,9 +705,46 @@ "failed": "Échoué" }, "mealie": { - "recipes": "Recipes", - "users": "Users", - "categories": "Categories", - "tags": "Tags" + "recipes": "Recettes", + "users": "Utilisateurs", + "categories": "Catégories", + "tags": "Étiquettes" + }, + "atsumeru": { + "series": "Séries", + "archives": "Archives", + "chapters": "Chapitres", + "categories": "Catégories" + }, + "calibreweb": { + "series": "Séries", + "books": "Ebooks", + "authors": "Auteurs", + "categories": "Catégories" + }, + "uptimerobot": { + "status": "Statut", + "uptime": "Disponibilité", + "lastDown": "Dernière interruption", + "downDuration": "Durée d'interruption", + "sitesUp": "Sites en ligne", + "sitesDown": "Sites hors ligne", + "paused": "En pause", + "notyetchecked": "Non vérifié", + "up": "En ligne", + "seemsdown": "Semble hors ligne", + "down": "Hors ligne", + "unknown": "Inconnu" + }, + "opendtu": { + "relativePower": "Puissance %", + "yieldDay": "Aujourd'hui", + "limit": "Limite", + "absolutePower": "Puissance" + }, + "calendar": { + "physicalRelease": "Release physique", + "inCinemas": "En salle", + "digitalRelease": "Release digitale" } } diff --git a/public/locales/he/common.json b/public/locales/he/common.json index 4690d1bc..dddda0aa 100644 --- a/public/locales/he/common.json +++ b/public/locales/he/common.json @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Total Observed", @@ -381,7 +382,9 @@ }, "ping": { "error": "Error", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Passed", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json index 99295197..7c3261c6 100644 --- a/public/locales/hi/common.json +++ b/public/locales/hi/common.json @@ -262,7 +262,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "quicklaunch": { "bookmark": "Bookmark", @@ -381,7 +382,9 @@ }, "ping": { "error": "Error", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Passed", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "chapters": "Chapters", + "categories": "Categories", + "series": "Series", + "archives": "Archives" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json index 5b0f7e4f..939cc589 100644 --- a/public/locales/hr/common.json +++ b/public/locales/hr/common.json @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Ukupno promatrano", @@ -381,7 +382,9 @@ }, "ping": { "error": "Greška", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Uspjelo", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "categories": "Categories", + "series": "Series", + "authors": "Authors" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json index a2cff3ab..8f4a5d0c 100644 --- a/public/locales/hu/common.json +++ b/public/locales/hu/common.json @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Összes Megfigyelt", @@ -381,7 +382,9 @@ }, "ping": { "error": "Hiba", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Megfelelt", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "series": "Series", + "categories": "Categories" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/id/common.json b/public/locales/id/common.json index 26c4e251..1794cce5 100644 --- a/public/locales/id/common.json +++ b/public/locales/id/common.json @@ -228,7 +228,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "quicklaunch": { "bookmark": "Bookmark", @@ -609,7 +610,9 @@ }, "ping": { "error": "Error", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "emby": { "playing": "Playing", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/it/common.json b/public/locales/it/common.json index 27a93aaf..7eac5dad 100644 --- a/public/locales/it/common.json +++ b/public/locales/it/common.json @@ -9,11 +9,11 @@ "unknown": "Sconosciuto", "running": "In esecuzione", "starting": "In avvio", - "unhealthy": "Unhealthy", + "unhealthy": "Non sano", "not_found": "Non trovato", "exited": "Uscito", "partial": "Parziale", - "healthy": "Healthy" + "healthy": "Sano" }, "emby": { "playing": "In riproduzione", @@ -30,7 +30,7 @@ "transcoding": "Transcodifica", "bitrate": "Bitrate", "no_active": "Nessuno Stream Attivo", - "plex_connection_error": "Check Plex Connection" + "plex_connection_error": "Controllare la connessione a Plex" }, "speedtest": { "upload": "Upload", @@ -53,7 +53,7 @@ "status": "Stato", "url": "URL", "information": "Informazione", - "raw_error": "Raw Error", + "raw_error": "Errore non processato", "response_data": "Dati risposta" }, "search": { @@ -76,8 +76,8 @@ }, "rutorrent": { "active": "Attivo", - "upload": "Upload", - "download": "Download" + "upload": "Caricamento", + "download": "Scaricamento" }, "sonarr": { "series": "Serie", @@ -116,7 +116,7 @@ "blocked_percent": "Bloccato %" }, "npm": { - "enabled": "Attivi", + "enabled": "Abilitato", "disabled": "Disabilitati", "total": "Totali" }, @@ -156,20 +156,20 @@ }, "prowlarr": { "enableIndexers": "Indicizzatori", - "numberOfGrabs": "Grabs", + "numberOfGrabs": "Grab", "numberOfQueries": "Interrogazioni", "numberOfFailGrabs": "Grabs Falliti", "numberOfFailQueries": "Queries Fallite" }, "transmission": { - "download": "Download", - "upload": "Upload", - "leech": "Leech", + "download": "Scaricamento", + "upload": "Caricamento", + "leech": "In scaricamento", "seed": "Seed" }, "jackett": { "configured": "Configurato", - "errored": "Errore" + "errored": "In errore" }, "bazarr": { "missingEpisodes": "Episodi Mancanti", @@ -187,9 +187,9 @@ "latency": "Latenza" }, "qbittorrent": { - "download": "Download", - "leech": "Leech", - "upload": "Upload", + "download": "Scaricamento", + "leech": "In scaricamento", + "upload": "Caricamento", "seed": "Seed" }, "mastodon": { @@ -242,19 +242,20 @@ "wait": "Attendere prego", "temp": "TEMP", "uptime": "UP", - "days": "d", - "hours": "h", + "days": "g", + "hours": "o", "load": "Carico", "warn": "Avviso", "total": "Totale", "free": "Libero", "used": "Usato", - "crit": "Crit", - "read": "Read", - "write": "Write", + "crit": "Critico", + "read": "Lettura", + "write": "Scrittura", "gpu": "GPU", - "mem": "Mem", - "swap": "Swap" + "mem": "Mem.", + "swap": "Swap", + "_temp": "Temp." }, "changedetectionio": { "totalObserved": "Totale Osservato", @@ -331,7 +332,7 @@ "updates": "Aggiornamenti", "update_available": "Aggiornamento Disponibile", "up_to_date": "Aggiornato", - "child_bridges": "Child Bridges", + "child_bridges": "Bridge Figli", "child_bridges_status": "{{ok}}/{{total}}", "up": "Up", "pending": "In attesa", @@ -373,7 +374,7 @@ "gluetun": { "public_ip": "IP pubblico", "region": "Località", - "country": "Stato" + "country": "Paese" }, "hdhomerun": { "channels": "Canali", @@ -381,7 +382,9 @@ }, "ping": { "error": "Errore", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Passati", @@ -393,21 +396,21 @@ "total": "Totali" }, "deluge": { - "download": "Download", - "upload": "Upload", - "leech": "Leech", + "download": "Scaricamento", + "upload": "Caricamento", + "leech": "In scaricamento", "seed": "Seed" }, "flood": { "download": "Download", "upload": "Upload", - "leech": "Leech", + "leech": "In scaricamento", "seed": "Seed" }, "tdarr": { "queue": "In coda", "processed": "Elaborati", - "errored": "Errori", + "errored": "In errore", "saved": "Salvati" }, "miniflux": { @@ -432,7 +435,7 @@ "downloadstation": { "download": "Download", "upload": "Upload", - "leech": "Leech", + "leech": "In scaricamento", "seed": "Seed" }, "mikrotik": { @@ -465,8 +468,8 @@ }, "octoprint": { "printer_state": "Stato", - "temp_tool": "Tool temp", - "temp_bed": "Bed temp", + "temp_tool": "Temp. utensile", + "temp_bed": "Temp. letto", "job_completion": "Completamento" }, "cloudflared": { @@ -474,7 +477,7 @@ "status": "Stato" }, "proxmoxbackupserver": { - "datastore_usage": "Datastore", + "datastore_usage": "Archivio dati", "failed_tasks_24h": "Attività Non Riuscite 24h", "cpu_usage": "CPU", "memory_usage": "Memoria" @@ -483,12 +486,12 @@ "users": "Utenti", "photos": "Foto", "videos": "Video", - "storage": "Memoria" + "storage": "Archiviazione" }, "uptimekuma": { "up": "Siti On", "down": "Siti Down", - "uptime": "Uptime", + "uptime": "Operatività", "incident": "Incidente", "m": "m" }, @@ -510,7 +513,7 @@ }, "diskstation": { "days": "Giorni", - "uptime": "Uptime", + "uptime": "Periodo Attività", "volumeAvailable": "Disponibile" }, "fileflows": { @@ -520,7 +523,7 @@ "time": "Tempo" }, "grafana": { - "dashboards": "Dashboards", + "dashboards": "Dashboard", "datasources": "Origine dei Dati", "totalalerts": "Avvisi Totali", "alertstriggered": "Avvisi Attivati" @@ -560,8 +563,8 @@ "nodes": "Nodi" }, "prometheus": { - "targets_up": "Targets Up", - "targets_down": "Targets Down", + "targets_up": "Target Attivi", + "targets_down": "Target Non Attivi", "targets_total": "Targets Totali" }, "minecraft": { @@ -663,48 +666,85 @@ "totalFiles": "File" }, "gamedig": { - "name": "Name", - "map": "Map", - "currentPlayers": "Current players", - "players": "Players", - "maxPlayers": "Max players", - "bots": "Bots", + "name": "Nome", + "map": "Mappa", + "currentPlayers": "Giocatori attuali", + "players": "Giocatori", + "maxPlayers": "Giocatori max", + "bots": "Bot", "ping": "Ping", - "status": "Status", + "status": "Stato", "online": "Online", "offline": "Offline" }, "azuredevops": { - "result": "Result", - "myPrs": "My PRs", - "approved": "Approved", - "status": "Status", - "buildId": "Build ID", - "succeeded": "Succeeded", - "notStarted": "Not Started", - "failed": "Failed", - "canceled": "Canceled", - "inProgress": "In Progress", - "totalPrs": "Total PRs" + "result": "Risultato", + "myPrs": "Miei PR", + "approved": "Approvato", + "status": "Stato", + "buildId": "ID Build", + "succeeded": "Riuscito", + "notStarted": "Non Avviato", + "failed": "Fallito", + "canceled": "Cancellato", + "inProgress": "In corso", + "totalPrs": "PR Totali" }, "urbackup": { "ok": "Ok", - "errored": "Errors", - "noRecent": "Out of Date", - "totalUsed": "Used Storage" + "errored": "Errori", + "noRecent": "Obsoleto", + "totalUsed": "Spazio usato" }, "openmediavault": { - "total": "Total", - "running": "Running", - "downloading": "Downloading", - "stopped": "Stopped", - "passed": "Passed", - "failed": "Failed" + "total": "Totale", + "running": "In funzione", + "downloading": "Download in corso", + "stopped": "Fermati", + "passed": "Riusciti", + "failed": "Falliti" }, "mealie": { - "recipes": "Recipes", - "users": "Users", - "categories": "Categories", - "tags": "Tags" + "recipes": "Ricette", + "users": "Utenti", + "categories": "Categorie", + "tags": "Tag" + }, + "atsumeru": { + "series": "Serie", + "archives": "Archivi", + "chapters": "Capitoli", + "categories": "Categorie" + }, + "calibreweb": { + "books": "Libri", + "authors": "Autori", + "categories": "Categorie", + "series": "Serie" + }, + "uptimerobot": { + "status": "Stato", + "uptime": "Tempo di attività", + "lastDown": "Ultimo periodo di inattività", + "downDuration": "Durata inattività", + "sitesUp": "Siti attivi", + "sitesDown": "Siti non attivi", + "paused": "In pausa", + "notyetchecked": "Non ancora controllati", + "up": "Attivi", + "seemsdown": "Sembrano non attivi", + "down": "Non attivi", + "unknown": "Sconosciuto" + }, + "opendtu": { + "relativePower": "Potenza %", + "yieldDay": "Oggi", + "limit": "Limite", + "absolutePower": "Potenza" + }, + "calendar": { + "physicalRelease": "Release fisici", + "inCinemas": "Al cinema", + "digitalRelease": "Digital release" } } diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json index e8c607d7..3aed8ef7 100644 --- a/public/locales/ja/common.json +++ b/public/locales/ja/common.json @@ -11,7 +11,7 @@ "strelaysrv": { "numActiveSessions": "セッション", "numConnections": "コネクション", - "dataRelayed": "Relayed", + "dataRelayed": "中継", "transferRate": "レート" }, "glances": { @@ -21,17 +21,18 @@ "uptime": "UP", "days": "日", "hours": "時間", - "load": "Load", - "warn": "Warn", - "total": "Total", - "free": "Free", - "used": "Used", + "load": "ロード", + "warn": "警告", + "total": "トータル", + "free": "空き", + "used": "使用中", "crit": "Crit", - "read": "Read", - "write": "Write", + "read": "読み込み", + "write": "書き込み", "gpu": "GPU", - "mem": "Mem", - "swap": "Swap" + "mem": "メモリ", + "swap": "スワップ", + "_temp": "Temp" }, "autobrr": { "filters": "フィルター", @@ -116,7 +117,9 @@ }, "ping": { "error": "エラー", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "emby": { "playing": "再生中", @@ -131,7 +134,7 @@ "flood": { "download": "ダウンロード", "upload": "アップロード", - "leech": "Leech", + "leech": "リーチ", "seed": "Seed" }, "changedetectionio": { @@ -143,7 +146,7 @@ "transcoding": "変換中", "bitrate": "ビットレート", "no_active": "アクティブストリームなし", - "plex_connection_error": "Check Plex Connection" + "plex_connection_error": "Plex接続の確認" }, "omada": { "connectedAp": "接続されたAP", @@ -176,7 +179,7 @@ "transmission": { "download": "ダウンロード", "upload": "アップロード", - "leech": "Leech", + "leech": "リーチ", "seed": "Seed" }, "qbittorrent": { @@ -201,21 +204,21 @@ "wanted": "募集中", "queued": "待機中", "series": "シリーズ", - "queue": "Queue", - "unknown": "Unknown" + "queue": "キュー", + "unknown": "不明" }, "radarr": { "wanted": "募集中", "missing": "不明", "queued": "キュー", "movies": "映画", - "queue": "Queue", + "queue": "キュー", "unknown": "Unknown" }, "lidarr": { "wanted": "募集中", "queued": "キュー", - "artists": "Artists" + "artists": "アーティスト" }, "readarr": { "wanted": "募集中", @@ -224,7 +227,7 @@ }, "bazarr": { "missingEpisodes": "欠番エピソード", - "missingMovies": "不明・映画" + "missingMovies": "行方不明の映画" }, "ombi": { "pending": "保留中", @@ -292,7 +295,7 @@ "numberOfGrabs": "Grabs", "numberOfQueries": "クエリ", "numberOfFailGrabs": "Fail Grabs", - "numberOfFailQueries": "Fail Queries" + "numberOfFailQueries": "失敗クエリー" }, "jackett": { "configured": "設定済", @@ -304,8 +307,8 @@ "domain_count": "ドメイン" }, "miniflux": { - "read": "Read", - "unread": "Unread" + "read": "既読", + "unread": "未読" }, "authentik": { "users": "ユーザー", @@ -461,7 +464,7 @@ "medusa": { "wanted": "Wanted", "queued": "Queued", - "series": "Series" + "series": "シリーズ" }, "octoprint": { "temp_bed": "ベッド温度", @@ -474,7 +477,7 @@ "status": "状態" }, "proxmoxbackupserver": { - "datastore_usage": "Datastore", + "datastore_usage": "データストア", "failed_tasks_24h": "失敗タスク(24h)", "cpu_usage": "CPU", "memory_usage": "メモリ" @@ -499,7 +502,7 @@ }, "mylar": { "series": "シリーズ", - "issues": "Issues", + "issues": "課題", "wanted": "Wanted" }, "photoprism": { @@ -546,7 +549,7 @@ "records_total": "キューの長さ" }, "healthchecks": { - "never": "まだPingはありません", + "never": "Pingしていません", "new": "New", "up": "オンライン", "grace": "猶予期間中", @@ -595,10 +598,10 @@ "shows": "ショー", "recordings": "レコーディング", "scheduled": "予定済", - "passes": "Passes" + "passes": "パス" }, "whatsupdocker": { - "monitoring": "Monitoring", + "monitoring": "モニタリング", "updates": "アップデート" }, "tailscale": { @@ -621,22 +624,22 @@ "systemTempC": "システム温度", "poolUsage": "プール使用量", "volumeUsage": "ボリューム使用量", - "invalid": "Invalid" + "invalid": "無効" }, "pfsense": { - "up": "Up", - "load": "Load Avg", - "memory": "Mem Usage", - "wanStatus": "WAN Status", - "down": "Down", - "temp": "Temp", - "disk": "Disk Usage", + "up": "アップ", + "load": "読み込み平均", + "memory": "メモリ使用量", + "wanStatus": "WANステータス", + "down": "ダウン", + "temp": "温度", + "disk": "ディスク使用量", "wanIP": "WAN IP" }, "caddy": { - "upstreams": "Upstreams", - "requests": "Current requests", - "requests_failed": "Failed requests" + "upstreams": "アップストリーム", + "requests": "現在のリクエスト", + "requests_failed": "失敗したリクエスト" }, "evcc": { "watt_hour": "Wh", @@ -647,64 +650,101 @@ "charge_power": "チャージャー" }, "pialert": { - "total": "Total", - "connected": "Connected", - "new_devices": "New Devices", - "down_alerts": "Down Alerts" + "total": "トータル", + "connected": "接続済み", + "new_devices": "新しいデバイス", + "down_alerts": "ダウンアラート" }, "jdownloader": { - "downloadCount": "Queue Count", - "downloadSpeed": "Download Speed", - "downloadBytesRemaining": "Remaining", - "downloadTotalBytes": "Size" + "downloadCount": "キュー", + "downloadSpeed": "スピード", + "downloadBytesRemaining": "残り", + "downloadTotalBytes": "サイズ" }, "kavita": { - "seriesCount": "Series", - "totalFiles": "Files" + "seriesCount": "シリーズ", + "totalFiles": "ファイル" }, "gamedig": { - "name": "Name", - "map": "Map", - "currentPlayers": "Current players", - "players": "Players", - "maxPlayers": "Max players", - "bots": "Bots", + "name": "名前", + "map": "マップ", + "currentPlayers": "現在のプレーヤー", + "players": "プレーヤー", + "maxPlayers": "最大プレーヤー", + "bots": "ボット", "ping": "Ping", - "status": "Status", - "online": "Online", - "offline": "Offline" + "status": "ステータス", + "online": "オンライン", + "offline": "オフライン" }, "azuredevops": { - "result": "Result", - "status": "Status", - "buildId": "Build ID", - "succeeded": "Succeeded", + "result": "結果", + "status": "ステータス", + "buildId": "ビルドID", + "succeeded": "成功", "notStarted": "Not Started", - "failed": "Failed", - "canceled": "Canceled", - "inProgress": "In Progress", - "totalPrs": "Total PRs", - "myPrs": "My PRs", - "approved": "Approved" + "failed": "失敗", + "canceled": "キャンセル", + "inProgress": "進行中", + "totalPrs": "合計PR数", + "myPrs": "私のPR", + "approved": "承認" }, "urbackup": { "ok": "Ok", - "errored": "Errors", - "noRecent": "Out of Date", - "totalUsed": "Used Storage" + "errored": "エラー", + "noRecent": "期限切れ", + "totalUsed": "使用済みストレージ" }, "openmediavault": { - "downloading": "Downloading", - "total": "Total", - "running": "Running", - "stopped": "Stopped", - "passed": "Passed", - "failed": "Failed" + "downloading": "ダウンロード中", + "total": "トータル", + "running": "実行中", + "stopped": "停止中", + "passed": "合格", + "failed": "不合格" }, "mealie": { - "recipes": "Recipes", - "users": "Users", - "categories": "Categories", - "tags": "Tags" + "recipes": "レシピ", + "users": "ユーザー", + "categories": "カテゴリー", + "tags": "タグ" + }, + "atsumeru": { + "series": "シリーズ", + "archives": "アーカイブ", + "chapters": "チャプター", + "categories": "カテゴリー" + }, + "calibreweb": { + "books": "書籍", + "authors": "著者", + "categories": "カテゴリー", + "series": "シリーズ" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/ko/common.json b/public/locales/ko/common.json index 0c2b6420..73cba7f3 100644 --- a/public/locales/ko/common.json +++ b/public/locales/ko/common.json @@ -85,7 +85,9 @@ }, "ping": { "error": "오류", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "emby": { "playing": "재생 중", @@ -321,7 +323,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "quicklaunch": { "bookmark": "Bookmark", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "chapters": "Chapters", + "categories": "Categories", + "series": "Series", + "archives": "Archives" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/lv/common.json b/public/locales/lv/common.json index a968d4fa..cd31aeae 100644 --- a/public/locales/lv/common.json +++ b/public/locales/lv/common.json @@ -71,7 +71,9 @@ }, "ping": { "error": "Kļūda", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "emby": { "playing": "Atskaņo", @@ -310,7 +312,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "quicklaunch": { "bookmark": "Bookmark", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "chapters": "Chapters", + "series": "Series", + "archives": "Archives", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "unknown": "Unknown", + "status": "Status", + "uptime": "Uptime", + "sitesDown": "Sites Down", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json index c1616367..0f8faa9b 100644 --- a/public/locales/ms/common.json +++ b/public/locales/ms/common.json @@ -81,7 +81,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "quicklaunch": { "bookmark": "Tandabuku", @@ -381,7 +382,9 @@ }, "ping": { "error": "Ralat", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Lulus", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/nb-NO/common.json b/public/locales/nb-NO/common.json index 6b75aa23..d4597a83 100644 --- a/public/locales/nb-NO/common.json +++ b/public/locales/nb-NO/common.json @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Total Observed", @@ -381,7 +382,9 @@ }, "ping": { "error": "Error", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Passed", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "uptime": "Uptime", + "status": "Status", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json index 9ce33db9..730f143b 100644 --- a/public/locales/nl/common.json +++ b/public/locales/nl/common.json @@ -1,37 +1,37 @@ { "widget": { - "missing_type": "Missend Widget Type: {{type}}", - "api_error": "API Error", + "missing_type": "Ontbrekende Widget Type: {{type}}", + "api_error": "API fout", "status": "Status", "information": "Informatie", "url": "URL", - "raw_error": "Raw Fout", - "response_data": "Reactiegegevens" + "raw_error": "Raw Error", + "response_data": "Responsgegevens" }, "resources": { "total": "Totaal", "free": "Vrij", "used": "Gebruikt", - "load": "Laadt", + "load": "Belasting", "cpu": "CPU", - "mem": "MEM", + "mem": "GEH", "days": "d", - "hours": "h", + "hours": "u", "temp": "TEMP", "max": "Max", - "uptime": "UP", - "months": "mo", + "uptime": "OP", + "months": "ma", "minutes": "m" }, "docker": { "rx": "RX", "tx": "TX", - "mem": "MEM", + "mem": "GEH", "cpu": "CPU", - "offline": "Offline", + "offline": "Onbereikbaar", "error": "Fout", "unknown": "Onbekend", - "running": "Running", + "running": "Lopend", "starting": "Starten", "unhealthy": "Ongezond", "not_found": "Niet Gevonden", @@ -62,7 +62,7 @@ "playing": "Afspelen", "transcoding": "Transcodering", "bitrate": "Bitsnelheid", - "no_active": "Geen Actieve Steams", + "no_active": "Geen Actieve Streams", "movies": "Films", "series": "Series", "episodes": "Afleveringen", @@ -72,8 +72,8 @@ "playing": "Afspelen", "transcoding": "Transcodering", "bitrate": "Bitsnelheid", - "no_active": "Geen Actieve Streams", - "plex_connection_error": "Check Plex Connection" + "no_active": "Geen actieve streams", + "plex_connection_error": "Controleer Plex Connectie" }, "rutorrent": { "active": "Actief", @@ -84,16 +84,16 @@ "wanted": "Gezocht", "queued": "In de wachtrij", "series": "Series", - "queue": "Queue", - "unknown": "Unknown" + "queue": "Rij", + "unknown": "Onbekend" }, "radarr": { "movies": "Films", "wanted": "Gezocht", "queued": "In de wachtrij", "missing": "Missend", - "queue": "Queue", - "unknown": "Unknown" + "queue": "Rij", + "unknown": "Onbekend" }, "readarr": { "wanted": "Gezocht", @@ -111,10 +111,10 @@ "available": "Beschikbaar" }, "pihole": { - "queries": "Queries", + "queries": "Zoekvragen", "blocked": "Geblokkeerd", - "gravity": "Gravity", - "blocked_percent": "Blocked %" + "gravity": "Gewicht", + "blocked_percent": "Geblokkerde %" }, "traefik": { "routers": "Routers", @@ -130,20 +130,20 @@ "pending": "In Afwachting", "approved": "Goedgekeurd", "available": "Beschikbaar", - "processing": "Processing" + "processing": "Verwerken" }, "sabnzbd": { - "rate": "Rate", + "rate": "Snelheid", "queue": "Wachtrij", - "timeleft": "Time Left" + "timeleft": "Tijd Over" }, "nzbget": { - "rate": "Rate", + "rate": "Beoordeling", "remaining": "Resterend", "downloaded": "Gedownload" }, "coinmarketcap": { - "configure": "Configure one or more crypto currencies to track", + "configure": "Configureer een of meer crypto eenheiden om bij te houden", "1hour": "1 Uur", "7days": "7 Dagen", "1day": "1 Dag", @@ -151,25 +151,25 @@ }, "gotify": { "apps": "Applicaties", - "clients": "Clients", + "clients": "Cliënten", "messages": "Berichten" }, "prowlarr": { - "enableIndexers": "Indexers", - "numberOfGrabs": "Grabs", - "numberOfQueries": "Queries", - "numberOfFailGrabs": "Fail Grabs", - "numberOfFailQueries": "Fail Queries" + "enableIndexers": "Indexeerders", + "numberOfGrabs": "Resultaten", + "numberOfQueries": "Zoekvragen", + "numberOfFailGrabs": "Niet gepakt", + "numberOfFailQueries": "Mislukte zoekvragen" }, "transmission": { "download": "Download", "upload": "Upload", - "leech": "Leech", + "leech": "Bloedzuiger", "seed": "Seed" }, "jackett": { "configured": "Geconfigureerd", - "errored": "Errored" + "errored": "Opgetreden fouten" }, "bazarr": { "missingEpisodes": "Ontbrekende Afleveringen", @@ -178,58 +178,58 @@ "lidarr": { "wanted": "Gezocht", "queued": "In de wachtrij", - "artists": "Artists" + "artists": "Artiesten" }, "adguard": { - "queries": "Queries", + "queries": "Zoekvragen", "blocked": "Geblokkeerd", - "filtered": "Filtered", - "latency": "Latency" + "filtered": "Gefilterde", + "latency": "Vertraging" }, "qbittorrent": { "download": "Download", "upload": "Upload", - "leech": "Leech", + "leech": "Bloedzuiger", "seed": "Seed" }, "mastodon": { - "user_count": "Users", - "status_count": "Posts", + "user_count": "Gebruikers", + "status_count": "Berichten", "domain_count": "Domeinen" }, "strelaysrv": { - "numActiveSessions": "Sessions", - "numConnections": "Connections", - "dataRelayed": "Relayed", - "transferRate": "Rate" + "numActiveSessions": "Sessies", + "numConnections": "Connecties", + "dataRelayed": "Omgeleid", + "transferRate": "Snelheid" }, "authentik": { "users": "Gebruikers", - "loginsLast24H": "Logins (24h)", - "failedLoginsLast24H": "Failed Logins (24h)" + "loginsLast24H": "Logins (24u)", + "failedLoginsLast24H": "Gefaalde Logins (24u)" }, "proxmox": { - "mem": "MEM", + "mem": "GEH", "cpu": "CPU", "lxc": "LXC", - "vms": "VMs" + "vms": "VM's" }, "unifi": { "users": "Gebruikers", "lan_users": "LAN Gebruikers", - "uptime": "Uptime van het systeem", + "uptime": "Systeem Uptime", "days": "Dagen", "wan": "WAN", "wlan_users": "WLAN Gebruikers", - "up": "UP", - "down": "DOWN", - "wait": "Wachten aub", + "up": "OP", + "down": "NEER", + "wait": "Even geduld", "lan": "LAN", "wlan": "WLAN", "devices": "Apparaten", "lan_devices": "LAN Apparaten", "wlan_devices": "WLAN Apparaten", - "empty_data": "Subsystem status unknown" + "empty_data": "Subsysteem status onbekend" }, "plex": { "streams": "Actieve Streams", @@ -239,22 +239,23 @@ }, "glances": { "cpu": "CPU", - "wait": "Please wait", + "wait": "Wacht aub", "temp": "TEMP", - "uptime": "UP", + "uptime": "OP", "days": "d", "hours": "h", "load": "Load", - "warn": "Warn", - "total": "Total", - "free": "Free", - "used": "Used", + "warn": "Waarschuwing", + "total": "Totaal", + "free": "Vrij", + "used": "Gebruikt", "crit": "Crit", - "read": "Read", - "write": "Write", + "read": "Gelezen", + "write": "Schrijven", "gpu": "GPU", - "mem": "Mem", - "swap": "Swap" + "mem": "Geh", + "swap": "Wissel", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Totaal waargenomen", @@ -274,44 +275,44 @@ "45-night": "Mistig", "48-day": "Mistig", "48-night": "Mistig", - "51-day": "Light Drizzle", - "51-night": "Light Drizzle", - "53-day": "Drizzle", - "53-night": "Drizzle", - "55-night": "Heavy Drizzle", - "55-day": "Heavy Drizzle", - "56-day": "Light Freezing Drizzle", - "56-night": "Light Freezing Drizzle", - "57-day": "Freezing Drizzle", - "57-night": "Freezing Drizzle", + "51-day": "Motregen", + "51-night": "Motregen", + "53-day": "Druilerig", + "53-night": "Druilerig", + "55-night": "Zware motregen", + "55-day": "Zware motregen", + "56-day": "Lichte opvriezende motregen", + "56-night": "Lichte opvriezende motregen", + "57-day": "Opvriezende motregen", + "57-night": "Opvriezende motregen", "61-day": "Lichte Regen", "61-night": "Lichte Regen", "63-day": "Regen", "63-night": "Regen", "65-day": "Hevige Regen", "65-night": "Hevige Regen", - "66-day": "Freezing Rain", - "66-night": "Freezing Rain", - "67-day": "Freezing Rain", - "67-night": "Freezing Rain", + "66-day": "Opvriezende regen", + "66-night": "Opvriezende regen", + "67-day": "Opvriezende regen", + "67-night": "Opvriezende regen", "71-day": "Lichte Sneeuw", "71-night": "Lichte Sneeuw", "73-day": "Sneeuw", "73-night": "Sneeuw", "75-day": "Hevige Sneeuw", "75-night": "Hevige Sneeuw", - "77-day": "Snow Grains", - "77-night": "Snow Grains", - "80-day": "Light Showers", - "80-night": "Light Showers", - "81-day": "Showers", - "81-night": "Showers", - "82-night": "Heavy Showers", - "85-day": "Snow Showers", - "82-day": "Heavy Showers", - "85-night": "Snow Showers", - "86-day": "Snow Showers", - "86-night": "Snow Showers", + "77-day": "Sneeuw korrels", + "77-night": "Sneeuw korrels", + "80-day": "Lichte regenbui", + "80-night": "Lichte regenbui", + "81-day": "Regenbui", + "81-night": "Regenbui", + "82-night": "Zware Regenbuien", + "85-day": "Sneeuwbuien", + "82-day": "Zware Regenbuien", + "85-night": "Sneeuwbuien", + "86-day": "Sneeuwbuien", + "86-night": "Sneeuwbuien", "95-day": "Onweersbui", "95-night": "Onweersbui", "96-day": "Onweersbui Met Hagel", @@ -322,7 +323,7 @@ "bookmark": "Bladwijzer", "service": "Service", "search": "Zoek", - "custom": "Custom", + "custom": "Aangepast", "visit": "Bezoek", "url": "URL" }, @@ -333,31 +334,31 @@ "up_to_date": "Up to Date", "child_bridges": "Child Bridges", "child_bridges_status": "{{ok}}/{{total}}", - "up": "Up", + "up": "Bereikbaar", "pending": "In afwachting van", - "down": "Down" + "down": "Neer" }, "autobrr": { "approvedPushes": "Goedgekeurd", "rejectedPushes": "Afgewezen", "filters": "Filters", - "indexers": "Indexers" + "indexers": "Indexeerders" }, "watchtower": { "containers_scanned": "Gescanned", - "containers_updated": "Updated", + "containers_updated": "Bijgewerkt", "containers_failed": "Gefaald" }, "tubearchivist": { - "downloads": "Queue", - "videos": "Videos", + "downloads": "Wachtrij", + "videos": "Video's", "channels": "Kanalen", - "playlists": "Playlists" + "playlists": "Speellijsten" }, "truenas": { - "load": "System Load", - "uptime": "Uptime", - "alerts": "Alerts", + "load": "Systeem Load", + "uptime": "Bereikbaarheid", + "alerts": "Waarschuwingen", "time": "{{value, number(style: unit; unitDisplay: long;)}}" }, "navidrome": { @@ -381,21 +382,23 @@ }, "ping": { "error": "Fout", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { - "passed": "Passed", + "passed": "Gepasseerd", "failed": "Gefaald", "unknown": "Onbekend" }, "paperlessngx": { - "inbox": "Inbox", + "inbox": "Postvak In", "total": "Totaal" }, "deluge": { "download": "Download", "upload": "Upload", - "leech": "Leech", + "leech": "Bloedzuiger", "seed": "Seed" }, "flood": { @@ -406,9 +409,9 @@ }, "tdarr": { "queue": "Wachtrij", - "processed": "Processed", - "errored": "Errored", - "saved": "Saved" + "processed": "Verwerkt", + "errored": "Fout", + "saved": "Opgeslagen" }, "miniflux": { "read": "Gelezen", @@ -423,28 +426,28 @@ "bibitrate": "{{value, rate(bits: true; binary: true)}}" }, "omada": { - "connectedAp": "Connected APs", + "connectedAp": "Verbonden APs", "activeUser": "Actieve apparaten", "alerts": "Meldingen", - "connectedGateway": "Connected gateways", - "connectedSwitches": "Connected switches" + "connectedGateway": "Verbonden gateways", + "connectedSwitches": "Verbonden switches" }, "downloadstation": { "download": "Download", "upload": "Upload", "leech": "Leech", - "seed": "Seed" + "seed": "Delen" }, "mikrotik": { "cpuLoad": "CPU Belasting", "memoryUsed": "Geheugen Gebruikt", - "uptime": "Uptime", + "uptime": "Bereikbaarheid", "numberOfLeases": "Leases" }, "xteve": { - "streams_all": "All Streams", - "streams_active": "Active Streams", - "streams_xepg": "XEPG Channels" + "streams_all": "Alle Streams", + "streams_active": "Actieve Streams", + "streams_xepg": "XEPG Kanalen" }, "opnsense": { "cpu": "CPU Belasting", @@ -453,42 +456,42 @@ "wanDownload": "WAN Download" }, "moonraker": { - "printer_state": "Printer State", + "printer_state": "Printer Status", "print_status": "Print Status", - "print_progress": "Progress", - "layers": "Layers" + "print_progress": "Voortgang", + "layers": "Lagen" }, "medusa": { - "wanted": "Wanted", - "queued": "Queued", + "wanted": "Gewild", + "queued": "Wachtrij", "series": "Series" }, "octoprint": { "printer_state": "Status", "temp_tool": "Tool temp", "temp_bed": "Bed temp", - "job_completion": "Completion" + "job_completion": "Voltooiing" }, "cloudflared": { - "origin_ip": "Origin IP", + "origin_ip": "Oorspronkelijk IP", "status": "Status" }, "proxmoxbackupserver": { - "datastore_usage": "Datastore", - "failed_tasks_24h": "Failed Tasks 24h", + "datastore_usage": "Data Opslag", + "failed_tasks_24h": "Gefaalde taken 24u", "cpu_usage": "CPU", "memory_usage": "Geheugen" }, "immich": { "users": "Gebruikers", "photos": "Foto's", - "videos": "Videos", + "videos": "Video's", "storage": "Opslag" }, "uptimekuma": { - "up": "Sites Up", - "down": "Sites Down", - "uptime": "Uptime", + "up": "Sites Bereikbaar", + "down": "Sites Onbereikbaar", + "uptime": "Tijd bereikbaar", "incident": "Incident", "m": "m" }, @@ -498,14 +501,14 @@ "books": "Boeken" }, "mylar": { - "wanted": "Wanted", + "wanted": "Gevraagd", "series": "Series", "issues": "Problemen" }, "photoprism": { "albums": "Albums", "photos": "Foto's", - "videos": "Videos", + "videos": "Video's", "people": "Personen" }, "diskstation": { @@ -515,23 +518,23 @@ }, "fileflows": { "queue": "Wachtrij", - "processing": "Processing", - "processed": "Processed", + "processing": "Verwerken", + "processed": "Verwerkt", "time": "Tijd" }, "grafana": { "dashboards": "Dashboards", - "datasources": "Data Sources", - "totalalerts": "Total Alerts", - "alertstriggered": "Alerts Triggered" + "datasources": "Data Bronnen", + "totalalerts": "Totaal Waarschuwingen", + "alertstriggered": "Getriggerde meldingen" }, "nextcloud": { "cpuload": "Cpu Belasting", "memoryusage": "Geheugen Gebruik", "freespace": "Vrije Ruimte", "activeusers": "Actieve Gebruikers", - "numfiles": "Files", - "numshares": "Shared Items" + "numfiles": "Bestanden", + "numshares": "Gedeelde items" }, "kopia": { "status": "Status", @@ -547,9 +550,9 @@ }, "healthchecks": { "new": "Nieuw", - "up": "Online", - "grace": "In Grace Period", - "down": "Offline", + "up": "Bereikbaar", + "grace": "In de respijt periode", + "down": "Onbereikbaar", "paused": "Gepauzeerd", "status": "Status", "last_ping": "Laatste Ping", @@ -560,21 +563,21 @@ "nodes": "Nodes" }, "prometheus": { - "targets_up": "Targets Up", - "targets_down": "Targets Down", - "targets_total": "Total Targets" + "targets_up": "Doelen bereikbaar", + "targets_down": "Doelen onbereikbaar", + "targets_total": "Totaal aantal doelen" }, "minecraft": { "players": "Spelers", "version": "Versie", "status": "Status", - "up": "Online", - "down": "Offline" + "up": "Bereikbaar", + "down": "Onbereikbaar" }, "ghostfolio": { "gross_percent_today": "Vandaag", "gross_percent_1y": "Een jaar", - "gross_percent_max": "All time" + "gross_percent_max": "Altijd" }, "audiobookshelf": { "podcasts": "Podcasts", @@ -583,128 +586,165 @@ "booksDuration": "Duur" }, "homeassistant": { - "people_home": "People Home", - "lights_on": "Lights On", - "switches_on": "Switches On" + "people_home": "Mensen thuis", + "lights_on": "Lichten aan", + "switches_on": "Switches aan" }, "freshrss": { - "subscriptions": "Subscriptions", - "unread": "Unread" + "subscriptions": "Abonnementen", + "unread": "Ongelezen" }, "channelsdvrserver": { - "shows": "Shows", - "recordings": "Recordings", - "scheduled": "Scheduled", - "passes": "Passes" + "shows": "Voorstellingen", + "recordings": "Opnames", + "scheduled": "Gepland", + "passes": "Gepasseerd" }, "whatsupdocker": { - "monitoring": "Monitoring", + "monitoring": "Observeren", "updates": "Updates" }, "tailscale": { - "address": "Address", - "expires": "Expires", - "never": "Never", - "last_seen": "Last Seen", - "now": "Now", - "years": "{{number}}y", + "address": "Adres", + "expires": "Verloopt", + "never": "Nooit", + "last_seen": "Laatst Gezien", + "now": "Nu", + "years": "{{number}}j", "weeks": "{{number}}w", "days": "{{number}}d", - "hours": "{{number}}h", + "hours": "{{number}}u", "minutes": "{{number}}m", "seconds": "{{number}}s", - "ago": "{{value}} Ago" + "ago": "{{value}} Geleden" }, "qnap": { - "cpuUsage": "CPU Usage", - "memUsage": "MEM Usage", - "systemTempC": "System Temp", - "poolUsage": "Pool Usage", + "cpuUsage": "CPU Verbruik", + "memUsage": "MEM Gebruik", + "systemTempC": "Systeem Temperatuur", + "poolUsage": "Pool Gebruik", "volumeUsage": "Volume Usage", - "invalid": "Invalid" + "invalid": "ongeldig" }, "pfsense": { - "load": "Load Avg", - "memory": "Mem Usage", + "load": "Load Gem", + "memory": "Geh Gebruik", "wanStatus": "WAN Status", - "up": "Up", - "down": "Down", + "up": "Bereikbaar", + "down": "Neer", "temp": "Temp", - "disk": "Disk Usage", + "disk": "Schijf Gebruik", "wanIP": "WAN IP" }, "caddy": { "upstreams": "Upstreams", - "requests": "Current requests", - "requests_failed": "Failed requests" + "requests": "Huidige verzoeken", + "requests_failed": "Gefaalde verzoeken" }, "evcc": { - "pv_power": "Production", - "battery_soc": "Battery", - "grid_power": "Grid", - "home_power": "Consumption", - "charge_power": "Charger", - "watt_hour": "Wh" + "pv_power": "Productie", + "battery_soc": "Batterij", + "grid_power": "Rooster", + "home_power": "Consumptie", + "charge_power": "Oplader", + "watt_hour": "Wu" }, "pialert": { - "total": "Total", - "connected": "Connected", - "new_devices": "New Devices", - "down_alerts": "Down Alerts" + "total": "Totaal", + "connected": "Verbonden", + "new_devices": "Nieuwe Apparaten", + "down_alerts": "Geen verbinding" }, "jdownloader": { - "downloadCount": "Queue Count", - "downloadSpeed": "Download Speed", - "downloadBytesRemaining": "Remaining", - "downloadTotalBytes": "Size" + "downloadCount": "Wachtrij", + "downloadSpeed": "Snelheid", + "downloadBytesRemaining": "Overig", + "downloadTotalBytes": "Omvang" }, "kavita": { "seriesCount": "Series", - "totalFiles": "Files" + "totalFiles": "Bestanden" }, "gamedig": { - "name": "Name", + "name": "Naam", "map": "Map", - "currentPlayers": "Current players", - "players": "Players", - "maxPlayers": "Max players", + "currentPlayers": "Huidige spelers", + "players": "Spelers", + "maxPlayers": "Max spelers", "bots": "Bots", "ping": "Ping", - "online": "Online", + "online": "Bereikbaar", "status": "Status", - "offline": "Offline" + "offline": "Onbereikbaar" }, "azuredevops": { - "result": "Result", + "result": "Resultaat", "status": "Status", "buildId": "Build ID", - "succeeded": "Succeeded", - "notStarted": "Not Started", - "failed": "Failed", - "canceled": "Canceled", - "inProgress": "In Progress", - "totalPrs": "Total PRs", - "myPrs": "My PRs", - "approved": "Approved" + "succeeded": "Geslaagd", + "notStarted": "Niet gestart", + "failed": "Mislukt", + "canceled": "Afgebroken", + "inProgress": "Voortgaand", + "totalPrs": "Totaal PRs", + "myPrs": "Mijn PR's", + "approved": "Goedgekeurd" }, "urbackup": { "ok": "Ok", - "errored": "Errors", - "noRecent": "Out of Date", - "totalUsed": "Used Storage" + "errored": "Fouten", + "noRecent": "Verouderd", + "totalUsed": "Gebruikte opslag" }, "openmediavault": { "downloading": "Downloading", - "total": "Total", - "running": "Running", - "stopped": "Stopped", - "passed": "Passed", - "failed": "Failed" + "total": "Totaal", + "running": "Lopend", + "stopped": "Gestopt", + "passed": "Geslaagd", + "failed": "Mislukt" }, "mealie": { - "recipes": "Recipes", - "users": "Users", - "categories": "Categories", - "tags": "Tags" + "recipes": "Recepten", + "users": "Gebruikers", + "categories": "Categorieën", + "tags": "Label" + }, + "atsumeru": { + "series": "Series", + "archives": "Archieven", + "chapters": "Hoofdstukken", + "categories": "Categorieën" + }, + "calibreweb": { + "books": "Boeken", + "authors": "Auteurs", + "categories": "Categorieën", + "series": "Series" + }, + "uptimerobot": { + "uptime": "Uptime", + "status": "Status", + "up": "Up", + "lastDown": "Laatste Downtime", + "downDuration": "Duur Downtime", + "sitesUp": "Sites Bereikbaar", + "sitesDown": "Sites Onbereikbaar", + "paused": "Gepauzeerd", + "notyetchecked": "Nog niet gecontroleerd", + "seemsdown": "Lijkt onbereikbaar", + "down": "Neer", + "unknown": "Onbekend" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json index 52d04e0f..cc263658 100644 --- a/public/locales/pl/common.json +++ b/public/locales/pl/common.json @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "diffsDetected": "Wykryto różnic", @@ -381,7 +382,9 @@ }, "ping": { "error": "Błąd", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Powodzenie", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/pt-BR/common.json b/public/locales/pt-BR/common.json index 1e188fda..6343d8fe 100644 --- a/public/locales/pt-BR/common.json +++ b/public/locales/pt-BR/common.json @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Observados", @@ -381,7 +382,9 @@ }, "ping": { "error": "Erro", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Passou", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json index ac143fda..b670f3d8 100644 --- a/public/locales/pt/common.json +++ b/public/locales/pt/common.json @@ -267,7 +267,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Total Observado", @@ -394,7 +395,9 @@ }, "ping": { "error": "Erro", - "ping": "Tempo de resposta" + "ping": "Tempo de resposta", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Aprovado", @@ -715,5 +718,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown", + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json index a52232e8..47f670cf 100644 --- a/public/locales/ro/common.json +++ b/public/locales/ro/common.json @@ -20,12 +20,12 @@ "mem": "MEM", "cpu": "CPU", "offline": "Offline", - "error": "Error", - "unknown": "Unknown", - "running": "Running", - "starting": "Starting", + "error": "Eroare", + "unknown": "Necunoscut", + "running": "Rulează", + "starting": "Începe", "unhealthy": "Unhealthy", - "not_found": "Not Found", + "not_found": "Negăsit", "exited": "Exited", "partial": "Partial", "healthy": "Healthy" @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Total Observed", @@ -381,7 +382,9 @@ }, "ping": { "error": "Error", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Passed", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "sitesDown": "Sites Down", + "paused": "Paused", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json index 579f748f..46e07c4e 100644 --- a/public/locales/ru/common.json +++ b/public/locales/ru/common.json @@ -18,7 +18,7 @@ "load": "Загрузка", "cpu": "ЦП", "mem": "ОЗУ", - "temp": "Темпер.", + "temp": "Температура", "max": "Макс.", "uptime": "Работает", "months": "мес", @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Всего наблюдаемых", @@ -381,7 +382,9 @@ }, "ping": { "error": "Ошибка", - "ping": "Пинг" + "ping": "Пинг", + "up": "Up", + "down": "Down" }, "scrutiny": { "failed": "Неудачно", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Серии", + "archives": "Архивы", + "chapters": "Главы", + "categories": "Категории" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/sk/common.json b/public/locales/sk/common.json index b46615b5..c2f15de7 100644 --- a/public/locales/sk/common.json +++ b/public/locales/sk/common.json @@ -2,18 +2,18 @@ "docker": { "rx": "RX", "tx": "TX", - "mem": "MEM", + "mem": "RAM", "cpu": "CPU", "offline": "Offline", - "error": "Error", - "unknown": "Unknown", - "running": "Running", - "starting": "Starting", - "unhealthy": "Unhealthy", - "not_found": "Not Found", - "exited": "Exited", - "partial": "Partial", - "healthy": "Healthy" + "error": "Chyba", + "unknown": "Neznáme", + "running": "Beží", + "starting": "Spúšťa sa", + "unhealthy": "Nezdravý", + "not_found": "Nenájdené", + "exited": "Ukončené", + "partial": "Čiastočný", + "healthy": "Zdravý" }, "rutorrent": { "active": "Active", @@ -21,10 +21,10 @@ "download": "Download" }, "tdarr": { - "queue": "Queue", - "processed": "Processed", - "errored": "Errored", - "saved": "Saved" + "queue": "Fronta", + "processed": "Spracované", + "errored": "Chybné", + "saved": "Uložené" }, "strelaysrv": { "numActiveSessions": "Sessions", @@ -144,74 +144,76 @@ "bibitrate": "{{value, rate(bits: true; binary: true)}}" }, "widget": { - "api_error": "API Error", - "missing_type": "Missing Widget Type: {{type}}", - "information": "Information", - "status": "Status", + "api_error": "Chyba API", + "missing_type": "Chýba typ widgetu: {{type}}", + "information": "Informácia", + "status": "Stav", "url": "URL", - "raw_error": "Raw Error", - "response_data": "Response Data" + "raw_error": "Nevyriešená chyba", + "response_data": "Dáta odpovede" }, "weather": { - "current": "Current Location", - "allow": "Click to allow", - "updating": "Updating", - "wait": "Please wait" + "current": "Aktuálna poloha", + "allow": "Klikni pre povolenie", + "updating": "Prebieha aktualizácia", + "wait": "Počkajte prosím" }, "search": { - "placeholder": "Search…" + "placeholder": "Hľadať…" }, "resources": { "cpu": "CPU", - "mem": "MEM", - "total": "Total", - "free": "Free", - "used": "Used", - "load": "Load", - "temp": "TEMP", - "max": "Max", - "uptime": "UP", - "months": "mo", + "mem": "RAM", + "total": "Celkovo", + "free": "Voľné", + "used": "Využité", + "load": "Záťaž", + "temp": "TEPLOTA", + "max": "Max.", + "uptime": "BEŽÍ", + "months": "mes.", "days": "d", "hours": "h", "minutes": "m" }, "unifi": { - "users": "Users", - "uptime": "System Uptime", - "days": "Days", + "users": "Používatelia", + "uptime": "Doba prevádzky", + "days": "Dní", "wan": "WAN", "lan": "LAN", "wlan": "WLAN", - "devices": "Devices", - "lan_devices": "LAN Devices", - "wlan_devices": "WLAN Devices", - "lan_users": "LAN Users", - "wlan_users": "WLAN Users", - "up": "UP", - "down": "DOWN", - "wait": "Please wait", - "empty_data": "Subsystem status unknown" + "devices": "Zariadenia", + "lan_devices": "Zariadenia LAN", + "wlan_devices": "Zariadenia WLAN", + "lan_users": "Používatelia LAN", + "wlan_users": "Používatelia WLAN", + "up": "BEŽÍ", + "down": "NEBEŽÍ", + "wait": "Počkajte prosím", + "empty_data": "Stav podsystému neznámy" }, "ping": { - "error": "Error", - "ping": "Ping" + "error": "Chyba", + "ping": "Odozva", + "up": "Up", + "down": "Down" }, "emby": { - "playing": "Playing", - "transcoding": "Transcoding", - "bitrate": "Bitrate", - "no_active": "No Active Streams", - "movies": "Movies", - "series": "Series", - "episodes": "Episodes", - "songs": "Songs" + "playing": "Prehrávané", + "transcoding": "Prekódovávané", + "bitrate": "Prenosová rýchlosť", + "no_active": "Žiadny aktívny stream", + "movies": "Filmy", + "series": "Seriály", + "episodes": "Epizódy", + "songs": "Skladby" }, "flood": { - "download": "Download", - "upload": "Upload", - "leech": "Leech", - "seed": "Seed" + "download": "Sťahovanie", + "upload": "Odosielanie", + "leech": "Leechovanie", + "seed": "Seedovanie" }, "changedetectionio": { "totalObserved": "Total Observed", @@ -276,70 +278,70 @@ "queued": "Queued", "series": "Series", "queue": "Queue", - "unknown": "Unknown" + "unknown": "Neznáme" }, "radarr": { - "wanted": "Wanted", - "missing": "Missing", - "queued": "Queued", - "movies": "Movies", - "queue": "Queue", - "unknown": "Unknown" + "wanted": "Chcené", + "missing": "Chýbajúce", + "queued": "Vo fronte", + "movies": "Filmy", + "queue": "Fronta", + "unknown": "Neznáme" }, "lidarr": { - "wanted": "Wanted", - "queued": "Queued", - "artists": "Artists" + "wanted": "Chcené", + "queued": "Vo fronte", + "artists": "Interpreti" }, "readarr": { - "wanted": "Wanted", - "queued": "Queued", - "books": "Books" + "wanted": "Chcené", + "queued": "Vo fronte", + "books": "Knihy" }, "bazarr": { - "missingEpisodes": "Missing Episodes", - "missingMovies": "Missing Movies" + "missingEpisodes": "Chýbajúce epizódy", + "missingMovies": "Chýbajúce filmy" }, "ombi": { - "pending": "Pending", - "approved": "Approved", - "available": "Available" + "pending": "Čakajúce", + "approved": "Schválené", + "available": "Dostupné" }, "jellyseerr": { - "pending": "Pending", - "approved": "Approved", - "available": "Available" + "pending": "Čakajúce", + "approved": "Schválené", + "available": "Dostupné" }, "overseerr": { - "pending": "Pending", - "processing": "Processing", - "approved": "Approved", - "available": "Available" + "pending": "Čakajúce", + "processing": "Spracovávané", + "approved": "Schválené", + "available": "Dostupné" }, "pihole": { - "queries": "Queries", - "blocked": "Blocked", - "gravity": "Gravity", - "blocked_percent": "Blocked %" + "queries": "Dopyty", + "blocked": "Zablokované", + "gravity": "Gravitácia", + "blocked_percent": "Blokované %" }, "adguard": { - "queries": "Queries", - "blocked": "Blocked", - "filtered": "Filtered", - "latency": "Latency" + "queries": "Dopyty", + "blocked": "Blokované", + "filtered": "Filtrované", + "latency": "Odozva" }, "speedtest": { - "upload": "Upload", - "download": "Download", + "upload": "Odosielanie", + "download": "Sťahovanie", "ping": "Ping" }, "portainer": { - "running": "Running", - "stopped": "Stopped", - "total": "Total" + "running": "Spustené", + "stopped": "Zastavené", + "total": "Celkovo" }, "traefik": { - "routers": "Routers", + "routers": "Routery", "services": "Services", "middleware": "Middleware" }, @@ -418,7 +420,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "quicklaunch": { "bookmark": "Bookmark", @@ -588,8 +591,8 @@ "switches_on": "Switches On" }, "freshrss": { - "subscriptions": "Subscriptions", - "unread": "Unread" + "subscriptions": "Odbery", + "unread": "Neprečítané" }, "channelsdvrserver": { "shows": "Shows", @@ -602,18 +605,18 @@ "updates": "Updates" }, "tailscale": { - "address": "Address", - "years": "{{number}}y", - "expires": "Expires", - "never": "Never", - "last_seen": "Last Seen", - "now": "Now", - "weeks": "{{number}}w", + "address": "Adresa", + "years": "{{number}}r", + "expires": "Vyprší", + "never": "Nikdy", + "last_seen": "Naposledy videné", + "now": "Teraz", + "weeks": "{{number}}t", "days": "{{number}}d", "hours": "{{number}}h", "minutes": "{{number}}m", "seconds": "{{number}}s", - "ago": "{{value}} Ago" + "ago": "Pred {{value}}" }, "qnap": { "cpuUsage": "CPU Usage", @@ -634,23 +637,23 @@ "wanIP": "WAN IP" }, "caddy": { - "upstreams": "Upstreams", + "upstreams": "Odosielanie dát", "requests": "Current requests", "requests_failed": "Failed requests" }, "evcc": { - "pv_power": "Production", - "battery_soc": "Battery", - "grid_power": "Grid", - "home_power": "Consumption", - "charge_power": "Charger", + "pv_power": "Produkcia", + "battery_soc": "Batéria", + "grid_power": "Mriežka", + "home_power": "Spotreba", + "charge_power": "Nabíjačka", "watt_hour": "Wh" }, "pialert": { - "total": "Total", - "connected": "Connected", - "new_devices": "New Devices", - "down_alerts": "Down Alerts" + "total": "Celkovo", + "connected": "Pripojené", + "new_devices": "Nové zariadenia", + "down_alerts": "Upozornenia o výpadkoch" }, "jdownloader": { "downloadCount": "Queue Count", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/sl/common.json b/public/locales/sl/common.json index 258852c1..c1974f12 100644 --- a/public/locales/sl/common.json +++ b/public/locales/sl/common.json @@ -152,7 +152,9 @@ }, "ping": { "error": "Napaka", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "emby": { "playing": "Predvaja", @@ -169,7 +171,7 @@ "bitrate": "Pasovna širina", "playing": "Predvaja", "no_active": "Ni aktivne vsebine", - "plex_connection_error": "Check Plex Connection" + "plex_connection_error": "Preveri Plex povezavo" }, "flood": { "download": "Prenos", @@ -365,12 +367,13 @@ "warn": "Opoz.", "total": "Skupaj", "used": "V uporabi", - "crit": "Crit", - "read": "Read", - "write": "Write", + "crit": "Krit.", + "read": "Prebrano", + "write": "Zapisano", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "authentik": { "users": "Uporabniki", @@ -663,48 +666,85 @@ "totalFiles": "Datoteke" }, "gamedig": { - "name": "Name", - "map": "Map", - "currentPlayers": "Current players", - "players": "Players", - "maxPlayers": "Max players", - "bots": "Bots", + "name": "Naziv", + "map": "Zemljevid", + "currentPlayers": "Igralcev", + "players": "Igralci", + "maxPlayers": "Maks igralcev", + "bots": "Boti", "ping": "Ping", "status": "Status", - "online": "Online", - "offline": "Offline" + "online": "Na spletu", + "offline": "Nepovezano" }, "azuredevops": { - "result": "Result", + "result": "Rezultati", "status": "Status", - "buildId": "Build ID", - "succeeded": "Succeeded", - "notStarted": "Not Started", - "failed": "Failed", - "canceled": "Canceled", - "inProgress": "In Progress", - "totalPrs": "Total PRs", - "myPrs": "My PRs", - "approved": "Approved" + "buildId": "ID gradnje", + "succeeded": "Uspešnih", + "notStarted": "Ni zagnano", + "failed": "Neuspešno", + "canceled": "Preklicano", + "inProgress": "V delu", + "totalPrs": "Skupaj PR", + "myPrs": "Moji PR", + "approved": "Odobreno" }, "urbackup": { - "ok": "Ok", - "errored": "Errors", - "noRecent": "Out of Date", - "totalUsed": "Used Storage" + "ok": "V redu", + "errored": "Napake", + "noRecent": "Zastarano", + "totalUsed": "Shramba v uporabi" }, "openmediavault": { - "downloading": "Downloading", - "total": "Total", - "running": "Running", - "stopped": "Stopped", - "passed": "Passed", - "failed": "Failed" + "downloading": "Prenašanje", + "total": "Skupaj", + "running": "V teku", + "stopped": "Ustavljeno", + "passed": "Opravljeno", + "failed": "Neuspešno" }, "mealie": { - "recipes": "Recipes", - "users": "Users", - "categories": "Categories", - "tags": "Tags" + "recipes": "Recepti", + "users": "Uporabniki", + "categories": "Kategorije", + "tags": "Značke" + }, + "atsumeru": { + "series": "Serije", + "archives": "Arhivi", + "chapters": "Poglavja", + "categories": "Kategorije" + }, + "calibreweb": { + "books": "Knjige", + "authors": "Avtorji", + "categories": "Kategorije", + "series": "Serije" + }, + "uptimerobot": { + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "unknown": "Unknown", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "seemsdown": "Seems Down", + "down": "Down" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json index 32562c75..8a4bef84 100644 --- a/public/locales/sr/common.json +++ b/public/locales/sr/common.json @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Total Observed", @@ -381,7 +382,9 @@ }, "ping": { "error": "Error", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Passed", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json index 0a86dca6..25eff255 100644 --- a/public/locales/sv/common.json +++ b/public/locales/sv/common.json @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Total Observed", @@ -381,7 +382,9 @@ }, "ping": { "error": "Error", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Passed", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "paused": "Paused", + "sitesDown": "Sites Down", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/te/common.json b/public/locales/te/common.json index 4212b34d..d9282059 100644 --- a/public/locales/te/common.json +++ b/public/locales/te/common.json @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "మొత్తం గమనించబడింది", @@ -381,7 +382,9 @@ }, "ping": { "error": "Error", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Passed", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/th/common.json b/public/locales/th/common.json index 57a9ae62..b8f1e226 100644 --- a/public/locales/th/common.json +++ b/public/locales/th/common.json @@ -107,7 +107,9 @@ }, "ping": { "error": "ข้อผิดพลาด", - "ping": "ปิง" + "ping": "ปิง", + "up": "Up", + "down": "Down" }, "emby": { "playing": "กำลังเล่น", @@ -330,7 +332,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "quicklaunch": { "bookmark": "Bookmark", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json index ac88b616..9fd94d5f 100644 --- a/public/locales/tr/common.json +++ b/public/locales/tr/common.json @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Toplam Gözlenen", @@ -381,7 +382,9 @@ }, "ping": { "error": "Hata", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Geçti", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json index a7804865..c1b63419 100644 --- a/public/locales/uk/common.json +++ b/public/locales/uk/common.json @@ -172,7 +172,9 @@ }, "ping": { "error": "Помилка", - "ping": "Пінг" + "ping": "Пінг", + "up": "Up", + "down": "Down" }, "emby": { "playing": "Відтворення", @@ -378,7 +380,8 @@ "write": "Написати", "gpu": "GPU", "mem": "Пам'ять", - "swap": "Обмін" + "swap": "Обмін", + "_temp": "Temp" }, "quicklaunch": { "bookmark": "Закладка", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Серії", + "archives": "Архіви", + "chapters": "Глави", + "categories": "Категорії" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json index c3d393d0..7712c4b1 100644 --- a/public/locales/vi/common.json +++ b/public/locales/vi/common.json @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "Total Observed", @@ -381,7 +382,9 @@ }, "ping": { "error": "Error", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "Passed", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "Books", + "authors": "Authors", + "categories": "Categories", + "series": "Series" + }, + "uptimerobot": { + "up": "Up", + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json index ed609cff..90bf8399 100644 --- a/public/locales/yue/common.json +++ b/public/locales/yue/common.json @@ -1,35 +1,25 @@ { - "emby": { - "transcoding": "轉碼緊", - "bitrate": "比特率", - "playing": "播放緊", - "no_active": "無任何活動", - "movies": "Movies", - "series": "Series", - "episodes": "Episodes", - "songs": "Songs" - }, - "tautulli": { - "playing": "播放緊", - "no_active": "無任何活動", - "transcoding": "轉碼緊", - "bitrate": "比特率", - "plex_connection_error": "Check Plex Connection" - }, - "transmission": { - "download": "下載速度", - "upload": "上傳速度", - "leech": "下載緊", - "seed": "做種緊" + "common": { + "bytes": "{{value, bytes}}", + "bits": "{{value, bytes(bits: true)}}", + "bbytes": "{{value, bytes(binary: true)}}", + "bbits": "{{value, bytes(bits: true; binary: true)}}", + "byterate": "{{value, rate(bits: false)}}", + "bibyterate": "{{value, rate(bits: false; binary: true)}}", + "bitrate": "{{value, rate(bits: true)}}", + "bibitrate": "{{value, rate(bits: true; binary: true)}}", + "percent": "{{value, percent}}", + "number": "{{value, number}}", + "ms": "{{value, number}}" }, "widget": { "missing_type": "缺少小部件類型:{{type}}", "api_error": "API 錯誤", + "information": "資訊", "status": "狀況", - "url": "URL", - "information": "Information", - "raw_error": "Raw Error", - "response_data": "Response Data" + "url": "網址", + "raw_error": "原始錯誤", + "response_data": "回應資料" }, "weather": { "current": "依家位置", @@ -41,41 +31,129 @@ "placeholder": "搜索緊…" }, "resources": { + "cpu": "CPU", + "mem": "記憶體", "total": "全部", "free": "剩餘", "used": "用咗", "load": "負荷", - "cpu": "CPU", - "mem": "MEM", - "temp": "TEMP", - "max": "Max", - "uptime": "UP", - "months": "mo", - "days": "d", - "hours": "h", - "minutes": "m" + "temp": "溫度", + "max": "最大", + "uptime": "運作時間", + "months": "月", + "days": "日", + "hours": "時", + "minutes": "分" + }, + "unifi": { + "users": "使用者", + "uptime": "系統運作時間", + "days": "天", + "wan": "WAN", + "lan": "LAN", + "wlan": "WLAN", + "devices": "設備", + "lan_devices": "有線設備", + "wlan_devices": "無線設備", + "lan_users": "有線使用者", + "wlan_users": "無線使用者", + "up": "運作時間", + "down": "離線", + "wait": "請稍後", + "empty_data": "子系統狀態未知" }, "docker": { "rx": "接收", "tx": "發送", - "mem": "內存", - "cpu": "處理器", + "mem": "記憶體", + "cpu": "CPU", + "running": "執行中", "offline": "離線", - "error": "Error", - "unknown": "Unknown", - "running": "Running", - "starting": "Starting", - "unhealthy": "Unhealthy", - "not_found": "Not Found", - "exited": "Exited", - "partial": "Partial", - "healthy": "Healthy" + "error": "錯誤", + "unknown": "未知", + "healthy": "健康", + "starting": "啟動中", + "unhealthy": "不健康的", + "not_found": "未找到", + "exited": "已退出", + "partial": "部分" + }, + "ping": { + "http_status": "HTTP status", + "error": "錯誤", + "ping": "Ping", + "down": "Down", + "up": "Up", + "not_available": "Not Available" + }, + "emby": { + "playing": "播放緊", + "transcoding": "轉碼緊", + "bitrate": "比特率", + "no_active": "無任何活動", + "movies": "電影", + "series": "影集", + "episodes": "集", + "songs": "曲目" + }, + "evcc": { + "pv_power": "正式環境", + "battery_soc": "電池", + "grid_power": "電網", + "home_power": "電源使用率", + "charge_power": "充電", + "watt_hour": "瓦時 (Wh)" + }, + "flood": { + "download": "下載速率", + "upload": "上傳速率", + "leech": "未完成下載", + "seed": "已完成下載" + }, + "freshrss": { + "subscriptions": "訂閱", + "unread": "未讀" + }, + "caddy": { + "upstreams": "上行", + "requests": "目前請求數", + "requests_failed": "失敗請求" + }, + "changedetectionio": { + "totalObserved": "總監測數", + "diffsDetected": "偵測到的變更" + }, + "channelsdvrserver": { + "shows": "節目", + "recordings": "錄影", + "scheduled": "已排定", + "passes": "通行證" + }, + "tautulli": { + "playing": "播放緊", + "transcoding": "轉碼緊", + "bitrate": "比特率", + "no_active": "無任何活動", + "plex_connection_error": "檢查Plex的連接狀態" + }, + "omada": { + "connectedAp": "已連接的存取點", + "activeUser": "在線裝置", + "alerts": "警示", + "connectedGateway": "已連接的閘道", + "connectedSwitches": "已連接的交換器" }, "nzbget": { "rate": "速度", "remaining": "剩餘", "downloaded": "下載咗" }, + "plex": { + "streams": "正在播放", + "albums": "專輯", + "movies": "電影", + "tv": "影集" + }, "sabnzbd": { "rate": "速度", "queue": "隊列", @@ -83,34 +161,60 @@ }, "rutorrent": { "active": "激活", - "upload": "上傳", - "download": "下載" + "upload": "上傳速率", + "download": "下載速率" + }, + "transmission": { + "download": "下載速率", + "upload": "上傳速率", + "leech": "未完成下載", + "seed": "已完成下載" }, "qbittorrent": { - "download": "下載速度", - "upload": "上傳速度", - "leech": "下載緊", - "seed": "做種緊" + "download": "下載速率", + "upload": "上傳速率", + "leech": "未完成下載", + "seed": "已完成下載" + }, + "qnap": { + "cpuUsage": "CPU 使用率", + "memUsage": "記憶體使用率", + "systemTempC": "系統溫度", + "poolUsage": "儲存池使用率", + "volumeUsage": "儲存區用量", + "invalid": "無效的" + }, + "deluge": { + "download": "下載速率", + "upload": "上傳速率", + "leech": "未完成下載", + "seed": "已完成下載" + }, + "downloadstation": { + "download": "下載速率", + "upload": "上傳速率", + "leech": "未完成下載", + "seed": "已完成下載" }, "sonarr": { "wanted": "想睇", "queued": "排緊隊", - "series": "電視劇", - "queue": "Queue", - "unknown": "Unknown" + "series": "影集", + "queue": "隊列", + "unknown": "未知" }, "radarr": { "wanted": "想睇", + "missing": "缺少", "queued": "排緊隊", "movies": "電影", - "missing": "Missing", - "queue": "Queue", - "unknown": "Unknown" + "queue": "隊列", + "unknown": "未知" }, "lidarr": { "wanted": "想睇", "queued": "排緊隊", - "artists": "Artists" + "artists": "創作者" }, "readarr": { "wanted": "想睇", @@ -127,21 +231,27 @@ "available": "可用" }, "jellyseerr": { - "pending": "提交咗", - "approved": "批准咗", - "available": "可睇嘅總量" + "pending": "待定", + "approved": "批准", + "available": "可用" }, "overseerr": { "pending": "待定", + "processing": "處理中", "approved": "批准", - "available": "可用", - "processing": "Processing" + "available": "可用" + }, + "pialert": { + "total": "全部", + "connected": "已連線", + "new_devices": "新裝置", + "down_alerts": "離線警告" }, "pihole": { "queries": "查詢", "blocked": "封鎖", - "gravity": "重力", - "blocked_percent": "Blocked %" + "blocked_percent": "已封鎖 %", + "gravity": "重力" }, "adguard": { "queries": "查詢", @@ -152,30 +262,54 @@ "speedtest": { "upload": "上傳速率", "download": "下載速率", - "ping": "Ping值" + "ping": "Ping" }, "portainer": { - "running": "運行緊", + "running": "執行中", "stopped": "暫停", "total": "全部" }, + "tailscale": { + "address": "位址", + "expires": "已失效", + "never": "未曾", + "last_seen": "上次連線", + "now": "現在", + "years": "{{number}} 年", + "weeks": "{{number}} 週", + "days": "{{number}} 天", + "hours": "{{number}} 小時", + "minutes": "{{number}} 分鐘", + "seconds": "{{number}} 秒", + "ago": "{{value}} 前" + }, + "tdarr": { + "queue": "隊列", + "processed": "已處理", + "errored": "發生錯誤", + "saved": "已儲存" + }, "traefik": { "routers": "路由器", "services": "服務項", "middleware": "中間件" }, - "coinmarketcap": { - "1day": "1 日", - "configure": "配置一個或多個加密貨幣以進行跟蹤", - "1hour": "1 個鐘", - "7days": "7 日", - "30days": "30日" + "navidrome": { + "nothing_streaming": "無任何活動", + "please_wait": "請稍後" }, "npm": { "enabled": "啟用", "disabled": "停用咗", "total": "全部" }, + "coinmarketcap": { + "configure": "配置一個或多個加密貨幣以進行跟蹤", + "1hour": "1 個鐘", + "1day": "1 日", + "7days": "7 日", + "30days": "30日" + }, "gotify": { "apps": "應用", "clients": "客戶端", @@ -190,7 +324,7 @@ }, "jackett": { "configured": "配置", - "errored": "已錯誤" + "errored": "發生錯誤" }, "strelaysrv": { "numActiveSessions": "會話", @@ -199,512 +333,429 @@ "transferRate": "速度" }, "mastodon": { - "user_count": "用戶", + "user_count": "使用者", "status_count": "職位", "domain_count": "域" }, + "medusa": { + "wanted": "想睇", + "queued": "排緊隊", + "series": "影集" + }, + "minecraft": { + "players": "玩家", + "version": "版本", + "status": "狀況", + "up": "在線", + "down": "離線" + }, + "miniflux": { + "read": "已讀", + "unread": "未讀" + }, "authentik": { - "users": "用戶", + "users": "使用者", "loginsLast24H": "登錄( 24小时)", "failedLoginsLast24H": "登錄失敗( 24鐘頭)" }, "proxmox": { - "mem": "MEM", + "mem": "記憶體", "cpu": "CPU", "lxc": "LXC", "vms": "VMs" }, - "unifi": { - "users": "Users", - "uptime": "System Uptime", - "days": "Days", - "wan": "WAN", - "lan_users": "LAN Users", - "wlan_users": "WLAN Users", - "up": "UP", - "down": "DOWN", - "wait": "Please wait", - "lan": "LAN", - "wlan": "WLAN", - "devices": "Devices", - "lan_devices": "LAN Devices", - "wlan_devices": "WLAN Devices", - "empty_data": "Subsystem status unknown" - }, - "plex": { - "streams": "Active Streams", - "movies": "Movies", - "tv": "TV Shows", - "albums": "Albums" - }, "glances": { "cpu": "CPU", - "wait": "Please wait", - "temp": "TEMP", - "uptime": "UP", - "days": "d", - "hours": "h", - "load": "Load", - "warn": "Warn", - "total": "Total", - "free": "Free", - "used": "Used", - "crit": "Crit", - "read": "Read", - "write": "Write", + "load": "負荷", + "wait": "請稍後", + "temp": "溫度", + "_temp": "溫度", + "warn": "警告", + "uptime": "運作時間", + "total": "全部", + "free": "剩餘", + "used": "用咗", + "days": "日", + "hours": "時", + "crit": "重大的", + "read": "已讀", + "write": "寫入", "gpu": "GPU", - "mem": "Mem", + "mem": "記憶體", "swap": "Swap" }, - "changedetectionio": { - "totalObserved": "Total Observed", - "diffsDetected": "Diffs Detected" + "quicklaunch": { + "bookmark": "書籤", + "service": "服務", + "search": "搜尋", + "custom": "自訂", + "visit": "造訪", + "url": "網址" }, "wmo": { - "55-day": "Heavy Drizzle", - "55-night": "Heavy Drizzle", - "56-day": "Light Freezing Drizzle", - "63-day": "Rain", - "65-night": "Heavy Rain", - "66-day": "Freezing Rain", - "75-day": "Heavy Snow", - "75-night": "Heavy Snow", - "77-day": "Snow Grains", - "77-night": "Snow Grains", - "81-night": "Showers", - "82-day": "Heavy Showers", - "82-night": "Heavy Showers", - "99-day": "Thunderstorm With Hail", - "99-night": "Thunderstorm With Hail", - "0-day": "Sunny", - "0-night": "Clear", - "1-day": "Mainly Sunny", - "1-night": "Mainly Clear", - "2-day": "Partly Cloudy", - "2-night": "Partly Cloudy", - "3-day": "Cloudy", - "3-night": "Cloudy", - "45-day": "Foggy", - "45-night": "Foggy", - "48-day": "Foggy", - "51-day": "Light Drizzle", - "48-night": "Foggy", - "51-night": "Light Drizzle", - "53-day": "Drizzle", - "53-night": "Drizzle", - "56-night": "Light Freezing Drizzle", - "57-day": "Freezing Drizzle", - "57-night": "Freezing Drizzle", - "61-day": "Light Rain", - "61-night": "Light Rain", - "63-night": "Rain", - "65-day": "Heavy Rain", - "66-night": "Freezing Rain", - "67-day": "Freezing Rain", - "67-night": "Freezing Rain", - "80-night": "Light Showers", - "71-day": "Light Snow", - "71-night": "Light Snow", - "73-day": "Snow", - "73-night": "Snow", - "80-day": "Light Showers", - "81-day": "Showers", - "85-day": "Snow Showers", - "85-night": "Snow Showers", - "86-day": "Snow Showers", - "86-night": "Snow Showers", - "95-day": "Thunderstorm", - "95-night": "Thunderstorm", - "96-day": "Thunderstorm With Hail", - "96-night": "Thunderstorm With Hail" - }, - "quicklaunch": { - "bookmark": "Bookmark", - "service": "Service", - "search": "Search", - "custom": "Custom", - "visit": "Visit", - "url": "URL" + "0-day": "晴天", + "0-night": "晴朗", + "1-day": "晴時多雲", + "1-night": "晴時多雲", + "2-day": "多雲時陰", + "2-night": "多雲時陰", + "3-day": "陰天", + "3-night": "陰天", + "45-day": "有霧", + "45-night": "有霧", + "48-day": "有霧", + "48-night": "有霧", + "51-day": "小毛雨", + "51-night": "小毛雨", + "53-day": "毛雨", + "53-night": "毛雨", + "55-day": "大毛雨", + "55-night": "大毛雨", + "56-day": "小凍毛雨", + "56-night": "小凍毛雨", + "57-day": "凍毛雨", + "57-night": "凍毛雨", + "61-day": "小雨", + "61-night": "小雨", + "63-day": "雨", + "63-night": "雨", + "65-day": "大雨", + "65-night": "大雨", + "66-day": "凍雨", + "66-night": "凍雨", + "67-day": "凍雨", + "67-night": "凍雨", + "71-day": "小雪", + "71-night": "小雪", + "73-day": "雪", + "73-night": "雪", + "75-day": "大雪", + "75-night": "大雪", + "77-day": "雪粒", + "77-night": "雪粒", + "80-day": "微陣雨", + "80-night": "微陣雨", + "81-day": "陣雨", + "81-night": "陣雨", + "82-day": "強陣雨", + "82-night": "強陣雨", + "85-day": "陣雪", + "85-night": "陣雪", + "86-day": "陣雪", + "86-night": "陣雪", + "95-day": "雷雨", + "95-night": "雷雨", + "96-day": "雷雨伴隨冰雹", + "96-night": "雷雨伴隨冰雹", + "99-day": "雷雨伴隨冰雹", + "99-night": "雷雨伴隨冰雹" }, "homebridge": { - "available_update": "System", - "updates": "Updates", - "update_available": "Update Available", - "up_to_date": "Up to Date", + "available_update": "系統", + "updates": "更新", + "update_available": "有可用的更新", + "up_to_date": "已更新至最新", "child_bridges": "Child Bridges", "child_bridges_status": "{{ok}}/{{total}}", "up": "Up", - "pending": "Pending", + "pending": "待定", "down": "Down" }, - "autobrr": { - "approvedPushes": "Approved", - "rejectedPushes": "Rejected", - "filters": "Filters", - "indexers": "Indexers" + "healthchecks": { + "new": "新建立", + "up": "在線", + "grace": "延緩中", + "down": "離線", + "paused": "擱置中", + "status": "狀況", + "last_ping": "上次檢查", + "never": "尚未檢查" }, "watchtower": { - "containers_scanned": "Scanned", - "containers_updated": "Updated", - "containers_failed": "Failed" + "containers_scanned": "已掃描", + "containers_updated": "已更新", + "containers_failed": "失敗" + }, + "autobrr": { + "approvedPushes": "批准", + "rejectedPushes": "拒絕", + "filters": "篩選器", + "indexers": "索引" }, "tubearchivist": { - "downloads": "Queue", - "videos": "Videos", - "channels": "Channels", - "playlists": "Playlists" + "downloads": "隊列", + "videos": "影片", + "channels": "頻道", + "playlists": "播放清單" }, "truenas": { - "load": "System Load", - "uptime": "Uptime", - "alerts": "Alerts", + "load": "系統負載", + "uptime": "運行時間", + "alerts": "警示", "time": "{{value, number(style: unit; unitDisplay: long;)}}" }, - "navidrome": { - "nothing_streaming": "No Active Streams", - "please_wait": "Please Wait" - }, "pyload": { - "speed": "Speed", - "active": "Active", - "queue": "Queue", - "total": "Total" + "speed": "速度", + "active": "激活", + "queue": "隊列", + "total": "全部" }, "gluetun": { - "public_ip": "Public IP", - "region": "Region", - "country": "Country" + "public_ip": "公用IP", + "region": "地區", + "country": "國家" }, "hdhomerun": { - "channels": "Channels", - "hd": "HD" - }, - "ping": { - "error": "Error", - "ping": "Ping" + "channels": "頻道", + "hd": "高畫質" }, "scrutiny": { - "passed": "Passed", - "failed": "Failed", - "unknown": "Unknown" + "passed": "通過", + "failed": "失敗", + "unknown": "未知" }, "paperlessngx": { - "inbox": "Inbox", - "total": "Total" - }, - "deluge": { - "download": "Download", - "upload": "Upload", - "leech": "Leech", - "seed": "Seed" - }, - "flood": { - "download": "Download", - "upload": "Upload", - "leech": "Leech", - "seed": "Seed" - }, - "tdarr": { - "queue": "Queue", - "processed": "Processed", - "errored": "Errored", - "saved": "Saved" - }, - "miniflux": { - "read": "Read", - "unread": "Unread" + "inbox": "收件箱", + "total": "全部" }, "nextdns": { - "wait": "Please Wait", - "no_devices": "No Device Data Received" - }, - "common": { - "bibyterate": "{{value, rate(bits: false; binary: true)}}", - "bibitrate": "{{value, rate(bits: true; binary: true)}}" - }, - "omada": { - "connectedAp": "Connected APs", - "activeUser": "Active devices", - "alerts": "Alerts", - "connectedGateway": "Connected gateways", - "connectedSwitches": "Connected switches" - }, - "downloadstation": { - "download": "Download", - "upload": "Upload", - "leech": "Leech", - "seed": "Seed" + "wait": "請稍後", + "no_devices": "未收到裝置資料" }, "mikrotik": { - "cpuLoad": "CPU Load", - "memoryUsed": "Memory Used", - "uptime": "Uptime", - "numberOfLeases": "Leases" + "cpuLoad": "CPU負載", + "memoryUsed": "已使用的記憶體", + "uptime": "運行時間", + "numberOfLeases": "租約" }, "xteve": { - "streams_all": "All Streams", - "streams_active": "Active Streams", - "streams_xepg": "XEPG Channels" + "streams_all": "所有播放活動", + "streams_active": "正在播放", + "streams_xepg": "XEPG頻道" + }, + "opendtu": { + "yieldDay": "Today", + "absolutePower": "Power", + "relativePower": "Power %", + "limit": "Limit" }, "opnsense": { - "cpu": "CPU Load", - "memory": "Active Memory", - "wanUpload": "WAN Upload", - "wanDownload": "WAN Download" + "cpu": "CPU負載", + "memory": "記憶體", + "wanUpload": "WAN上傳", + "wanDownload": "WAN下載" }, "moonraker": { - "print_progress": "Progress", - "layers": "Layers", - "printer_state": "Printer State", - "print_status": "Print Status" - }, - "medusa": { - "wanted": "Wanted", - "queued": "Queued", - "series": "Series" + "printer_state": "列印機狀態", + "print_status": "列印狀態", + "print_progress": "進度", + "layers": "層" }, "octoprint": { - "printer_state": "Status", - "temp_tool": "Tool temp", - "temp_bed": "Bed temp", - "job_completion": "Completion" + "printer_state": "狀況", + "temp_tool": "噴頭溫度", + "temp_bed": "平台溫度", + "job_completion": "完成度" }, "cloudflared": { - "origin_ip": "Origin IP", - "status": "Status" + "origin_ip": "源頭IP", + "status": "狀況" + }, + "pfsense": { + "load": "平均負載量", + "memory": "記憶體使用率", + "wanStatus": "網際網路狀態", + "up": "Up", + "down": "Down", + "temp": "溫度", + "disk": "硬碟使用率", + "wanIP": "網際網路 IP" }, "proxmoxbackupserver": { - "datastore_usage": "Datastore", - "failed_tasks_24h": "Failed Tasks 24h", + "datastore_usage": "數據存儲", + "failed_tasks_24h": "24小時內失敗任務", "cpu_usage": "CPU", - "memory_usage": "Memory" + "memory_usage": "記憶體" }, "immich": { - "users": "Users", - "photos": "Photos", - "videos": "Videos", - "storage": "Storage" + "users": "使用者", + "photos": "照片", + "videos": "影片", + "storage": "儲存空間" }, "uptimekuma": { - "up": "Sites Up", - "down": "Sites Down", - "uptime": "Uptime", - "incident": "Incident", - "m": "m" + "up": "在線網站", + "down": "離線網站", + "uptime": "運行時間", + "incident": "事件", + "m": "分" + }, + "atsumeru": { + "series": "影集", + "archives": "檔案", + "chapters": "章節", + "categories": "類別" }, "komga": { - "libraries": "Libraries", - "series": "Series", - "books": "Books" - }, - "mylar": { - "series": "Series", - "issues": "Issues", - "wanted": "Wanted" - }, - "photoprism": { - "albums": "Albums", - "photos": "Photos", - "videos": "Videos", - "people": "People" + "libraries": "文庫", + "series": "影集", + "books": "書" }, "diskstation": { - "days": "Days", - "uptime": "Uptime", - "volumeAvailable": "Available" + "days": "天", + "uptime": "運行時間", + "volumeAvailable": "可用" + }, + "mylar": { + "series": "影集", + "issues": "出版", + "wanted": "想睇" + }, + "photoprism": { + "albums": "專輯", + "photos": "照片", + "videos": "影片", + "people": "人物" }, "fileflows": { - "queue": "Queue", - "processed": "Processed", - "time": "Time", - "processing": "Processing" + "queue": "隊列", + "processing": "處理中", + "processed": "已處理", + "time": "時間" }, "grafana": { - "dashboards": "Dashboards", - "datasources": "Data Sources", - "totalalerts": "Total Alerts", - "alertstriggered": "Alerts Triggered" + "dashboards": "控制面板", + "datasources": "數據來源", + "totalalerts": "警報總數", + "alertstriggered": "觸發的警報" }, "nextcloud": { - "cpuload": "Cpu Load", - "memoryusage": "Memory Usage", - "freespace": "Free Space", - "activeusers": "Active Users", - "numfiles": "Files", - "numshares": "Shared Items" + "cpuload": "處理器負載", + "memoryusage": "記憶體用量", + "freespace": "可用空間", + "activeusers": "活躍用戶", + "numfiles": "檔案", + "numshares": "已分享" }, "kopia": { - "lastrun": "Last Run", - "nextrun": "Next Run", - "failed": "Failed", - "status": "Status", - "size": "Size" + "status": "狀況", + "size": "檔案大小", + "lastrun": "上次執行", + "nextrun": "下次執行", + "failed": "失敗" }, "unmanic": { - "active_workers": "Active Workers", - "total_workers": "Total Workers", - "records_total": "Queue Length" - }, - "healthchecks": { - "new": "New", - "up": "Online", - "grace": "In Grace Period", - "down": "Offline", - "paused": "Paused", - "status": "Status", - "last_ping": "Last Ping", - "never": "No pings yet" + "active_workers": "在線工作程序", + "total_workers": "總工作程序", + "records_total": "佇列長度" }, "pterodactyl": { - "servers": "Servers", - "nodes": "Nodes" + "servers": "伺服器", + "nodes": "節點" }, "prometheus": { - "targets_up": "Targets Up", - "targets_down": "Targets Down", - "targets_total": "Total Targets" - }, - "minecraft": { - "players": "Players", - "version": "Version", - "status": "Status", - "up": "Online", - "down": "Offline" + "targets_up": "目標上線", + "targets_down": "目標離線", + "targets_total": "目標總數" }, "ghostfolio": { "gross_percent_today": "Today", - "gross_percent_1y": "One year", - "gross_percent_max": "All time" + "gross_percent_1y": "一年", + "gross_percent_max": "所有時間" }, "audiobookshelf": { - "podcasts": "Podcasts", - "books": "Books", - "podcastsDuration": "Duration", - "booksDuration": "Duration" + "podcasts": "播客", + "books": "書", + "podcastsDuration": "歷時", + "booksDuration": "歷時" }, "homeassistant": { - "people_home": "People Home", - "lights_on": "Lights On", - "switches_on": "Switches On" - }, - "freshrss": { - "subscriptions": "Subscriptions", - "unread": "Unread" - }, - "channelsdvrserver": { - "shows": "Shows", - "recordings": "Recordings", - "scheduled": "Scheduled", - "passes": "Passes" + "people_home": "在家人數", + "lights_on": "燈亮著", + "switches_on": "開關開著" }, "whatsupdocker": { - "monitoring": "Monitoring", - "updates": "Updates" + "monitoring": "監測中", + "updates": "更新" }, - "tailscale": { - "address": "Address", - "expires": "Expires", - "never": "Never", - "last_seen": "Last Seen", - "now": "Now", - "years": "{{number}}y", - "weeks": "{{number}}w", - "days": "{{number}}d", - "hours": "{{number}}h", - "minutes": "{{number}}m", - "seconds": "{{number}}s", - "ago": "{{value}} Ago" - }, - "qnap": { - "systemTempC": "System Temp", - "poolUsage": "Pool Usage", - "cpuUsage": "CPU Usage", - "memUsage": "MEM Usage", - "volumeUsage": "Volume Usage", - "invalid": "Invalid" - }, - "pfsense": { - "load": "Load Avg", - "memory": "Mem Usage", - "wanStatus": "WAN Status", - "up": "Up", - "down": "Down", - "temp": "Temp", - "disk": "Disk Usage", - "wanIP": "WAN IP" - }, - "caddy": { - "upstreams": "Upstreams", - "requests": "Current requests", - "requests_failed": "Failed requests" - }, - "evcc": { - "pv_power": "Production", - "battery_soc": "Battery", - "grid_power": "Grid", - "home_power": "Consumption", - "charge_power": "Charger", - "watt_hour": "Wh" - }, - "pialert": { - "total": "Total", - "connected": "Connected", - "new_devices": "New Devices", - "down_alerts": "Down Alerts" + "calibreweb": { + "books": "書", + "authors": "作者", + "categories": "類別", + "series": "影集" }, "jdownloader": { - "downloadCount": "Queue Count", - "downloadSpeed": "Download Speed", - "downloadBytesRemaining": "Remaining", - "downloadTotalBytes": "Size" + "downloadCount": "隊列", + "downloadBytesRemaining": "剩餘", + "downloadTotalBytes": "檔案大小", + "downloadSpeed": "速度" }, "kavita": { - "seriesCount": "Series", - "totalFiles": "Files" - }, - "gamedig": { - "name": "Name", - "map": "Map", - "currentPlayers": "Current players", - "players": "Players", - "maxPlayers": "Max players", - "bots": "Bots", - "ping": "Ping", - "status": "Status", - "online": "Online", - "offline": "Offline" + "seriesCount": "影集", + "totalFiles": "檔案" }, "azuredevops": { - "result": "Result", - "status": "Status", - "buildId": "Build ID", - "succeeded": "Succeeded", - "notStarted": "Not Started", - "failed": "Failed", - "canceled": "Canceled", - "inProgress": "In Progress", - "totalPrs": "Total PRs", - "myPrs": "My PRs", - "approved": "Approved" + "result": "結果", + "status": "狀況", + "buildId": "組建編號", + "succeeded": "成功", + "notStarted": "尚未啟用", + "failed": "失敗", + "canceled": "取消", + "inProgress": "執行中", + "totalPrs": "總提取要求", + "myPrs": "我的提取要求", + "approved": "批准" + }, + "gamedig": { + "status": "狀況", + "online": "在線", + "offline": "離線", + "name": "名稱", + "map": "地圖", + "currentPlayers": "當前玩家數", + "players": "玩家", + "maxPlayers": "玩家數上限", + "bots": "機器人", + "ping": "Ping" }, "urbackup": { "ok": "Ok", - "errored": "Errors", - "noRecent": "Out of Date", - "totalUsed": "Used Storage" - }, - "openmediavault": { - "downloading": "Downloading", - "total": "Total", - "running": "Running", - "stopped": "Stopped", - "passed": "Passed", - "failed": "Failed" + "errored": "錯誤", + "noRecent": "已過時", + "totalUsed": "已使用空間" }, "mealie": { - "recipes": "Recipes", - "users": "Users", - "categories": "Categories", - "tags": "Tags" + "recipes": "食譜", + "users": "使用者", + "categories": "類別", + "tags": "標籤" + }, + "openmediavault": { + "downloading": "下載中", + "total": "全部", + "running": "執行中", + "stopped": "暫停", + "passed": "通過", + "failed": "失敗" + }, + "uptimerobot": { + "status": "狀況", + "uptime": "運行時間", + "lastDown": "近一次停機時間", + "downDuration": "歷時停機時間", + "sitesUp": "在線網站", + "sitesDown": "離線網站", + "paused": "擱置中", + "notyetchecked": "尚未檢查", + "up": "Up", + "seemsdown": "似乎離線", + "down": "Down", + "unknown": "未知" + }, + "calendar": { + "inCinemas": "In cinemas", + "physicalRelease": "Physical release", + "digitalRelease": "Digital release" } } diff --git a/public/locales/zh-CN/common.json b/public/locales/zh-CN/common.json index d820aa96..d9ab4c62 100644 --- a/public/locales/zh-CN/common.json +++ b/public/locales/zh-CN/common.json @@ -254,7 +254,8 @@ "write": "Write", "gpu": "GPU", "mem": "Mem", - "swap": "Swap" + "swap": "Swap", + "_temp": "Temp" }, "changedetectionio": { "totalObserved": "观察到的总数", @@ -381,7 +382,9 @@ }, "ping": { "error": "错误", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "通过", @@ -659,8 +662,8 @@ "downloadTotalBytes": "Size" }, "kavita": { - "seriesCount": "Series", - "totalFiles": "Files" + "seriesCount": "系列", + "totalFiles": "文件" }, "gamedig": { "name": "Name", @@ -706,5 +709,42 @@ "users": "Users", "categories": "Categories", "tags": "Tags" + }, + "atsumeru": { + "series": "Series", + "archives": "Archives", + "chapters": "Chapters", + "categories": "Categories" + }, + "calibreweb": { + "books": "书籍", + "authors": "作者", + "categories": "分类", + "series": "丛书" + }, + "uptimerobot": { + "status": "Status", + "uptime": "Uptime", + "lastDown": "Last Downtime", + "downDuration": "Downtime Duration", + "sitesUp": "Sites Up", + "sitesDown": "Sites Down", + "paused": "Paused", + "notyetchecked": "Not Yet Checked", + "up": "Up", + "seemsdown": "Seems Down", + "down": "Down", + "unknown": "Unknown" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json index c8ce9caf..ede967ff 100644 --- a/public/locales/zh-Hant/common.json +++ b/public/locales/zh-Hant/common.json @@ -249,12 +249,13 @@ "load": "負載量", "warn": "警告", "total": "總共", - "crit": "Crit", + "crit": "重大的", "read": "讀取", "write": "寫入", "gpu": "GPU", "mem": "記憶體", - "swap": "Swap" + "swap": "Swap", + "_temp": "溫度" }, "changedetectionio": { "totalObserved": "總監測數", @@ -381,7 +382,9 @@ }, "ping": { "error": "錯誤", - "ping": "Ping" + "ping": "Ping", + "up": "Up", + "down": "Down" }, "scrutiny": { "passed": "通過", @@ -494,7 +497,7 @@ }, "komga": { "libraries": "文庫", - "series": "叢刊", + "series": "系列", "books": "叢書" }, "mylar": { @@ -547,7 +550,7 @@ }, "healthchecks": { "new": "新建立", - "up": "上線", + "up": "在線", "grace": "延緩中", "down": "離線", "paused": "擱置中", @@ -568,7 +571,7 @@ "players": "玩家", "version": "版本", "status": "狀態", - "up": "上線", + "up": "在線", "down": "離線" }, "ghostfolio": { @@ -670,9 +673,9 @@ "maxPlayers": "玩家數上限", "bots": "機器人", "ping": "Ping", - "status": "Status", - "online": "Online", - "offline": "Offline" + "status": "狀態", + "online": "在線", + "offline": "離線" }, "azuredevops": { "result": "結果", @@ -694,17 +697,54 @@ "totalUsed": "已使用空間" }, "openmediavault": { - "downloading": "Downloading", - "total": "Total", - "running": "Running", - "stopped": "Stopped", - "passed": "Passed", - "failed": "Failed" + "downloading": "下載中", + "total": "總數", + "running": "運行中", + "stopped": "未運行", + "passed": "通過", + "failed": "失敗" }, "mealie": { - "recipes": "Recipes", - "users": "Users", - "categories": "Categories", - "tags": "Tags" + "recipes": "食譜", + "users": "使用者", + "categories": "類別", + "tags": "標籤" + }, + "atsumeru": { + "series": "系列", + "archives": "檔案", + "chapters": "章節", + "categories": "類別" + }, + "calibreweb": { + "books": "叢書", + "authors": "作者", + "categories": "類別", + "series": "系列" + }, + "uptimerobot": { + "status": "狀態", + "uptime": "在線時間", + "lastDown": "近一次停機時間", + "downDuration": "歷時停機時間", + "sitesUp": "在線網站", + "sitesDown": "離線網站", + "paused": "擱置中", + "notyetchecked": "尚未檢查", + "up": "在線", + "seemsdown": "似乎離線", + "down": "離線", + "unknown": "未知的" + }, + "opendtu": { + "relativePower": "Power %", + "yieldDay": "Today", + "limit": "Limit", + "absolutePower": "Power" + }, + "calendar": { + "physicalRelease": "Physical release", + "inCinemas": "In cinemas", + "digitalRelease": "Digital release" } } diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..a86e7a80 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,28 @@ +Babel==2.12.1 +certifi==2023.7.22 +charset-normalizer==3.2.0 +click==8.1.7 +colorama==0.4.6 +ghp-import==2.1.0 +idna==3.4 +Jinja2==3.1.2 +Markdown==3.4.4 +MarkupSafe==2.1.3 +mergedeep==1.3.4 +mkdocs==1.5.3 +mkdocs-material @ git+https://github.com/benphelps/mkdocs-material-insiders.git@bcad61c278491d58e74c39e164b821cec795c161 +mkdocs-material-extensions==1.2 +packaging==23.1 +paginate==0.5.6 +pathspec==0.11.2 +platformdirs==3.10.0 +Pygments==2.16.1 +pymdown-extensions==10.3 +python-dateutil==2.8.2 +PyYAML==6.0.1 +pyyaml_env_tag==0.1 +regex==2023.8.8 +requests==2.31.0 +six==1.16.0 +urllib3==2.0.5 +watchdog==3.0.0 diff --git a/src/components/bookmarks/group.jsx b/src/components/bookmarks/group.jsx index 44db59fc..2cfcad23 100644 --- a/src/components/bookmarks/group.jsx +++ b/src/components/bookmarks/group.jsx @@ -5,44 +5,65 @@ import { MdKeyboardArrowDown } from "react-icons/md"; import ErrorBoundary from "components/errorboundry"; import List from "components/bookmarks/list"; +import ResolvedIcon from "components/resolvedicon"; -export default function BookmarksGroup({ group, disableCollapse }) { +export default function BookmarksGroup({ bookmarks, layout, disableCollapse }) { const panel = useRef(); return ( -
- - {({ open }) => ( - <> - -

{group.name}

- -
- { - panel.current.style.height = `${panel.current.scrollHeight}px`; - setTimeout(() => {panel.current.style.height = `0`}, 1); - }} - beforeEnter={() => { - panel.current.style.height = `0px`; - setTimeout(() => {panel.current.style.height = `${panel.current.scrollHeight}px`}, 1); - }} - > - - - - - - - - )} -
+
+ + {({ open }) => ( + <> + {layout?.header !== false && ( + + {layout?.icon && ( +
+ +
+ )} +

{bookmarks.name}

+ +
+ )} + { + panel.current.style.height = `${panel.current.scrollHeight}px`; + setTimeout(() => { + panel.current.style.height = `0`; + }, 1); + }} + beforeEnter={() => { + panel.current.style.height = `0px`; + setTimeout(() => { + panel.current.style.height = `${panel.current.scrollHeight}px`; + }, 1); + }} + > + + + + + + + + )} +
); } diff --git a/src/components/bookmarks/item.jsx b/src/components/bookmarks/item.jsx index 87ef691c..f7946acc 100644 --- a/src/components/bookmarks/item.jsx +++ b/src/components/bookmarks/item.jsx @@ -5,35 +5,32 @@ import { SettingsContext } from "utils/contexts/settings"; import ResolvedIcon from "components/resolvedicon"; export default function Item({ bookmark }) { - const { hostname } = new URL(bookmark.href); + const description = bookmark.description ?? new URL(bookmark.href).hostname; const { settings } = useContext(SettingsContext); return ( -
  • +
  • -
    - {bookmark.icon && +
    + {bookmark.icon &&
    } {!bookmark.icon && bookmark.abbr}
    -
    -
    {bookmark.name}
    -
    {hostname}
    +
    +
    {bookmark.name}
    +
    {description}
    diff --git a/src/components/bookmarks/list.jsx b/src/components/bookmarks/list.jsx index d37b83e7..64b35076 100644 --- a/src/components/bookmarks/list.jsx +++ b/src/components/bookmarks/list.jsx @@ -1,8 +1,17 @@ +import classNames from "classnames"; + +import { columnMap } from "../../utils/layout/columns"; + import Item from "components/bookmarks/item"; -export default function List({ bookmarks }) { +export default function List({ bookmarks, layout }) { return ( -