diff options
author | George Hazan <george.hazan@gmail.com> | 2023-11-08 21:27:43 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-11-08 21:27:43 +0300 |
commit | 4f971f293b929e3702443fb60c34fc34f9ac23d5 (patch) | |
tree | 2dbfa264c20f50f692efe160a412c15299057fe1 | |
parent | 580cd5b276abd96032f64eb472b3bee592471ab8 (diff) |
fixes #3889 (Переименовать "Internet Explorer" в настройках прокси в "Системные настройки")
-rw-r--r-- | src/mir_app/src/netlib_opts.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/netlib_opts.cpp b/src/mir_app/src/netlib_opts.cpp index be75114fac..4b1227b4c4 100644 --- a/src/mir_app/src/netlib_opts.cpp +++ b/src/mir_app/src/netlib_opts.cpp @@ -67,7 +67,7 @@ static const UINT specifyPortsControls[] = { IDC_PORTSRANGE,
IDC_STATIC52};
-static const wchar_t* szProxyTypes[] = {LPGENW("<mixed>"), L"SOCKS4", L"SOCKS5", L"HTTP", L"HTTPS", L"Internet Explorer"};
+static const wchar_t* szProxyTypes[] = {LPGENW("<mixed>"), L"SOCKS4", L"SOCKS5", L"HTTP", L"HTTPS", L"System settings"};
static const uint16_t oftenProxyPorts[] = {1080, 1080, 1080, 8080, 8080, 8080};
#define M_REFRESHALL (WM_USER+100)
|