feat(i18n/socket): add WebSocket error messages and show connect errors

This commit is contained in:
cogwheel0
2025-10-25 14:24:49 +05:30
parent 6aaeb65d43
commit 2b44e38a2e
16 changed files with 116 additions and 268 deletions

View File

@@ -957,4 +957,12 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get transportModeWsInfo =>
'Lower overhead, but may fail behind strict proxies/firewalls.';
@override
String get websocketConnectionError =>
'Unable to establish real-time connection. Please check your network and server configuration.';
@override
String get websocketReconnectFailed =>
'Real-time connection failed. Streaming may not work properly.';
}