Add WebSocket Log feature to Services Status View

- Introduced a WebSocket Log section in the Services Status View, allowing users to view real-time logs.
- Updated localization files for both German and English to include WebSocket Log messages.
- Enhanced the UI with a button to open the WebSocket Log dialog, improving user interaction and monitoring capabilities.
This commit is contained in:
Torsten Schulz (local)
2025-11-22 13:21:13 +01:00
parent dc7001a80c
commit 735075d1bd
4 changed files with 338 additions and 3 deletions

View File

@@ -267,6 +267,24 @@
"notConnected": "Daemon nicht verbunden",
"sendError": "Fehler beim Senden der Anfrage",
"error": "Fehler beim Abrufen der Verbindungen"
},
"websocketLog": {
"title": "WebSocket-Log",
"showLog": "WebSocket-Log anzeigen",
"refresh": "Aktualisieren",
"loading": "Lädt...",
"close": "Schließen",
"entryCount": "{count} Einträge",
"noEntries": "Keine Log-Einträge vorhanden",
"notConnected": "Daemon nicht verbunden",
"sendError": "Fehler beim Senden der Anfrage",
"parseError": "Fehler beim Verarbeiten der Antwort",
"timestamp": "Zeitstempel",
"direction": "Richtung",
"peer": "Peer",
"connUser": "Verbindungs-User",
"targetUser": "Ziel-User",
"event": "Event"
}
}
}

View File

@@ -267,6 +267,24 @@
"notConnected": "Daemon not connected",
"sendError": "Error sending request",
"error": "Error fetching connections"
},
"websocketLog": {
"title": "WebSocket Log",
"showLog": "Show WebSocket Log",
"refresh": "Refresh",
"loading": "Loading...",
"close": "Close",
"entryCount": "{count} entries",
"noEntries": "No log entries available",
"notConnected": "Daemon not connected",
"sendError": "Error sending request",
"parseError": "Error parsing response",
"timestamp": "Timestamp",
"direction": "Direction",
"peer": "Peer",
"connUser": "Connection User",
"targetUser": "Target User",
"event": "Event"
}
}
}