iobroker.rest-api 2.0.2 → 3.0.0

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.
Files changed (51) hide show
  1. package/README.md +49 -8
  2. package/admin/i18n/{de/translations.json → de.json} +22 -22
  3. package/admin/i18n/{en/translations.json → en.json} +22 -23
  4. package/admin/i18n/{es/translations.json → es.json} +22 -23
  5. package/admin/i18n/{fr/translations.json → fr.json} +22 -23
  6. package/admin/i18n/{it/translations.json → it.json} +22 -23
  7. package/admin/i18n/{nl/translations.json → nl.json} +22 -23
  8. package/admin/i18n/{pl/translations.json → pl.json} +22 -23
  9. package/admin/i18n/{pt/translations.json → pt.json} +22 -23
  10. package/admin/i18n/{ru/translations.json → ru.json} +22 -23
  11. package/admin/i18n/uk.json +32 -0
  12. package/admin/i18n/{zh-cn/translations.json → zh-cn.json} +22 -23
  13. package/admin/jsonConfig.json +178 -180
  14. package/admin/rest-api.svg +8 -0
  15. package/dist/lib/api/controllers/common.js +129 -0
  16. package/dist/lib/api/controllers/common.js.map +1 -0
  17. package/dist/lib/api/controllers/enum.js +58 -0
  18. package/dist/lib/api/controllers/enum.js.map +1 -0
  19. package/dist/lib/api/controllers/file.js +104 -0
  20. package/dist/lib/api/controllers/file.js.map +1 -0
  21. package/dist/lib/api/controllers/history.js +262 -0
  22. package/dist/lib/api/controllers/history.js.map +1 -0
  23. package/dist/lib/api/controllers/object.js +346 -0
  24. package/dist/lib/api/controllers/object.js.map +1 -0
  25. package/dist/lib/api/controllers/sendTo.js +118 -0
  26. package/dist/lib/api/controllers/sendTo.js.map +1 -0
  27. package/dist/lib/api/controllers/state.js +545 -0
  28. package/dist/lib/api/controllers/state.js.map +1 -0
  29. package/dist/lib/api/swagger/swagger.yaml +2551 -0
  30. package/{lib → dist/lib}/common.js +8 -10
  31. package/dist/lib/common.js.map +1 -0
  32. package/dist/lib/rest-api.js +1216 -0
  33. package/dist/lib/rest-api.js.map +1 -0
  34. package/dist/main.js +159 -0
  35. package/dist/main.js.map +1 -0
  36. package/examples/demoBrowserClient.html +95 -82
  37. package/examples/demoNodeClient.js +8 -7
  38. package/examples/longPolling.js +46 -45
  39. package/io-package.json +43 -34
  40. package/package.json +36 -24
  41. package/lib/api/controllers/common.js +0 -150
  42. package/lib/api/controllers/enum.js +0 -44
  43. package/lib/api/controllers/file.js +0 -74
  44. package/lib/api/controllers/history.js +0 -239
  45. package/lib/api/controllers/object.js +0 -273
  46. package/lib/api/controllers/sendTo.js +0 -123
  47. package/lib/api/controllers/state.js +0 -565
  48. package/lib/api/swagger/swagger.yaml +0 -2624
  49. package/lib/rest-api.js +0 -1123
  50. package/main.js +0 -173
  51. /package/{lib → dist/lib}/config/default.yaml +0 -0
package/README.md CHANGED
@@ -11,20 +11,53 @@
11
11
 
12
12
  This is a RESTFul interface to read the objects and states from ioBroker and to write/control the states over HTTP Get/Post requests.
13
13
 
14
- The purpose of this adapter is similar to simple-api. But this adapter supports long-polling and URL hooks for subscribes.
14
+ The purpose of this adapter is similar to simple-api. But this adapter supports long-polling and URL hooks for subscribing.
15
15
 
16
16
  It has a beneficial web interface to play with the requests:
17
17
 
18
18
  ![Screenshot](img/screen.png)
19
19
 
20
20
  ## Usage
21
- Call in browser ```http://ipaddress:8093/``` and use Swagger UI to request and modify the states and objects.
21
+ Call in browser `http://ipaddress:8093/` and use Swagger UI to request and modify the states and objects.
22
22
 
23
23
  Some request examples:
24
24
  - `http://ipaddress:8093/v1/state/system.adapter.rest-api.0.memHeapTotal` - read state as JSON
25
25
  - `http://ipaddress:8093/v1/state/system.adapter.rest-api.0.memHeapTotal/plain` - read state as string (only value)
26
26
  - `http://ipaddress:8093/v1/state/system.adapter.rest-api.0.memHeapTotal?value=5` - write state with GET (only for back compatibility with simple-api)
