From 7a34e166ee6f99fd29ab3c2abcdf958693ed6ce8 Mon Sep 17 00:00:00 2001 From: Jonathan Martin Date: Thu, 7 Dec 2023 10:54:43 -0800 Subject: [PATCH] v2.8.5 --- .../hostnames_manager/dns_resolver.cpp | 2 +- .../hostnames_manager/dns_resolver.cpp | 2 +- client/common/changelog.txt | 29 ++++++--- client/common/types/enums.cpp | 4 +- client/common/version/windscribe_version.h | 6 +- client/gui/backend/backend.cpp | 60 +++++++------------ .../gui/loginwindow/logginginwindowitem.cpp | 8 +-- .../advancedwindow/apiresolutiongroup.cpp | 2 +- .../connectionwindow/packetsizegroup.cpp | 2 +- .../gui/preferenceswindow/protocolgroup.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 | 16 ++--- 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 +-- installer/common/mainwindow.cpp | 2 +- .../translations/windscribe_installer_ar.ts | 4 +- .../translations/windscribe_installer_cs.ts | 4 +- .../translations/windscribe_installer_de.ts | 4 +- .../translations/windscribe_installer_en.ts | 4 +- .../translations/windscribe_installer_es.ts | 4 +- .../translations/windscribe_installer_fa.ts | 4 +- .../translations/windscribe_installer_fr.ts | 4 +- .../translations/windscribe_installer_hi.ts | 4 +- .../translations/windscribe_installer_id.ts | 4 +- .../translations/windscribe_installer_it.ts | 4 +- .../translations/windscribe_installer_ja.ts | 4 +- .../translations/windscribe_installer_ko.ts | 4 +- .../translations/windscribe_installer_pl.ts | 4 +- .../translations/windscribe_installer_pt.ts | 4 +- .../translations/windscribe_installer_ru.ts | 4 +- .../translations/windscribe_installer_tr.ts | 4 +- .../translations/windscribe_installer_uk.ts | 4 +- .../translations/windscribe_installer_vi.ts | 4 +- .../windscribe_installer_zh-CN.ts | 4 +- .../windscribe_installer_zh-TW.ts | 4 +- .../installer/blocks/uninstallprev.cpp | 2 +- 52 files changed, 184 insertions(+), 185 deletions(-) diff --git a/backend/linux/helper/split_tunneling/hostnames_manager/dns_resolver.cpp b/backend/linux/helper/split_tunneling/hostnames_manager/dns_resolver.cpp index 6866ae091..df1a43db7 100644 --- a/backend/linux/helper/split_tunneling/hostnames_manager/dns_resolver.cpp +++ b/backend/linux/helper/split_tunneling/hostnames_manager/dns_resolver.cpp @@ -71,7 +71,7 @@ void DnsResolver::resolveDomains(const std::vector &hostnames) int optmask = 0; memset(&options, 0, sizeof(options)); optmask |= ARES_OPT_TRIES; - options.tries = 1; + options.tries = 3; int status = ares_init_options(&channel_, &options, optmask); if (status != ARES_SUCCESS) diff --git a/backend/windows/windscribe_service/split_tunneling/hostnames_manager/dns_resolver.cpp b/backend/windows/windscribe_service/split_tunneling/hostnames_manager/dns_resolver.cpp index 17b814f3a..c50f94ea3 100644 --- a/backend/windows/windscribe_service/split_tunneling/hostnames_manager/dns_resolver.cpp +++ b/backend/windows/windscribe_service/split_tunneling/hostnames_manager/dns_resolver.cpp @@ -70,7 +70,7 @@ void DnsResolver::resolveDomains(const std::vector &hostnames) int optmask = 0; memset(&options, 0, sizeof(options)); optmask |= ARES_OPT_TRIES; - options.tries = 1; + options.tries = 3; int status = ares_init_options(&channel_, &options, optmask); if (status != ARES_SUCCESS) diff --git a/client/common/changelog.txt b/client/common/changelog.txt index 91eca16e4..a99c8bd7d 100644 --- a/client/common/changelog.txt +++ b/client/common/changelog.txt @@ -1,14 +1,29 @@ +2.8.5 (04/12/2023) +All: + * Fixed some text in preferences not matching with mobile. #826 + * Fixed auto-connect not triggering when reconnecting to the same network. #821 +Windows: + * Fixed installer sometimes exiting during updates. #772 + * Fixed misspelling in installer error message. #776 + * Fixed "logging in" screen background color not matching with other OSes. + * Fixed DNS queries for hostname split tunnels sometimes not resolving. #822 +macOS: + * Fixed ctrld binary was not marked executable. #823 +Linux: + * Fixed DNS queries for hostname split tunnels sometimes not resolving. #822 + + 2.8.4 (28/11/2023) All: + * Updated OpenVPN to 2.6.8. #759 * Fixed UI issue where search tab may overlay other tabs. #811 * Fixed UI screen transition issues when anti-abuse is triggered. #817 - * Upgraded to OpenVPN 2.6.8. #759 Windows: * Fixed custom OpenVPN configs fail to connect. This was due to a bug in OpenVPN 2.6.7. #759 macOS: - * Fixed firewall not blocking traffic while disconnected in split inclusive mode #748 + * Fixed firewall not blocking traffic while disconnected in split inclusive mode. #748 Linux: - * Fixed firewall not blocking traffic while disconnected in split inclusive mode #748 + * Fixed firewall not blocking traffic while disconnected in split inclusive mode. #748 * Removed "Docked"/"Pinned" feature from preferences. #241 @@ -47,7 +62,7 @@ All: * Fixed UI issue when the hotspot feature is enabled and a SSL error occurs. #692 * Fixed app may not reconnect after Internet is restored when using OpenVPN. #794 * Fixed app gets stuck on the logging in screen after accepting the 'ignore SSL errors' prompt. #801 - * Upgraded app dependencies to latest available version. #759 + * Updated app dependencies to latest available version. #759 Windows: * Fixed installer fails to launch if Windows version is incompatible. #789 macOS: @@ -97,7 +112,7 @@ All: * Fixed incorrect padding in 'out of data' screen. #750 * Fixed load indicator for bottom-most location is slightly clipped. #765 * Fixed clicking the blog link in the About menu doesn't do anything. #771 - * Upgraded bundled ctrld utility to v1.3.1. #709 + * Updated bundled ctrld utility to v1.3.1. #709 Windows: * Added language localization to the installer. #726 * Added language localization to the uninstaller. #754 @@ -564,7 +579,7 @@ All: * Fixed Proxy Gateway IP display goes blank when the proxy is connected to. #506 * Fixed a crash caused by a bug in the failover logic. #507 Windows: - * Detect failure to set up the WireGuard adapter and abort the connection attempt. Notify the user of the failure if connection mode is manual. #489 + * Improved failure detection when setting up the WireGuard adapter. #489 2.5.9 (01/11/2022) @@ -572,7 +587,7 @@ All: * Fixed bottom info widget hidden when something connects to proxy/hotspot #455 * Fixed signing into an expired account. #500 * Fixed the working connection setting isn't saved. #202 - * Sync settings immediately. #476. + * Fixed settings not syncing immediately. #476. Windows: * Reverted inclusive split tunneled apps unable to access localhost. #464 Linux: diff --git a/client/common/types/enums.cpp b/client/common/types/enums.cpp index 89a769668..cd1af0aa2 100644 --- a/client/common/types/enums.cpp +++ b/client/common/types/enums.cpp @@ -145,7 +145,7 @@ QString TAP_ADAPTER_TYPE_toString(TAP_ADAPTER_TYPE t) QString FIREWALL_MODE_toString(FIREWALL_MODE t) { if (t == FIREWALL_MODE_MANUAL) return QObject::tr("Manual"); - else if (t == FIREWALL_MODE_AUTOMATIC) return QObject::tr("Automatic"); + else if (t == FIREWALL_MODE_AUTOMATIC) return QObject::tr("Auto"); else if (t == FIREWALL_MODE_ALWAYS_ON) return QObject::tr("Always On"); else { WS_ASSERT(false); @@ -263,7 +263,7 @@ QList> UPDATE_CHANNEL_toList() QString DNS_MANAGER_TYPE_toString(DNS_MANAGER_TYPE t) { - if (t == DNS_MANAGER_AUTOMATIC) return QObject::tr("Automatic"); + if (t == DNS_MANAGER_AUTOMATIC) return QObject::tr("Auto"); else if (t == DNS_MANAGER_RESOLV_CONF) return "resolvconf"; else if (t == DNS_MANAGER_SYSTEMD_RESOLVED) return "systemd-resolved"; else if (t == DNS_MANAGER_NETWORK_MANAGER) return "NetworkManager"; diff --git a/client/common/version/windscribe_version.h b/client/common/version/windscribe_version.h index 5791801c1..f5ac21d39 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 8 -#define WINDSCRIBE_BUILD_VERSION 4 +#define WINDSCRIBE_BUILD_VERSION 5 // 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/gui/backend/backend.cpp b/client/gui/backend/backend.cpp index 4bbf893f8..741f2c87f 100644 --- a/client/gui/backend/backend.cpp +++ b/client/gui/backend/backend.cpp @@ -676,29 +676,25 @@ void Backend::handleNetworkChange(types::NetworkInterface networkInterface, bool QString friendlyName = networkInterface.networkOrSsid; QVector networkListOld = PersistentState::instance().networkWhitelist(); - for (int i = 0; i < networkListOld.size(); i++) - { - if (networkListOld[i].networkOrSsid== networkInterface.networkOrSsid) - { + for (int i = 0; i < networkListOld.size(); i++) { + if (networkListOld[i].networkOrSsid== networkInterface.networkOrSsid) { friendlyName = networkListOld[i].friendlyName; newNetwork = false; break; } } - if (friendlyName == "") friendlyName = networkInterface.networkOrSsid; + if (friendlyName == "") { + friendlyName = networkInterface.networkOrSsid; + } networkInterface.friendlyName = friendlyName; - if (networkInterface.networkOrSsid != "") // not a disconnect - { + if (networkInterface.networkOrSsid != "") { // not a disconnect // Add a new network as secured - if (newNetwork) - { - + if (newNetwork) { #ifdef Q_OS_MAC // generate friendly name for MacOS Ethernet - if (networkInterface.interfaceType == NETWORK_INTERFACE_ETH) - { + if (networkInterface.interfaceType == NETWORK_INTERFACE_ETH) { friendlyName = generateNewFriendlyName(); networkInterface.friendlyName = friendlyName; @@ -706,12 +702,9 @@ void Backend::handleNetworkChange(types::NetworkInterface networkInterface, bool #endif types::NetworkInterface newEntry; newEntry = networkInterface; - if (preferences_.isAutoSecureNetworks()) - { + if (preferences_.isAutoSecureNetworks()) { newEntry.trustType = NETWORK_TRUST_SECURED; - } - else - { + } else { newEntry.trustType = NETWORK_TRUST_UNSECURED; } networkListOld << newEntry; @@ -721,32 +714,24 @@ void Backend::handleNetworkChange(types::NetworkInterface networkInterface, bool // GUI-side persistent list holds trustiness QVector networkList = PersistentState::instance().networkWhitelist(); types::NetworkInterface foundInterface; - for (int i = 0; i < networkList.size(); i++) - { - if (networkList[i].networkOrSsid == networkInterface.networkOrSsid) - { + for (int i = 0; i < networkList.size(); i++) { + if (networkList[i].networkOrSsid == networkInterface.networkOrSsid) { foundInterface = networkList[i]; break; } } - if (!Utils::sameNetworkInterface(networkInterface, currentNetworkInterface_) || manual) - // actual network change or explicit trigger from preference change - // prevents brief/rare network loss during CONNECTING from triggering network change - { + // actual network change or explicit trigger from preference change + // prevents brief/rare network loss during CONNECTING from triggering network change + if (!Utils::sameNetworkInterface(networkInterface, currentNetworkInterface_) || manual) { // disconnect VPN on an unsecured network -- connect VPN on a secured network if auto-connect is on - if (foundInterface.trustType == NETWORK_TRUST_UNSECURED) - { - if (!connectStateHelper_.isDisconnected()) - { + if (foundInterface.trustType == NETWORK_TRUST_UNSECURED) { + if (!connectStateHelper_.isDisconnected()) { qCDebug(LOG_BASIC) << "Network Whitelisting detected UNSECURED network -- Disconnecting.."; sendDisconnect(); } - } - else // SECURED - { - if (preferences_.isAutoConnect() && connectStateHelper_.isDisconnected()) - { + } else { // SECURED + if (preferences_.isAutoConnect() && connectStateHelper_.isDisconnected()) { qCDebug(LOG_BASIC) << "Network Whitelisting detected SECURED network -- Connecting.."; sendConnect(PersistentState::instance().lastLocation()); } @@ -757,12 +742,11 @@ void Backend::handleNetworkChange(types::NetworkInterface networkInterface, bool // Even if not a real network change we want to update the UI with current network info. types::NetworkInterface protoInterface = networkInterface; - protoInterface.trustType =foundInterface.trustType; + protoInterface.trustType = foundInterface.trustType; emit networkChanged(protoInterface); + } else { + currentNetworkInterface_ = networkInterface; - } - else - { // inform UI no network emit networkChanged(networkInterface); } diff --git a/client/gui/loginwindow/logginginwindowitem.cpp b/client/gui/loginwindow/logginginwindowitem.cpp index 8f8c9f3df..35f092efb 100644 --- a/client/gui/loginwindow/logginginwindowitem.cpp +++ b/client/gui/loginwindow/logginginwindowitem.cpp @@ -32,13 +32,13 @@ void LoggingInWindowItem::paint(QPainter *painter, const QStyleOptionGraphicsIte painter->setRenderHint(QPainter::Antialiasing); + QColor color = FontManager::instance().getMidnightColor(); #ifdef Q_OS_WIN - painter->fillRect(boundingRect(), QBrush(QColor(0, 0, 0))); + painter->fillRect(boundingRect(), QBrush(color)); #else //todo scale - QColor black = FontManager::instance().getMidnightColor(); - painter->setPen(black); - painter->setBrush(black); + painter->setPen(color); + painter->setBrush(color); painter->drawRoundedRect(boundingRect().adjusted(0,0,0,0), 5*G_SCALE, 5*G_SCALE); #endif diff --git a/client/gui/preferenceswindow/advancedwindow/apiresolutiongroup.cpp b/client/gui/preferenceswindow/advancedwindow/apiresolutiongroup.cpp index 0d440074f..1ffe15e57 100644 --- a/client/gui/preferenceswindow/advancedwindow/apiresolutiongroup.cpp +++ b/client/gui/preferenceswindow/advancedwindow/apiresolutiongroup.cpp @@ -73,7 +73,7 @@ void ApiResolutionGroup::onLanguageChanged() { resolutionModeItem_->setLabelCaption(tr("API Resolution")); QList> list; - list << qMakePair(tr("Automatic"), 0); + list << qMakePair(tr("Auto"), 0); list << qMakePair(tr("Manual"), 1); resolutionModeItem_->setItems(list, settings_.getIsAutomatic() ? 0 : 1); diff --git a/client/gui/preferenceswindow/connectionwindow/packetsizegroup.cpp b/client/gui/preferenceswindow/connectionwindow/packetsizegroup.cpp index c4d076ea6..ed91056f5 100644 --- a/client/gui/preferenceswindow/connectionwindow/packetsizegroup.cpp +++ b/client/gui/preferenceswindow/connectionwindow/packetsizegroup.cpp @@ -137,7 +137,7 @@ void PacketSizeGroup::onLanguageChanged() { packetSizeModeItem_->setLabelCaption(tr("Packet Size")); QList> list; - list << qMakePair(tr("Automatic"), 0); + list << qMakePair(tr("Auto"), 0); list << qMakePair(tr("Manual"), 1); packetSizeModeItem_->setItems(list, settings_.isAutomatic ? 0 : 1); diff --git a/client/gui/preferenceswindow/protocolgroup.cpp b/client/gui/preferenceswindow/protocolgroup.cpp index dc3c3602c..b8b26479e 100644 --- a/client/gui/preferenceswindow/protocolgroup.cpp +++ b/client/gui/preferenceswindow/protocolgroup.cpp @@ -140,7 +140,7 @@ void ProtocolGroup::onLanguageChanged() if (type_ == SelectionType::COMBO_BOX) { connectionModeItem_->setLabelCaption(title_); QList> list; - list << qMakePair(tr("Automatic"), 0); + list << qMakePair(tr("Auto"), 0); list << qMakePair(tr("Manual"), 1); connectionModeItem_->setItems(list, settings_.isAutomatic() ? 0 : 1); diff --git a/client/gui/translations/ws_desktop_ar.ts b/client/gui/translations/ws_desktop_ar.ts index 3ef84e974..16ac3a3c5 100644 --- a/client/gui/translations/ws_desktop_ar.ts +++ b/client/gui/translations/ws_desktop_ar.ts @@ -966,7 +966,7 @@ If the problem persists after a restart, please send a debug log and open a supp دقة واجهة برمجة التطبيقات - Automatic + Auto تلقائي @@ -1526,7 +1526,7 @@ Connect to a network first حجم الحزمة - Automatic + Auto تلقائي @@ -1603,7 +1603,7 @@ Connect to a network first PreferencesWindow::ProtocolGroup - Automatic + Auto تلقائي @@ -1993,7 +1993,7 @@ If the reinstall does not help, please contact Windscribe support for assistance يدوي - Automatic + Auto تلقائي diff --git a/client/gui/translations/ws_desktop_cs.ts b/client/gui/translations/ws_desktop_cs.ts index bbe664ca3..b96f65de6 100644 --- a/client/gui/translations/ws_desktop_cs.ts +++ b/client/gui/translations/ws_desktop_cs.ts @@ -966,7 +966,7 @@ Pokud problém přetrvává i po restartování, odešlete protokol ladění, ot Rozlišení rozhraní API - Automatic + Auto Automatický @@ -1526,7 +1526,7 @@ Nejprve se připojte k síti Velikost paketu - Automatic + Auto Automatický @@ -1603,7 +1603,7 @@ Nejprve se připojte k síti PreferencesWindow::ProtocolGroup - Automatic + Auto Automatický @@ -1993,7 +1993,7 @@ Pokud přeinstalace nepomůže, obraťte se na podporu Windscribe a požádejte Manuál - Automatic + Auto Automatický diff --git a/client/gui/translations/ws_desktop_de.ts b/client/gui/translations/ws_desktop_de.ts index 0be11125d..51aaa1b96 100644 --- a/client/gui/translations/ws_desktop_de.ts +++ b/client/gui/translations/ws_desktop_de.ts @@ -966,7 +966,7 @@ Wenn das Problem nach einem Neustart weiterhin besteht, senden Sie bitte ein Deb API-Auflösung - Automatic + Auto Automatisch @@ -1526,7 +1526,7 @@ Zuerst eine Verbindung mit einem Netzwerk herstellen Paketgröße - Automatic + Auto Automatisch @@ -1603,7 +1603,7 @@ Zuerst eine Verbindung mit einem Netzwerk herstellen PreferencesWindow::ProtocolGroup - Automatic + Auto Automatisch @@ -1993,7 +1993,7 @@ Wenn die Neuinstallation nicht hilft, wenden Sie sich bitte an den Windscribe-Su Manuell - Automatic + Auto Automatisch diff --git a/client/gui/translations/ws_desktop_en.ts b/client/gui/translations/ws_desktop_en.ts index 800e2c96b..cd9bc93cb 100644 --- a/client/gui/translations/ws_desktop_en.ts +++ b/client/gui/translations/ws_desktop_en.ts @@ -966,8 +966,8 @@ If the problem persists after a restart, please send a debug log and open a supp API Resolution - Automatic - Automatic + Auto + Auto Manual @@ -1526,8 +1526,8 @@ Connect to a network first Packet Size - Automatic - Automatic + Auto + Auto Manual @@ -1603,8 +1603,8 @@ Connect to a network first PreferencesWindow::ProtocolGroup - Automatic - Automatic + Auto + Auto Manual @@ -1993,8 +1993,8 @@ If the reinstall does not help, please contact Windscribe support for assistance Manual - Automatic - Automatic + Auto + Auto Always On diff --git a/client/gui/translations/ws_desktop_es.ts b/client/gui/translations/ws_desktop_es.ts index 7176a6b1f..aac5b8eb5 100644 --- a/client/gui/translations/ws_desktop_es.ts +++ b/client/gui/translations/ws_desktop_es.ts @@ -966,7 +966,7 @@ Si el problema persiste después de un reinicio, envía un registro de depuraci Resolución de API - Automatic + Auto Automático @@ -1526,7 +1526,7 @@ Conéctate primero a una red Tamaño del paquete - Automatic + Auto Automático @@ -1603,7 +1603,7 @@ Conéctate primero a una red PreferencesWindow::ProtocolGroup - Automatic + Auto Automático @@ -1993,7 +1993,7 @@ Si la reinstalación no ayuda, póngase en contacto con el soporte de Windscribe Manual - Automatic + Auto Automático diff --git a/client/gui/translations/ws_desktop_fa.ts b/client/gui/translations/ws_desktop_fa.ts index 9c9646580..aaf190dae 100644 --- a/client/gui/translations/ws_desktop_fa.ts +++ b/client/gui/translations/ws_desktop_fa.ts @@ -966,7 +966,7 @@ If the problem persists after a restart, please send a debug log and open a supp قطعنامه API - Automatic + Auto خودکار @@ -1526,7 +1526,7 @@ Connect to a network first اندازه بسته - Automatic + Auto خودکار @@ -1603,7 +1603,7 @@ Connect to a network first PreferencesWindow::ProtocolGroup - Automatic + Auto خودکار @@ -1993,7 +1993,7 @@ If the reinstall does not help, please contact Windscribe support for assistance دستی - Automatic + Auto خودکار diff --git a/client/gui/translations/ws_desktop_fr.ts b/client/gui/translations/ws_desktop_fr.ts index 6b17ddfa1..b3ec1e28f 100644 --- a/client/gui/translations/ws_desktop_fr.ts +++ b/client/gui/translations/ws_desktop_fr.ts @@ -966,7 +966,7 @@ Si le problème persiste après un redémarrage, envoyez un journal de débogage Résolution de l’API - Automatic + Auto Automatique @@ -1526,7 +1526,7 @@ Se connecter d’abord à un réseau Taille du paquet - Automatic + Auto Automatique @@ -1603,7 +1603,7 @@ Se connecter d’abord à un réseau PreferencesWindow::ProtocolGroup - Automatic + Auto Automatique @@ -1993,7 +1993,7 @@ Si la réinstallation ne résout pas le problème, veuillez contacter le support Manuelle - Automatic + Auto Automatique diff --git a/client/gui/translations/ws_desktop_hi.ts b/client/gui/translations/ws_desktop_hi.ts index b2b03fc1c..6a2b9a5b3 100644 --- a/client/gui/translations/ws_desktop_hi.ts +++ b/client/gui/translations/ws_desktop_hi.ts @@ -966,7 +966,7 @@ If the problem persists after a restart, please send a debug log and open a supp एपीआई समाधान - Automatic + Auto स्वचालित @@ -1526,7 +1526,7 @@ Connect to a network first पैकेट का आकार - Automatic + Auto स्वचालित @@ -1603,7 +1603,7 @@ Connect to a network first PreferencesWindow::ProtocolGroup - Automatic + Auto स्वचालित @@ -1993,7 +1993,7 @@ If the reinstall does not help, please contact Windscribe support for assistance हस्तचालित - Automatic + Auto स्वचालित diff --git a/client/gui/translations/ws_desktop_id.ts b/client/gui/translations/ws_desktop_id.ts index 5febf78e6..a89123c86 100644 --- a/client/gui/translations/ws_desktop_id.ts +++ b/client/gui/translations/ws_desktop_id.ts @@ -966,7 +966,7 @@ Jika masalah berlanjut setelah restart, silakan kirim log debug dan buka tiket d Resolusi API - Automatic + Auto Otomatis @@ -1526,7 +1526,7 @@ Menyambungkan ke jaringan terlebih dahulu Ukuran Paket - Automatic + Auto Otomatis @@ -1603,7 +1603,7 @@ Menyambungkan ke jaringan terlebih dahulu PreferencesWindow::ProtocolGroup - Automatic + Auto Otomatis @@ -1993,7 +1993,7 @@ Jika penginstalan ulang tidak membantu, hubungi dukungan Windscribe untuk mendap Manual - Automatic + Auto Otomatis diff --git a/client/gui/translations/ws_desktop_it.ts b/client/gui/translations/ws_desktop_it.ts index 43bdcce4b..d80894acc 100644 --- a/client/gui/translations/ws_desktop_it.ts +++ b/client/gui/translations/ws_desktop_it.ts @@ -966,7 +966,7 @@ Se il problema persiste dopo un riavvio, inviare un registro di debug e aprire u Risoluzione API - Automatic + Auto Automatico @@ -1526,7 +1526,7 @@ Connettersi prima a una rete Dimensione del pacchetto - Automatic + Auto Automatico @@ -1603,7 +1603,7 @@ Connettersi prima a una rete PreferencesWindow::ProtocolGroup - Automatic + Auto Automatico @@ -1993,7 +1993,7 @@ Se la reinstallazione non risolve il problema, contattare il supporto Windscribe Manuale - Automatic + Auto Automatico diff --git a/client/gui/translations/ws_desktop_ja.ts b/client/gui/translations/ws_desktop_ja.ts index f2b6ec1c3..690e644c3 100644 --- a/client/gui/translations/ws_desktop_ja.ts +++ b/client/gui/translations/ws_desktop_ja.ts @@ -966,7 +966,7 @@ If the problem persists after a restart, please send a debug log and open a supp API 解決 - Automatic + Auto 自動 @@ -1526,7 +1526,7 @@ Connect to a network first パケット サイズ - Automatic + Auto 自動 @@ -1603,7 +1603,7 @@ Connect to a network first PreferencesWindow::ProtocolGroup - Automatic + Auto 自動 @@ -1993,7 +1993,7 @@ If the reinstall does not help, please contact Windscribe support for assistance 手動 - Automatic + Auto 自動 diff --git a/client/gui/translations/ws_desktop_ko.ts b/client/gui/translations/ws_desktop_ko.ts index d892dc672..5a5db260e 100644 --- a/client/gui/translations/ws_desktop_ko.ts +++ b/client/gui/translations/ws_desktop_ko.ts @@ -966,7 +966,7 @@ If the problem persists after a restart, please send a debug log and open a supp API 해결 방법 - Automatic + Auto 자동 번역 @@ -1526,7 +1526,7 @@ Connect to a network first 패킷 크기 - Automatic + Auto 자동 번역 @@ -1603,7 +1603,7 @@ Connect to a network first PreferencesWindow::ProtocolGroup - Automatic + Auto 자동 번역 @@ -1993,7 +1993,7 @@ If the reinstall does not help, please contact Windscribe support for assistance 수동 - Automatic + Auto 자동 번역 diff --git a/client/gui/translations/ws_desktop_pl.ts b/client/gui/translations/ws_desktop_pl.ts index 82e0cc0ae..b09d270cd 100644 --- a/client/gui/translations/ws_desktop_pl.ts +++ b/client/gui/translations/ws_desktop_pl.ts @@ -966,7 +966,7 @@ Jeśli problem nadal występuje po ponownym uruchomieniu, wyślij dziennik debug Rozdzielczość interfejsu API - Automatic + Auto Automatyczne @@ -1526,7 +1526,7 @@ Najpierw połącz się z siecią Rozmiar pakietu - Automatic + Auto Automatyczne @@ -1603,7 +1603,7 @@ Najpierw połącz się z siecią PreferencesWindow::ProtocolGroup - Automatic + Auto Automatyczne @@ -1993,7 +1993,7 @@ Jeśli ponowna instalacja nie pomoże, skontaktuj się z pomocą techniczną Win Ręcznie - Automatic + Auto Automatyczne diff --git a/client/gui/translations/ws_desktop_pt.ts b/client/gui/translations/ws_desktop_pt.ts index a88030464..3359545d4 100644 --- a/client/gui/translations/ws_desktop_pt.ts +++ b/client/gui/translations/ws_desktop_pt.ts @@ -966,7 +966,7 @@ Se o problema persistir após uma reinicialização, envie um log de depuração Resolução da API - Automatic + Auto Automático @@ -1526,7 +1526,7 @@ Conecte-se a uma rede primeiro Tamanho do pacote - Automatic + Auto Automático @@ -1603,7 +1603,7 @@ Conecte-se a uma rede primeiro PreferencesWindow::ProtocolGroup - Automatic + Auto Automático @@ -1993,7 +1993,7 @@ Se a reinstalação não ajudar, entre em contato com o suporte do Windscribe pa Manual - Automatic + Auto Automático diff --git a/client/gui/translations/ws_desktop_ru.ts b/client/gui/translations/ws_desktop_ru.ts index 5c5895c84..8afce71de 100644 --- a/client/gui/translations/ws_desktop_ru.ts +++ b/client/gui/translations/ws_desktop_ru.ts @@ -966,7 +966,7 @@ If the problem persists after a restart, please send a debug log and open a supp Сервер API - Automatic + Auto Автоматически @@ -1526,7 +1526,7 @@ Connect to a network first Размер пакета - Automatic + Auto Автоматически @@ -1603,7 +1603,7 @@ Connect to a network first PreferencesWindow::ProtocolGroup - Automatic + Auto Автоматически @@ -1993,7 +1993,7 @@ If the reinstall does not help, please contact Windscribe support for assistance Вручную - Automatic + Auto Автоматически diff --git a/client/gui/translations/ws_desktop_tr.ts b/client/gui/translations/ws_desktop_tr.ts index 1d3c61a37..430c61494 100644 --- a/client/gui/translations/ws_desktop_tr.ts +++ b/client/gui/translations/ws_desktop_tr.ts @@ -966,7 +966,7 @@ Yeniden başlatmanın ardından sorun devam ederse lütfen bir hata ayıklama g API Çözümlemesi - Automatic + Auto Otomatik @@ -1526,7 +1526,7 @@ Connect to a network first Paket Boyutu - Automatic + Auto Otomatik @@ -1603,7 +1603,7 @@ Connect to a network first PreferencesWindow::ProtocolGroup - Automatic + Auto Otomatik @@ -1993,7 +1993,7 @@ Yeniden yükleme yardımcı olmazsa, lütfen yardım için Windscribe desteği i El ile - Automatic + Auto Otomatik diff --git a/client/gui/translations/ws_desktop_uk.ts b/client/gui/translations/ws_desktop_uk.ts index 7d642106a..48f5206ba 100644 --- a/client/gui/translations/ws_desktop_uk.ts +++ b/client/gui/translations/ws_desktop_uk.ts @@ -966,7 +966,7 @@ If the problem persists after a restart, please send a debug log and open a supp Роздільна здатність API - Automatic + Auto Автоматичний @@ -1526,7 +1526,7 @@ Connect to a network first Розмір пакета - Automatic + Auto Автоматичний @@ -1603,7 +1603,7 @@ Connect to a network first PreferencesWindow::ProtocolGroup - Automatic + Auto Автоматичний @@ -1993,7 +1993,7 @@ If the reinstall does not help, please contact Windscribe support for assistance Керівництво - Automatic + Auto Автоматичний diff --git a/client/gui/translations/ws_desktop_vi.ts b/client/gui/translations/ws_desktop_vi.ts index fd5ddf6a4..e7bf7e5b3 100644 --- a/client/gui/translations/ws_desktop_vi.ts +++ b/client/gui/translations/ws_desktop_vi.ts @@ -966,7 +966,7 @@ Nếu sự cố vẫn tiếp diễn sau khi khởi động lại, vui lòng gử Phân giải API - Automatic + Auto Tự động @@ -1526,7 +1526,7 @@ Kết nối với mạng trước Kích thước gói - Automatic + Auto Tự động @@ -1603,7 +1603,7 @@ Kết nối với mạng trước PreferencesWindow::ProtocolGroup - Automatic + Auto Tự động @@ -1993,7 +1993,7 @@ Nếu việc cài đặt lại không hiệu quả, vui lòng liên hệ với b Cẩm nang - Automatic + Auto Tự động diff --git a/client/gui/translations/ws_desktop_zh-CN.ts b/client/gui/translations/ws_desktop_zh-CN.ts index 43ea66695..6dec38a2c 100644 --- a/client/gui/translations/ws_desktop_zh-CN.ts +++ b/client/gui/translations/ws_desktop_zh-CN.ts @@ -966,7 +966,7 @@ If the problem persists after a restart, please send a debug log and open a supp 接口解析 - Automatic + Auto 自动 @@ -1526,7 +1526,7 @@ Connect to a network first 数据包大小 - Automatic + Auto 自动 @@ -1603,7 +1603,7 @@ Connect to a network first PreferencesWindow::ProtocolGroup - Automatic + Auto 自动 @@ -1993,7 +1993,7 @@ If the reinstall does not help, please contact Windscribe support for assistance 手动 - Automatic + Auto 自动 diff --git a/client/gui/translations/ws_desktop_zh-TW.ts b/client/gui/translations/ws_desktop_zh-TW.ts index be30cbedb..3d220b7ae 100644 --- a/client/gui/translations/ws_desktop_zh-TW.ts +++ b/client/gui/translations/ws_desktop_zh-TW.ts @@ -966,7 +966,7 @@ If the problem persists after a restart, please send a debug log and open a supp 介面解析 - Automatic + Auto 自動 @@ -1526,7 +1526,7 @@ Connect to a network first 數據包大小 - Automatic + Auto 自動 @@ -1603,7 +1603,7 @@ Connect to a network first PreferencesWindow::ProtocolGroup - Automatic + Auto 自動 @@ -1993,7 +1993,7 @@ If the reinstall does not help, please contact Windscribe support for assistance 手動 - Automatic + Auto 自動 diff --git a/installer/common/mainwindow.cpp b/installer/common/mainwindow.cpp index fbf9a9793..f0c3e68f3 100644 --- a/installer/common/mainwindow.cpp +++ b/installer/common/mainwindow.cpp @@ -90,7 +90,7 @@ MainWindow::MainWindow(bool isAdmin, InstallerOptions &options) : QWidget(nullpt if (!isAdmin) { showError(tr("Installation failed"), - tr("You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe."), + tr("You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe."), true); return; } diff --git a/installer/common/translations/windscribe_installer_ar.ts b/installer/common/translations/windscribe_installer_ar.ts index 7f441b89a..c43ded487 100644 --- a/installer/common/translations/windscribe_installer_ar.ts +++ b/installer/common/translations/windscribe_installer_ar.ts @@ -81,8 +81,8 @@ إلغاء الأمر - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - ليس لديك أذونات كافية لتشغيل هذا التطبيق. الامتيازات الإدارية مطلوبة لتثبيت Windscribe. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + ليس لديك أذونات كافية لتشغيل هذا التطبيق. الامتيازات الإدارية مطلوبة لتثبيت Windscribe. diff --git a/installer/common/translations/windscribe_installer_cs.ts b/installer/common/translations/windscribe_installer_cs.ts index fd9cca283..9ebc2b07b 100644 --- a/installer/common/translations/windscribe_installer_cs.ts +++ b/installer/common/translations/windscribe_installer_cs.ts @@ -81,8 +81,8 @@ Zrušit - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - Nemáte dostatečná oprávnění ke spuštění této aplikace. K instalaci aplikace Windscribe jsou vyžadována oprávnění správce. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + Nemáte dostatečná oprávnění ke spuštění této aplikace. K instalaci aplikace Windscribe jsou vyžadována oprávnění správce. diff --git a/installer/common/translations/windscribe_installer_de.ts b/installer/common/translations/windscribe_installer_de.ts index dea257dca..a426541a0 100644 --- a/installer/common/translations/windscribe_installer_de.ts +++ b/installer/common/translations/windscribe_installer_de.ts @@ -81,8 +81,8 @@ Abbrechen - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - Sie verfügen nicht über ausreichende Berechtigungen zum Ausführen dieser Anwendung. Für die Installation von Windscribe sind administrative Privilegien erforderlich. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + Sie verfügen nicht über ausreichende Berechtigungen zum Ausführen dieser Anwendung. Für die Installation von Windscribe sind Administratorrechte erforderlich. diff --git a/installer/common/translations/windscribe_installer_en.ts b/installer/common/translations/windscribe_installer_en.ts index 4687955c9..d40856ceb 100644 --- a/installer/common/translations/windscribe_installer_en.ts +++ b/installer/common/translations/windscribe_installer_en.ts @@ -81,8 +81,8 @@ Cancel - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. diff --git a/installer/common/translations/windscribe_installer_es.ts b/installer/common/translations/windscribe_installer_es.ts index b87484c0b..0107d9d2b 100644 --- a/installer/common/translations/windscribe_installer_es.ts +++ b/installer/common/translations/windscribe_installer_es.ts @@ -81,8 +81,8 @@ Cancelar - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - No tiene permisos suficientes para ejecutar esta aplicación. Se requieren privilegios administrativos para instalar Windscribe. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + No tiene permisos suficientes para ejecutar esta aplicación. Se requieren privilegios administrativos para instalar Windscribe. diff --git a/installer/common/translations/windscribe_installer_fa.ts b/installer/common/translations/windscribe_installer_fa.ts index 120c91c00..5f4aeee0f 100644 --- a/installer/common/translations/windscribe_installer_fa.ts +++ b/installer/common/translations/windscribe_installer_fa.ts @@ -81,8 +81,8 @@ مسیر نصب مشخص شده در درایو سیستم نیست. برای اطمینان از امنیت برنامه و سیستم شما، باید بر روی همان درایو ویندوز نصب شود. پوشه نصب به حالت پیشفرض بازنشانی شده است. - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - شما مجوز کافی برای اجرای این برنامه را ندارید. امتیازات اداری برای نصب Windscribe مورد نیاز است. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + شما مجوز کافی برای اجرای این برنامه را ندارید. امتیازات اداری برای نصب Windscribe مورد نیاز است. diff --git a/installer/common/translations/windscribe_installer_fr.ts b/installer/common/translations/windscribe_installer_fr.ts index 13be0e9fc..d7a653f02 100644 --- a/installer/common/translations/windscribe_installer_fr.ts +++ b/installer/common/translations/windscribe_installer_fr.ts @@ -81,8 +81,8 @@ Annuler - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - Vous ne disposez pas des autorisations suffisantes pour exécuter cette application. Des privilèges administratifs sont nécessaires pour installer Windscribe. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + Vous ne disposez pas des autorisations suffisantes pour exécuter cette application. Des privilèges d’administrateur sont requis pour installer Windscribe. diff --git a/installer/common/translations/windscribe_installer_hi.ts b/installer/common/translations/windscribe_installer_hi.ts index a9c2db012..608444dee 100644 --- a/installer/common/translations/windscribe_installer_hi.ts +++ b/installer/common/translations/windscribe_installer_hi.ts @@ -81,8 +81,8 @@ रद्द करना - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - आपके पास इस अनुप्रयोग को चलाने के लिए पर्याप्त अनुमतियाँ नहीं हैं. विंडसाइड स्थापित करने के लिए प्रशासनिक विशेषाधिकार ों की आवश्यकता होती है। + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + आपके पास इस अनुप्रयोग को चलाने के लिए पर्याप्त अनुमतियाँ नहीं हैं. विंडसाइड स्थापित करने के लिए व्यवस्थापकीय विशेषाधिकारों की आवश्यकता होती है. diff --git a/installer/common/translations/windscribe_installer_id.ts b/installer/common/translations/windscribe_installer_id.ts index d45d74514..8d438e07d 100644 --- a/installer/common/translations/windscribe_installer_id.ts +++ b/installer/common/translations/windscribe_installer_id.ts @@ -81,8 +81,8 @@ Jalur instalasi yang ditentukan tidak ada di drive sistem. Untuk memastikan keamanan aplikasi, dan sistem Anda, itu harus diinstal pada drive yang sama dengan Windows. Folder instalasi telah diatur ulang ke default. - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - Anda tidak memiliki izin yang memadai untuk menjalankan aplikasi ini. Hak istimewa administratif diperlukan untuk menginstal Windscribe. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + Anda tidak memiliki izin yang memadai untuk menjalankan aplikasi ini. Hak administratif diperlukan untuk menginstal Windscribe. diff --git a/installer/common/translations/windscribe_installer_it.ts b/installer/common/translations/windscribe_installer_it.ts index 27d73ee75..13aaf183a 100644 --- a/installer/common/translations/windscribe_installer_it.ts +++ b/installer/common/translations/windscribe_installer_it.ts @@ -81,8 +81,8 @@ Il percorso di installazione specificato non si trova nell'unità di sistema. Per garantire la sicurezza dell'applicazione e del sistema, è necessario installarla nella stessa unità di Windows. La cartella di installazione è stata ripristinata al valore predefinito. - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - Non si dispone di autorizzazioni sufficienti per eseguire l'applicazione. Per installare Windscribe sono necessari privilegi amministrativi. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + Non si dispone di autorizzazioni sufficienti per eseguire l'applicazione. Per installare Windscribe sono necessari privilegi amministrativi. diff --git a/installer/common/translations/windscribe_installer_ja.ts b/installer/common/translations/windscribe_installer_ja.ts index f28832748..8e7f77f35 100644 --- a/installer/common/translations/windscribe_installer_ja.ts +++ b/installer/common/translations/windscribe_installer_ja.ts @@ -81,8 +81,8 @@ 指定されたインストール パスがシステム ドライブ上にありません。アプリケーションとシステムのセキュリティを確保するには、Windowsと同じドライブにインストールする必要があります。インストールフォルダがデフォルトにリセットされました。 - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - このアプリケーションを実行するための十分なアクセス許可がありません。 Windscribeをインストールするには、管理者権限が必要です。 + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + このアプリケーションを実行するための十分なアクセス許可がありません。Windscribeをインストールするには管理者権限が必要です。 diff --git a/installer/common/translations/windscribe_installer_ko.ts b/installer/common/translations/windscribe_installer_ko.ts index b6d4fadfd..202483508 100644 --- a/installer/common/translations/windscribe_installer_ko.ts +++ b/installer/common/translations/windscribe_installer_ko.ts @@ -81,8 +81,8 @@ 지정한 설치 경로가 시스템 드라이브에 없습니다. 응용 프로그램 및 시스템의 보안을 보장하려면 Windows와 동일한 드라이브에 설치해야 합니다. 설치 폴더가 기본값으로 재설정되었습니다. - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - 이 응용 프로그램을 실행할 수 있는 충분한 권한이 없습니다. Windscribe를 설치하려면 관리 권한이 필요합니다. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + 이 응용 프로그램을 실행할 수 있는 충분한 권한이 없습니다. Windscribe를 설치하려면 관리자 권한이 필요합니다. diff --git a/installer/common/translations/windscribe_installer_pl.ts b/installer/common/translations/windscribe_installer_pl.ts index 368dd7c5e..422380696 100644 --- a/installer/common/translations/windscribe_installer_pl.ts +++ b/installer/common/translations/windscribe_installer_pl.ts @@ -81,8 +81,8 @@ Określona ścieżka instalacji nie znajduje się na dysku systemowym. Aby zapewnić bezpieczeństwo aplikacji i systemu, musi ona być zainstalowana na tym samym dysku co system Windows. Folder instalacyjny został przywrócony do wartości domyślnych. - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - Nie masz wystarczających uprawnień do uruchamiania tej aplikacji. Do zainstalowania Windscribe wymagane są uprawnienia administracyjne. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + Nie masz wystarczających uprawnień do uruchamiania tej aplikacji. Do zainstalowania Windscribe wymagane są uprawnienia administratora. diff --git a/installer/common/translations/windscribe_installer_pt.ts b/installer/common/translations/windscribe_installer_pt.ts index ea2be2bdf..8fd74775d 100644 --- a/installer/common/translations/windscribe_installer_pt.ts +++ b/installer/common/translations/windscribe_installer_pt.ts @@ -81,8 +81,8 @@ O caminho de instalação especificado não está na unidade do sistema. Para garantir a segurança do aplicativo e do seu sistema, ele deve ser instalado na mesma unidade do Windows. A pasta de instalação foi redefinida para o padrão. - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - Você não tem permissões suficientes para executar este aplicativo. São necessários privilégios administrativos para instalar o Windscribe. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + Você não tem permissões suficientes para executar este aplicativo. São necessários privilégios administrativos para instalar o Windscribe. diff --git a/installer/common/translations/windscribe_installer_ru.ts b/installer/common/translations/windscribe_installer_ru.ts index 68bb756ca..12ff983a5 100644 --- a/installer/common/translations/windscribe_installer_ru.ts +++ b/installer/common/translations/windscribe_installer_ru.ts @@ -81,8 +81,8 @@ Отмена - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - У вас недостаточно разрешений для запуска этого приложения. Для установки Windscribe требуются административные привилегии. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + У вас недостаточно разрешений для запуска этого приложения. Для установки Windscribe требуются права администратора. diff --git a/installer/common/translations/windscribe_installer_tr.ts b/installer/common/translations/windscribe_installer_tr.ts index 61c4f8534..28593dee1 100644 --- a/installer/common/translations/windscribe_installer_tr.ts +++ b/installer/common/translations/windscribe_installer_tr.ts @@ -81,8 +81,8 @@ Belirtilen yükleme yolu sistem sürücüsünde değil. Uygulamanın ve sisteminizin güvenliğini sağlamak için, Windows ile aynı sürücüye yüklenmesi gerekir. Yükleme klasörü varsayılana sıfırlandı. - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - Bu uygulamayı çalıştırmak için yeterli izinlere sahip değilsiniz. Windscribe'ı yüklemek için yönetici ayrıcalıkları gereklidir. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + Bu uygulamayı çalıştırmak için yeterli izinlere sahip değilsiniz. Windscribe'ı yüklemek için yönetici ayrıcalıkları gereklidir. diff --git a/installer/common/translations/windscribe_installer_uk.ts b/installer/common/translations/windscribe_installer_uk.ts index 2cd0ceb70..a3f563f43 100644 --- a/installer/common/translations/windscribe_installer_uk.ts +++ b/installer/common/translations/windscribe_installer_uk.ts @@ -81,8 +81,8 @@ Вказаний шлях інсталяції відсутній на системному диску. Щоб забезпечити безпеку програми та вашої системи, вона повинна бути встановлена на тому ж диску, що й Windows. Папку інсталяції було скинуто до стандартних. - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - У вас недостатньо дозволів для запуску цієї програми. Для встановлення Windscribe потрібні адміністративні привілеї. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + У вас недостатньо дозволів для запуску цієї програми. Для встановлення Windscribe потрібні адміністративні привілеї. diff --git a/installer/common/translations/windscribe_installer_vi.ts b/installer/common/translations/windscribe_installer_vi.ts index 3d08ff20d..7505a9884 100644 --- a/installer/common/translations/windscribe_installer_vi.ts +++ b/installer/common/translations/windscribe_installer_vi.ts @@ -81,8 +81,8 @@ Đường dẫn cài đặt được chỉ định không có trên ổ đĩa hệ thống. Để đảm bảo tính bảo mật của ứng dụng và hệ thống của bạn, nó phải được cài đặt trên cùng một ổ đĩa với Windows. Thư mục cài đặt đã được đặt lại về mặc định. - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - Bạn không có đủ quyền để chạy ứng dụng này. Cần có đặc quyền quản trị để cài đặt Windscribe. + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + Bạn không có đủ quyền để chạy ứng dụng này. Cần có đặc quyền quản trị để cài đặt Windscribe. diff --git a/installer/common/translations/windscribe_installer_zh-CN.ts b/installer/common/translations/windscribe_installer_zh-CN.ts index 3b1196926..4d99ef23a 100644 --- a/installer/common/translations/windscribe_installer_zh-CN.ts +++ b/installer/common/translations/windscribe_installer_zh-CN.ts @@ -81,8 +81,8 @@ 取消 - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - 您没有足够的权限来运行此应用程序。 安装 Windscribe 需要管理权限。 + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + 您没有足够的权限来运行此应用程序。安装 Windscribe 需要管理权限。 diff --git a/installer/common/translations/windscribe_installer_zh-TW.ts b/installer/common/translations/windscribe_installer_zh-TW.ts index b5fe5033d..8cbab8a92 100644 --- a/installer/common/translations/windscribe_installer_zh-TW.ts +++ b/installer/common/translations/windscribe_installer_zh-TW.ts @@ -81,8 +81,8 @@ 指定的安裝路徑不在系統驅動器上。為了確保應用程式和系統的安全性,必須將其安裝在與 Windows 相同的驅動器上。安裝資料夾已重置為預設值。 - You don't have sufficient permissions to run this application. Administrative priviledges are required to install Windscribe. - 您沒有足夠的權限來執行此應用程式。 安裝Windscribe需要管理許可權。 + You don't have sufficient permissions to run this application. Administrative privileges are required to install Windscribe. + 您沒有足夠的權限來執行此應用程式。安裝Windscribe需要管理許可權。 diff --git a/installer/windows/installer/installer/blocks/uninstallprev.cpp b/installer/windows/installer/installer/blocks/uninstallprev.cpp index f9d306c28..fd4c733f6 100644 --- a/installer/windows/installer/installer/blocks/uninstallprev.cpp +++ b/installer/windows/installer/installer/blocks/uninstallprev.cpp @@ -52,7 +52,7 @@ int UninstallPrev::executeStep() Log::instance().out(L"Timeout exceeded when trying to close Windscribe. Killing the process."); const wstring appName = Path::append(Utils::GetSystemDir(), L"taskkill.exe"); - const wstring commandLine = L"/f /im " + ApplicationInfo::appExeName() + L" /t"; + const wstring commandLine = L"/f /im " + ApplicationInfo::appExeName(); const auto result = Utils::InstExec(appName, commandLine, INFINITE, SW_HIDE); if (!result.has_value()) { Log::instance().out("WARNING: an error was encountered attempting to start taskkill.exe.");