From f6392c127d8cb201f0ff076887637cb385ac4ab7 Mon Sep 17 00:00:00 2001 From: Jason Xu Date: Tue, 3 Sep 2024 09:46:59 -0400 Subject: [PATCH] v2.11.9 --- .../split_tunneling/split_tunneling.cpp | 37 +++++++++++++------ .../split_tunneling/split_tunneling.h | 3 +- client/common/changelog.txt | 8 ++++ client/common/version/windscribe_version.h | 6 +-- client/engine/engine/engine.cpp | 3 +- client/engine/engine/engine.h | 2 + client/gui/mainwindow.cpp | 2 +- client/gui/translations/ws_desktop_ar.ts | 8 ++-- client/gui/translations/ws_desktop_cs.ts | 8 ++-- client/gui/translations/ws_desktop_de.ts | 8 ++-- client/gui/translations/ws_desktop_en.ts | 8 ++-- client/gui/translations/ws_desktop_es.ts | 8 ++-- client/gui/translations/ws_desktop_fa.ts | 8 ++-- client/gui/translations/ws_desktop_fr.ts | 8 ++-- client/gui/translations/ws_desktop_hi.ts | 8 ++-- client/gui/translations/ws_desktop_id.ts | 8 ++-- client/gui/translations/ws_desktop_it.ts | 8 ++-- client/gui/translations/ws_desktop_ja.ts | 8 ++-- client/gui/translations/ws_desktop_ko.ts | 8 ++-- client/gui/translations/ws_desktop_pl.ts | 8 ++-- client/gui/translations/ws_desktop_pt.ts | 8 ++-- client/gui/translations/ws_desktop_ru.ts | 8 ++-- client/gui/translations/ws_desktop_tr.ts | 8 ++-- client/gui/translations/ws_desktop_uk.ts | 8 ++-- client/gui/translations/ws_desktop_vi.ts | 8 ++-- client/gui/translations/ws_desktop_zh-CN.ts | 8 ++-- client/gui/translations/ws_desktop_zh-TW.ts | 8 ++-- 27 files changed, 124 insertions(+), 97 deletions(-) diff --git a/backend/windows/windscribe_service/split_tunneling/split_tunneling.cpp b/backend/windows/windscribe_service/split_tunneling/split_tunneling.cpp index 2f9df1ae..80f6e515 100644 --- a/backend/windows/windscribe_service/split_tunneling/split_tunneling.cpp +++ b/backend/windows/windscribe_service/split_tunneling/split_tunneling.cpp @@ -10,7 +10,11 @@ SplitTunneling::SplitTunneling(FwpmWrapper& fwpmWrapper) { connectStatus_.isConnected = false; detectWindscribeExecutables(); - FirewallFilter::instance().setWindscribeAppsIds(windscribeExecutableIds_); + + AppsIds appsIds; + appsIds.addFrom(windscribeMainExecutableId_); + appsIds.addFrom(windscribeOtherExecutablesId_); + FirewallFilter::instance().setWindscribeAppsIds(appsIds); } void SplitTunneling::release() @@ -63,26 +67,29 @@ void SplitTunneling::detectWindscribeExecutables() return; } - std::vector windscribeExefiles; - std::vector windscribeCtrldFiles; + std::vector windscribeMainExecutable; + std::vector windscribeOtherExecutables; + std::vector ctrldExecutable; do { if (!(ffd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY)) { std::wstring fileName = ffd.cFileName; std::wstring fullPath = exePath + L"\\" + ffd.cFileName; - // For ctrld utility and Windscribe.exe we need special rules for inclusive mode - if (fileName == L"windscribectrld.exe" || fileName == L"Windscribe.exe") { - windscribeCtrldFiles.push_back(fullPath); + if (fileName == L"Windscribe.exe") { + windscribeMainExecutable.push_back(fullPath); + } else if (fileName == L"windscribectrld.exe") { + ctrldExecutable.push_back(fullPath); } else if (fileName != L"WindscribeService.exe") { // skip WindscribeService.exe - windscribeExefiles.push_back(fullPath); + windscribeOtherExecutables.push_back(fullPath); } } } while (FindNextFile(hFind, &ffd) != 0); FindClose(hFind); - windscribeExecutableIds_.setFromList(windscribeExefiles); - ctrldExecutableId_.setFromList(windscribeCtrldFiles); + windscribeMainExecutableId_.setFromList(windscribeMainExecutable); + windscribeOtherExecutablesId_.setFromList(windscribeOtherExecutables); + ctrldExecutableId_.setFromList(ctrldExecutable); } bool SplitTunneling::updateState() @@ -119,10 +126,18 @@ bool SplitTunneling::updateState() if (isExclude_) { hostnamesManager_.enable(connectStatus_.defaultAdapter.gatewayIp, connectStatus_.defaultAdapter.ifIndex); } else { - appsIds.addFrom(windscribeExecutableIds_); + appsIds.addFrom(windscribeOtherExecutablesId_); hostnamesManager_.enable(connectStatus_.vpnAdapter.gatewayIp, connectStatus_.vpnAdapter.ifIndex); } - calloutFilter_.enable(localIp, vpnIp, appsIds, isExclude_ ? AppsIds() : ctrldExecutableId_, isExclude_, isAllowLanTraffic_); + + // For ctrld utility and Windscribe.exe we need special rules for inclusive mode + AppsIds windscribeExecutablesForInclusive; + if (!isExclude_) { + windscribeExecutablesForInclusive.addFrom(windscribeMainExecutableId_); + windscribeExecutablesForInclusive.addFrom(ctrldExecutableId_); + } + calloutFilter_.enable(localIp, vpnIp, appsIds, windscribeExecutablesForInclusive, isExclude_, isAllowLanTraffic_); + } else { calloutFilter_.disable(); hostnamesManager_.disable(); diff --git a/backend/windows/windscribe_service/split_tunneling/split_tunneling.h b/backend/windows/windscribe_service/split_tunneling/split_tunneling.h index 94b59dc2..26bd2be6 100644 --- a/backend/windows/windscribe_service/split_tunneling/split_tunneling.h +++ b/backend/windows/windscribe_service/split_tunneling/split_tunneling.h @@ -32,7 +32,8 @@ class SplitTunneling HostnamesManager hostnamesManager_; SplitTunnelServiceManager splitTunnelServiceManager_; - AppsIds windscribeExecutableIds_; + AppsIds windscribeMainExecutableId_; + AppsIds windscribeOtherExecutablesId_; AppsIds ctrldExecutableId_; CMD_CONNECT_STATUS connectStatus_; diff --git a/client/common/changelog.txt b/client/common/changelog.txt index fde6cb9f..aa350a4b 100644 --- a/client/common/changelog.txt +++ b/client/common/changelog.txt @@ -1,3 +1,11 @@ +2.11.9 (03/09/2024) +All: + * Improved dialog verbiage when secure hotspot is enabled without Wi-Fi. #1005 + * Fixed the error message when the remember checkbox wasn't ticked on the wrong credentials. #1081 +Windows: + * Fixed tunnel tests don't work for WireGuard with firewall enabled. #1094 + + 2.11.8 (26/08/2024) All: * Added the new parameter language to wsnet library. #1098 diff --git a/client/common/version/windscribe_version.h b/client/common/version/windscribe_version.h index d3fda610..64a2d571 100644 --- a/client/common/version/windscribe_version.h +++ b/client/common/version/windscribe_version.h @@ -2,11 +2,11 @@ #define WINDSCRIBE_MAJOR_VERSION 2 #define WINDSCRIBE_MINOR_VERSION 11 -#define WINDSCRIBE_BUILD_VERSION 7 +#define WINDSCRIBE_BUILD_VERSION 9 // only one of these should be enabled; neither -> stable -//#define WINDSCRIBE_IS_BETA -#define WINDSCRIBE_IS_GUINEA_PIG +#define WINDSCRIBE_IS_BETA +//#define WINDSCRIBE_IS_GUINEA_PIG #define STR_HELPER(x) #x #define STR(x) STR_HELPER(x) diff --git a/client/engine/engine/engine.cpp b/client/engine/engine/engine.cpp index 16d4ac8b..1a8a8264 100644 --- a/client/engine/engine/engine.cpp +++ b/client/engine/engine/engine.cpp @@ -1102,6 +1102,7 @@ void Engine::continueWithUsernameAndPasswordImpl(const QString &username, const if (bSave) { customOvpnAuthCredentialsStorage_->setAuthCredentials(connectionManager_->getCustomOvpnConfigFileName(), username, password); } + lastUsernameForCustomConfig_ = username; connectionManager_->continueWithUsernameAndPassword(username, password, isNeedReconnectAfterRequestAuth_); } } @@ -1557,7 +1558,7 @@ void Engine::onConnectionManagerError(CONNECT_ERROR err) customOvpnAuthCredentialsStorage_->removeCredentials(connectionManager_->getCustomOvpnConfigFileName()); isNeedReconnectAfterRequestAuth_ = true; - emit requestUsernameAndPassword(credentials.username); + emit requestUsernameAndPassword(credentials.username.isEmpty() ? lastUsernameForCustomConfig_ : credentials.username); } else { diff --git a/client/engine/engine/engine.h b/client/engine/engine/engine.h index 93f615b2..38115957 100644 --- a/client/engine/engine/engine.h +++ b/client/engine/engine/engine.h @@ -400,4 +400,6 @@ private slots: bool isLoggedIn_ = false; bool isFetchingServerCredentials_ = false; bool tryLoginNextConnectOrDisconnect_ = false; + + QString lastUsernameForCustomConfig_; }; diff --git a/client/gui/mainwindow.cpp b/client/gui/mainwindow.cpp index 3fe34ad4..9ee1d641 100644 --- a/client/gui/mainwindow.cpp +++ b/client/gui/mainwindow.cpp @@ -2303,7 +2303,7 @@ void MainWindow::onBackendWifiSharingFailed(WIFI_SHARING_ERROR error) GeneralMessageController::instance().showMessage( "WARNING_WHITE", tr("Wi-Fi is off"), - tr("Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on."), + tr("Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on."), GeneralMessageController::tr(GeneralMessageController::kOk), "", "", diff --git a/client/gui/translations/ws_desktop_ar.ts b/client/gui/translations/ws_desktop_ar.ts index dff92a71..031e2c12 100644 --- a/client/gui/translations/ws_desktop_ar.ts +++ b/client/gui/translations/ws_desktop_ar.ts @@ -794,10 +794,6 @@ If the problem persists after a restart, please send a debug log and open a supp Wi-Fi is off شبكة Wi-Fi متوقفة - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - اكتشف Windscribe أن شبكة Wi-Fi متوقفة عن التشغيل حاليا. لاستخدام نقطة الاتصال الآمنة ، يجب تشغيل Wi-Fi. - Could not start Secure Hotspot تعذر بدء تشغيل نقطة اتصال آمنة @@ -810,6 +806,10 @@ If the problem persists after a restart, please send a debug log and open a supp ...hmm are you sure this is correct? ... حسنا ، هل أنت متأكد من صحة ذلك؟ + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + اكتشف Windscribe أن شبكة Wi-Fi متوقفة عن التشغيل حاليا. لاستخدام نقطة الاتصال الآمنة، يجب تشغيل Wi-Fi. + MainWindowController diff --git a/client/gui/translations/ws_desktop_cs.ts b/client/gui/translations/ws_desktop_cs.ts index 0b71b773..15329e11 100644 --- a/client/gui/translations/ws_desktop_cs.ts +++ b/client/gui/translations/ws_desktop_cs.ts @@ -794,10 +794,6 @@ Pokud problém přetrvává i po restartování, odešlete protokol ladění, ot Wi-Fi is off Wi-Fi je vypnutá - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe zjistil, že Wi-Fi je momentálně vypnutá. Chcete-li používat funkci Secure Hotspot, musí být zapnutá funkce Wi-Fi. - Could not start Secure Hotspot Nelze spustit Secure Hotspot @@ -810,6 +806,10 @@ Pokud problém přetrvává i po restartování, odešlete protokol ladění, ot ...hmm are you sure this is correct? ... Hmm, jsi si jistý, že je to správně? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Společnost Windscribe zjistila, že Wi-Fi je aktuálně vypnutá. Abyste mohli používat Zabezpečený hotspot, musí být zapnutá Wi-Fi. + MainWindowController diff --git a/client/gui/translations/ws_desktop_de.ts b/client/gui/translations/ws_desktop_de.ts index f13a0baf..565e75e8 100644 --- a/client/gui/translations/ws_desktop_de.ts +++ b/client/gui/translations/ws_desktop_de.ts @@ -794,10 +794,6 @@ Wenn das Problem nach einem Neustart weiterhin besteht, senden Sie bitte ein Deb Wi-Fi is off WLAN ist ausgeschaltet - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe hat festgestellt, dass das WLAN derzeit ausgeschaltet ist. Um Secure Hotspot verwenden zu können, sollte Wi-Fi aktiviert sein. - Could not start Secure Hotspot Secure Hotspot konnte nicht gestartet werden @@ -810,6 +806,10 @@ Wenn das Problem nach einem Neustart weiterhin besteht, senden Sie bitte ein Deb ...hmm are you sure this is correct? ... Hmm, bist du sicher, dass das richtig ist? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe hat festgestellt, dass das WLAN derzeit ausgeschaltet ist. Um Secure Hotspot verwenden zu können, muss Wi-Fi aktiviert sein. + MainWindowController diff --git a/client/gui/translations/ws_desktop_en.ts b/client/gui/translations/ws_desktop_en.ts index c5d0d4dd..c825ec52 100644 --- a/client/gui/translations/ws_desktop_en.ts +++ b/client/gui/translations/ws_desktop_en.ts @@ -794,10 +794,6 @@ If the problem persists after a restart, please send a debug log and open a supp Wi-Fi is off Wi-Fi is off - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Could not start Secure Hotspot Could not start Secure Hotspot @@ -810,6 +806,10 @@ If the problem persists after a restart, please send a debug log and open a supp ...hmm are you sure this is correct? ... hmm are you sure this is correct? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + MainWindowController diff --git a/client/gui/translations/ws_desktop_es.ts b/client/gui/translations/ws_desktop_es.ts index 774c7c43..1f6d96e3 100644 --- a/client/gui/translations/ws_desktop_es.ts +++ b/client/gui/translations/ws_desktop_es.ts @@ -794,10 +794,6 @@ Si el problema persiste después de un reinicio, envía un registro de depuraci Wi-Fi is off La conexión Wi-Fi está apagada - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe ha detectado que la conexión Wi-Fi está desactivada. Para usar Secure Hotspot, Wi-Fi debe estar activado. - Could not start Secure Hotspot No se pudo iniciar Secure Hotspot @@ -810,6 +806,10 @@ Si el problema persiste después de un reinicio, envía un registro de depuraci ...hmm are you sure this is correct? ... Hmm, ¿estás seguro de que esto es correcto? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe ha detectado que la conexión Wi-Fi está desactivada. Para usar Secure Hotspot, la conexión Wi-Fi debe estar activada. + MainWindowController diff --git a/client/gui/translations/ws_desktop_fa.ts b/client/gui/translations/ws_desktop_fa.ts index 803b7fa2..6bb7468d 100644 --- a/client/gui/translations/ws_desktop_fa.ts +++ b/client/gui/translations/ws_desktop_fa.ts @@ -794,10 +794,6 @@ If the problem persists after a restart, please send a debug log and open a supp Wi-Fi is off Wi-Fi خاموش است - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe تشخیص داده است که Wi-Fi در حال حاضر خاموش است. برای استفاده از نقطه اتصال امن، Wi-Fi باید روشن باشد. - Could not start Secure Hotspot Secure Hotspot راه اندازی نشد @@ -810,6 +806,10 @@ If the problem persists after a restart, please send a debug log and open a supp ...hmm are you sure this is correct? ... مطمئنی درسته؟ + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe تشخیص داده است که Wi-Fi در حال حاضر خاموش است. برای استفاده از نقطه اتصال امن، Wi-Fi باید روشن باشد. + MainWindowController diff --git a/client/gui/translations/ws_desktop_fr.ts b/client/gui/translations/ws_desktop_fr.ts index 69654cf0..fbbf0bcf 100644 --- a/client/gui/translations/ws_desktop_fr.ts +++ b/client/gui/translations/ws_desktop_fr.ts @@ -794,10 +794,6 @@ Si le problème persiste après un redémarrage, envoyez un journal de débogage Wi-Fi is off Le Wi-Fi est désactivé - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe a détecté que le Wi-Fi est actuellement désactivé. Pour utiliser le point d’accès sécurisé, le Wi-Fi doit être activé. - Could not start Secure Hotspot Impossible de démarrer le point d’accès sécurisé @@ -810,6 +806,10 @@ Si le problème persiste après un redémarrage, envoyez un journal de débogage ...hmm are you sure this is correct? ... Hmm êtes-vous sûr que c’est correct? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe a détecté que le Wi-Fi est actuellement désactivé. Pour utiliser le point d’accès sécurisé, le Wi-Fi doit être activé. + MainWindowController diff --git a/client/gui/translations/ws_desktop_hi.ts b/client/gui/translations/ws_desktop_hi.ts index 493a6dd0..2054261e 100644 --- a/client/gui/translations/ws_desktop_hi.ts +++ b/client/gui/translations/ws_desktop_hi.ts @@ -794,10 +794,6 @@ If the problem persists after a restart, please send a debug log and open a supp Wi-Fi is off वाई-फ़ाई बंद है - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - विंडसाइड ने पाया है कि वाई-फाई वर्तमान में बंद है। सुरक्षित हॉटस्पॉट का उपयोग करने के लिए, वाई-फाई चालू होना चाहिए। - Could not start Secure Hotspot सुरक्षित हॉटस्पॉट प्रारंभ नहीं कर सका @@ -810,6 +806,10 @@ If the problem persists after a restart, please send a debug log and open a supp ...hmm are you sure this is correct? ... हम्म क्या आपको यकीन है कि यह सही है? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + विंडसाइड ने पाया है कि वाई-फाई वर्तमान में बंद है। सुरक्षित हॉटस्पॉट का उपयोग करने के लिए, वाई-फ़ाई चालू होना चाहिए. + MainWindowController diff --git a/client/gui/translations/ws_desktop_id.ts b/client/gui/translations/ws_desktop_id.ts index e48c62aa..f0fbb62b 100644 --- a/client/gui/translations/ws_desktop_id.ts +++ b/client/gui/translations/ws_desktop_id.ts @@ -794,10 +794,6 @@ Jika masalah berlanjut setelah restart, silakan kirim log debug dan buka tiket d Wi-Fi is off Wi-Fi mati - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe telah mendeteksi bahwa Wi-Fi saat ini dimatikan. Untuk menggunakan Hotspot Aman, Wi-Fi harus diaktifkan. - Could not start Secure Hotspot Tidak dapat memulai Hotspot Aman @@ -810,6 +806,10 @@ Jika masalah berlanjut setelah restart, silakan kirim log debug dan buka tiket d ...hmm are you sure this is correct? ... Hmm apakah Anda yakin ini benar? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe telah mendeteksi bahwa Wi-Fi saat ini dimatikan. Untuk menggunakan Hotspot Aman, Wi-Fi harus diaktifkan. + MainWindowController diff --git a/client/gui/translations/ws_desktop_it.ts b/client/gui/translations/ws_desktop_it.ts index e6737601..15cf6e2d 100644 --- a/client/gui/translations/ws_desktop_it.ts +++ b/client/gui/translations/ws_desktop_it.ts @@ -794,10 +794,6 @@ Se il problema persiste dopo un riavvio, inviare un registro di debug e aprire u Wi-Fi is off Il Wi-Fi è disattivato - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe ha rilevato che il Wi-Fi è attualmente disattivato. Per utilizzare Secure Hotspot, il Wi-Fi deve essere attivato. - Could not start Secure Hotspot Impossibile avviare Secure Hotspot @@ -810,6 +806,10 @@ Se il problema persiste dopo un riavvio, inviare un registro di debug e aprire u ...hmm are you sure this is correct? ... hmm sei sicuro che questo sia corretto? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe ha rilevato che il Wi-Fi è attualmente disattivato. Per utilizzare Secure Hotspot, il Wi-Fi deve essere attivato. + MainWindowController diff --git a/client/gui/translations/ws_desktop_ja.ts b/client/gui/translations/ws_desktop_ja.ts index fa31aa66..52d3d1c0 100644 --- a/client/gui/translations/ws_desktop_ja.ts +++ b/client/gui/translations/ws_desktop_ja.ts @@ -794,10 +794,6 @@ If the problem persists after a restart, please send a debug log and open a supp Wi-Fi is off Wi-Fiがオフになっています - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribeは、Wi-Fiが現在オフになっていることを検出しました。セキュアホットスポットを使用するには、Wi-Fiをオンにする必要があります。 - Could not start Secure Hotspot Secure Hotspotを開始できませんでした @@ -810,6 +806,10 @@ If the problem persists after a restart, please send a debug log and open a supp ...hmm are you sure this is correct? ...うーん、これは正しいですか? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribeは、Wi-Fiが現在オフになっていることを検出しました。Secure Hotspotを使用するには、Wi-Fiをオンにする必要があります。 + MainWindowController diff --git a/client/gui/translations/ws_desktop_ko.ts b/client/gui/translations/ws_desktop_ko.ts index 23c81873..b655940a 100644 --- a/client/gui/translations/ws_desktop_ko.ts +++ b/client/gui/translations/ws_desktop_ko.ts @@ -794,10 +794,6 @@ If the problem persists after a restart, please send a debug log and open a supp Wi-Fi is off Wi-Fi가 꺼져 있습니다. - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe에서 Wi-Fi가 현재 꺼져 있음을 감지했습니다. 보안 핫스팟을 사용하려면 Wi-Fi가 켜져 있어야 합니다. - Could not start Secure Hotspot 보안 핫스팟을 시작할 수 없습니다. @@ -810,6 +806,10 @@ If the problem persists after a restart, please send a debug log and open a supp ...hmm are you sure this is correct? ... 흠, 이게 맞습니까? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe에서 Wi-Fi가 현재 꺼져 있음을 감지했습니다. 보안 핫스팟을 사용하려면 Wi-Fi가 켜져 있어야 합니다. + MainWindowController diff --git a/client/gui/translations/ws_desktop_pl.ts b/client/gui/translations/ws_desktop_pl.ts index 7e9cf3f5..45f146b9 100644 --- a/client/gui/translations/ws_desktop_pl.ts +++ b/client/gui/translations/ws_desktop_pl.ts @@ -794,10 +794,6 @@ Jeśli problem nadal występuje po ponownym uruchomieniu, wyślij dziennik debug Wi-Fi is off Wi-Fi jest wyłączone - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe wykrył, że Wi-Fi jest obecnie wyłączone. Aby korzystać z Bezpiecznego hotspotu, Wi-Fi musi być włączone. - Could not start Secure Hotspot Nie można uruchomić bezpiecznego hotspotu @@ -810,6 +806,10 @@ Jeśli problem nadal występuje po ponownym uruchomieniu, wyślij dziennik debug ...hmm are you sure this is correct? ... hmm, jesteś pewien, że się zgadza? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe wykrył, że Wi-Fi jest obecnie wyłączone. Aby korzystać z Bezpiecznego hotspotu, Wi-Fi musi być włączone. + MainWindowController diff --git a/client/gui/translations/ws_desktop_pt.ts b/client/gui/translations/ws_desktop_pt.ts index 34000475..e282d96a 100644 --- a/client/gui/translations/ws_desktop_pt.ts +++ b/client/gui/translations/ws_desktop_pt.ts @@ -794,10 +794,6 @@ Se o problema persistir após uma reinicialização, envie um log de depuração Wi-Fi is off O Wi-Fi está desligado - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - O Windscribe detetou que o Wi-Fi está atualmente desativado. Para utilizar o Hotspot Seguro, o Wi-Fi deve estar ativado. - Could not start Secure Hotspot Não foi possível iniciar o Secure Hotspot @@ -810,6 +806,10 @@ Se o problema persistir após uma reinicialização, envie um log de depuração ...hmm are you sure this is correct? ... hmm você tem certeza de que isso está correto? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + O Windscribe detetou que o Wi-Fi está atualmente desativado. Para utilizar o Hotspot Seguro, o Wi-Fi tem de estar ativado. + MainWindowController diff --git a/client/gui/translations/ws_desktop_ru.ts b/client/gui/translations/ws_desktop_ru.ts index f9e3e738..bc5772a9 100644 --- a/client/gui/translations/ws_desktop_ru.ts +++ b/client/gui/translations/ws_desktop_ru.ts @@ -794,10 +794,6 @@ If the problem persists after a restart, please send a debug log and open a supp Wi-Fi is off Wi-Fi выключен - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe обнаружил, что Wi-Fi в настоящее время отключен. Для использования Secure Hotspot необходимо включить Wi-Fi. - Could not start Secure Hotspot Не удалось запустить безопасную точку доступа @@ -810,6 +806,10 @@ If the problem persists after a restart, please send a debug log and open a supp ...hmm are you sure this is correct? ... хм, вы уверены, что данные корректны? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe обнаружил, что Wi-Fi в настоящее время отключен. Для использования Secure Hotspot необходимо включить Wi-Fi. + MainWindowController diff --git a/client/gui/translations/ws_desktop_tr.ts b/client/gui/translations/ws_desktop_tr.ts index d0ee177f..f47f4ed2 100644 --- a/client/gui/translations/ws_desktop_tr.ts +++ b/client/gui/translations/ws_desktop_tr.ts @@ -794,10 +794,6 @@ Yeniden başlatmanın ardından sorun devam ederse lütfen bir hata ayıklama g Wi-Fi is off Wi-Fi kapalı - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe, Wi-Fi'nin şu anda kapalı olduğunu tespit etti. Secure Hotspot'u kullanmak için Wi-Fi'nin açık olması gerekir. - Could not start Secure Hotspot Secure Hotspot başlatılamadı @@ -810,6 +806,10 @@ Yeniden başlatmanın ardından sorun devam ederse lütfen bir hata ayıklama g ...hmm are you sure this is correct? ... hmm bunun doğru olduğundan emin misin? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe, Wi-Fi'nin şu anda kapalı olduğunu tespit etti. Secure Hotspot'u kullanmak için Wi-Fi'nin açık olması gerekir. + MainWindowController diff --git a/client/gui/translations/ws_desktop_uk.ts b/client/gui/translations/ws_desktop_uk.ts index efc15c5d..9065ad98 100644 --- a/client/gui/translations/ws_desktop_uk.ts +++ b/client/gui/translations/ws_desktop_uk.ts @@ -794,10 +794,6 @@ If the problem persists after a restart, please send a debug log and open a supp Wi-Fi is off Вимкнено Wi-Fi - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe виявив, що Wi-Fi наразі вимкнено. Щоб використовувати безпечну точку доступу, потрібно ввімкнути Wi-Fi. - Could not start Secure Hotspot Не вдалося запустити безпечну точку доступу @@ -810,6 +806,10 @@ If the problem persists after a restart, please send a debug log and open a supp ...hmm are you sure this is correct? ... хм, ви впевнені, що це вірно? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe виявив, що Wi-Fi наразі вимкнено. Щоб використовувати безпечну точку доступу, потрібно ввімкнути Wi-Fi. + MainWindowController diff --git a/client/gui/translations/ws_desktop_vi.ts b/client/gui/translations/ws_desktop_vi.ts index 37cd10f0..9b8ac430 100644 --- a/client/gui/translations/ws_desktop_vi.ts +++ b/client/gui/translations/ws_desktop_vi.ts @@ -794,10 +794,6 @@ Nếu sự cố vẫn tiếp diễn sau khi khởi động lại, vui lòng gử Wi-Fi is off Wi-Fi bị tắt - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe đã phát hiện ra rằng Wi-Fi hiện đang bị tắt. Để sử dụng Điểm truy cập bảo mật, bạn nên bật Wi-Fi. - Could not start Secure Hotspot Không thể khởi động Secure Hotspot @@ -810,6 +806,10 @@ Nếu sự cố vẫn tiếp diễn sau khi khởi động lại, vui lòng gử ...hmm are you sure this is correct? ... Hmm, bạn có chắc điều này là chính xác? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe đã phát hiện ra rằng Wi-Fi hiện đang bị tắt. Để sử dụng Secure Hotspot, bạn phải bật Wi-Fi. + MainWindowController diff --git a/client/gui/translations/ws_desktop_zh-CN.ts b/client/gui/translations/ws_desktop_zh-CN.ts index 55ffc58a..b436119d 100644 --- a/client/gui/translations/ws_desktop_zh-CN.ts +++ b/client/gui/translations/ws_desktop_zh-CN.ts @@ -794,10 +794,6 @@ If the problem persists after a restart, please send a debug log and open a supp Wi-Fi is off Wi-Fi 已关闭 - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe 检测到 Wi-Fi 当前已关闭。要使用安全热点,应打开 Wi-Fi。 - Could not start Secure Hotspot 无法启动安全热点 @@ -810,6 +806,10 @@ If the problem persists after a restart, please send a debug log and open a supp ...hmm are you sure this is correct? 啊?这好像不对呢 + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe 检测到 Wi-Fi 当前已关闭。要使用安全热点,必须打开 Wi-Fi。 + MainWindowController diff --git a/client/gui/translations/ws_desktop_zh-TW.ts b/client/gui/translations/ws_desktop_zh-TW.ts index a6e65d64..7614ad3d 100644 --- a/client/gui/translations/ws_desktop_zh-TW.ts +++ b/client/gui/translations/ws_desktop_zh-TW.ts @@ -794,10 +794,6 @@ If the problem persists after a restart, please send a debug log and open a supp Wi-Fi is off Wi-Fi 已關閉 - - Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi should be turned on. - Windscribe 檢測到Wi-Fi目前已關閉。要使用安全熱點,應打開Wi-Fi。 - Could not start Secure Hotspot 無法啟動安全熱點 @@ -810,6 +806,10 @@ If the problem persists after a restart, please send a debug log and open a supp ...hmm are you sure this is correct? ...嗯,你確定這是正確的嗎? + + Windscribe has detected that Wi-Fi is currently turned off. To use Secure Hotspot, Wi-Fi must be turned on. + Windscribe 檢測到Wi-Fi目前已關閉。要使用安全熱點,必須打開Wi-Fi。 + MainWindowController