27
- - `http://ipaddress:8093/v1/sendto/javascript.0?message=toScript&data={"message":"MESSAGE","data":"FROM REST-API"}` - send a message to javascript.0 in script `scriptName`
27
+ - `http://ipaddress:8093/v1/sendto/javascript.0?message=toScript&data={"message":"MESSAGE","data":"FROM REST-API"}` - send a message to `javascript.0` in script `scriptName`
28
+
29
+ ### Authentication
30
+ To enable the authentication, you must set the `Authentication` option in the configuration dialog.
31
+
32
+ There are three types of authentication supported:
33
+ - Credentials in query
34
+ - Basic authentication
35
+ - OAuth2 (Bearer)
36
+
37
+ For authentication in query, you must set `user` and `pass` in query like:
38
+ ```http
39
+ http://ipaddress:8093/v1/state/system.adapter.rest-api.0.memHeapTotal?user=admin&pass=admin
40
+ ```
41
+
42
+ For basic authentication, you must set the `Authorization` header with the value `Basic base64(user:pass)`.
43
+
44
+ For Oauth2 authentication, you must set the `Authorization` header with the value `Bearer <AccessToken>`.
45
+
46
+ The access token could vbe retirved with HTTP request like:
47
+ ```http
48
+ http://ipaddress:8093/oauth/token?grant_type=password&username=<user>&password=<password>&client_id=ioBroker
49
+ ```
50
+
51
+ The answer is like:
52
+ ```json
53
+ {
54
+ "access_token": "21f89e3eee32d3af08a71c1cc44ec72e0e3014a9",
55
+ "expires_in": "2025-02-23T11:39:32.208Z",
56
+ "refresh_token": "66d35faa5d53ca8242cfe57367210e76b7ffded7",
57
+ "refresh_token_expires_in": "2025-03-25T10:39:32.208Z",
58
+ "token_type": "Bearer"
59
+ }
60
+ ```
28
61
 
29
62
  ## Subscribe to the state's or object's changes
30
63
  Your application could get notifications by every change of the state or object.
@@ -39,7 +72,7 @@ This adapter supports a subscribing on data changes via long polling.
39
72
  Example for browser could be found here: [demoNodeClient.js](examples/demoBrowserClient.html)
40
73
 
41
74
  ## Web extension
42
- This adapter can run as a web extension. In this case, the path is available under http://iipaddress:8082/rest
75
+ This adapter can run as a web extension. In this case, the path is available under `http://ipaddress:8082/rest`
43
76
 
44
77
  ## Notice
45
78
  - `POST` is always for creating a resource (does not matter if it was duplicated)
@@ -76,8 +109,6 @@ You cannot send POST request to commands via GUI.
76
109
  - `getForeignStates(pattern)` - same as getStates
77
110
  - `getState(id)` - get state value by ID
78
111
  - `setState(id, state)` - set state value with JSON object (e.g. `{"val": 1, "ack": true}`)
79
- - `getBinaryState(id)` - get binary state by ID
80
- - `setBinaryState(id, base64)` - set binary state by ID
81
112
 
82
113
  ### Objects
83
114
  - `getObject(id)` - get object by ID
@@ -129,6 +160,7 @@ You cannot send POST request to commands via GUI.
129
160
  - `delObjects(id, options)` - delete objects by pattern
130
161
 
131
162
  ### Others
163
+ - `updateTokenExpiration(accessToken)`
132
164
  - `log(text, level[info])` - no answer - add log entry to ioBroker log
133
165
  - `checkFeatureSupported(feature)` - check if feature is supported by js-controller.
134
166
  - `getHistory(id, options)` - read history. See for options: https://github.com/ioBroker/ioBroker.history/blob/master/docs/en/README.md#access-values-from-javascript-adapter
@@ -149,7 +181,16 @@ You cannot send POST request to commands via GUI.
149
181
  -->
150
182
 
151
183
  ## Changelog
152
- ### 2.0.2 (2024-07-13)
184
+ ### 3.0.0 (2025-04-27)
185
+ * (@GermanBluefox) Rewritten in TypeScript
186
+ * (@GermanBluefox) Removed binary states
187
+
188
+ ### 2.1.0 (2025-02-27)
189
+ * (@GermanBluefox) Added OAuth2 support
190
+ * (@GermanBluefox) Updated packages
191
+ * (@GermanBluefox) Replaced icons with SVG
192
+
193
+ ### 2.0.3 (2024-07-13)
153
194
  * (jkuenemund) Changed response for the endpoint get states to the dictionary in swagger
154
195
 
155
196
  ### 2.0.1 (2024-05-23)
@@ -203,4 +244,4 @@ You cannot send POST request to commands via GUI.
203
244
  ## License
204
245
  Apache 2.0
205
246
 
