iobroker.agent-dvr 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +159 -0
- package/admin/agent-dvr.png +0 -0
- package/admin/i18n/de.json +40 -0
- package/admin/i18n/en.json +40 -0
- package/admin/i18n/es.json +40 -0
- package/admin/i18n/fr.json +40 -0
- package/admin/i18n/it.json +40 -0
- package/admin/i18n/nl.json +40 -0
- package/admin/i18n/pl.json +40 -0
- package/admin/i18n/pt.json +40 -0
- package/admin/i18n/ru.json +40 -0
- package/admin/i18n/uk.json +40 -0
- package/admin/i18n/zh-cn.json +40 -0
- package/admin/jsonConfig.json +205 -0
- package/build/lib/widget-i18n.js +118 -0
- package/build/lib/widget-i18n.js.map +7 -0
- package/build/main.js +991 -0
- package/build/main.js.map +7 -0
- package/io-package.json +131 -0
- package/package.json +73 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 ipod86 <david@graef.email>
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+

|
|
2
|
+
# ioBroker.agent-dvr
|
|
3
|
+
|
|
4
|
+
[](https://www.npmjs.com/package/iobroker.agent-dvr)
|
|
5
|
+
[](https://www.npmjs.com/package/iobroker.agent-dvr)
|
|
6
|
+

|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
[](https://nodei.co/npm/iobroker.agent-dvr/)
|
|
10
|
+
|
|
11
|
+
**Tests:** 
|
|
12
|
+
|
|
13
|
+
## agent-dvr adapter for ioBroker
|
|
14
|
+
|
|
15
|
+
Connects ioBroker to AgentDVR: auto-discovers cameras, mirrors all device values as data points, delivers real-time triggers on new recordings, and generates a responsive HTML gallery with optional search and tag filtering.
|
|
16
|
+
|
|
17
|
+
## Developer manual
|
|
18
|
+
This section is intended for the developer. It can be deleted later.
|
|
19
|
+
|
|
20
|
+
### DISCLAIMER
|
|
21
|
+
|
|
22
|
+
Please make sure that you consider copyrights and trademarks when you use names or logos of a company and add a disclaimer to your README.
|
|
23
|
+
You can check other adapters for examples or ask in the developer community. Using a name or logo of a company without permission may cause legal problems for you.
|
|
24
|
+
|
|
25
|
+
### Getting started
|
|
26
|
+
|
|
27
|
+
You are almost done, only a few steps left:
|
|
28
|
+
1. Create a new repository on GitHub with the name `ioBroker.agent-dvr`
|
|
29
|
+
1. Initialize the current folder as a new git repository:
|
|
30
|
+
```bash
|
|
31
|
+
git init -b main
|
|
32
|
+
git add .
|
|
33
|
+
git commit -m "Initial commit"
|
|
34
|
+
```
|
|
35
|
+
1. Link your local repository with the one on GitHub:
|
|
36
|
+
```bash
|
|
37
|
+
git remote add origin https://github.com/ipod86/ioBroker.agent-dvr
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
1. Push all files to the GitHub repo:
|
|
41
|
+
```bash
|
|
42
|
+
git push origin main
|
|
43
|
+
```
|
|
44
|
+
1. Add a new secret under https://github.com/ipod86/ioBroker.agent-dvr/settings/secrets. It must be named `AUTO_MERGE_TOKEN` and contain a personal access token with push access to the repository, e.g. yours. You can create a new token under https://github.com/settings/tokens.
|
|
45
|
+
|
|
46
|
+
1. Head over to [src/main.ts](src/main.ts) and start programming!
|
|
47
|
+
|
|
48
|
+
### Best Practices
|
|
49
|
+
We've collected some [best practices](https://github.com/ioBroker/ioBroker.repositories#development-and-coding-best-practices) regarding ioBroker development and coding in general. If you're new to ioBroker or Node.js, you should
|
|
50
|
+
check them out. If you're already experienced, you should also take a look at them - you might learn something new :)
|
|
51
|
+
|
|
52
|
+
### State Roles
|
|
53
|
+
When creating state objects, it is important to use the correct role for the state. The role defines how the state should be interpreted by visualizations and other adapters. For a list of available roles and their meanings, please refer to the [state roles documentation](https://www.iobroker.net/#en/documentation/dev/stateroles.md).
|
|
54
|
+
|
|
55
|
+
**Important:** Do not invent your own custom role names. If you need a role that is not part of the official list, please contact the ioBroker developer community for guidance and discussion about adding new roles.
|
|
56
|
+
|
|
57
|
+
### Scripts in `package.json`
|
|
58
|
+
Several npm scripts are predefined for your convenience. You can run them using `npm run <scriptname>`
|
|
59
|
+
| Script name | Description |
|
|
60
|
+
|-------------|-------------|
|
|
61
|
+
| `build` | Compile the TypeScript sources. |
|
|
62
|
+
| `watch` | Compile the TypeScript sources and watch for changes. |
|
|
63
|
+
| `test:ts` | Executes the tests you defined in `*.test.ts` files. |
|
|
64
|
+
| `test:package` | Ensures your `package.json` and `io-package.json` are valid. |
|
|
65
|
+
| `test:integration` | Tests the adapter startup with an actual instance of ioBroker. |
|
|
66
|
+
| `test` | Performs a minimal test run on package files and your tests. |
|
|
67
|
+
| `check` | Performs a type-check on your code (without compiling anything). |
|
|
68
|
+
| `lint` | Runs `ESLint` to check your code for formatting errors and potential bugs. |
|
|
69
|
+
| `translate` | Translates texts in your adapter to all required languages, see [`@iobroker/adapter-dev`](https://github.com/ioBroker/adapter-dev#manage-translations) for more details. |
|
|
70
|
+
| `release` | Creates a new release, see [`@alcalzone/release-script`](https://github.com/AlCalzone/release-script#usage) for more details. |
|
|
71
|
+
|
|
72
|
+
### Configuring the compilation
|
|
73
|
+
The adapter template uses [esbuild](https://esbuild.github.io/) to compile TypeScript and/or React code. You can configure many compilation settings
|
|
74
|
+
either in `tsconfig.json` or by changing options for the build tasks. These options are described in detail in the
|
|
75
|
+
[`@iobroker/adapter-dev` documentation](https://github.com/ioBroker/adapter-dev#compile-adapter-files).
|
|
76
|
+
|
|
77
|
+
### Writing tests
|
|
78
|
+
When done right, testing code is invaluable, because it gives you the
|
|
79
|
+
confidence to change your code while knowing exactly if and when
|
|
80
|
+
something breaks. A good read on the topic of test-driven development
|
|
81
|
+
is https://hackernoon.com/introduction-to-test-driven-development-tdd-61a13bc92d92.
|
|
82
|
+
Although writing tests before the code might seem strange at first, but it has very
|
|
83
|
+
clear upsides.
|
|
84
|
+
|
|
85
|
+
The template provides you with basic tests for the adapter startup and package files.
|
|
86
|
+
It is recommended that you add your own tests into the mix.
|
|
87
|
+
|
|
88
|
+
### Publishing the adapter
|
|
89
|
+
Using GitHub Actions, you can enable automatic releases on npm whenever you push a new git tag that matches the form
|
|
90
|
+
`v<major>.<minor>.<patch>`. We **strongly recommend** that you do. The necessary steps are described in `.github/workflows/test-and-release.yml`.
|
|
91
|
+
|
|
92
|
+
Since you installed the release script, you can create a new
|
|
93
|
+
release simply by calling:
|
|
94
|
+
```bash
|
|
95
|
+
npm run release
|
|
96
|
+
```
|
|
97
|
+
Additional command line options for the release script are explained in the
|
|
98
|
+
[release-script documentation](https://github.com/AlCalzone/release-script#command-line).
|
|
99
|
+
|
|
100
|
+
To get your adapter released in ioBroker, please refer to the documentation
|
|
101
|
+
of [ioBroker.repositories](https://github.com/ioBroker/ioBroker.repositories#requirements-for-adapter-to-get-added-to-the-latest-repository).
|
|
102
|
+
|
|
103
|
+
### Test the adapter manually on a local ioBroker installation
|
|
104
|
+
In order to install the adapter locally without publishing, the following steps are recommended:
|
|
105
|
+
1. Create a GitHub repository for your adapter if you haven't already
|
|
106
|
+
1. Push your code to the GitHub repository
|
|
107
|
+
1. Use the ioBroker Admin interface or command line to install the adapter from GitHub:
|
|
108
|
+
* **Via Admin UI**: Go to the "Adapters" tab, click on "Custom Install" (GitHub icon), and enter your repository URL:
|
|
109
|
+
```
|
|
110
|
+
https://github.com/ipod86/ioBroker.agent-dvr
|
|
111
|
+
```
|
|
112
|
+
You can also install from a specific branch by adding `#branchname` at the end:
|
|
113
|
+
```
|
|
114
|
+
https://github.com/ipod86/ioBroker.agent-dvr#dev
|
|
115
|
+
```
|
|
116
|
+
* **Via Command Line**: Install using the `iob` command:
|
|
117
|
+
```bash
|
|
118
|
+
iob url https://github.com/ipod86/ioBroker.agent-dvr
|
|
119
|
+
```
|
|
120
|
+
Or from a specific branch:
|
|
121
|
+
```bash
|
|
122
|
+
iob url https://github.com/ipod86/ioBroker.agent-dvr#dev
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
For later updates:
|
|
126
|
+
1. Push your changes to GitHub
|
|
127
|
+
1. Repeat the installation steps above (via Admin UI or `iob url` command) to update the adapter
|
|
128
|
+
|
|
129
|
+
## Changelog
|
|
130
|
+
<!--
|
|
131
|
+
Placeholder for the next version (at the beginning of the line):
|
|
132
|
+
### **WORK IN PROGRESS**
|
|
133
|
+
-->
|
|
134
|
+
|
|
135
|
+
### **WORK IN PROGRESS**
|
|
136
|
+
* (ipod86) initial release
|
|
137
|
+
|
|
138
|
+
## License
|
|
139
|
+
MIT License
|
|
140
|
+
|
|
141
|
+
Copyright (c) 2026 ipod86 <david@graef.email>
|
|
142
|
+
|
|
143
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
144
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
145
|
+
in the Software without restriction, including without limitation the rights
|
|
146
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
147
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
148
|
+
furnished to do so, subject to the following conditions:
|
|
149
|
+
|
|
150
|
+
The above copyright notice and this permission notice shall be included in all
|
|
151
|
+
copies or substantial portions of the Software.
|
|
152
|
+
|
|
153
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
154
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
155
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
156
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
157
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
158
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
159
|
+
SOFTWARE.
|
|
Binary file
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent-dvr adapter settings": "Agent DVR Adapter-Einstellungen",
|
|
3
|
+
"tabConnection": "Verbindung",
|
|
4
|
+
"tabFeatures": "Funktionen",
|
|
5
|
+
"tabWidget": "Widget",
|
|
6
|
+
"tabAdvanced": "Erweitert",
|
|
7
|
+
"cfgIp": "AgentDVR IP-Adresse",
|
|
8
|
+
"cfgPort": "Port",
|
|
9
|
+
"cfgUser": "Benutzername (optional)",
|
|
10
|
+
"cfgPass": "Passwort (optional)",
|
|
11
|
+
"cfgPollSeconds": "Abfrageintervall (Sekunden)",
|
|
12
|
+
"cfgHttpTimeoutMs": "HTTP-Timeout (ms)",
|
|
13
|
+
"cfgEnableSystemControls": "Systemsteuerungs-Schaltflächen",
|
|
14
|
+
"cfgEnablePtz": "PTZ-Steuerungs-Schaltflächen",
|
|
15
|
+
"cfgEnableUrls": "Stream-URLs generieren",
|
|
16
|
+
"cfgEnableEventDps": "Ereignis-Datenpunkte",
|
|
17
|
+
"cfgEnablePush": "Echtzeit-Push-Trigger",
|
|
18
|
+
"cfgEnableOverview": "Übersichts-Widget (alle Kameras)",
|
|
19
|
+
"cfgStoreRawJson": "Rohes API-JSON speichern",
|
|
20
|
+
"cfgEnableWidget": "Galerie-Widget pro Kamera",
|
|
21
|
+
"cfgWidgetMode": "Widget-Modus",
|
|
22
|
+
"cfgWidgetModeNojs": "Reines HTML/CSS (kein JavaScript, überall kompatibel)",
|
|
23
|
+
"cfgWidgetModeJs": "Vollständiges JS (Suche + Tag-Filter, erfordert Skriptausführung)",
|
|
24
|
+
"cfgWidgetAnzahl": "Max. Aufnahmen in der Galerie",
|
|
25
|
+
"cfgWidgetMinCol": "Min. Spaltenbreite (px)",
|
|
26
|
+
"cfgWidgetShowTags": "Ereignis-Tags anzeigen",
|
|
27
|
+
"cfgWidgetLiveAspect": "Seitenverhältnis Live-Kachel (z.B. 16/9, leer lassen für automatisch)",
|
|
28
|
+
"cfgWidgetTagPosition": "Tag-Badge-Position",
|
|
29
|
+
"cfgTagPosTopLeft": "Oben links",
|
|
30
|
+
"cfgTagPosTopRight": "Oben rechts",
|
|
31
|
+
"cfgTagPosBotLeft": "Unten links",
|
|
32
|
+
"cfgTagPosBotRight": "Unten rechts",
|
|
33
|
+
"cfgWidgetMaxModalWidth": "Max. Player-Breite (px)",
|
|
34
|
+
"cfgWidgetPlayerUrl": "Externer Player-URL (leer lassen für eingebauten Player)",
|
|
35
|
+
"cfgMaxDepth": "Max. Objekt-Abflachungstiefe",
|
|
36
|
+
"cfgMaxArray": "Max. Array-Länge zum Erweitern",
|
|
37
|
+
"cfgEventTagsDynamic": "Ereignis-Tags automatisch aus Aufnahmen erkennen",
|
|
38
|
+
"cfgEventTagsIgnore": "Zu ignorierende Ereignis-Tags (kommagetrennt)",
|
|
39
|
+
"cfgEventTags": "Feste Ereignis-Tags, die immer erstellt werden (kommagetrennt)"
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent-dvr adapter settings": "Agent DVR Adapter Settings",
|
|
3
|
+
"tabConnection": "Connection",
|
|
4
|
+
"tabFeatures": "Features",
|
|
5
|
+
"tabWidget": "Widget",
|
|
6
|
+
"tabAdvanced": "Advanced",
|
|
7
|
+
"cfgIp": "AgentDVR IP Address",
|
|
8
|
+
"cfgPort": "Port",
|
|
9
|
+
"cfgUser": "Username (optional)",
|
|
10
|
+
"cfgPass": "Password (optional)",
|
|
11
|
+
"cfgPollSeconds": "Poll interval (seconds)",
|
|
12
|
+
"cfgHttpTimeoutMs": "HTTP timeout (ms)",
|
|
13
|
+
"cfgEnableSystemControls": "System control buttons",
|
|
14
|
+
"cfgEnablePtz": "PTZ control buttons",
|
|
15
|
+
"cfgEnableUrls": "Generate stream URLs",
|
|
16
|
+
"cfgEnableEventDps": "Event data points",
|
|
17
|
+
"cfgEnablePush": "Real-time push trigger",
|
|
18
|
+
"cfgEnableOverview": "Overview widget (all cameras)",
|
|
19
|
+
"cfgStoreRawJson": "Store raw API JSON",
|
|
20
|
+
"cfgEnableWidget": "Gallery widget per camera",
|
|
21
|
+
"cfgWidgetMode": "Widget mode",
|
|
22
|
+
"cfgWidgetModeNojs": "Pure HTML/CSS (no JavaScript, compatible everywhere)",
|
|
23
|
+
"cfgWidgetModeJs": "Full JS (search + tag filter, requires script execution)",
|
|
24
|
+
"cfgWidgetAnzahl": "Max. recordings in gallery",
|
|
25
|
+
"cfgWidgetMinCol": "Min. column width (px)",
|
|
26
|
+
"cfgWidgetShowTags": "Show event tags",
|
|
27
|
+
"cfgWidgetLiveAspect": "Live tile aspect ratio (e.g. 16/9, leave empty for auto)",
|
|
28
|
+
"cfgWidgetTagPosition": "Tag badge position",
|
|
29
|
+
"cfgTagPosTopLeft": "Top left",
|
|
30
|
+
"cfgTagPosTopRight": "Top right",
|
|
31
|
+
"cfgTagPosBotLeft": "Bottom left",
|
|
32
|
+
"cfgTagPosBotRight": "Bottom right",
|
|
33
|
+
"cfgWidgetMaxModalWidth": "Max. player width (px)",
|
|
34
|
+
"cfgWidgetPlayerUrl": "External player URL (leave empty for built-in player)",
|
|
35
|
+
"cfgMaxDepth": "Max. object flatten depth",
|
|
36
|
+
"cfgMaxArray": "Max. array length to expand",
|
|
37
|
+
"cfgEventTagsDynamic": "Auto-detect event tags from recordings",
|
|
38
|
+
"cfgEventTagsIgnore": "Event tags to ignore (comma-separated)",
|
|
39
|
+
"cfgEventTags": "Fixed event tags to always create (comma-separated)"
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent-dvr adapter settings": "Configuración del adaptador Agent DVR",
|
|
3
|
+
"tabConnection": "Conexión",
|
|
4
|
+
"tabFeatures": "Funciones",
|
|
5
|
+
"tabWidget": "Widget",
|
|
6
|
+
"tabAdvanced": "Avanzado",
|
|
7
|
+
"cfgIp": "Dirección IP de AgentDVR",
|
|
8
|
+
"cfgPort": "Puerto",
|
|
9
|
+
"cfgUser": "Nombre de usuario (opcional)",
|
|
10
|
+
"cfgPass": "Contraseña (opcional)",
|
|
11
|
+
"cfgPollSeconds": "Intervalo de sondeo (segundos)",
|
|
12
|
+
"cfgHttpTimeoutMs": "Tiempo de espera HTTP (ms)",
|
|
13
|
+
"cfgEnableSystemControls": "Botones de control del sistema",
|
|
14
|
+
"cfgEnablePtz": "Botones de control PTZ",
|
|
15
|
+
"cfgEnableUrls": "Generar URLs de transmisión",
|
|
16
|
+
"cfgEnableEventDps": "Puntos de datos de eventos",
|
|
17
|
+
"cfgEnablePush": "Activador push en tiempo real",
|
|
18
|
+
"cfgEnableOverview": "Widget de resumen (todas las cámaras)",
|
|
19
|
+
"cfgStoreRawJson": "Almacenar JSON de API sin procesar",
|
|
20
|
+
"cfgEnableWidget": "Widget de galería por cámara",
|
|
21
|
+
"cfgWidgetMode": "Modo de widget",
|
|
22
|
+
"cfgWidgetModeNojs": "HTML/CSS puro (sin JavaScript, compatible en todas partes)",
|
|
23
|
+
"cfgWidgetModeJs": "JS completo (búsqueda + filtro de etiquetas, requiere ejecución de scripts)",
|
|
24
|
+
"cfgWidgetAnzahl": "Máx. grabaciones en la galería",
|
|
25
|
+
"cfgWidgetMinCol": "Ancho mínimo de columna (px)",
|
|
26
|
+
"cfgWidgetShowTags": "Mostrar etiquetas de eventos",
|
|
27
|
+
"cfgWidgetLiveAspect": "Relación de aspecto del mosaico en vivo (p.ej. 16/9, dejar vacío para automático)",
|
|
28
|
+
"cfgWidgetTagPosition": "Posición del badge de etiqueta",
|
|
29
|
+
"cfgTagPosTopLeft": "Arriba a la izquierda",
|
|
30
|
+
"cfgTagPosTopRight": "Arriba a la derecha",
|
|
31
|
+
"cfgTagPosBotLeft": "Abajo a la izquierda",
|
|
32
|
+
"cfgTagPosBotRight": "Abajo a la derecha",
|
|
33
|
+
"cfgWidgetMaxModalWidth": "Ancho máximo del reproductor (px)",
|
|
34
|
+
"cfgWidgetPlayerUrl": "URL del reproductor externo (dejar vacío para reproductor integrado)",
|
|
35
|
+
"cfgMaxDepth": "Profundidad máxima de aplanamiento de objetos",
|
|
36
|
+
"cfgMaxArray": "Longitud máxima de array a expandir",
|
|
37
|
+
"cfgEventTagsDynamic": "Detectar automáticamente etiquetas de eventos desde grabaciones",
|
|
38
|
+
"cfgEventTagsIgnore": "Etiquetas de eventos a ignorar (separadas por comas)",
|
|
39
|
+
"cfgEventTags": "Etiquetas de eventos fijas a crear siempre (separadas por comas)"
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent-dvr adapter settings": "Paramètres de l'adaptateur Agent DVR",
|
|
3
|
+
"tabConnection": "Connexion",
|
|
4
|
+
"tabFeatures": "Fonctionnalités",
|
|
5
|
+
"tabWidget": "Widget",
|
|
6
|
+
"tabAdvanced": "Avancé",
|
|
7
|
+
"cfgIp": "Adresse IP d'AgentDVR",
|
|
8
|
+
"cfgPort": "Port",
|
|
9
|
+
"cfgUser": "Nom d'utilisateur (optionnel)",
|
|
10
|
+
"cfgPass": "Mot de passe (optionnel)",
|
|
11
|
+
"cfgPollSeconds": "Intervalle d'interrogation (secondes)",
|
|
12
|
+
"cfgHttpTimeoutMs": "Délai d'attente HTTP (ms)",
|
|
13
|
+
"cfgEnableSystemControls": "Boutons de contrôle du système",
|
|
14
|
+
"cfgEnablePtz": "Boutons de contrôle PTZ",
|
|
15
|
+
"cfgEnableUrls": "Générer des URLs de flux",
|
|
16
|
+
"cfgEnableEventDps": "Points de données d'événements",
|
|
17
|
+
"cfgEnablePush": "Déclencheur push en temps réel",
|
|
18
|
+
"cfgEnableOverview": "Widget de vue d'ensemble (toutes les caméras)",
|
|
19
|
+
"cfgStoreRawJson": "Stocker le JSON brut de l'API",
|
|
20
|
+
"cfgEnableWidget": "Widget de galerie par caméra",
|
|
21
|
+
"cfgWidgetMode": "Mode widget",
|
|
22
|
+
"cfgWidgetModeNojs": "HTML/CSS pur (sans JavaScript, compatible partout)",
|
|
23
|
+
"cfgWidgetModeJs": "JS complet (recherche + filtre de tags, nécessite l'exécution de scripts)",
|
|
24
|
+
"cfgWidgetAnzahl": "Nb max. d'enregistrements dans la galerie",
|
|
25
|
+
"cfgWidgetMinCol": "Largeur minimale de colonne (px)",
|
|
26
|
+
"cfgWidgetShowTags": "Afficher les tags d'événements",
|
|
27
|
+
"cfgWidgetLiveAspect": "Rapport d'aspect de la vignette en direct (ex. 16/9, laisser vide pour automatique)",
|
|
28
|
+
"cfgWidgetTagPosition": "Position du badge de tag",
|
|
29
|
+
"cfgTagPosTopLeft": "En haut à gauche",
|
|
30
|
+
"cfgTagPosTopRight": "En haut à droite",
|
|
31
|
+
"cfgTagPosBotLeft": "En bas à gauche",
|
|
32
|
+
"cfgTagPosBotRight": "En bas à droite",
|
|
33
|
+
"cfgWidgetMaxModalWidth": "Largeur maximale du lecteur (px)",
|
|
34
|
+
"cfgWidgetPlayerUrl": "URL du lecteur externe (laisser vide pour le lecteur intégré)",
|
|
35
|
+
"cfgMaxDepth": "Profondeur maximale d'aplatissement des objets",
|
|
36
|
+
"cfgMaxArray": "Longueur maximale du tableau à développer",
|
|
37
|
+
"cfgEventTagsDynamic": "Détecter automatiquement les tags d'événements depuis les enregistrements",
|
|
38
|
+
"cfgEventTagsIgnore": "Tags d'événements à ignorer (séparés par des virgules)",
|
|
39
|
+
"cfgEventTags": "Tags d'événements fixes à toujours créer (séparés par des virgules)"
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent-dvr adapter settings": "Impostazioni dell'adattatore Agent DVR",
|
|
3
|
+
"tabConnection": "Connessione",
|
|
4
|
+
"tabFeatures": "Funzionalità",
|
|
5
|
+
"tabWidget": "Widget",
|
|
6
|
+
"tabAdvanced": "Avanzato",
|
|
7
|
+
"cfgIp": "Indirizzo IP di AgentDVR",
|
|
8
|
+
"cfgPort": "Porta",
|
|
9
|
+
"cfgUser": "Nome utente (opzionale)",
|
|
10
|
+
"cfgPass": "Password (opzionale)",
|
|
11
|
+
"cfgPollSeconds": "Intervallo di polling (secondi)",
|
|
12
|
+
"cfgHttpTimeoutMs": "Timeout HTTP (ms)",
|
|
13
|
+
"cfgEnableSystemControls": "Pulsanti di controllo del sistema",
|
|
14
|
+
"cfgEnablePtz": "Pulsanti di controllo PTZ",
|
|
15
|
+
"cfgEnableUrls": "Genera URL di streaming",
|
|
16
|
+
"cfgEnableEventDps": "Punti dati degli eventi",
|
|
17
|
+
"cfgEnablePush": "Trigger push in tempo reale",
|
|
18
|
+
"cfgEnableOverview": "Widget panoramica (tutte le telecamere)",
|
|
19
|
+
"cfgStoreRawJson": "Memorizza JSON grezzo dell'API",
|
|
20
|
+
"cfgEnableWidget": "Widget galleria per telecamera",
|
|
21
|
+
"cfgWidgetMode": "Modalità widget",
|
|
22
|
+
"cfgWidgetModeNojs": "HTML/CSS puro (senza JavaScript, compatibile ovunque)",
|
|
23
|
+
"cfgWidgetModeJs": "JS completo (ricerca + filtro tag, richiede esecuzione di script)",
|
|
24
|
+
"cfgWidgetAnzahl": "Numero massimo di registrazioni nella galleria",
|
|
25
|
+
"cfgWidgetMinCol": "Larghezza minima della colonna (px)",
|
|
26
|
+
"cfgWidgetShowTags": "Mostra tag degli eventi",
|
|
27
|
+
"cfgWidgetLiveAspect": "Proporzioni del riquadro live (es. 16/9, lasciare vuoto per automatico)",
|
|
28
|
+
"cfgWidgetTagPosition": "Posizione del badge del tag",
|
|
29
|
+
"cfgTagPosTopLeft": "In alto a sinistra",
|
|
30
|
+
"cfgTagPosTopRight": "In alto a destra",
|
|
31
|
+
"cfgTagPosBotLeft": "In basso a sinistra",
|
|
32
|
+
"cfgTagPosBotRight": "In basso a destra",
|
|
33
|
+
"cfgWidgetMaxModalWidth": "Larghezza massima del player (px)",
|
|
34
|
+
"cfgWidgetPlayerUrl": "URL del player esterno (lasciare vuoto per il player integrato)",
|
|
35
|
+
"cfgMaxDepth": "Profondità massima di appiattimento degli oggetti",
|
|
36
|
+
"cfgMaxArray": "Lunghezza massima dell'array da espandere",
|
|
37
|
+
"cfgEventTagsDynamic": "Rilevamento automatico dei tag degli eventi dalle registrazioni",
|
|
38
|
+
"cfgEventTagsIgnore": "Tag degli eventi da ignorare (separati da virgola)",
|
|
39
|
+
"cfgEventTags": "Tag degli eventi fissi da creare sempre (separati da virgola)"
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent-dvr adapter settings": "Agent DVR Adapter-instellingen",
|
|
3
|
+
"tabConnection": "Verbinding",
|
|
4
|
+
"tabFeatures": "Functies",
|
|
5
|
+
"tabWidget": "Widget",
|
|
6
|
+
"tabAdvanced": "Geavanceerd",
|
|
7
|
+
"cfgIp": "AgentDVR IP-adres",
|
|
8
|
+
"cfgPort": "Poort",
|
|
9
|
+
"cfgUser": "Gebruikersnaam (optioneel)",
|
|
10
|
+
"cfgPass": "Wachtwoord (optioneel)",
|
|
11
|
+
"cfgPollSeconds": "Pollinginterval (seconden)",
|
|
12
|
+
"cfgHttpTimeoutMs": "HTTP-time-out (ms)",
|
|
13
|
+
"cfgEnableSystemControls": "Systeembedieningsknoppen",
|
|
14
|
+
"cfgEnablePtz": "PTZ-bedieningsknoppen",
|
|
15
|
+
"cfgEnableUrls": "Stream-URLs genereren",
|
|
16
|
+
"cfgEnableEventDps": "Gebeurtenisdatapunten",
|
|
17
|
+
"cfgEnablePush": "Realtime push-trigger",
|
|
18
|
+
"cfgEnableOverview": "Overzichtswidget (alle camera's)",
|
|
19
|
+
"cfgStoreRawJson": "Onbewerkte API-JSON opslaan",
|
|
20
|
+
"cfgEnableWidget": "Galeriewidget per camera",
|
|
21
|
+
"cfgWidgetMode": "Widgetmodus",
|
|
22
|
+
"cfgWidgetModeNojs": "Puur HTML/CSS (geen JavaScript, overal compatibel)",
|
|
23
|
+
"cfgWidgetModeJs": "Volledig JS (zoeken + tagfilter, vereist scriptuitvoering)",
|
|
24
|
+
"cfgWidgetAnzahl": "Max. opnames in de galerie",
|
|
25
|
+
"cfgWidgetMinCol": "Min. kolombreedte (px)",
|
|
26
|
+
"cfgWidgetShowTags": "Gebeurtenistags weergeven",
|
|
27
|
+
"cfgWidgetLiveAspect": "Beeldverhouding live-tegel (bijv. 16/9, leeg laten voor automatisch)",
|
|
28
|
+
"cfgWidgetTagPosition": "Positie tagbadge",
|
|
29
|
+
"cfgTagPosTopLeft": "Linksboven",
|
|
30
|
+
"cfgTagPosTopRight": "Rechtsboven",
|
|
31
|
+
"cfgTagPosBotLeft": "Linksonder",
|
|
32
|
+
"cfgTagPosBotRight": "Rechtsonder",
|
|
33
|
+
"cfgWidgetMaxModalWidth": "Max. spelersbreedte (px)",
|
|
34
|
+
"cfgWidgetPlayerUrl": "Externe speler-URL (leeg laten voor ingebouwde speler)",
|
|
35
|
+
"cfgMaxDepth": "Max. objectafvlakkingsdiepte",
|
|
36
|
+
"cfgMaxArray": "Max. arraylengte om uit te breiden",
|
|
37
|
+
"cfgEventTagsDynamic": "Gebeurtenistags automatisch detecteren uit opnames",
|
|
38
|
+
"cfgEventTagsIgnore": "Te negeren gebeurtenistags (kommagescheiden)",
|
|
39
|
+
"cfgEventTags": "Vaste gebeurtenistags die altijd worden aangemaakt (kommagescheiden)"
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent-dvr adapter settings": "Ustawienia adaptera Agent DVR",
|
|
3
|
+
"tabConnection": "Połączenie",
|
|
4
|
+
"tabFeatures": "Funkcje",
|
|
5
|
+
"tabWidget": "Widget",
|
|
6
|
+
"tabAdvanced": "Zaawansowane",
|
|
7
|
+
"cfgIp": "Adres IP AgentDVR",
|
|
8
|
+
"cfgPort": "Port",
|
|
9
|
+
"cfgUser": "Nazwa użytkownika (opcjonalnie)",
|
|
10
|
+
"cfgPass": "Hasło (opcjonalnie)",
|
|
11
|
+
"cfgPollSeconds": "Interwał odpytywania (sekundy)",
|
|
12
|
+
"cfgHttpTimeoutMs": "Limit czasu HTTP (ms)",
|
|
13
|
+
"cfgEnableSystemControls": "Przyciski sterowania systemem",
|
|
14
|
+
"cfgEnablePtz": "Przyciski sterowania PTZ",
|
|
15
|
+
"cfgEnableUrls": "Generuj URL strumieni",
|
|
16
|
+
"cfgEnableEventDps": "Punkty danych zdarzeń",
|
|
17
|
+
"cfgEnablePush": "Wyzwalacz push w czasie rzeczywistym",
|
|
18
|
+
"cfgEnableOverview": "Widget przeglądu (wszystkie kamery)",
|
|
19
|
+
"cfgStoreRawJson": "Przechowuj surowy JSON API",
|
|
20
|
+
"cfgEnableWidget": "Widget galerii na kamerę",
|
|
21
|
+
"cfgWidgetMode": "Tryb widgetu",
|
|
22
|
+
"cfgWidgetModeNojs": "Czysty HTML/CSS (bez JavaScript, kompatybilny wszędzie)",
|
|
23
|
+
"cfgWidgetModeJs": "Pełny JS (wyszukiwanie + filtr tagów, wymaga wykonania skryptów)",
|
|
24
|
+
"cfgWidgetAnzahl": "Maks. nagrania w galerii",
|
|
25
|
+
"cfgWidgetMinCol": "Min. szerokość kolumny (px)",
|
|
26
|
+
"cfgWidgetShowTags": "Pokaż tagi zdarzeń",
|
|
27
|
+
"cfgWidgetLiveAspect": "Proporcje kafelka na żywo (np. 16/9, pozostaw puste dla automatycznego)",
|
|
28
|
+
"cfgWidgetTagPosition": "Pozycja odznaki tagu",
|
|
29
|
+
"cfgTagPosTopLeft": "Góra lewa",
|
|
30
|
+
"cfgTagPosTopRight": "Góra prawa",
|
|
31
|
+
"cfgTagPosBotLeft": "Dół lewa",
|
|
32
|
+
"cfgTagPosBotRight": "Dół prawa",
|
|
33
|
+
"cfgWidgetMaxModalWidth": "Maks. szerokość odtwarzacza (px)",
|
|
34
|
+
"cfgWidgetPlayerUrl": "URL zewnętrznego odtwarzacza (pozostaw puste dla wbudowanego odtwarzacza)",
|
|
35
|
+
"cfgMaxDepth": "Maks. głębokość spłaszczania obiektów",
|
|
36
|
+
"cfgMaxArray": "Maks. długość tablicy do rozwinięcia",
|
|
37
|
+
"cfgEventTagsDynamic": "Automatyczne wykrywanie tagów zdarzeń z nagrań",
|
|
38
|
+
"cfgEventTagsIgnore": "Tagi zdarzeń do zignorowania (oddzielone przecinkami)",
|
|
39
|
+
"cfgEventTags": "Stałe tagi zdarzeń do zawsze tworzenia (oddzielone przecinkami)"
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent-dvr adapter settings": "Configurações do adaptador Agent DVR",
|
|
3
|
+
"tabConnection": "Conexão",
|
|
4
|
+
"tabFeatures": "Funcionalidades",
|
|
5
|
+
"tabWidget": "Widget",
|
|
6
|
+
"tabAdvanced": "Avançado",
|
|
7
|
+
"cfgIp": "Endereço IP do AgentDVR",
|
|
8
|
+
"cfgPort": "Porta",
|
|
9
|
+
"cfgUser": "Nome de utilizador (opcional)",
|
|
10
|
+
"cfgPass": "Palavra-passe (opcional)",
|
|
11
|
+
"cfgPollSeconds": "Intervalo de polling (segundos)",
|
|
12
|
+
"cfgHttpTimeoutMs": "Tempo limite HTTP (ms)",
|
|
13
|
+
"cfgEnableSystemControls": "Botões de controlo do sistema",
|
|
14
|
+
"cfgEnablePtz": "Botões de controlo PTZ",
|
|
15
|
+
"cfgEnableUrls": "Gerar URLs de stream",
|
|
16
|
+
"cfgEnableEventDps": "Pontos de dados de eventos",
|
|
17
|
+
"cfgEnablePush": "Gatilho push em tempo real",
|
|
18
|
+
"cfgEnableOverview": "Widget de visão geral (todas as câmeras)",
|
|
19
|
+
"cfgStoreRawJson": "Armazenar JSON bruto da API",
|
|
20
|
+
"cfgEnableWidget": "Widget de galeria por câmera",
|
|
21
|
+
"cfgWidgetMode": "Modo de widget",
|
|
22
|
+
"cfgWidgetModeNojs": "HTML/CSS puro (sem JavaScript, compatível em todo lado)",
|
|
23
|
+
"cfgWidgetModeJs": "JS completo (pesquisa + filtro de tags, requer execução de scripts)",
|
|
24
|
+
"cfgWidgetAnzahl": "Máx. gravações na galeria",
|
|
25
|
+
"cfgWidgetMinCol": "Largura mínima de coluna (px)",
|
|
26
|
+
"cfgWidgetShowTags": "Mostrar tags de eventos",
|
|
27
|
+
"cfgWidgetLiveAspect": "Proporção do mosaico ao vivo (ex. 16/9, deixar vazio para automático)",
|
|
28
|
+
"cfgWidgetTagPosition": "Posição do badge de tag",
|
|
29
|
+
"cfgTagPosTopLeft": "Canto superior esquerdo",
|
|
30
|
+
"cfgTagPosTopRight": "Canto superior direito",
|
|
31
|
+
"cfgTagPosBotLeft": "Canto inferior esquerdo",
|
|
32
|
+
"cfgTagPosBotRight": "Canto inferior direito",
|
|
33
|
+
"cfgWidgetMaxModalWidth": "Largura máxima do player (px)",
|
|
34
|
+
"cfgWidgetPlayerUrl": "URL do player externo (deixar vazio para player integrado)",
|
|
35
|
+
"cfgMaxDepth": "Profundidade máxima de nivelamento de objetos",
|
|
36
|
+
"cfgMaxArray": "Comprimento máximo do array a expandir",
|
|
37
|
+
"cfgEventTagsDynamic": "Detetar automaticamente tags de eventos das gravações",
|
|
38
|
+
"cfgEventTagsIgnore": "Tags de eventos a ignorar (separadas por vírgulas)",
|
|
39
|
+
"cfgEventTags": "Tags de eventos fixas a criar sempre (separadas por vírgulas)"
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent-dvr adapter settings": "Настройки адаптера Agent DVR",
|
|
3
|
+
"tabConnection": "Соединение",
|
|
4
|
+
"tabFeatures": "Функции",
|
|
5
|
+
"tabWidget": "Виджет",
|
|
6
|
+
"tabAdvanced": "Расширенные",
|
|
7
|
+
"cfgIp": "IP-адрес AgentDVR",
|
|
8
|
+
"cfgPort": "Порт",
|
|
9
|
+
"cfgUser": "Имя пользователя (необязательно)",
|
|
10
|
+
"cfgPass": "Пароль (необязательно)",
|
|
11
|
+
"cfgPollSeconds": "Интервал опроса (секунды)",
|
|
12
|
+
"cfgHttpTimeoutMs": "Таймаут HTTP (мс)",
|
|
13
|
+
"cfgEnableSystemControls": "Кнопки управления системой",
|
|
14
|
+
"cfgEnablePtz": "Кнопки управления PTZ",
|
|
15
|
+
"cfgEnableUrls": "Генерировать URL потоков",
|
|
16
|
+
"cfgEnableEventDps": "Точки данных событий",
|
|
17
|
+
"cfgEnablePush": "Push-триггер в реальном времени",
|
|
18
|
+
"cfgEnableOverview": "Виджет обзора (все камеры)",
|
|
19
|
+
"cfgStoreRawJson": "Хранить необработанный JSON API",
|
|
20
|
+
"cfgEnableWidget": "Виджет галереи для каждой камеры",
|
|
21
|
+
"cfgWidgetMode": "Режим виджета",
|
|
22
|
+
"cfgWidgetModeNojs": "Чистый HTML/CSS (без JavaScript, совместим везде)",
|
|
23
|
+
"cfgWidgetModeJs": "Полный JS (поиск + фильтр тегов, требует выполнения скриптов)",
|
|
24
|
+
"cfgWidgetAnzahl": "Макс. записей в галерее",
|
|
25
|
+
"cfgWidgetMinCol": "Мин. ширина столбца (пx)",
|
|
26
|
+
"cfgWidgetShowTags": "Показывать теги событий",
|
|
27
|
+
"cfgWidgetLiveAspect": "Соотношение сторон живой плитки (напр. 16/9, оставить пустым для автоматического)",
|
|
28
|
+
"cfgWidgetTagPosition": "Позиция значка тега",
|
|
29
|
+
"cfgTagPosTopLeft": "Вверху слева",
|
|
30
|
+
"cfgTagPosTopRight": "Вверху справа",
|
|
31
|
+
"cfgTagPosBotLeft": "Внизу слева",
|
|
32
|
+
"cfgTagPosBotRight": "Внизу справа",
|
|
33
|
+
"cfgWidgetMaxModalWidth": "Макс. ширина плеера (пx)",
|
|
34
|
+
"cfgWidgetPlayerUrl": "URL внешнего плеера (оставить пустым для встроенного плеера)",
|
|
35
|
+
"cfgMaxDepth": "Макс. глубина выравнивания объектов",
|
|
36
|
+
"cfgMaxArray": "Макс. длина массива для разворачивания",
|
|
37
|
+
"cfgEventTagsDynamic": "Автоматически определять теги событий из записей",
|
|
38
|
+
"cfgEventTagsIgnore": "Теги событий для игнорирования (через запятую)",
|
|
39
|
+
"cfgEventTags": "Фиксированные теги событий, которые всегда создаются (через запятую)"
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent-dvr adapter settings": "Налаштування адаптера Agent DVR",
|
|
3
|
+
"tabConnection": "З'єднання",
|
|
4
|
+
"tabFeatures": "Функції",
|
|
5
|
+
"tabWidget": "Віджет",
|
|
6
|
+
"tabAdvanced": "Розширені",
|
|
7
|
+
"cfgIp": "IP-адреса AgentDVR",
|
|
8
|
+
"cfgPort": "Порт",
|
|
9
|
+
"cfgUser": "Ім'я користувача (необов'язково)",
|
|
10
|
+
"cfgPass": "Пароль (необов'язково)",
|
|
11
|
+
"cfgPollSeconds": "Інтервал опитування (секунди)",
|
|
12
|
+
"cfgHttpTimeoutMs": "Тайм-аут HTTP (мс)",
|
|
13
|
+
"cfgEnableSystemControls": "Кнопки керування системою",
|
|
14
|
+
"cfgEnablePtz": "Кнопки керування PTZ",
|
|
15
|
+
"cfgEnableUrls": "Генерувати URL потоків",
|
|
16
|
+
"cfgEnableEventDps": "Точки даних подій",
|
|
17
|
+
"cfgEnablePush": "Push-тригер у реальному часі",
|
|
18
|
+
"cfgEnableOverview": "Віджет огляду (всі камери)",
|
|
19
|
+
"cfgStoreRawJson": "Зберігати необроблений JSON API",
|
|
20
|
+
"cfgEnableWidget": "Віджет галереї для кожної камери",
|
|
21
|
+
"cfgWidgetMode": "Режим віджета",
|
|
22
|
+
"cfgWidgetModeNojs": "Чистий HTML/CSS (без JavaScript, сумісний скрізь)",
|
|
23
|
+
"cfgWidgetModeJs": "Повний JS (пошук + фільтр тегів, потребує виконання скриптів)",
|
|
24
|
+
"cfgWidgetAnzahl": "Макс. записів у галереї",
|
|
25
|
+
"cfgWidgetMinCol": "Мін. ширина стовпця (пкс)",
|
|
26
|
+
"cfgWidgetShowTags": "Показувати теги подій",
|
|
27
|
+
"cfgWidgetLiveAspect": "Співвідношення сторін живої плитки (напр. 16/9, залишити порожнім для автоматичного)",
|
|
28
|
+
"cfgWidgetTagPosition": "Позиція значка тега",
|
|
29
|
+
"cfgTagPosTopLeft": "Вгорі зліва",
|
|
30
|
+
"cfgTagPosTopRight": "Вгорі справа",
|
|
31
|
+
"cfgTagPosBotLeft": "Внизу зліва",
|
|
32
|
+
"cfgTagPosBotRight": "Внизу справа",
|
|
33
|
+
"cfgWidgetMaxModalWidth": "Макс. ширина програвача (пкс)",
|
|
34
|
+
"cfgWidgetPlayerUrl": "URL зовнішнього програвача (залишити порожнім для вбудованого програвача)",
|
|
35
|
+
"cfgMaxDepth": "Макс. глибина вирівнювання об'єктів",
|
|
36
|
+
"cfgMaxArray": "Макс. довжина масиву для розгортання",
|
|
37
|
+
"cfgEventTagsDynamic": "Автоматично визначати теги подій із записів",
|
|
38
|
+
"cfgEventTagsIgnore": "Теги подій для ігнорування (через кому)",
|
|
39
|
+
"cfgEventTags": "Фіксовані теги подій, які завжди створюються (через кому)"
|
|
40
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"agent-dvr adapter settings": "Agent DVR 适配器设置",
|
|
3
|
+
"tabConnection": "连接",
|
|
4
|
+
"tabFeatures": "功能",
|
|
5
|
+
"tabWidget": "小部件",
|
|
6
|
+
"tabAdvanced": "高级",
|
|
7
|
+
"cfgIp": "AgentDVR IP 地址",
|
|
8
|
+
"cfgPort": "端口",
|
|
9
|
+
"cfgUser": "用户名(可选)",
|
|
10
|
+
"cfgPass": "密码(可选)",
|
|
11
|
+
"cfgPollSeconds": "轮询间隔(秒)",
|
|
12
|
+
"cfgHttpTimeoutMs": "HTTP 超时(毫秒)",
|
|
13
|
+
"cfgEnableSystemControls": "系统控制按钮",
|
|
14
|
+
"cfgEnablePtz": "PTZ 控制按钮",
|
|
15
|
+
"cfgEnableUrls": "生成流 URL",
|
|
16
|
+
"cfgEnableEventDps": "事件数据点",
|
|
17
|
+
"cfgEnablePush": "实时推送触发器",
|
|
18
|
+
"cfgEnableOverview": "总览小部件(所有摄像头)",
|
|
19
|
+
"cfgStoreRawJson": "存储原始 API JSON",
|
|
20
|
+
"cfgEnableWidget": "每个摄像头的图库小部件",
|
|
21
|
+
"cfgWidgetMode": "小部件模式",
|
|
22
|
+
"cfgWidgetModeNojs": "纯 HTML/CSS(无 JavaScript,到处兼容)",
|
|
23
|
+
"cfgWidgetModeJs": "完整 JS(搜索 + 标签过滤,需要执行脚本)",
|
|
24
|
+
"cfgWidgetAnzahl": "图库中最大录像数",
|
|
25
|
+
"cfgWidgetMinCol": "最小列宽(像素)",
|
|
26
|
+
"cfgWidgetShowTags": "显示事件标签",
|
|
27
|
+
"cfgWidgetLiveAspect": "实时磁贴宽高比(例如 16/9,留空为自动)",
|
|
28
|
+
"cfgWidgetTagPosition": "标签徽章位置",
|
|
29
|
+
"cfgTagPosTopLeft": "左上",
|
|
30
|
+
"cfgTagPosTopRight": "右上",
|
|
31
|
+
"cfgTagPosBotLeft": "左下",
|
|
32
|
+
"cfgTagPosBotRight": "右下",
|
|
33
|
+
"cfgWidgetMaxModalWidth": "播放器最大宽度(像素)",
|
|
34
|
+
"cfgWidgetPlayerUrl": "外部播放器 URL(留空使用内置播放器)",
|
|
35
|
+
"cfgMaxDepth": "对象展平最大深度",
|
|
36
|
+
"cfgMaxArray": "要展开的最大数组长度",
|
|
37
|
+
"cfgEventTagsDynamic": "从录像中自动检测事件标签",
|
|
38
|
+
"cfgEventTagsIgnore": "要忽略的事件标签(逗号分隔)",
|
|
39
|
+
"cfgEventTags": "始终创建的固定事件标签(逗号分隔)"
|
|
40
|
+
}
|