mirror of
https://github.com/gethomepage/homepage.git
synced 2025-12-07 09:35:54 -08:00
Compare commits
43 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
12ec1cfdcb | ||
|
|
303a62369f | ||
|
|
034f6d29d6 | ||
|
|
60098d3909 | ||
|
|
2c68f1e7ee | ||
|
|
bfd392026d | ||
|
|
c18fd02c8e | ||
|
|
ffad2b890e | ||
|
|
4239e8fe97 | ||
|
|
f82a122e26 | ||
|
|
d49a06efd9 | ||
|
|
9904c2db2f | ||
|
|
60db01cc57 | ||
|
|
4e69ea6088 | ||
|
|
268d8efa0e | ||
|
|
43bbb69d53 | ||
|
|
cdfb5a11f7 | ||
|
|
2ebcb311e8 | ||
|
|
0d7b77260f | ||
|
|
6f07acab15 | ||
|
|
29447c55ff | ||
|
|
dd819ad677 | ||
|
|
212e517ebb | ||
|
|
29ac7bfea7 | ||
|
|
b0d57866a0 | ||
|
|
97d193faf1 | ||
|
|
d4c0e482d3 | ||
|
|
def9b27006 | ||
|
|
4fe4ae9622 | ||
|
|
0af975b3d9 | ||
|
|
01a2495e47 | ||
|
|
e4b4eba445 | ||
|
|
885b2624a8 | ||
|
|
f06214a295 | ||
|
|
7627f9c5a7 | ||
|
|
556450c8de | ||
|
|
edc38c93e2 | ||
|
|
b9e1a514cb | ||
|
|
7e0fbed06b | ||
|
|
358633638f | ||
|
|
fa1d343f2a | ||
|
|
247f73f0db | ||
|
|
54db9ac551 |
4
.github/PULL_REQUEST_TEMPLATE.md
vendored
4
.github/PULL_REQUEST_TEMPLATE.md
vendored
@@ -1,12 +1,12 @@
|
||||
## Proposed change
|
||||
|
||||
<!--
|
||||
Please include a summary of the change. Screenshots and / or videos can also be helpful if appropriate.
|
||||
Please include a summary of the change. Screenshots and/or videos can also be helpful if appropriate.
|
||||
|
||||
*** Please see the development guidelines for new widgets: https://gethomepage.dev/latest/more/development/#service-widget-guidelines
|
||||
*** If you do not follow these guidelines your PR will likely be closed without review.
|
||||
|
||||
New service widgets should include example(s) of relevant relevant API output as well updates to the docs for the new widget.
|
||||
New service widgets should include example(s) of relevant API output as well as updates to the docs for the new widget.
|
||||
-->
|
||||
|
||||
Closes # (issue)
|
||||
|
||||
@@ -48,11 +48,15 @@ Please see information in the docs regarding [code formatting with pre-commit ho
|
||||
|
||||
By contributing, you agree that your contributions will be licensed under its GNU General Public License.
|
||||
|
||||
## Use of AI for pull requests
|
||||
|
||||
In general, homepage does not accept "AI-generated" PRs. If you choose to use something like that to aid the development process to generate a significant proportion of the pull request, please make sure this is explicitly stated in the PR itself.
|
||||
|
||||
## References
|
||||
|
||||
This document was adapted from the open-source contribution guidelines for [Facebook's Draft](https://github.com/facebook/draft-js/blob/main/CONTRIBUTING.md)
|
||||
|
||||
# Automatic Respository Maintenance
|
||||
## Automatic Respository Maintenance
|
||||
|
||||
The homepage team appreciates all effort and interest from the community in filing bug reports, creating feature requests, sharing ideas and helping other community members. That said, in an effort to keep the repository organized and managebale the project uses automatic handling of certain areas:
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ With features like quick search, bookmarks, weather support, a wide range of int
|
||||
|
||||
## Docker Integration
|
||||
|
||||
Homepage has built-in support for Docker, and can automatically discover and add services to the homepage based on labels. See the [Docker](https://gethomepage.dev/latest/installation/docker/) page for more information.
|
||||
Homepage has built-in support for Docker, and can automatically discover and add services to the homepage based on labels. See the [Docker Service Discovery](https://gethomepage.dev/latest/configs/docker/#automatic-service-discovery) page for more information.
|
||||
|
||||
## Service Widgets
|
||||
|
||||
|
||||
@@ -85,7 +85,7 @@ Or you may pass the path to a local image relative to the `/app/public` director
|
||||
|
||||
## Theme
|
||||
|
||||
You can configure a fixed them (and disable the theme switcher) by passing the `theme` option, like so:
|
||||
You can configure a fixed theme (and disable the theme switcher) by passing the `theme` option, like so:
|
||||
|
||||
```yaml
|
||||
theme: dark # or light
|
||||
@@ -211,13 +211,13 @@ layout:
|
||||
|
||||
### Five Columns
|
||||
|
||||
You can add a fifth column (when `style: columns` which is default) by adding:
|
||||
You can add a fifth column to services (when `style: columns` which is default) by adding:
|
||||
|
||||
```yaml
|
||||
fiveColumns: true
|
||||
```
|
||||
|
||||
By default homepage will max out at 4 columns for column style
|
||||
By default homepage will max out at 4 columns for services with `columns` style
|
||||
|
||||
### Collapsible sections
|
||||
|
||||
|
||||
@@ -361,3 +361,33 @@ spec:
|
||||
port:
|
||||
number: 3000
|
||||
```
|
||||
|
||||
### Multiple Replicas
|
||||
|
||||
If you plan to deploy homepage with a replica count greater than 1, you may
|
||||
want to consider enabling sticky sessions on the homepage route. This will
|
||||
prevent unnecessary re-renders on page loads and window / tab focusing. The
|
||||
procedure for enabling sticky sessions depends on your Ingress controller. Below
|
||||
is an example using Traefik as the Ingress controller.
|
||||
|
||||
```
|
||||
apiVersion: traefik.io/v1alpha1
|
||||
kind: IngressRoute
|
||||
metadata:
|
||||
name: homepage.example.com
|
||||
spec:
|
||||
entryPoints:
|
||||
- websecure
|
||||
routes:
|
||||
- kind: Rule
|
||||
match: Host(`homepage.example.com`)
|
||||
services:
|
||||
- kind: Service
|
||||
name: homepage
|
||||
port: 3000
|
||||
sticky:
|
||||
cookie:
|
||||
httpOnly: true
|
||||
secure: true
|
||||
sameSite: none
|
||||
```
|
||||
|
||||
@@ -39,6 +39,11 @@ Once installed, hooks will run when you commit. If the formatting isn't quite ri
|
||||
|
||||
See the [pre-commit documentation](https://pre-commit.com/#install) to get started.
|
||||
|
||||
## Preferring self-hosted open-source software
|
||||
|
||||
In general, homepage is meant to be a dashboard for 'self-hosted' services and we believe it is a small way we can help showcase this kind of software. While exceptions are made, mostly when there is no viable
|
||||
self-hosted / open-source alternative, we ask that any widgets, etc. are developed primarily for a self-hosted tool.
|
||||
|
||||
## New Feature Guidelines
|
||||
|
||||
- New features should be linked to an existing feature request with at least 10 'up-votes'. The purpose of this requirement is to avoid the addition (and maintenance) of features that might only benefit a small number of users.
|
||||
|
||||
47
docs/overrides/main.html
Normal file
47
docs/overrides/main.html
Normal file
@@ -0,0 +1,47 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block site_nav %}
|
||||
<!-- Navigation -->
|
||||
{% if nav %}
|
||||
{% if page.meta and page.meta.hide %}
|
||||
{% set hidden = "hidden" if "navigation" in page.meta.hide %}
|
||||
{% endif %}
|
||||
<div
|
||||
class="md-sidebar md-sidebar--primary"
|
||||
data-md-component="sidebar"
|
||||
data-md-type="navigation"
|
||||
{{ hidden }}
|
||||
>
|
||||
<div class="md-sidebar__scrollwrap">
|
||||
<div class="md-sidebar__inner">
|
||||
{% include "partials/nav.html" %}
|
||||
{% if 'widgets/' not in page.url and 'more/' not in page.url %}
|
||||
<script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CWYIL2JU&placement=gethomepagedev&format=cover" id="_carbonads_js"></script>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<!-- Table of contents -->
|
||||
{% if "toc.integrate" not in features %}
|
||||
{% if page.meta and page.meta.hide %}
|
||||
{% set hidden = "hidden" if "toc" in page.meta.hide %}
|
||||
{% endif %}
|
||||
<div
|
||||
class="md-sidebar md-sidebar--secondary"
|
||||
data-md-component="sidebar"
|
||||
data-md-type="toc"
|
||||
{{ hidden }}
|
||||
>
|
||||
<div class="md-sidebar__scrollwrap" style="height: 200px;">
|
||||
<div class="md-sidebar__inner">
|
||||
{% include "partials/toc.html" %}
|
||||
{% if 'widgets/' in page.url or 'more/' in page.url %}
|
||||
<script async type="text/javascript" src="//cdn.carbonads.com/carbon.js?serve=CWYIL2JU&placement=gethomepagedev&format=cover" id="_carbonads_js"></script>
|
||||
{% endif %}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
@@ -22,3 +22,15 @@
|
||||
#glimeRoot * {
|
||||
font-family: var(--md-text-font) !important;
|
||||
}
|
||||
|
||||
#carbonads {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
#carbon-responsive {
|
||||
--carbon-padding: 1em;
|
||||
--carbon-max-char: 20ch;
|
||||
--carbon-bg-primary: var(--md-default-bg-color) !important;
|
||||
--carbon-bg-secondary: var(--md-default-fg-color--lightest) !important;
|
||||
--carbon-text-color: var(--md-typeset-color) !important;
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@ The Glances widget allows you to monitor the resources (CPU, memory, storage, te
|
||||
url: http://host.or.ip:port
|
||||
username: user # optional if auth enabled in Glances
|
||||
password: pass # optional if auth enabled in Glances
|
||||
version: 4 # required only if running glances v4 or higher, defaults to 3
|
||||
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
|
||||
|
||||
@@ -7,14 +7,15 @@ Learn more about [Authentik](https://github.com/goauthentik/authentik).
|
||||
|
||||
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:
|
||||
You will need to generate an API token for an existing user under `Admin Portal` > `Directory` > `Tokens & App passwords`.
|
||||
Make sure to set Intent to "API Token".
|
||||
|
||||
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
|
||||
The account you made the API token for also needs the following **Assigned global permissions** in Authentik:
|
||||
|
||||
- authentik Core
|
||||
- User
|
||||
- authentik Events
|
||||
- Event
|
||||
|
||||
Allowed fields: `["users", "loginsLast24H", "failedLoginsLast24H"]`.
|
||||
|
||||
|
||||
@@ -7,10 +7,10 @@ Learn more about [Azure DevOps](https://azure.microsoft.com/en-us/products/devop
|
||||
|
||||
This widget has 2 functions:
|
||||
|
||||
1. Pipelines: checks if the relevant pipeline is running or not, and if not, reports the last status.\
|
||||
1. Pipelines: checks if the relevant pipeline is running or not, and if not, reports the last status.<br>
|
||||
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 at least 1 person and not yet completed.\
|
||||
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 at least 1 person and not yet completed.<br>
|
||||
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)
|
||||
|
||||
19
docs/widgets/services/crowdsec.md
Normal file
19
docs/widgets/services/crowdsec.md
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
title: Crowdsec
|
||||
description: Crowdsec Widget Configuration
|
||||
---
|
||||
|
||||
Learn more about [Crowdsec](https://crowdsec.net).
|
||||
|
||||
See the [crowdsec docs](https://docs.crowdsec.net/docs/local_api/intro/#machines) for information about registering a machine,
|
||||
in most instances you can use the default credentials (`/etc/crowdsec/local_api_credentials.yaml`).
|
||||
|
||||
Allowed fields: `["alerts", "bans"]`.
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
type: crowdsec
|
||||
url: http://crowdsechostorip:port
|
||||
username: localhost # machine_id in crowdsec
|
||||
password: password
|
||||
```
|
||||
@@ -11,22 +11,27 @@ An optional 'volume' parameter can be supplied to specify which volume's free sp
|
||||
|
||||
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:
|
||||
To access these system metrics you need to connect to the DiskStation (`DSM`) 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
|
||||
6. Now _only_ allow login to the `DSM` 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`.
|
||||
7. When the `Preview` column shows `Allow` in the `DSM` 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.
|
||||
If you encounter issues during testing:
|
||||
|
||||
1. 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.
|
||||
2. Login to your Synology DSM with the newly created account and accept terms and conditions.
|
||||
3. Reattempt
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
|
||||
@@ -16,4 +16,5 @@ widget:
|
||||
key: apikeyapikeyapikeyapikeyapikey
|
||||
enableBlocks: true # optional, defaults to false
|
||||
enableNowPlaying: true # optional, defaults to true
|
||||
enableUser: true # optional, defaults to false
|
||||
```
|
||||
|
||||
@@ -7,7 +7,10 @@ Learn more about [ESPHome](https://esphome.io/).
|
||||
|
||||
Show the number of ESPHome devices based on their state.
|
||||
|
||||
Allowed fields: `["total", "online", "offline", "unknown"]`.
|
||||
Allowed fields: `["total", "online", "offline", "offline_alt", "unknown"]` (maximum of 4).
|
||||
|
||||
By default ESPHome will only mark devices as `offline` if their address cannot be pinged. If it has an invalid config or its name cannot be resolved (by DNS) its status will be marked as `unknown`.
|
||||
To group both `offline` and `unknown` devices together, users should use the `offline_alt` field instead. This sums all devices that are _not_ online together.
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
|
||||
@@ -5,9 +5,9 @@ description: Gitea Widget Configuration
|
||||
|
||||
Learn more about [Gitea](https://gitea.com).
|
||||
|
||||
API token requires `notifications` and `repository` permissions. See the [gitea documentation](https://docs.gitea.com/development/api-usage#generating-and-listing-api-tokens) for details on generating tokens.
|
||||
API token requires `notifications`, `repository` and `issue` permissions. See the [gitea documentation](https://docs.gitea.com/development/api-usage#generating-and-listing-api-tokens) for details on generating tokens.
|
||||
|
||||
Allowed fields: ["notifications", "issues", "pulls"]
|
||||
Allowed fields: `["notifications", "issues", "pulls"]`.
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
|
||||
@@ -17,8 +17,11 @@ widget:
|
||||
url: http://glances.host.or.ip:port
|
||||
username: user # optional if auth enabled in Glances
|
||||
password: pass # optional if auth enabled in Glances
|
||||
version: 4 # required only if running glances v4 or higher, defaults to 3
|
||||
metric: cpu
|
||||
diskUnits: bytes # optional, bytes (default) or bbytes. Only applies to disk
|
||||
refreshInterval: 5000 # optional - in milliseconds, defaults to 1000 or more, depending on the metric
|
||||
pointsLimit: 15 # optional, defaults to 15
|
||||
```
|
||||
|
||||
_Please note, this widget does not need an `href`, `icon` or `description` on its parent service. To achieve the same effect as the examples above, see as an example:_
|
||||
|
||||
@@ -5,7 +5,7 @@ description: Jackett Widget Configuration
|
||||
|
||||
Learn more about [Jackett](https://github.com/Jackett/Jackett).
|
||||
|
||||
Jackett must not have any authentication for the widget to work.
|
||||
If Jackett has an admin password set, you must set the `password` field for the widget to work.
|
||||
|
||||
Allowed fields: `["configured", "errored"]`.
|
||||
|
||||
@@ -13,5 +13,5 @@ Allowed fields: `["configured", "errored"]`.
|
||||
widget:
|
||||
type: jackett
|
||||
url: http://jackett.host.or.ip
|
||||
key: jackettapikey
|
||||
password: jackettadminpassword # optional
|
||||
```
|
||||
|
||||
16
docs/widgets/services/netalertx.md
Normal file
16
docs/widgets/services/netalertx.md
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
title: NetAlertX
|
||||
description: NetAlertX (formerly PiAlert) Widget Configuration
|
||||
---
|
||||
|
||||
Learn more about [NetAlertX](https://github.com/jokob-sk/NetAlertX).
|
||||
|
||||
_Note that the project was renamed from PiAlert to NetAlertX._
|
||||
|
||||
Allowed fields: `["total", "connected", "new_devices", "down_alerts"]`.
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
type: netalertx
|
||||
url: http://ip:port
|
||||
```
|
||||
@@ -9,7 +9,7 @@ This widget adds support for [Network UPS Tools](https://networkupstools.org/) v
|
||||
|
||||
The default ups name is `ups`. To configure more than one ups, you must create multiple peanut services.
|
||||
|
||||
Allowed fields: `["battery_charge", "ups_load", "ups_status"]`
|
||||
Allowed fields: `["battery_charge", "ups_load", "ups_status"]`.
|
||||
|
||||
!!! note
|
||||
|
||||
|
||||
@@ -9,9 +9,9 @@ This widget requires the installation of the [pfsense-api](https://github.com/ja
|
||||
|
||||
Once pfSense API is installed, you can set the API to be read-only in System > API > Settings.
|
||||
|
||||
Currently the only supported authentication mode is 'Local Database'.
|
||||
There are two currently supported authentication modes: 'Local Database' and 'API Token'. For 'Local Database', use `username` and `password` with the credentials of an admin user. For 'API Token', utilize the `headers` parameter with `client_token` and `client_id` obtained from pfSense as shown below. Do not use both headers and username / password.
|
||||
|
||||
WAN interface to monitor can be defined by updating the `wan` param.
|
||||
The interface to monitor is defined by updating the `wan` parameter. It should be referenced as it is shown under Interfaces > Assignments in pfSense.
|
||||
|
||||
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.
|
||||
|
||||
@@ -21,7 +21,10 @@ Allowed fields: `["load", "memory", "temp", "wanStatus", "wanIP", "disk"]` (maxi
|
||||
widget:
|
||||
type: pfsense
|
||||
url: http://pfsense.host.or.ip:port
|
||||
username: user
|
||||
password: pass
|
||||
username: user # optional, or API token
|
||||
password: pass # optional, or API token
|
||||
headers: # optional, or username/password
|
||||
Authorization: client_id client_token
|
||||
wan: igb0
|
||||
fields: ["load", "memory", "temp", "wanStatus"] # optional
|
||||
```
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
---
|
||||
title: PiAlert
|
||||
description: PiAlert Widget Configuration
|
||||
---
|
||||
|
||||
Learn more about [PiAlert](https://github.com/jokob-sk/Pi.Alert).
|
||||
|
||||
Note that [pucherot/PiAlert](https://github.com/pucherot/Pi.Alert) has been abandoned and might not work properly.
|
||||
|
||||
Allowed fields: `["total", "connected", "new_devices", "down_alerts"]`.
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
type: pialert
|
||||
url: http://ip:port
|
||||
```
|
||||
@@ -15,6 +15,7 @@ Note: by default the "blocked" and "blocked_percent" fields are merged e.g. "1,2
|
||||
widget:
|
||||
type: pihole
|
||||
url: http://pi.hole.or.ip
|
||||
version: 6 # required if running v6 or higher, defaults to 5
|
||||
key: yourpiholeapikey # optional
|
||||
```
|
||||
|
||||
|
||||
@@ -14,4 +14,5 @@ widget:
|
||||
type: tautulli
|
||||
url: http://tautulli.host.or.ip
|
||||
key: apikeyapikeyapikeyapikeyapikey
|
||||
enableUser: true # optional, defaults to false
|
||||
```
|
||||
|
||||
@@ -5,7 +5,7 @@ description: Prometheus Widget Configuration
|
||||
|
||||
Learn more about [Prometheus](https://github.com/prometheus/prometheus).
|
||||
|
||||
Allowed fields: `["targets_up", "targets_down", "targets_total"]`
|
||||
Allowed fields: `["targets_up", "targets_down", "targets_total"]`.
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
|
||||
@@ -5,7 +5,7 @@ description: Pterodactyl Widget Configuration
|
||||
|
||||
Learn more about [Pterodactyl](https://github.com/pterodactyl).
|
||||
|
||||
Allowed fields: `["nodes", "servers"]`
|
||||
Allowed fields: `["nodes", "servers"]`.
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
|
||||
@@ -11,6 +11,8 @@ To create an API Key, follow [the official TrueNAS documentation](https://www.tr
|
||||
|
||||
A detailed pool listing is disabled by default, but can be enabled with the `enablePools` option.
|
||||
|
||||
To use the `enablePools` option with TrueNAS Core, the `nasType` parameter is required.
|
||||
|
||||
```yaml
|
||||
widget:
|
||||
type: truenas
|
||||
@@ -19,4 +21,5 @@ widget:
|
||||
password: pass # not required if using api key
|
||||
key: yourtruenasapikey # not required if using username / password
|
||||
enablePools: true # optional, defaults to false
|
||||
nasType: scale # defaults to scale, must be set to 'core' if using enablePools with TrueNAS Core
|
||||
```
|
||||
|
||||
@@ -1,11 +1,9 @@
|
||||
---
|
||||
title: Whats Up Docker
|
||||
description: WhatsUpDocker Widget Configuration
|
||||
title: What's Up Docker
|
||||
description: What's Up Docker Widget Configuration
|
||||
---
|
||||
|
||||
Learn more about [Whats Up Docker](https://github.com/fmartinou/whats-up-docker).
|
||||
|
||||
Currently requires unauthenticated whatsupdocker instance.
|
||||
Learn more about [What's Up Docker](https://github.com/fmartinou/whats-up-docker).
|
||||
|
||||
Allowed fields: `["monitoring", "updates"]`.
|
||||
|
||||
@@ -13,4 +11,6 @@ Allowed fields: `["monitoring", "updates"]`.
|
||||
widget:
|
||||
type: whatsupdocker
|
||||
url: http://whatsupdocker:port
|
||||
username: username # optional
|
||||
password: password # optional
|
||||
```
|
||||
|
||||
@@ -44,6 +44,7 @@ nav:
|
||||
- widgets/services/channelsdvrserver.md
|
||||
- widgets/services/cloudflared.md
|
||||
- widgets/services/coin-market-cap.md
|
||||
- widgets/services/crowdsec.md
|
||||
- widgets/services/customapi.md
|
||||
- widgets/services/deluge.md
|
||||
- widgets/services/diskstation.md
|
||||
@@ -89,6 +90,7 @@ nav:
|
||||
- widgets/services/mylar.md
|
||||
- widgets/services/navidrome.md
|
||||
- widgets/services/netdata.md
|
||||
- widgets/services/netalertx.md
|
||||
- widgets/services/nextcloud.md
|
||||
- widgets/services/nextdns.md
|
||||
- widgets/services/nginx-proxy-manager.md
|
||||
@@ -99,12 +101,12 @@ nav:
|
||||
- widgets/services/opendtu.md
|
||||
- widgets/services/openmediavault.md
|
||||
- widgets/services/opnsense.md
|
||||
- widgets/services/openwrt.md
|
||||
- widgets/services/overseerr.md
|
||||
- widgets/services/paperlessngx.md
|
||||
- widgets/services/peanut.md
|
||||
- widgets/services/pfsense.md
|
||||
- widgets/services/photoprism.md
|
||||
- widgets/services/pialert.md
|
||||
- widgets/services/pihole.md
|
||||
- widgets/services/plantit.md
|
||||
- widgets/services/plex-tautulli.md
|
||||
@@ -129,6 +131,7 @@ nav:
|
||||
- widgets/services/stash.md
|
||||
- widgets/services/syncthing-relay-server.md
|
||||
- widgets/services/tailscale.md
|
||||
- widgets/services/tandoor.md
|
||||
- widgets/services/tdarr.md
|
||||
- widgets/services/traefik.md
|
||||
- widgets/services/transmission.md
|
||||
@@ -165,6 +168,7 @@ nav:
|
||||
|
||||
theme:
|
||||
name: material
|
||||
custom_dir: docs/overrides
|
||||
language: en
|
||||
palette:
|
||||
- media: "(prefers-color-scheme)"
|
||||
|
||||
660
package-lock.json
generated
660
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
10
package.json
10
package.json
@@ -16,7 +16,7 @@
|
||||
"classnames": "^2.5.1",
|
||||
"compare-versions": "^6.1.0",
|
||||
"dockerode": "^4.0.2",
|
||||
"follow-redirects": "^1.15.5",
|
||||
"follow-redirects": "^1.15.6",
|
||||
"gamedig": "^4.3.1",
|
||||
"i18next": "^21.10.0",
|
||||
"js-yaml": "^4.1.0",
|
||||
@@ -33,7 +33,7 @@
|
||||
"react-dom": "^18.2.0",
|
||||
"react-i18next": "^11.18.6",
|
||||
"react-icons": "^4.12.0",
|
||||
"recharts": "^2.12.2",
|
||||
"recharts": "^2.12.3",
|
||||
"rrule": "^2.8.1",
|
||||
"swr": "^1.3.0",
|
||||
"systeminformation": "^5.22.0",
|
||||
@@ -52,12 +52,12 @@
|
||||
"eslint-plugin-import": "^2.29.1",
|
||||
"eslint-plugin-jsx-a11y": "^6.8.0",
|
||||
"eslint-plugin-prettier": "^4.2.1",
|
||||
"eslint-plugin-react": "^7.33.2",
|
||||
"eslint-plugin-react": "^7.34.1",
|
||||
"eslint-plugin-react-hooks": "^4.6.0",
|
||||
"postcss": "^8.4.35",
|
||||
"postcss": "^8.4.38",
|
||||
"prettier": "^3.2.5",
|
||||
"tailwind-scrollbar": "^3.0.5",
|
||||
"tailwindcss": "^3.4.1",
|
||||
"tailwindcss": "^3.4.3",
|
||||
"typescript": "^4.9.5"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
|
||||
553
pnpm-lock.yaml
generated
553
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Vanlyn",
|
||||
"offline_alt": "Vanlyn",
|
||||
"online": "Aanlyn",
|
||||
"total": "Totaal",
|
||||
"unknown": "Onbekend"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Goedgekeur",
|
||||
"available": "Beskikbaar"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Totaal",
|
||||
"connected": "Gekoppel",
|
||||
"new_devices": "Nuwe Toestelle",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Gebruikers",
|
||||
"recipes": "Resepte",
|
||||
"keywords": "Sleutelwoorde"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "Met Waarborg",
|
||||
"locations": "Plekke",
|
||||
"labels": "Etikette",
|
||||
"users": "Gebruikers",
|
||||
"totalValue": "Totale Waarde"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Waarskuwings",
|
||||
"bans": "Verbanne"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "غير متصل",
|
||||
"offline_alt": "غير متصل",
|
||||
"online": "مُتّصل",
|
||||
"total": "المجموع",
|
||||
"unknown": "مجهول"
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "في انتظار قطع الاتصال",
|
||||
"connectionStatusDisconnecting": "جار قطع الاتصال",
|
||||
"connectionStatusDisconnected": "غير متصل",
|
||||
"connectionStatusConnected": "متصل",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "مدة التشغيل",
|
||||
"maxDown": "أقصى حد للتنزيل",
|
||||
"maxUp": "أقصى حد للتحميل",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "مصدق",
|
||||
"available": "متاح"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "المجموع",
|
||||
"connected": "متصل",
|
||||
"new_devices": "أجهزة جديدة",
|
||||
"down_alerts": "تنبيهات تعطل الخوادم"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "الاستعلامات",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "المستخدمون",
|
||||
"recipes": "وصفات",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "المستخدمون",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "تنبيهات",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Изключен",
|
||||
"offline_alt": "Изключен",
|
||||
"online": "Online",
|
||||
"total": "Общо",
|
||||
"unknown": "Неизв."
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "Pending Disconnect",
|
||||
"connectionStatusDisconnecting": "Disconnecting",
|
||||
"connectionStatusDisconnected": "Disconnected",
|
||||
"connectionStatusConnected": "Свързано",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Uptime",
|
||||
"maxDown": "Max. Down",
|
||||
"maxUp": "Max. Up",
|
||||
@@ -276,10 +277,10 @@
|
||||
"approved": "Одобрен",
|
||||
"available": "Наличен"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Общо",
|
||||
"connected": "Свързано",
|
||||
"new_devices": "Нови устройства",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Потребители",
|
||||
"recipes": "Рецепти",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Потребители",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Предупреждения",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
"date": "{{value, date}}",
|
||||
"relativeDate": "{{value, relativeDate}}",
|
||||
"uptime": "{{value, uptime}}",
|
||||
"months": "mo",
|
||||
"months": "mes",
|
||||
"days": "d",
|
||||
"hours": "h",
|
||||
"minutes": "m",
|
||||
@@ -46,8 +46,8 @@
|
||||
"used": "Utilitzat",
|
||||
"load": "Càrrega",
|
||||
"temp": "TEMP",
|
||||
"max": "Max",
|
||||
"uptime": "UP"
|
||||
"max": "Màx.",
|
||||
"uptime": "ACTIU"
|
||||
},
|
||||
"unifi": {
|
||||
"users": "Usuaris",
|
||||
@@ -61,64 +61,65 @@
|
||||
"wlan_devices": "Dispositius WLAN",
|
||||
"lan_users": "Usuaris LAN",
|
||||
"wlan_users": "Usuaris WLAN",
|
||||
"up": "UP",
|
||||
"up": "ACTIU",
|
||||
"down": "INACTIU",
|
||||
"wait": "Si us plau, espereu",
|
||||
"empty_data": "Subsystem status unknown"
|
||||
"empty_data": "Estat del subsistema desconegut"
|
||||
},
|
||||
"docker": {
|
||||
"rx": "Rebut",
|
||||
"tx": "Transmès",
|
||||
"mem": "MEM",
|
||||
"cpu": "CPU",
|
||||
"running": "Running",
|
||||
"running": "En execució",
|
||||
"offline": "Fora de línia",
|
||||
"error": "Error",
|
||||
"unknown": "Desconegut",
|
||||
"healthy": "Healthy",
|
||||
"starting": "Starting",
|
||||
"unhealthy": "Unhealthy",
|
||||
"not_found": "Not Found",
|
||||
"exited": "Exited",
|
||||
"partial": "Partial"
|
||||
"healthy": "Saludable",
|
||||
"starting": "Iniciant",
|
||||
"unhealthy": "No saludable",
|
||||
"not_found": "No trobat",
|
||||
"exited": "Tancat",
|
||||
"partial": "Parcial"
|
||||
},
|
||||
"ping": {
|
||||
"error": "Error",
|
||||
"ping": "Ping",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"not_available": "Not Available"
|
||||
"ping": "Latència",
|
||||
"down": "Inactiu",
|
||||
"up": "Actiu",
|
||||
"not_available": "No Disponible"
|
||||
},
|
||||
"siteMonitor": {
|
||||
"http_status": "HTTP status",
|
||||
"http_status": "Estat HTTP",
|
||||
"error": "Error",
|
||||
"response": "Response",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"not_available": "Not Available"
|
||||
"response": "Resposta",
|
||||
"down": "Inactiu",
|
||||
"up": "Actiu",
|
||||
"not_available": "No Disponible"
|
||||
},
|
||||
"emby": {
|
||||
"playing": "Reproduint",
|
||||
"transcoding": "Transcodificant",
|
||||
"bitrate": "Taxa de bits",
|
||||
"no_active": "Sense reproduccions actives",
|
||||
"movies": "Movies",
|
||||
"series": "Series",
|
||||
"episodes": "Episodes",
|
||||
"songs": "Songs"
|
||||
"movies": "Pel·lícules",
|
||||
"series": "Sèries",
|
||||
"episodes": "Episodis",
|
||||
"songs": "Cançons"
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Fora de línia",
|
||||
"online": "Online",
|
||||
"offline_alt": "Fora de línia",
|
||||
"online": "En línia",
|
||||
"total": "Total",
|
||||
"unknown": "Desconegut"
|
||||
},
|
||||
"evcc": {
|
||||
"pv_power": "Production",
|
||||
"battery_soc": "Battery",
|
||||
"grid_power": "Grid",
|
||||
"home_power": "Consumption",
|
||||
"charge_power": "Charger",
|
||||
"pv_power": "Producció",
|
||||
"battery_soc": "Bateria",
|
||||
"grid_power": "Xarxa",
|
||||
"home_power": "Consum",
|
||||
"charge_power": "Carregador",
|
||||
"watt_hour": "Wh"
|
||||
},
|
||||
"flood": {
|
||||
@@ -128,55 +129,55 @@
|
||||
"seed": "Llavor"
|
||||
},
|
||||
"freshrss": {
|
||||
"subscriptions": "Subscriptions",
|
||||
"unread": "Unread"
|
||||
"subscriptions": "Subcripcions",
|
||||
"unread": "Sense llegir"
|
||||
},
|
||||
"fritzbox": {
|
||||
"connectionStatus": "Estat",
|
||||
"connectionStatusUnconfigured": "Unconfigured",
|
||||
"connectionStatusConnecting": "Connecting",
|
||||
"connectionStatusAuthenticating": "Authenticating",
|
||||
"connectionStatusPendingDisconnect": "Pending Disconnect",
|
||||
"connectionStatusDisconnecting": "Disconnecting",
|
||||
"connectionStatusDisconnected": "Disconnected",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"connectionStatusUnconfigured": "Sense configurar",
|
||||
"connectionStatusConnecting": "Connectant",
|
||||
"connectionStatusAuthenticating": "Autenticant",
|
||||
"connectionStatusPendingDisconnect": "Desconnexió pendent",
|
||||
"connectionStatusDisconnecting": "Desconnectant",
|
||||
"connectionStatusDisconnected": "Desconnectat",
|
||||
"connectionStatusConnected": "Connectat",
|
||||
"uptime": "Temps actiu",
|
||||
"maxDown": "Max. Down",
|
||||
"maxUp": "Max. Up",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"received": "Received",
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP"
|
||||
"maxDown": "Màx. Descàrrega",
|
||||
"maxUp": "Màx. Càrrega",
|
||||
"down": "Inactiu",
|
||||
"up": "Actiu",
|
||||
"received": "Rebuts",
|
||||
"sent": "Enviats",
|
||||
"externalIPAddress": "IP ext."
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
"requests": "Current requests",
|
||||
"requests_failed": "Failed requests"
|
||||
"requests": "Peticions actuals",
|
||||
"requests_failed": "Peticions fallides"
|
||||
},
|
||||
"changedetectionio": {
|
||||
"totalObserved": "Total d'observats",
|
||||
"diffsDetected": "Diferències detectades"
|
||||
},
|
||||
"channelsdvrserver": {
|
||||
"shows": "Shows",
|
||||
"recordings": "Recordings",
|
||||
"scheduled": "Scheduled",
|
||||
"passes": "Passes"
|
||||
"shows": "Sèries",
|
||||
"recordings": "Gravacions",
|
||||
"scheduled": "Programat",
|
||||
"passes": "Aprovat"
|
||||
},
|
||||
"tautulli": {
|
||||
"playing": "Reproduint",
|
||||
"transcoding": "Transcodificant",
|
||||
"bitrate": "Taxa de bits",
|
||||
"no_active": "Sense reproduccions actives",
|
||||
"plex_connection_error": "Check Plex Connection"
|
||||
"plex_connection_error": "Comprova la connexió de Plex"
|
||||
},
|
||||
"omada": {
|
||||
"connectedAp": "Connected APs",
|
||||
"activeUser": "Active devices",
|
||||
"alerts": "Alerts",
|
||||
"connectedGateway": "Connected gateways",
|
||||
"connectedSwitches": "Connected switches"
|
||||
"connectedAp": "AP connectats",
|
||||
"activeUser": "Dispositius actius",
|
||||
"alerts": "Alertes",
|
||||
"connectedGateway": "Pasarel·les connectades",
|
||||
"connectedSwitches": "Conmutadors connectats"
|
||||
},
|
||||
"nzbget": {
|
||||
"rate": "Taxa",
|
||||
@@ -186,7 +187,7 @@
|
||||
"plex": {
|
||||
"streams": "Transmissions actives",
|
||||
"albums": "Àlbums",
|
||||
"movies": "Movies",
|
||||
"movies": "Pel·lícules",
|
||||
"tv": "Sèries"
|
||||
},
|
||||
"sabnzbd": {
|
||||
@@ -212,12 +213,12 @@
|
||||
"seed": "Llavor"
|
||||
},
|
||||
"qnap": {
|
||||
"cpuUsage": "CPU Usage",
|
||||
"memUsage": "MEM Usage",
|
||||
"systemTempC": "System Temp",
|
||||
"poolUsage": "Pool Usage",
|
||||
"volumeUsage": "Volume Usage",
|
||||
"invalid": "Invalid"
|
||||
"cpuUsage": "Ús de CPU",
|
||||
"memUsage": "Ús de Memòria",
|
||||
"systemTempC": "Temp. Sistema",
|
||||
"poolUsage": "Ús de les Reserves",
|
||||
"volumeUsage": "Ús dels Volums",
|
||||
"invalid": "No vàlid"
|
||||
},
|
||||
"deluge": {
|
||||
"download": "Descarregar",
|
||||
@@ -234,7 +235,7 @@
|
||||
"sonarr": {
|
||||
"wanted": "Volgut",
|
||||
"queued": "En cua",
|
||||
"series": "Series",
|
||||
"series": "Sèries",
|
||||
"queue": "Cua",
|
||||
"unknown": "Desconegut"
|
||||
},
|
||||
@@ -242,14 +243,14 @@
|
||||
"wanted": "Volgut",
|
||||
"missing": "Faltant",
|
||||
"queued": "En cua",
|
||||
"movies": "Movies",
|
||||
"movies": "Pel·lícules",
|
||||
"queue": "Cua",
|
||||
"unknown": "Desconegut"
|
||||
},
|
||||
"lidarr": {
|
||||
"wanted": "Volgut",
|
||||
"queued": "En cua",
|
||||
"artists": "Artists"
|
||||
"artists": "Artistes"
|
||||
},
|
||||
"readarr": {
|
||||
"wanted": "Volgut",
|
||||
@@ -276,17 +277,17 @@
|
||||
"approved": "Aprovat",
|
||||
"available": "Disponible"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Total",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
"connected": "Connectat",
|
||||
"new_devices": "Nous dispositius",
|
||||
"down_alerts": "Alertes de caigudes"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Consultes",
|
||||
"blocked": "Bloquejat",
|
||||
"blocked_percent": "Blocked %",
|
||||
"gravity": "Gravity"
|
||||
"blocked_percent": "Bloquejat %",
|
||||
"gravity": "Gravetat"
|
||||
},
|
||||
"adguard": {
|
||||
"queries": "Consultes",
|
||||
@@ -297,37 +298,37 @@
|
||||
"speedtest": {
|
||||
"upload": "Pujada",
|
||||
"download": "Descarregar",
|
||||
"ping": "Ping"
|
||||
"ping": "Latència"
|
||||
},
|
||||
"portainer": {
|
||||
"running": "Running",
|
||||
"running": "En execució",
|
||||
"stopped": "Aturat",
|
||||
"total": "Total"
|
||||
},
|
||||
"tailscale": {
|
||||
"address": "Address",
|
||||
"expires": "Expires",
|
||||
"never": "Never",
|
||||
"last_seen": "Last Seen",
|
||||
"now": "Now",
|
||||
"years": "{{number}}y",
|
||||
"weeks": "{{number}}w",
|
||||
"address": "Adreça",
|
||||
"expires": "Caduca",
|
||||
"never": "Mai",
|
||||
"last_seen": "Vist per darrer cop",
|
||||
"now": "Ara",
|
||||
"years": "{{number}}a",
|
||||
"weeks": "{{number}}set",
|
||||
"days": "{{number}}d",
|
||||
"hours": "{{number}}h",
|
||||
"minutes": "{{number}}m",
|
||||
"seconds": "{{number}}s",
|
||||
"ago": "{{value}} Ago"
|
||||
"ago": "Fa {{value}}"
|
||||
},
|
||||
"tdarr": {
|
||||
"queue": "Cua",
|
||||
"processed": "Processed",
|
||||
"errored": "Errored",
|
||||
"saved": "Saved"
|
||||
"processed": "Processat",
|
||||
"errored": "Error",
|
||||
"saved": "Desat"
|
||||
},
|
||||
"traefik": {
|
||||
"routers": "Encaminadors",
|
||||
"services": "Serveis",
|
||||
"middleware": "Middleware"
|
||||
"middleware": "Intermediari"
|
||||
},
|
||||
"navidrome": {
|
||||
"nothing_streaming": "Sense reproduccions actives",
|
||||
@@ -359,7 +360,7 @@
|
||||
},
|
||||
"jackett": {
|
||||
"configured": "Configurat",
|
||||
"errored": "Errored"
|
||||
"errored": "Error"
|
||||
},
|
||||
"strelaysrv": {
|
||||
"numActiveSessions": "Sessions",
|
||||
@@ -375,18 +376,18 @@
|
||||
"medusa": {
|
||||
"wanted": "Volgut",
|
||||
"queued": "En cua",
|
||||
"series": "Series"
|
||||
"series": "Sèries"
|
||||
},
|
||||
"minecraft": {
|
||||
"players": "Players",
|
||||
"version": "Version",
|
||||
"players": "Jugadors",
|
||||
"version": "Versió",
|
||||
"status": "Estat",
|
||||
"up": "Online",
|
||||
"up": "En línia",
|
||||
"down": "Fora de línia"
|
||||
},
|
||||
"miniflux": {
|
||||
"read": "Read",
|
||||
"unread": "Unread"
|
||||
"read": "Llegir",
|
||||
"unread": "Sense llegir"
|
||||
},
|
||||
"authentik": {
|
||||
"users": "Usuaris",
|
||||
@@ -405,28 +406,28 @@
|
||||
"wait": "Si us plau, espereu",
|
||||
"temp": "TEMP",
|
||||
"_temp": "Temp",
|
||||
"warn": "Warn",
|
||||
"uptime": "UP",
|
||||
"warn": "Avís",
|
||||
"uptime": "ACTIU",
|
||||
"total": "Total",
|
||||
"free": "Lliure",
|
||||
"used": "Utilitzat",
|
||||
"days": "d",
|
||||
"hours": "h",
|
||||
"crit": "Crit",
|
||||
"read": "Read",
|
||||
"write": "Write",
|
||||
"crit": "Crític",
|
||||
"read": "Llegir",
|
||||
"write": "Escriure",
|
||||
"gpu": "GPU",
|
||||
"mem": "Mem",
|
||||
"swap": "Swap"
|
||||
"swap": "Intercanvi"
|
||||
},
|
||||
"quicklaunch": {
|
||||
"bookmark": "Marcador",
|
||||
"service": "Servei",
|
||||
"search": "Search",
|
||||
"custom": "Custom",
|
||||
"visit": "Visit",
|
||||
"search": "Cercar",
|
||||
"custom": "Personalitzat",
|
||||
"visit": "Visitar",
|
||||
"url": "URL",
|
||||
"searchsuggestion": "Suggestion"
|
||||
"searchsuggestion": "Suggeriment"
|
||||
},
|
||||
"wmo": {
|
||||
"0-day": "Assolellat",
|
||||
@@ -491,21 +492,21 @@
|
||||
"updates": "Actualitzacions",
|
||||
"update_available": "Actualització disponible",
|
||||
"up_to_date": "Actualitzat",
|
||||
"child_bridges": "Child Bridges",
|
||||
"child_bridges": "Ponts fills",
|
||||
"child_bridges_status": "{{ok}}/{{total}}",
|
||||
"up": "Up",
|
||||
"up": "Actiu",
|
||||
"pending": "Pendent",
|
||||
"down": "Down"
|
||||
"down": "Inactiu"
|
||||
},
|
||||
"healthchecks": {
|
||||
"new": "New",
|
||||
"up": "Up",
|
||||
"grace": "In Grace Period",
|
||||
"down": "Down",
|
||||
"paused": "Paused",
|
||||
"new": "Nou",
|
||||
"up": "Actiu",
|
||||
"grace": "En Període de gràcia",
|
||||
"down": "Inactiu",
|
||||
"paused": "En pausa",
|
||||
"status": "Estat",
|
||||
"last_ping": "Last Ping",
|
||||
"never": "No pings yet"
|
||||
"last_ping": "Últim ping",
|
||||
"never": "Sense pings"
|
||||
},
|
||||
"watchtower": {
|
||||
"containers_scanned": "Escanejat",
|
||||
@@ -527,7 +528,7 @@
|
||||
"truenas": {
|
||||
"load": "Càrrega del sistema",
|
||||
"uptime": "Temps actiu",
|
||||
"alerts": "Alerts"
|
||||
"alerts": "Alertes"
|
||||
},
|
||||
"pyload": {
|
||||
"speed": "Velocitat",
|
||||
@@ -543,12 +544,12 @@
|
||||
"hdhomerun": {
|
||||
"channels": "Canals",
|
||||
"hd": "HD",
|
||||
"tunerCount": "Tuners",
|
||||
"channelNumber": "Channel",
|
||||
"channelNetwork": "Network",
|
||||
"signalStrength": "Strength",
|
||||
"signalQuality": "Quality",
|
||||
"symbolQuality": "Quality",
|
||||
"tunerCount": "Sintonitzadors",
|
||||
"channelNumber": "Canal",
|
||||
"channelNetwork": "Xarxa",
|
||||
"signalStrength": "Intensitat",
|
||||
"signalQuality": "Qualitat",
|
||||
"symbolQuality": "Qualitat",
|
||||
"networkRate": "Taxa de bits",
|
||||
"clientIP": "Client"
|
||||
},
|
||||
@@ -562,94 +563,94 @@
|
||||
"total": "Total"
|
||||
},
|
||||
"peanut": {
|
||||
"battery_charge": "Battery Charge",
|
||||
"ups_load": "UPS Load",
|
||||
"ups_status": "UPS Status",
|
||||
"online": "Online",
|
||||
"on_battery": "On Battery",
|
||||
"low_battery": "Low Battery"
|
||||
"battery_charge": "Càrrega de la bateria",
|
||||
"ups_load": "Càrrega del SAI",
|
||||
"ups_status": "Estat del SAI",
|
||||
"online": "En línia",
|
||||
"on_battery": "En Bateria",
|
||||
"low_battery": "Bateria Baixa"
|
||||
},
|
||||
"nextdns": {
|
||||
"wait": "Espereu si us plau",
|
||||
"no_devices": "No Device Data Received"
|
||||
"no_devices": "No s'han rebut dades del Dispositiu"
|
||||
},
|
||||
"mikrotik": {
|
||||
"cpuLoad": "CPU Load",
|
||||
"memoryUsed": "Memory Used",
|
||||
"cpuLoad": "Càrrega de CPU",
|
||||
"memoryUsed": "Memoria en ús",
|
||||
"uptime": "Temps actiu",
|
||||
"numberOfLeases": "Leases"
|
||||
"numberOfLeases": "IPs assignades"
|
||||
},
|
||||
"xteve": {
|
||||
"streams_all": "All Streams",
|
||||
"streams_all": "Tots els fluxos",
|
||||
"streams_active": "Transmissions actives",
|
||||
"streams_xepg": "XEPG Channels"
|
||||
"streams_xepg": "Canals XEPG"
|
||||
},
|
||||
"opendtu": {
|
||||
"yieldDay": "Today",
|
||||
"absolutePower": "Power",
|
||||
"relativePower": "Power %",
|
||||
"limit": "Limit"
|
||||
"yieldDay": "Avui",
|
||||
"absolutePower": "Potència",
|
||||
"relativePower": "Potència %",
|
||||
"limit": "Límit"
|
||||
},
|
||||
"opnsense": {
|
||||
"cpu": "CPU Load",
|
||||
"memory": "Active Memory",
|
||||
"wanUpload": "WAN Upload",
|
||||
"wanDownload": "WAN Download"
|
||||
"cpu": "Càrrega de CPU",
|
||||
"memory": "Memòria activa",
|
||||
"wanUpload": "Pujada WAN",
|
||||
"wanDownload": "Baixada WAN"
|
||||
},
|
||||
"moonraker": {
|
||||
"printer_state": "Printer State",
|
||||
"print_status": "Print Status",
|
||||
"printer_state": "Estat de l'impressora",
|
||||
"print_status": "Estat de l'impressió",
|
||||
"print_progress": "Progress",
|
||||
"layers": "Layers"
|
||||
"layers": "Capes"
|
||||
},
|
||||
"octoprint": {
|
||||
"printer_state": "Estat",
|
||||
"temp_tool": "Tool temp",
|
||||
"temp_bed": "Bed temp",
|
||||
"job_completion": "Completion"
|
||||
"temp_tool": "Temperatura capçal",
|
||||
"temp_bed": "Temperatura llit",
|
||||
"job_completion": "Finalització"
|
||||
},
|
||||
"cloudflared": {
|
||||
"origin_ip": "Origin IP",
|
||||
"origin_ip": "IP Origen",
|
||||
"status": "Estat"
|
||||
},
|
||||
"pfsense": {
|
||||
"load": "Load Avg",
|
||||
"memory": "Mem Usage",
|
||||
"wanStatus": "WAN Status",
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"load": "Promig Càrrega",
|
||||
"memory": "Ús Memòria",
|
||||
"wanStatus": "Estat WAN",
|
||||
"up": "Actiu",
|
||||
"down": "Inactiu",
|
||||
"temp": "Temp",
|
||||
"disk": "Disk Usage",
|
||||
"disk": "Ús Disc",
|
||||
"wanIP": "WAN IP"
|
||||
},
|
||||
"proxmoxbackupserver": {
|
||||
"datastore_usage": "Datastore",
|
||||
"failed_tasks_24h": "Failed Tasks 24h",
|
||||
"failed_tasks_24h": "Tasques fallides (24h)",
|
||||
"cpu_usage": "CPU",
|
||||
"memory_usage": "Memory"
|
||||
"memory_usage": "Memòria"
|
||||
},
|
||||
"immich": {
|
||||
"users": "Usuaris",
|
||||
"photos": "Photos",
|
||||
"photos": "Fotos",
|
||||
"videos": "Vídeos",
|
||||
"storage": "Storage"
|
||||
"storage": "Emmagatzematge"
|
||||
},
|
||||
"uptimekuma": {
|
||||
"up": "Sites Up",
|
||||
"down": "Sites Down",
|
||||
"up": "Actius",
|
||||
"down": "Caiguts",
|
||||
"uptime": "Temps actiu",
|
||||
"incident": "Incident",
|
||||
"incident": "Incidència",
|
||||
"m": "m"
|
||||
},
|
||||
"atsumeru": {
|
||||
"series": "Series",
|
||||
"archives": "Archives",
|
||||
"chapters": "Chapters",
|
||||
"series": "Sèries",
|
||||
"archives": "Arxius",
|
||||
"chapters": "Capítols",
|
||||
"categories": "Categories"
|
||||
},
|
||||
"komga": {
|
||||
"libraries": "Libraries",
|
||||
"series": "Series",
|
||||
"libraries": "Biblioteques",
|
||||
"series": "Sèries",
|
||||
"books": "Llibres"
|
||||
},
|
||||
"diskstation": {
|
||||
@@ -658,77 +659,77 @@
|
||||
"volumeAvailable": "Disponible"
|
||||
},
|
||||
"mylar": {
|
||||
"series": "Series",
|
||||
"issues": "Issues",
|
||||
"series": "Sèries",
|
||||
"issues": "Problemes",
|
||||
"wanted": "Volgut"
|
||||
},
|
||||
"photoprism": {
|
||||
"albums": "Àlbums",
|
||||
"photos": "Photos",
|
||||
"photos": "Fotos",
|
||||
"videos": "Vídeos",
|
||||
"people": "People"
|
||||
"people": "Gent"
|
||||
},
|
||||
"fileflows": {
|
||||
"queue": "Cua",
|
||||
"processing": "Processant",
|
||||
"processed": "Processed",
|
||||
"time": "Time"
|
||||
"processed": "Processat",
|
||||
"time": "Temps"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
"totalalerts": "Total Alerts",
|
||||
"alertstriggered": "Alerts Triggered"
|
||||
"dashboards": "Taulells",
|
||||
"datasources": "Origen de dades",
|
||||
"totalalerts": "Alertes Totals",
|
||||
"alertstriggered": "Alertes disparades"
|
||||
},
|
||||
"nextcloud": {
|
||||
"cpuload": "Cpu Load",
|
||||
"memoryusage": "Memory Usage",
|
||||
"freespace": "Free Space",
|
||||
"activeusers": "Active Users",
|
||||
"numfiles": "Files",
|
||||
"numshares": "Shared Items"
|
||||
"cpuload": "Càrrega de CPU",
|
||||
"memoryusage": "Ús Memòria",
|
||||
"freespace": "Espai lliure",
|
||||
"activeusers": "Usuaris actius",
|
||||
"numfiles": "Fitxers",
|
||||
"numshares": "Elements compartits"
|
||||
},
|
||||
"kopia": {
|
||||
"status": "Estat",
|
||||
"size": "Size",
|
||||
"lastrun": "Last Run",
|
||||
"nextrun": "Next Run",
|
||||
"size": "Mida",
|
||||
"lastrun": "Darrera execució",
|
||||
"nextrun": "Següent execució",
|
||||
"failed": "Error"
|
||||
},
|
||||
"unmanic": {
|
||||
"active_workers": "Active Workers",
|
||||
"total_workers": "Total Workers",
|
||||
"records_total": "Queue Length"
|
||||
"active_workers": "Treballadors actius",
|
||||
"total_workers": "Treballadors Totals",
|
||||
"records_total": "Llargada de la Cua"
|
||||
},
|
||||
"pterodactyl": {
|
||||
"servers": "Servers",
|
||||
"servers": "Servidors",
|
||||
"nodes": "Nodes"
|
||||
},
|
||||
"prometheus": {
|
||||
"targets_up": "Targets Up",
|
||||
"targets_down": "Targets Down",
|
||||
"targets_total": "Total Targets"
|
||||
"targets_up": "Objectius actius",
|
||||
"targets_down": "Objectius caiguts",
|
||||
"targets_total": "Objectius Totals"
|
||||
},
|
||||
"gatus": {
|
||||
"up": "Sites Up",
|
||||
"down": "Sites Down",
|
||||
"up": "Actius",
|
||||
"down": "Caiguts",
|
||||
"uptime": "Temps actiu"
|
||||
},
|
||||
"ghostfolio": {
|
||||
"gross_percent_today": "Today",
|
||||
"gross_percent_1y": "One year",
|
||||
"gross_percent_max": "All time"
|
||||
"gross_percent_today": "Avui",
|
||||
"gross_percent_1y": "Un any",
|
||||
"gross_percent_max": "Tot"
|
||||
},
|
||||
"audiobookshelf": {
|
||||
"podcasts": "Podcasts",
|
||||
"books": "Llibres",
|
||||
"podcastsDuration": "Duration",
|
||||
"booksDuration": "Duration"
|
||||
"podcastsDuration": "Durada",
|
||||
"booksDuration": "Durada"
|
||||
},
|
||||
"homeassistant": {
|
||||
"people_home": "People Home",
|
||||
"lights_on": "Lights On",
|
||||
"switches_on": "Switches On"
|
||||
"people_home": "Gent a casa",
|
||||
"lights_on": "Llums enceses",
|
||||
"switches_on": "Endolls activats"
|
||||
},
|
||||
"whatsupdocker": {
|
||||
"monitoring": "Supervisió",
|
||||
@@ -736,132 +737,144 @@
|
||||
},
|
||||
"calibreweb": {
|
||||
"books": "Llibres",
|
||||
"authors": "Authors",
|
||||
"authors": "Autors",
|
||||
"categories": "Categories",
|
||||
"series": "Series"
|
||||
"series": "Sèries"
|
||||
},
|
||||
"jdownloader": {
|
||||
"downloadCount": "Cua",
|
||||
"downloadBytesRemaining": "Restant",
|
||||
"downloadTotalBytes": "Size",
|
||||
"downloadTotalBytes": "Mida",
|
||||
"downloadSpeed": "Velocitat"
|
||||
},
|
||||
"kavita": {
|
||||
"seriesCount": "Series",
|
||||
"totalFiles": "Files"
|
||||
"seriesCount": "Sèries",
|
||||
"totalFiles": "Fitxers"
|
||||
},
|
||||
"azuredevops": {
|
||||
"result": "Result",
|
||||
"result": "Resultat",
|
||||
"status": "Estat",
|
||||
"buildId": "Build ID",
|
||||
"succeeded": "Succeeded",
|
||||
"notStarted": "Not Started",
|
||||
"buildId": "Id de compilació",
|
||||
"succeeded": "Amb èxit",
|
||||
"notStarted": "No Iniciat",
|
||||
"failed": "Error",
|
||||
"canceled": "Canceled",
|
||||
"inProgress": "In Progress",
|
||||
"totalPrs": "Total PRs",
|
||||
"myPrs": "My PRs",
|
||||
"canceled": "Cancel·lat",
|
||||
"inProgress": "En curs",
|
||||
"totalPrs": "RP Totals",
|
||||
"myPrs": "Els meus RP",
|
||||
"approved": "Aprovat"
|
||||
},
|
||||
"gamedig": {
|
||||
"status": "Estat",
|
||||
"online": "Online",
|
||||
"online": "En línia",
|
||||
"offline": "Fora de línia",
|
||||
"name": "Name",
|
||||
"map": "Map",
|
||||
"currentPlayers": "Current players",
|
||||
"players": "Players",
|
||||
"maxPlayers": "Max players",
|
||||
"name": "Nom",
|
||||
"map": "Mapa",
|
||||
"currentPlayers": "Jugadors actuals",
|
||||
"players": "Jugadors",
|
||||
"maxPlayers": "Màxim de jugadors",
|
||||
"bots": "Bots",
|
||||
"ping": "Ping"
|
||||
"ping": "Latència"
|
||||
},
|
||||
"urbackup": {
|
||||
"ok": "Ok",
|
||||
"errored": "Errors",
|
||||
"noRecent": "Out of Date",
|
||||
"totalUsed": "Used Storage"
|
||||
"noRecent": "Obsolet",
|
||||
"totalUsed": "Emmagatzematge utilitzat"
|
||||
},
|
||||
"mealie": {
|
||||
"recipes": "Recipes",
|
||||
"recipes": "Receptes",
|
||||
"users": "Usuaris",
|
||||
"categories": "Categories",
|
||||
"tags": "Tags"
|
||||
"tags": "Etiquetes"
|
||||
},
|
||||
"openmediavault": {
|
||||
"downloading": "Downloading",
|
||||
"downloading": "Descarregant",
|
||||
"total": "Total",
|
||||
"running": "Running",
|
||||
"running": "En execució",
|
||||
"stopped": "Aturat",
|
||||
"passed": "Aprobat",
|
||||
"failed": "Error"
|
||||
},
|
||||
"openwrt": {
|
||||
"uptime": "Temps actiu",
|
||||
"cpuLoad": "CPU Load Avg (5m)",
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"bytesTx": "Transmitted",
|
||||
"bytesRx": "Received"
|
||||
"cpuLoad": "Càrrega promig de CPU (5m)",
|
||||
"up": "Actiu",
|
||||
"down": "Inactiu",
|
||||
"bytesTx": "Enviat",
|
||||
"bytesRx": "Rebuts"
|
||||
},
|
||||
"uptimerobot": {
|
||||
"status": "Estat",
|
||||
"uptime": "Temps actiu",
|
||||
"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",
|
||||
"lastDown": "Darrera Inactivitat",
|
||||
"downDuration": "Duració d'Inactivitat",
|
||||
"sitesUp": "Actius",
|
||||
"sitesDown": "Caiguts",
|
||||
"paused": "En pausa",
|
||||
"notyetchecked": "Sense verificar",
|
||||
"up": "Actiu",
|
||||
"seemsdown": "Sembla caigut",
|
||||
"down": "Inactiu",
|
||||
"unknown": "Desconegut"
|
||||
},
|
||||
"calendar": {
|
||||
"inCinemas": "In cinemas",
|
||||
"physicalRelease": "Physical release",
|
||||
"digitalRelease": "Digital release",
|
||||
"noEventsToday": "No events for today!",
|
||||
"noEventsFound": "No events found"
|
||||
"inCinemas": "En cines",
|
||||
"physicalRelease": "Estrena física",
|
||||
"digitalRelease": "Estrena digital",
|
||||
"noEventsToday": "Cap esdeveniment per avui!",
|
||||
"noEventsFound": "No s'han trobat esdeveniments"
|
||||
},
|
||||
"romm": {
|
||||
"platforms": "Platforms",
|
||||
"totalRoms": "Total ROMs"
|
||||
"platforms": "Plataformes",
|
||||
"totalRoms": "ROMs totals"
|
||||
},
|
||||
"netdata": {
|
||||
"warnings": "Warnings",
|
||||
"criticals": "Criticals"
|
||||
"warnings": "Avisos",
|
||||
"criticals": "Crítics"
|
||||
},
|
||||
"plantit": {
|
||||
"events": "Events",
|
||||
"plants": "Plants",
|
||||
"photos": "Photos",
|
||||
"species": "Species"
|
||||
"events": "Esdeveniments",
|
||||
"plants": "Plantes",
|
||||
"photos": "Fotos",
|
||||
"species": "Espècies"
|
||||
},
|
||||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"issues": "Issues",
|
||||
"pulls": "Pull Requests"
|
||||
"notifications": "Notificacions",
|
||||
"issues": "Problemes",
|
||||
"pulls": "Sol·licitud de Canvis"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
"scenesPlayed": "Scenes Played",
|
||||
"playCount": "Total Plays",
|
||||
"playDuration": "Time Watched",
|
||||
"sceneSize": "Scenes Size",
|
||||
"sceneDuration": "Scenes Duration",
|
||||
"images": "Images",
|
||||
"imageSize": "Images Size",
|
||||
"galleries": "Galleries",
|
||||
"performers": "Performers",
|
||||
"studios": "Studios",
|
||||
"movies": "Movies",
|
||||
"tags": "Tags",
|
||||
"scenes": "Escenes",
|
||||
"scenesPlayed": "Escenes reproduïdes",
|
||||
"playCount": "Total reproduccions",
|
||||
"playDuration": "Temps visionat",
|
||||
"sceneSize": "Tamany Escena",
|
||||
"sceneDuration": "Duració Escenes",
|
||||
"images": "Imatges",
|
||||
"imageSize": "Mida Imatges",
|
||||
"galleries": "Biblioteques",
|
||||
"performers": "Intèrprets",
|
||||
"studios": "Estudis",
|
||||
"movies": "Pel·lícules",
|
||||
"tags": "Etiquetes",
|
||||
"oCount": "O Count"
|
||||
},
|
||||
"tandoor": {
|
||||
"users": "Usuaris",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
"recipes": "Receptes",
|
||||
"keywords": "Paraules claus"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Elements",
|
||||
"totalWithWarranty": "Amb Garantia",
|
||||
"locations": "Ubicacions",
|
||||
"labels": "Etiquetes",
|
||||
"users": "Usuaris",
|
||||
"totalValue": "Valor total"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alertes",
|
||||
"bans": "Prohibicions"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Offline",
|
||||
"offline_alt": "Offline",
|
||||
"online": "Online",
|
||||
"total": "Celkem",
|
||||
"unknown": "Neznámý"
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "Čeká na odpojení",
|
||||
"connectionStatusDisconnecting": "Odpojování",
|
||||
"connectionStatusDisconnected": "Odpojeno",
|
||||
"connectionStatusConnected": "Připojeno",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Doba spuštění",
|
||||
"maxDown": "Max. Down",
|
||||
"maxUp": "Max. Up",
|
||||
@@ -276,10 +277,10 @@
|
||||
"approved": "Schváleno",
|
||||
"available": "Dostupné"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Celkem",
|
||||
"connected": "Připojeno",
|
||||
"new_devices": "Nová zařízení",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Uživatelé",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Uživatelé",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Upozornění",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Offline",
|
||||
"offline_alt": "Offline",
|
||||
"online": "Online",
|
||||
"total": "Total",
|
||||
"unknown": "Ukendt"
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "Pending Disconnect",
|
||||
"connectionStatusDisconnecting": "Disconnecting",
|
||||
"connectionStatusDisconnected": "Disconnected",
|
||||
"connectionStatusConnected": "Forbundet",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Oppetid",
|
||||
"maxDown": "Max. Down",
|
||||
"maxUp": "Max. Up",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "Godkendt",
|
||||
"available": "Tilgængelig"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Total",
|
||||
"connected": "Forbundet",
|
||||
"new_devices": "Nye Enheder",
|
||||
"down_alerts": "Nedadvarsler"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Forespørgsler",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Brugere",
|
||||
"recipes": "Opskrifter",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Brugere",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Advarsler",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Offline",
|
||||
"offline_alt": "Offline",
|
||||
"online": "Online",
|
||||
"total": "Gesamt",
|
||||
"unknown": "Unbekannt"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Genehmigt",
|
||||
"available": "Verfügbar"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Gesamt",
|
||||
"connected": "Verbunden",
|
||||
"new_devices": "Neue Geräte",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Benutzer",
|
||||
"recipes": "Rezepte",
|
||||
"keywords": "Schlagwörter"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Objekte",
|
||||
"totalWithWarranty": "Mit Garantie",
|
||||
"locations": "Orte",
|
||||
"labels": "Labels",
|
||||
"users": "Benutzer",
|
||||
"totalValue": "Gesamtwert"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Warnungen",
|
||||
"bans": "Banns"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Εκτός σύνδεσης",
|
||||
"offline_alt": "Εκτός σύνδεσης",
|
||||
"online": "Συνδεδεμένοι",
|
||||
"total": "Σύνολο",
|
||||
"unknown": "Άγνωστο"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Εγκρίθηκε",
|
||||
"available": "Διαθέσιμο"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Σύνολο",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Χρήστες",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Χρήστες",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Ειδοποιήσεις",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Offline",
|
||||
"offline_alt": "Offline",
|
||||
"online": "Online",
|
||||
"total": "Total",
|
||||
"unknown": "Unknown"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Approved",
|
||||
"available": "Available"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Total",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -871,5 +872,9 @@
|
||||
"labels": "Labels",
|
||||
"users": "Users",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alerts",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Malkonekta",
|
||||
"offline_alt": "Malkonekta",
|
||||
"online": "Online",
|
||||
"total": "Totalo",
|
||||
"unknown": "Nekonata"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Aprobita",
|
||||
"available": "Havebla"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Totalo",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Uzantoj",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Uzantoj",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alerts",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
"number": "{{value, number}}",
|
||||
"ms": "{{value, number}}",
|
||||
"date": "{{value, date}}",
|
||||
"relativeDate": "{{value, relativeDate}}",
|
||||
"relativeDate": "{{valor, relativaFecha}}",
|
||||
"uptime": "{{value, uptime}}",
|
||||
"months": "me",
|
||||
"days": "d",
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Desconectado",
|
||||
"offline_alt": "Desconectado",
|
||||
"online": "En línea",
|
||||
"total": "Total",
|
||||
"unknown": "Desconocido"
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "Desconexión pendiente",
|
||||
"connectionStatusDisconnecting": "Desconectando",
|
||||
"connectionStatusDisconnected": "Desconectado",
|
||||
"connectionStatusConnected": "Conectado",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Tiempo activo",
|
||||
"maxDown": "Descarga máxima",
|
||||
"maxUp": "Subida máxima",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "Aprobado",
|
||||
"available": "Disponible"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Total",
|
||||
"connected": "Conectado",
|
||||
"new_devices": "Nuevos dispositivos",
|
||||
"down_alerts": "Alertas de caídas"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Consultas",
|
||||
@@ -426,7 +427,7 @@
|
||||
"custom": "Personalizado",
|
||||
"visit": "Visitar",
|
||||
"url": "Enlace",
|
||||
"searchsuggestion": "Suggestion"
|
||||
"searchsuggestion": "Sugerencia"
|
||||
},
|
||||
"wmo": {
|
||||
"0-day": "Soleado",
|
||||
@@ -544,13 +545,13 @@
|
||||
"channels": "Canales",
|
||||
"hd": "Alta definición",
|
||||
"tunerCount": "Tuners",
|
||||
"channelNumber": "Channel",
|
||||
"channelNetwork": "Network",
|
||||
"signalStrength": "Strength",
|
||||
"signalQuality": "Quality",
|
||||
"symbolQuality": "Quality",
|
||||
"channelNumber": "Canal",
|
||||
"channelNetwork": "Red",
|
||||
"signalStrength": "Intensidad",
|
||||
"signalQuality": "Calidad",
|
||||
"symbolQuality": "Calidad",
|
||||
"networkRate": "Tasa de bits",
|
||||
"clientIP": "Client"
|
||||
"clientIP": "Cliente"
|
||||
},
|
||||
"scrutiny": {
|
||||
"passed": "Aprobado",
|
||||
@@ -797,10 +798,10 @@
|
||||
},
|
||||
"openwrt": {
|
||||
"uptime": "Tiempo activo",
|
||||
"cpuLoad": "CPU Load Avg (5m)",
|
||||
"cpuLoad": "Carga promedio del CPU (5m)",
|
||||
"up": "Activo",
|
||||
"down": "Inactivo",
|
||||
"bytesTx": "Transmitted",
|
||||
"bytesTx": "Transmitido",
|
||||
"bytesRx": "Recibido"
|
||||
},
|
||||
"uptimerobot": {
|
||||
@@ -825,21 +826,21 @@
|
||||
"noEventsFound": "No se encontraron eventos"
|
||||
},
|
||||
"romm": {
|
||||
"platforms": "Platforms",
|
||||
"platforms": "Plataformas",
|
||||
"totalRoms": "Total ROMs"
|
||||
},
|
||||
"netdata": {
|
||||
"warnings": "Warnings",
|
||||
"criticals": "Criticals"
|
||||
"warnings": "Advertencias",
|
||||
"criticals": "Críticos"
|
||||
},
|
||||
"plantit": {
|
||||
"events": "Events",
|
||||
"events": "Eventos",
|
||||
"plants": "Plants",
|
||||
"photos": "Fotos",
|
||||
"species": "Species"
|
||||
},
|
||||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"notifications": "Notificaciones",
|
||||
"issues": "Números",
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
@@ -850,9 +851,9 @@
|
||||
"playDuration": "Time Watched",
|
||||
"sceneSize": "Scenes Size",
|
||||
"sceneDuration": "Scenes Duration",
|
||||
"images": "Images",
|
||||
"imageSize": "Images Size",
|
||||
"galleries": "Galleries",
|
||||
"images": "Imágenes",
|
||||
"imageSize": "Tamaño de imagen",
|
||||
"galleries": "Galerías",
|
||||
"performers": "Performers",
|
||||
"studios": "Studios",
|
||||
"movies": "Películas",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Usuarios",
|
||||
"recipes": "Recetas",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "Con Garantía",
|
||||
"locations": "Ubicaciones",
|
||||
"labels": "Etiquetas",
|
||||
"users": "Usuarios",
|
||||
"totalValue": "Valor total"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alertas",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Offline",
|
||||
"offline_alt": "Offline",
|
||||
"online": "Online",
|
||||
"total": "Guztira",
|
||||
"unknown": "Ezezaguna"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Approved",
|
||||
"available": "Available"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Guztira",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Users",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Users",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alerts",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Offline",
|
||||
"offline_alt": "Offline",
|
||||
"online": "Online",
|
||||
"total": "Yhteensä",
|
||||
"unknown": "Unknown"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Hyväksytty",
|
||||
"available": "Saatavilla"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Yhteensä",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Users",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Users",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alerts",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Hors ligne",
|
||||
"offline_alt": "Hors ligne",
|
||||
"online": "En ligne",
|
||||
"total": "Total",
|
||||
"unknown": "Inconnu"
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "Déconnexion en attente",
|
||||
"connectionStatusDisconnecting": "Déconnexion en cours",
|
||||
"connectionStatusDisconnected": "Déconnecté",
|
||||
"connectionStatusConnected": "Connecté",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Démarré depuis",
|
||||
"maxDown": "Max. Bas",
|
||||
"maxUp": "Max. Haut",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "Validé",
|
||||
"available": "Disponible"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Total",
|
||||
"connected": "Connecté",
|
||||
"new_devices": "Nouvel Appareil",
|
||||
"down_alerts": "Alertes"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Requêtes",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Utilisateurs",
|
||||
"recipes": "Recettes",
|
||||
"keywords": "Mots-clés"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Objets",
|
||||
"totalWithWarranty": "Avec garantie",
|
||||
"locations": "Emplacements",
|
||||
"labels": "Étiquettes",
|
||||
"users": "Utilisateurs",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alertes",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "כבוי",
|
||||
"offline_alt": "כבוי",
|
||||
"online": "Online",
|
||||
"total": "סה\"כ",
|
||||
"unknown": "Unknown"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "מאושר",
|
||||
"available": "זמין"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "סה\"כ",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Users",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Users",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alerts",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,14 +11,14 @@
|
||||
"percent": "{{value, percent}}",
|
||||
"number": "{{value, number}}",
|
||||
"ms": "{{value, number}}",
|
||||
"date": "{{value, date}}",
|
||||
"date": "{value, date}",
|
||||
"relativeDate": "{{value, relativeDate}}",
|
||||
"uptime": "{{value, uptime}}",
|
||||
"months": "mo",
|
||||
"months": "माह",
|
||||
"days": "d",
|
||||
"hours": "h",
|
||||
"hours": "घं.",
|
||||
"minutes": "m",
|
||||
"seconds": "s"
|
||||
"seconds": "पल"
|
||||
},
|
||||
"widget": {
|
||||
"missing_type": "Missing Widget Type: {{type}}",
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Offline",
|
||||
"offline_alt": "Offline",
|
||||
"online": "Online",
|
||||
"total": "Total",
|
||||
"unknown": "Unknown"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Approved",
|
||||
"available": "Available"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Total",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -411,7 +412,7 @@
|
||||
"free": "Free",
|
||||
"used": "Used",
|
||||
"days": "d",
|
||||
"hours": "h",
|
||||
"hours": "घं.",
|
||||
"crit": "Crit",
|
||||
"read": "Read",
|
||||
"write": "Write",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Users",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Users",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alerts",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Offline",
|
||||
"offline_alt": "Offline",
|
||||
"online": "Online",
|
||||
"total": "Ukupno",
|
||||
"unknown": "Nepoznato"
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "Odspajanje u tijeku",
|
||||
"connectionStatusDisconnecting": "Odspajanje",
|
||||
"connectionStatusDisconnected": "Odspojeno",
|
||||
"connectionStatusConnected": "Povezano",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Vrijeme rada",
|
||||
"maxDown": "Maksimum preuzimanja",
|
||||
"maxUp": "Maksimum prijenosa",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "Odobreno",
|
||||
"available": "Dostupno"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Ukupno",
|
||||
"connected": "Povezano",
|
||||
"new_devices": "Novi uređaji",
|
||||
"down_alerts": "Obavijesti o nedostupnosti"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Upiti",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Korisnici",
|
||||
"recipes": "Recepti",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Korisnici",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Upozorenja",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Nem elérhető",
|
||||
"offline_alt": "Nem elérhető",
|
||||
"online": "Csatlakozva",
|
||||
"total": "Összes",
|
||||
"unknown": "Ismeretlen"
|
||||
@@ -124,8 +125,8 @@
|
||||
"flood": {
|
||||
"download": "Letöltés",
|
||||
"upload": "Feltöltés",
|
||||
"leech": "Letöltés",
|
||||
"seed": "Feltöltés"
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
"freshrss": {
|
||||
"subscriptions": "Előfizetések",
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "Szétkapcsolás függőben",
|
||||
"connectionStatusDisconnecting": "Kapcsolat bontása",
|
||||
"connectionStatusDisconnected": "Kapcsolat bontva",
|
||||
"connectionStatusConnected": "Csatlakoztatott",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Üzemidő",
|
||||
"maxDown": "Max let.",
|
||||
"maxUp": "Max felt.",
|
||||
@@ -202,14 +203,14 @@
|
||||
"transmission": {
|
||||
"download": "Letöltés",
|
||||
"upload": "Feltöltés",
|
||||
"leech": "Letöltés",
|
||||
"seed": "Feltöltés"
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
"qbittorrent": {
|
||||
"download": "Letöltés",
|
||||
"upload": "Feltöltés",
|
||||
"leech": "Letöltés",
|
||||
"seed": "Feltöltés"
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
"qnap": {
|
||||
"cpuUsage": "Processzor Használat",
|
||||
@@ -222,14 +223,14 @@
|
||||
"deluge": {
|
||||
"download": "Letöltés",
|
||||
"upload": "Feltöltés",
|
||||
"leech": "Letöltés",
|
||||
"seed": "Feltöltés"
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
"downloadstation": {
|
||||
"download": "Letöltés",
|
||||
"upload": "Feltöltés",
|
||||
"leech": "Letöltés",
|
||||
"seed": "Feltöltés"
|
||||
"leech": "Leech",
|
||||
"seed": "Seed"
|
||||
},
|
||||
"sonarr": {
|
||||
"wanted": "Keresett",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "Engedélyezett",
|
||||
"available": "Elérhető"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Összes",
|
||||
"connected": "Csatlakoztatott",
|
||||
"new_devices": "Új Eszközök",
|
||||
"down_alerts": "Leállási Figyelmeztetések"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Lekérdezések",
|
||||
@@ -396,7 +397,7 @@
|
||||
"proxmox": {
|
||||
"mem": "RAM",
|
||||
"cpu": "Processzor",
|
||||
"lxc": "LXC",
|
||||
"lxc": "LXC-k",
|
||||
"vms": "VM-ek"
|
||||
},
|
||||
"glances": {
|
||||
@@ -525,7 +526,7 @@
|
||||
"playlists": "Lejátszási listák"
|
||||
},
|
||||
"truenas": {
|
||||
"load": "Rendszerterheltség",
|
||||
"load": "Rendszerterhelés",
|
||||
"uptime": "Üzemidő",
|
||||
"alerts": "Riasztások"
|
||||
},
|
||||
@@ -543,14 +544,14 @@
|
||||
"hdhomerun": {
|
||||
"channels": "Csatornák",
|
||||
"hd": "HD",
|
||||
"tunerCount": "Tuners",
|
||||
"channelNumber": "Channel",
|
||||
"channelNetwork": "Network",
|
||||
"signalStrength": "Strength",
|
||||
"signalQuality": "Quality",
|
||||
"symbolQuality": "Quality",
|
||||
"tunerCount": "Tuner-ek",
|
||||
"channelNumber": "Csatorna",
|
||||
"channelNetwork": "Hálózat",
|
||||
"signalStrength": "Erősség",
|
||||
"signalQuality": "Minőség",
|
||||
"symbolQuality": "Minőség",
|
||||
"networkRate": "Bitráta",
|
||||
"clientIP": "Client"
|
||||
"clientIP": "Kliens"
|
||||
},
|
||||
"scrutiny": {
|
||||
"passed": "Megfelelt",
|
||||
@@ -797,10 +798,10 @@
|
||||
},
|
||||
"openwrt": {
|
||||
"uptime": "Üzemidő",
|
||||
"cpuLoad": "CPU Load Avg (5m)",
|
||||
"cpuLoad": "Átlag CPU terhelés (5p)",
|
||||
"up": "Fel",
|
||||
"down": "Le",
|
||||
"bytesTx": "Transmitted",
|
||||
"bytesTx": "Továbbított",
|
||||
"bytesRx": "Fogadott"
|
||||
},
|
||||
"uptimerobot": {
|
||||
@@ -833,35 +834,47 @@
|
||||
"criticals": "Kritikusok"
|
||||
},
|
||||
"plantit": {
|
||||
"events": "Events",
|
||||
"plants": "Plants",
|
||||
"events": "Események",
|
||||
"plants": "Növények",
|
||||
"photos": "Fényképek",
|
||||
"species": "Species"
|
||||
"species": "Fajok"
|
||||
},
|
||||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"notifications": "Üzenetek",
|
||||
"issues": "Problémák",
|
||||
"pulls": "Pull Requests"
|
||||
"pulls": "Pull request-ek"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
"scenesPlayed": "Scenes Played",
|
||||
"playCount": "Total Plays",
|
||||
"playDuration": "Time Watched",
|
||||
"sceneSize": "Scenes Size",
|
||||
"sceneDuration": "Scenes Duration",
|
||||
"images": "Images",
|
||||
"imageSize": "Images Size",
|
||||
"galleries": "Galleries",
|
||||
"performers": "Performers",
|
||||
"studios": "Studios",
|
||||
"scenes": "Jelenetek",
|
||||
"scenesPlayed": "Lejátszott jelenetek",
|
||||
"playCount": "Összes leátszás",
|
||||
"playDuration": "Nézett idő",
|
||||
"sceneSize": "Jelenetek mérete",
|
||||
"sceneDuration": "Jelenetek hossza",
|
||||
"images": "Képek",
|
||||
"imageSize": "Képek mérete",
|
||||
"galleries": "Galériák",
|
||||
"performers": "Előadók",
|
||||
"studios": "Stúdiók",
|
||||
"movies": "Film",
|
||||
"tags": "Címkék",
|
||||
"oCount": "O Count"
|
||||
"oCount": "O szám"
|
||||
},
|
||||
"tandoor": {
|
||||
"users": "Felhasználók",
|
||||
"recipes": "Receptek",
|
||||
"keywords": "Keywords"
|
||||
"keywords": "Kulcsszavak"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Tárgyak",
|
||||
"totalWithWarranty": "Garanciával",
|
||||
"locations": "Helyek",
|
||||
"labels": "Címkék",
|
||||
"users": "Felhasználók",
|
||||
"totalValue": "Teljes érték"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Riasztások",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Offline",
|
||||
"offline_alt": "Offline",
|
||||
"online": "Online",
|
||||
"total": "Total",
|
||||
"unknown": "Tidak Diketahui"
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "Menunggu Terputus",
|
||||
"connectionStatusDisconnecting": "Sedan Memutus",
|
||||
"connectionStatusDisconnected": "Terputus",
|
||||
"connectionStatusConnected": "Tersambung",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Waktu Aktif",
|
||||
"maxDown": "Maks Unduh",
|
||||
"maxUp": "Maks Unggah",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "Tersetujui",
|
||||
"available": "Tersedia"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Total",
|
||||
"connected": "Tersambung",
|
||||
"new_devices": "Perangkat Baru",
|
||||
"down_alerts": "Alert Mati"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Kueri",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Pengguna",
|
||||
"recipes": "Resep",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Pengguna",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Peringatan",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -15,8 +15,8 @@
|
||||
"relativeDate": "{{value, relativeDate}}",
|
||||
"uptime": "{{value, uptime}}",
|
||||
"months": "mo",
|
||||
"days": "d",
|
||||
"hours": "h",
|
||||
"days": "g",
|
||||
"hours": "o",
|
||||
"minutes": "m",
|
||||
"seconds": "s"
|
||||
},
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Non in linea",
|
||||
"offline_alt": "Non in linea",
|
||||
"online": "Online",
|
||||
"total": "Totale",
|
||||
"unknown": "Sconosciuto"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Approvati",
|
||||
"available": "Disponibili"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Totale",
|
||||
"connected": "Connesso",
|
||||
"new_devices": "Nuovi Dispositivi",
|
||||
@@ -410,8 +411,8 @@
|
||||
"total": "Totale",
|
||||
"free": "Libero",
|
||||
"used": "In utilizzo",
|
||||
"days": "d",
|
||||
"hours": "h",
|
||||
"days": "g",
|
||||
"hours": "o",
|
||||
"crit": "Critico",
|
||||
"read": "Letti",
|
||||
"write": "Scrittura",
|
||||
@@ -426,7 +427,7 @@
|
||||
"custom": "Personalizzato",
|
||||
"visit": "Visita",
|
||||
"url": "URL",
|
||||
"searchsuggestion": "Suggestion"
|
||||
"searchsuggestion": "Suggerimenti"
|
||||
},
|
||||
"wmo": {
|
||||
"0-day": "Soleggiato",
|
||||
@@ -545,8 +546,8 @@
|
||||
"hd": "HD",
|
||||
"tunerCount": "Tuners",
|
||||
"channelNumber": "Channel",
|
||||
"channelNetwork": "Network",
|
||||
"signalStrength": "Strength",
|
||||
"channelNetwork": "Rete",
|
||||
"signalStrength": "Intensità",
|
||||
"signalQuality": "Quality",
|
||||
"symbolQuality": "Quality",
|
||||
"networkRate": "Bitrate",
|
||||
@@ -829,32 +830,32 @@
|
||||
"totalRoms": "Total ROMs"
|
||||
},
|
||||
"netdata": {
|
||||
"warnings": "Warnings",
|
||||
"warnings": "Avvisi",
|
||||
"criticals": "Criticals"
|
||||
},
|
||||
"plantit": {
|
||||
"events": "Events",
|
||||
"plants": "Plants",
|
||||
"photos": "Foto",
|
||||
"species": "Species"
|
||||
"species": "Specie"
|
||||
},
|
||||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"notifications": "Notifiche",
|
||||
"issues": "Problemi",
|
||||
"pulls": "Pull Requests"
|
||||
"pulls": "Richieste di Pull"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
"scenesPlayed": "Scenes Played",
|
||||
"playCount": "Total Plays",
|
||||
"playDuration": "Time Watched",
|
||||
"sceneSize": "Scenes Size",
|
||||
"sceneDuration": "Scenes Duration",
|
||||
"images": "Images",
|
||||
"scenes": "Scene",
|
||||
"scenesPlayed": "Scene Riprodotte",
|
||||
"playCount": "Totale Riproduzioni",
|
||||
"playDuration": "Tempo Guardato",
|
||||
"sceneSize": "Dimensione Delle Scene",
|
||||
"sceneDuration": "Durata Delle Scene",
|
||||
"images": "Immagini",
|
||||
"imageSize": "Images Size",
|
||||
"galleries": "Galleries",
|
||||
"performers": "Performers",
|
||||
"studios": "Studios",
|
||||
"performers": "Esecutori",
|
||||
"studios": "Studi",
|
||||
"movies": "Film",
|
||||
"tags": "Tag",
|
||||
"oCount": "O Count"
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Utenti",
|
||||
"recipes": "Ricette",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Utenti",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Allarmi",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
"date": "{{value, date}}",
|
||||
"relativeDate": "{{value, relativeDate}}",
|
||||
"uptime": "{{value, uptime}}",
|
||||
"months": "mo",
|
||||
"months": "月",
|
||||
"days": "日",
|
||||
"hours": "時間",
|
||||
"minutes": "分",
|
||||
@@ -92,7 +92,7 @@
|
||||
"siteMonitor": {
|
||||
"http_status": "HTTP ステータス",
|
||||
"error": "エラー",
|
||||
"response": "Response",
|
||||
"response": "応答",
|
||||
"down": "下へ",
|
||||
"up": "上へ",
|
||||
"not_available": "利用できません。"
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "オフライン",
|
||||
"offline_alt": "オフライン",
|
||||
"online": "オンライン",
|
||||
"total": "合計",
|
||||
"unknown": "不明"
|
||||
@@ -133,21 +134,21 @@
|
||||
},
|
||||
"fritzbox": {
|
||||
"connectionStatus": "状態",
|
||||
"connectionStatusUnconfigured": "Unconfigured",
|
||||
"connectionStatusConnecting": "Connecting",
|
||||
"connectionStatusAuthenticating": "Authenticating",
|
||||
"connectionStatusPendingDisconnect": "Pending Disconnect",
|
||||
"connectionStatusDisconnecting": "Disconnecting",
|
||||
"connectionStatusDisconnected": "Disconnected",
|
||||
"connectionStatusConnected": "接続済み",
|
||||
"connectionStatusUnconfigured": "未設定",
|
||||
"connectionStatusConnecting": "接続中",
|
||||
"connectionStatusAuthenticating": "認証中",
|
||||
"connectionStatusPendingDisconnect": "接続を切断する",
|
||||
"connectionStatusDisconnecting": "接続を切断中",
|
||||
"connectionStatusDisconnected": "切断されました",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "稼働時間",
|
||||
"maxDown": "Max. Down",
|
||||
"maxUp": "Max. Up",
|
||||
"maxDown": "最大ダウン",
|
||||
"maxUp": "最大アップ",
|
||||
"down": "下へ",
|
||||
"up": "上へ",
|
||||
"received": "受信済み",
|
||||
"sent": "送信済み",
|
||||
"externalIPAddress": "Ext. IP"
|
||||
"externalIPAddress": "退出ID"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "アップストリーム",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "承認済",
|
||||
"available": "利用可"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "合計",
|
||||
"connected": "接続済み",
|
||||
"new_devices": "新しいデバイス",
|
||||
"down_alerts": "ダウンアラート"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "クエリ",
|
||||
@@ -543,7 +544,7 @@
|
||||
"hdhomerun": {
|
||||
"channels": "チャンネル",
|
||||
"hd": "HD",
|
||||
"tunerCount": "Tuners",
|
||||
"tunerCount": "チューナー",
|
||||
"channelNumber": "チャンネル",
|
||||
"channelNetwork": "ネットワーク",
|
||||
"signalStrength": "強さ",
|
||||
@@ -562,7 +563,7 @@
|
||||
"total": "合計"
|
||||
},
|
||||
"peanut": {
|
||||
"battery_charge": "Battery Charge",
|
||||
"battery_charge": "バッテリー充電",
|
||||
"ups_load": "UPS 負荷",
|
||||
"ups_status": "UPS 状態",
|
||||
"online": "オンライン",
|
||||
@@ -825,43 +826,55 @@
|
||||
"noEventsFound": "予定が見つかりません"
|
||||
},
|
||||
"romm": {
|
||||
"platforms": "Platforms",
|
||||
"totalRoms": "Total ROMs"
|
||||
"platforms": "プラットフォーム",
|
||||
"totalRoms": "ROMの合計"
|
||||
},
|
||||
"netdata": {
|
||||
"warnings": "警告",
|
||||
"criticals": "重大"
|
||||
},
|
||||
"plantit": {
|
||||
"events": "Events",
|
||||
"plants": "Plants",
|
||||
"events": "イベント",
|
||||
"plants": "植物",
|
||||
"photos": "写真",
|
||||
"species": "Species"
|
||||
"species": "種"
|
||||
},
|
||||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"notifications": "通知",
|
||||
"issues": "課題",
|
||||
"pulls": "Pull Requests"
|
||||
"pulls": "プルリクエスト"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
"scenesPlayed": "Scenes Played",
|
||||
"playCount": "Total Plays",
|
||||
"playDuration": "Time Watched",
|
||||
"sceneSize": "Scenes Size",
|
||||
"sceneDuration": "Scenes Duration",
|
||||
"images": "Images",
|
||||
"imageSize": "Images Size",
|
||||
"galleries": "Galleries",
|
||||
"performers": "Performers",
|
||||
"studios": "Studios",
|
||||
"scenes": "シーン",
|
||||
"scenesPlayed": "再生されたシーン",
|
||||
"playCount": "合計再生数",
|
||||
"playDuration": "視聴時間",
|
||||
"sceneSize": "シーンサイズ",
|
||||
"sceneDuration": "シーンの長さ",
|
||||
"images": "画像",
|
||||
"imageSize": "画像サイズ",
|
||||
"galleries": "ギャラリー",
|
||||
"performers": "出演者",
|
||||
"studios": "スタジオ",
|
||||
"movies": "映画",
|
||||
"tags": "タグ",
|
||||
"oCount": "O Count"
|
||||
"oCount": "O カウント"
|
||||
},
|
||||
"tandoor": {
|
||||
"users": "ユーザ",
|
||||
"recipes": "レシピ",
|
||||
"keywords": "Keywords"
|
||||
"keywords": "キーワード"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "アイテム",
|
||||
"totalWithWarranty": "保証付き",
|
||||
"locations": "場所",
|
||||
"labels": "ラベル",
|
||||
"users": "ユーザ",
|
||||
"totalValue": "合計値"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "アラート",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "중지",
|
||||
"offline_alt": "중지",
|
||||
"online": "Online",
|
||||
"total": "총합",
|
||||
"unknown": "알 수 없음"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "승인됨",
|
||||
"available": "이용 가능"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "총합",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "사용자",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "사용자",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "경고",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Bezsaistē",
|
||||
"offline_alt": "Bezsaistē",
|
||||
"online": "Online",
|
||||
"total": "Kopā",
|
||||
"unknown": "Nezināms"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Approved",
|
||||
"available": "Available"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Kopā",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Lietotāji",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Lietotāji",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Paziņojumi",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Luar talian",
|
||||
"offline_alt": "Luar talian",
|
||||
"online": "Dalam Talian",
|
||||
"total": "Jumlah",
|
||||
"unknown": "Tidak Diketahui"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Lulus",
|
||||
"available": "Sudah Ada"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Jumlah",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Pengguna",
|
||||
"recipes": "Resipi",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Pengguna",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alerts",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Onbereikbaar",
|
||||
"offline_alt": "Onbereikbaar",
|
||||
"online": "Bereikbaar",
|
||||
"total": "Totaal",
|
||||
"unknown": "Onbekend"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Goedgekeurd",
|
||||
"available": "Beschikbaar"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Totaal",
|
||||
"connected": "Verbonden",
|
||||
"new_devices": "Nieuwe Apparaten",
|
||||
@@ -825,8 +826,8 @@
|
||||
"noEventsFound": "Geen gebeurtenissen gevonden"
|
||||
},
|
||||
"romm": {
|
||||
"platforms": "Platforms",
|
||||
"totalRoms": "Total ROMs"
|
||||
"platforms": "Platformen",
|
||||
"totalRoms": "Totale ROM's"
|
||||
},
|
||||
"netdata": {
|
||||
"warnings": "Waarschuwingen",
|
||||
@@ -839,7 +840,7 @@
|
||||
"species": "Soorten"
|
||||
},
|
||||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"notifications": "Notificaties",
|
||||
"issues": "Problemen",
|
||||
"pulls": "Pull Requests"
|
||||
},
|
||||
@@ -862,6 +863,18 @@
|
||||
"tandoor": {
|
||||
"users": "Gebruikers",
|
||||
"recipes": "Recepten",
|
||||
"keywords": "Keywords"
|
||||
"keywords": "Trefwoorden"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "Met garantie",
|
||||
"locations": "Locaties",
|
||||
"labels": "Labels",
|
||||
"users": "Gebruikers",
|
||||
"totalValue": "Totale waarde"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Meldingen",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -40,7 +40,7 @@
|
||||
},
|
||||
"resources": {
|
||||
"cpu": "Procesor",
|
||||
"mem": "PAM",
|
||||
"mem": "RAM",
|
||||
"total": "Całkowite",
|
||||
"free": "Wolne",
|
||||
"used": "Użyte",
|
||||
@@ -53,9 +53,9 @@
|
||||
"users": "Użytkownicy",
|
||||
"uptime": "Czas działania",
|
||||
"days": "Dni",
|
||||
"wan": "Sieć WAN",
|
||||
"lan": "Sieć LAN",
|
||||
"wlan": "Sieć WLAN",
|
||||
"wan": "WAN",
|
||||
"lan": "LAN",
|
||||
"wlan": "WLAN",
|
||||
"devices": "Urządzenia",
|
||||
"lan_devices": "Urządzenia LAN",
|
||||
"wlan_devices": "Urządzenia WLAN",
|
||||
@@ -64,23 +64,23 @@
|
||||
"up": "CZAS",
|
||||
"down": "Pobieranie",
|
||||
"wait": "Proszę czekać",
|
||||
"empty_data": "Nieznany stan"
|
||||
"empty_data": "Status podsystemu nieznany"
|
||||
},
|
||||
"docker": {
|
||||
"rx": "Rx",
|
||||
"tx": "Tx",
|
||||
"mem": "PAM",
|
||||
"mem": "RAM",
|
||||
"cpu": "Procesor",
|
||||
"running": "Działa",
|
||||
"offline": "Nieosiągalny",
|
||||
"error": "Błąd",
|
||||
"unknown": "Nieznany",
|
||||
"healthy": "Zdrowy",
|
||||
"starting": "Rozpoczynanie",
|
||||
"unhealthy": "Niezdrowe",
|
||||
"starting": "Uruchamianie",
|
||||
"unhealthy": "Niezdrowy",
|
||||
"not_found": "Nie znaleziono",
|
||||
"exited": "Zakończone",
|
||||
"partial": "Częściowe"
|
||||
"exited": "Zakończony",
|
||||
"partial": "Częściowy"
|
||||
},
|
||||
"ping": {
|
||||
"error": "Błąd",
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Nieosiągalny",
|
||||
"offline_alt": "Nieosiągalny",
|
||||
"online": "Dostępny",
|
||||
"total": "Całkowite",
|
||||
"unknown": "Nieznany"
|
||||
@@ -136,18 +137,18 @@
|
||||
"connectionStatusUnconfigured": "Nieskonfigurowane",
|
||||
"connectionStatusConnecting": "Łączenie",
|
||||
"connectionStatusAuthenticating": "Uwierzytelnianie",
|
||||
"connectionStatusPendingDisconnect": "Pending Disconnect",
|
||||
"connectionStatusPendingDisconnect": "Oczekujące rozłączenie",
|
||||
"connectionStatusDisconnecting": "Rozłączanie",
|
||||
"connectionStatusDisconnected": "Rozłączono",
|
||||
"connectionStatusConnected": "Połączony",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Czas działania",
|
||||
"maxDown": "Max. Down",
|
||||
"maxUp": "Max. Up",
|
||||
"maxDown": "Maks. Pobieranie",
|
||||
"maxUp": "Maks. Wysyłanie",
|
||||
"down": "Niedostępny",
|
||||
"up": "Dostępny",
|
||||
"received": "Odebrane",
|
||||
"sent": "Wysłane",
|
||||
"externalIPAddress": "Ext. IP"
|
||||
"externalIPAddress": "Pub. IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
@@ -155,12 +156,12 @@
|
||||
"requests_failed": "Nieudane zapytania"
|
||||
},
|
||||
"changedetectionio": {
|
||||
"totalObserved": "Obserwowanych ogółem",
|
||||
"diffsDetected": "Wykryto różnic"
|
||||
"totalObserved": "Łącznie obserwowanych",
|
||||
"diffsDetected": "Wykrytych różnic"
|
||||
},
|
||||
"channelsdvrserver": {
|
||||
"shows": "Seriale",
|
||||
"recordings": "Nagrywanie",
|
||||
"recordings": "Nagrania",
|
||||
"scheduled": "W kolejce",
|
||||
"passes": "Przebiegi"
|
||||
},
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "Zaakceptowane",
|
||||
"available": "Dostępne"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Całkowite",
|
||||
"connected": "Połączony",
|
||||
"new_devices": "Nowe urządzenia",
|
||||
"down_alerts": "Powiadomienia o niedostępności"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Zapytania",
|
||||
@@ -394,7 +395,7 @@
|
||||
"failedLoginsLast24H": "Nieudane logowania (24h)"
|
||||
},
|
||||
"proxmox": {
|
||||
"mem": "PAM",
|
||||
"mem": "RAM",
|
||||
"cpu": "Procesor",
|
||||
"lxc": "Kontenery LXC",
|
||||
"vms": "Maszyn wirtualnych"
|
||||
@@ -412,7 +413,7 @@
|
||||
"used": "Użyte",
|
||||
"days": "d",
|
||||
"hours": "g",
|
||||
"crit": "Crit",
|
||||
"crit": "Krytyczyny",
|
||||
"read": "Przeczytane",
|
||||
"write": "Zapis",
|
||||
"gpu": "Karta graficzna",
|
||||
@@ -491,7 +492,7 @@
|
||||
"updates": "Aktualizacje",
|
||||
"update_available": "Dostępna aktualizacja",
|
||||
"up_to_date": "Aktualny",
|
||||
"child_bridges": "Child Bridges",
|
||||
"child_bridges": "Mostki podrzędne",
|
||||
"child_bridges_status": "{{ok}}/{{total}}",
|
||||
"up": "Dostępny",
|
||||
"pending": "Oczekiwane",
|
||||
@@ -500,12 +501,12 @@
|
||||
"healthchecks": {
|
||||
"new": "Nowy",
|
||||
"up": "Dostępny",
|
||||
"grace": "In Grace Period",
|
||||
"grace": "W okresie karencji",
|
||||
"down": "Niedostępny",
|
||||
"paused": "Zatrzymane",
|
||||
"status": "Stan",
|
||||
"last_ping": "Ostatni ping",
|
||||
"never": "No pings yet"
|
||||
"never": "Brak pingów"
|
||||
},
|
||||
"watchtower": {
|
||||
"containers_scanned": "Zeskanowane",
|
||||
@@ -543,7 +544,7 @@
|
||||
"hdhomerun": {
|
||||
"channels": "Kanały",
|
||||
"hd": "HD",
|
||||
"tunerCount": "Tuners",
|
||||
"tunerCount": "Tunery",
|
||||
"channelNumber": "Kanał",
|
||||
"channelNetwork": "Sieć",
|
||||
"signalStrength": "Siła",
|
||||
@@ -562,7 +563,7 @@
|
||||
"total": "Całkowite"
|
||||
},
|
||||
"peanut": {
|
||||
"battery_charge": "Battery Charge",
|
||||
"battery_charge": "Stan baterii",
|
||||
"ups_load": "Obciążenie UPS",
|
||||
"ups_status": "Status UPS",
|
||||
"online": "Dostępny",
|
||||
@@ -575,7 +576,7 @@
|
||||
},
|
||||
"mikrotik": {
|
||||
"cpuLoad": "Obciążenie procesora",
|
||||
"memoryUsed": "Zuyżyta pamięć",
|
||||
"memoryUsed": "Zużyta pamięć",
|
||||
"uptime": "Czas działania",
|
||||
"numberOfLeases": "Dzierżawy"
|
||||
},
|
||||
@@ -586,8 +587,8 @@
|
||||
},
|
||||
"opendtu": {
|
||||
"yieldDay": "Dzisiaj",
|
||||
"absolutePower": "Power",
|
||||
"relativePower": "Power %",
|
||||
"absolutePower": "Zasilanie",
|
||||
"relativePower": "Moc %",
|
||||
"limit": "Limit"
|
||||
},
|
||||
"opnsense": {
|
||||
@@ -604,16 +605,16 @@
|
||||
},
|
||||
"octoprint": {
|
||||
"printer_state": "Stan",
|
||||
"temp_tool": "Tool temp",
|
||||
"temp_bed": "Bed temp",
|
||||
"temp_tool": "Temperatura narzędzia",
|
||||
"temp_bed": "Temp. łóżka",
|
||||
"job_completion": "Ukończono"
|
||||
},
|
||||
"cloudflared": {
|
||||
"origin_ip": "Origin IP",
|
||||
"origin_ip": "IP Źródła",
|
||||
"status": "Stan"
|
||||
},
|
||||
"pfsense": {
|
||||
"load": "Load Avg",
|
||||
"load": "Śr. Obciążenie",
|
||||
"memory": "Użycie pamięci",
|
||||
"wanStatus": "Status WAN",
|
||||
"up": "Dostępny",
|
||||
@@ -623,8 +624,8 @@
|
||||
"wanIP": "WAN IP"
|
||||
},
|
||||
"proxmoxbackupserver": {
|
||||
"datastore_usage": "Datastore",
|
||||
"failed_tasks_24h": "Failed Tasks 24h",
|
||||
"datastore_usage": "Magazyn danych",
|
||||
"failed_tasks_24h": "Nieudane zadania 24h",
|
||||
"cpu_usage": "Procesor",
|
||||
"memory_usage": "Pamięć"
|
||||
},
|
||||
@@ -678,7 +679,7 @@
|
||||
"dashboards": "Panel główny",
|
||||
"datasources": "Źródła danych",
|
||||
"totalalerts": "Wszystkie alerty",
|
||||
"alertstriggered": "Alerts Triggered"
|
||||
"alertstriggered": "Wywołane alerty"
|
||||
},
|
||||
"nextcloud": {
|
||||
"cpuload": "Obciążenie CPU",
|
||||
@@ -686,7 +687,7 @@
|
||||
"freespace": "Wolna przestrzeń",
|
||||
"activeusers": "Aktywni użytkownicy",
|
||||
"numfiles": "Pliki",
|
||||
"numshares": "Shared Items"
|
||||
"numshares": "Udostępnione elementy"
|
||||
},
|
||||
"kopia": {
|
||||
"status": "Stan",
|
||||
@@ -697,7 +698,7 @@
|
||||
},
|
||||
"unmanic": {
|
||||
"active_workers": "Aktywni pracownicy",
|
||||
"total_workers": "Total Workers",
|
||||
"total_workers": "Wszyscy pracownicy",
|
||||
"records_total": "Długość kolejki"
|
||||
},
|
||||
"pterodactyl": {
|
||||
@@ -705,9 +706,9 @@
|
||||
"nodes": "Węzły"
|
||||
},
|
||||
"prometheus": {
|
||||
"targets_up": "Targets Up",
|
||||
"targets_down": "Targets Down",
|
||||
"targets_total": "Total Targets"
|
||||
"targets_up": "Cele włączone",
|
||||
"targets_down": "Cele wyłączone",
|
||||
"targets_total": "Wszystkich Celi"
|
||||
},
|
||||
"gatus": {
|
||||
"up": "Działające",
|
||||
@@ -726,9 +727,9 @@
|
||||
"booksDuration": "Czas trwania"
|
||||
},
|
||||
"homeassistant": {
|
||||
"people_home": "People Home",
|
||||
"lights_on": "Lights On",
|
||||
"switches_on": "Switches On"
|
||||
"people_home": "Dom ludzi",
|
||||
"lights_on": "Światła włączone",
|
||||
"switches_on": "Przełączniki włączone"
|
||||
},
|
||||
"whatsupdocker": {
|
||||
"monitoring": "Monitoring",
|
||||
@@ -755,12 +756,12 @@
|
||||
"status": "Stan",
|
||||
"buildId": "ID kompilacji",
|
||||
"succeeded": "Ukończono",
|
||||
"notStarted": "Not Started",
|
||||
"notStarted": "Nierozpoczęte",
|
||||
"failed": "Niepowodzenie",
|
||||
"canceled": "Anulowano",
|
||||
"inProgress": "W trakcie",
|
||||
"totalPrs": "Total PRs",
|
||||
"myPrs": "My PRs",
|
||||
"totalPrs": "Łącznie PRs",
|
||||
"myPrs": "Moje PRs",
|
||||
"approved": "Zaakceptowane"
|
||||
},
|
||||
"gamedig": {
|
||||
@@ -769,7 +770,7 @@
|
||||
"offline": "Nieosiągalny",
|
||||
"name": "Nazwa",
|
||||
"map": "Mapa",
|
||||
"currentPlayers": "Current players",
|
||||
"currentPlayers": "Gracze online",
|
||||
"players": "Gracze",
|
||||
"maxPlayers": "Maksymalna ilość graczy",
|
||||
"bots": "Boty",
|
||||
@@ -782,7 +783,7 @@
|
||||
"totalUsed": "Użyta pamięć"
|
||||
},
|
||||
"mealie": {
|
||||
"recipes": "Recipes",
|
||||
"recipes": "Przepisy",
|
||||
"users": "Użytkownicy",
|
||||
"categories": "Kategorie",
|
||||
"tags": "Tagi"
|
||||
@@ -797,71 +798,83 @@
|
||||
},
|
||||
"openwrt": {
|
||||
"uptime": "Czas działania",
|
||||
"cpuLoad": "CPU Load Avg (5m)",
|
||||
"cpuLoad": "Śr. obciążenie CPU (5m)",
|
||||
"up": "Dostępny",
|
||||
"down": "Niedostępny",
|
||||
"bytesTx": "Transmitted",
|
||||
"bytesTx": "Przesłane",
|
||||
"bytesRx": "Odebrane"
|
||||
},
|
||||
"uptimerobot": {
|
||||
"status": "Stan",
|
||||
"uptime": "Czas działania",
|
||||
"lastDown": "Last Downtime",
|
||||
"downDuration": "Downtime Duration",
|
||||
"lastDown": "Ostatni downtime",
|
||||
"downDuration": "Długość downtime'u",
|
||||
"sitesUp": "Działające",
|
||||
"sitesDown": "Niedziałające",
|
||||
"paused": "Zatrzymane",
|
||||
"notyetchecked": "Not Yet Checked",
|
||||
"notyetchecked": "Nie sprawdzono",
|
||||
"up": "Dostępny",
|
||||
"seemsdown": "Seems Down",
|
||||
"seemsdown": "Możliwe, że wyłączony",
|
||||
"down": "Niedostępny",
|
||||
"unknown": "Nieznany"
|
||||
},
|
||||
"calendar": {
|
||||
"inCinemas": "W kinach",
|
||||
"physicalRelease": "Wydanie fizyczne",
|
||||
"digitalRelease": "Digital release",
|
||||
"noEventsToday": "No events for today!",
|
||||
"noEventsFound": "No events found"
|
||||
"digitalRelease": "Wydanie cyfrowe",
|
||||
"noEventsToday": "Brak wydarzeń na dziś!",
|
||||
"noEventsFound": "Nie znaleziono wydarzeń"
|
||||
},
|
||||
"romm": {
|
||||
"platforms": "Platformy",
|
||||
"totalRoms": "Total ROMs"
|
||||
"totalRoms": "Łącznie ROM"
|
||||
},
|
||||
"netdata": {
|
||||
"warnings": "Ostrzeżenia",
|
||||
"criticals": "Criticals"
|
||||
"criticals": "Krytyczny"
|
||||
},
|
||||
"plantit": {
|
||||
"events": "Events",
|
||||
"plants": "Plants",
|
||||
"events": "Wydarzenia",
|
||||
"plants": "Rośliny",
|
||||
"photos": "Zdjęcia",
|
||||
"species": "Species"
|
||||
"species": "Gatunki"
|
||||
},
|
||||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"notifications": "Powiadomienia",
|
||||
"issues": "Zgłoszenia",
|
||||
"pulls": "Pull Requests"
|
||||
"pulls": "Żądania Pull"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
"scenesPlayed": "Scenes Played",
|
||||
"playCount": "Total Plays",
|
||||
"playDuration": "Time Watched",
|
||||
"sceneSize": "Scenes Size",
|
||||
"sceneDuration": "Scenes Duration",
|
||||
"images": "Images",
|
||||
"imageSize": "Images Size",
|
||||
"galleries": "Galleries",
|
||||
"performers": "Performers",
|
||||
"studios": "Studios",
|
||||
"scenes": "Sceny",
|
||||
"scenesPlayed": "Odgrane sceny",
|
||||
"playCount": "Łącznie odtworzone",
|
||||
"playDuration": "Łączny czas oglądania",
|
||||
"sceneSize": "Rozmiar scen",
|
||||
"sceneDuration": "Czas trwania scen",
|
||||
"images": "Obrazy",
|
||||
"imageSize": "Rozmiar obrazów",
|
||||
"galleries": "Galerie",
|
||||
"performers": "Artyści",
|
||||
"studios": "Studia",
|
||||
"movies": "Filmy",
|
||||
"tags": "Tagi",
|
||||
"oCount": "O Count"
|
||||
"oCount": "O Licznik"
|
||||
},
|
||||
"tandoor": {
|
||||
"users": "Użytkownicy",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
"recipes": "Przepisy",
|
||||
"keywords": "Słowa kluczowe"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Elementy",
|
||||
"totalWithWarranty": "Z gwarancją",
|
||||
"locations": "Lokalizacje",
|
||||
"labels": "Etykiety",
|
||||
"users": "Użytkownicy",
|
||||
"totalValue": "Wartość całkowita"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alarmy",
|
||||
"bans": "Bany"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Desligado",
|
||||
"offline_alt": "Desligado",
|
||||
"online": "Online",
|
||||
"total": "Total",
|
||||
"unknown": "Desconhecido"
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "Desconexão pendente",
|
||||
"connectionStatusDisconnecting": "Desconectando",
|
||||
"connectionStatusDisconnected": "Desconectado",
|
||||
"connectionStatusConnected": "Conectado",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Ligado",
|
||||
"maxDown": "Máx. de Descarga",
|
||||
"maxUp": "Max. de Envio",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "Aprovada",
|
||||
"available": "Disponível"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Total",
|
||||
"connected": "Conectado",
|
||||
"new_devices": "Novos dispositivos",
|
||||
"down_alerts": "Alertas de Baixo"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Consultas",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Utilizadores",
|
||||
"recipes": "Receitas",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Utilizadores",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alertas",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
"date": "{{value, date}}",
|
||||
"relativeDate": "{{value, relativeDate}}",
|
||||
"uptime": "{{value, uptime}}",
|
||||
"months": "mo",
|
||||
"months": "M",
|
||||
"days": "d",
|
||||
"hours": "h",
|
||||
"minutes": "m",
|
||||
@@ -85,17 +85,17 @@
|
||||
"ping": {
|
||||
"error": "Erro",
|
||||
"ping": "Tempo de resposta",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"not_available": "Not Available"
|
||||
"down": "Inativo",
|
||||
"up": "Ativo",
|
||||
"not_available": "Não Disponível"
|
||||
},
|
||||
"siteMonitor": {
|
||||
"http_status": "HTTP status",
|
||||
"http_status": "Estado HTTP",
|
||||
"error": "Erro",
|
||||
"response": "Response",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"not_available": "Not Available"
|
||||
"response": "Resposta",
|
||||
"down": "Inativo",
|
||||
"up": "Ativo",
|
||||
"not_available": "Não Disponível"
|
||||
},
|
||||
"emby": {
|
||||
"playing": "A reproduzir",
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Desligado",
|
||||
"offline_alt": "Desligado",
|
||||
"online": "Online",
|
||||
"total": "Total",
|
||||
"unknown": "Desconhecido"
|
||||
@@ -133,21 +134,21 @@
|
||||
},
|
||||
"fritzbox": {
|
||||
"connectionStatus": "Estado",
|
||||
"connectionStatusUnconfigured": "Unconfigured",
|
||||
"connectionStatusConnecting": "Connecting",
|
||||
"connectionStatusAuthenticating": "Authenticating",
|
||||
"connectionStatusPendingDisconnect": "Pending Disconnect",
|
||||
"connectionStatusDisconnecting": "Disconnecting",
|
||||
"connectionStatusDisconnected": "Disconnected",
|
||||
"connectionStatusUnconfigured": "Não configurado",
|
||||
"connectionStatusConnecting": "Conectando",
|
||||
"connectionStatusAuthenticating": "Autenticando",
|
||||
"connectionStatusPendingDisconnect": "Desconexão Pendente",
|
||||
"connectionStatusDisconnecting": "Desconectando",
|
||||
"connectionStatusDisconnected": "Desconectado",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Ligado",
|
||||
"maxDown": "Max. Down",
|
||||
"maxUp": "Max. Up",
|
||||
"down": "Down",
|
||||
"up": "Up",
|
||||
"received": "Received",
|
||||
"sent": "Sent",
|
||||
"externalIPAddress": "Ext. IP"
|
||||
"down": "Inativo",
|
||||
"up": "Ativo",
|
||||
"received": "Recebido",
|
||||
"sent": "Enviado",
|
||||
"externalIPAddress": "IP Externo"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Upstreams",
|
||||
@@ -159,9 +160,9 @@
|
||||
"diffsDetected": "Diferenças Detetadas"
|
||||
},
|
||||
"channelsdvrserver": {
|
||||
"shows": "Shows",
|
||||
"shows": "Programas",
|
||||
"recordings": "Gravações",
|
||||
"scheduled": "Scheduled",
|
||||
"scheduled": "Agendado",
|
||||
"passes": "Passes"
|
||||
},
|
||||
"tautulli": {
|
||||
@@ -169,7 +170,7 @@
|
||||
"transcoding": "Transcodificação",
|
||||
"bitrate": "Taxa de bits",
|
||||
"no_active": "Sem streams ativas",
|
||||
"plex_connection_error": "Check Plex Connection"
|
||||
"plex_connection_error": "Verifique a conexão do Plex"
|
||||
},
|
||||
"omada": {
|
||||
"connectedAp": "APs Ligados",
|
||||
@@ -185,7 +186,7 @@
|
||||
},
|
||||
"plex": {
|
||||
"streams": "Streams Ativas",
|
||||
"albums": "Albums",
|
||||
"albums": "Álbuns",
|
||||
"movies": "Filmes",
|
||||
"tv": "Series de TV"
|
||||
},
|
||||
@@ -212,9 +213,9 @@
|
||||
"seed": "Semente"
|
||||
},
|
||||
"qnap": {
|
||||
"cpuUsage": "CPU Usage",
|
||||
"memUsage": "MEM Usage",
|
||||
"systemTempC": "System Temp",
|
||||
"cpuUsage": "Uso de CPU",
|
||||
"memUsage": "Uso de Memória",
|
||||
"systemTempC": "Temp. do Sistema",
|
||||
"poolUsage": "Pool Usage",
|
||||
"volumeUsage": "Volume Usage",
|
||||
"invalid": "Invalid"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Aprovada",
|
||||
"available": "Disponível"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Total",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -493,15 +494,15 @@
|
||||
"up_to_date": "Atualizado",
|
||||
"child_bridges": "Pontes Filhas",
|
||||
"child_bridges_status": "{{ok}}/{{total}}",
|
||||
"up": "Up",
|
||||
"up": "Ativo",
|
||||
"pending": "Pendente",
|
||||
"down": "Down"
|
||||
"down": "Inativo"
|
||||
},
|
||||
"healthchecks": {
|
||||
"new": "Novo",
|
||||
"up": "Up",
|
||||
"up": "Ativo",
|
||||
"grace": "Em Período Gratuito",
|
||||
"down": "Down",
|
||||
"down": "Inativo",
|
||||
"paused": "Pausado",
|
||||
"status": "Estado",
|
||||
"last_ping": "Ultimo Ping",
|
||||
@@ -616,8 +617,8 @@
|
||||
"load": "Load Avg",
|
||||
"memory": "Mem Usage",
|
||||
"wanStatus": "WAN Status",
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"up": "Ativo",
|
||||
"down": "Inativo",
|
||||
"temp": "Temp",
|
||||
"disk": "Disk Usage",
|
||||
"wanIP": "WAN IP"
|
||||
@@ -663,7 +664,7 @@
|
||||
"wanted": "Desejada"
|
||||
},
|
||||
"photoprism": {
|
||||
"albums": "Albums",
|
||||
"albums": "Álbuns",
|
||||
"photos": "Fotos",
|
||||
"videos": "Vídeos",
|
||||
"people": "Pessoa"
|
||||
@@ -798,10 +799,10 @@
|
||||
"openwrt": {
|
||||
"uptime": "Ligado",
|
||||
"cpuLoad": "CPU Load Avg (5m)",
|
||||
"up": "Up",
|
||||
"down": "Down",
|
||||
"up": "Ativo",
|
||||
"down": "Inativo",
|
||||
"bytesTx": "Transmitted",
|
||||
"bytesRx": "Received"
|
||||
"bytesRx": "Recebido"
|
||||
},
|
||||
"uptimerobot": {
|
||||
"status": "Estado",
|
||||
@@ -812,9 +813,9 @@
|
||||
"sitesDown": "Sites Fora do Ar",
|
||||
"paused": "Pausado",
|
||||
"notyetchecked": "Not Yet Checked",
|
||||
"up": "Up",
|
||||
"up": "Ativo",
|
||||
"seemsdown": "Seems Down",
|
||||
"down": "Down",
|
||||
"down": "Inativo",
|
||||
"unknown": "Desconhecido"
|
||||
},
|
||||
"calendar": {
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Utilizadores",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Utilizadores",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alertas",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Offline",
|
||||
"offline_alt": "Offline",
|
||||
"online": "Online",
|
||||
"total": "Total",
|
||||
"unknown": "Necunoscut"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Aprobate",
|
||||
"available": "Disponibile"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Total",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Utilizatori",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Utilizatori",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alerts",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Не в сети",
|
||||
"offline_alt": "Не в сети",
|
||||
"online": "В сети",
|
||||
"total": "Всего",
|
||||
"unknown": "Неизвестен"
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "Ожидает отключения",
|
||||
"connectionStatusDisconnecting": "Отключение",
|
||||
"connectionStatusDisconnected": "Отключено",
|
||||
"connectionStatusConnected": "Подключено",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Время работы",
|
||||
"maxDown": "Макс. Загрузка",
|
||||
"maxUp": "Макс. Отдача",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "Одобрено",
|
||||
"available": "Доступно"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Всего",
|
||||
"connected": "Подключено",
|
||||
"new_devices": "Новые устройства",
|
||||
"down_alerts": "Оповещение о недоступности"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Запросы",
|
||||
@@ -830,38 +831,50 @@
|
||||
},
|
||||
"netdata": {
|
||||
"warnings": "Предупреждения",
|
||||
"criticals": "Криты"
|
||||
"criticals": "Критические"
|
||||
},
|
||||
"plantit": {
|
||||
"events": "Events",
|
||||
"plants": "Plants",
|
||||
"events": "События",
|
||||
"plants": "Растения",
|
||||
"photos": "Фото",
|
||||
"species": "Species"
|
||||
"species": "Виды"
|
||||
},
|
||||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"notifications": "Уведомления",
|
||||
"issues": "Вопросы",
|
||||
"pulls": "Pull Requests"
|
||||
"pulls": "Запросы на слияние (Pull Request)"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
"scenesPlayed": "Scenes Played",
|
||||
"playCount": "Total Plays",
|
||||
"playDuration": "Time Watched",
|
||||
"sceneSize": "Scenes Size",
|
||||
"sceneDuration": "Scenes Duration",
|
||||
"images": "Images",
|
||||
"imageSize": "Images Size",
|
||||
"galleries": "Galleries",
|
||||
"performers": "Performers",
|
||||
"studios": "Studios",
|
||||
"scenes": "Сцены",
|
||||
"scenesPlayed": "Проигранных сцен",
|
||||
"playCount": "Всего проиграно",
|
||||
"playDuration": "Просмотрено времени",
|
||||
"sceneSize": "Размер сцены",
|
||||
"sceneDuration": "Длительность сцен",
|
||||
"images": "Изображения",
|
||||
"imageSize": "Размер изображений",
|
||||
"galleries": "Галереи",
|
||||
"performers": "Исполнители",
|
||||
"studios": "Студии",
|
||||
"movies": "Фильмы",
|
||||
"tags": "Теги",
|
||||
"oCount": "O Count"
|
||||
"oCount": "0"
|
||||
},
|
||||
"tandoor": {
|
||||
"users": "Пользователи",
|
||||
"recipes": "Рецепты",
|
||||
"keywords": "Keywords"
|
||||
"keywords": "Ключевые слова"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Элементы",
|
||||
"totalWithWarranty": "С гарантией",
|
||||
"locations": "Местоположения",
|
||||
"labels": "Ярлыки",
|
||||
"users": "Пользователи",
|
||||
"totalValue": "Общая стоимость"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Предупреждения",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Nedostupný",
|
||||
"offline_alt": "Nedostupný",
|
||||
"online": "Online",
|
||||
"total": "Celkovo",
|
||||
"unknown": "Neznáme"
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "Čakám na odpojenie",
|
||||
"connectionStatusDisconnecting": "Odpájanie",
|
||||
"connectionStatusDisconnected": "Odpojené",
|
||||
"connectionStatusConnected": "Pripojené",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Prevádzka",
|
||||
"maxDown": "Max. sťahovanie",
|
||||
"maxUp": "Max. nahrávanie",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "Schválené",
|
||||
"available": "Dostupné"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Celkovo",
|
||||
"connected": "Pripojené",
|
||||
"new_devices": "Nové zariadenia",
|
||||
"down_alerts": "Upozornenia o výpadkoch"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Dopyty",
|
||||
@@ -833,28 +834,28 @@
|
||||
"criticals": "Kritické"
|
||||
},
|
||||
"plantit": {
|
||||
"events": "Events",
|
||||
"plants": "Plants",
|
||||
"events": "Udalosti",
|
||||
"plants": "Rastliny",
|
||||
"photos": "Fotografie",
|
||||
"species": "Species"
|
||||
"species": "Druhy"
|
||||
},
|
||||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"notifications": "Oznámenia",
|
||||
"issues": "Problémy",
|
||||
"pulls": "Pull Requests"
|
||||
"pulls": "Pull requesty"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
"scenes": "Scény",
|
||||
"scenesPlayed": "Scenes Played",
|
||||
"playCount": "Total Plays",
|
||||
"playDuration": "Time Watched",
|
||||
"sceneSize": "Scenes Size",
|
||||
"sceneDuration": "Scenes Duration",
|
||||
"images": "Images",
|
||||
"imageSize": "Images Size",
|
||||
"galleries": "Galleries",
|
||||
"performers": "Performers",
|
||||
"studios": "Studios",
|
||||
"playCount": "Celkovo prehraní",
|
||||
"playDuration": "Pozeraný čas",
|
||||
"sceneSize": "Veľkosť obrazovky",
|
||||
"sceneDuration": "Dĺžka scény",
|
||||
"images": "Obrázky",
|
||||
"imageSize": "Veľkosť obrázkov",
|
||||
"galleries": "Galérie",
|
||||
"performers": "Herci",
|
||||
"studios": "Štúdiá",
|
||||
"movies": "Filmy",
|
||||
"tags": "Štítky",
|
||||
"oCount": "O Count"
|
||||
@@ -862,6 +863,18 @@
|
||||
"tandoor": {
|
||||
"users": "Používatelia",
|
||||
"recipes": "Recepty",
|
||||
"keywords": "Keywords"
|
||||
"keywords": "Kľúčové slová"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Položky",
|
||||
"totalWithWarranty": "So zárukou",
|
||||
"locations": "Umiestnenia",
|
||||
"labels": "Labels",
|
||||
"users": "Používatelia",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Upozornenia",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Ni povezan",
|
||||
"offline_alt": "Ni povezan",
|
||||
"online": "Na spletu",
|
||||
"total": "Skupaj",
|
||||
"unknown": "Neznano"
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "Čakanje na prekinitev",
|
||||
"connectionStatusDisconnecting": "Prekinitev",
|
||||
"connectionStatusDisconnected": "Prekinjeno",
|
||||
"connectionStatusConnected": "Povezanih",
|
||||
"connectionStatusConnected": "Povezan",
|
||||
"uptime": "Čas delovanja",
|
||||
"maxDown": "Maks. dol",
|
||||
"maxUp": "Maks. gor",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "Odobreno",
|
||||
"available": "Na voljo"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Skupaj",
|
||||
"connected": "Povezanih",
|
||||
"new_devices": "Nove naprave",
|
||||
"down_alerts": "Izključeno"
|
||||
"connected": "Povezan",
|
||||
"new_devices": "Nova naprave",
|
||||
"down_alerts": "Alarmi nedelovanja"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Poizvedbe",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Uporabniki",
|
||||
"recipes": "Recepti",
|
||||
"keywords": "Ključne besede"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Predmeti",
|
||||
"totalWithWarranty": "Z garancijo",
|
||||
"locations": "Lokacije",
|
||||
"labels": "Oznake",
|
||||
"users": "Uporabniki",
|
||||
"totalValue": "Skupna vrednost"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Opozorila",
|
||||
"bans": "Prepovedi"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Offline",
|
||||
"offline_alt": "Offline",
|
||||
"online": "Online",
|
||||
"total": "Total",
|
||||
"unknown": "Unknown"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Approved",
|
||||
"available": "Available"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Total",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Users",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Users",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alerts",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -104,11 +104,12 @@
|
||||
"no_active": "Inga aktiva strömmar",
|
||||
"movies": "Movies",
|
||||
"series": "Series",
|
||||
"episodes": "Episodes",
|
||||
"episodes": "Avsnitt",
|
||||
"songs": "Songs"
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Offline",
|
||||
"offline_alt": "Offline",
|
||||
"online": "Online",
|
||||
"total": "Total",
|
||||
"unknown": "Unknown"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Godkända",
|
||||
"available": "Tillgänglig"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Total",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -422,7 +423,7 @@
|
||||
"quicklaunch": {
|
||||
"bookmark": "Bookmark",
|
||||
"service": "Service",
|
||||
"search": "Search",
|
||||
"search": "Sök",
|
||||
"custom": "Custom",
|
||||
"visit": "Visit",
|
||||
"url": "URL",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Användare",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Användare",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alerts",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "ఆఫ్లైన్",
|
||||
"offline_alt": "ఆఫ్లైన్",
|
||||
"online": "Online",
|
||||
"total": "మొత్తం",
|
||||
"unknown": "Unknown"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "ఆమోదించబడింది",
|
||||
"available": "అందుబాటులో వున్నవి"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "మొత్తం",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "వినియోగదారులు",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "వినియోగదారులు",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alerts",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "ออฟไลน์",
|
||||
"offline_alt": "ออฟไลน์",
|
||||
"online": "Online",
|
||||
"total": "ทั้งหมด",
|
||||
"unknown": "ไม่ทราบ"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Approved",
|
||||
"available": "Available"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "ทั้งหมด",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "ผู้ใช้",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "ผู้ใช้",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alerts",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Çevrimdışı",
|
||||
"offline_alt": "Çevrimdışı",
|
||||
"online": "Çevrimiçi",
|
||||
"total": "Toplam",
|
||||
"unknown": "Bilinmiyor"
|
||||
@@ -136,18 +137,18 @@
|
||||
"connectionStatusUnconfigured": "Yapılandırılmamış",
|
||||
"connectionStatusConnecting": "Bağlanıyor",
|
||||
"connectionStatusAuthenticating": "Kimlik doğrulanıyor",
|
||||
"connectionStatusPendingDisconnect": "Pending Disconnect",
|
||||
"connectionStatusPendingDisconnect": "Bağlantının Kesilmesi Bekleniyor",
|
||||
"connectionStatusDisconnecting": "Bağlantı kesiliyor...",
|
||||
"connectionStatusDisconnected": "Bağlantı kesildi",
|
||||
"connectionStatusConnected": "Bağlandı",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Çalışma Süresi",
|
||||
"maxDown": "Max. Down",
|
||||
"maxUp": "Max. Up",
|
||||
"maxDown": "Max. Indirme",
|
||||
"maxUp": "Max. Gönderme",
|
||||
"down": "İndirme",
|
||||
"up": "Yükleme",
|
||||
"received": "Alınan",
|
||||
"sent": "Gönderilen",
|
||||
"externalIPAddress": "Ext. IP"
|
||||
"externalIPAddress": "Harici IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "Akış",
|
||||
@@ -169,7 +170,7 @@
|
||||
"transcoding": "Dönüştürülüyor",
|
||||
"bitrate": "Bit Oranı",
|
||||
"no_active": "Aktif akış yok",
|
||||
"plex_connection_error": "Check Plex Connection"
|
||||
"plex_connection_error": "Plex Bağlantısı Kontrol Ediliyor"
|
||||
},
|
||||
"omada": {
|
||||
"connectedAp": "Bağlı AP'ler",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "Onaylı",
|
||||
"available": "Kullanılabilir"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Toplam",
|
||||
"connected": "Bağlandı",
|
||||
"new_devices": "Yeni Cihazlar",
|
||||
"down_alerts": "Düşme Uyarıları"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Sorgular",
|
||||
@@ -426,7 +427,7 @@
|
||||
"custom": "Özel",
|
||||
"visit": "Ziyaret",
|
||||
"url": "URL",
|
||||
"searchsuggestion": "Suggestion"
|
||||
"searchsuggestion": "Öneri"
|
||||
},
|
||||
"wmo": {
|
||||
"0-day": "Güneşli",
|
||||
@@ -498,14 +499,14 @@
|
||||
"down": "İndirme"
|
||||
},
|
||||
"healthchecks": {
|
||||
"new": "New",
|
||||
"new": "Yeni",
|
||||
"up": "Yükleme",
|
||||
"grace": "In Grace Period",
|
||||
"grace": "Tolerans Döneminde",
|
||||
"down": "İndirme",
|
||||
"paused": "Paused",
|
||||
"paused": "Durduruldu",
|
||||
"status": "Durum",
|
||||
"last_ping": "Son Ping",
|
||||
"never": "No pings yet"
|
||||
"never": "Henüz ping yok"
|
||||
},
|
||||
"watchtower": {
|
||||
"containers_scanned": "Tarandı",
|
||||
@@ -543,14 +544,14 @@
|
||||
"hdhomerun": {
|
||||
"channels": "Kanallar",
|
||||
"hd": "HD",
|
||||
"tunerCount": "Tuners",
|
||||
"channelNumber": "Channel",
|
||||
"channelNetwork": "Network",
|
||||
"signalStrength": "Strength",
|
||||
"signalQuality": "Quality",
|
||||
"symbolQuality": "Quality",
|
||||
"tunerCount": "Ayarlayıcılar",
|
||||
"channelNumber": "Kanal",
|
||||
"channelNetwork": "Ağ",
|
||||
"signalStrength": "Sağlamlık",
|
||||
"signalQuality": "Kalite",
|
||||
"symbolQuality": "Kalite",
|
||||
"networkRate": "Bit Oranı",
|
||||
"clientIP": "Client"
|
||||
"clientIP": "Alıcı"
|
||||
},
|
||||
"scrutiny": {
|
||||
"passed": "Geçti",
|
||||
@@ -563,11 +564,11 @@
|
||||
},
|
||||
"peanut": {
|
||||
"battery_charge": "Pil Yüzdesi",
|
||||
"ups_load": "UPS Load",
|
||||
"ups_status": "UPS Status",
|
||||
"ups_load": "UPS Yükü",
|
||||
"ups_status": "UPS Durumu",
|
||||
"online": "Çevrimiçi",
|
||||
"on_battery": "Pilde",
|
||||
"low_battery": "Low Battery"
|
||||
"low_battery": "Düşük Pil"
|
||||
},
|
||||
"nextdns": {
|
||||
"wait": "Lütfen Bekleyin",
|
||||
@@ -577,7 +578,7 @@
|
||||
"cpuLoad": "CPU Yükü",
|
||||
"memoryUsed": "Bellek Kullanımı",
|
||||
"uptime": "Çalışma Süresi",
|
||||
"numberOfLeases": "Leases"
|
||||
"numberOfLeases": "Kiralama"
|
||||
},
|
||||
"xteve": {
|
||||
"streams_all": "Tüm Akışlar",
|
||||
@@ -585,9 +586,9 @@
|
||||
"streams_xepg": "XEPG Kanalları"
|
||||
},
|
||||
"opendtu": {
|
||||
"yieldDay": "Today",
|
||||
"absolutePower": "Power",
|
||||
"relativePower": "Power %",
|
||||
"yieldDay": "Bugün",
|
||||
"absolutePower": "Güç",
|
||||
"relativePower": "Güç %",
|
||||
"limit": "Limit"
|
||||
},
|
||||
"opnsense": {
|
||||
@@ -606,25 +607,25 @@
|
||||
"printer_state": "Durum",
|
||||
"temp_tool": "Araç sıcaklığı",
|
||||
"temp_bed": "Yatak sıcaklığı",
|
||||
"job_completion": "Completion"
|
||||
"job_completion": "Tamamlanma"
|
||||
},
|
||||
"cloudflared": {
|
||||
"origin_ip": "Origin IP",
|
||||
"origin_ip": "Gerçek IP",
|
||||
"status": "Durum"
|
||||
},
|
||||
"pfsense": {
|
||||
"load": "Load Avg",
|
||||
"memory": "Mem Usage",
|
||||
"wanStatus": "WAN Status",
|
||||
"load": "Ort. Yükleme",
|
||||
"memory": "Bellek Kullanımı",
|
||||
"wanStatus": "WAN Durumu",
|
||||
"up": "Yükleme",
|
||||
"down": "İndirme",
|
||||
"temp": "Sıcaklık",
|
||||
"disk": "Disk Usage",
|
||||
"disk": "Disk Kullanımı",
|
||||
"wanIP": "WAN IP"
|
||||
},
|
||||
"proxmoxbackupserver": {
|
||||
"datastore_usage": "Datastore",
|
||||
"failed_tasks_24h": "Failed Tasks 24h",
|
||||
"datastore_usage": "Veri deposu",
|
||||
"failed_tasks_24h": "Başarısız Görevler 24h",
|
||||
"cpu_usage": "CPU",
|
||||
"memory_usage": "Bellek"
|
||||
},
|
||||
@@ -638,14 +639,14 @@
|
||||
"up": "Sites Up",
|
||||
"down": "Sites Down",
|
||||
"uptime": "Çalışma Süresi",
|
||||
"incident": "Incident",
|
||||
"incident": "Olay",
|
||||
"m": "dk"
|
||||
},
|
||||
"atsumeru": {
|
||||
"series": "Diziler",
|
||||
"archives": "Archives",
|
||||
"chapters": "Chapters",
|
||||
"categories": "Categories"
|
||||
"archives": "Arşivler",
|
||||
"chapters": "Bölümler",
|
||||
"categories": "Kategoriler"
|
||||
},
|
||||
"komga": {
|
||||
"libraries": "Kütüphane",
|
||||
@@ -672,42 +673,42 @@
|
||||
"queue": "Kuyruk",
|
||||
"processing": "İşleniyor",
|
||||
"processed": "İşlendi",
|
||||
"time": "Time"
|
||||
"time": "Zaman"
|
||||
},
|
||||
"grafana": {
|
||||
"dashboards": "Dashboards",
|
||||
"datasources": "Data Sources",
|
||||
"totalalerts": "Total Alerts",
|
||||
"alertstriggered": "Alerts Triggered"
|
||||
"dashboards": "Kontrol Paneli",
|
||||
"datasources": "Veri Kaynakları",
|
||||
"totalalerts": "Toplam Uyarılar",
|
||||
"alertstriggered": "Uyarılar Tetiklendi"
|
||||
},
|
||||
"nextcloud": {
|
||||
"cpuload": "Cpu Load",
|
||||
"memoryusage": "Memory Usage",
|
||||
"freespace": "Free Space",
|
||||
"activeusers": "Active Users",
|
||||
"numfiles": "Files",
|
||||
"numshares": "Shared Items"
|
||||
"cpuload": "Cpu Yükü",
|
||||
"memoryusage": "Bellek Kullanımı",
|
||||
"freespace": "Boş Alan",
|
||||
"activeusers": "Aktif Kullanıcılar",
|
||||
"numfiles": "Dosyalar",
|
||||
"numshares": "Paylaşılan Öğeler"
|
||||
},
|
||||
"kopia": {
|
||||
"status": "Durum",
|
||||
"size": "Size",
|
||||
"lastrun": "Last Run",
|
||||
"nextrun": "Next Run",
|
||||
"size": "Boyut",
|
||||
"lastrun": "Son Çalışma",
|
||||
"nextrun": "Sonraki Çalışma",
|
||||
"failed": "Başarısız"
|
||||
},
|
||||
"unmanic": {
|
||||
"active_workers": "Active Workers",
|
||||
"total_workers": "Total Workers",
|
||||
"records_total": "Queue Length"
|
||||
"active_workers": "Aktif Kullanıcılar",
|
||||
"total_workers": "Toplam Kullanıcılar",
|
||||
"records_total": "Sıra Uzunluğu"
|
||||
},
|
||||
"pterodactyl": {
|
||||
"servers": "Servers",
|
||||
"nodes": "Nodes"
|
||||
"servers": "Sunucular",
|
||||
"nodes": "Düğümler"
|
||||
},
|
||||
"prometheus": {
|
||||
"targets_up": "Targets Up",
|
||||
"targets_down": "Targets Down",
|
||||
"targets_total": "Total Targets"
|
||||
"targets_total": "Toplam Hedef"
|
||||
},
|
||||
"gatus": {
|
||||
"up": "Sites Up",
|
||||
@@ -715,50 +716,50 @@
|
||||
"uptime": "Çalışma Süresi"
|
||||
},
|
||||
"ghostfolio": {
|
||||
"gross_percent_today": "Today",
|
||||
"gross_percent_1y": "One year",
|
||||
"gross_percent_max": "All time"
|
||||
"gross_percent_today": "Bugün",
|
||||
"gross_percent_1y": "Bir yıl",
|
||||
"gross_percent_max": "Tüm zaman"
|
||||
},
|
||||
"audiobookshelf": {
|
||||
"podcasts": "Podcasts",
|
||||
"podcasts": "Podcast",
|
||||
"books": "Kitaplar",
|
||||
"podcastsDuration": "Duration",
|
||||
"booksDuration": "Duration"
|
||||
"podcastsDuration": "Süre",
|
||||
"booksDuration": "Süre"
|
||||
},
|
||||
"homeassistant": {
|
||||
"people_home": "People Home",
|
||||
"lights_on": "Lights On",
|
||||
"switches_on": "Switches On"
|
||||
"lights_on": "Işıklar Açık",
|
||||
"switches_on": "Aç"
|
||||
},
|
||||
"whatsupdocker": {
|
||||
"monitoring": "Monitoring",
|
||||
"monitoring": "İzleme",
|
||||
"updates": "Güncellemeler"
|
||||
},
|
||||
"calibreweb": {
|
||||
"books": "Kitaplar",
|
||||
"authors": "Authors",
|
||||
"categories": "Categories",
|
||||
"authors": "Yazarlar",
|
||||
"categories": "Kategoriler",
|
||||
"series": "Diziler"
|
||||
},
|
||||
"jdownloader": {
|
||||
"downloadCount": "Kuyruk",
|
||||
"downloadBytesRemaining": "Kalan",
|
||||
"downloadTotalBytes": "Size",
|
||||
"downloadTotalBytes": "Boyut",
|
||||
"downloadSpeed": "Hız"
|
||||
},
|
||||
"kavita": {
|
||||
"seriesCount": "Diziler",
|
||||
"totalFiles": "Files"
|
||||
"totalFiles": "Dosyalar"
|
||||
},
|
||||
"azuredevops": {
|
||||
"result": "Result",
|
||||
"result": "Sonuç",
|
||||
"status": "Durum",
|
||||
"buildId": "Build ID",
|
||||
"succeeded": "Succeeded",
|
||||
"notStarted": "Not Started",
|
||||
"succeeded": "Başarılı",
|
||||
"notStarted": "Henüz Başlamadı",
|
||||
"failed": "Başarısız",
|
||||
"canceled": "Canceled",
|
||||
"inProgress": "In Progress",
|
||||
"canceled": "İptal edildi",
|
||||
"inProgress": "Sürüyor",
|
||||
"totalPrs": "Total PRs",
|
||||
"myPrs": "My PRs",
|
||||
"approved": "Onaylı"
|
||||
@@ -767,28 +768,28 @@
|
||||
"status": "Durum",
|
||||
"online": "Çevrimiçi",
|
||||
"offline": "Çevrimdışı",
|
||||
"name": "Name",
|
||||
"map": "Map",
|
||||
"currentPlayers": "Current players",
|
||||
"name": "İsim",
|
||||
"map": "Harita",
|
||||
"currentPlayers": "Mevcut oyuncular",
|
||||
"players": "Oyuncular",
|
||||
"maxPlayers": "Max players",
|
||||
"bots": "Bots",
|
||||
"maxPlayers": "Maks. oyuncu",
|
||||
"bots": "Botlar",
|
||||
"ping": "Gecikme"
|
||||
},
|
||||
"urbackup": {
|
||||
"ok": "Ok",
|
||||
"errored": "Errors",
|
||||
"noRecent": "Out of Date",
|
||||
"totalUsed": "Used Storage"
|
||||
"ok": "Tamam",
|
||||
"errored": "Hatalar",
|
||||
"noRecent": "Tarihi geçmiş",
|
||||
"totalUsed": "Kullanılan depolama alanı"
|
||||
},
|
||||
"mealie": {
|
||||
"recipes": "Recipes",
|
||||
"recipes": "Tarifler",
|
||||
"users": "Kullanıcılar",
|
||||
"categories": "Categories",
|
||||
"tags": "Tags"
|
||||
"categories": "Kategoriler",
|
||||
"tags": "Etiketler"
|
||||
},
|
||||
"openmediavault": {
|
||||
"downloading": "Downloading",
|
||||
"downloading": "İndiriliyor",
|
||||
"total": "Toplam",
|
||||
"running": "Çalışan",
|
||||
"stopped": "Durduruldu",
|
||||
@@ -797,71 +798,83 @@
|
||||
},
|
||||
"openwrt": {
|
||||
"uptime": "Çalışma Süresi",
|
||||
"cpuLoad": "CPU Load Avg (5m)",
|
||||
"cpuLoad": "CPU Yükü Ortalaması (5dk)",
|
||||
"up": "Yükleme",
|
||||
"down": "İndirme",
|
||||
"bytesTx": "Transmitted",
|
||||
"bytesTx": "İletilen",
|
||||
"bytesRx": "Alınan"
|
||||
},
|
||||
"uptimerobot": {
|
||||
"status": "Durum",
|
||||
"uptime": "Çalışma Süresi",
|
||||
"lastDown": "Last Downtime",
|
||||
"downDuration": "Downtime Duration",
|
||||
"lastDown": "Son Kesinti",
|
||||
"downDuration": "Kesinti Süresi",
|
||||
"sitesUp": "Sites Up",
|
||||
"sitesDown": "Sites Down",
|
||||
"paused": "Paused",
|
||||
"notyetchecked": "Not Yet Checked",
|
||||
"paused": "Durduruldu",
|
||||
"notyetchecked": "Henüz Kontrol Edilmedi",
|
||||
"up": "Yükleme",
|
||||
"seemsdown": "Seems Down",
|
||||
"seemsdown": "Kapalı görünüyor",
|
||||
"down": "İndirme",
|
||||
"unknown": "Bilinmiyor"
|
||||
},
|
||||
"calendar": {
|
||||
"inCinemas": "In cinemas",
|
||||
"physicalRelease": "Physical release",
|
||||
"digitalRelease": "Digital release",
|
||||
"noEventsToday": "No events for today!",
|
||||
"noEventsFound": "No events found"
|
||||
"inCinemas": "Sinemalarda",
|
||||
"physicalRelease": "Fiziksel Yayınlanan",
|
||||
"digitalRelease": "Dijital Yayınlanan",
|
||||
"noEventsToday": "Bugün için etkinlik yok!",
|
||||
"noEventsFound": "Etkinlik bulunamadı"
|
||||
},
|
||||
"romm": {
|
||||
"platforms": "Platforms",
|
||||
"totalRoms": "Total ROMs"
|
||||
"platforms": "Platformlar",
|
||||
"totalRoms": "Toplam ROM'lar"
|
||||
},
|
||||
"netdata": {
|
||||
"warnings": "Warnings",
|
||||
"criticals": "Criticals"
|
||||
"warnings": "Uyarılar",
|
||||
"criticals": "Kritik"
|
||||
},
|
||||
"plantit": {
|
||||
"events": "Events",
|
||||
"events": "Etkinlikler",
|
||||
"plants": "Plants",
|
||||
"photos": "Fotoğraflar",
|
||||
"species": "Species"
|
||||
"species": "Türler"
|
||||
},
|
||||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"notifications": "Bildirimler",
|
||||
"issues": "Sorunlar",
|
||||
"pulls": "Pull Requests"
|
||||
"pulls": "Değişiklik İstekleri"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
"scenesPlayed": "Scenes Played",
|
||||
"playCount": "Total Plays",
|
||||
"playDuration": "Time Watched",
|
||||
"sceneSize": "Scenes Size",
|
||||
"sceneDuration": "Scenes Duration",
|
||||
"images": "Images",
|
||||
"imageSize": "Images Size",
|
||||
"galleries": "Galleries",
|
||||
"scenes": "Sahneler",
|
||||
"scenesPlayed": "Oynanan Sahneler",
|
||||
"playCount": "Toplam Oynatma",
|
||||
"playDuration": "İzlenen Süre",
|
||||
"sceneSize": "Sahne Boyutu",
|
||||
"sceneDuration": "Sahne Süresi",
|
||||
"images": "Görseller",
|
||||
"imageSize": "Görsel Boyutu",
|
||||
"galleries": "Galeriler",
|
||||
"performers": "Performers",
|
||||
"studios": "Studios",
|
||||
"studios": "Stüdyolar",
|
||||
"movies": "Filmler",
|
||||
"tags": "Tags",
|
||||
"tags": "Etiketler",
|
||||
"oCount": "O Count"
|
||||
},
|
||||
"tandoor": {
|
||||
"users": "Kullanıcılar",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
"recipes": "Tarifler",
|
||||
"keywords": "Anahtar Sözcükler"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Ögeler",
|
||||
"totalWithWarranty": "Garantili",
|
||||
"locations": "Konum",
|
||||
"labels": "Etiketler",
|
||||
"users": "Kullanıcılar",
|
||||
"totalValue": "Toplam Değer"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alarmlar",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Офлайн",
|
||||
"offline_alt": "Офлайн",
|
||||
"online": "Онлайн",
|
||||
"total": "Усього",
|
||||
"unknown": "Невідомий"
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "Pending Disconnect",
|
||||
"connectionStatusDisconnecting": "Disconnecting",
|
||||
"connectionStatusDisconnected": "Disconnected",
|
||||
"connectionStatusConnected": "Підключено",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "Час роботи",
|
||||
"maxDown": "Max. Down",
|
||||
"maxUp": "Max. Up",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "Затверджено",
|
||||
"available": "Доступно"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Усього",
|
||||
"connected": "Підключено",
|
||||
"new_devices": "Нові пристрої",
|
||||
"down_alerts": "Сповіщення про збій"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "Запити",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Користувачі",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Користувачі",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Оповіщення",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "Ngoại tuyến",
|
||||
"offline_alt": "Ngoại tuyến",
|
||||
"online": "Online",
|
||||
"total": "Tổng",
|
||||
"unknown": "Unknown"
|
||||
@@ -276,7 +277,7 @@
|
||||
"approved": "Đã duyệt",
|
||||
"available": "Available"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "Tổng",
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
@@ -863,5 +864,17 @@
|
||||
"users": "Users",
|
||||
"recipes": "Recipes",
|
||||
"keywords": "Keywords"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "Items",
|
||||
"totalWithWarranty": "With Warranty",
|
||||
"locations": "Locations",
|
||||
"labels": "Labels",
|
||||
"users": "Users",
|
||||
"totalValue": "Total Value"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "Alerts",
|
||||
"bans": "Bans"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "離線",
|
||||
"offline_alt": "離線",
|
||||
"online": "在線",
|
||||
"total": "全部",
|
||||
"unknown": "未知"
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "待辦的斷開",
|
||||
"connectionStatusDisconnecting": "正在中斷連線",
|
||||
"connectionStatusDisconnected": "連接已中斷",
|
||||
"connectionStatusConnected": "已連線",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "運行時間",
|
||||
"maxDown": "最大下載速率",
|
||||
"maxUp": "最大上傳速率",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "批准",
|
||||
"available": "可用"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "全部",
|
||||
"connected": "已連線",
|
||||
"new_devices": "新裝置",
|
||||
"down_alerts": "離線警告"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "查詢",
|
||||
@@ -857,11 +858,23 @@
|
||||
"studios": "工作室",
|
||||
"movies": "電影",
|
||||
"tags": "標籤",
|
||||
"oCount": "O Count"
|
||||
"oCount": "0 個"
|
||||
},
|
||||
"tandoor": {
|
||||
"users": "使用者",
|
||||
"recipes": "食譜",
|
||||
"keywords": "Keywords"
|
||||
"keywords": "關鍵字"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "項目",
|
||||
"totalWithWarranty": "有保証",
|
||||
"locations": "位置",
|
||||
"labels": "標籤",
|
||||
"users": "使用者",
|
||||
"totalValue": "總共"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "警示",
|
||||
"bans": "禁止"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -54,13 +54,13 @@
|
||||
"uptime": "运行时间",
|
||||
"days": "天",
|
||||
"wan": "WAN",
|
||||
"lan": "LAN",
|
||||
"wlan": "WLAN",
|
||||
"lan": "局域网",
|
||||
"wlan": "无线局域网",
|
||||
"devices": "设备",
|
||||
"lan_devices": "LAN设备",
|
||||
"lan_devices": "有线设备",
|
||||
"wlan_devices": "WLAN 设备",
|
||||
"lan_users": "LAN 用户",
|
||||
"wlan_users": "WLAN 用户",
|
||||
"lan_users": "有线用户",
|
||||
"wlan_users": "无线用户",
|
||||
"up": "运行时间",
|
||||
"down": "离线",
|
||||
"wait": "请稍候",
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "离线",
|
||||
"offline_alt": "离线",
|
||||
"online": "在线",
|
||||
"total": "总计",
|
||||
"unknown": "未知"
|
||||
@@ -139,15 +140,15 @@
|
||||
"connectionStatusPendingDisconnect": "等待断开连接",
|
||||
"connectionStatusDisconnecting": "正在断开连接",
|
||||
"connectionStatusDisconnected": "未连接",
|
||||
"connectionStatusConnected": "已连接",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "运行时间",
|
||||
"maxDown": "",
|
||||
"maxDown": "最大下载速度",
|
||||
"maxUp": "",
|
||||
"down": "离线",
|
||||
"up": "在线",
|
||||
"received": "已接收",
|
||||
"received": "最大上传数",
|
||||
"sent": "已发送",
|
||||
"externalIPAddress": "Ext. IP"
|
||||
"externalIPAddress": "外部IP"
|
||||
},
|
||||
"caddy": {
|
||||
"upstreams": "上行",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "已批准",
|
||||
"available": "可用"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "总计",
|
||||
"connected": "已连接",
|
||||
"new_devices": "新设备",
|
||||
"down_alerts": "离线警报"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "查询",
|
||||
@@ -543,8 +544,8 @@
|
||||
"hdhomerun": {
|
||||
"channels": "频道",
|
||||
"hd": "HD",
|
||||
"tunerCount": "Tuners",
|
||||
"channelNumber": "Channel",
|
||||
"tunerCount": "电台数",
|
||||
"channelNumber": "频道数",
|
||||
"channelNetwork": "网络",
|
||||
"signalStrength": "强度",
|
||||
"signalQuality": "质量",
|
||||
@@ -801,7 +802,7 @@
|
||||
"up": "在线",
|
||||
"down": "离线",
|
||||
"bytesTx": "已传输",
|
||||
"bytesRx": "已接收"
|
||||
"bytesRx": "最大上传数"
|
||||
},
|
||||
"uptimerobot": {
|
||||
"status": "状态",
|
||||
@@ -833,35 +834,47 @@
|
||||
"criticals": "严重"
|
||||
},
|
||||
"plantit": {
|
||||
"events": "Events",
|
||||
"plants": "Plants",
|
||||
"events": "事件",
|
||||
"plants": "植物",
|
||||
"photos": "照片",
|
||||
"species": "Species"
|
||||
"species": "物种"
|
||||
},
|
||||
"gitea": {
|
||||
"notifications": "Notifications",
|
||||
"notifications": "通知",
|
||||
"issues": "出版",
|
||||
"pulls": "Pull Requests"
|
||||
"pulls": "PR"
|
||||
},
|
||||
"stash": {
|
||||
"scenes": "Scenes",
|
||||
"scenesPlayed": "Scenes Played",
|
||||
"playCount": "Total Plays",
|
||||
"playDuration": "Time Watched",
|
||||
"sceneSize": "Scenes Size",
|
||||
"sceneDuration": "Scenes Duration",
|
||||
"images": "Images",
|
||||
"imageSize": "Images Size",
|
||||
"galleries": "Galleries",
|
||||
"performers": "Performers",
|
||||
"studios": "Studios",
|
||||
"scenes": "场景",
|
||||
"scenesPlayed": "已播放场景",
|
||||
"playCount": "播放总数",
|
||||
"playDuration": "播放时间",
|
||||
"sceneSize": "场景大小",
|
||||
"sceneDuration": "场景时长",
|
||||
"images": "图片",
|
||||
"imageSize": "图像大小",
|
||||
"galleries": "图库",
|
||||
"performers": "演员",
|
||||
"studios": "工作室",
|
||||
"movies": "电影",
|
||||
"tags": "标签",
|
||||
"oCount": "O Count"
|
||||
"oCount": "O 个"
|
||||
},
|
||||
"tandoor": {
|
||||
"users": "用户数",
|
||||
"recipes": "食谱",
|
||||
"keywords": "Keywords"
|
||||
"keywords": "关键词"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "条目",
|
||||
"totalWithWarranty": "有保证",
|
||||
"locations": "位置",
|
||||
"labels": "标签",
|
||||
"users": "用户数",
|
||||
"totalValue": "总计"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "警告",
|
||||
"bans": "禁用"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
"uptime": "運作時間"
|
||||
},
|
||||
"unifi": {
|
||||
"users": "使用者",
|
||||
"users": "用戶",
|
||||
"uptime": "運行時間",
|
||||
"days": "天",
|
||||
"wan": "WAN",
|
||||
@@ -109,6 +109,7 @@
|
||||
},
|
||||
"esphome": {
|
||||
"offline": "離線",
|
||||
"offline_alt": "離線",
|
||||
"online": "在線",
|
||||
"total": "全部",
|
||||
"unknown": "未知"
|
||||
@@ -139,7 +140,7 @@
|
||||
"connectionStatusPendingDisconnect": "待辦的斷開",
|
||||
"connectionStatusDisconnecting": "正在中斷連線",
|
||||
"connectionStatusDisconnected": "連接已中斷",
|
||||
"connectionStatusConnected": "已連線",
|
||||
"connectionStatusConnected": "Connected",
|
||||
"uptime": "運行時間",
|
||||
"maxDown": "最大下載速率",
|
||||
"maxUp": "最大上傳速率",
|
||||
@@ -276,11 +277,11 @@
|
||||
"approved": "已核准",
|
||||
"available": "可觀看"
|
||||
},
|
||||
"pialert": {
|
||||
"netalertx": {
|
||||
"total": "全部",
|
||||
"connected": "已連線",
|
||||
"new_devices": "新裝置",
|
||||
"down_alerts": "離線警告"
|
||||
"connected": "Connected",
|
||||
"new_devices": "New Devices",
|
||||
"down_alerts": "Down Alerts"
|
||||
},
|
||||
"pihole": {
|
||||
"queries": "查詢",
|
||||
@@ -368,7 +369,7 @@
|
||||
"transferRate": "速率"
|
||||
},
|
||||
"mastodon": {
|
||||
"user_count": "使用者",
|
||||
"user_count": "用戶",
|
||||
"status_count": "文章",
|
||||
"domain_count": "網域"
|
||||
},
|
||||
@@ -389,7 +390,7 @@
|
||||
"unread": "未讀"
|
||||
},
|
||||
"authentik": {
|
||||
"users": "使用者",
|
||||
"users": "用戶",
|
||||
"loginsLast24H": "登入 (過去 24 小時)",
|
||||
"failedLoginsLast24H": "登入失敗 (過去 24 小時)"
|
||||
},
|
||||
@@ -629,7 +630,7 @@
|
||||
"memory_usage": "記憶體"
|
||||
},
|
||||
"immich": {
|
||||
"users": "使用者",
|
||||
"users": "用戶",
|
||||
"photos": "照片",
|
||||
"videos": "影片",
|
||||
"storage": "儲存空間"
|
||||
@@ -783,7 +784,7 @@
|
||||
},
|
||||
"mealie": {
|
||||
"recipes": "食譜",
|
||||
"users": "使用者",
|
||||
"users": "用戶",
|
||||
"categories": "類別",
|
||||
"tags": "標籤"
|
||||
},
|
||||
@@ -857,11 +858,23 @@
|
||||
"studios": "工作室",
|
||||
"movies": "電影",
|
||||
"tags": "標籤",
|
||||
"oCount": "O Count"
|
||||
"oCount": "0 個"
|
||||
},
|
||||
"tandoor": {
|
||||
"users": "使用者",
|
||||
"users": "用戶",
|
||||
"recipes": "食譜",
|
||||
"keywords": "Keywords"
|
||||
"keywords": "關鍵字"
|
||||
},
|
||||
"homebox": {
|
||||
"items": "項目",
|
||||
"totalWithWarranty": "有保証",
|
||||
"locations": "位置",
|
||||
"labels": "標籤",
|
||||
"users": "用戶",
|
||||
"totalValue": "總共"
|
||||
},
|
||||
"crowdsec": {
|
||||
"alerts": "警示",
|
||||
"bans": "禁止"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@ export default function SiteMonitor({ group, service, style }) {
|
||||
let statusTitle = t("siteMonitor.http_status");
|
||||
let statusText = "";
|
||||
|
||||
if (error) {
|
||||
if (error || (data && data.error)) {
|
||||
colorClass = "text-rose-500";
|
||||
statusText = t("siteMonitor.error");
|
||||
statusTitle += ` ${t("siteMonitor.error")}`;
|
||||
|
||||
@@ -3,13 +3,19 @@ import classNames from "classnames";
|
||||
|
||||
import { TabContext } from "utils/contexts/tab";
|
||||
|
||||
export function slugify(tabName) {
|
||||
return tabName !== undefined ? encodeURIComponent(tabName.toString().replace(/\s+/g, "-").toLowerCase()) : "";
|
||||
function slugify(tabName) {
|
||||
return tabName.toString().replace(/\s+/g, "-").toLowerCase();
|
||||
}
|
||||
|
||||
export function slugifyAndEncode(tabName) {
|
||||
return tabName !== undefined ? encodeURIComponent(slugify(tabName)) : "";
|
||||
}
|
||||
|
||||
export default function Tab({ tab }) {
|
||||
const { activeTab, setActiveTab } = useContext(TabContext);
|
||||
|
||||
const matchesTab = decodeURI(activeTab) === slugify(tab);
|
||||
|
||||
return (
|
||||
<li
|
||||
key={tab}
|
||||
@@ -21,16 +27,14 @@ export default function Tab({ tab }) {
|
||||
type="button"
|
||||
role="tab"
|
||||
aria-controls={`#${tab}`}
|
||||
aria-selected={activeTab === slugify(tab) ? "true" : "false"}
|
||||
aria-selected={matchesTab ? "true" : "false"}
|
||||
className={classNames(
|
||||
"w-full rounded-md m-1",
|
||||
activeTab === slugify(tab)
|
||||
? "bg-theme-300/20 dark:bg-white/10"
|
||||
: "hover:bg-theme-100/20 dark:hover:bg-white/5",
|
||||
matchesTab ? "bg-theme-300/20 dark:bg-white/10" : "hover:bg-theme-100/20 dark:hover:bg-white/5",
|
||||
)}
|
||||
onClick={() => {
|
||||
setActiveTab(slugify(tab));
|
||||
window.location.hash = `#${slugify(tab)}`;
|
||||
setActiveTab(slugifyAndEncode(tab));
|
||||
window.location.hash = `#${slugifyAndEncode(tab)}`;
|
||||
}}
|
||||
>
|
||||
{tab}
|
||||
|
||||
@@ -84,8 +84,6 @@ export default function OpenMeteo({ options }) {
|
||||
}
|
||||
};
|
||||
|
||||
// if (!requesting && !location) requestLocation();
|
||||
|
||||
if (!location) {
|
||||
return (
|
||||
<ContainerButton
|
||||
|
||||
@@ -2,11 +2,7 @@ import { getAllClasses, getInnerBlock, getBottomBlock } from "./container";
|
||||
|
||||
export default function ContainerForm({ children = [], options, additionalClassNames = "", callback }) {
|
||||
return (
|
||||
<form
|
||||
type="button"
|
||||
onSubmit={callback}
|
||||
className={`${getAllClasses(options, additionalClassNames)} information-widget-form`}
|
||||
>
|
||||
<form onSubmit={callback} className={`${getAllClasses(options, additionalClassNames)} information-widget-form`}>
|
||||
{getInnerBlock(children)}
|
||||
{getBottomBlock(children)}
|
||||
</form>
|
||||
|
||||
@@ -13,7 +13,7 @@ async function retrieveFromGlancesAPI(privateWidgetOptions, endpoint) {
|
||||
throw new Error(errorMessage);
|
||||
}
|
||||
|
||||
const apiUrl = `${url}/api/3/${endpoint}`;
|
||||
const apiUrl = `${url}/api/${privateWidgetOptions.version}/${endpoint}`;
|
||||
const headers = {
|
||||
"Accept-Encoding": "application/json",
|
||||
};
|
||||
@@ -42,9 +42,10 @@ async function retrieveFromGlancesAPI(privateWidgetOptions, endpoint) {
|
||||
}
|
||||
|
||||
export default async function handler(req, res) {
|
||||
const { index, cputemp: includeCpuTemp, uptime: includeUptime, disk: includeDisks } = req.query;
|
||||
const { index, cputemp: includeCpuTemp, uptime: includeUptime, disk: includeDisks, version } = req.query;
|
||||
|
||||
const privateWidgetOptions = await getPrivateWidgetOptions("glances", index);
|
||||
privateWidgetOptions.version = version ?? 3;
|
||||
|
||||
try {
|
||||
const cpuData = await retrieveFromGlancesAPI(privateWidgetOptions, "cpu");
|
||||
|
||||
@@ -10,7 +10,7 @@ import { BiError } from "react-icons/bi";
|
||||
import { serverSideTranslations } from "next-i18next/serverSideTranslations";
|
||||
import { useRouter } from "next/router";
|
||||
|
||||
import Tab, { slugify } from "components/tab";
|
||||
import Tab, { slugifyAndEncode } from "components/tab";
|
||||
import ServicesGroup from "components/services/group";
|
||||
import BookmarksGroup from "components/bookmarks/group";
|
||||
import Widget from "components/widgets/widget";
|
||||
@@ -258,13 +258,13 @@ function Home({ initialSettings }) {
|
||||
|
||||
useEffect(() => {
|
||||
if (!activeTab) {
|
||||
const initialTab = decodeURI(asPath.substring(asPath.indexOf("#") + 1));
|
||||
setActiveTab(initialTab === "/" ? slugify(tabs["0"]) : initialTab);
|
||||
const initialTab = asPath.substring(asPath.indexOf("#") + 1);
|
||||
setActiveTab(initialTab === "/" ? slugifyAndEncode(tabs["0"]) : initialTab);
|
||||
}
|
||||
});
|
||||
|
||||
const servicesAndBookmarksGroups = useMemo(() => {
|
||||
const tabGroupFilter = (g) => g && [activeTab, ""].includes(slugify(settings.layout?.[g.name]?.tab));
|
||||
const tabGroupFilter = (g) => g && [activeTab, ""].includes(slugifyAndEncode(settings.layout?.[g.name]?.tab));
|
||||
const undefinedGroupFilter = (g) => settings.layout?.[g.name] === undefined;
|
||||
|
||||
const layoutGroups = Object.keys(settings.layout ?? {})
|
||||
|
||||
@@ -117,6 +117,8 @@ export async function servicesFromDocker() {
|
||||
|
||||
return { server: serverName, services: discovered.filter((filteredService) => filteredService) };
|
||||
} catch (e) {
|
||||
logger.error("Error getting services from Docker server '%s': %s", serverName, e);
|
||||
|
||||
// a server failed, but others may succeed
|
||||
return { server: serverName, services: [] };
|
||||
}
|
||||
@@ -391,6 +393,12 @@ export function cleanServiceGroups(groups) {
|
||||
enableBlocks,
|
||||
enableNowPlaying,
|
||||
|
||||
// emby, jellyfin, tautulli
|
||||
enableUser,
|
||||
|
||||
// glances, pihole
|
||||
version,
|
||||
|
||||
// glances
|
||||
chart,
|
||||
metric,
|
||||
@@ -445,6 +453,7 @@ export function cleanServiceGroups(groups) {
|
||||
|
||||
// truenas
|
||||
enablePools,
|
||||
nasType,
|
||||
|
||||
// unifi
|
||||
site,
|
||||
@@ -453,7 +462,7 @@ export function cleanServiceGroups(groups) {
|
||||
let fieldsList = fields;
|
||||
if (typeof fields === "string") {
|
||||
try {
|
||||
JSON.parse(fields);
|
||||
fieldsList = JSON.parse(fields);
|
||||
} catch (e) {
|
||||
logger.error("Invalid fields list detected in config for service '%s'", service.name);
|
||||
fieldsList = null;
|
||||
@@ -511,12 +520,21 @@ export function cleanServiceGroups(groups) {
|
||||
if (["emby", "jellyfin"].includes(type)) {
|
||||
if (enableBlocks !== undefined) cleanedService.widget.enableBlocks = JSON.parse(enableBlocks);
|
||||
if (enableNowPlaying !== undefined) cleanedService.widget.enableNowPlaying = JSON.parse(enableNowPlaying);
|
||||
if (enableUser !== undefined) {
|
||||
cleanedService.widget.enableUser = !!JSON.parse(enableUser);
|
||||
}
|
||||
}
|
||||
if (["tautulli"].includes(type)) {
|
||||
if (enableUser !== undefined) {
|
||||
cleanedService.widget.enableUser = !!JSON.parse(enableUser);
|
||||
}
|
||||
}
|
||||
if (["sonarr", "radarr"].includes(type)) {
|
||||
if (enableQueue !== undefined) cleanedService.widget.enableQueue = JSON.parse(enableQueue);
|
||||
}
|
||||
if (type === "truenas") {
|
||||
if (enablePools !== undefined) cleanedService.widget.enablePools = JSON.parse(enablePools);
|
||||
if (nasType !== undefined) cleanedService.widget.nasType = nasType;
|
||||
}
|
||||
if (["diskstation", "qnap"].includes(type)) {
|
||||
if (volume) cleanedService.widget.volume = volume;
|
||||
@@ -525,6 +543,9 @@ export function cleanServiceGroups(groups) {
|
||||
if (snapshotHost) cleanedService.widget.snapshotHost = snapshotHost;
|
||||
if (snapshotPath) cleanedService.widget.snapshotPath = snapshotPath;
|
||||
}
|
||||
if (["glances", "pihole"].includes(type)) {
|
||||
if (version) cleanedService.widget.version = version;
|
||||
}
|
||||
if (type === "glances") {
|
||||
if (metric) cleanedService.widget.metric = metric;
|
||||
if (chart !== undefined) {
|
||||
|
||||
@@ -103,7 +103,7 @@ export async function httpProxy(url, params = {}) {
|
||||
|
||||
try {
|
||||
const [status, contentType, data, responseHeaders] = await request;
|
||||
return [status, contentType, data, responseHeaders];
|
||||
return [status, contentType, data, responseHeaders, params];
|
||||
} catch (err) {
|
||||
logger.error(
|
||||
"Error calling %s//%s%s%s...",
|
||||
|
||||
@@ -15,6 +15,7 @@ const components = {
|
||||
channelsdvrserver: dynamic(() => import("./channelsdvrserver/component")),
|
||||
cloudflared: dynamic(() => import("./cloudflared/component")),
|
||||
coinmarketcap: dynamic(() => import("./coinmarketcap/component")),
|
||||
crowdsec: dynamic(() => import("./crowdsec/component")),
|
||||
iframe: dynamic(() => import("./iframe/component")),
|
||||
customapi: dynamic(() => import("./customapi/component")),
|
||||
deluge: dynamic(() => import("./deluge/component")),
|
||||
@@ -62,6 +63,7 @@ const components = {
|
||||
moonraker: dynamic(() => import("./moonraker/component")),
|
||||
mylar: dynamic(() => import("./mylar/component")),
|
||||
navidrome: dynamic(() => import("./navidrome/component")),
|
||||
netalertx: dynamic(() => import("./netalertx/component")),
|
||||
netdata: dynamic(() => import("./netdata/component")),
|
||||
nextcloud: dynamic(() => import("./nextcloud/component")),
|
||||
nextdns: dynamic(() => import("./nextdns/component")),
|
||||
@@ -79,7 +81,7 @@ const components = {
|
||||
pfsense: dynamic(() => import("./pfsense/component")),
|
||||
photoprism: dynamic(() => import("./photoprism/component")),
|
||||
proxmoxbackupserver: dynamic(() => import("./proxmoxbackupserver/component")),
|
||||
pialert: dynamic(() => import("./pialert/component")),
|
||||
pialert: dynamic(() => import("./netalertx/component")),
|
||||
pihole: dynamic(() => import("./pihole/component")),
|
||||
plantit: dynamic(() => import("./plantit/component")),
|
||||
plex: dynamic(() => import("./plex/component")),
|
||||
|
||||
34
src/widgets/crowdsec/component.jsx
Normal file
34
src/widgets/crowdsec/component.jsx
Normal file
@@ -0,0 +1,34 @@
|
||||
import { useTranslation } from "next-i18next";
|
||||
|
||||
import Container from "components/services/widget/container";
|
||||
import Block from "components/services/widget/block";
|
||||
import useWidgetAPI from "utils/proxy/use-widget-api";
|
||||
|
||||
export default function Component({ service }) {
|
||||
const { t } = useTranslation();
|
||||
|
||||
const { widget } = service;
|
||||
|
||||
const { data: alerts, error: alertsError } = useWidgetAPI(widget, "alerts");
|
||||
const { data: bans, error: bansError } = useWidgetAPI(widget, "bans");
|
||||
|
||||
if (alertsError || bansError) {
|
||||
return <Container service={service} error={alertsError ?? bansError} />;
|
||||
}
|
||||
|
||||
if (!alerts && !bans) {
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="crowdsec.alerts" />
|
||||
<Block label="crowdsec.bans" />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<Container service={service}>
|
||||
<Block label="crowdsec.alerts" value={t("common.number", { value: alerts?.length ?? 0 })} />
|
||||
<Block label="crowdsec.bans" value={t("common.number", { value: bans?.length ?? 0 })} />
|
||||
</Container>
|
||||
);
|
||||
}
|
||||
86
src/widgets/crowdsec/proxy.js
Normal file
86
src/widgets/crowdsec/proxy.js
Normal file
@@ -0,0 +1,86 @@
|
||||
import cache from "memory-cache";
|
||||
|
||||
import { httpProxy } from "utils/proxy/http";
|
||||
import { formatApiCall } from "utils/proxy/api-helpers";
|
||||
import getServiceWidget from "utils/config/service-helpers";
|
||||
import createLogger from "utils/logger";
|
||||
import widgets from "widgets/widgets";
|
||||
|
||||
const proxyName = "crowdsecProxyHandler";
|
||||
const logger = createLogger(proxyName);
|
||||
const sessionTokenCacheKey = `${proxyName}__sessionToken`;
|
||||
|
||||
async function login(widget, service) {
|
||||
const url = formatApiCall(widgets[widget.type].loginURL, widget);
|
||||
const [status, , data] = await httpProxy(url, {
|
||||
method: "POST",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
"User-Agent": "Mozilla/5.0", // Crowdsec requires a user-agent
|
||||
},
|
||||
body: JSON.stringify({
|
||||
machine_id: widget.username,
|
||||
password: widget.password,
|
||||
scenarios: [],
|
||||
}),
|
||||
});
|
||||
|
||||
const dataParsed = JSON.parse(data);
|
||||
|
||||
if (!(status === 200) || !dataParsed.token) {
|
||||
logger.error("Failed to login to Crowdsec API, status: %d", status);
|
||||
cache.del(`${sessionTokenCacheKey}.${service}`);
|
||||
}
|
||||
cache.put(`${sessionTokenCacheKey}.${service}`, dataParsed.token, new Date(dataParsed.expire) - new Date());
|
||||
}
|
||||
|
||||
export default async function crowdsecProxyHandler(req, res) {
|
||||
const { group, service, endpoint } = req.query;
|
||||
|
||||
if (!group || !service) {
|
||||
logger.error("Invalid or missing service '%s' or group '%s'", service, group);
|
||||
return res.status(400).json({ error: "Invalid proxy service type" });
|
||||
}
|
||||
|
||||
const widget = await getServiceWidget(group, service);
|
||||
if (!widget || !widgets[widget.type].api) {
|
||||
logger.error("Invalid or missing widget for service '%s' in group '%s'", service, group);
|
||||
return res.status(400).json({ error: "Invalid widget configuration" });
|
||||
}
|
||||
|
||||
if (!cache.get(`${sessionTokenCacheKey}.${service}`)) {
|
||||
await login(widget, service);
|
||||
}
|
||||
|
||||
const token = cache.get(`${sessionTokenCacheKey}.${service}`);
|
||||
if (!token) {
|
||||
return res.status(500).json({ error: "Failed to authenticate with Crowdsec" });
|
||||
}
|
||||
|
||||
const url = new URL(formatApiCall(widgets[widget.type].api, { endpoint, ...widget }));
|
||||
|
||||
try {
|
||||
const params = {
|
||||
method: "GET",
|
||||
headers: {
|
||||
"User-Agent": "Mozilla/5.0", // Crowdsec requires a user-agent
|
||||
"Content-Type": "application/json",
|
||||
Authorization: `Bearer ${token}`,
|
||||
},
|
||||
};
|
||||
|
||||
logger.debug("Calling Crowdsec API endpoint: %s", endpoint);
|
||||
|
||||
const [status, , data] = await httpProxy(url, params);
|
||||
|
||||
if (status !== 200) {
|
||||
logger.error("Error calling Crowdsec API: %d. Data: %s", status, data);
|
||||
return res.status(status).json({ error: "Crowdsec API Error", data });
|
||||
}
|
||||
|
||||
return res.status(status).send(data);
|
||||
} catch (error) {
|
||||
logger.error("Exception calling Crowdsec API: %s", error.message);
|
||||
return res.status(500).json({ error: "Crowdsec API Error", message: error.message });
|
||||
}
|
||||
}
|
||||
18
src/widgets/crowdsec/widget.js
Normal file
18
src/widgets/crowdsec/widget.js
Normal file
@@ -0,0 +1,18 @@
|
||||
import crowdsecProxyHandler from "./proxy";
|
||||
|
||||
const widget = {
|
||||
api: "{url}/v1/{endpoint}",
|
||||
loginURL: "{url}/v1/watchers/login",
|
||||
proxyHandler: crowdsecProxyHandler,
|
||||
|
||||
mappings: {
|
||||
alerts: {
|
||||
endpoint: "alerts",
|
||||
},
|
||||
bans: {
|
||||
endpoint: "alerts?decision_type=ban&origin=crowdsec&has_active_decision=1",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export default widget;
|
||||
@@ -27,10 +27,11 @@ function ticksToString(ticks) {
|
||||
return parts.map((part) => part.toString().padStart(2, "0")).join(":");
|
||||
}
|
||||
|
||||
function SingleSessionEntry({ playCommand, session }) {
|
||||
function SingleSessionEntry({ playCommand, session, enableUser }) {
|
||||
const {
|
||||
NowPlayingItem: { Name, SeriesName },
|
||||
PlayState: { PositionTicks, IsPaused, IsMuted },
|
||||
UserName,
|
||||
} = session;
|
||||
|
||||
const RunTimeTicks =
|
||||
@@ -49,6 +50,7 @@ function SingleSessionEntry({ playCommand, session }) {
|
||||
<div className="absolute w-full whitespace-nowrap text-ellipsis overflow-hidden">
|
||||
{Name}
|
||||
{SeriesName && ` - ${SeriesName}`}
|
||||
{enableUser && ` (${UserName})`}
|
||||
</div>
|
||||
</div>
|
||||
<div className="self-center text-xs flex justify-end mr-1.5 pl-1">
|
||||
@@ -97,10 +99,11 @@ function SingleSessionEntry({ playCommand, session }) {
|
||||
);
|
||||
}
|
||||
|
||||
function SessionEntry({ playCommand, session }) {
|
||||
function SessionEntry({ playCommand, session, enableUser }) {
|
||||
const {
|
||||
NowPlayingItem: { Name, SeriesName },
|
||||
PlayState: { PositionTicks, IsPaused, IsMuted },
|
||||
UserName,
|
||||
} = session;
|
||||
|
||||
const RunTimeTicks =
|
||||
@@ -142,6 +145,7 @@ function SessionEntry({ playCommand, session }) {
|
||||
<div className="absolute w-full whitespace-nowrap text-ellipsis overflow-hidden">
|
||||
{Name}
|
||||
{SeriesName && ` - ${SeriesName}`}
|
||||
{enableUser && ` (${UserName})`}
|
||||
</div>
|
||||
</div>
|
||||
<div className="self-center text-xs flex justify-end mr-1 z-10">{IsMuted && <BsVolumeMuteFill />}</div>
|
||||
@@ -215,6 +219,7 @@ export default function Component({ service }) {
|
||||
|
||||
const enableBlocks = service.widget?.enableBlocks;
|
||||
const enableNowPlaying = service.widget?.enableNowPlaying ?? true;
|
||||
const enableUser = !!service.widget?.enableUser;
|
||||
|
||||
if (!sessionsData || !countData) {
|
||||
return (
|
||||
@@ -272,6 +277,7 @@ export default function Component({ service }) {
|
||||
<SingleSessionEntry
|
||||
playCommand={(currentSession, command) => handlePlayCommand(currentSession, command)}
|
||||
session={session}
|
||||
enableUser={enableUser}
|
||||
/>
|
||||
</div>
|
||||
</>
|
||||
@@ -288,6 +294,7 @@ export default function Component({ service }) {
|
||||
key={session.Id}
|
||||
playCommand={(currentSession, command) => handlePlayCommand(currentSession, command)}
|
||||
session={session}
|
||||
enableUser={enableUser}
|
||||
/>
|
||||
))}
|
||||
</div>
|
||||
|
||||
@@ -19,6 +19,7 @@ export default function Component({ service }) {
|
||||
<Container service={service}>
|
||||
<Block label="esphome.online" />
|
||||
<Block label="esphome.offline" />
|
||||
<Block label="esphome.offline_alt" />
|
||||
<Block label="esphome.unknown" />
|
||||
<Block label="esphome.total" />
|
||||
</Container>
|
||||
@@ -27,6 +28,7 @@ export default function Component({ service }) {
|
||||
|
||||
const total = Object.keys(resultData).length;
|
||||
const online = Object.entries(resultData).filter(([, v]) => v === true).length;
|
||||
const notOnline = Object.entries(resultData).filter(([, v]) => v !== true).length;
|
||||
const offline = Object.entries(resultData).filter(([, v]) => v === false).length;
|
||||
const unknown = Object.entries(resultData).filter(([, v]) => v === null).length;
|
||||
|
||||
@@ -34,6 +36,7 @@ export default function Component({ service }) {
|
||||
<Container service={service}>
|
||||
<Block label="esphome.online" value={t("common.number", { value: online })} />
|
||||
<Block label="esphome.offline" value={t("common.number", { value: offline })} />
|
||||
<Block label="esphome.offline_alt" value={t("common.number", { value: notOnline })} />
|
||||
<Block label="esphome.unknown" value={t("common.number", { value: unknown })} />
|
||||
<Block label="esphome.total" value={t("common.number", { value: total })} />
|
||||
</Container>
|
||||
|
||||
@@ -16,15 +16,15 @@ const defaultInterval = 1000;
|
||||
export default function Component({ service }) {
|
||||
const { t } = useTranslation();
|
||||
const { widget } = service;
|
||||
const { chart, refreshInterval = defaultInterval, pointsLimit = defaultPointsLimit } = widget;
|
||||
const { chart, refreshInterval = defaultInterval, pointsLimit = defaultPointsLimit, version = 3 } = widget;
|
||||
|
||||
const [dataPoints, setDataPoints] = useState(new Array(pointsLimit).fill({ value: 0 }, 0, pointsLimit));
|
||||
|
||||
const { data, error } = useWidgetAPI(service.widget, "cpu", {
|
||||
const { data, error } = useWidgetAPI(service.widget, `${version}/cpu`, {
|
||||
refreshInterval: Math.max(defaultInterval, refreshInterval),
|
||||
});
|
||||
|
||||
const { data: systemData, error: systemError } = useWidgetAPI(service.widget, "system");
|
||||
const { data: quicklookData, error: quicklookError } = useWidgetAPI(service.widget, `${version}/quicklook`);
|
||||
|
||||
useEffect(() => {
|
||||
if (data) {
|
||||
@@ -71,22 +71,15 @@ export default function Component({ service }) {
|
||||
/>
|
||||
)}
|
||||
|
||||
{!chart && systemData && !systemError && (
|
||||
{!chart && quicklookData && !quicklookError && (
|
||||
<Block position="top-3 right-3">
|
||||
<div className="text-xs opacity-50">
|
||||
{systemData.linux_distro && `${systemData.linux_distro} - `}
|
||||
{systemData.os_version && systemData.os_version}
|
||||
</div>
|
||||
<div className="text-[0.6rem] opacity-50">{quicklookData.cpu_name && quicklookData.cpu_name}</div>
|
||||
</Block>
|
||||
)}
|
||||
|
||||
{systemData && !systemError && (
|
||||
{quicklookData && !quicklookError && (
|
||||
<Block position="bottom-3 left-3">
|
||||
{systemData.linux_distro && chart && <div className="text-xs opacity-50">{systemData.linux_distro}</div>}
|
||||
|
||||
{systemData.os_version && chart && <div className="text-xs opacity-50">{systemData.os_version}</div>}
|
||||
|
||||
{systemData.hostname && <div className="text-xs opacity-50">{systemData.hostname}</div>}
|
||||
{quicklookData.cpu_name && chart && <div className="text-xs opacity-50">{quicklookData.cpu_name}</div>}
|
||||
</Block>
|
||||
)}
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ const defaultInterval = 1000;
|
||||
export default function Component({ service }) {
|
||||
const { t } = useTranslation();
|
||||
const { widget } = service;
|
||||
const { chart, refreshInterval = defaultInterval, pointsLimit = defaultPointsLimit } = widget;
|
||||
const { chart, refreshInterval = defaultInterval, pointsLimit = defaultPointsLimit, version = 3 } = widget;
|
||||
const [, diskName] = widget.metric.split(":");
|
||||
|
||||
const [dataPoints, setDataPoints] = useState(
|
||||
@@ -24,7 +24,7 @@ export default function Component({ service }) {
|
||||
);
|
||||
const [ratePoints, setRatePoints] = useState(new Array(pointsLimit).fill({ a: 0, b: 0 }, 0, pointsLimit));
|
||||
|
||||
const { data, error } = useWidgetAPI(service.widget, "diskio", {
|
||||
const { data, error } = useWidgetAPI(service.widget, `${version}/diskio`, {
|
||||
refreshInterval: Math.max(defaultInterval, refreshInterval),
|
||||
});
|
||||
|
||||
|
||||
@@ -11,11 +11,11 @@ const defaultInterval = 1000;
|
||||
export default function Component({ service }) {
|
||||
const { t } = useTranslation();
|
||||
const { widget } = service;
|
||||
const { chart, refreshInterval = defaultInterval } = widget;
|
||||
const { chart, refreshInterval = defaultInterval, version = 3 } = widget;
|
||||
const [, fsName] = widget.metric.split("fs:");
|
||||
const diskUnits = widget.diskUnits === "bbytes" ? "common.bbytes" : "common.bytes";
|
||||
|
||||
const { data, error } = useWidgetAPI(widget, "fs", {
|
||||
const { data, error } = useWidgetAPI(widget, `${version}/fs`, {
|
||||
refreshInterval: Math.max(defaultInterval, refreshInterval),
|
||||
});
|
||||
|
||||
|
||||
@@ -16,12 +16,12 @@ const defaultInterval = 1000;
|
||||
export default function Component({ service }) {
|
||||
const { t } = useTranslation();
|
||||
const { widget } = service;
|
||||
const { chart, refreshInterval = defaultInterval, pointsLimit = defaultPointsLimit } = widget;
|
||||
const { chart, refreshInterval = defaultInterval, pointsLimit = defaultPointsLimit, version = 3 } = widget;
|
||||
const [, gpuName] = widget.metric.split(":");
|
||||
|
||||
const [dataPoints, setDataPoints] = useState(new Array(pointsLimit).fill({ a: 0, b: 0 }, 0, pointsLimit));
|
||||
|
||||
const { data, error } = useWidgetAPI(widget, "gpu", {
|
||||
const { data, error } = useWidgetAPI(widget, `${version}/gpu`, {
|
||||
refreshInterval: Math.max(defaultInterval, refreshInterval),
|
||||
});
|
||||
|
||||
|
||||
@@ -74,13 +74,13 @@ const defaultSystemInterval = 30000; // This data (OS, hostname, distribution) i
|
||||
|
||||
export default function Component({ service }) {
|
||||
const { widget } = service;
|
||||
const { chart, refreshInterval = defaultInterval } = widget;
|
||||
const { chart, refreshInterval = defaultInterval, version = 3 } = widget;
|
||||
|
||||
const { data: quicklookData, errorL: quicklookError } = useWidgetAPI(service.widget, "quicklook", {
|
||||
const { data: quicklookData, errorL: quicklookError } = useWidgetAPI(service.widget, `${version}/quicklook`, {
|
||||
refreshInterval,
|
||||
});
|
||||
|
||||
const { data: systemData, errorL: systemError } = useWidgetAPI(service.widget, "system", {
|
||||
const { data: systemData, errorL: systemError } = useWidgetAPI(service.widget, `${version}/system`, {
|
||||
refreshInterval: defaultSystemInterval,
|
||||
});
|
||||
|
||||
@@ -122,7 +122,10 @@ export default function Component({ service }) {
|
||||
)}
|
||||
|
||||
{!chart && quicklookData?.swap === 0 && (
|
||||
<div className="text-[0.6rem] opacity-50">{quicklookData.cpu_name}</div>
|
||||
<div className="text-[0.6rem] opacity-50">
|
||||
{systemData && systemData.linux_distro && `${systemData.linux_distro} - `}
|
||||
{systemData && systemData.os_version}
|
||||
</div>
|
||||
)}
|
||||
|
||||
<div className="w-[4rem]">{!chart && <Swap quicklookData={quicklookData} className="opacity-25" />}</div>
|
||||
@@ -137,7 +140,7 @@ export default function Component({ service }) {
|
||||
)}
|
||||
|
||||
{!chart && (
|
||||
<Block position="bottom-3 left-3 w-[3rem]">
|
||||
<Block position="bottom-3 left-3 w-[4rem]">
|
||||
<CPU quicklookData={quicklookData} className="opacity-75" />
|
||||
</Block>
|
||||
)}
|
||||
|
||||
@@ -17,11 +17,11 @@ export default function Component({ service }) {
|
||||
const { t } = useTranslation();
|
||||
const { widget } = service;
|
||||
const { chart } = widget;
|
||||
const { refreshInterval = defaultInterval(chart), pointsLimit = defaultPointsLimit } = widget;
|
||||
const { refreshInterval = defaultInterval(chart), pointsLimit = defaultPointsLimit, version = 3 } = widget;
|
||||
|
||||
const [dataPoints, setDataPoints] = useState(new Array(pointsLimit).fill({ value: 0 }, 0, pointsLimit));
|
||||
|
||||
const { data, error } = useWidgetAPI(service.widget, "mem", {
|
||||
const { data, error } = useWidgetAPI(service.widget, `${version}/mem`, {
|
||||
refreshInterval: Math.max(defaultInterval(chart), refreshInterval),
|
||||
});
|
||||
|
||||
|
||||
@@ -17,13 +17,16 @@ export default function Component({ service }) {
|
||||
const { t } = useTranslation();
|
||||
const { widget } = service;
|
||||
const { chart, metric } = widget;
|
||||
const { refreshInterval = defaultInterval(chart), pointsLimit = defaultPointsLimit } = widget;
|
||||
const { refreshInterval = defaultInterval(chart), pointsLimit = defaultPointsLimit, version = 3 } = widget;
|
||||
|
||||
const rxKey = version === 3 ? "rx" : "bytes_recv";
|
||||
const txKey = version === 3 ? "tx" : "bytes_sent";
|
||||
|
||||
const [, interfaceName] = metric.split(":");
|
||||
|
||||
const [dataPoints, setDataPoints] = useState(new Array(pointsLimit).fill({ value: 0 }, 0, pointsLimit));
|
||||
|
||||
const { data, error } = useWidgetAPI(widget, "network", {
|
||||
const { data, error } = useWidgetAPI(widget, `${version}/network`, {
|
||||
refreshInterval: Math.max(defaultInterval(chart), refreshInterval),
|
||||
});
|
||||
|
||||
@@ -36,8 +39,8 @@ export default function Component({ service }) {
|
||||
const newDataPoints = [
|
||||
...prevDataPoints,
|
||||
{
|
||||
a: (interfaceData.rx * 8) / interfaceData.time_since_update,
|
||||
b: (interfaceData.tx * 8) / interfaceData.time_since_update,
|
||||
a: (interfaceData[rxKey] * 8) / interfaceData.time_since_update,
|
||||
b: (interfaceData[txKey] * 8) / interfaceData.time_since_update,
|
||||
},
|
||||
];
|
||||
if (newDataPoints.length > pointsLimit) {
|
||||
@@ -47,7 +50,7 @@ export default function Component({ service }) {
|
||||
});
|
||||
}
|
||||
}
|
||||
}, [data, interfaceName, pointsLimit]);
|
||||
}, [data, interfaceName, pointsLimit, rxKey, txKey]);
|
||||
|
||||
if (error) {
|
||||
return (
|
||||
@@ -97,7 +100,7 @@ export default function Component({ service }) {
|
||||
|
||||
<div className="text-xs opacity-75">
|
||||
{t("common.bitrate", {
|
||||
value: (interfaceData.rx * 8) / interfaceData.time_since_update,
|
||||
value: (interfaceData[rxKey] * 8) / interfaceData.time_since_update,
|
||||
maximumFractionDigits: 0,
|
||||
})}{" "}
|
||||
{t("docker.rx")}
|
||||
@@ -115,7 +118,7 @@ export default function Component({ service }) {
|
||||
<Block position="bottom-3 right-3">
|
||||
<div className="text-xs opacity-75">
|
||||
{t("common.bitrate", {
|
||||
value: (interfaceData.tx * 8) / interfaceData.time_since_update,
|
||||
value: (interfaceData[txKey] * 8) / interfaceData.time_since_update,
|
||||
maximumFractionDigits: 0,
|
||||
})}{" "}
|
||||
{t("docker.tx")}
|
||||
|
||||
@@ -22,9 +22,11 @@ const defaultInterval = 1000;
|
||||
export default function Component({ service }) {
|
||||
const { t } = useTranslation();
|
||||
const { widget } = service;
|
||||
const { chart, refreshInterval = defaultInterval } = widget;
|
||||
const { chart, refreshInterval = defaultInterval, version = 3 } = widget;
|
||||
|
||||
const { data, error } = useWidgetAPI(service.widget, "processlist", {
|
||||
const memoryInfoKey = version === 3 ? 0 : "data";
|
||||
|
||||
const { data, error } = useWidgetAPI(service.widget, `${version}/processlist`, {
|
||||
refreshInterval: Math.max(defaultInterval, refreshInterval),
|
||||
});
|
||||
|
||||
@@ -66,7 +68,7 @@ export default function Component({ service }) {
|
||||
<div className="opacity-25 w-14 text-right">{item.cpu_percent.toFixed(1)}%</div>
|
||||
<div className="opacity-25 w-14 text-right">
|
||||
{t("common.bytes", {
|
||||
value: item.memory_info[0],
|
||||
value: item.memory_info[memoryInfoKey],
|
||||
maximumFractionDigits: 0,
|
||||
})}
|
||||
</div>
|
||||
|
||||
@@ -16,12 +16,12 @@ const defaultInterval = 1000;
|
||||
export default function Component({ service }) {
|
||||
const { t } = useTranslation();
|
||||
const { widget } = service;
|
||||
const { chart, refreshInterval = defaultInterval, pointsLimit = defaultPointsLimit } = widget;
|
||||
const { chart, refreshInterval = defaultInterval, pointsLimit = defaultPointsLimit, version = 3 } = widget;
|
||||
const [, sensorName] = widget.metric.split(":");
|
||||
|
||||
const [dataPoints, setDataPoints] = useState(new Array(pointsLimit).fill({ value: 0 }, 0, pointsLimit));
|
||||
|
||||
const { data, error } = useWidgetAPI(service.widget, "sensors", {
|
||||
const { data, error } = useWidgetAPI(service.widget, `${version}/sensors`, {
|
||||
refreshInterval: Math.max(defaultInterval, refreshInterval),
|
||||
});
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import credentialedProxyHandler from "utils/proxy/handlers/credentialed";
|
||||
|
||||
const widget = {
|
||||
api: "{url}/api/3/{endpoint}",
|
||||
api: "{url}/api/{endpoint}",
|
||||
proxyHandler: credentialedProxyHandler,
|
||||
};
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@ async function login(widget, service) {
|
||||
const endpoint = "auth/login";
|
||||
const api = widgets?.[widget.type]?.api;
|
||||
const loginUrl = new URL(formatApiCall(api, { endpoint, ...widget }));
|
||||
const loginBody = { username: widget.username, password: widget.password };
|
||||
const loginBody = { username: widget.username.toString(), password: widget.password.toString() };
|
||||
const headers = { "Content-Type": "application/json" };
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
const [status, contentType, data, responseHeaders] = await httpProxy(loginUrl, {
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user