206
- Copyright (c) 2017-2024 bluefox <dogafox@gmail.com>
247
+ Copyright (c) 2017-2025 bluefox <dogafox@gmail.com>
@@ -1,32 +1,32 @@
1
1
  {
2
- "Run as": "Laufen unter Anwender",
3
- "IP": "IP",
4
- "Port": "Port",
5
- "Warning!": "Warnung!",
6
- "Secure(HTTPS)": "Verschlüsselung(HTTPS)",
7
- "Authentication": "Authentifikation",
8
2
  "Allow only when User is Owner": "Nur erlauben wenn Anwender auch Besitzer ist",
9
- "Public certificate": "Öffentliches Zertifikat",
10
- "Private certificate": "Privatzertifikat",
3
+ "Authentication": "Authentifikation",
4
+ "Authentication was deactivated": "Die Authentifizierung wurde deaktiviert",
11
5
  "Chained certificate": "Kettenzertifikat",
12
- "none": "keins",
13
- "Unsecure_Auth": "Das Passwort wird über unsichere Verbindung gesendet. Um Ihre Passwörter zu schützen, aktivieren Sie die sichere Verbindung (HTTPS)!",
6
+ "Disable authentication": "Authentifizierung deaktivieren",
14
7
  "Extend WEB adapter": "WEB-Adapter erweitern",
15
- "all": "alle",
16
- "Select data source": "Datenquelle auswählen",
8
+ "How often the hook URLs will be checked": "Wie oft die Hook-URLs überprüft werden",
9
+ "IP": "IP",
10
+ "Ignore warning": "Warnung ignorieren",
11
+ "Let's Encrypt SSL": "Let's Encrypt SSL",
12
+ "Let's Encrypt settings": "Einstellungen Let's Encrypt",
17
13
  "List all datapoints": "Alle Datenpunkte auflisten",
18
14
  "Listen on all IPs": "Alle IPs zulassen",
19
- "Let's Encrypt settings": "Einstellungen Let's Encrypt",
20
- "Use Lets Encrypt certificates": "Let's Encrypt Zertifikate verwenden",
21
- "Use this instance for automatic update": "Diese Instanz für automatische Updates verwenden",
15
+ "No GUI": "Keine GUI",
16
+ "Port": "Port",
22
17
  "Port to check the domain": "Port um die Domain zu prüfen",
18
+ "Private certificate": "Privatzertifikat",
19
+ "Public certificate": "Öffentliches Zertifikat",
20
+ "Run as": "Laufen unter Anwender",
21
+ "Secure(HTTPS)": "Verschlüsselung(HTTPS)",
22
+ "Select data source": "Datenquelle auswählen",
23
23
  "Set certificates or load it first in the system settings (right top).": "Setze Zertificate oder lade die erst unter System/Einstellungen (oben rechts).",
24
- "Ignore warning": "Warnung ignorieren",
25
- "place here": "Dateien hier platzieren",
26
- "Disable authentication": "Authentifizierung deaktivieren",
27
- "Authentication was deactivated": "Die Authentifizierung wurde deaktiviert",
28
24
  "Timeout for URL hook": "Timeout für URL-Hook",
29
- "How often the hook URLs will be checked": "Wie oft die Hook-URLs überprüft werden",
30
- "No GUI": "Keine GUI",
31
- "Let's Encrypt SSL": "Let's Encrypt SSL"
25
+ "Unsecure_Auth": "Das Passwort wird über unsichere Verbindung gesendet. Um Ihre Passwörter zu schützen, aktivieren Sie die sichere Verbindung (HTTPS)!",
26
+ "Use Lets Encrypt certificates": "Let's Encrypt Zertifikate verwenden",
27
+ "Use this instance for automatic update": "Diese Instanz für automatische Updates verwenden",
28
+ "Warning!": "Warnung!",
29
+ "all": "alle",
30
+ "none": "keins",
31
+ "place here": "Dateien hier platzieren"
32
32
  }
