diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index 08eebdf9..b799d3e4 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -13,7 +13,7 @@ body: attributes: label: Before submitting, please confirm the following options: - - label: I confirm this was discussed, and the maintainers suggest I open an issue (note that AI bots are not maintainers). + - label: I confirm this was discussed, and the maintainers asked that I open an issue. required: true - label: I am aware that if I create this issue without a discussion, it will be removed without a response. required: true diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index f876f0f9..b52196f5 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -116,7 +116,7 @@ jobs: # https://github.com/docker/build-push-action - name: Build and push Docker image id: build-and-push - uses: docker/build-push-action@v5 + uses: docker/build-push-action@v6 with: context: . push: ${{ github.event_name != 'pull_request' && !(github.event_name == 'push' && startsWith(github.ref, 'refs/heads/feature')) }} diff --git a/.github/workflows/docs-publish.yml b/.github/workflows/docs-publish.yml index 2f3a9501..b45dbb7a 100644 --- a/.github/workflows/docs-publish.yml +++ b/.github/workflows/docs-publish.yml @@ -51,8 +51,7 @@ jobs: mkdocs-material- - run: sudo apt-get install pngquant - run: pip install mike - - run: pip install mkdocs-material - - run: pip install "mkdocs-material[imaging]" + - run: pip install mkdocs-material mkdocs-redirects "mkdocs-material[imaging]" - name: Test Docs Build run: MKINSIDERS=false mkdocs build deploy: @@ -78,7 +77,7 @@ jobs: - run: sudo apt-get install pngquant - run: pip install mike==2.0.0 - run: pip install git+https://${GH_TOKEN}@github.com/benphelps/mkdocs-material-insiders.git - - run: pip install "mkdocs-material[imaging]" + - run: pip install mkdocs-redirects "mkdocs-material[imaging]" - name: Set Git config run: | git config --global user.name "GitHub Action" diff --git a/docs/assets/BlossomValley.jpg b/docs/assets/BlossomValley.jpg deleted file mode 100644 index 8c6a6321..00000000 Binary files a/docs/assets/BlossomValley.jpg and /dev/null differ diff --git a/docs/assets/banner_dark@2x.webp b/docs/assets/banner_dark@2x.webp new file mode 100644 index 00000000..651fd078 Binary files /dev/null and b/docs/assets/banner_dark@2x.webp differ diff --git a/docs/assets/banner_light@2x.webp b/docs/assets/banner_light@2x.webp new file mode 100644 index 00000000..00b258eb Binary files /dev/null and b/docs/assets/banner_light@2x.webp differ diff --git a/docs/assets/blossom_valley.jpg b/docs/assets/blossom_valley.jpg new file mode 100644 index 00000000..39445902 Binary files /dev/null and b/docs/assets/blossom_valley.jpg differ diff --git a/docs/assets/blossom_valley_blur.jpg b/docs/assets/blossom_valley_blur.jpg new file mode 100644 index 00000000..54bb9bae Binary files /dev/null and b/docs/assets/blossom_valley_blur.jpg differ diff --git a/docs/assets/homepage_demo.webp b/docs/assets/homepage_demo.webp new file mode 100644 index 00000000..e6c47041 Binary files /dev/null and b/docs/assets/homepage_demo.webp differ diff --git a/docs/assets/homepage_demo_clip.png b/docs/assets/homepage_demo_clip.png new file mode 100644 index 00000000..8ac16f35 Binary files /dev/null and b/docs/assets/homepage_demo_clip.png differ diff --git a/docs/assets/homepage_demo_clip.webp b/docs/assets/homepage_demo_clip.webp new file mode 100644 index 00000000..169998e9 Binary files /dev/null and b/docs/assets/homepage_demo_clip.webp differ diff --git a/docs/assets/light_squircle@2x.webp b/docs/assets/light_squircle@2x.webp new file mode 100644 index 00000000..fc1a1613 Binary files /dev/null and b/docs/assets/light_squircle@2x.webp differ diff --git a/docs/assets/sections.webp b/docs/assets/sections.webp new file mode 100644 index 00000000..2e8f3e35 Binary files /dev/null and b/docs/assets/sections.webp differ diff --git a/docs/assets/widget_stocks_demo.png b/docs/assets/widget_stocks_demo.png new file mode 100644 index 00000000..0d2cde53 Binary files /dev/null and b/docs/assets/widget_stocks_demo.png differ diff --git a/docs/configs/docker.md b/docs/configs/docker.md index bcd0dd61..51f6b523 100644 --- a/docs/configs/docker.md +++ b/docs/configs/docker.md @@ -203,7 +203,7 @@ In order to detect every service within the Docker swarm it is necessary that se ## Multiple Homepage Instances -The optional field `instanceName` can be configured in [settings.md](settings.md#instance-name) to differentiate between multiple homepage instances. +The optional field `instanceName` can be configured in [settings.yaml](settings.md#instance-name) to differentiate between multiple homepage instances. To limit a label to an instance, insert `.instance.{{instanceName}}` after the `homepage` prefix. diff --git a/docs/configs/index.md b/docs/configs/index.md index a43977f6..85a1ac90 100644 --- a/docs/configs/index.md +++ b/docs/configs/index.md @@ -1,6 +1,7 @@ --- title: Configuration description: Homepage Configuration +icon: material/cog --- 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. diff --git a/docs/configs/kubernetes.md b/docs/configs/kubernetes.md index c76813f4..06685f3a 100644 --- a/docs/configs/kubernetes.md +++ b/docs/configs/kubernetes.md @@ -36,7 +36,7 @@ Inside of the service you'd like to connect to a pod: The `app` field is used to create a label selector, in this example case it would match pods with the label: `app.kubernetes.io/name=emby`. -Sometimes this is insufficient for complex or atypical application deployments. In these cases, the `pod-selector` field can be used. Any field selector can be used with it, so it allows for some very powerful selection capabilities. +Sometimes this is insufficient for complex or atypical application deployments. In these cases, the `podSelector` field can be used. Any field selector can be used with it, so it allows for some very powerful selection capabilities. For instance, it can be utilized to roll multiple underlying deployments under one application to see a high-level aggregate: @@ -47,7 +47,7 @@ For instance, it can be utilized to roll multiple underlying deployments under o description: Matrix Synapse Powered Chat app: matrix-element namespace: comms - pod-selector: >- + podSelector: >- app.kubernetes.io/instance in ( matrix-element, matrix-media-repo, @@ -58,7 +58,7 @@ For instance, it can be utilized to roll multiple underlying deployments under o !!! note - A blank string as a pod-selector does not deactivate it, but will actually select all pods in the namespace. This is a useful way to capture the resource usage of a complex application siloed to a single namespace, like Longhorn. + A blank string as a podSelector does not deactivate it, but will actually select all pods in the namespace. This is a useful way to capture the resource usage of a complex application siloed to a single namespace, like Longhorn. ## Automatic Service Discovery diff --git a/docs/index.md b/docs/index.md index fe1c0adf..31a84e8c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,5 +1,7 @@ --- title: Home +description: A modern, fully static, fast, secure, fully proxied, highly customizable application dashboard with integrations for over 100 services and translations into multiple languages. +icon: material/home hide: - navigation - toc @@ -10,17 +12,21 @@ hide:
-- - +
-Homepage builds are kindly powered by DigitalOcean. -
+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.
+ +
diff --git a/docs/layouts/custom.yml b/docs/layouts/custom.yml
new file mode 100644
index 00000000..d8e36c10
--- /dev/null
+++ b/docs/layouts/custom.yml
@@ -0,0 +1,252 @@
+# Copyright (c) 2016-2024 Martin Donath
+ DigitalOcean provides the GitHub Actions runner for the project. Dramatically speeding up the CI/CD process.
+
+
+These companies help the Homepage project by providing services, tools, and resources.
+
+
+
diff --git a/docs/widgets/services/frigate.md b/docs/widgets/services/frigate.md
new file mode 100644
index 00000000..411c3cc7
--- /dev/null
+++ b/docs/widgets/services/frigate.md
@@ -0,0 +1,17 @@
+---
+title: Frigate
+description: Frigate Widget Configuration
+---
+
+Learn more about [Frigate](https://frigate.video/).
+
+Allowed fields: `["cameras", "uptime", "version"]`.
+
+A recent event listing is disabled by default, but can be enabled with the `enableRecentEvents` option.
+
+```yaml
+widget:
+ type: frigate
+ url: http://frigate.host.or.ip:port
+ enableRecentEvents: true # Optional, defaults to false
+```
diff --git a/docs/widgets/services/index.md b/docs/widgets/services/index.md
index b8a41d76..e0502488 100644
--- a/docs/widgets/services/index.md
+++ b/docs/widgets/services/index.md
@@ -2,3 +2,126 @@
title: Service Widgets
description: Homepage service widgets.
---
+
+You can also find a list of all available service widgets in the sidebar navigation.
+
+- [Adguard Home](adguard-home.md)
+- [Atsumeru](atsumeru.md)
+- [Audiobookshelf](audiobookshelf.md)
+- [Authentik](authentik.md)
+- [Autobrr](autobrr.md)
+- [Azure DevOps](azuredevops.md)
+- [Bazarr](bazarr.md)
+- [Caddy](caddy.md)
+- [Calendar](calendar.md)
+- [Calibre-Web](calibre-web.md)
+- [ChangeDetection.io](changedetectionio.md)
+- [Channels DVR Server](channelsdvrserver.md)
+- [Cloudflared](cloudflared.md)
+- [Coin Market Cap](coin-market-cap.md)
+- [CrowdSec](crowdsec.md)
+- [Custom API](customapi.md)
+- [Deluge](deluge.md)
+- [DiskStation](diskstation.md)
+- [DownloadStation](downloadstation.md)
+- [Emby](emby.md)
+- [ESPHome](esphome.md)
+- [EVCC](evcc.md)
+- [Fileflows](fileflows.md)
+- [Flood](flood.md)
+- [FreshRSS](freshrss.md)
+- [Frigate](frigate.md)
+- [Fritz!Box](fritzbox.md)
+- [GameDig](gamedig.md)
+- [Gatus](gatus.md)
+- [Ghostfolio](ghostfolio.md)
+- [Gitea](gitea.md)
+- [Glances](glances.md)
+- [Gluetun](gluetun.md)
+- [Gotify](gotify.md)
+- [Grafana](grafana.md)
+- [HDHomeRun](hdhomerun.md)
+- [Healthchecks](healthchecks.md)
+- [Home Assistant](homeassistant.md)
+- [HomeBox](homebox.md)
+- [Homebridge](homebridge.md)
+- [iFrame](iframe.md)
+- [Immich](immich.md)
+- [Jackett](jackett.md)
+- [JDownloader](jdownloader.md)
+- [Jellyfin](jellyfin.md)
+- [Jellyseerr](jellyseerr.md)
+- [Kavita](kavita.md)
+- [Komga](komga.md)
+- [Kopia](kopia.md)
+- [Lidarr](lidarr.md)
+- [Mastodon](mastodon.md)
+- [Mealie](mealie.md)
+- [Medusa](medusa.md)
+- [Mikrotik](mikrotik.md)
+- [Minecraft](minecraft.md)
+- [Miniflux](miniflux.md)
+- [MJpeg](mjpeg.md)
+- [Moonraker](moonraker.md)
+- [Mylar](mylar.md)
+- [MySpeed](myspeed.md)
+- [Navidrome](navidrome.md)
+- [NetAlertX](netalertx.md)
+- [Netdata](netdata.md)
+- [Nextcloud](nextcloud.md)
+- [NextDNS](nextdns.md)
+- [NGINX Proxy Manager](nginx-proxy-manager.md)
+- [NZBGet](nzbget.md)
+- [OctoPrint](octoprint.md)
+- [Omada](omada.md)
+- [Ombi](ombi.md)
+- [OpenDTU](opendtu.md)
+- [OpenMediaVault](openmediavault.md)
+- [OpenWRT](openwrt.md)
+- [OPNsense](opnsense.md)
+- [Overseerr](overseerr.md)
+- [PaperlessNGX](paperlessngx.md)
+- [Peanut](peanut.md)
+- [pfSense](pfsense.md)
+- [PhotoPrism](photoprism.md)
+- [Pi-hole](pihole.md)
+- [PlantIt](plantit.md)
+- [Plex & Tautulli](plex-tautulli.md)
+- [Plex](plex.md)
+- [Portainer](portainer.md)
+- [Prometheus](prometheus.md)
+- [Prowlarr](prowlarr.md)
+- [Proxmox](proxmox.md)
+- [Proxmox Backup Server](proxmoxbackupserver.md)
+- [Pterodactyl](pterodactyl.md)
+- [PyLoad](pyload.md)
+- [qBittorrent](qbittorrent.md)
+- [QNAP](qnap.md)
+- [Radarr](radarr.md)
+- [Readarr](readarr.md)
+- [ROMM](romm.md)
+- [ruTorrent](rutorrent.md)
+- [SABnzbd](sabnzbd.md)
+- [Scrutiny](scrutiny.md)
+- [Sonarr](sonarr.md)
+- [Speedtest Tracker](speedtest-tracker.md)
+- [Stash](stash.md)
+- [Stocks](stocks.md)
+- [SwagDashboard](swagdashboard.md)
+- [Syncthing Relay Server](syncthing-relay-server.md)
+- [Tailscale](tailscale.md)
+- [Tandoor](tandoor.md)
+- [TDarr](tdarr.md)
+- [Traefik](traefik.md)
+- [Transmission](transmission.md)
+- [TrueNAS](truenas.md)
+- [TubeArchivist](tubearchivist.md)
+- [UniFi Controller](unifi-controller.md)
+- [Unmanic](unmanic.md)
+- [Uptime Kuma](uptime-kuma.md)
+- [UptimeRobot](uptimerobot.md)
+- [UrBackup](urbackup.md)
+- [Watchtower](watchtower.md)
+- [WGEasy](wgeasy.md)
+- [WhatsUpDocker](whatsupdocker.md)
+- [xTeVe](xteve.md)
diff --git a/docs/widgets/services/myspeed.md b/docs/widgets/services/myspeed.md
new file mode 100644
index 00000000..1790c9c1
--- /dev/null
+++ b/docs/widgets/services/myspeed.md
@@ -0,0 +1,15 @@
+---
+title: MySpeed
+description: MySpeed Widget Configuration
+---
+
+Learn more about [MySpeed](https://myspeed.dev/).
+
+Allowed fields: `["ping", "download", "upload"]`.
+
+```yaml
+widget:
+ type: myspeed
+ url: http://myspeed.host.or.ip:port
+ password: password # only required if password is set
+```
diff --git a/docs/widgets/services/pfsense.md b/docs/widgets/services/pfsense.md
index 8f32a718..a7d7a923 100644
--- a/docs/widgets/services/pfsense.md
+++ b/docs/widgets/services/pfsense.md
@@ -26,5 +26,6 @@ widget:
headers: # optional, or username/password
Authorization: client_id client_token
wan: igb0
+ version: 2 # optional, defaults to 1 for api v1
fields: ["load", "memory", "temp", "wanStatus"] # optional
```
diff --git a/docs/widgets/services/stocks.md b/docs/widgets/services/stocks.md
new file mode 100644
index 00000000..5d64c9ac
--- /dev/null
+++ b/docs/widgets/services/stocks.md
@@ -0,0 +1,50 @@
+---
+title: Stocks
+description: Stocks Service Widget Configuration
+---
+
+_(Find the Stocks information widget [here](../info/stocks.md))_
+
+The widget includes:
+
+- US stock market status
+- Current price of provided stock symbol
+- Change in price of stock symbol for the day.
+
+Finnhub.io is currently the only supported provider for the stocks widget.
+You can sign up for a free api key at [finnhub.io](https://finnhub.io).
+You are encouraged to read finnhub.io's
+[terms of service/privacy policy](https://finnhub.io/terms-of-service) before
+signing up.
+
+Allowed fields: no configurable fields for this widget.
+
+You must set `finnhub` as a provider in your `settings.yaml`:
+
+```yaml
+providers:
+ finnhub: yourfinnhubapikeyhere
+```
+
+Next, configure the stocks widget in your `services.yaml`:
+
+The service widget allows for up to 28 items in the watchlist. You may get rate
+limited if using the information and service widgets together.
+
+```yaml
+widget:
+ type: stocks
+ provider: finnhub
+ showUSMarketStatus: true # optional, defaults to true
+ watchlist:
+ - GME
+ - AMC
+ - NVDA
+ - TSM
+ - BRK.A
+ - TSLA
+ - AAPL
+ - MSFT
+ - AMZN
+ - BRK.B
+```
diff --git a/docs/widgets/services/unifi-controller.md b/docs/widgets/services/unifi-controller.md
index 6aa48969..e33b6113 100644
--- a/docs/widgets/services/unifi-controller.md
+++ b/docs/widgets/services/unifi-controller.md
@@ -11,9 +11,11 @@ You can display general connectivity status from your Unifi (Network) Controller
An optional 'site' parameter can be supplied, if it is not the widget will use the default site for the controller.
-Allowed fields: `["uptime", "wan", "lan", "lan_users", "lan_devices", "wlan", "wlan_users", "wlan_devices"]` (maximum of four).
+Allowed fields: `["uptime", "wan", "lan", "lan_users", "lan_devices", "wlan", "wlan_users", "wlan_devices"]` (maximum of four). Fields unsupported by the unifi device will not be shown.
-Note that fields unsupported by the unifi device will not be shown.
+!!! hint
+
+ If you enter e.g. incorrect credentials and receive an "API Error", you may need to recreate the container to clear the cache.
```yaml
widget:
diff --git a/mkdocs.yml b/mkdocs.yml
index 0f440f8d..4d6524b3 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -1,4 +1,4 @@
-site_name: homepage
+site_name: Homepage
# Project information
site_url: https://gethomepage.dev/
@@ -55,6 +55,7 @@ nav:
- widgets/services/fileflows.md
- widgets/services/flood.md
- widgets/services/freshrss.md
+ - widgets/services/frigate.md
- widgets/services/fritzbox.md
- widgets/services/gamedig.md
- widgets/services/gatus.md
@@ -88,6 +89,7 @@ nav:
- widgets/services/mjpeg.md
- widgets/services/moonraker.md
- widgets/services/mylar.md
+ - widgets/services/myspeed.md
- widgets/services/navidrome.md
- widgets/services/netdata.md
- widgets/services/netalertx.md
@@ -129,6 +131,7 @@ nav:
- widgets/services/sonarr.md
- widgets/services/speedtest-tracker.md
- widgets/services/stash.md
+ - widgets/services/stocks.md
- widgets/services/swagdashboard.md
- widgets/services/syncthing-relay-server.md
- widgets/services/tailscale.md
@@ -144,6 +147,7 @@ nav:
- widgets/services/uptimerobot.md
- widgets/services/urbackup.md
- widgets/services/watchtower.md
+ - widgets/services/wgeasy.md
- widgets/services/whatsupdocker.md
- widgets/services/xteve.md
- "Information Widgets":
@@ -158,21 +162,27 @@ nav:
- widgets/info/openweathermap.md
- widgets/info/resources.md
- widgets/info/search.md
+ - widgets/info/stocks.md
- widgets/info/unifi_controller.md
- widgets/info/weather.md
- - "Guides":
+ - "Learn":
- widgets/authoring/index.md
- - widgets/authoring/guide.md
- - widgets/authoring/component.md
- - widgets/authoring/widget.md
- - widgets/authoring/proxies.md
- - widgets/authoring/api.md
- - widgets/authoring/translations.md
- - more/troubleshooting.md
+ - "Getting Started": widgets/authoring/getting-started.md
+ - "Tutorials":
+ - widgets/authoring/tutorial.md
+ - "Guides":
+ - widgets/authoring/component.md
+ - widgets/authoring/metadata.md
+ - widgets/authoring/proxies.md
+ - widgets/authoring/api.md
+ - widgets/authoring/translations.md
+ - "Troubleshooting":
+ - troubleshooting/index.md
- "More":
- more/index.md
- - more/development.md
- more/translations.md
+ - more/coverage.md
+ - more/sponsors.md
- more/homepage-move.md
theme:
@@ -198,7 +208,8 @@ theme:
toggle:
icon: material/brightness-4
name: Switch to system preference
- logo: assets/light_squircle@2x.png
+ logo: assets/banner_light@2x.webp
+
favicon: assets/favicon.ico
features:
- navigation.instant
@@ -215,8 +226,6 @@ theme:
extra_css:
- "stylesheets/extra.css"
-extra_javascript:
- - "scripts/extra.js"
extra:
version:
@@ -224,10 +233,12 @@ extra:
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
+ - icon: simple/opencollective
+ link: https://opencollective.com/homepage
+ - icon: simple/patreon
+ link: https://www.patreon.com/gethomepage
markdown_extensions:
- pymdownx.highlight:
@@ -256,17 +267,21 @@ plugins:
- group:
enabled: !ENV MKINSIDERS
plugins:
- - optimize
- typeset
- social:
- cards_layout: default/variant
+ cards_layout: default
cards_layout_options:
- background_image: docs/assets/BlossomValley.jpg
+ background_image: docs/assets/blossom_valley_blur.jpg
background_color: "rgba(13, 29, 41, 128)"
color: "#ffffff"
+ logo: docs/assets/light_squircle@2x.webp
- tags
- search:
pipeline:
- stemmer
- stopWordFilter
- trimmer
+ - redirects:
+ redirect_maps:
+ "more/troubleshooting.md": "troubleshooting/index.md"
+ "more/development.md": "widgets/authoring/getting-started.md"
diff --git a/public/locales/af/common.json b/public/locales/af/common.json
index 7884acdd..87ecefc8 100644
--- a/public/locales/af/common.json
+++ b/public/locales/af/common.json
@@ -884,9 +884,26 @@
"total": "Totaal"
},
"swagdashboard": {
- "proxied": "Proxied",
- "auth": "With Auth",
- "outdated": "Outdated",
- "banned": "Banned"
+ "proxied": "Gevolmagtig",
+ "auth": "Met Aut",
+ "outdated": "Verouderd",
+ "banned": "Verban"
+ },
+ "myspeed": {
+ "ping": "Pieng",
+ "download": "Aflaai",
+ "upload": "Laai Op"
+ },
+ "stocks": {
+ "stocks": "Aandele",
+ "loading": "Laai",
+ "open": "Oop - VS Mark",
+ "closed": "Toe - VS Mark",
+ "invalidConfiguration": "Ongeldige opstelling"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Optyd",
+ "version": "Weergawe"
}
}
diff --git a/public/locales/ar/common.json b/public/locales/ar/common.json
index 3bb2acfc..0f1eb3bc 100644
--- a/public/locales/ar/common.json
+++ b/public/locales/ar/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "بينغ",
+ "download": "التنزيل",
+ "upload": "التحميل"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "مدة التشغيل",
+ "version": "الإصدار"
}
}
diff --git a/public/locales/bg/common.json b/public/locales/bg/common.json
index 443c28b8..849bb7f7 100644
--- a/public/locales/bg/common.json
+++ b/public/locales/bg/common.json
@@ -16,7 +16,7 @@
"uptime": "{{value, uptime}}",
"months": "mo",
"days": "d",
- "hours": "h",
+ "hours": "ч",
"minutes": "m",
"seconds": "s"
},
@@ -412,7 +412,7 @@
"free": "Свободни",
"used": "Заети",
"days": "d",
- "hours": "h",
+ "hours": "ч",
"crit": "Crit",
"read": "Read",
"write": "Write",
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Download",
+ "upload": "Upload"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "Version"
}
}
diff --git a/public/locales/ca/common.json b/public/locales/ca/common.json
index 78a32c0d..4fb07bad 100644
--- a/public/locales/ca/common.json
+++ b/public/locales/ca/common.json
@@ -36,7 +36,7 @@
"wait": "Si us plau, espereu"
},
"search": {
- "placeholder": "Cercar…"
+ "placeholder": "Cerca…"
},
"resources": {
"cpu": "CPU",
@@ -125,8 +125,8 @@
"flood": {
"download": "Descarregar",
"upload": "Pujada",
- "leech": "Company",
- "seed": "Llavor"
+ "leech": "Sangonera",
+ "seed": "Llavors"
},
"freshrss": {
"subscriptions": "Subcripcions",
@@ -203,14 +203,14 @@
"transmission": {
"download": "Descarregar",
"upload": "Pujada",
- "leech": "Company",
- "seed": "Llavor"
+ "leech": "Sangonera",
+ "seed": "Llavors"
},
"qbittorrent": {
"download": "Descarregar",
"upload": "Pujada",
- "leech": "Company",
- "seed": "Llavor"
+ "leech": "Sangonera",
+ "seed": "Llavors"
},
"qnap": {
"cpuUsage": "Ús de CPU",
@@ -223,14 +223,14 @@
"deluge": {
"download": "Descarregar",
"upload": "Pujada",
- "leech": "Company",
- "seed": "Llavor"
+ "leech": "Sangonera",
+ "seed": "Llavors"
},
"downloadstation": {
"download": "Descarregar",
"upload": "Pujada",
- "leech": "Company",
- "seed": "Llavor"
+ "leech": "Sangonera",
+ "seed": "Llavors"
},
"sonarr": {
"wanted": "Volgut",
@@ -241,7 +241,7 @@
},
"radarr": {
"wanted": "Volgut",
- "missing": "Faltant",
+ "missing": "Falten",
"queued": "En cua",
"movies": "Pel·lícules",
"queue": "Cua",
@@ -386,7 +386,7 @@
"down": "Fora de línia"
},
"miniflux": {
- "read": "Llegir",
+ "read": "Llegit",
"unread": "Sense llegir"
},
"authentik": {
@@ -414,8 +414,8 @@
"days": "d",
"hours": "h",
"crit": "Crític",
- "read": "Llegir",
- "write": "Escriure",
+ "read": "Llegit",
+ "write": "Escriptura",
"gpu": "GPU",
"mem": "Mem",
"swap": "Intercanvi"
@@ -423,9 +423,9 @@
"quicklaunch": {
"bookmark": "Marcador",
"service": "Servei",
- "search": "Cercar",
+ "search": "Cerca",
"custom": "Personalitzat",
- "visit": "Visitar",
+ "visit": "Visita",
"url": "URL",
"searchsuggestion": "Suggeriment"
},
@@ -581,7 +581,7 @@
"numberOfLeases": "IPs assignades"
},
"xteve": {
- "streams_all": "Tots els fluxos",
+ "streams_all": "Tots els streams",
"streams_active": "Transmissions actives",
"streams_xepg": "Canals XEPG"
},
@@ -600,7 +600,7 @@
"moonraker": {
"printer_state": "Estat de l'impressora",
"print_status": "Estat de l'impressió",
- "print_progress": "Progress",
+ "print_progress": "Progrés",
"layers": "Capes"
},
"octoprint": {
@@ -614,14 +614,14 @@
"status": "Estat"
},
"pfsense": {
- "load": "Promig Càrrega",
+ "load": "Càrrega mitjana",
"memory": "Ús Memòria",
"wanStatus": "Estat WAN",
"up": "Actiu",
"down": "Inactiu",
"temp": "Temp",
"disk": "Ús Disc",
- "wanIP": "WAN IP"
+ "wanIP": "IP WAN"
},
"proxmoxbackupserver": {
"datastore_usage": "Datastore",
@@ -677,7 +677,7 @@
},
"grafana": {
"dashboards": "Taulells",
- "datasources": "Origen de dades",
+ "datasources": "Orígens de dades",
"totalalerts": "Alertes Totals",
"alertstriggered": "Alertes disparades"
},
@@ -718,10 +718,10 @@
"ghostfolio": {
"gross_percent_today": "Avui",
"gross_percent_1y": "Un any",
- "gross_percent_max": "Tot"
+ "gross_percent_max": "Sempre"
},
"audiobookshelf": {
- "podcasts": "Podcasts",
+ "podcasts": "Pòdcasts",
"books": "Llibres",
"podcastsDuration": "Durada",
"booksDuration": "Durada"
@@ -760,8 +760,8 @@
"failed": "Error",
"canceled": "Cancel·lat",
"inProgress": "En curs",
- "totalPrs": "RP Totals",
- "myPrs": "Els meus RP",
+ "totalPrs": "PRs Totals",
+ "myPrs": "Les meves PRs",
"approved": "Aprovat"
},
"gamedig": {
@@ -798,7 +798,7 @@
},
"openwrt": {
"uptime": "Temps actiu",
- "cpuLoad": "Càrrega promig de CPU (5m)",
+ "cpuLoad": "Càrrega mitjana de CPU (5min)",
"up": "Actiu",
"down": "Inactiu",
"bytesTx": "Enviat",
@@ -849,10 +849,10 @@
"scenesPlayed": "Escenes reproduïdes",
"playCount": "Total reproduccions",
"playDuration": "Temps visionat",
- "sceneSize": "Tamany Escena",
+ "sceneSize": "Tamany d'escenes",
"sceneDuration": "Duració Escenes",
"images": "Imatges",
- "imageSize": "Mida Imatges",
+ "imageSize": "Tamany d'imatges",
"galleries": "Biblioteques",
"performers": "Intèrprets",
"studios": "Estudis",
@@ -884,9 +884,26 @@
"total": "Total"
},
"swagdashboard": {
- "proxied": "Proxied",
- "auth": "With Auth",
- "outdated": "Outdated",
- "banned": "Banned"
+ "proxied": "Intermediat",
+ "auth": "Amb autentificació",
+ "outdated": "Obsolet",
+ "banned": "Bloquejat"
+ },
+ "myspeed": {
+ "ping": "Latència",
+ "download": "Descarregar",
+ "upload": "Pujada"
+ },
+ "stocks": {
+ "stocks": "Accions",
+ "loading": "Carregant",
+ "open": "Obert - Mercat EEUU",
+ "closed": "Tancat - Mercat EEUU",
+ "invalidConfiguration": "Configuració no vàlida"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Temps actiu",
+ "version": "Versió"
}
}
diff --git a/public/locales/cs/common.json b/public/locales/cs/common.json
index 48030d62..4d9e3c98 100644
--- a/public/locales/cs/common.json
+++ b/public/locales/cs/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Odezva",
+ "download": "Stahování",
+ "upload": "Nahrávání"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Doba spuštění",
+ "version": "Verze"
}
}
diff --git a/public/locales/da/common.json b/public/locales/da/common.json
index e4c2e0a9..839eaed4 100644
--- a/public/locales/da/common.json
+++ b/public/locales/da/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Download",
+ "upload": "Upload"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Oppetid",
+ "version": "Version"
}
}
diff --git a/public/locales/de/common.json b/public/locales/de/common.json
index 4a188956..3383fe6e 100644
--- a/public/locales/de/common.json
+++ b/public/locales/de/common.json
@@ -888,5 +888,22 @@
"auth": "Mit Auth",
"outdated": "Veraltet",
"banned": "Gebannt"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Download",
+ "upload": "Upload"
+ },
+ "stocks": {
+ "stocks": "Aktien",
+ "loading": "Wird geladen",
+ "open": "Offen - US-Markt",
+ "closed": "Geschlossen - US-Markt",
+ "invalidConfiguration": "Ungültige Konfiguration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Betriebszeit",
+ "version": "Version"
}
}
diff --git a/public/locales/el/common.json b/public/locales/el/common.json
index 2ffcd522..d9f24d0d 100644
--- a/public/locales/el/common.json
+++ b/public/locales/el/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Λήξη",
+ "upload": "Μεταφόρτωση"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Χρόνος Λειτουργίας",
+ "version": "Έκδοση"
}
}
diff --git a/public/locales/en/common.json b/public/locales/en/common.json
index 03b4325b..6a5166e2 100755
--- a/public/locales/en/common.json
+++ b/public/locales/en/common.json
@@ -919,5 +919,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Download",
+ "upload": "Upload"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "Version"
}
}
\ No newline at end of file
diff --git a/public/locales/eo/common.json b/public/locales/eo/common.json
index de28af1b..21c11c64 100644
--- a/public/locales/eo/common.json
+++ b/public/locales/eo/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Sondaĵo",
+ "download": "Elŝuti",
+ "upload": "Alŝuti"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "Version"
}
}
diff --git a/public/locales/es/common.json b/public/locales/es/common.json
index 075a4c56..4615db74 100644
--- a/public/locales/es/common.json
+++ b/public/locales/es/common.json
@@ -31,7 +31,7 @@
},
"weather": {
"current": "Ubicación actual",
- "allow": "Clic para permitir",
+ "allow": "Pulsa para permitir",
"updating": "Actualizando",
"wait": "Espera, por favor"
},
@@ -77,9 +77,9 @@
"unknown": "Desconocido",
"healthy": "Saludable",
"starting": "Comenzando",
- "unhealthy": "Insalubre",
+ "unhealthy": "No saludable",
"not_found": "No encontrado",
- "exited": "Salida",
+ "exited": "Terminado",
"partial": "Parcial"
},
"ping": {
@@ -884,9 +884,26 @@
"total": "Total"
},
"swagdashboard": {
- "proxied": "Proxied",
- "auth": "With Auth",
- "outdated": "Outdated",
- "banned": "Banned"
+ "proxied": "Proxy activado",
+ "auth": "Con Autenticación",
+ "outdated": "Desactualizado",
+ "banned": "Baneado"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Descarga",
+ "upload": "Subida"
+ },
+ "stocks": {
+ "stocks": "Acciones",
+ "loading": "Cargando",
+ "open": "Abierto - Mercado EEUU",
+ "closed": "Cerrado - Mercado EEUU",
+ "invalidConfiguration": "Configuración no válida"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Tiempo activo",
+ "version": "Versión"
}
}
diff --git a/public/locales/eu/common.json b/public/locales/eu/common.json
index a4aba203..29bd5c6d 100644
--- a/public/locales/eu/common.json
+++ b/public/locales/eu/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Download",
+ "upload": "Upload"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "Version"
}
}
diff --git a/public/locales/fi/common.json b/public/locales/fi/common.json
index 09639a20..a3e44039 100644
--- a/public/locales/fi/common.json
+++ b/public/locales/fi/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Download",
+ "upload": "Upload"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "Version"
}
}
diff --git a/public/locales/fr/common.json b/public/locales/fr/common.json
index beb8420c..aafbdd6f 100644
--- a/public/locales/fr/common.json
+++ b/public/locales/fr/common.json
@@ -888,5 +888,22 @@
"auth": "Avec authentification",
"outdated": "Obsolète",
"banned": "Banni"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Récep.",
+ "upload": "Envoi"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Démarré depuis",
+ "version": "Version"
}
}
diff --git a/public/locales/he/common.json b/public/locales/he/common.json
index fa310603..fe621152 100644
--- a/public/locales/he/common.json
+++ b/public/locales/he/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Download",
+ "upload": "Upload"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "Version"
}
}
diff --git a/public/locales/hi/common.json b/public/locales/hi/common.json
index 745ed8b4..c78dc146 100644
--- a/public/locales/hi/common.json
+++ b/public/locales/hi/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Download",
+ "upload": "Upload"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "Version"
}
}
diff --git a/public/locales/hr/common.json b/public/locales/hr/common.json
index 6ffef12f..2e869778 100644
--- a/public/locales/hr/common.json
+++ b/public/locales/hr/common.json
@@ -888,5 +888,22 @@
"auth": "S autentifikacijom",
"outdated": "Zastarjelo",
"banned": "Zabranjen pristup"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Preuzimanje",
+ "upload": "Prijenos"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Vrijeme rada",
+ "version": "Verzija"
}
}
diff --git a/public/locales/hu/common.json b/public/locales/hu/common.json
index aed09199..1d8023c3 100644
--- a/public/locales/hu/common.json
+++ b/public/locales/hu/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Letöltés",
+ "upload": "Feltöltés"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Üzemidő",
+ "version": "Verzió"
}
}
diff --git a/public/locales/id/common.json b/public/locales/id/common.json
index 9c7a0ec8..07ccf743 100644
--- a/public/locales/id/common.json
+++ b/public/locales/id/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Unduh",
+ "upload": "Unggah"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Waktu Aktif",
+ "version": "Versi"
}
}
diff --git a/public/locales/it/common.json b/public/locales/it/common.json
index 1c4115f7..4f7a7feb 100644
--- a/public/locales/it/common.json
+++ b/public/locales/it/common.json
@@ -545,11 +545,11 @@
"channels": "Canali",
"hd": "HD",
"tunerCount": "Tuners",
- "channelNumber": "Channel",
+ "channelNumber": "Canale",
"channelNetwork": "Rete",
"signalStrength": "Intensità",
- "signalQuality": "Quality",
- "symbolQuality": "Quality",
+ "signalQuality": "Qualità",
+ "symbolQuality": "Qualità",
"networkRate": "Bitrate",
"clientIP": "Client"
},
@@ -564,11 +564,11 @@
},
"peanut": {
"battery_charge": "Battery Charge",
- "ups_load": "UPS Load",
- "ups_status": "UPS Status",
+ "ups_load": "Carico UPS",
+ "ups_status": "Stato UPS",
"online": "Online",
- "on_battery": "On Battery",
- "low_battery": "Low Battery"
+ "on_battery": "Alimentazione a batteria",
+ "low_battery": "Batteria Quasi Scarica"
},
"nextdns": {
"wait": "Attendere prego",
@@ -798,10 +798,10 @@
},
"openwrt": {
"uptime": "Tempo di attività",
- "cpuLoad": "CPU Load Avg (5m)",
+ "cpuLoad": "Media Carico Cpu (5m)",
"up": "Up",
"down": "Down",
- "bytesTx": "Transmitted",
+ "bytesTx": "Trasmessi",
"bytesRx": "Ricevuti"
},
"uptimerobot": {
@@ -826,7 +826,7 @@
"noEventsFound": "Nessun evento trovato"
},
"romm": {
- "platforms": "Platforms",
+ "platforms": "Piattaforme",
"totalRoms": "Total ROMs"
},
"netdata": {
@@ -834,7 +834,7 @@
"criticals": "Criticals"
},
"plantit": {
- "events": "Events",
+ "events": "Eventi",
"plants": "Plants",
"photos": "Foto",
"species": "Specie"
@@ -852,7 +852,7 @@
"sceneSize": "Dimensione Delle Scene",
"sceneDuration": "Durata Delle Scene",
"images": "Immagini",
- "imageSize": "Images Size",
+ "imageSize": "Dimensioni immagine",
"galleries": "Galleries",
"performers": "Esecutori",
"studios": "Studi",
@@ -863,19 +863,19 @@
"tandoor": {
"users": "Utenti",
"recipes": "Ricette",
- "keywords": "Keywords"
+ "keywords": "Parole chiave"
},
"homebox": {
- "items": "Items",
- "totalWithWarranty": "With Warranty",
- "locations": "Locations",
- "labels": "Labels",
+ "items": "Elementi",
+ "totalWithWarranty": "Con Garanzia",
+ "locations": "Luoghi",
+ "labels": "Etichette",
"users": "Utenti",
- "totalValue": "Total Value"
+ "totalValue": "Valore totale"
},
"crowdsec": {
"alerts": "Allarmi",
- "bans": "Bans"
+ "bans": "Bannati"
},
"wgeasy": {
"connected": "Connesso",
@@ -886,7 +886,24 @@
"swagdashboard": {
"proxied": "Proxied",
"auth": "With Auth",
- "outdated": "Outdated",
- "banned": "Banned"
+ "outdated": "Obsoleto",
+ "banned": "Bannato"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Download",
+ "upload": "Upload"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Tempo di attività",
+ "version": "Versione"
}
}
diff --git a/public/locales/ja/common.json b/public/locales/ja/common.json
index 80bb4506..c14a78e9 100644
--- a/public/locales/ja/common.json
+++ b/public/locales/ja/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "ダウンロード",
+ "upload": "アップロード"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "稼働時間",
+ "version": "バージョン"
}
}
diff --git a/public/locales/ko/common.json b/public/locales/ko/common.json
index 342d1e37..eb26c0ac 100644
--- a/public/locales/ko/common.json
+++ b/public/locales/ko/common.json
@@ -21,7 +21,7 @@
"seconds": "s"
},
"widget": {
- "missing_type": "Missing Widget Type: {{type}}",
+ "missing_type": "없는 위젯 유형: {{type}}",
"api_error": "API 오류",
"information": "정보",
"status": "상태",
@@ -87,15 +87,15 @@
"ping": "Ping",
"down": "Down",
"up": "Up",
- "not_available": "Not Available"
+ "not_available": "사용할 수 없음"
},
"siteMonitor": {
- "http_status": "HTTP status",
+ "http_status": "HTTP 상태",
"error": "오류",
- "response": "Response",
+ "response": "응답",
"down": "Down",
"up": "Up",
- "not_available": "Not Available"
+ "not_available": "사용할 수 없음"
},
"emby": {
"playing": "재생 중",
@@ -116,7 +116,7 @@
},
"evcc": {
"pv_power": "Production",
- "battery_soc": "Battery",
+ "battery_soc": "배터리",
"grid_power": "Grid",
"home_power": "Consumption",
"charge_power": "Charger",
@@ -130,24 +130,24 @@
},
"freshrss": {
"subscriptions": "Subscriptions",
- "unread": "Unread"
+ "unread": "읽지 않음"
},
"fritzbox": {
"connectionStatus": "상태",
- "connectionStatusUnconfigured": "Unconfigured",
- "connectionStatusConnecting": "Connecting",
- "connectionStatusAuthenticating": "Authenticating",
+ "connectionStatusUnconfigured": "구성되지 않음",
+ "connectionStatusConnecting": "연결중",
+ "connectionStatusAuthenticating": "인증",
"connectionStatusPendingDisconnect": "Pending Disconnect",
- "connectionStatusDisconnecting": "Disconnecting",
- "connectionStatusDisconnected": "Disconnected",
+ "connectionStatusDisconnecting": "연결을 끊는 중...",
+ "connectionStatusDisconnected": "연결 끊김",
"connectionStatusConnected": "Connected",
"uptime": "Uptime",
"maxDown": "Max. Down",
"maxUp": "Max. Up",
"down": "Down",
"up": "Up",
- "received": "Received",
- "sent": "Sent",
+ "received": "수신됨",
+ "sent": "전송됨",
"externalIPAddress": "Ext. IP"
},
"caddy": {
@@ -160,9 +160,9 @@
"diffsDetected": "변경 감지됨"
},
"channelsdvrserver": {
- "shows": "Shows",
+ "shows": "보기",
"recordings": "Recordings",
- "scheduled": "Scheduled",
+ "scheduled": "예정됨",
"passes": "Passes"
},
"tautulli": {
@@ -306,18 +306,18 @@
"total": "총합"
},
"tailscale": {
- "address": "Address",
- "expires": "Expires",
+ "address": "주소",
+ "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"
+ "years": "{{number}}년",
+ "weeks": "{{number}}월",
+ "days": "{{number}}일",
+ "hours": "{{number}}시",
+ "minutes": "{{number}}분",
+ "seconds": "{{number}}초",
+ "ago": "{{value}} 전"
},
"tdarr": {
"queue": "대기열",
@@ -380,14 +380,14 @@
},
"minecraft": {
"players": "Players",
- "version": "Version",
+ "version": "버전",
"status": "상태",
"up": "Online",
"down": "중지"
},
"miniflux": {
"read": "Read",
- "unread": "Unread"
+ "unread": "읽지 않음"
},
"authentik": {
"users": "사용자",
@@ -802,7 +802,7 @@
"up": "Up",
"down": "Down",
"bytesTx": "Transmitted",
- "bytesRx": "Received"
+ "bytesRx": "수신됨"
},
"uptimerobot": {
"status": "상태",
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "다운로드",
+ "upload": "업로드"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "버전"
}
}
diff --git a/public/locales/lv/common.json b/public/locales/lv/common.json
index e9b8b20a..f45f17e1 100644
--- a/public/locales/lv/common.json
+++ b/public/locales/lv/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Lejupielāde",
+ "upload": "Augšupielāde"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "Version"
}
}
diff --git a/public/locales/ms/common.json b/public/locales/ms/common.json
index c05b7079..4fc9de89 100644
--- a/public/locales/ms/common.json
+++ b/public/locales/ms/common.json
@@ -174,8 +174,8 @@
},
"omada": {
"connectedAp": "Connected APs",
- "activeUser": "Active devices",
- "alerts": "Alerts",
+ "activeUser": "Peranti aktif",
+ "alerts": "Perhatian",
"connectedGateway": "Connected gateways",
"connectedSwitches": "Connected switches"
},
@@ -186,7 +186,7 @@
},
"plex": {
"streams": "Strim Aktif",
- "albums": "Albums",
+ "albums": "Album",
"movies": "Filem",
"tv": "Rancangan TV"
},
@@ -250,7 +250,7 @@
"lidarr": {
"wanted": "Mahu",
"queued": "Dibaris Gilir",
- "artists": "Artists"
+ "artists": "Artis"
},
"readarr": {
"wanted": "Mahu",
@@ -310,7 +310,7 @@
"expires": "Expires",
"never": "Never",
"last_seen": "Last Seen",
- "now": "Now",
+ "now": "Sekarang",
"years": "{{number}}y",
"weeks": "{{number}}w",
"days": "{{number}}d",
@@ -528,7 +528,7 @@
"truenas": {
"load": "Beban Sistem",
"uptime": "Masa Hidup",
- "alerts": "Alerts"
+ "alerts": "Perhatian"
},
"pyload": {
"speed": "Kelajuan",
@@ -600,7 +600,7 @@
"moonraker": {
"printer_state": "Printer State",
"print_status": "Print Status",
- "print_progress": "Progress",
+ "print_progress": "Kemajuan",
"layers": "Layers"
},
"octoprint": {
@@ -631,7 +631,7 @@
},
"immich": {
"users": "Pengguna",
- "photos": "Photos",
+ "photos": "Gambar",
"videos": "Video",
"storage": "Storage"
},
@@ -646,7 +646,7 @@
"series": "Siri",
"archives": "Archives",
"chapters": "Chapters",
- "categories": "Categories"
+ "categories": "Memori"
},
"komga": {
"libraries": "Libraries",
@@ -664,8 +664,8 @@
"wanted": "Mahu"
},
"photoprism": {
- "albums": "Albums",
- "photos": "Photos",
+ "albums": "Album",
+ "photos": "Gambar",
"videos": "Video",
"people": "People"
},
@@ -738,7 +738,7 @@
"calibreweb": {
"books": "Buku",
"authors": "Pengarang/Penulis",
- "categories": "Categories",
+ "categories": "Memori",
"series": "Siri"
},
"jdownloader": {
@@ -785,7 +785,7 @@
"mealie": {
"recipes": "Resipi",
"users": "Pengguna",
- "categories": "Categories",
+ "categories": "Memori",
"tags": "Tanda nama"
},
"openmediavault": {
@@ -836,7 +836,7 @@
"plantit": {
"events": "Events",
"plants": "Plants",
- "photos": "Photos",
+ "photos": "Gambar",
"species": "Species"
},
"gitea": {
@@ -845,7 +845,7 @@
"pulls": "Pull Requests"
},
"stash": {
- "scenes": "Scenes",
+ "scenes": "Adegan",
"scenesPlayed": "Scenes Played",
"playCount": "Total Plays",
"playDuration": "Time Watched",
@@ -868,13 +868,13 @@
"homebox": {
"items": "Items",
"totalWithWarranty": "With Warranty",
- "locations": "Locations",
+ "locations": "Lokasi",
"labels": "Labels",
"users": "Pengguna",
- "totalValue": "Total Value"
+ "totalValue": "Jumlah nilai"
},
"crowdsec": {
- "alerts": "Alerts",
+ "alerts": "Perhatian",
"bans": "Bans"
},
"wgeasy": {
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Muat turun",
+ "upload": "Muat naik"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Masa Hidup",
+ "version": "Versi"
}
}
diff --git a/public/locales/nl/common.json b/public/locales/nl/common.json
index 6910c07a..4f0c4f90 100644
--- a/public/locales/nl/common.json
+++ b/public/locales/nl/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Download",
+ "upload": "Upload"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Online",
+ "version": "Versie"
}
}
diff --git a/public/locales/no/common.json b/public/locales/no/common.json
index 74f97249..c25d583e 100644
--- a/public/locales/no/common.json
+++ b/public/locales/no/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Responstid",
+ "download": "Last ned",
+ "upload": "Opplastning"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Oppetid",
+ "version": "Versjon"
}
}
diff --git a/public/locales/pl/common.json b/public/locales/pl/common.json
index eddd0a5a..14297dd7 100644
--- a/public/locales/pl/common.json
+++ b/public/locales/pl/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Pobieranie",
+ "upload": "Wysyłanie"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Czas działania",
+ "version": "Wersja"
}
}
diff --git a/public/locales/pt/common.json b/public/locales/pt/common.json
index 558e9867..18de2c0b 100644
--- a/public/locales/pt/common.json
+++ b/public/locales/pt/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Tempo de resposta",
+ "download": "Descarregar",
+ "upload": "Carregar"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Ligado",
+ "version": "Versão"
}
}
diff --git a/public/locales/pt_BR/common.json b/public/locales/pt_BR/common.json
index e622ddeb..3fe50516 100644
--- a/public/locales/pt_BR/common.json
+++ b/public/locales/pt_BR/common.json
@@ -317,7 +317,7 @@
"hours": "{{number}}h",
"minutes": "{{number}}m",
"seconds": "{{number}}s",
- "ago": "{{value}} Ago"
+ "ago": "{{value}} Atrás"
},
"tdarr": {
"queue": "Fila",
@@ -328,7 +328,7 @@
"traefik": {
"routers": "Roteadores",
"services": "Serviços",
- "middleware": "Middleware"
+ "middleware": ""
},
"navidrome": {
"nothing_streaming": "Sem Streams Ativos",
@@ -884,9 +884,26 @@
"total": "Total"
},
"swagdashboard": {
- "proxied": "Proxied",
- "auth": "With Auth",
- "outdated": "Outdated",
- "banned": "Banned"
+ "proxied": "Com proxy",
+ "auth": "Com Autenticação",
+ "outdated": "Desatualizado",
+ "banned": "Banido"
+ },
+ "myspeed": {
+ "ping": "Tempo de resposta",
+ "download": "Descarregar",
+ "upload": "Carregar"
+ },
+ "stocks": {
+ "stocks": "Ações",
+ "loading": "Carregando",
+ "open": "Abrir - Mercado Americano",
+ "closed": "Fechado - Mercado americano",
+ "invalidConfiguration": "Configuração Inválida"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Ligado",
+ "version": "Versão"
}
}
diff --git a/public/locales/ro/common.json b/public/locales/ro/common.json
index 5b5187d3..41767d02 100644
--- a/public/locales/ro/common.json
+++ b/public/locales/ro/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Descarcă",
+ "upload": "Încarcă"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "Version"
}
}
diff --git a/public/locales/ru/common.json b/public/locales/ru/common.json
index 5c7c771a..a723634f 100644
--- a/public/locales/ru/common.json
+++ b/public/locales/ru/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Пинг",
+ "download": "Скачивание",
+ "upload": "Загрузка"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Время работы",
+ "version": "Версия"
}
}
diff --git a/public/locales/sk/common.json b/public/locales/sk/common.json
index 42afe41a..fa98f6bb 100644
--- a/public/locales/sk/common.json
+++ b/public/locales/sk/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Zastarané",
"banned": "Zabanovaný"
+ },
+ "myspeed": {
+ "ping": "Odozva",
+ "download": "Sťahovanie",
+ "upload": "Nahrávanie"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Prevádzka",
+ "version": "Verzia"
}
}
diff --git a/public/locales/sl/common.json b/public/locales/sl/common.json
index 6dcd5415..02d15ec6 100644
--- a/public/locales/sl/common.json
+++ b/public/locales/sl/common.json
@@ -888,5 +888,22 @@
"auth": "Z Auth",
"outdated": "Zastarelo",
"banned": "Prepovedan"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Prenos",
+ "upload": "Nalaganje"
+ },
+ "stocks": {
+ "stocks": "Delnice",
+ "loading": "Nalaganje",
+ "open": "Odprto - US trg",
+ "closed": "Zaprto - US trg",
+ "invalidConfiguration": "Neveljavna konfiguracija"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Čas delovanja",
+ "version": "Verzija"
}
}
diff --git a/public/locales/sr/common.json b/public/locales/sr/common.json
index 62714000..b53935ca 100644
--- a/public/locales/sr/common.json
+++ b/public/locales/sr/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Download",
+ "upload": "Upload"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "Version"
}
}
diff --git a/public/locales/sv/common.json b/public/locales/sv/common.json
index 53fe576c..fd8c0e6a 100644
--- a/public/locales/sv/common.json
+++ b/public/locales/sv/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Download",
+ "upload": "Upload"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "Version"
}
}
diff --git a/public/locales/te/common.json b/public/locales/te/common.json
index 1dd640f2..301090a9 100644
--- a/public/locales/te/common.json
+++ b/public/locales/te/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Download",
+ "upload": "Upload"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "Version"
}
}
diff --git a/public/locales/th/common.json b/public/locales/th/common.json
index 682451b4..74f7ab26 100644
--- a/public/locales/th/common.json
+++ b/public/locales/th/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "ปิง",
+ "download": "ดาวน์โหลด",
+ "upload": "อัพโหลด"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "Version"
}
}
diff --git a/public/locales/tr/common.json b/public/locales/tr/common.json
index a44ec8f0..118821bb 100644
--- a/public/locales/tr/common.json
+++ b/public/locales/tr/common.json
@@ -884,9 +884,26 @@
"total": "Toplam"
},
"swagdashboard": {
- "proxied": "Proxied",
- "auth": "With Auth",
- "outdated": "Outdated",
- "banned": "Banned"
+ "proxied": "Proxy Üzerinden",
+ "auth": "Kimlik Doğrulamalı",
+ "outdated": "Eskimiş",
+ "banned": "Yasaklı"
+ },
+ "myspeed": {
+ "ping": "Gecikme",
+ "download": "İndirme",
+ "upload": "Yükleme"
+ },
+ "stocks": {
+ "stocks": "Hisse Senetleri",
+ "loading": "Yükleniyor",
+ "open": "Açık - ABD Pazarı",
+ "closed": "Kapalı - ABD Pazarı",
+ "invalidConfiguration": "Geçersiz Yapılandırma"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Çalışma Süresi",
+ "version": "Versiyon"
}
}
diff --git a/public/locales/uk/common.json b/public/locales/uk/common.json
index 239de674..779cd9af 100644
--- a/public/locales/uk/common.json
+++ b/public/locales/uk/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Пінг",
+ "download": "Завантаження",
+ "upload": "Відправлення"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Час роботи",
+ "version": "Версія"
}
}
diff --git a/public/locales/vi/common.json b/public/locales/vi/common.json
index 7eeab113..e717988b 100644
--- a/public/locales/vi/common.json
+++ b/public/locales/vi/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "Download",
+ "upload": "Upload"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "Uptime",
+ "version": "Version"
}
}
diff --git a/public/locales/yue/common.json b/public/locales/yue/common.json
index 4d425c45..02d95d33 100644
--- a/public/locales/yue/common.json
+++ b/public/locales/yue/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "延遲",
+ "download": "下載速率",
+ "upload": "上傳速率"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "運行時間",
+ "version": "版本"
}
}
diff --git a/public/locales/zh-Hans/common.json b/public/locales/zh-Hans/common.json
index f82495b9..160a8a1c 100644
--- a/public/locales/zh-Hans/common.json
+++ b/public/locales/zh-Hans/common.json
@@ -888,5 +888,22 @@
"auth": "使用认证",
"outdated": "已过期",
"banned": "已禁止"
+ },
+ "myspeed": {
+ "ping": "Ping",
+ "download": "下载速率",
+ "upload": "上传速率"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "运行时间",
+ "version": "版本"
}
}
diff --git a/public/locales/zh-Hant/common.json b/public/locales/zh-Hant/common.json
index e88ac2bb..558ac2aa 100644
--- a/public/locales/zh-Hant/common.json
+++ b/public/locales/zh-Hant/common.json
@@ -888,5 +888,22 @@
"auth": "With Auth",
"outdated": "Outdated",
"banned": "Banned"
+ },
+ "myspeed": {
+ "ping": "延遲",
+ "download": "下載速率",
+ "upload": "上傳速率"
+ },
+ "stocks": {
+ "stocks": "Stocks",
+ "loading": "Loading",
+ "open": "Open - US Market",
+ "closed": "Closed - US Market",
+ "invalidConfiguration": "Invalid Configuration"
+ },
+ "frigate": {
+ "cameras": "Cameras",
+ "uptime": "運行時間",
+ "version": "版本"
}
}
diff --git a/requirements.txt b/requirements.txt
index b4716522..3e2b4c7a 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -28,3 +28,4 @@ urllib3==2.0.5
watchdog==3.0.0
pre-commit==3.5.0
mkdocs-material[imaging]==9.5.26
+mkdocs-redirects==1.2.1
diff --git a/src/components/widgets/stocks/stocks.jsx b/src/components/widgets/stocks/stocks.jsx
new file mode 100644
index 00000000..8c2c03fd
--- /dev/null
+++ b/src/components/widgets/stocks/stocks.jsx
@@ -0,0 +1,91 @@
+import useSWR from "swr";
+import { useState } from "react";
+import { useTranslation } from "next-i18next";
+import { FaChartLine } from "react-icons/fa6";
+
+import Error from "../widget/error";
+import Container from "../widget/container";
+import PrimaryText from "../widget/primary_text";
+import WidgetIcon from "../widget/widget_icon";
+import Raw from "../widget/raw";
+
+export default function Widget({ options }) {
+ const { t, i18n } = useTranslation();
+
+ const [viewingPercentChange, setViewingPercentChange] = useState(false);
+
+ const { color } = options;
+
+ const { data, error } = useSWR(
+ `/api/widgets/stocks?${new URLSearchParams({ lang: i18n.language, ...options }).toString()}`,
+ );
+
+ if (error || data?.error) {
+ return