mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2025-08-27 23:41:14 +00:00
Squash Docker progress: (#1)
* Version 4.1 Docker image tested. Fixed kinks in Docker image. Updated Dutch language Removed remaining "enable" parameter from Docker-related files Made the symlink system more reliable Improved updatability. Added multiplatform docker build (arm,arm64 and amd64) More verbose logging from the Docker image.
This commit is contained in:
@@ -1881,8 +1881,8 @@ def API_getAllWireguardConfigurationBackup():
|
||||
files.sort(key=lambda x: x[1], reverse=True)
|
||||
|
||||
for f, ct in files:
|
||||
if _regexMatch(f"^(.*)_(.*)\.(conf)$", f):
|
||||
s = re.search(f"^(.*)_(.*)\.(conf)$", f)
|
||||
if _regexMatch(r"^(.*)_(.*)\.(conf)$", f):
|
||||
s = re.search(r"^(.*)_(.*)\.(conf)$", f)
|
||||
name = s.group(1)
|
||||
if name not in existingConfiguration:
|
||||
if name not in data['NonExistingConfigurations'].keys():
|
||||
|
@@ -59,7 +59,7 @@
|
||||
"Turning Off...": "Uitzetten...",
|
||||
"Address": "Adres",
|
||||
"Listen Port": "Luisterpoort",
|
||||
"Public Key": "Public key",
|
||||
"Public Key": "Publieke Sleutel",
|
||||
"Connected Peers": "Verbonden Peers",
|
||||
"Total Usage": "Totaal Gebruik",
|
||||
"Total Received": "Totaal Ontvangen",
|
||||
@@ -85,7 +85,7 @@
|
||||
"Active Jobs": "Actieve Taken",
|
||||
"All Active Jobs": "Alle Actieve Taken",
|
||||
"Logs": "Logboeken",
|
||||
"Private Key": "Private Key",
|
||||
"Private Key": "Privé Sleutel",
|
||||
"(Required for QR Code and Download)": "(Vereist voor QR-code en Download)",
|
||||
"(Required)": "(Vereist)",
|
||||
"Endpoint Allowed IPs": "Allowed-IPs voor Eindpunt",
|
||||
@@ -144,7 +144,7 @@
|
||||
"By adding peers by bulk, each peer's name will be auto generated, and Allowed IP will be assign to the next available IP.": "Bij het bulk toevoegen wordt de naam van elke peer automatisch gegenereerd en wordt de Allowed-IPs aan het volgende beschikbare IP toegewezen.",
|
||||
"How many peers you want to add?": "Hoeveel peers wil je toevoegen?",
|
||||
"You can add up to (.*) peers": "Je kunt tot $1 peers toevoegen",
|
||||
"Use your own Private and Public Key": "Gebruik je eigen private- en public key",
|
||||
"Use your own Private and Public Key": "Gebruik je eigen Privé- en Publieke Sleutel",
|
||||
"Enter IP Address/CIDR": "Voer IP-adres/CIDR in",
|
||||
"IP Address/CIDR": "IP-adres/CIDR",
|
||||
"or": "of",
|
||||
|
Reference in New Issue
Block a user