@@ -1,33 +1,32 @@
1
1
  {
2
- "simpleAPI adapter settings": "",
3
- "Run as": "Run as",
4
- "IP": "IP",
5
- "Port": "Port",
6
- "Warning!": "Warning!",
7
- "Secure(HTTPS)": "Secure(HTTPS)",
8
- "Authentication": "Authentication",
9
2
  "Allow only when User is Owner": "Allow only when User is Owner",
10
- "Public certificate": "Public certificate",
11
- "Private certificate": "Private certificate",
3
+ "Authentication": "Authentication",
4
+ "Authentication was deactivated": "Authentication was deactivated",
12
5
  "Chained certificate": "Chained certificate",
13
- "none": "none",
14
- "Unsecure_Auth": "The password will be sent via unsecure connection. To protect your passwords enable the secure connection (HTTPS)!",
6
+ "Disable authentication": "Disable authentication",
15
7
  "Extend WEB adapter": "Extend WEB adapter",
16
- "all": "all",
17
- "Select data source": "Select data source",
8
+ "How often the hook URLs will be checked": "How often the hook URLs will be checked",
9
+ "IP": "IP",
10
+ "Ignore warning": "Ignore warning",
11
+ "Let's Encrypt SSL": "Let's Encrypt SSL",
12
+ "Let's Encrypt settings": "Let's Encrypt settings",
18
13
  "List all datapoints": "List all data points",
19
14
  "Listen on all IPs": "Listen on all IPs",
20
- "Let's Encrypt settings": "Let's Encrypt settings",
21
- "Use Lets Encrypt certificates": "Use Let's Encrypt certificates",
22
- "Use this instance for automatic update": "Use this instance for automatic update",
15
+ "No GUI": "No GUI",
16
+ "Port": "Port",
23
17
  "Port to check the domain": "Port to check the domain",
18
+ "Private certificate": "Private certificate",
19
+ "Public certificate": "Public certificate",
20
+ "Run as": "Run as",
21
+ "Secure(HTTPS)": "Secure(HTTPS)",
22
+ "Select data source": "Select data source",
24
23
  "Set certificates or load it first in the system settings (right top).": "Set certificates or load it first in the system settings (right top).",
25
- "Ignore warning": "Ignore warning",
26
- "place here": "place the files here",
27
- "Disable authentication": "Disable authentication",
28
- "Authentication was deactivated": "Authentication was deactivated",
29
24
  "Timeout for URL hook": "Timeout for URL hook",
30
- "How often the hook URLs will be checked": "How often the hook URLs will be checked",
31
- "No GUI": "No GUI",
32
- "Let's Encrypt SSL": "Let's Encrypt SSL"
25
+ "Unsecure_Auth": "The password will be sent via unsecure connection. To protect your passwords enable the secure connection (HTTPS)!",
26
+ "Use Lets Encrypt certificates": "Use Let's Encrypt certificates",
27
+ "Use this instance for automatic update": "Use this instance for automatic update",
28
+ "Warning!": "Warning!",
29
+ "all": "all",
30
+ "none": "none",
31
+ "place here": "place the files here"
33
32
  }
@@ -1,33 +1,32 @@
1
1
  {
2
- "simpleAPI adapter settings": "",
3
- "Run as": "Correr como",
4
- "IP": "IP",
5
- "Port": "Puerto",
6
- "Warning!": "¡Advertencia!",
7
- "Secure(HTTPS)": "Seguro (HTTPS)",
8
- "Authentication": "Autenticación",
9
2
  "Allow only when User is Owner": "Permitir solo cuando el usuario es propietario",
10
- "Public certificate": "Certificado público",
11
- "Private certificate": "Certificado privado",
3
+ "Authentication": "Autenticación",
4
+ "Authentication was deactivated": "La autenticación fue desactivada",
12
5
  "Chained certificate": "Certificado encadenado",
13
- "none": "ninguna",
14
- "Unsecure_Auth": "La contraseña se enviará a través de una conexión no segura. Para proteger sus contraseñas, ¡habilite la conexión segura (HTTPS)!",
6
+ "Disable authentication": "Deshabilitar autenticación",
15
7
  "Extend WEB adapter": "Amplíe el adaptador WEB",
16
- "all": "todas",
17
- "Select data source": "Seleccionar fuente de datos",
8
+ "How often the hook URLs will be checked": "Con qué frecuencia se verificarán las URL de enlace",
9
+ "IP": "IP",
10
+ "Ignore warning": "Ignorar advertencia",
11
+ "Let's Encrypt SSL": "Let's Encrypt SSL",
12
+ "Let's Encrypt settings": "Vamos a cifrar la configuración",
18
13
  "List all datapoints": "Listar todos los puntos de datos",
19
14
  "Listen on all IPs": "Escuchar en todas las direcciones IP",
20
- "Let's Encrypt settings": "Vamos a cifrar la configuración",
21
- "Use Lets Encrypt certificates": "Utilice los certificados Let's Encrypt",
22
- "Use this instance for automatic update": "Use esta instancia para la actualización automática",
15
+ "No GUI": "Sin GUI",
16
+ "Port": "Puerto",
23
17
  "Port to check the domain": "Puerto para verificar el dominio",
18
+ "Private certificate": "Certificado privado",
19
+ "Public certificate": "Certificado público",
20
+ "Run as": "Correr como",
21
+ "Secure(HTTPS)": "Seguro (HTTPS)",
22
+ "Select data source": "Seleccionar fuente de datos",
24
23
  "Set certificates or load it first in the system settings (right top).": "Establezca certificados o cárguelos primero en la configuración del sistema (arriba a la derecha).",
25
- "Ignore warning": "Ignorar advertencia",
26
- "place here": "coloca los archivos aquí",
27
- "Disable authentication": "Deshabilitar autenticación",
28
- "Authentication was deactivated": "La autenticación fue desactivada",
29
24
  "Timeout for URL hook": "Tiempo de espera para enlace de URL",
30
- "How often the hook URLs will be checked": "Con qué frecuencia se verificarán las URL de enlace",
31
- "No GUI": "Sin GUI",
32
- "Let's Encrypt SSL": "Let's Encrypt SSL"
25
+ "Unsecure_Auth": "La contraseña se enviará a través de una conexión no segura. Para proteger sus contraseñas, ¡habilite la conexión segura (HTTPS)!",
26
+ "Use Lets Encrypt certificates": "Utilice los certificados Let's Encrypt",
27
+ "Use this instance for automatic update": "Use esta instancia para la actualización automática",
28
+ "Warning!": "¡Advertencia!",
29
+ "all": "todas",
30
+ "none": "ninguna",
31
+ "place here": "coloca los archivos aquí"
33
32
  }
