iobroker.script-restore 0.0.10 → 0.0.12
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/README.de.md +148 -0
- package/README.md +12 -27
- package/admin/i18n/de/translations.json +24 -24
- package/admin/i18n/es/translations.json +34 -34
- package/admin/i18n/fr/translations.json +34 -34
- package/admin/i18n/it/translations.json +32 -32
- package/admin/i18n/nl/translations.json +34 -34
- package/admin/i18n/pl/translations.json +32 -32
- package/admin/i18n/pt/translations.json +34 -34
- package/admin/i18n/ru/translations.json +34 -34
- package/admin/i18n/uk/translations.json +34 -34
- package/admin/i18n/zh-cn/translations.json +34 -34
- package/admin/tab_m.html +157 -3
- package/build/main.js +67 -0
- package/build/main.js.map +2 -2
- package/io-package.json +29 -28
- package/package.json +3 -3
- package/admin/words.js +0 -444
package/README.de.md
ADDED
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+

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

|
|
8
|
+

|
|
9
|
+
[](https://nodei.co/npm/iobroker.script-restore/)
|
|
10
|
+
|
|
11
|
+
**Tests:** 
|
|
12
|
+
|
|
13
|
+
## script-restore Adapter für ioBroker
|
|
14
|
+
|
|
15
|
+
Einzelne Skripte aus ioBroker-Backup-Archiven durchsuchen und wiederherstellen — ohne das gesamte Backup einspielen zu müssen.
|
|
16
|
+
|
|
17
|
+
## Beschreibung
|
|
18
|
+
|
|
19
|
+
Der script-restore Adapter fügt dem ioBroker-Admin-Interface einen Tab hinzu, über den Backup-Archive geöffnet und alle enthaltenen JavaScript-, TypeScript-, Blockly- und Rules-Skripte durchsucht werden können. Der Quellcode jedes Skripts kann einzeln angezeigt, heruntergeladen oder kopiert werden.
|
|
20
|
+
|
|
21
|
+
Das Archiv wird vollständig im Browser geparst — beim Durchsuchen werden keine Dateien auf die Festplatte geschrieben.
|
|
22
|
+
|
|
23
|
+
## Funktionen
|
|
24
|
+
|
|
25
|
+
- Backup-Archive direkt im ioBroker-Admin-Tab durchsuchen
|
|
26
|
+
- Lokale Backup-Dateien aus dem Backup-Verzeichnis laden (Standard: `/opt/iobroker/backups`)
|
|
27
|
+
- Archivdateien direkt vom Computer hochladen
|
|
28
|
+
- Unterstützte Formate: `.tar.gz`, `.tar`, `.json`, `.jsonl`
|
|
29
|
+
- Baumansicht aller Skripte nach Ordner sortiert
|
|
30
|
+
- Skripte nach Typ filtern: JS, TypeScript, Blockly, Rules
|
|
31
|
+
- Volltextsuche über Skriptnamen, Pfade und Quellcode
|
|
32
|
+
- Quellcode anzeigen (JS/TS/Blockly/Rules)
|
|
33
|
+
- Quellcode in die Zwischenablage kopieren oder als Datei herunterladen
|
|
34
|
+
- Vollständig browserbasiertes Parsen — kein Server-Roundtrip bei Uploads
|
|
35
|
+
- Mehrere Skripte mit Strg+Klick auswählen und als ZIP herunterladen
|
|
36
|
+
- Optionale Quellen: Lokal, FTP, SMB, HTTP, SFTP, WebDAV
|
|
37
|
+
- **Skripte direkt in ioBroker laden** mit konfigurierbarem Suffix (Standard: `_rcvr`) — bestehende Skripte werden nie überschrieben
|
|
38
|
+
|
|
39
|
+
## Konfiguration
|
|
40
|
+
|
|
41
|
+
| Einstellung | Beschreibung | Standard |
|
|
42
|
+
|-------------|--------------|----------|
|
|
43
|
+
| Backup-Pfad | Verzeichnis mit ioBroker-Backup-Dateien | `/opt/iobroker/backups` |
|
|
44
|
+
|
|
45
|
+
## Verwendung
|
|
46
|
+
|
|
47
|
+
### Lokale Backup-Datei laden
|
|
48
|
+
|
|
49
|
+
1. Den Tab **Script Restore** im ioBroker-Admin öffnen
|
|
50
|
+
2. Auf das Dropdown **Lokale Dateien** klicken
|
|
51
|
+
3. Eine Backup-Datei aus der Liste auswählen — die Skripte werden automatisch geladen
|
|
52
|
+
|
|
53
|
+
### Backup-Datei hochladen
|
|
54
|
+
|
|
55
|
+
1. Den Tab **Script Restore** im ioBroker-Admin öffnen
|
|
56
|
+
2. Auf **Archiv hochladen** klicken und eine Datei vom Computer auswählen
|
|
57
|
+
3. Das Archiv wird im Browser geparst und alle Skripte werden angezeigt
|
|
58
|
+
|
|
59
|
+
### Skripte ansehen und herunterladen
|
|
60
|
+
|
|
61
|
+
- Ein Skript im Baum anklicken, um den Quellcode anzuzeigen
|
|
62
|
+
- **Kopieren**-Schaltfläche nutzen, um den Quellcode in die Zwischenablage zu kopieren
|
|
63
|
+
- **Herunterladen**-Schaltfläche nutzen, um das Skript als Datei zu speichern
|
|
64
|
+
|
|
65
|
+
## Unterstützte Backup-Formate
|
|
66
|
+
|
|
67
|
+
| Format | Beschreibung |
|
|
68
|
+
|--------|--------------|
|
|
69
|
+
| `.tar.gz` | Standard-ioBroker-Backup (`iobroker_YYYY-MM-DD-HH-mm_SS_backupiobroker.tar.gz`) |
|
|
70
|
+
| `.tar` | Unkomprimiertes Tar-Archiv |
|
|
71
|
+
| `.json` | JavaScript-Adapter Skript-Export |
|
|
72
|
+
| `.jsonl` | ioBroker-Objekte-Export (JSON Lines) |
|
|
73
|
+
|
|
74
|
+
## Changelog
|
|
75
|
+
|
|
76
|
+
<!--
|
|
77
|
+
Placeholder for the next version (at the beginning of the line):
|
|
78
|
+
### **WORK IN PROGRESS**
|
|
79
|
+
-->
|
|
80
|
+
### **WORK IN PROGRESS**
|
|
81
|
+
* (ipod86) Typ-Filter (JS/TS/Blockly/Rules) in der Skript-Sidebar hinzugefügt
|
|
82
|
+
* (ipod86) Direktes Laden in ioBroker mit Suffix-Eingabe und Bestätigungs-Modal hinzugefügt
|
|
83
|
+
* (ipod86) Veraltete admin/words.js und .prettierignore entfernt
|
|
84
|
+
|
|
85
|
+
### 0.0.10 (2026-04-08)
|
|
86
|
+
* (ipod86) jsonConfig: responsive Größen lg/xl für backupPath korrigiert (E5509)
|
|
87
|
+
* (ipod86) News-Einträge auf 7 begrenzt (W1032)
|
|
88
|
+
* (ipod86) Dependabot npm cooldown von 7 Tagen hinzugefügt (W8915)
|
|
89
|
+
|
|
90
|
+
### 0.0.9 (2026-04-08)
|
|
91
|
+
* (ipod86) jsonConfig: responsive Größenattribute ergänzt (E5507)
|
|
92
|
+
* (ipod86) i18n-Übersetzungsdateien hinzugefügt (W5022)
|
|
93
|
+
* (ipod86) veraltete index_m.html und style.css entfernt (W5047)
|
|
94
|
+
* (ipod86) ungültiges copyToField-Attribut entfernt (W5512)
|
|
95
|
+
|
|
96
|
+
### 0.0.8 (2026-04-08)
|
|
97
|
+
* (ipod86) Einstellungs-UI zu jsonConfig (admin 5+) migriert — behebt S5022
|
|
98
|
+
* (ipod86) `node:fs` statt `fs` verwendet — behebt S5043
|
|
99
|
+
* (ipod86) Dependabot-Zeitplan von monatlich auf wöchentlich geändert — behebt S8906
|
|
100
|
+
* (ipod86) Automerge-Workflow in automerge-dependabot.yml umbenannt — behebt S8911
|
|
101
|
+
|
|
102
|
+
### 0.0.7 (2026-04-08)
|
|
103
|
+
* (ipod86) HTTP-URL-Laden ohne Protokoll-Präfix korrigiert (https:// wird automatisch ergänzt)
|
|
104
|
+
* (ipod86) localStorage-Speicherung des zuletzt geladenen Backups entfernt
|
|
105
|
+
|
|
106
|
+
### 0.0.6 (2026-04-08)
|
|
107
|
+
* (ipod86) HTTP, SFTP und WebDAV als optionale Backup-Quellen hinzugefügt
|
|
108
|
+
* (ipod86) Mehrfachauswahl von Skripten mit Strg+Klick und ZIP-Download
|
|
109
|
+
* (ipod86) Zuletzt geladenes Backup im Browser merken (localStorage)
|
|
110
|
+
* (ipod86) Lokalen Backup-Pfad vom backitup-Adapter automatisch erkennen
|
|
111
|
+
|
|
112
|
+
### 0.0.5 (2026-04-08)
|
|
113
|
+
* (ipod86) FTP und SMB als optionale Backup-Quellen mit Verbindungstest hinzugefügt
|
|
114
|
+
* (ipod86) Lokale Backup-Quelle optional gemacht (in Einstellungen aktivierbar)
|
|
115
|
+
* (ipod86) SMB-Versionshinweis (nur SMB2) in den Einstellungen ergänzt
|
|
116
|
+
|
|
117
|
+
### 0.0.4 (2026-04-06)
|
|
118
|
+
* (ipod86) Dunkles-Theme-Erkennung verbessert: Live-Umschaltung via MutationObserver und Storage-Events
|
|
119
|
+
|
|
120
|
+
### 0.0.3 (2026-04-06)
|
|
121
|
+
* (ipod86) Dunkles Theme für Admin-Tab-UI hinzugefügt
|
|
122
|
+
|
|
123
|
+
### 0.0.1 (2026-04-06)
|
|
124
|
+
* (ipod86) Erstveröffentlichung
|
|
125
|
+
|
|
126
|
+
## Lizenz
|
|
127
|
+
|
|
128
|
+
MIT License
|
|
129
|
+
|
|
130
|
+
Copyright (c) 2026 ipod86 <david@graef.email>
|
|
131
|
+
|
|
132
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
133
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
134
|
+
in the Software without restriction, including without limitation the rights
|
|
135
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
136
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
137
|
+
furnished to do so, subject to the following conditions:
|
|
138
|
+
|
|
139
|
+
The above copyright notice and this permission notice shall be included in all
|
|
140
|
+
copies or substantial portions of the Software.
|
|
141
|
+
|
|
142
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
143
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
144
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
145
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
146
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
147
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
148
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -20,8 +20,6 @@ The script-restore adapter adds a tab to the ioBroker admin interface that lets
|
|
|
20
20
|
|
|
21
21
|
The archive is parsed entirely in the browser — no files are written to disk during browsing.
|
|
22
22
|
|
|
23
|
-
**Note:** This adapter does not automatically restore scripts into ioBroker. It only allows you to view and download them so you can manually re-import them via the JavaScript adapter.
|
|
24
|
-
|
|
25
23
|
## Features
|
|
26
24
|
|
|
27
25
|
- Browse backup archives directly from the ioBroker admin tab
|
|
@@ -29,10 +27,12 @@ The archive is parsed entirely in the browser — no files are written to disk d
|
|
|
29
27
|
- Upload archive files directly from your computer
|
|
30
28
|
- Supported formats: `.tar.gz`, `.tar`, `.json`, `.jsonl`
|
|
31
29
|
- Tree view of all scripts organized by folder
|
|
32
|
-
-
|
|
30
|
+
- Filter scripts by type: JS, TypeScript, Blockly, Rules
|
|
31
|
+
- Full-text search across script names, paths and source code
|
|
33
32
|
- View source code (JS/TS/Blockly/Rules)
|
|
34
33
|
- Copy source code to clipboard or download as file
|
|
35
34
|
- Fully browser-based parsing — no server roundtrip for uploads
|
|
35
|
+
- **Restore scripts directly into ioBroker** with a configurable suffix (default: `_rcvr`) — existing scripts are never overwritten
|
|
36
36
|
|
|
37
37
|
## Configuration
|
|
38
38
|
|
|
@@ -75,6 +75,15 @@ The archive is parsed entirely in the browser — no files are written to disk d
|
|
|
75
75
|
Placeholder for the next version (at the beginning of the line):
|
|
76
76
|
### **WORK IN PROGRESS**
|
|
77
77
|
-->
|
|
78
|
+
### 0.0.12 (2026-04-30)
|
|
79
|
+
* (ipod86) add common.singleton to prevent multiple instances
|
|
80
|
+
* (ipod86) complete i18n translations for all supported languages (fr, es, it, nl, pl, pt, ru, uk, zh-cn)
|
|
81
|
+
|
|
82
|
+
### 0.0.11 (2026-04-13)
|
|
83
|
+
* (ipod86) add type filter (JS/TS/Blockly/Rules) in script sidebar
|
|
84
|
+
* (ipod86) add direct restore into ioBroker with suffix input and confirm modal
|
|
85
|
+
* (ipod86) remove obsolete admin/words.js and .prettierignore
|
|
86
|
+
|
|
78
87
|
### 0.0.10 (2026-04-08)
|
|
79
88
|
* (ipod86) fix jsonConfig responsive sizes lg/xl for backupPath (E5509)
|
|
80
89
|
* (ipod86) trim news entries to 7 (W1032)
|
|
@@ -92,30 +101,6 @@ The archive is parsed entirely in the browser — no files are written to disk d
|
|
|
92
101
|
* (ipod86) update Dependabot schedule from monthly to weekly — fixes S8906
|
|
93
102
|
* (ipod86) rename automerge workflow to automerge-dependabot.yml — fixes S8911
|
|
94
103
|
|
|
95
|
-
### 0.0.7 (2026-04-08)
|
|
96
|
-
* (ipod86) fix HTTP URL loading without protocol prefix (auto-prepend https://)
|
|
97
|
-
* (ipod86) remove localStorage persistence for last loaded backup
|
|
98
|
-
|
|
99
|
-
### 0.0.6 (2026-04-08)
|
|
100
|
-
* (ipod86) add HTTP, SFTP and WebDAV as optional backup sources
|
|
101
|
-
* (ipod86) multi-select scripts with Ctrl+click and download as ZIP
|
|
102
|
-
* (ipod86) remember last loaded backup in browser (localStorage)
|
|
103
|
-
* (ipod86) auto-detect local backup path from backitup adapter
|
|
104
|
-
|
|
105
|
-
### 0.0.5 (2026-04-08)
|
|
106
|
-
* (ipod86) add FTP and SMB as optional backup sources with connection test button
|
|
107
|
-
* (ipod86) make local backup source optional (enable/disable in settings)
|
|
108
|
-
* (ipod86) add SMB version info (SMB2 only) in settings
|
|
109
|
-
|
|
110
|
-
### 0.0.4 (2026-04-06)
|
|
111
|
-
* (ipod86) improve dark theme detection: live switching via MutationObserver and storage events
|
|
112
|
-
|
|
113
|
-
### 0.0.3 (2026-04-06)
|
|
114
|
-
* (ipod86) add dark theme support for admin tab UI
|
|
115
|
-
|
|
116
|
-
### 0.0.1 (2026-04-06)
|
|
117
|
-
* (ipod86) initial release
|
|
118
|
-
|
|
119
104
|
## License
|
|
120
105
|
MIT License
|
|
121
106
|
|
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
{
|
|
2
|
-
"localSection": "Lokale Backups",
|
|
3
|
-
"localEnabled": "Lokale Backups aktivieren",
|
|
4
2
|
"backupPath": "Backup-Pfad",
|
|
5
|
-
"suggestPath": "Pfad vorschlagen",
|
|
6
|
-
"ftpSection": "FTP",
|
|
7
3
|
"ftpEnabled": "FTP aktivieren",
|
|
8
4
|
"ftpHost": "Host",
|
|
5
|
+
"ftpPassword": "Passwort",
|
|
6
|
+
"ftpPath": "Pfad",
|
|
9
7
|
"ftpPort": "Port",
|
|
8
|
+
"ftpSection": "FTP",
|
|
10
9
|
"ftpSecure": "FTPS (TLS) verwenden",
|
|
11
10
|
"ftpUser": "Benutzer",
|
|
12
|
-
"ftpPassword": "Passwort",
|
|
13
|
-
"ftpPath": "Pfad",
|
|
14
|
-
"testConnection": "Verbindung testen",
|
|
15
|
-
"smbSection": "SMB (v2)",
|
|
16
|
-
"smbEnabled": "SMB aktivieren",
|
|
17
|
-
"smbInfo": "Es wird nur SMB2 unterstützt.",
|
|
18
|
-
"smbHost": "Host / IP",
|
|
19
|
-
"smbShare": "Freigabename",
|
|
20
|
-
"smbPath": "Unterordner (optional)",
|
|
21
|
-
"smbDomain": "Domain (optional)",
|
|
22
|
-
"smbUser": "Benutzer",
|
|
23
|
-
"smbPassword": "Passwort",
|
|
24
|
-
"httpSection": "HTTP/HTTPS",
|
|
25
11
|
"httpEnabled": "HTTP/HTTPS-Quelle aktivieren",
|
|
26
12
|
"httpInfo": "Im Haupt-Tab eine direkte URL zu einer .tar.gz-Backup-Datei eingeben. Das Protokoll (https://) wird automatisch ergänzt, falls weggelassen.",
|
|
27
|
-
"
|
|
13
|
+
"httpSection": "HTTP/HTTPS",
|
|
14
|
+
"localEnabled": "Lokale Backups aktivieren",
|
|
15
|
+
"localSection": "Lokale Backups",
|
|
28
16
|
"sftpEnabled": "SFTP aktivieren",
|
|
29
17
|
"sftpHost": "Host / IP",
|
|
30
|
-
"sftpPort": "Port",
|
|
31
|
-
"sftpUser": "Benutzer",
|
|
32
18
|
"sftpPassword": "Passwort",
|
|
33
19
|
"sftpPath": "Pfad",
|
|
34
|
-
"
|
|
20
|
+
"sftpPort": "Port",
|
|
21
|
+
"sftpSection": "SFTP",
|
|
22
|
+
"sftpUser": "Benutzer",
|
|
23
|
+
"smbDomain": "Domäne (optional)",
|
|
24
|
+
"smbEnabled": "SMB aktivieren",
|
|
25
|
+
"smbHost": "Host / IP",
|
|
26
|
+
"smbInfo": "Es wird nur SMB2 unterstützt.",
|
|
27
|
+
"smbPassword": "Passwort",
|
|
28
|
+
"smbPath": "Unterpfad (optional)",
|
|
29
|
+
"smbSection": "SMB (v2)",
|
|
30
|
+
"smbShare": "Freigabename",
|
|
31
|
+
"smbUser": "Benutzer",
|
|
32
|
+
"suggestPath": "Pfad vorschlagen",
|
|
33
|
+
"testConnection": "Verbindung testen",
|
|
35
34
|
"webdavEnabled": "WebDAV aktivieren",
|
|
36
|
-
"webdavUrl": "Server-URL",
|
|
37
|
-
"webdavUser": "Benutzer",
|
|
38
35
|
"webdavPassword": "Passwort",
|
|
39
|
-
"webdavPath": "Pfad"
|
|
36
|
+
"webdavPath": "Pfad",
|
|
37
|
+
"webdavSection": "WebDAV",
|
|
38
|
+
"webdavUrl": "Server-URL",
|
|
39
|
+
"webdavUser": "Benutzer"
|
|
40
40
|
}
|
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"backupPath": "Backup path",
|
|
5
|
-
"suggestPath": "Suggest path",
|
|
6
|
-
"ftpSection": "FTP",
|
|
7
|
-
"ftpEnabled": "Enable FTP",
|
|
2
|
+
"backupPath": "Ruta de copia de seguridad",
|
|
3
|
+
"ftpEnabled": "Activar FTP",
|
|
8
4
|
"ftpHost": "Host",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"smbInfo": "Only SMB2 is supported.",
|
|
18
|
-
"smbHost": "Host / IP",
|
|
19
|
-
"smbShare": "Share name",
|
|
20
|
-
"smbPath": "Sub-path (optional)",
|
|
21
|
-
"smbDomain": "Domain (optional)",
|
|
22
|
-
"smbUser": "User",
|
|
23
|
-
"smbPassword": "Password",
|
|
5
|
+
"ftpPassword": "Contraseña",
|
|
6
|
+
"ftpPath": "Ruta",
|
|
7
|
+
"ftpPort": "Puerto",
|
|
8
|
+
"ftpSection": "FTP",
|
|
9
|
+
"ftpSecure": "Usar FTPS (TLS)",
|
|
10
|
+
"ftpUser": "Usuario",
|
|
11
|
+
"httpEnabled": "Activar fuente HTTP/HTTPS",
|
|
12
|
+
"httpInfo": "Introduce una URL directa a un archivo de copia de seguridad .tar.gz en la pestaña principal. El protocolo (https://) se añade automáticamente si se omite.",
|
|
24
13
|
"httpSection": "HTTP/HTTPS",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"sftpEnabled": "Enable SFTP",
|
|
14
|
+
"localEnabled": "Activar copias de seguridad locales",
|
|
15
|
+
"localSection": "Copias de seguridad locales",
|
|
16
|
+
"sftpEnabled": "Activar SFTP",
|
|
29
17
|
"sftpHost": "Host / IP",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
18
|
+
"sftpPassword": "Contraseña",
|
|
19
|
+
"sftpPath": "Ruta",
|
|
20
|
+
"sftpPort": "Puerto",
|
|
21
|
+
"sftpSection": "SFTP",
|
|
22
|
+
"sftpUser": "Usuario",
|
|
23
|
+
"smbDomain": "Dominio (opcional)",
|
|
24
|
+
"smbEnabled": "Activar SMB",
|
|
25
|
+
"smbHost": "Host / IP",
|
|
26
|
+
"smbInfo": "Solo se admite SMB2.",
|
|
27
|
+
"smbPassword": "Contraseña",
|
|
28
|
+
"smbPath": "Subruta (opcional)",
|
|
29
|
+
"smbSection": "SMB (v2)",
|
|
30
|
+
"smbShare": "Nombre del recurso compartido",
|
|
31
|
+
"smbUser": "Usuario",
|
|
32
|
+
"suggestPath": "Sugerir ruta",
|
|
33
|
+
"testConnection": "Probar conexión",
|
|
34
|
+
"webdavEnabled": "Activar WebDAV",
|
|
35
|
+
"webdavPassword": "Contraseña",
|
|
36
|
+
"webdavPath": "Ruta",
|
|
34
37
|
"webdavSection": "WebDAV",
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"webdavUser": "User",
|
|
38
|
-
"webdavPassword": "Password",
|
|
39
|
-
"webdavPath": "Path"
|
|
38
|
+
"webdavUrl": "URL del servidor",
|
|
39
|
+
"webdavUser": "Usuario"
|
|
40
40
|
}
|
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"ftpEnabled": "Enable FTP",
|
|
8
|
-
"ftpHost": "Host",
|
|
2
|
+
"backupPath": "Chemin de sauvegarde",
|
|
3
|
+
"ftpEnabled": "Activer FTP",
|
|
4
|
+
"ftpHost": "Hôte",
|
|
5
|
+
"ftpPassword": "Mot de passe",
|
|
6
|
+
"ftpPath": "Chemin",
|
|
9
7
|
"ftpPort": "Port",
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"smbSection": "SMB (v2)",
|
|
16
|
-
"smbEnabled": "Enable SMB",
|
|
17
|
-
"smbInfo": "Only SMB2 is supported.",
|
|
18
|
-
"smbHost": "Host / IP",
|
|
19
|
-
"smbShare": "Share name",
|
|
20
|
-
"smbPath": "Sub-path (optional)",
|
|
21
|
-
"smbDomain": "Domain (optional)",
|
|
22
|
-
"smbUser": "User",
|
|
23
|
-
"smbPassword": "Password",
|
|
8
|
+
"ftpSection": "FTP",
|
|
9
|
+
"ftpSecure": "Utiliser FTPS (TLS)",
|
|
10
|
+
"ftpUser": "Utilisateur",
|
|
11
|
+
"httpEnabled": "Activer la source HTTP/HTTPS",
|
|
12
|
+
"httpInfo": "Entrez une URL directe vers un fichier de sauvegarde .tar.gz dans l'onglet principal. Le protocole (https://) est ajouté automatiquement si omis.",
|
|
24
13
|
"httpSection": "HTTP/HTTPS",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
14
|
+
"localEnabled": "Activer les sauvegardes locales",
|
|
15
|
+
"localSection": "Sauvegardes locales",
|
|
16
|
+
"sftpEnabled": "Activer SFTP",
|
|
17
|
+
"sftpHost": "Hôte / IP",
|
|
18
|
+
"sftpPassword": "Mot de passe",
|
|
19
|
+
"sftpPath": "Chemin",
|
|
30
20
|
"sftpPort": "Port",
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
21
|
+
"sftpSection": "SFTP",
|
|
22
|
+
"sftpUser": "Utilisateur",
|
|
23
|
+
"smbDomain": "Domaine (optionnel)",
|
|
24
|
+
"smbEnabled": "Activer SMB",
|
|
25
|
+
"smbHost": "Hôte / IP",
|
|
26
|
+
"smbInfo": "Seul SMB2 est pris en charge.",
|
|
27
|
+
"smbPassword": "Mot de passe",
|
|
28
|
+
"smbPath": "Sous-chemin (optionnel)",
|
|
29
|
+
"smbSection": "SMB (v2)",
|
|
30
|
+
"smbShare": "Nom du partage",
|
|
31
|
+
"smbUser": "Utilisateur",
|
|
32
|
+
"suggestPath": "Suggérer un chemin",
|
|
33
|
+
"testConnection": "Tester la connexion",
|
|
34
|
+
"webdavEnabled": "Activer WebDAV",
|
|
35
|
+
"webdavPassword": "Mot de passe",
|
|
36
|
+
"webdavPath": "Chemin",
|
|
34
37
|
"webdavSection": "WebDAV",
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"webdavUser": "User",
|
|
38
|
-
"webdavPassword": "Password",
|
|
39
|
-
"webdavPath": "Path"
|
|
38
|
+
"webdavUrl": "URL du serveur",
|
|
39
|
+
"webdavUser": "Utilisateur"
|
|
40
40
|
}
|
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"backupPath": "Backup path",
|
|
5
|
-
"suggestPath": "Suggest path",
|
|
6
|
-
"ftpSection": "FTP",
|
|
7
|
-
"ftpEnabled": "Enable FTP",
|
|
2
|
+
"backupPath": "Percorso di backup",
|
|
3
|
+
"ftpEnabled": "Abilita FTP",
|
|
8
4
|
"ftpHost": "Host",
|
|
9
|
-
"ftpPort": "Port",
|
|
10
|
-
"ftpSecure": "Use FTPS (TLS)",
|
|
11
|
-
"ftpUser": "User",
|
|
12
5
|
"ftpPassword": "Password",
|
|
13
|
-
"ftpPath": "
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"smbPath": "Sub-path (optional)",
|
|
21
|
-
"smbDomain": "Domain (optional)",
|
|
22
|
-
"smbUser": "User",
|
|
23
|
-
"smbPassword": "Password",
|
|
6
|
+
"ftpPath": "Percorso",
|
|
7
|
+
"ftpPort": "Porta",
|
|
8
|
+
"ftpSection": "FTP",
|
|
9
|
+
"ftpSecure": "Usa FTPS (TLS)",
|
|
10
|
+
"ftpUser": "Utente",
|
|
11
|
+
"httpEnabled": "Abilita sorgente HTTP/HTTPS",
|
|
12
|
+
"httpInfo": "Inserisci un URL diretto a un file di backup .tar.gz nella scheda principale. Il protocollo (https://) viene aggiunto automaticamente se omesso.",
|
|
24
13
|
"httpSection": "HTTP/HTTPS",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"sftpEnabled": "Enable SFTP",
|
|
14
|
+
"localEnabled": "Abilita backup locali",
|
|
15
|
+
"localSection": "Backup locali",
|
|
16
|
+
"sftpEnabled": "Abilita SFTP",
|
|
29
17
|
"sftpHost": "Host / IP",
|
|
30
|
-
"sftpPort": "Port",
|
|
31
|
-
"sftpUser": "User",
|
|
32
18
|
"sftpPassword": "Password",
|
|
33
|
-
"sftpPath": "
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"
|
|
19
|
+
"sftpPath": "Percorso",
|
|
20
|
+
"sftpPort": "Porta",
|
|
21
|
+
"sftpSection": "SFTP",
|
|
22
|
+
"sftpUser": "Utente",
|
|
23
|
+
"smbDomain": "Dominio (opzionale)",
|
|
24
|
+
"smbEnabled": "Abilita SMB",
|
|
25
|
+
"smbHost": "Host / IP",
|
|
26
|
+
"smbInfo": "È supportato solo SMB2.",
|
|
27
|
+
"smbPassword": "Password",
|
|
28
|
+
"smbPath": "Sotto-percorso (opzionale)",
|
|
29
|
+
"smbSection": "SMB (v2)",
|
|
30
|
+
"smbShare": "Nome della condivisione",
|
|
31
|
+
"smbUser": "Utente",
|
|
32
|
+
"suggestPath": "Suggerisci un percorso",
|
|
33
|
+
"testConnection": "Testa la connessione",
|
|
34
|
+
"webdavEnabled": "Abilita WebDAV",
|
|
38
35
|
"webdavPassword": "Password",
|
|
39
|
-
"webdavPath": "
|
|
36
|
+
"webdavPath": "Percorso",
|
|
37
|
+
"webdavSection": "WebDAV",
|
|
38
|
+
"webdavUrl": "URL server",
|
|
39
|
+
"webdavUser": "Utente"
|
|
40
40
|
}
|
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"backupPath": "Backup path",
|
|
5
|
-
"suggestPath": "Suggest path",
|
|
6
|
-
"ftpSection": "FTP",
|
|
7
|
-
"ftpEnabled": "Enable FTP",
|
|
2
|
+
"backupPath": "Back-uppad",
|
|
3
|
+
"ftpEnabled": "FTP inschakelen",
|
|
8
4
|
"ftpHost": "Host",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"smbInfo": "Only SMB2 is supported.",
|
|
18
|
-
"smbHost": "Host / IP",
|
|
19
|
-
"smbShare": "Share name",
|
|
20
|
-
"smbPath": "Sub-path (optional)",
|
|
21
|
-
"smbDomain": "Domain (optional)",
|
|
22
|
-
"smbUser": "User",
|
|
23
|
-
"smbPassword": "Password",
|
|
5
|
+
"ftpPassword": "Wachtwoord",
|
|
6
|
+
"ftpPath": "Pad",
|
|
7
|
+
"ftpPort": "Poort",
|
|
8
|
+
"ftpSection": "FTP",
|
|
9
|
+
"ftpSecure": "FTPS (TLS) gebruiken",
|
|
10
|
+
"ftpUser": "Gebruiker",
|
|
11
|
+
"httpEnabled": "HTTP/HTTPS-bron inschakelen",
|
|
12
|
+
"httpInfo": "Voer een directe URL in naar een .tar.gz-back-upbestand op het hoofdtabblad. Het protocol (https://) wordt automatisch toegevoegd als het ontbreekt.",
|
|
24
13
|
"httpSection": "HTTP/HTTPS",
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"sftpEnabled": "Enable SFTP",
|
|
14
|
+
"localEnabled": "Lokale back-ups inschakelen",
|
|
15
|
+
"localSection": "Lokale back-ups",
|
|
16
|
+
"sftpEnabled": "SFTP inschakelen",
|
|
29
17
|
"sftpHost": "Host / IP",
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
18
|
+
"sftpPassword": "Wachtwoord",
|
|
19
|
+
"sftpPath": "Pad",
|
|
20
|
+
"sftpPort": "Poort",
|
|
21
|
+
"sftpSection": "SFTP",
|
|
22
|
+
"sftpUser": "Gebruiker",
|
|
23
|
+
"smbDomain": "Domein (optioneel)",
|
|
24
|
+
"smbEnabled": "SMB inschakelen",
|
|
25
|
+
"smbHost": "Host / IP",
|
|
26
|
+
"smbInfo": "Alleen SMB2 wordt ondersteund.",
|
|
27
|
+
"smbPassword": "Wachtwoord",
|
|
28
|
+
"smbPath": "Subpad (optioneel)",
|
|
29
|
+
"smbSection": "SMB (v2)",
|
|
30
|
+
"smbShare": "Sharenaam",
|
|
31
|
+
"smbUser": "Gebruiker",
|
|
32
|
+
"suggestPath": "Pad voorstellen",
|
|
33
|
+
"testConnection": "Verbinding testen",
|
|
34
|
+
"webdavEnabled": "WebDAV inschakelen",
|
|
35
|
+
"webdavPassword": "Wachtwoord",
|
|
36
|
+
"webdavPath": "Pad",
|
|
34
37
|
"webdavSection": "WebDAV",
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"webdavUser": "User",
|
|
38
|
-
"webdavPassword": "Password",
|
|
39
|
-
"webdavPath": "Path"
|
|
38
|
+
"webdavUrl": "Server-URL",
|
|
39
|
+
"webdavUser": "Gebruiker"
|
|
40
40
|
}
|