mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-08-24 12:08:00 +03:00
Compare commits
1 Commits
feat/split
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7d4f3e0f50 |
@@ -5,7 +5,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||||
|
||||
set(PROJECT AmneziaVPN)
|
||||
if(NOT AMNEZIAVPN_VERSION)
|
||||
set(AMNEZIAVPN_VERSION 5.0.1.1 CACHE STRING "Client app version")
|
||||
set(AMNEZIAVPN_VERSION 5.0.1.5 CACHE STRING "Client app version")
|
||||
endif()
|
||||
|
||||
set(QT_CREATOR_SKIP_PACKAGE_MANAGER_SETUP ON CACHE BOOL "" FORCE)
|
||||
@@ -32,7 +32,7 @@ set(RELEASE_DATE "${CURRENT_DATE}")
|
||||
set(APP_MAJOR_VERSION ${CMAKE_PROJECT_VERSION_MAJOR}.${CMAKE_PROJECT_VERSION_MINOR}.${CMAKE_PROJECT_VERSION_PATCH})
|
||||
|
||||
# bump by 2 on every release, because we're releasing two versions on the play store
|
||||
set(APP_ANDROID_VERSION_CODE 2148)
|
||||
set(APP_ANDROID_VERSION_CODE 2152)
|
||||
if(DEFINED APP_ANDROID_VERSION_CODE_OFFSET)
|
||||
math(EXPR APP_ANDROID_VERSION_CODE "${APP_ANDROID_VERSION_CODE} + ${APP_ANDROID_VERSION_CODE_OFFSET}")
|
||||
endif()
|
||||
|
||||
2
client/3rd/amneziawg-apple
vendored
2
client/3rd/amneziawg-apple
vendored
Submodule client/3rd/amneziawg-apple updated: fe2e2d7ebb...bdaf0b337b
@@ -190,18 +190,6 @@ if(APPLE)
|
||||
cmake_policy(SET CMP0099 NEW)
|
||||
cmake_policy(SET CMP0114 NEW)
|
||||
|
||||
if(NOT BUILD_OSX_APP_IDENTIFIER)
|
||||
set(BUILD_OSX_APP_IDENTIFIER org.amnezia.AmneziaVPN CACHE STRING "OSX Application identifier")
|
||||
endif()
|
||||
if(NOT BUILD_IOS_APP_IDENTIFIER)
|
||||
set(BUILD_IOS_APP_IDENTIFIER org.amnezia.AmneziaVPN CACHE STRING "iOS Application identifier")
|
||||
endif()
|
||||
if(NOT BUILD_IOS_GROUP_IDENTIFIER)
|
||||
set(BUILD_IOS_GROUP_IDENTIFIER group.org.amnezia.AmneziaVPN CACHE STRING "iOS Group identifier")
|
||||
endif()
|
||||
if(NOT BUILD_VPN_DEVELOPMENT_TEAM)
|
||||
set(BUILD_VPN_DEVELOPMENT_TEAM X7UJ388FXK CACHE STRING "Amnezia VPN Development Team")
|
||||
endif()
|
||||
|
||||
set(CMAKE_XCODE_GENERATE_SCHEME FALSE)
|
||||
set(CMAKE_XCODE_ATTRIBUTE_DEVELOPMENT_TEAM ${BUILD_VPN_DEVELOPMENT_TEAM})
|
||||
|
||||
@@ -7,3 +7,16 @@ endif()
|
||||
if(NOT CLIENT_NETWORK_EXTENSION_NAME)
|
||||
set(CLIENT_NETWORK_EXTENSION_NAME "${CLIENT_APPLICATION_NAME}NetworkExtension" CACHE STRING "Display name for Apple network extension targets")
|
||||
endif()
|
||||
|
||||
if(NOT BUILD_OSX_APP_IDENTIFIER)
|
||||
set(BUILD_OSX_APP_IDENTIFIER org.amnezia.AmneziaVPN CACHE STRING "OSX Application identifier")
|
||||
endif()
|
||||
if(NOT BUILD_IOS_APP_IDENTIFIER)
|
||||
set(BUILD_IOS_APP_IDENTIFIER org.amnezia.AmneziaVPN CACHE STRING "iOS Application identifier")
|
||||
endif()
|
||||
if(NOT BUILD_IOS_GROUP_IDENTIFIER)
|
||||
set(BUILD_IOS_GROUP_IDENTIFIER group.org.amnezia.AmneziaVPN CACHE STRING "iOS Group identifier")
|
||||
endif()
|
||||
if(NOT BUILD_VPN_DEVELOPMENT_TEAM)
|
||||
set(BUILD_VPN_DEVELOPMENT_TEAM X7UJ388FXK CACHE STRING "Amnezia VPN Development Team")
|
||||
endif()
|
||||
|
||||
@@ -19,14 +19,6 @@ namespace amnezia
|
||||
|
||||
namespace
|
||||
{
|
||||
// A toggle set to "off" behaves exactly like a missing one, so it is not an AWG 3 marker
|
||||
bool isAwgToggleEnabled(const QString &value)
|
||||
{
|
||||
const QString trimmedValue = value.trimmed();
|
||||
return !trimmedValue.isEmpty()
|
||||
&& trimmedValue.compare(QLatin1String(protocols::awg::awgBoolOff), Qt::CaseInsensitive) != 0;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
bool hasAwg3Markers(const T &config)
|
||||
{
|
||||
@@ -40,7 +32,8 @@ namespace
|
||||
return true;
|
||||
}
|
||||
|
||||
return isAwgToggleEnabled(config.randomTrailers) || isAwgToggleEnabled(config.disableCookies);
|
||||
return AwgProtocolConfig::isToggleEnabled(config.randomTrailers)
|
||||
|| AwgProtocolConfig::isToggleEnabled(config.disableCookies);
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
@@ -431,6 +424,13 @@ QString AwgProtocolConfig::clientProtocolVersion() const
|
||||
return clientConfig.has_value() ? awgVersionOf(clientConfig.value()) : QString();
|
||||
}
|
||||
|
||||
bool AwgProtocolConfig::isToggleEnabled(const QString &value)
|
||||
{
|
||||
const QString trimmedValue = value.trimmed();
|
||||
return !trimmedValue.isEmpty()
|
||||
&& trimmedValue.compare(QLatin1String(protocols::awg::awgBoolOff), Qt::CaseInsensitive) != 0;
|
||||
}
|
||||
|
||||
QString AwgProtocolConfig::protocolVersionString(const QString &version)
|
||||
{
|
||||
if (version == protocols::awg::awgV3) return QObject::tr(" (version 3.1)");
|
||||
|
||||
@@ -109,6 +109,7 @@ struct AwgProtocolConfig {
|
||||
QString serverProtocolVersion() const;
|
||||
QString clientProtocolVersion() const;
|
||||
static QString protocolVersionString(const QString &version);
|
||||
static bool isToggleEnabled(const QString &value);
|
||||
|
||||
bool hasClientConfig() const;
|
||||
void setClientConfig(const AwgClientConfig& config);
|
||||
|
||||
@@ -265,8 +265,10 @@ amnezia::ScriptVars amnezia::genAwgVars(const ContainerConfig &containerConfig)
|
||||
vars.append({ { "$REJECT_AFTER_TIME", config.rejectAfterTime } });
|
||||
vars.append({ { "$KEEPALIVE_TIMEOUT", config.keepaliveTimeout } });
|
||||
vars.append({ { "$MAX_HANDSHAKE_ATTEMPTS", config.maxHandshakeAttempts } });
|
||||
vars.append({ { "$RANDOM_TRAILERS", config.randomTrailers } });
|
||||
vars.append({ { "$DISABLE_COOKIES", config.disableCookies } });
|
||||
vars.append({ { "$RANDOM_TRAILERS", AwgProtocolConfig::isToggleEnabled(config.randomTrailers)
|
||||
? config.randomTrailers : QString() } });
|
||||
vars.append({ { "$DISABLE_COOKIES", AwgProtocolConfig::isToggleEnabled(config.disableCookies)
|
||||
? config.disableCookies : QString() } });
|
||||
}
|
||||
|
||||
return vars;
|
||||
|
||||
@@ -38,9 +38,9 @@
|
||||
</dict>
|
||||
|
||||
<key>com.wireguard.ios.app_group_id</key>
|
||||
<string>group.${BUILD_IOS_APP_IDENTIFIER}</string>
|
||||
<string>${BUILD_IOS_GROUP_IDENTIFIER}</string>
|
||||
|
||||
<key>com.wireguard.macos.app_group_id</key>
|
||||
<string>${BUILD_VPN_DEVELOPMENT_TEAM}.group.${BUILD_OSX_APP_IDENTIFIER}</string>
|
||||
<string>${BUILD_VPN_DEVELOPMENT_TEAM}.${BUILD_IOS_GROUP_IDENTIFIER}</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -92,7 +92,7 @@ extension PacketTunnelProvider {
|
||||
}
|
||||
}
|
||||
} catch {
|
||||
wg_log(.error, message: "Can't parse WG config: \(error.localizedDescription)")
|
||||
wg_log(.error, message: "Can't parse WG config: \(String(describing: error))")
|
||||
errorNotifier.notify(PacketTunnelProviderError.savedProtocolConfigurationIsInvalid)
|
||||
completionHandler(PacketTunnelProviderError.savedProtocolConfigurationIsInvalid)
|
||||
return
|
||||
|
||||
@@ -591,27 +591,27 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="132"/>
|
||||
<source>I1 - First special junk packet</source>
|
||||
<translation>I1 - أول حزمة بيانات زائفة خاصة</translation>
|
||||
<translation>I1 - First special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="142"/>
|
||||
<source>I2 - Second special junk packet</source>
|
||||
<translation>I2 - ثاني حزمة بيانات زائفة خاصة</translation>
|
||||
<translation>I2 - Second special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="152"/>
|
||||
<source>I3 - Third special junk packet</source>
|
||||
<translation>I3 - ثالث حزمة بيانات زائفة خاصة</translation>
|
||||
<translation>I3 - Third special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="162"/>
|
||||
<source>I4 - Fourth special junk packet</source>
|
||||
<translation>I4 - رابع حزمة بيانات زائفة خاصة</translation>
|
||||
<translation>I4 - Fourth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="172"/>
|
||||
<source>I5 - Fifth special junk packet</source>
|
||||
<translation>I5 - خامس حزمة بيانات زائفة خاصة</translation>
|
||||
<translation>I5 - Fifth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="189"/>
|
||||
@@ -621,32 +621,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="199"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - إضافة حشو للمحتوى</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="211"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - إعادة توليد المفتاح بعد مدة</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="223"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - مدة انتظار إعادة توليد المفتاح</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="235"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - الرفض بعد مدة</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="247"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - مدة انتظار إبقاء الاتصال</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="259"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - أقصى عدد لمحاولات المصافحة</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="276"/>
|
||||
@@ -719,82 +719,82 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="131"/>
|
||||
<source>Jc - Junk packet count</source>
|
||||
<translation>Jc - عدد الحزم غير المرغوب فيها</translation>
|
||||
<translation>Jc - Junk packet count</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="141"/>
|
||||
<source>Jmin - Junk packet minimum size</source>
|
||||
<translation>Jmin - الحجم الادني للحزم الغير مرغوب فيها</translation>
|
||||
<translation>Jmin - Junk packet minimum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="151"/>
|
||||
<source>Jmax - Junk packet maximum size</source>
|
||||
<translation>Jmax - الحجم الاقصي للحزم الغير مرغوب فيها</translation>
|
||||
<translation>Jmax - Junk packet maximum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="161"/>
|
||||
<source>S1 - Init packet junk size</source>
|
||||
<translation>S1 - حجم حزمة البيانات العشوائية الأولية</translation>
|
||||
<translation>S1 - Init packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="171"/>
|
||||
<source>S2 - Response packet junk size</source>
|
||||
<translation>S2 - حجم حزمة الاستجابة غير المرغوب فيها</translation>
|
||||
<translation>S2 - Response packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="183"/>
|
||||
<source>S3 - Cookie reply packet junk size</source>
|
||||
<translation>S3 - حجم البيانات الزائفة في حزمة رد الكوكيز</translation>
|
||||
<translation>S3 - Cookie reply packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="195"/>
|
||||
<source>S4 - Transport packet junk size</source>
|
||||
<translation>S4 - حجم البيانات الزائفة في حزمة النقل</translation>
|
||||
<translation>S4 - Transport packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="207"/>
|
||||
<source>H1 - Init packet magic header</source>
|
||||
<translation>H1 - حزمة رأس سحرية مبدئية</translation>
|
||||
<translation>H1 - Init packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="219"/>
|
||||
<source>H2 - Response packet magic header</source>
|
||||
<translation>H2 - رأس حزمة الاستجابة السحرية</translation>
|
||||
<translation>H2 - Response packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="231"/>
|
||||
<source>H3 - Underload packet magic header</source>
|
||||
<translation>H3 - رأس حزمة السحر غير المحمل</translation>
|
||||
<translation>H3 - Underload packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="243"/>
|
||||
<source>H4 - Transport packet magic header</source>
|
||||
<translation>H4 - رأس حزمة النقل السحرية</translation>
|
||||
<translation>H4 - Transport packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="253"/>
|
||||
<source>I1 - Special junk 1</source>
|
||||
<translation>I1 - بيانات زائفة خاصة 1</translation>
|
||||
<translation>I1 - Special junk 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="263"/>
|
||||
<source>I2 - Special junk 2</source>
|
||||
<translation>I2 - بيانات زائفة خاصة 2</translation>
|
||||
<translation>I2 - Special junk 2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="273"/>
|
||||
<source>I3 - Special junk 3</source>
|
||||
<translation>I3 - بيانات زائفة خاصة 3</translation>
|
||||
<translation>I3 - Special junk 3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="283"/>
|
||||
<source>I4 - Special junk 4</source>
|
||||
<translation>I4 - بيانات زائفة خاصة 4</translation>
|
||||
<translation>I4 - Special junk 4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="293"/>
|
||||
<source>I5 - Special junk 5</source>
|
||||
<translation>I5 - بيانات زائفة خاصة 5</translation>
|
||||
<translation>I5 - Special junk 5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="310"/>
|
||||
@@ -804,32 +804,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="326"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - إضافة حشو للمحتوى</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="339"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - إعادة توليد المفتاح بعد مدة</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="352"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - مدة انتظار إعادة توليد المفتاح</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="365"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - الرفض بعد مدة</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="378"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - مدة انتظار إبقاء الاتصال</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="391"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - أقصى عدد لمحاولات المصافحة</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="408"/>
|
||||
|
||||
@@ -590,27 +590,27 @@ Se han encontrado contenedores ya instalados en el servidor. Todos ellos se han
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="132"/>
|
||||
<source>I1 - First special junk packet</source>
|
||||
<translation>I1 - Primer paquete basura especial</translation>
|
||||
<translation>I1 - First special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="142"/>
|
||||
<source>I2 - Second special junk packet</source>
|
||||
<translation>I2 - Segundo paquete basura especial</translation>
|
||||
<translation>I2 - Second special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="152"/>
|
||||
<source>I3 - Third special junk packet</source>
|
||||
<translation>I3 - Tercer paquete basura especial</translation>
|
||||
<translation>I3 - Third special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="162"/>
|
||||
<source>I4 - Fourth special junk packet</source>
|
||||
<translation>I4 - Cuarto paquete basura especial</translation>
|
||||
<translation>I4 - Fourth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="172"/>
|
||||
<source>I5 - Fifth special junk packet</source>
|
||||
<translation>I5 - Quinto paquete basura especial</translation>
|
||||
<translation>I5 - Fifth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="189"/>
|
||||
@@ -620,32 +620,32 @@ Se han encontrado contenedores ya instalados en el servidor. Todos ellos se han
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="199"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - Relleno adicional de contenido</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="211"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - Renovar la clave tras un tiempo</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="223"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - Tiempo de espera de renovación de clave</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="235"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - Rechazar tras un tiempo</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="247"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - Tiempo de espera de keepalive</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="259"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - Número máximo de intentos de handshake</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="276"/>
|
||||
@@ -718,82 +718,82 @@ Se han encontrado contenedores ya instalados en el servidor. Todos ellos se han
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="131"/>
|
||||
<source>Jc - Junk packet count</source>
|
||||
<translation>Jc - Número de paquetes basura</translation>
|
||||
<translation>Jc - Junk packet count</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="141"/>
|
||||
<source>Jmin - Junk packet minimum size</source>
|
||||
<translation>Jmin - Tamaño mínimo del paquete basura</translation>
|
||||
<translation>Jmin - Junk packet minimum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="151"/>
|
||||
<source>Jmax - Junk packet maximum size</source>
|
||||
<translation>Jmax - Tamaño máximo del paquete basura</translation>
|
||||
<translation>Jmax - Junk packet maximum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="161"/>
|
||||
<source>S1 - Init packet junk size</source>
|
||||
<translation>S1 - Tamaño de basura del paquete de inicio</translation>
|
||||
<translation>S1 - Init packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="171"/>
|
||||
<source>S2 - Response packet junk size</source>
|
||||
<translation>S2 - Tamaño de basura del paquete de respuesta</translation>
|
||||
<translation>S2 - Response packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="183"/>
|
||||
<source>S3 - Cookie reply packet junk size</source>
|
||||
<translation>S3 - Tamaño de basura del paquete de respuesta de cookie</translation>
|
||||
<translation>S3 - Cookie reply packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="195"/>
|
||||
<source>S4 - Transport packet junk size</source>
|
||||
<translation>S4 - Tamaño de basura del paquete de transporte</translation>
|
||||
<translation>S4 - Transport packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="207"/>
|
||||
<source>H1 - Init packet magic header</source>
|
||||
<translation>H1 - Cabecera mágica del paquete de inicio</translation>
|
||||
<translation>H1 - Init packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="219"/>
|
||||
<source>H2 - Response packet magic header</source>
|
||||
<translation>H2 - Cabecera mágica del paquete de respuesta</translation>
|
||||
<translation>H2 - Response packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="231"/>
|
||||
<source>H3 - Underload packet magic header</source>
|
||||
<translation>H3 - Cabecera mágica del paquete de subcarga</translation>
|
||||
<translation>H3 - Underload packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="243"/>
|
||||
<source>H4 - Transport packet magic header</source>
|
||||
<translation>H4 - Cabecera mágica del paquete de transporte</translation>
|
||||
<translation>H4 - Transport packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="253"/>
|
||||
<source>I1 - Special junk 1</source>
|
||||
<translation>I1 - Basura especial 1</translation>
|
||||
<translation>I1 - Special junk 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="263"/>
|
||||
<source>I2 - Special junk 2</source>
|
||||
<translation>I2 - Basura especial 2</translation>
|
||||
<translation>I2 - Special junk 2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="273"/>
|
||||
<source>I3 - Special junk 3</source>
|
||||
<translation>I3 - Basura especial 3</translation>
|
||||
<translation>I3 - Special junk 3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="283"/>
|
||||
<source>I4 - Special junk 4</source>
|
||||
<translation>I4 - Basura especial 4</translation>
|
||||
<translation>I4 - Special junk 4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="293"/>
|
||||
<source>I5 - Special junk 5</source>
|
||||
<translation>I5 - Basura especial 5</translation>
|
||||
<translation>I5 - Special junk 5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="310"/>
|
||||
@@ -803,32 +803,32 @@ Se han encontrado contenedores ya instalados en el servidor. Todos ellos se han
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="326"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - Relleno adicional de contenido</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="339"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - Renovar la clave tras un tiempo</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="352"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - Tiempo de espera de renovación de clave</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="365"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - Rechazar tras un tiempo</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="378"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - Tiempo de espera de keepalive</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="391"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - Número máximo de intentos de handshake</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="408"/>
|
||||
|
||||
@@ -590,27 +590,27 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="132"/>
|
||||
<source>I1 - First special junk packet</source>
|
||||
<translation>I1 - نخستین بسته زائد ویژه</translation>
|
||||
<translation>I1 - First special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="142"/>
|
||||
<source>I2 - Second special junk packet</source>
|
||||
<translation>I2 - دومین بسته زائد ویژه</translation>
|
||||
<translation>I2 - Second special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="152"/>
|
||||
<source>I3 - Third special junk packet</source>
|
||||
<translation>I3 - سومین بسته زائد ویژه</translation>
|
||||
<translation>I3 - Third special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="162"/>
|
||||
<source>I4 - Fourth special junk packet</source>
|
||||
<translation>I4 - چهارمین بسته زائد ویژه</translation>
|
||||
<translation>I4 - Fourth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="172"/>
|
||||
<source>I5 - Fifth special junk packet</source>
|
||||
<translation>I5 - پنجمین بسته زائد ویژه</translation>
|
||||
<translation>I5 - Fifth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="189"/>
|
||||
@@ -620,32 +620,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="199"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - افزودن لایهگذاری محتوا</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="211"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - تولید دوباره کلید پس از زمان</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="223"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - زمان انتظار تولید دوباره کلید</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="235"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - رد کردن پس از زمان</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="247"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - زمان انتظار keepalive</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="259"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - بیشینه تلاشهای دستدهی</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="276"/>
|
||||
@@ -718,82 +718,82 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="131"/>
|
||||
<source>Jc - Junk packet count</source>
|
||||
<translation>Jc - تعداد بستههای زائد</translation>
|
||||
<translation>Jc - Junk packet count</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="141"/>
|
||||
<source>Jmin - Junk packet minimum size</source>
|
||||
<translation>Jmin - کمینه اندازه بسته زائد</translation>
|
||||
<translation>Jmin - Junk packet minimum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="151"/>
|
||||
<source>Jmax - Junk packet maximum size</source>
|
||||
<translation>Jmax - بیشینه اندازه بسته زائد</translation>
|
||||
<translation>Jmax - Junk packet maximum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="161"/>
|
||||
<source>S1 - Init packet junk size</source>
|
||||
<translation>S1 - اندازه داده زائد بسته آغازین</translation>
|
||||
<translation>S1 - Init packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="171"/>
|
||||
<source>S2 - Response packet junk size</source>
|
||||
<translation>S2 - اندازه داده زائد بسته پاسخ</translation>
|
||||
<translation>S2 - Response packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="183"/>
|
||||
<source>S3 - Cookie reply packet junk size</source>
|
||||
<translation>S3 - اندازه داده زائد بسته پاسخ کوکی</translation>
|
||||
<translation>S3 - Cookie reply packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="195"/>
|
||||
<source>S4 - Transport packet junk size</source>
|
||||
<translation>S4 - اندازه داده زائد بسته انتقال</translation>
|
||||
<translation>S4 - Transport packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="207"/>
|
||||
<source>H1 - Init packet magic header</source>
|
||||
<translation>H1 - هدر جادویی بسته آغازین</translation>
|
||||
<translation>H1 - Init packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="219"/>
|
||||
<source>H2 - Response packet magic header</source>
|
||||
<translation>H2 - هدر جادویی بسته پاسخ</translation>
|
||||
<translation>H2 - Response packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="231"/>
|
||||
<source>H3 - Underload packet magic header</source>
|
||||
<translation>H3 - هدر جادویی بسته underload</translation>
|
||||
<translation>H3 - Underload packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="243"/>
|
||||
<source>H4 - Transport packet magic header</source>
|
||||
<translation>H4 - هدر جادویی بسته انتقال</translation>
|
||||
<translation>H4 - Transport packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="253"/>
|
||||
<source>I1 - Special junk 1</source>
|
||||
<translation>I1 - داده زائد ویژه 1</translation>
|
||||
<translation>I1 - Special junk 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="263"/>
|
||||
<source>I2 - Special junk 2</source>
|
||||
<translation>I2 - داده زائد ویژه 2</translation>
|
||||
<translation>I2 - Special junk 2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="273"/>
|
||||
<source>I3 - Special junk 3</source>
|
||||
<translation>I3 - داده زائد ویژه 3</translation>
|
||||
<translation>I3 - Special junk 3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="283"/>
|
||||
<source>I4 - Special junk 4</source>
|
||||
<translation>I4 - داده زائد ویژه 4</translation>
|
||||
<translation>I4 - Special junk 4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="293"/>
|
||||
<source>I5 - Special junk 5</source>
|
||||
<translation>I5 - داده زائد ویژه 5</translation>
|
||||
<translation>I5 - Special junk 5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="310"/>
|
||||
@@ -803,32 +803,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="326"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - افزودن لایهگذاری محتوا</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="339"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - تولید دوباره کلید پس از زمان</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="352"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - زمان انتظار تولید دوباره کلید</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="365"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - رد کردن پس از زمان</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="378"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - زمان انتظار keepalive</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="391"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - بیشینه تلاشهای دستدهی</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="408"/>
|
||||
|
||||
@@ -590,27 +590,27 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="132"/>
|
||||
<source>I1 - First special junk packet</source>
|
||||
<translation>I1 - पहला विशेष जंक पैकेट</translation>
|
||||
<translation>I1 - First special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="142"/>
|
||||
<source>I2 - Second special junk packet</source>
|
||||
<translation>I2 - दूसरा विशेष जंक पैकेट</translation>
|
||||
<translation>I2 - Second special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="152"/>
|
||||
<source>I3 - Third special junk packet</source>
|
||||
<translation>I3 - तीसरा विशेष जंक पैकेट</translation>
|
||||
<translation>I3 - Third special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="162"/>
|
||||
<source>I4 - Fourth special junk packet</source>
|
||||
<translation>I4 - चौथा विशेष जंक पैकेट</translation>
|
||||
<translation>I4 - Fourth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="172"/>
|
||||
<source>I5 - Fifth special junk packet</source>
|
||||
<translation>I5 - पाँचवाँ विशेष जंक पैकेट</translation>
|
||||
<translation>I5 - Fifth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="189"/>
|
||||
@@ -620,32 +620,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="199"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - कंटेंट पैडिंग जोड़</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="211"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - समय बाद रीकी</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="223"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - रीकी टाइमआउट</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="235"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - समय बाद अस्वीकार</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="247"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - कीपअलाइव टाइमआउट</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="259"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - अधिकतम हैंडशेक प्रयास</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="276"/>
|
||||
@@ -718,82 +718,82 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="131"/>
|
||||
<source>Jc - Junk packet count</source>
|
||||
<translation>Jc - जंक पैकेट संख्या</translation>
|
||||
<translation>Jc - Junk packet count</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="141"/>
|
||||
<source>Jmin - Junk packet minimum size</source>
|
||||
<translation>Jmin - जंक पैकेट न्यूनतम आकार</translation>
|
||||
<translation>Jmin - Junk packet minimum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="151"/>
|
||||
<source>Jmax - Junk packet maximum size</source>
|
||||
<translation>Jmax - जंक पैकेट अधिकतम आकार</translation>
|
||||
<translation>Jmax - Junk packet maximum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="161"/>
|
||||
<source>S1 - Init packet junk size</source>
|
||||
<translation>S1 - init पैकेट जंक आकार</translation>
|
||||
<translation>S1 - Init packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="171"/>
|
||||
<source>S2 - Response packet junk size</source>
|
||||
<translation>S2 - प्रतिक्रिया पैकेट जंक आकार</translation>
|
||||
<translation>S2 - Response packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="183"/>
|
||||
<source>S3 - Cookie reply packet junk size</source>
|
||||
<translation>S3 - कुकी उत्तर पैकेट जंक आकार</translation>
|
||||
<translation>S3 - Cookie reply packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="195"/>
|
||||
<source>S4 - Transport packet junk size</source>
|
||||
<translation>S4 - ट्रांसपोर्ट पैकेट जंक आकार</translation>
|
||||
<translation>S4 - Transport packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="207"/>
|
||||
<source>H1 - Init packet magic header</source>
|
||||
<translation>H1 - init पैकेट मैजिक हेडर</translation>
|
||||
<translation>H1 - Init packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="219"/>
|
||||
<source>H2 - Response packet magic header</source>
|
||||
<translation>H2 - प्रतिक्रिया पैकेट मैजिक हेडर</translation>
|
||||
<translation>H2 - Response packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="231"/>
|
||||
<source>H3 - Underload packet magic header</source>
|
||||
<translation>H3 - underload पैकेट मैजिक हेडर</translation>
|
||||
<translation>H3 - Underload packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="243"/>
|
||||
<source>H4 - Transport packet magic header</source>
|
||||
<translation>H4 - ट्रांसपोर्ट पैकेट मैजिक हेडर</translation>
|
||||
<translation>H4 - Transport packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="253"/>
|
||||
<source>I1 - Special junk 1</source>
|
||||
<translation>I1 - विशेष जंक 1</translation>
|
||||
<translation>I1 - Special junk 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="263"/>
|
||||
<source>I2 - Special junk 2</source>
|
||||
<translation>I2 - विशेष जंक 2</translation>
|
||||
<translation>I2 - Special junk 2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="273"/>
|
||||
<source>I3 - Special junk 3</source>
|
||||
<translation>I3 - विशेष जंक 3</translation>
|
||||
<translation>I3 - Special junk 3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="283"/>
|
||||
<source>I4 - Special junk 4</source>
|
||||
<translation>I4 - विशेष जंक 4</translation>
|
||||
<translation>I4 - Special junk 4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="293"/>
|
||||
<source>I5 - Special junk 5</source>
|
||||
<translation>I5 - विशेष जंक 5</translation>
|
||||
<translation>I5 - Special junk 5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="310"/>
|
||||
@@ -803,32 +803,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="326"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - कंटेंट पैडिंग जोड़</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="339"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - समय बाद रीकी</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="352"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - रीकी टाइमआउट</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="365"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - समय बाद अस्वीकार</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="378"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - कीपअलाइव टाइमआउट</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="391"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - अधिकतम हैंडशेक प्रयास</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="408"/>
|
||||
|
||||
@@ -590,27 +590,27 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="132"/>
|
||||
<source>I1 - First special junk packet</source>
|
||||
<translation>I1 - 첫 번째 특수 정크 패킷</translation>
|
||||
<translation>I1 - First special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="142"/>
|
||||
<source>I2 - Second special junk packet</source>
|
||||
<translation>I2 - 두 번째 특수 정크 패킷</translation>
|
||||
<translation>I2 - Second special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="152"/>
|
||||
<source>I3 - Third special junk packet</source>
|
||||
<translation>I3 - 세 번째 특수 정크 패킷</translation>
|
||||
<translation>I3 - Third special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="162"/>
|
||||
<source>I4 - Fourth special junk packet</source>
|
||||
<translation>I4 - 네 번째 특수 정크 패킷</translation>
|
||||
<translation>I4 - Fourth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="172"/>
|
||||
<source>I5 - Fifth special junk packet</source>
|
||||
<translation>I5 - 다섯 번째 특수 정크 패킷</translation>
|
||||
<translation>I5 - Fifth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="189"/>
|
||||
@@ -620,32 +620,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="199"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - 콘텐츠 패딩 추가</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="211"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - 키 갱신 시간</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="223"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - 키 갱신 시간 제한</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="235"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - 거부 시간</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="247"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - 연결 유지 시간 제한</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="259"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - 최대 핸드셰이크 시도 횟수</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="276"/>
|
||||
@@ -718,82 +718,82 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="131"/>
|
||||
<source>Jc - Junk packet count</source>
|
||||
<translation>Jc - 정크 패킷 수</translation>
|
||||
<translation>Jc - Junk packet count</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="141"/>
|
||||
<source>Jmin - Junk packet minimum size</source>
|
||||
<translation>Jmin - 정크 패킷 최소 크기</translation>
|
||||
<translation>Jmin - Junk packet minimum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="151"/>
|
||||
<source>Jmax - Junk packet maximum size</source>
|
||||
<translation>Jmax - 정크 패킷 최대 크기</translation>
|
||||
<translation>Jmax - Junk packet maximum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="161"/>
|
||||
<source>S1 - Init packet junk size</source>
|
||||
<translation>S1 - 초기 패킷 정크 크기</translation>
|
||||
<translation>S1 - Init packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="171"/>
|
||||
<source>S2 - Response packet junk size</source>
|
||||
<translation>S2 - 응답 패킷 정크 크기</translation>
|
||||
<translation>S2 - Response packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="183"/>
|
||||
<source>S3 - Cookie reply packet junk size</source>
|
||||
<translation>S3 - 쿠키 응답 패킷 정크 크기</translation>
|
||||
<translation>S3 - Cookie reply packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="195"/>
|
||||
<source>S4 - Transport packet junk size</source>
|
||||
<translation>S4 - 전송 패킷 정크 크기</translation>
|
||||
<translation>S4 - Transport packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="207"/>
|
||||
<source>H1 - Init packet magic header</source>
|
||||
<translation>H1 - 초기 패킷 매직 헤더</translation>
|
||||
<translation>H1 - Init packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="219"/>
|
||||
<source>H2 - Response packet magic header</source>
|
||||
<translation>H2 - 응답 패킷 매직 헤더</translation>
|
||||
<translation>H2 - Response packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="231"/>
|
||||
<source>H3 - Underload packet magic header</source>
|
||||
<translation>H3 - 언더로드 패킷 매직 헤더</translation>
|
||||
<translation>H3 - Underload packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="243"/>
|
||||
<source>H4 - Transport packet magic header</source>
|
||||
<translation>H4 - 전송 패킷 매직 헤더</translation>
|
||||
<translation>H4 - Transport packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="253"/>
|
||||
<source>I1 - Special junk 1</source>
|
||||
<translation>I1 - 특수 정크 1</translation>
|
||||
<translation>I1 - Special junk 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="263"/>
|
||||
<source>I2 - Special junk 2</source>
|
||||
<translation>I2 - 특수 정크 2</translation>
|
||||
<translation>I2 - Special junk 2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="273"/>
|
||||
<source>I3 - Special junk 3</source>
|
||||
<translation>I3 - 특수 정크 3</translation>
|
||||
<translation>I3 - Special junk 3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="283"/>
|
||||
<source>I4 - Special junk 4</source>
|
||||
<translation>I4 - 특수 정크 4</translation>
|
||||
<translation>I4 - Special junk 4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="293"/>
|
||||
<source>I5 - Special junk 5</source>
|
||||
<translation>I5 - 특수 정크 5</translation>
|
||||
<translation>I5 - Special junk 5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="310"/>
|
||||
@@ -803,32 +803,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="326"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - 콘텐츠 패딩 추가</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="339"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - 키 갱신 시간</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="352"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - 키 갱신 시간 제한</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="365"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - 거부 시간</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="378"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - 연결 유지 시간 제한</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="391"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - 최대 핸드셰이크 시도 횟수</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="408"/>
|
||||
|
||||
@@ -590,27 +590,27 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="132"/>
|
||||
<source>I1 - First special junk packet</source>
|
||||
<translation>I1 - ပထမ အထူး junk packet</translation>
|
||||
<translation>I1 - First special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="142"/>
|
||||
<source>I2 - Second special junk packet</source>
|
||||
<translation>I2 - ဒုတိယ အထူး junk packet</translation>
|
||||
<translation>I2 - Second special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="152"/>
|
||||
<source>I3 - Third special junk packet</source>
|
||||
<translation>I3 - တတိယ အထူး junk packet</translation>
|
||||
<translation>I3 - Third special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="162"/>
|
||||
<source>I4 - Fourth special junk packet</source>
|
||||
<translation>I4 - စတုတ္ထ အထူး junk packet</translation>
|
||||
<translation>I4 - Fourth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="172"/>
|
||||
<source>I5 - Fifth special junk packet</source>
|
||||
<translation>I5 - ပဉ္စမ အထူး junk packet</translation>
|
||||
<translation>I5 - Fifth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="189"/>
|
||||
@@ -620,32 +620,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="199"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - အကြောင်းအရာ padding ထပ်ဆောင်းမှု</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="211"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - အချိန်ပြီးနောက် သော့ပြန်ဖန်တီးမှု</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="223"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - သော့ပြန်ဖန်တီးမှု အချိန်ကုန်ဆုံးချိန်</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="235"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - အချိန်ပြီးနောက် ငြင်းဆိုမှု</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="247"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - keepalive အချိန်ကုန်ဆုံးချိန်</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="259"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - handshake ကြိုးပမ်းမှု အမြင့်ဆုံး</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="276"/>
|
||||
@@ -718,82 +718,82 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="131"/>
|
||||
<source>Jc - Junk packet count</source>
|
||||
<translation>Jc - Junk packet အရေအတွက်</translation>
|
||||
<translation>Jc - Junk packet count</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="141"/>
|
||||
<source>Jmin - Junk packet minimum size</source>
|
||||
<translation>Jmin - Junk packet အသေးငယ်ဆုံးလက်ခံနိုင်မှုအရွယ်အစား</translation>
|
||||
<translation>Jmin - Junk packet minimum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="151"/>
|
||||
<source>Jmax - Junk packet maximum size</source>
|
||||
<translation>Jmax - Junk packet အကြီးဆုံးလက်ခံနိုင်မှုအရွယ်အစား</translation>
|
||||
<translation>Jmax - Junk packet maximum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="161"/>
|
||||
<source>S1 - Init packet junk size</source>
|
||||
<translation>S1 - Init packet junk အရွယ်အစား</translation>
|
||||
<translation>S1 - Init packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="171"/>
|
||||
<source>S2 - Response packet junk size</source>
|
||||
<translation>S2 - Response packet junk အရွယ်အစား</translation>
|
||||
<translation>S2 - Response packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="183"/>
|
||||
<source>S3 - Cookie reply packet junk size</source>
|
||||
<translation>S3 - cookie reply packet junk အရွယ်အစား</translation>
|
||||
<translation>S3 - Cookie reply packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="195"/>
|
||||
<source>S4 - Transport packet junk size</source>
|
||||
<translation>S4 - transport packet junk အရွယ်အစား</translation>
|
||||
<translation>S4 - Transport packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="207"/>
|
||||
<source>H1 - Init packet magic header</source>
|
||||
<translation>H1 - init packet magic header</translation>
|
||||
<translation>H1 - Init packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="219"/>
|
||||
<source>H2 - Response packet magic header</source>
|
||||
<translation>H2 - တုံ့ပြန်ချက် packet magic header</translation>
|
||||
<translation>H2 - Response packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="231"/>
|
||||
<source>H3 - Underload packet magic header</source>
|
||||
<translation>H3 - underload packet magic header</translation>
|
||||
<translation>H3 - Underload packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="243"/>
|
||||
<source>H4 - Transport packet magic header</source>
|
||||
<translation>H4 - transport packet magic header</translation>
|
||||
<translation>H4 - Transport packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="253"/>
|
||||
<source>I1 - Special junk 1</source>
|
||||
<translation>I1 - အထူး junk 1</translation>
|
||||
<translation>I1 - Special junk 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="263"/>
|
||||
<source>I2 - Special junk 2</source>
|
||||
<translation>I2 - အထူး junk 2</translation>
|
||||
<translation>I2 - Special junk 2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="273"/>
|
||||
<source>I3 - Special junk 3</source>
|
||||
<translation>I3 - အထူး junk 3</translation>
|
||||
<translation>I3 - Special junk 3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="283"/>
|
||||
<source>I4 - Special junk 4</source>
|
||||
<translation>I4 - အထူး junk 4</translation>
|
||||
<translation>I4 - Special junk 4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="293"/>
|
||||
<source>I5 - Special junk 5</source>
|
||||
<translation>I5 - အထူး junk 5</translation>
|
||||
<translation>I5 - Special junk 5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="310"/>
|
||||
@@ -803,32 +803,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="326"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - အကြောင်းအရာ padding ထပ်ဆောင်းမှု</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="339"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - အချိန်ပြီးနောက် သော့ပြန်ဖန်တီးမှု</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="352"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - သော့ပြန်ဖန်တီးမှု အချိန်ကုန်ဆုံးချိန်</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="365"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - အချိန်ပြီးနောက် ငြင်းဆိုမှု</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="378"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - keepalive အချိန်ကုန်ဆုံးချိန်</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="391"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - handshake ကြိုးပမ်းမှု အမြင့်ဆုံး</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="408"/>
|
||||
|
||||
@@ -591,27 +591,27 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="132"/>
|
||||
<source>I1 - First special junk packet</source>
|
||||
<translation>I1 - первый специальный мусорный пакет</translation>
|
||||
<translation>I1 - First special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="142"/>
|
||||
<source>I2 - Second special junk packet</source>
|
||||
<translation>I2 - второй специальный мусорный пакет</translation>
|
||||
<translation>I2 - Second special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="152"/>
|
||||
<source>I3 - Third special junk packet</source>
|
||||
<translation>I3 - третий специальный мусорный пакет</translation>
|
||||
<translation>I3 - Third special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="162"/>
|
||||
<source>I4 - Fourth special junk packet</source>
|
||||
<translation>I4 - четвёртый специальный мусорный пакет</translation>
|
||||
<translation>I4 - Fourth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="172"/>
|
||||
<source>I5 - Fifth special junk packet</source>
|
||||
<translation>I5 - пятый специальный мусорный пакет</translation>
|
||||
<translation>I5 - Fifth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="189"/>
|
||||
@@ -621,32 +621,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="199"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - добавление заполнения содержимого</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="211"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - смена ключа по истечении времени</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="223"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - тайм-аут смены ключа</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="235"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - отклонение по истечении времени</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="247"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - тайм-аут keepalive</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="259"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - максимум попыток рукопожатия</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="276"/>
|
||||
@@ -719,82 +719,82 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="131"/>
|
||||
<source>Jc - Junk packet count</source>
|
||||
<translation>Jc - количество мусорных пакетов</translation>
|
||||
<translation>Jc - Junk packet count</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="141"/>
|
||||
<source>Jmin - Junk packet minimum size</source>
|
||||
<translation>Jmin - минимальный размер мусорного пакета</translation>
|
||||
<translation>Jmin - Junk packet minimum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="151"/>
|
||||
<source>Jmax - Junk packet maximum size</source>
|
||||
<translation>Jmax - максимальный размер мусорного пакета</translation>
|
||||
<translation>Jmax - Junk packet maximum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="161"/>
|
||||
<source>S1 - Init packet junk size</source>
|
||||
<translation>S1 - размер мусора в пакете инициализации</translation>
|
||||
<translation>S1 - Init packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="171"/>
|
||||
<source>S2 - Response packet junk size</source>
|
||||
<translation>S2 - размер мусора в пакете ответа</translation>
|
||||
<translation>S2 - Response packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="183"/>
|
||||
<source>S3 - Cookie reply packet junk size</source>
|
||||
<translation>S3 - размер мусора в пакете cookie reply</translation>
|
||||
<translation>S3 - Cookie reply packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="195"/>
|
||||
<source>S4 - Transport packet junk size</source>
|
||||
<translation>S4 - размер мусора в транспортном пакете</translation>
|
||||
<translation>S4 - Transport packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="207"/>
|
||||
<source>H1 - Init packet magic header</source>
|
||||
<translation>H1 - магический заголовок пакета инициализации</translation>
|
||||
<translation>H1 - Init packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="219"/>
|
||||
<source>H2 - Response packet magic header</source>
|
||||
<translation>H2 - магический заголовок пакета ответа</translation>
|
||||
<translation>H2 - Response packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="231"/>
|
||||
<source>H3 - Underload packet magic header</source>
|
||||
<translation>H3 - магический заголовок пакета underload</translation>
|
||||
<translation>H3 - Underload packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="243"/>
|
||||
<source>H4 - Transport packet magic header</source>
|
||||
<translation>H4 - магический заголовок транспортного пакета</translation>
|
||||
<translation>H4 - Transport packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="253"/>
|
||||
<source>I1 - Special junk 1</source>
|
||||
<translation>I1 - специальный мусорный пакет 1</translation>
|
||||
<translation>I1 - Special junk 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="263"/>
|
||||
<source>I2 - Special junk 2</source>
|
||||
<translation>I2 - специальный мусорный пакет 2</translation>
|
||||
<translation>I2 - Special junk 2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="273"/>
|
||||
<source>I3 - Special junk 3</source>
|
||||
<translation>I3 - специальный мусорный пакет 3</translation>
|
||||
<translation>I3 - Special junk 3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="283"/>
|
||||
<source>I4 - Special junk 4</source>
|
||||
<translation>I4 - специальный мусорный пакет 4</translation>
|
||||
<translation>I4 - Special junk 4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="293"/>
|
||||
<source>I5 - Special junk 5</source>
|
||||
<translation>I5 - специальный мусорный пакет 5</translation>
|
||||
<translation>I5 - Special junk 5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="310"/>
|
||||
@@ -804,32 +804,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="326"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - добавление заполнения содержимого</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="339"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - смена ключа по истечении времени</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="352"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - тайм-аут смены ключа</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="365"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - отклонение по истечении времени</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="378"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - тайм-аут keepalive</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="391"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - максимум попыток рукопожатия</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="408"/>
|
||||
|
||||
@@ -590,27 +590,27 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="132"/>
|
||||
<source>I1 - First special junk packet</source>
|
||||
<translation>I1 - перший спеціальний сміттєвий пакет</translation>
|
||||
<translation>I1 - First special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="142"/>
|
||||
<source>I2 - Second special junk packet</source>
|
||||
<translation>I2 - другий спеціальний сміттєвий пакет</translation>
|
||||
<translation>I2 - Second special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="152"/>
|
||||
<source>I3 - Third special junk packet</source>
|
||||
<translation>I3 - третій спеціальний сміттєвий пакет</translation>
|
||||
<translation>I3 - Third special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="162"/>
|
||||
<source>I4 - Fourth special junk packet</source>
|
||||
<translation>I4 - четвертий спеціальний сміттєвий пакет</translation>
|
||||
<translation>I4 - Fourth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="172"/>
|
||||
<source>I5 - Fifth special junk packet</source>
|
||||
<translation>I5 - п'ятий спеціальний сміттєвий пакет</translation>
|
||||
<translation>I5 - Fifth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="189"/>
|
||||
@@ -620,32 +620,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="199"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - додавання заповнення вмісту</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="211"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - зміна ключа після часу</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="223"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - тайм-аут зміни ключа</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="235"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - відхилення після часу</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="247"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - тайм-аут keepalive</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="259"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - максимум спроб рукостискання</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="276"/>
|
||||
@@ -718,82 +718,82 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="131"/>
|
||||
<source>Jc - Junk packet count</source>
|
||||
<translation>Jc - кількість сміттєвих пакетів</translation>
|
||||
<translation>Jc - Junk packet count</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="141"/>
|
||||
<source>Jmin - Junk packet minimum size</source>
|
||||
<translation>Jmin - мінімальний розмір сміттєвого пакета</translation>
|
||||
<translation>Jmin - Junk packet minimum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="151"/>
|
||||
<source>Jmax - Junk packet maximum size</source>
|
||||
<translation>Jmax - максимальний розмір сміттєвого пакета</translation>
|
||||
<translation>Jmax - Junk packet maximum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="161"/>
|
||||
<source>S1 - Init packet junk size</source>
|
||||
<translation>S1 - розмір смiття в пакеті ініціалізації</translation>
|
||||
<translation>S1 - Init packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="171"/>
|
||||
<source>S2 - Response packet junk size</source>
|
||||
<translation>S2 - розмір смiття в пакеті відповіді</translation>
|
||||
<translation>S2 - Response packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="183"/>
|
||||
<source>S3 - Cookie reply packet junk size</source>
|
||||
<translation>S3 - розмір смiття в пакеті cookie reply</translation>
|
||||
<translation>S3 - Cookie reply packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="195"/>
|
||||
<source>S4 - Transport packet junk size</source>
|
||||
<translation>S4 - розмір смiття в транспортному пакеті</translation>
|
||||
<translation>S4 - Transport packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="207"/>
|
||||
<source>H1 - Init packet magic header</source>
|
||||
<translation>H1 - магічний заголовок пакета ініціалізації</translation>
|
||||
<translation>H1 - Init packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="219"/>
|
||||
<source>H2 - Response packet magic header</source>
|
||||
<translation>H2 - магічний заголовок пакета відповіді</translation>
|
||||
<translation>H2 - Response packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="231"/>
|
||||
<source>H3 - Underload packet magic header</source>
|
||||
<translation>H3 - магічний заголовок пакета underload</translation>
|
||||
<translation>H3 - Underload packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="243"/>
|
||||
<source>H4 - Transport packet magic header</source>
|
||||
<translation>H4 - магічний заголовок транспортного пакета</translation>
|
||||
<translation>H4 - Transport packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="253"/>
|
||||
<source>I1 - Special junk 1</source>
|
||||
<translation>I1 - спеціальний сміттєвий пакет 1</translation>
|
||||
<translation>I1 - Special junk 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="263"/>
|
||||
<source>I2 - Special junk 2</source>
|
||||
<translation>I2 - спеціальний сміттєвий пакет 2</translation>
|
||||
<translation>I2 - Special junk 2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="273"/>
|
||||
<source>I3 - Special junk 3</source>
|
||||
<translation>I3 - спеціальний сміттєвий пакет 3</translation>
|
||||
<translation>I3 - Special junk 3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="283"/>
|
||||
<source>I4 - Special junk 4</source>
|
||||
<translation>I4 - спеціальний сміттєвий пакет 4</translation>
|
||||
<translation>I4 - Special junk 4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="293"/>
|
||||
<source>I5 - Special junk 5</source>
|
||||
<translation>I5 - спеціальний сміттєвий пакет 5</translation>
|
||||
<translation>I5 - Special junk 5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="310"/>
|
||||
@@ -803,32 +803,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="326"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - додавання заповнення вмісту</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="339"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - зміна ключа після часу</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="352"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - тайм-аут зміни ключа</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="365"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - відхилення після часу</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="378"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - тайм-аут keepalive</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="391"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - максимум спроб рукостискання</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="408"/>
|
||||
|
||||
@@ -590,27 +590,27 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="132"/>
|
||||
<source>I1 - First special junk packet</source>
|
||||
<translation>I1 - پہلا خصوصی جنک پیکٹ</translation>
|
||||
<translation>I1 - First special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="142"/>
|
||||
<source>I2 - Second special junk packet</source>
|
||||
<translation>I2 - دوسرا خصوصی جنک پیکٹ</translation>
|
||||
<translation>I2 - Second special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="152"/>
|
||||
<source>I3 - Third special junk packet</source>
|
||||
<translation>I3 - تیسرا خصوصی جنک پیکٹ</translation>
|
||||
<translation>I3 - Third special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="162"/>
|
||||
<source>I4 - Fourth special junk packet</source>
|
||||
<translation>I4 - چوتھا خصوصی جنک پیکٹ</translation>
|
||||
<translation>I4 - Fourth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="172"/>
|
||||
<source>I5 - Fifth special junk packet</source>
|
||||
<translation>I5 - پانچواں خصوصی جنک پیکٹ</translation>
|
||||
<translation>I5 - Fifth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="189"/>
|
||||
@@ -620,32 +620,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="199"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - کنٹینٹ پیڈنگ اضافہ</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="211"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - وقت کے بعد ری کی</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="223"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - ری کی ٹائم آؤٹ</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="235"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - وقت کے بعد رد</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="247"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - کیپ الائیو ٹائم آؤٹ</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="259"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - زیادہ سے زیادہ ہینڈشیک کوششیں</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="276"/>
|
||||
@@ -718,82 +718,82 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="131"/>
|
||||
<source>Jc - Junk packet count</source>
|
||||
<translation>Jc - جنک پیکٹ کی تعداد</translation>
|
||||
<translation>Jc - Junk packet count</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="141"/>
|
||||
<source>Jmin - Junk packet minimum size</source>
|
||||
<translation>Jmin - جنک پیکٹ کا کم از کم سائز</translation>
|
||||
<translation>Jmin - Junk packet minimum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="151"/>
|
||||
<source>Jmax - Junk packet maximum size</source>
|
||||
<translation>Jmax - جنک پیکٹ کا زیادہ سے زیادہ سائز</translation>
|
||||
<translation>Jmax - Junk packet maximum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="161"/>
|
||||
<source>S1 - Init packet junk size</source>
|
||||
<translation>S1 - init پیکٹ جنک سائز</translation>
|
||||
<translation>S1 - Init packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="171"/>
|
||||
<source>S2 - Response packet junk size</source>
|
||||
<translation>S2 - جوابی پیکٹ جنک سائز</translation>
|
||||
<translation>S2 - Response packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="183"/>
|
||||
<source>S3 - Cookie reply packet junk size</source>
|
||||
<translation>S3 - کوکی جوابی پیکٹ جنک سائز</translation>
|
||||
<translation>S3 - Cookie reply packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="195"/>
|
||||
<source>S4 - Transport packet junk size</source>
|
||||
<translation>S4 - ٹرانسپورٹ پیکٹ جنک سائز</translation>
|
||||
<translation>S4 - Transport packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="207"/>
|
||||
<source>H1 - Init packet magic header</source>
|
||||
<translation>H1 - init پیکٹ میجک ہیڈر</translation>
|
||||
<translation>H1 - Init packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="219"/>
|
||||
<source>H2 - Response packet magic header</source>
|
||||
<translation>H2 - جوابی پیکٹ میجک ہیڈر</translation>
|
||||
<translation>H2 - Response packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="231"/>
|
||||
<source>H3 - Underload packet magic header</source>
|
||||
<translation>H3 - underload پیکٹ میجک ہیڈر</translation>
|
||||
<translation>H3 - Underload packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="243"/>
|
||||
<source>H4 - Transport packet magic header</source>
|
||||
<translation>H4 - ٹرانسپورٹ پیکٹ میجک ہیڈر</translation>
|
||||
<translation>H4 - Transport packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="253"/>
|
||||
<source>I1 - Special junk 1</source>
|
||||
<translation>I1 - خصوصی جنک 1</translation>
|
||||
<translation>I1 - Special junk 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="263"/>
|
||||
<source>I2 - Special junk 2</source>
|
||||
<translation>I2 - خصوصی جنک 2</translation>
|
||||
<translation>I2 - Special junk 2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="273"/>
|
||||
<source>I3 - Special junk 3</source>
|
||||
<translation>I3 - خصوصی جنک 3</translation>
|
||||
<translation>I3 - Special junk 3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="283"/>
|
||||
<source>I4 - Special junk 4</source>
|
||||
<translation>I4 - خصوصی جنک 4</translation>
|
||||
<translation>I4 - Special junk 4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="293"/>
|
||||
<source>I5 - Special junk 5</source>
|
||||
<translation>I5 - خصوصی جنک 5</translation>
|
||||
<translation>I5 - Special junk 5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="310"/>
|
||||
@@ -803,32 +803,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="326"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - کنٹینٹ پیڈنگ اضافہ</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="339"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - وقت کے بعد ری کی</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="352"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - ری کی ٹائم آؤٹ</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="365"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - وقت کے بعد رد</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="378"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - کیپ الائیو ٹائم آؤٹ</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="391"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - زیادہ سے زیادہ ہینڈشیک کوششیں</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="408"/>
|
||||
|
||||
@@ -590,27 +590,27 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="132"/>
|
||||
<source>I1 - First special junk packet</source>
|
||||
<translation>I1 - 第一个特殊垃圾数据包</translation>
|
||||
<translation>I1 - First special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="142"/>
|
||||
<source>I2 - Second special junk packet</source>
|
||||
<translation>I2 - 第二个特殊垃圾数据包</translation>
|
||||
<translation>I2 - Second special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="152"/>
|
||||
<source>I3 - Third special junk packet</source>
|
||||
<translation>I3 - 第三个特殊垃圾数据包</translation>
|
||||
<translation>I3 - Third special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="162"/>
|
||||
<source>I4 - Fourth special junk packet</source>
|
||||
<translation>I4 - 第四个特殊垃圾数据包</translation>
|
||||
<translation>I4 - Fourth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="172"/>
|
||||
<source>I5 - Fifth special junk packet</source>
|
||||
<translation>I5 - 第五个特殊垃圾数据包</translation>
|
||||
<translation>I5 - Fifth special junk packet</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="189"/>
|
||||
@@ -620,32 +620,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="199"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - 内容填充增量</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="211"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - 指定时间后重新协商密钥</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="223"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - 重新协商密钥超时</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="235"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - 指定时间后拒绝</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="247"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - Keepalive 超时</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="259"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - 最大握手尝试次数</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgClientSettings.qml" line="276"/>
|
||||
@@ -718,82 +718,82 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="131"/>
|
||||
<source>Jc - Junk packet count</source>
|
||||
<translation>Jc - 垃圾数据包数量</translation>
|
||||
<translation>Jc - Junk packet count</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="141"/>
|
||||
<source>Jmin - Junk packet minimum size</source>
|
||||
<translation>Jmin - 垃圾数据包最小大小</translation>
|
||||
<translation>Jmin - Junk packet minimum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="151"/>
|
||||
<source>Jmax - Junk packet maximum size</source>
|
||||
<translation>Jmax - 垃圾数据包最大大小</translation>
|
||||
<translation>Jmax - Junk packet maximum size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="161"/>
|
||||
<source>S1 - Init packet junk size</source>
|
||||
<translation>S1 - 初始化包垃圾数据大小</translation>
|
||||
<translation>S1 - Init packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="171"/>
|
||||
<source>S2 - Response packet junk size</source>
|
||||
<translation>S2 - 响应包垃圾数据大小</translation>
|
||||
<translation>S2 - Response packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="183"/>
|
||||
<source>S3 - Cookie reply packet junk size</source>
|
||||
<translation>S3 - Cookie 回复包垃圾数据大小</translation>
|
||||
<translation>S3 - Cookie reply packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="195"/>
|
||||
<source>S4 - Transport packet junk size</source>
|
||||
<translation>S4 - 传输包垃圾数据大小</translation>
|
||||
<translation>S4 - Transport packet junk size</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="207"/>
|
||||
<source>H1 - Init packet magic header</source>
|
||||
<translation>H1 - 初始化包魔术头</translation>
|
||||
<translation>H1 - Init packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="219"/>
|
||||
<source>H2 - Response packet magic header</source>
|
||||
<translation>H2 - 响应包魔术头</translation>
|
||||
<translation>H2 - Response packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="231"/>
|
||||
<source>H3 - Underload packet magic header</source>
|
||||
<translation>H3 - 低负载包魔术头</translation>
|
||||
<translation>H3 - Underload packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="243"/>
|
||||
<source>H4 - Transport packet magic header</source>
|
||||
<translation>H4 - 传输包魔术头</translation>
|
||||
<translation>H4 - Transport packet magic header</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="253"/>
|
||||
<source>I1 - Special junk 1</source>
|
||||
<translation>I1 - 特殊垃圾数据 1</translation>
|
||||
<translation>I1 - Special junk 1</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="263"/>
|
||||
<source>I2 - Special junk 2</source>
|
||||
<translation>I2 - 特殊垃圾数据 2</translation>
|
||||
<translation>I2 - Special junk 2</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="273"/>
|
||||
<source>I3 - Special junk 3</source>
|
||||
<translation>I3 - 特殊垃圾数据 3</translation>
|
||||
<translation>I3 - Special junk 3</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="283"/>
|
||||
<source>I4 - Special junk 4</source>
|
||||
<translation>I4 - 特殊垃圾数据 4</translation>
|
||||
<translation>I4 - Special junk 4</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="293"/>
|
||||
<source>I5 - Special junk 5</source>
|
||||
<translation>I5 - 特殊垃圾数据 5</translation>
|
||||
<translation>I5 - Special junk 5</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="310"/>
|
||||
@@ -803,32 +803,32 @@ Already installed containers were found on the server. All installed containers
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="326"/>
|
||||
<source>ContentPaddingAddition - Content padding addition</source>
|
||||
<translation>ContentPaddingAddition - 内容填充增量</translation>
|
||||
<translation>ContentPaddingAddition - Content padding addition</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="339"/>
|
||||
<source>RekeyAfterTime - Rekey after time</source>
|
||||
<translation>RekeyAfterTime - 指定时间后重新协商密钥</translation>
|
||||
<translation>RekeyAfterTime - Rekey after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="352"/>
|
||||
<source>RekeyTimeout - Rekey timeout</source>
|
||||
<translation>RekeyTimeout - 重新协商密钥超时</translation>
|
||||
<translation>RekeyTimeout - Rekey timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="365"/>
|
||||
<source>RejectAfterTime - Reject after time</source>
|
||||
<translation>RejectAfterTime - 指定时间后拒绝</translation>
|
||||
<translation>RejectAfterTime - Reject after time</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="378"/>
|
||||
<source>KeepaliveTimeout - Keepalive timeout</source>
|
||||
<translation>KeepaliveTimeout - Keepalive 超时</translation>
|
||||
<translation>KeepaliveTimeout - Keepalive timeout</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="391"/>
|
||||
<source>MaxHandshakeAttempts - Max handshake attempts</source>
|
||||
<translation>MaxHandshakeAttempts - 最大握手尝试次数</translation>
|
||||
<translation>MaxHandshakeAttempts - Max handshake attempts</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolAwgSettings.qml" line="408"/>
|
||||
|
||||
@@ -13,6 +13,14 @@
|
||||
using namespace amnezia;
|
||||
using namespace ProtocolUtils;
|
||||
|
||||
namespace
|
||||
{
|
||||
QString awgToggleValue(bool enabled)
|
||||
{
|
||||
return enabled ? QString(protocols::awg::awgBoolOn) : QString();
|
||||
}
|
||||
} // namespace
|
||||
|
||||
AwgConfigModel::AwgConfigModel(QObject *parent) : QAbstractListModel(parent)
|
||||
{
|
||||
}
|
||||
@@ -50,9 +58,11 @@ bool AwgConfigModel::setData(const QModelIndex &index, const QVariant &value, in
|
||||
case Roles::ClientRejectAfterTimeRole: m_protocolConfig.clientConfig->rejectAfterTime = strValue; break;
|
||||
case Roles::ClientKeepaliveTimeoutRole: m_protocolConfig.clientConfig->keepaliveTimeout = strValue; break;
|
||||
case Roles::ClientMaxHandshakeAttemptsRole: m_protocolConfig.clientConfig->maxHandshakeAttempts = strValue; break;
|
||||
case Roles::ClientRandomTrailersRole:
|
||||
m_protocolConfig.clientConfig->randomTrailers = awgToggleValue(value.toBool());
|
||||
break;
|
||||
case Roles::ClientDisableCookiesRole:
|
||||
m_protocolConfig.clientConfig->disableCookies =
|
||||
value.toBool() ? QString(protocols::awg::awgBoolOn) : QString(protocols::awg::awgBoolOff);
|
||||
m_protocolConfig.clientConfig->disableCookies = awgToggleValue(value.toBool());
|
||||
break;
|
||||
case Roles::ServerJunkPacketCountRole: m_protocolConfig.serverConfig.junkPacketCount = strValue; break;
|
||||
case Roles::ServerJunkPacketMinSizeRole: m_protocolConfig.serverConfig.junkPacketMinSize = strValue; break;
|
||||
@@ -89,12 +99,10 @@ bool AwgConfigModel::setData(const QModelIndex &index, const QVariant &value, in
|
||||
break;
|
||||
}
|
||||
case Roles::ServerRandomTrailersRole:
|
||||
m_protocolConfig.serverConfig.randomTrailers =
|
||||
value.toBool() ? QString(protocols::awg::awgBoolOn) : QString(protocols::awg::awgBoolOff);
|
||||
m_protocolConfig.serverConfig.randomTrailers = awgToggleValue(value.toBool());
|
||||
break;
|
||||
case Roles::ServerDisableCookiesRole:
|
||||
m_protocolConfig.serverConfig.disableCookies =
|
||||
value.toBool() ? QString(protocols::awg::awgBoolOn) : QString(protocols::awg::awgBoolOff);
|
||||
m_protocolConfig.serverConfig.disableCookies = awgToggleValue(value.toBool());
|
||||
break;
|
||||
default:
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user