@@ -1,33 +1,32 @@
1
1
  {
2
- "simpleAPI adapter settings": "",
3
- "Run as": "Courir comme",
4
- "IP": "IP",
5
- "Port": "Port",
6
- "Warning!": "Attention!",
7
- "Secure(HTTPS)": "Sécurisé (HTTPS)",
8
- "Authentication": "Authentification",
9
2
  "Allow only when User is Owner": "Autoriser uniquement lorsque l'utilisateur est propriétaire",
10
- "Public certificate": "Certificat public",
11
- "Private certificate": "Certificat privé",
3
+ "Authentication": "Authentification",
4
+ "Authentication was deactivated": "L'authentification a été désactivée",
12
5
  "Chained certificate": "Certificat chaîné",
13
- "none": "aucun",
14
- "Unsecure_Auth": "Le mot de passe sera envoyé via une connexion non sécurisée. Pour protéger vos mots de passe, activez la connexion sécurisée (HTTPS)!",
6
+ "Disable authentication": "Désactiver l'authentification",
15
7
  "Extend WEB adapter": "Étendre l'adaptateur WEB",
16
- "all": "tout",
17
- "Select data source": "Sélectionner une source de données",
8
+ "How often the hook URLs will be checked": "À quelle fréquence les URL de crochet seront vérifiées",
9
+ "IP": "IP",
10
+ "Ignore warning": "Ignorer l'avertissement",
11
+ "Let's Encrypt SSL": "Let's Encrypt SSL",
12
+ "Let's Encrypt settings": "Cryptons les paramètres",
18
13
  "List all datapoints": "Lister tous les points de données",
19
14
  "Listen on all IPs": "Écoutez sur toutes les adresses IP",
20
- "Let's Encrypt settings": "Cryptons les paramètres",
21
- "Use Lets Encrypt certificates": "Utiliser les certificats Let's Encrypt",
22
- "Use this instance for automatic update": "Utilisez cette instance pour la mise à jour automatique",
15
+ "No GUI": "Pas d'interface graphique",
16
+ "Port": "Port",
23
17
  "Port to check the domain": "Port pour vérifier le domaine",
18
+ "Private certificate": "Certificat privé",
19
+ "Public certificate": "Certificat public",
20
+ "Run as": "Courir comme",
21
+ "Secure(HTTPS)": "Sécurisé (HTTPS)",
22
+ "Select data source": "Sélectionner une source de données",
24
23
  "Set certificates or load it first in the system settings (right top).": "Définissez des certificats ou chargez-les d'abord dans les paramètres du système (en haut à droite).",
25
- "Ignore warning": "Ignorer l'avertissement",
26
- "place here": "Placez les fichiers ici",
27
- "Disable authentication": "Désactiver l'authentification",
28
- "Authentication was deactivated": "L'authentification a été désactivée",
29
24
  "Timeout for URL hook": "Délai d'attente pour le hook d'URL",
30
- "How often the hook URLs will be checked": quelle fréquence les URL de crochet seront vérifiées",
31
- "No GUI": "Pas d'interface graphique",
32
- "Let's Encrypt SSL": "Let's Encrypt SSL"
25
+ "Unsecure_Auth": "Le mot de passe sera envoyé via une connexion non sécurisée. Pour protéger vos mots de passe, activez la connexion sécurisée (HTTPS)!",
26
+ "Use Lets Encrypt certificates": "Utiliser les certificats Let's Encrypt",
27
+ "Use this instance for automatic update": "Utilisez cette instance pour la mise à jour automatique",
28
+ "Warning!": "Attention!",
29
+ "all": "tout",
30
+ "none": "aucun",
31
+ "place here": "Placez les fichiers ici"
33
32
  }
@@ -1,33 +1,32 @@
1
1
  {
2
- "simpleAPI adapter settings": "",
3
- "Run as": "Correre come",
4
- "IP": "IP",
5
- "Port": "Porta",
6
- "Warning!": "Avvertimento!",
7
- "Secure(HTTPS)": "Sicuro (HTTPS)",
8
- "Authentication": "Autenticazione",
9
2
  "Allow only when User is Owner": "Consenti solo quando l'utente è proprietario",
10
- "Public certificate": "Certificato pubblico",
11
- "Private certificate": "Certificato privato",
3
+ "Authentication": "Autenticazione",
4
+ "Authentication was deactivated": "L'autenticazione è stata disattivata",
12
5
  "Chained certificate": "Certificato incatenato",
13
- "none": "nessuna",
14
- "Unsecure_Auth": "La password verrà inviata tramite connessione non protetta. Per proteggere le tue password abilita la connessione sicura (HTTPS)!",
6
+ "Disable authentication": "Disabilitare l'autenticazione",
15
7
  "Extend WEB adapter": "Estendi l'adattatore WEB",
16
- "all": "tutti",
17
- "Select data source": "Seleziona l'origine dati",
8
+ "How often the hook URLs will be checked": "Con quale frequenza verranno controllati gli hook URL",
9
+ "IP": "IP",
10
+ "Ignore warning": "Ignora l'avviso",
11
+ "Let's Encrypt SSL": "Let's Encrypt SSL",
12
+ "Let's Encrypt settings": "Let's Encrypt settings",
18
13
  "List all datapoints": "Elenca tutti i punti dati",
19
14
  "Listen on all IPs": "Ascolta su tutti gli IP",
20
- "Let's Encrypt settings": "Let's Encrypt settings",
21
- "Use Lets Encrypt certificates": "Utilizza Let's Encrypt certificates",
22
- "Use this instance for automatic update": "Utilizza questa istanza per l'aggiornamento automatico",
15
+ "No GUI": "Nessuna interfaccia grafica",
16
+ "Port": "Porta",
23
17
  "Port to check the domain": "Porta per controllare il dominio",
18
+ "Private certificate": "Certificato privato",
19
+ "Public certificate": "Certificato pubblico",
20
+ "Run as": "Correre come",
21
+ "Secure(HTTPS)": "Sicuro (HTTPS)",
22
+ "Select data source": "Seleziona l'origine dati",
24
23
  "Set certificates or load it first in the system settings (right top).": "Imposta i certificati o caricali prima nelle impostazioni di sistema (in alto a destra).",
25
- "Ignore warning": "Ignora l'avviso",
26
- "place here": "posiziona i file qui",
27
- "Disable authentication": "Disabilitare l'autenticazione",
28
- "Authentication was deactivated": "L'autenticazione è stata disattivata",
29
24
  "Timeout for URL hook": "Timeout per hook URL",
30
- "How often the hook URLs will be checked": "Con quale frequenza verranno controllati gli hook URL",
31
- "No GUI": "Nessuna interfaccia grafica",
32
- "Let's Encrypt SSL": "Let's Encrypt SSL"
25
+ "Unsecure_Auth": "La password verrà inviata tramite connessione non protetta. Per proteggere le tue password abilita la connessione sicura (HTTPS)!",
26
+ "Use Lets Encrypt certificates": "Utilizza Let's Encrypt certificates",
27
+ "Use this instance for automatic update": "Utilizza questa istanza per l'aggiornamento automatico",
28
+ "Warning!": "Avvertimento!",
29
+ "all": "tutti",
30
+ "none": "nessuna",
31
+ "place here": "posiziona i file qui"
33
32
  }
@@ -1,33 +1,32 @@
1
1
  {
2
- "simpleAPI adapter settings": "",
3
- "Run as": "Rennen als",
4
- "IP": "IK P",
5
- "Port": "Haven",
6
- "Warning!": "Waarschuwing!",
7
- "Secure(HTTPS)": "Secure (HTTPS)",
8
- "Authentication": "authenticatie",
9
2
  "Allow only when User is Owner": "Alleen toestaan als gebruiker eigenaar is",
10
- "Public certificate": "Openbaar certificaat",
11
- "Private certificate": "Privé certificaat",
3
+ "Authentication": "authenticatie",
4
+ "Authentication was deactivated": "Verificatie was gedeactiveerd",
12
5
  "Chained certificate": "Geketend certificaat",
13
- "none": "geen",
14
- "Unsecure_Auth": "Het wachtwoord wordt verzonden via onbeveiligde verbinding. Ter beveiliging van uw wachtwoorden schakelt u de beveiligde verbinding (HTTPS) in!",
6
+ "Disable authentication": "Schakel verificatie uit",
15
7
  "Extend WEB adapter": "WEB-adapter uitbreiden",
16
- "all": "allemaal",
17
- "Select data source": "Selecteer gegevensbron",
8
+ "How often the hook URLs will be checked": "Hoe vaak de hook-URL's worden gecontroleerd",
9
+ "IP": "IK P",
10
+ "Ignore warning": "Negeer waarschuwing",
11
+ "Let's Encrypt SSL": "Let's Encrypt SSL",
12
+ "Let's Encrypt settings": "Laten we de instellingen versleutelen",
18
13
  "List all datapoints": "Lijst alle gegevenspunten",
19
14
  "Listen on all IPs": "Luister op alle IP's",
20
- "Let's Encrypt settings": "Laten we de instellingen versleutelen",
21
- "Use Lets Encrypt certificates": "Gebruik Let's Encrypt-certificaten",
22
- "Use this instance for automatic update": "Gebruik deze instantie voor automatische update",
15
+ "No GUI": "Geen GUI",
16
+ "Port": "Haven",
23
17
  "Port to check the domain": "Poort om het domein te controleren",
18
+ "Private certificate": "Privé certificaat",
19
+ "Public certificate": "Openbaar certificaat",
20
+ "Run as": "Rennen als",
21
+ "Secure(HTTPS)": "Secure (HTTPS)",
22
+ "Select data source": "Selecteer gegevensbron",
24
23
  "Set certificates or load it first in the system settings (right top).": "Stel certificaten in of laad het eerst in de systeeminstellingen (rechtsboven).",
25
- "Ignore warning": "Negeer waarschuwing",
26
- "place here": "plaats de bestanden hier",
27
- "Disable authentication": "Schakel verificatie uit",
28
- "Authentication was deactivated": "Verificatie was gedeactiveerd",
29
24
  "Timeout for URL hook": "Time-out voor URL-hook",
30
- "How often the hook URLs will be checked": "Hoe vaak de hook-URL's worden gecontroleerd",
31
- "No GUI": "Geen GUI",
32
- "Let's Encrypt SSL": "Let's Encrypt SSL"
25
+ "Unsecure_Auth": "Het wachtwoord wordt verzonden via onbeveiligde verbinding. Ter beveiliging van uw wachtwoorden schakelt u de beveiligde verbinding (HTTPS) in!",
26
+ "Use Lets Encrypt certificates": "Gebruik Let's Encrypt-certificaten",
27
+ "Use this instance for automatic update": "Gebruik deze instantie voor automatische update",
28
+ "Warning!": "Waarschuwing!",
29
+ "all": "allemaal",
30
+ "none": "geen",
31
+ "place here": "plaats de bestanden hier"
33
32
  }
@@ -1,33 +1,32 @@
1
1
  {
2
- "simpleAPI adapter settings": "",
3
- "Run as": "Uruchom jako",
4
- "IP": "IP",
5
- "Port": "Port",
6
- "Warning!": "Ostrzeżenie!",
7
- "Secure(HTTPS)": "Bezpieczne (HTTPS)",
8
- "Authentication": "Poświadczenie",
9
2
  "Allow only when User is Owner": "Zezwalaj tylko wtedy, gdy użytkownik jest właścicielem",
10
- "Public certificate": "Certyfikat publiczny",
11
- "Private certificate": "Prywatny certyfikat",
3
+ "Authentication": "Poświadczenie",
4
+ "Authentication was deactivated": "Uwierzytelnianie zostało dezaktywowane",
12
5
  "Chained certificate": "Przykuty certyfikat",
13
- "none": "Żaden",
14
- "Unsecure_Auth": "Hasło zostanie wysłane przez połączenie bez zabezpieczeń. Aby chronić swoje hasła, włącz bezpieczne połączenie (HTTPS)!",
6
+ "Disable authentication": "Wyłącz uwierzytelnianie",
15
7
  "Extend WEB adapter": "Przedłuż adapter WEB",
16
- "all": "wszystko",
17
- "Select data source": "Wybierz źródło danych",
8
+ "How often the hook URLs will be checked": "Jak często będą sprawdzane adresy URL haków",
9
+ "IP": "IP",
10
+ "Ignore warning": "Zignoruj ​​ostrzeżenie",
11
+ "Let's Encrypt SSL": "Let's Encrypt SSL",
12
+ "Let's Encrypt settings": "Zakodujmy ustawienia",
18
13
  "List all datapoints": "Wyświetl wszystkie punkty danych",
19
14
  "Listen on all IPs": "Posłuchaj na wszystkich IP",
20
- "Let's Encrypt settings": "Zakodujmy ustawienia",
21
- "Use Lets Encrypt certificates": "Użyj Let's Encrypt certificates",
22
- "Use this instance for automatic update": "Użyj tej instancji do automatycznej aktualizacji",
15
+ "No GUI": "Brak GUI",
16
+ "Port": "Port",
23
17
  "Port to check the domain": "Port do sprawdzenia domeny",
18
+ "Private certificate": "Prywatny certyfikat",
19
+ "Public certificate": "Certyfikat publiczny",
20
+ "Run as": "Uruchom jako",
21
+ "Secure(HTTPS)": "Bezpieczne (HTTPS)",
22
+ "Select data source": "Wybierz źródło danych",
24
23
  "Set certificates or load it first in the system settings (right top).": "Ustaw certyfikaty lub załaduj najpierw w ustawieniach systemu (prawy górny).",
25
- "Ignore warning": "Zignoruj ​​ostrzeżenie",
26
- "place here": "umieść pliki tutaj",
27
- "Disable authentication": "Wyłącz uwierzytelnianie",
28
- "Authentication was deactivated": "Uwierzytelnianie zostało dezaktywowane",
29
24
  "Timeout for URL hook": "Limit czasu dla haka URL",
30
- "How often the hook URLs will be checked": "Jak często będą sprawdzane adresy URL haków",
31
- "No GUI": "Brak GUI",
32
- "Let's Encrypt SSL": "Let's Encrypt SSL"
25
+ "Unsecure_Auth": "Hasło zostanie wysłane przez połączenie bez zabezpieczeń. Aby chronić swoje hasła, włącz bezpieczne połączenie (HTTPS)!",
26
+ "Use Lets Encrypt certificates": "Użyj Let's Encrypt certificates",
27
+ "Use this instance for automatic update": "Użyj tej instancji do automatycznej aktualizacji",
28
+ "Warning!": "Ostrzeżenie!",
29
+ "all": "wszystko",
30
+ "none": "Żaden",
31
+ "place here": "umieść pliki tutaj"
33
32
  }
@@ -1,33 +1,32 @@
1
1
  {
2
- "simpleAPI adapter settings": "",
3
- "Run as": "Correr como",
4
- "IP": "IP",
5
- "Port": "Porta",
6
- "Warning!": "Atenção!",
7
- "Secure(HTTPS)": "Seguro (HTTPS)",
8
- "Authentication": "Autenticação",
9
2
  "Allow only when User is Owner": "Permitir apenas quando o usuário é proprietário",
10
- "Public certificate": "Certificado público",
11
- "Private certificate": "Certificado privado",
3
+ "Authentication": "Autenticação",
4
+ "Authentication was deactivated": "A autenticação foi desativada",
12
5
  "Chained certificate": "Certificado acorrentado",
13
- "none": "Nenhum",
14
- "Unsecure_Auth": "A senha será enviada por meio de conexão não segura. Para proteger suas senhas, ative a conexão segura (HTTPS)!",
6
+ "Disable authentication": "Desativar autenticação",
15
7
  "Extend WEB adapter": "Estender adaptador WEB",
16
- "all": "tudo",
17
- "Select data source": "Selecionar fonte de dados",
8
+ "How often the hook URLs will be checked": "Com que frequência os URLs de gancho serão verificados",
9
+ "IP": "IP",
10
+ "Ignore warning": "Ignorar aviso",
11
+ "Let's Encrypt SSL": "Let's Encrypt SSL",
12
+ "Let's Encrypt settings": "Vamos criptografar configurações",
18
13
  "List all datapoints": "Listar todos os pontos de dados",
19
14
  "Listen on all IPs": "Ouça todos os IPs",
20
- "Let's Encrypt settings": "Vamos criptografar configurações",
21
- "Use Lets Encrypt certificates": "Use Vamos criptografar certificados",
22
- "Use this instance for automatic update": "Use esta instância para atualização automática",
15
+ "No GUI": "Sem interface gráfica",
16
+ "Port": "Porta",
23
17
  "Port to check the domain": "Porta para verificar o domínio",
18
+ "Private certificate": "Certificado privado",
19
+ "Public certificate": "Certificado público",
20
+ "Run as": "Correr como",
21
+ "Secure(HTTPS)": "Seguro (HTTPS)",
22
+ "Select data source": "Selecionar fonte de dados",
24
23
  "Set certificates or load it first in the system settings (right top).": "Defina certificados ou carregue primeiro nas configurações do sistema (parte superior direita).",
25
- "Ignore warning": "Ignorar aviso",
26
- "place here": "coloque os arquivos aqui",
27
- "Disable authentication": "Desativar autenticação",
28
- "Authentication was deactivated": "A autenticação foi desativada",
29
24
  "Timeout for URL hook": "Tempo limite para gancho de URL",
30
- "How often the hook URLs will be checked": "Com que frequência os URLs de gancho serão verificados",
31
- "No GUI": "Sem interface gráfica",
32
- "Let's Encrypt SSL": "Let's Encrypt SSL"
25
+ "Unsecure_Auth": "A senha será enviada por meio de conexão não segura. Para proteger suas senhas, ative a conexão segura (HTTPS)!",
26
+ "Use Lets Encrypt certificates": "Use Vamos criptografar certificados",
27
+ "Use this instance for automatic update": "Use esta instância para atualização automática",
28
+ "Warning!": "Atenção!",
29
+ "all": "tudo",
30
+ "none": "Nenhum",
31
+ "place here": "coloque os arquivos aqui"
33
32
  }