Merge pull request #857 from StrikerRUS/trans
update Russian translation
This commit is contained in:
commit
008b858203
20 changed files with 522 additions and 548 deletions
|
@ -9,7 +9,7 @@ Amnezia is an open-source VPN client, with a key feature that enables you to dep
|
|||
## Features
|
||||
|
||||
- Very easy to use - enter your IP address, SSH login, and password, and Amnezia will automatically install VPN docker containers to your server and connect to the VPN.
|
||||
- OpenVPN, ShadowSocks, WireGuard, and IKEv2 protocols support.
|
||||
- OpenVPN, Shadowsocks, WireGuard, and IKEv2 protocols support.
|
||||
- Masking VPN with OpenVPN over Cloak plugin
|
||||
- Split tunneling support - add any sites to the client to enable VPN only for them (only for desktops)
|
||||
- Windows, MacOS, Linux, Android, iOS releases.
|
||||
|
@ -27,7 +27,7 @@ AmneziaVPN uses several open-source projects to work:
|
|||
|
||||
- [OpenSSL](https://www.openssl.org/)
|
||||
- [OpenVPN](https://openvpn.net/)
|
||||
- [ShadowSocks](https://shadowsocks.org/)
|
||||
- [Shadowsocks](https://shadowsocks.org/)
|
||||
- [Qt](https://www.qt.io/)
|
||||
- [LibSsh](https://libssh.org) - forked from Qt Creator
|
||||
- and more...
|
||||
|
|
|
@ -140,7 +140,7 @@ class CameraActivity : ComponentActivity() {
|
|||
}
|
||||
}
|
||||
}.addOnFailureListener {
|
||||
Log.e(TAG, "Processing QR-code image failed: ${it.message}")
|
||||
Log.e(TAG, "Processing QR code image failed: ${it.message}")
|
||||
}.addOnCompleteListener {
|
||||
imageProxy.close()
|
||||
}
|
||||
|
|
|
@ -99,8 +99,8 @@ QMap<DockerContainer, QString> ContainerProps::containerHumanNames()
|
|||
{ DockerContainer::SSXray, "ShadowSocks"},
|
||||
|
||||
{ DockerContainer::TorWebSite, QObject::tr("Website in Tor network") },
|
||||
{ DockerContainer::Dns, QObject::tr("Amnezia DNS") },
|
||||
{ DockerContainer::Sftp, QObject::tr("Sftp file sharing service") },
|
||||
{ DockerContainer::Dns, QObject::tr("AmneziaDNS") },
|
||||
{ DockerContainer::Sftp, QObject::tr("SFTP file sharing service") },
|
||||
{ DockerContainer::Socks5Proxy, QObject::tr("SOCKS5 proxy server") } };
|
||||
}
|
||||
|
||||
|
@ -110,7 +110,7 @@ QMap<DockerContainer, QString> ContainerProps::containerDescriptions()
|
|||
QObject::tr("OpenVPN is the most popular VPN protocol, with flexible configuration options. It uses its "
|
||||
"own security protocol with SSL/TLS for key exchange.") },
|
||||
{ DockerContainer::ShadowSocks,
|
||||
QObject::tr("ShadowSocks - masks VPN traffic, making it similar to normal web traffic, but it "
|
||||
QObject::tr("Shadowsocks - masks VPN traffic, making it similar to normal web traffic, but it "
|
||||
"may be recognized by analysis systems in some highly censored regions.") },
|
||||
{ DockerContainer::Cloak,
|
||||
QObject::tr("OpenVPN over Cloak - OpenVPN with VPN masquerading as web traffic and protection against "
|
||||
|
@ -127,7 +127,7 @@ QMap<DockerContainer, QString> ContainerProps::containerDescriptions()
|
|||
QObject::tr("XRay with REALITY - Suitable for countries with the highest level of internet censorship. "
|
||||
"Traffic masking as web traffic at the TLS level, and protection against detection by active probing methods.") },
|
||||
{ DockerContainer::Ipsec,
|
||||
QObject::tr("IKEv2 - Modern stable protocol, a bit faster than others, restores connection after "
|
||||
QObject::tr("IKEv2/IPsec - Modern stable protocol, a bit faster than others, restores connection after "
|
||||
"signal loss. It has native support on the latest versions of Android and iOS.") },
|
||||
|
||||
{ DockerContainer::TorWebSite, QObject::tr("Deploy a WordPress site on the Tor network in two clicks.") },
|
||||
|
@ -164,7 +164,6 @@ QMap<DockerContainer, QString> ContainerProps::containerDetailedDescriptions()
|
|||
"However, certain traffic analysis systems might still detect a Shadowsocks connection. "
|
||||
"Due to limited support in Amnezia, it's recommended to use AmneziaWG protocol.\n\n"
|
||||
"* Available in the AmneziaVPN only on desktop platforms\n"
|
||||
"* Normal power consumption on mobile devices\n\n"
|
||||
"* Configurable encryption protocol\n"
|
||||
"* Detectable by some DPI systems\n"
|
||||
"* Works over TCP network protocol.") },
|
||||
|
|
|
@ -9,7 +9,7 @@ QString errorString(ErrorCode code) {
|
|||
|
||||
// General error codes
|
||||
case(ErrorCode::NoError): errorMessage = QObject::tr("No error"); break;
|
||||
case(ErrorCode::UnknownError): errorMessage = QObject::tr("Unknown Error"); break;
|
||||
case(ErrorCode::UnknownError): errorMessage = QObject::tr("Unknown error"); break;
|
||||
case(ErrorCode::NotImplementedError): errorMessage = QObject::tr("Function not implemented"); break;
|
||||
case(ErrorCode::AmneziaServiceNotRunning): errorMessage = QObject::tr("Background service is not running"); break;
|
||||
|
||||
|
@ -23,15 +23,15 @@ QString errorString(ErrorCode code) {
|
|||
case(ErrorCode::ServerPacketManagerError): errorMessage = QObject::tr("Server error: Packet manager error"); break;
|
||||
|
||||
// Libssh errors
|
||||
case(ErrorCode::SshRequestDeniedError): errorMessage = QObject::tr("Ssh request was denied"); break;
|
||||
case(ErrorCode::SshInterruptedError): errorMessage = QObject::tr("Ssh request was interrupted"); break;
|
||||
case(ErrorCode::SshInternalError): errorMessage = QObject::tr("Ssh internal error"); break;
|
||||
case(ErrorCode::SshRequestDeniedError): errorMessage = QObject::tr("SSH request was denied"); break;
|
||||
case(ErrorCode::SshInterruptedError): errorMessage = QObject::tr("SSH request was interrupted"); break;
|
||||
case(ErrorCode::SshInternalError): errorMessage = QObject::tr("SSH internal error"); break;
|
||||
case(ErrorCode::SshPrivateKeyError): errorMessage = QObject::tr("Invalid private key or invalid passphrase entered"); break;
|
||||
case(ErrorCode::SshPrivateKeyFormatError): errorMessage = QObject::tr("The selected private key format is not supported, use openssh ED25519 key types or PEM key types"); break;
|
||||
case(ErrorCode::SshTimeoutError): errorMessage = QObject::tr("Timeout connecting to server"); break;
|
||||
|
||||
// Ssh scp errors
|
||||
case(ErrorCode::SshScpFailureError): errorMessage = QObject::tr("Scp error: Generic failure"); break;
|
||||
case(ErrorCode::SshScpFailureError): errorMessage = QObject::tr("SCP error: Generic failure"); break;
|
||||
|
||||
// Local errors
|
||||
case (ErrorCode::OpenVpnConfigMissing): errorMessage = QObject::tr("OpenVPN config missing"); break;
|
||||
|
@ -39,7 +39,7 @@ QString errorString(ErrorCode code) {
|
|||
|
||||
// Distro errors
|
||||
case (ErrorCode::OpenVpnExecutableMissing): errorMessage = QObject::tr("OpenVPN executable missing"); break;
|
||||
case (ErrorCode::ShadowSocksExecutableMissing): errorMessage = QObject::tr("ShadowSocks (ss-local) executable missing"); break;
|
||||
case (ErrorCode::ShadowSocksExecutableMissing): errorMessage = QObject::tr("Shadowsocks (ss-local) executable missing"); break;
|
||||
case (ErrorCode::CloakExecutableMissing): errorMessage = QObject::tr("Cloak (ck-client) executable missing"); break;
|
||||
case (ErrorCode::AmneziaServiceConnectionFailed): errorMessage = QObject::tr("Amnezia helper service error"); break;
|
||||
case (ErrorCode::OpenSslFailed): errorMessage = QObject::tr("OpenSSL failed"); break;
|
||||
|
|
|
@ -77,7 +77,7 @@ QMap<amnezia::Proto, QString> ProtocolProps::protocolHumanNames()
|
|||
|
||||
{ Proto::TorWebSite, "Website in Tor network" },
|
||||
{ Proto::Dns, "DNS Service" },
|
||||
{ Proto::Sftp, QObject::tr("Sftp service") },
|
||||
{ Proto::Sftp, QObject::tr("SFTP service") },
|
||||
{ Proto::Socks5Proxy, QObject::tr("SOCKS5 proxy server") } };
|
||||
}
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/controllers/connectionController.cpp" line="115"/>
|
||||
<source>Settings updated successfully, Reconnnection...</source>
|
||||
<source>Settings updated successfully, reconnnection...</source>
|
||||
<translation>تم تحديث الاعدادات بنجاح, جاري إعادة الاتصال...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -700,8 +700,8 @@ Already installed containers were found on the server. All installed containers
|
|||
<name>PageProtocolShadowSocksSettings</name>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolShadowSocksSettings.qml" line="80"/>
|
||||
<source>ShadowSocks settings</source>
|
||||
<translation>ShadowSocks إعدادات</translation>
|
||||
<source>Shadowsocks settings</source>
|
||||
<translation>Shadowsocks إعدادات</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolShadowSocksSettings.qml" line="89"/>
|
||||
|
@ -1041,8 +1041,8 @@ And if you don't like the app, all the more support it - the donation will
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="115"/>
|
||||
<source>Github</source>
|
||||
<translation></translation>
|
||||
<source>GitHub</source>
|
||||
<translation>GitHub</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="119"/>
|
||||
|
@ -1317,7 +1317,7 @@ And if you don't like the app, all the more support it - the donation will
|
|||
<name>PageSettingsDns</name>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsDns.qml" line="39"/>
|
||||
<source>Default server does not support custom dns</source>
|
||||
<source>Default server does not support custom DNS</source>
|
||||
<translation>الخادم الافتراضي لا يدعم DNS مخصص</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1390,7 +1390,7 @@ And if you don't like the app, all the more support it - the donation will
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsLogging.qml" line="64"/>
|
||||
<source>Enabling this function will save application's logs automatically, By default, logging functionality is disabled. Enable log saving in case of application malfunction.</source>
|
||||
<source>Enabling this function will save application's logs automatically. By default, logging functionality is disabled. Enable log saving in case of application malfunction.</source>
|
||||
<translation>سيتم حفظ سجلات البرنامج بشكل تلقائي عند تفعيل هذه الميزة, بشكل افتراضي, هذه الميزة مٌعطلة. قم بتفعيل هذه الميزة في حالة هناك خلل في التطبيق.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1797,7 +1797,7 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSetupWizardConfigSource.qml" line="89"/>
|
||||
<source>QR-code</source>
|
||||
<source>QR code</source>
|
||||
<translation>رمز QR</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2089,8 +2089,8 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="79"/>
|
||||
<source>Save ShadowSocks config</source>
|
||||
<translation>احفظ تكوين ShadowSocks</translation>
|
||||
<source>Save Shadowsocks config</source>
|
||||
<translation>احفظ تكوين Shadowsocks</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="86"/>
|
||||
|
@ -2119,8 +2119,8 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="131"/>
|
||||
<source>ShadowSocks native format</source>
|
||||
<translation>تنسيق ShadowSocks الاصلي</translation>
|
||||
<source>Shadowsocks native format</source>
|
||||
<translation>تنسيق Shadowsocks الاصلي</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="136"/>
|
||||
|
@ -2571,8 +2571,8 @@ It's okay as long as it's from someone you trust.</source>
|
|||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../protocols/protocols_defs.cpp" line="77"/>
|
||||
<source>Sftp service</source>
|
||||
<translation>خدمة Sftp</translation>
|
||||
<source>SFTP service</source>
|
||||
<translation>خدمة SFTP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="11"/>
|
||||
|
@ -2581,7 +2581,7 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="12"/>
|
||||
<source>Unknown Error</source>
|
||||
<source>Unknown error</source>
|
||||
<translation>خطأ غير معروف</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2621,18 +2621,18 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="24"/>
|
||||
<source>Ssh request was denied</source>
|
||||
<translation>طلب Ssh محظو</translation>
|
||||
<source>SSH request was denied</source>
|
||||
<translation>طلب SSH محظو</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="25"/>
|
||||
<source>Ssh request was interrupted</source>
|
||||
<translation>إنقطع طلب Ssh</translation>
|
||||
<source>SSH request was interrupted</source>
|
||||
<translation>إنقطع طلب SSH</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="26"/>
|
||||
<source>Ssh internal error</source>
|
||||
<translation>مشكلة داخلية Ssh</translation>
|
||||
<source>SSH internal error</source>
|
||||
<translation>مشكلة داخلية SSH</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="27"/>
|
||||
|
@ -2720,7 +2720,7 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="32"/>
|
||||
<source>Scp error: Generic failure</source>
|
||||
<source>SCP error: Generic failure</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2735,8 +2735,8 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="40"/>
|
||||
<source>ShadowSocks (ss-local) executable missing</source>
|
||||
<translation>ShadowSocks (ss-local) executable مفقود</translation>
|
||||
<source>Shadowsocks (ss-local) executable missing</source>
|
||||
<translation>Shadowsocks (ss-local) executable مفقود</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="41"/>
|
||||
|
@ -2821,13 +2821,13 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="91"/>
|
||||
<source>Amnezia DNS</source>
|
||||
<translation></translation>
|
||||
<source>AmneziaDNS</source>
|
||||
<translation>AmneziaDNS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="92"/>
|
||||
<source>Sftp file sharing service</source>
|
||||
<translation>ملف Sftp: خدمة المشاركة</translation>
|
||||
<source>SFTP file sharing service</source>
|
||||
<translation>ملف SFTP: خدمة المشاركة</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="98"/>
|
||||
|
@ -2836,8 +2836,8 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="101"/>
|
||||
<source>ShadowSocks - masks VPN traffic, making it similar to normal web traffic, but it may be recognized by analysis systems in some highly censored regions.</source>
|
||||
<translation>بروتوكول ShadowSocks- يتنكر في حركة مرور VPN, يبدو ك حركة مرور الويب العادية
|
||||
<source>Shadowsocks - masks VPN traffic, making it similar to normal web traffic, but it may be recognized by analysis systems in some highly censored regions.</source>
|
||||
<translation>بروتوكول Shadowsocks- يتنكر في حركة مرور VPN, يبدو ك حركة مرور الويب العادية
|
||||
ولكن قد يتم التعرف عليه من خلال أنظمة التحليل في بعض المناطق شديدة الرقابة.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2944,8 +2944,8 @@ For more detailed information, you can
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="115"/>
|
||||
<source>IKEv2 - Modern stable protocol, a bit faster than others, restores connection after signal loss.</source>
|
||||
<translation>بروتوكول IKEv2 - بروتوكول مستقر حديث, اسرع بقليل من الباقي, يسترجع الاتصال بعد خسارة الاشارة.</translation>
|
||||
<source>IKEv2/IPsec - Modern stable protocol, a bit faster than others, restores connection after signal loss.</source>
|
||||
<translation>بروتوكول IKEv2/IPsec - بروتوكول مستقر حديث, اسرع بقليل من الباقي, يسترجع الاتصال بعد خسارة الاشارة.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="118"/>
|
||||
|
@ -2981,16 +2981,12 @@ It employs its unique security protocol, leveraging the strength of SSL/TLS for
|
|||
<source>Shadowsocks, inspired by the SOCKS5 protocol, safeguards the connection using the AEAD cipher. Although Shadowsocks is designed to be discreet and challenging to identify, it isn't identical to a standard HTTPS connection.However, certain traffic analysis systems might still detect a Shadowsocks connection. Due to limited support in Amnezia, it's recommended to use AmneziaWG protocol.
|
||||
|
||||
* Available in the AmneziaVPN only on desktop platforms
|
||||
* Normal power consumption on mobile devices
|
||||
|
||||
* Configurable encryption protocol
|
||||
* Detectable by some DPI systems
|
||||
* Works over TCP network protocol.</source>
|
||||
<translation>Shadowsocks, مستوحي من بروتوكول SOCKS5, يحمي الاتصال بأستعمال شفرة AEAD. كذلك Shadowsocks صٌمم كي يكون متحفظاً ويصعب تحديدة, إنه ليس مطابقًا لاتصال HTTPS القياسي. عمتاُ. بعض انظمة تحليل حركات المرور قد تتعرف علي اتصال Shadowsocks. بسبب الدعم المحدود في Amnezia, يٌنصح بأستخدام بروتوكول AmneziaWG.
|
||||
|
||||
* مٌتاح في AmneziaVPN عبر جميع المنصات
|
||||
* استهلاك طاقة عادي علي اجهزة المحمول
|
||||
|
||||
* بروتوكول تشفير قابل للتكوين
|
||||
* قابل للكشف بواسطة بعض انظمة DPI
|
||||
* يعمل عبر بروتوكول شبكة TCP.</translation>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/controllers/connectionController.cpp" line="115"/>
|
||||
<source>Settings updated successfully, Reconnnection...</source>
|
||||
<source>Settings updated successfully, reconnnection...</source>
|
||||
<translation>تنظیمات به روز رسانی شد
|
||||
در حال اتصال دوباره...</translation>
|
||||
</message>
|
||||
|
@ -664,8 +664,8 @@ Already installed containers were found on the server. All installed containers
|
|||
<name>PageProtocolShadowSocksSettings</name>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolShadowSocksSettings.qml" line="80"/>
|
||||
<source>ShadowSocks settings</source>
|
||||
<translation>تنظیمات ShadowSocks</translation>
|
||||
<source>Shadowsocks settings</source>
|
||||
<translation>تنظیمات Shadowsocks</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolShadowSocksSettings.qml" line="89"/>
|
||||
|
@ -1002,8 +1002,8 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="115"/>
|
||||
<source>Github</source>
|
||||
<translation>Github</translation>
|
||||
<source>GitHub</source>
|
||||
<translation>GitHub</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="119"/>
|
||||
|
@ -1250,7 +1250,7 @@ Already installed containers were found on the server. All installed containers
|
|||
<name>PageSettingsDns</name>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsDns.qml" line="39"/>
|
||||
<source>Default server does not support custom dns</source>
|
||||
<source>Default server does not support custom DNS</source>
|
||||
<translation>سرور پیشفرض از دیاناس سفارشی پشتیبانی نمیکند</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1323,7 +1323,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsLogging.qml" line="64"/>
|
||||
<source>Enabling this function will save application's logs automatically, By default, logging functionality is disabled. Enable log saving in case of application malfunction.</source>
|
||||
<source>Enabling this function will save application's logs automatically. By default, logging functionality is disabled. Enable log saving in case of application malfunction.</source>
|
||||
<translation>فعال کردن این عملکرد باعث ذخیره خودکار لاگهای برنامه میشود. به طور پیشفرض، قابلیت ثبت لاگ غیرفعال است. در صورت بروز خطا در برنامه، ذخیره لاگ را فعال کنید.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1710,7 +1710,7 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSetupWizardConfigSource.qml" line="89"/>
|
||||
<source>QR-code</source>
|
||||
<source>QR code</source>
|
||||
<translation>QR-Code</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2037,8 +2037,8 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="79"/>
|
||||
<source>Save ShadowSocks config</source>
|
||||
<translation>ذخیره تنظیمات ShadowSocks</translation>
|
||||
<source>Save Shadowsocks config</source>
|
||||
<translation>ذخیره تنظیمات Shadowsocks</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="86"/>
|
||||
|
@ -2057,8 +2057,8 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="131"/>
|
||||
<source>ShadowSocks native format</source>
|
||||
<translation>فرمت ShadowSocks</translation>
|
||||
<source>Shadowsocks native format</source>
|
||||
<translation>فرمت Shadowsocks</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="136"/>
|
||||
|
@ -2476,8 +2476,8 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="12"/>
|
||||
<source>Unknown Error</source>
|
||||
<translation>Unknown Error</translation>
|
||||
<source>Unknown error</source>
|
||||
<translation>Unknown error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="13"/>
|
||||
|
@ -2516,18 +2516,18 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="24"/>
|
||||
<source>Ssh request was denied</source>
|
||||
<translation>Ssh request was denied</translation>
|
||||
<source>SSH request was denied</source>
|
||||
<translation>SSH request was denied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="25"/>
|
||||
<source>Ssh request was interrupted</source>
|
||||
<translation>Ssh request was interrupted</translation>
|
||||
<source>SSH request was interrupted</source>
|
||||
<translation>SSH request was interrupted</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="26"/>
|
||||
<source>Ssh internal error</source>
|
||||
<translation>Ssh internal error</translation>
|
||||
<source>SSH internal error</source>
|
||||
<translation>SSH internal error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="27"/>
|
||||
|
@ -2628,7 +2628,7 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="32"/>
|
||||
<source>Scp error: Generic failure</source>
|
||||
<source>SCP error: Generic failure</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2643,8 +2643,8 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="40"/>
|
||||
<source>ShadowSocks (ss-local) executable missing</source>
|
||||
<translation>ShadowSocks (ss-local) executable missing</translation>
|
||||
<source>Shadowsocks (ss-local) executable missing</source>
|
||||
<translation>Shadowsocks (ss-local) executable missing</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="41"/>
|
||||
|
@ -2718,7 +2718,7 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="101"/>
|
||||
<source>ShadowSocks - masks VPN traffic, making it similar to normal web traffic, but it may be recognized by analysis systems in some highly censored regions.</source>
|
||||
<source>Shadowsocks - masks VPN traffic, making it similar to normal web traffic, but it may be recognized by analysis systems in some highly censored regions.</source>
|
||||
<translation>شدوساکس - ترافیک VPN را پنهان می کند، به طوری که مشابه ترافیک وب عادی می شود، اما ممکن است توسط سیستم های تجزیه و تحلیل در برخی از مناطق با سانسور شدید شناسایی شود.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2819,8 +2819,8 @@ While it offers a blend of security, stability, and speed, it's essential t
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="92"/>
|
||||
<source>Sftp file sharing service</source>
|
||||
<translation>سرویس فایل اشتراک Sftp</translation>
|
||||
<source>SFTP file sharing service</source>
|
||||
<translation>سرویس فایل اشتراک SFTP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="90"/>
|
||||
|
@ -2830,8 +2830,8 @@ While it offers a blend of security, stability, and speed, it's essential t
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="91"/>
|
||||
<source>Amnezia DNS</source>
|
||||
<translation>Amnezia DNS</translation>
|
||||
<source>AmneziaDNS</source>
|
||||
<translation>AmneziaDNS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="98"/>
|
||||
|
@ -2850,8 +2850,8 @@ While it offers a blend of security, stability, and speed, it's essential t
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="115"/>
|
||||
<source>IKEv2 - Modern stable protocol, a bit faster than others, restores connection after signal loss.</source>
|
||||
<translation>پروتکل IKEv2 پروتکلی پایدار و مدرن که مقداری سریعتر از سایر پروتکلهاست. بعد از قطع سیگنال دوباره اتصال را بازیابی میکند.</translation>
|
||||
<source>IKEv2/IPsec - Modern stable protocol, a bit faster than others, restores connection after signal loss.</source>
|
||||
<translation>پروتکل IKEv2/IPsec پروتکلی پایدار و مدرن که مقداری سریعتر از سایر پروتکلهاست. بعد از قطع سیگنال دوباره اتصال را بازیابی میکند.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="118"/>
|
||||
|
@ -2891,15 +2891,12 @@ It employs its unique security protocol, leveraging the strength of SSL/TLS for
|
|||
<source>Shadowsocks, inspired by the SOCKS5 protocol, safeguards the connection using the AEAD cipher. Although Shadowsocks is designed to be discreet and challenging to identify, it isn't identical to a standard HTTPS connection.However, certain traffic analysis systems might still detect a Shadowsocks connection. Due to limited support in Amnezia, it's recommended to use AmneziaWG protocol.
|
||||
|
||||
* Available in the AmneziaVPN only on desktop platforms
|
||||
* Normal power consumption on mobile devices
|
||||
|
||||
* Configurable encryption protocol
|
||||
* Detectable by some DPI systems
|
||||
* Works over TCP network protocol.</source>
|
||||
<translation>پروتکل Shadowsocks، الهام گرفته از پروتکل Socks5، اتصال را با استفاده از رمزگذاری AEAD امن میکند. اگرچه Shadowsocks طوری طراحی شده که برای شناسایی در شبکه چالشبرانگیز باشد و محتاط عمل کند اما این پروتکل مانند یک اتصال استاندارد HTTPS نیست و برخی از سیستمهای تحلیل ترافیک مشخص ممکن است بتوانند اتصال Shadowsocks را شناسایی کنند. به دلیل محدودیت پشتیبانی در Amnezia پیشنهاد میشود که از َAmneziaWG استفاده شود.
|
||||
|
||||
* فقط بر روی پلتفرم دسکتاپ بر روی Amnezia قابل دسترس است
|
||||
* مصرف انرژی عادی در دستگاههای موبایل
|
||||
* پروتکل رمزنگاری قابل پیکربندی
|
||||
* قابل شناسایی توسط برخی سیستمهای تحلیل عمیق DPI
|
||||
* عملکرد بر روی پروتکل شبکه TCP</translation>
|
||||
|
@ -2946,8 +2943,8 @@ For more detailed information, you can
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../protocols/protocols_defs.cpp" line="77"/>
|
||||
<source>Sftp service</source>
|
||||
<translation>سرویس Sftp</translation>
|
||||
<source>SFTP service</source>
|
||||
<translation>سرویس SFTP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../3rd/qtkeychain/qtkeychain/libsecret.cpp" line="119"/>
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/controllers/connectionController.cpp" line="162"/>
|
||||
<source>Settings updated successfully, Reconnnection...</source>
|
||||
<source>Settings updated successfully, reconnnection...</source>
|
||||
<translation>सेटिंग्स सफलतापूर्वक अपडेट हो गईं...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -711,7 +711,7 @@ Already installed containers were found on the server. All installed containers
|
|||
<name>PageProtocolShadowSocksSettings</name>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolShadowSocksSettings.qml" line="95"/>
|
||||
<source>ShadowSocks settings</source>
|
||||
<source>Shadowsocks settings</source>
|
||||
<translation>शैडोसॉक्स सेटिंग्स</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1055,13 +1055,13 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="140"/>
|
||||
<source>Github</source>
|
||||
<translation>Github</translation>
|
||||
<source>GitHub</source>
|
||||
<translation>GitHub</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="147"/>
|
||||
<source>https://github.com/amnezia-vpn/amnezia-client</source>
|
||||
<translation></translation>
|
||||
<translation>https://github.com/amnezia-vpn/amnezia-client</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="158"/>
|
||||
|
@ -1386,7 +1386,7 @@ Already installed containers were found on the server. All installed containers
|
|||
<name>PageSettingsDns</name>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsDns.qml" line="46"/>
|
||||
<source>Default server does not support custom dns</source>
|
||||
<source>Default server does not support custom DNS</source>
|
||||
<translation>डिफ़ॉल्ट सर्वर कस्टम डीएनएस का समर्थन नहीं करता है</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1459,7 +1459,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsLogging.qml" line="69"/>
|
||||
<source>Enabling this function will save application's logs automatically, By default, logging functionality is disabled. Enable log saving in case of application malfunction.</source>
|
||||
<source>Enabling this function will save application's logs automatically. By default, logging functionality is disabled. Enable log saving in case of application malfunction.</source>
|
||||
<translation>इस फ़ंक्शन को सक्षम करने से एप्लिकेशन के लॉग स्वचालित रूप से सहेजे जाएंगे, डिफ़ॉल्ट रूप से, लॉगिंग कार्यक्षमता अक्षम है। एप्लिकेशन की खराबी की स्थिति में लॉग सेविंग सक्षम करें.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1868,7 +1868,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSetupWizardConfigSource.qml" line="102"/>
|
||||
<source>QR-code</source>
|
||||
<source>QR code</source>
|
||||
<translation>क्यू आर संहिता</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2164,7 +2164,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="81"/>
|
||||
<source>Save ShadowSocks config</source>
|
||||
<source>Save Shadowsocks config</source>
|
||||
<translation>शैडोसॉक्स कॉन्फ़िगरेशन सहेजें</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2199,7 +2199,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="140"/>
|
||||
<source>ShadowSocks native format</source>
|
||||
<source>Shadowsocks native format</source>
|
||||
<translation>शैडोसॉक्स मूल प्रारूप</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2663,7 +2663,7 @@ Already installed containers were found on the server. All installed containers
|
|||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../protocols/protocols_defs.cpp" line="78"/>
|
||||
<source>Sftp service</source>
|
||||
<source>SFTP service</source>
|
||||
<translation>एसएफटीपी सेवा</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2673,7 +2673,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="12"/>
|
||||
<source>Unknown Error</source>
|
||||
<source>Unknown error</source>
|
||||
<translation>अज्ञात त्रुटि</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2718,18 +2718,18 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="25"/>
|
||||
<source>Ssh request was denied</source>
|
||||
<translation>Ssh अनुरोध अस्वीकार कर दिया गया</translation>
|
||||
<source>SSH request was denied</source>
|
||||
<translation>SSH अनुरोध अस्वीकार कर दिया गया</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="26"/>
|
||||
<source>Ssh request was interrupted</source>
|
||||
<translation>Ssh अनुरोध बाधित हो गया था</translation>
|
||||
<source>SSH request was interrupted</source>
|
||||
<translation>SSH अनुरोध बाधित हो गया था</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="27"/>
|
||||
<source>Ssh internal error</source>
|
||||
<translation>Ssh आंतरिक त्रुटि</translation>
|
||||
<source>SSH internal error</source>
|
||||
<translation>SSH आंतरिक त्रुटि</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="28"/>
|
||||
|
@ -2773,7 +2773,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="33"/>
|
||||
<source>Scp error: Generic failure</source>
|
||||
<source>SCP error: Generic failure</source>
|
||||
<translation>एससीपी त्रुटि: सामान्य विफलता</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2788,7 +2788,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="41"/>
|
||||
<source>ShadowSocks (ss-local) executable missing</source>
|
||||
<source>Shadowsocks (ss-local) executable missing</source>
|
||||
<translation>शैडोसॉक्स (एसएस-स्थानीय) निष्पादन योग्य गायब है</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2874,13 +2874,13 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="97"/>
|
||||
<source>Amnezia DNS</source>
|
||||
<translation></translation>
|
||||
<source>AmneziaDNS</source>
|
||||
<translation>AmneziaDNS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="98"/>
|
||||
<source>Sftp file sharing service</source>
|
||||
<translation>Sftp फ़ाइल साझाकरण सेवा</translation>
|
||||
<source>SFTP file sharing service</source>
|
||||
<translation>SFTP फ़ाइल साझाकरण सेवा</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="104"/>
|
||||
|
@ -2889,7 +2889,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="107"/>
|
||||
<source>ShadowSocks - masks VPN traffic, making it similar to normal web traffic, but it may be recognized by analysis systems in some highly censored regions.</source>
|
||||
<source>Shadowsocks - masks VPN traffic, making it similar to normal web traffic, but it may be recognized by analysis systems in some highly censored regions.</source>
|
||||
<translation>शैडोसॉक्स - वीपीएन ट्रैफ़िक को मास्क करता है, जिससे यह सामान्य वेब ट्रैफ़िक के समान हो जाता है, लेकिन इसे कुछ अत्यधिक सेंसर किए गए क्षेत्रों में विश्लेषण प्रणालियों द्वारा पहचाना जा सकता है.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2998,8 +2998,8 @@ For more detailed information, you can
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="124"/>
|
||||
<source>IKEv2 - Modern stable protocol, a bit faster than others, restores connection after signal loss.</source>
|
||||
<translation>IKEv2 - आधुनिक स्थिर प्रोटोकॉल, दूसरों की तुलना में थोड़ा तेज़, सिग्नल हानि के बाद कनेक्शन पुनर्स्थापित करता है।</translation>
|
||||
<source>IKEv2/IPsec - Modern stable protocol, a bit faster than others, restores connection after signal loss.</source>
|
||||
<translation>IKEv2/IPsec - आधुनिक स्थिर प्रोटोकॉल, दूसरों की तुलना में थोड़ा तेज़, सिग्नल हानि के बाद कनेक्शन पुनर्स्थापित करता है।</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="127"/>
|
||||
|
@ -3035,16 +3035,12 @@ It employs its unique security protocol, leveraging the strength of SSL/TLS for
|
|||
<source>Shadowsocks, inspired by the SOCKS5 protocol, safeguards the connection using the AEAD cipher. Although Shadowsocks is designed to be discreet and challenging to identify, it isn't identical to a standard HTTPS connection.However, certain traffic analysis systems might still detect a Shadowsocks connection. Due to limited support in Amnezia, it's recommended to use AmneziaWG protocol.
|
||||
|
||||
* Available in the AmneziaVPN only on desktop platforms
|
||||
* Normal power consumption on mobile devices
|
||||
|
||||
* Configurable encryption protocol
|
||||
* Detectable by some DPI systems
|
||||
* Works over TCP network protocol.</source>
|
||||
<translation>शैडोसॉक्स, SOCKS5 प्रोटोकॉल से प्रेरित होकर, AEAD सिफर का उपयोग करके कनेक्शन की सुरक्षा करता है। हालाँकि शैडोसॉक्स को विवेकपूर्ण और पहचानने में चुनौतीपूर्ण बनाया गया है, यह एक मानक HTTPS कनेक्शन के समान नहीं है। हालाँकि, कुछ ट्रैफ़िक विश्लेषण प्रणालियाँ अभी भी शैडोसॉक्स कनेक्शन का पता लगा सकती हैं। Amnezia में सीमित समर्थन के कारण, AmneziaWG प्रोटोकॉल का उपयोग करने की अनुशंसा की जाती है।
|
||||
|
||||
* AmneziaVPN केवल डेस्कटॉप प्लेटफ़ॉर्म पर उपलब्ध है
|
||||
* मोबाइल उपकरणों पर सामान्य बिजली की खपत
|
||||
|
||||
* कॉन्फ़िगर करने योग्य एन्क्रिप्शन प्रोटोकॉल
|
||||
* कुछ डीपीआई सिस्टम द्वारा पता लगाने योग्य
|
||||
* टीसीपी नेटवर्क प्रोटोकॉल पर काम करता है।.</translation>
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/controllers/connectionController.cpp" line="115"/>
|
||||
<source>Settings updated successfully, Reconnnection...</source>
|
||||
<source>Settings updated successfully, reconnnection...</source>
|
||||
<translation>ဆက်တင်များကို အောင်မြင်စွာ အပ်ဒိတ်လုပ်ပြီးပါပြီ၊ ပြန်လည်ချိတ်ဆက်နေပါသည်...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -664,8 +664,8 @@ Already installed containers were found on the server. All installed containers
|
|||
<name>PageProtocolShadowSocksSettings</name>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolShadowSocksSettings.qml" line="80"/>
|
||||
<source>ShadowSocks settings</source>
|
||||
<translation>ShadowSocks ဆက်တင်များ</translation>
|
||||
<source>Shadowsocks settings</source>
|
||||
<translation>Shadowsocks ဆက်တင်များ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolShadowSocksSettings.qml" line="89"/>
|
||||
|
@ -1002,8 +1002,8 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="115"/>
|
||||
<source>Github</source>
|
||||
<translation>Github</translation>
|
||||
<source>GitHub</source>
|
||||
<translation>GitHub</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="119"/>
|
||||
|
@ -1250,8 +1250,8 @@ Already installed containers were found on the server. All installed containers
|
|||
<name>PageSettingsDns</name>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsDns.qml" line="39"/>
|
||||
<source>Default server does not support custom dns</source>
|
||||
<translation>မူရင်းဆာဗာသည် စိတ်ကြိုက် dns ကို အထောက်အပံ့မပေးပါ</translation>
|
||||
<source>Default server does not support custom DNS</source>
|
||||
<translation>မူရင်းဆာဗာသည် စိတ်ကြိုက် DNS ကို အထောက်အပံ့မပေးပါ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsDns.qml" line="57"/>
|
||||
|
@ -1323,7 +1323,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsLogging.qml" line="64"/>
|
||||
<source>Enabling this function will save application's logs automatically, By default, logging functionality is disabled. Enable log saving in case of application malfunction.</source>
|
||||
<source>Enabling this function will save application's logs automatically. By default, logging functionality is disabled. Enable log saving in case of application malfunction.</source>
|
||||
<translation>ဤလုပ်ဆောင်ချက်ကို ဖွင့်ခြင်းဖြင့် အပလီကေးရှင်း၏ မှတ်တမ်းများကို အလိုအလျောက် သိမ်းဆည်းပေးမည် ဖြစ်ပြီး မူရင်းအတိုင်း၊ မှတ်တမ်းလုပ်ဆောင်ချက်ကို ပိတ်ထားသည်။ အပလီကေးရှင်းချို့ယွင်းချက်ရှိသောအခါ မှတ်တမ်းသိမ်းဆည်းခြင်းကို ဖွင့်ပါ။</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1711,7 +1711,7 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSetupWizardConfigSource.qml" line="89"/>
|
||||
<source>QR-code</source>
|
||||
<source>QR code</source>
|
||||
<translation>QR-ကုဒ်</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2038,8 +2038,8 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="79"/>
|
||||
<source>Save ShadowSocks config</source>
|
||||
<translation>ShadowSocks config ကိုသိမ်းဆည်းမည်</translation>
|
||||
<source>Save Shadowsocks config</source>
|
||||
<translation>Shadowsocks config ကိုသိမ်းဆည်းမည်</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="86"/>
|
||||
|
@ -2058,8 +2058,8 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="131"/>
|
||||
<source>ShadowSocks native format</source>
|
||||
<translation>ShadowSocks မူရင်းဖောမတ်</translation>
|
||||
<source>Shadowsocks native format</source>
|
||||
<translation>Shadowsocks မူရင်းဖောမတ်</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="136"/>
|
||||
|
@ -2477,7 +2477,7 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="12"/>
|
||||
<source>Unknown Error</source>
|
||||
<source>Unknown error</source>
|
||||
<translation>အမည်မသိ မှားယွင်းမှု</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2517,18 +2517,18 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="24"/>
|
||||
<source>Ssh request was denied</source>
|
||||
<translation>Ssh တောင်းဆိုမှု ငြင်းဆိုခံလိုက်ရပါသည်</translation>
|
||||
<source>SSH request was denied</source>
|
||||
<translation>SSH တောင်းဆိုမှု ငြင်းဆိုခံလိုက်ရပါသည်</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="25"/>
|
||||
<source>Ssh request was interrupted</source>
|
||||
<translation>Ssh တောင်းဆိုမှု အနှောက်အယက်ခံလိုက်ရပါသည်</translation>
|
||||
<source>SSH request was interrupted</source>
|
||||
<translation>SSH တောင်းဆိုမှု အနှောက်အယက်ခံလိုက်ရပါသည်</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="26"/>
|
||||
<source>Ssh internal error</source>
|
||||
<translation>စက်တွင်းဖြစ်သော Ssh မှားယွင်းမှု</translation>
|
||||
<source>SSH internal error</source>
|
||||
<translation>စက်တွင်းဖြစ်သော SSH မှားယွင်းမှု</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="27"/>
|
||||
|
@ -2624,7 +2624,7 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="32"/>
|
||||
<source>Scp error: Generic failure</source>
|
||||
<source>SCP error: Generic failure</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2639,8 +2639,8 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="40"/>
|
||||
<source>ShadowSocks (ss-local) executable missing</source>
|
||||
<translation>ShadowSocks (ss-local) executable ပျောက်နေပါသည်</translation>
|
||||
<source>Shadowsocks (ss-local) executable missing</source>
|
||||
<translation>Shadowsocks (ss-local) executable ပျောက်နေပါသည်</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="41"/>
|
||||
|
@ -2719,8 +2719,8 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="101"/>
|
||||
<source>ShadowSocks - masks VPN traffic, making it similar to normal web traffic, but it may be recognized by analysis systems in some highly censored regions.</source>
|
||||
<translation>ShadowSocks - ၎င်းသည် ပုံမှန်ဝဘ်လမ်းကြောင်းနှင့် ဆင်တူစေရန် VPN အသွားအလာကို ဖုံးကွယ်ထားသော်လည်း ၎င်းကို အချို့သော ဆင်ဆာဖြတ်ထားသော ဒေသများရှိ ခွဲခြမ်းစိတ်ဖြာမှုစနစ်များက ထောက်လှန်းသိရှိနိုင်ပါသည်.</translation>
|
||||
<source>Shadowsocks - masks VPN traffic, making it similar to normal web traffic, but it may be recognized by analysis systems in some highly censored regions.</source>
|
||||
<translation>Shadowsocks - ၎င်းသည် ပုံမှန်ဝဘ်လမ်းကြောင်းနှင့် ဆင်တူစေရန် VPN အသွားအလာကို ဖုံးကွယ်ထားသော်လည်း ၎င်းကို အချို့သော ဆင်ဆာဖြတ်ထားသော ဒေသများရှိ ခွဲခြမ်းစိတ်ဖြာမှုစနစ်များက ထောက်လှန်းသိရှိနိုင်ပါသည်.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="104"/>
|
||||
|
@ -2820,8 +2820,8 @@ IKEv2 သည် လုံခြုံရေး၊ တည်ငြိမ်မှ
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="92"/>
|
||||
<source>Sftp file sharing service</source>
|
||||
<translation>Sftp ဖိုင်မျှဝေခြင်းဆားဗစ်</translation>
|
||||
<source>SFTP file sharing service</source>
|
||||
<translation>SFTP ဖိုင်မျှဝေခြင်းဆားဗစ်</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="90"/>
|
||||
|
@ -2831,8 +2831,8 @@ IKEv2 သည် လုံခြုံရေး၊ တည်ငြိမ်မှ
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="91"/>
|
||||
<source>Amnezia DNS</source>
|
||||
<translation>Amnezia DNS</translation>
|
||||
<source>AmneziaDNS</source>
|
||||
<translation>AmneziaDNS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="98"/>
|
||||
|
@ -2851,8 +2851,8 @@ IKEv2 သည် လုံခြုံရေး၊ တည်ငြိမ်မှ
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="115"/>
|
||||
<source>IKEv2 - Modern stable protocol, a bit faster than others, restores connection after signal loss.</source>
|
||||
<translation>IKEv2 - ခေတ်မီတည်ငြိမ်သောပရိုတိုကော၊ အခြားအရာများထက်အနည်းငယ်ပိုမြန်သည်၊ signal ပျောက်ဆုံးပြီးနောက် ချိတ်ဆက်မှုကို ပြန်လည်ရယူပေးသည်.</translation>
|
||||
<source>IKEv2/IPsec - Modern stable protocol, a bit faster than others, restores connection after signal loss.</source>
|
||||
<translation>IKEv2/IPsec - ခေတ်မီတည်ငြိမ်သောပရိုတိုကော၊ အခြားအရာများထက်အနည်းငယ်ပိုမြန်သည်၊ signal ပျောက်ဆုံးပြီးနောက် ချိတ်ဆက်မှုကို ပြန်လည်ရယူပေးသည်.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="118"/>
|
||||
|
@ -2888,16 +2888,12 @@ It employs its unique security protocol, leveraging the strength of SSL/TLS for
|
|||
<source>Shadowsocks, inspired by the SOCKS5 protocol, safeguards the connection using the AEAD cipher. Although Shadowsocks is designed to be discreet and challenging to identify, it isn't identical to a standard HTTPS connection.However, certain traffic analysis systems might still detect a Shadowsocks connection. Due to limited support in Amnezia, it's recommended to use AmneziaWG protocol.
|
||||
|
||||
* Available in the AmneziaVPN only on desktop platforms
|
||||
* Normal power consumption on mobile devices
|
||||
|
||||
* Configurable encryption protocol
|
||||
* Detectable by some DPI systems
|
||||
* Works over TCP network protocol.</source>
|
||||
<translation>SOCKS5 ပရိုတိုကောကို အတုယူအခြေခံတည်ဆောက်ထားသော Shadowsocks သည် AEAD cipher ကိုအသုံးပြု၍ ချိတ်ဆက်မှုကိုကာကွယ်ပေးသည်။ Shadowsocks သည် ထောက်လှန်းသိရှိခံရခြင်းမှရှောင်ရှားနိုင်ရန်နှင့် ထောက်လှန်းသည့်သူများခက်ခဲစေရန် ဒီဇိုင်းထုတ်ထားသော်လည်း စံသတ်မှတ်ထားသည့် HTTPS ချိတ်ဆက်မှုနှင့် ထပ်တူမကျပါ။ သို့သော်၊ အချို့သောလမ်းကြောင်းဆိုင်ရာ ခွဲခြမ်းစိတ်ဖြာမှုစနစ်များသည် Shadowsocks ချိတ်ဆက်မှုကို ရှာဖွေတွေ့ရှိနိုင်သေးသည်။ Amnezia တွင် ထောက်ပံ့မှုအကန့်အသတ်ရှိသောကြောင့် AmneziaWG ပရိုတိုကောကို အသုံးပြုရန် အကြံပြုထားသည်။
|
||||
|
||||
* Desktop ပလပ်ဖောင်းများတွင်ရှိသော AmneziaVPN တွင်သာအသုံးပြုနိုင်ပါသည်။
|
||||
* မိုဘိုင်းစက်ပစ္စည်းများတွင် ပုံမှန်ပါဝါသုံးစွဲမှုရှိခြင်း။
|
||||
|
||||
* ပြင်ဆင်သတ်မှတ်နိုင်သော စာဝှက်စနစ် ပရိုတိုကော
|
||||
* အချို့သော DPI စနစ်များဖြင့် ထောက်လှန်းသိရှိနိုင်သည်။
|
||||
* TCP ကွန်ရက် ပရိုတိုကောပေါ်တွင် အလုပ်လုပ်သည်။.</translation>
|
||||
|
@ -2944,8 +2940,8 @@ For more detailed information, you can
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../protocols/protocols_defs.cpp" line="77"/>
|
||||
<source>Sftp service</source>
|
||||
<translation>Sftp ဝန်ဆောင်မှု</translation>
|
||||
<source>SFTP service</source>
|
||||
<translation>SFTP ဝန်ဆောင်မှု</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../3rd/qtkeychain/qtkeychain/libsecret.cpp" line="119"/>
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -86,8 +86,8 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/controllers/connectionController.cpp" line="161"/>
|
||||
<source>Settings updated successfully, Reconnnection...</source>
|
||||
<translation>Налаштування оновлено, Підключення...</translation>
|
||||
<source>Settings updated successfully, reconnnection...</source>
|
||||
<translation>Налаштування оновлено, підключення...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/controllers/connectionController.cpp" line="164"/>
|
||||
|
@ -771,8 +771,8 @@ Already installed containers were found on the server. All installed containers
|
|||
<name>PageProtocolShadowSocksSettings</name>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolShadowSocksSettings.qml" line="80"/>
|
||||
<source>ShadowSocks settings</source>
|
||||
<translation>Налаштування ShadowSocks</translation>
|
||||
<source>Shadowsocks settings</source>
|
||||
<translation>Налаштування Shadowsocks</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolShadowSocksSettings.qml" line="91"/>
|
||||
|
@ -1138,8 +1138,8 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="115"/>
|
||||
<source>Github</source>
|
||||
<translation>Github</translation>
|
||||
<source>GitHub</source>
|
||||
<translation>GitHub</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="119"/>
|
||||
|
@ -1413,7 +1413,7 @@ Already installed containers were found on the server. All installed containers
|
|||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsConnection.qml" line="50"/>
|
||||
<source>Use AmneziaDNS</source>
|
||||
<translation>Використовувати Amnezia DNS</translation>
|
||||
<translation>Використовувати AmneziaDNS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsConnection.qml" line="51"/>
|
||||
|
@ -1459,7 +1459,7 @@ Already installed containers were found on the server. All installed containers
|
|||
<name>PageSettingsDns</name>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsDns.qml" line="39"/>
|
||||
<source>Default server does not support custom dns</source>
|
||||
<source>Default server does not support custom DNS</source>
|
||||
<translation type="unfinished">Сервер за замовчуванням не підтримує користувацький DNS</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1536,7 +1536,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsLogging.qml" line="60"/>
|
||||
<source>Enabling this function will save application's logs automatically, By default, logging functionality is disabled. Enable log saving in case of application malfunction.</source>
|
||||
<source>Enabling this function will save application's logs automatically. By default, logging functionality is disabled. Enable log saving in case of application malfunction.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1975,7 +1975,7 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSetupWizardConfigSource.qml" line="89"/>
|
||||
<source>QR-code</source>
|
||||
<source>QR code</source>
|
||||
<translation>QR-код</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2368,8 +2368,8 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="81"/>
|
||||
<source>Save ShadowSocks config</source>
|
||||
<translation type="unfinished">Зберегти конфігурацію ShadowSocks</translation>
|
||||
<source>Save Shadowsocks config</source>
|
||||
<translation type="unfinished">Зберегти конфігурацію Shadowsocks</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="88"/>
|
||||
|
@ -2393,8 +2393,8 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="140"/>
|
||||
<source>ShadowSocks native format</source>
|
||||
<translation type="unfinished">ShadowSocks нативний формат</translation>
|
||||
<source>Shadowsocks native format</source>
|
||||
<translation type="unfinished">Shadowsocks нативний формат</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="145"/>
|
||||
|
@ -2820,8 +2820,8 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="12"/>
|
||||
<source>Unknown Error</source>
|
||||
<translation>Unknown Error</translation>
|
||||
<source>Unknown error</source>
|
||||
<translation>Unknown error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="13"/>
|
||||
|
@ -2865,18 +2865,18 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="25"/>
|
||||
<source>Ssh request was denied</source>
|
||||
<translation>Ssh request was denied</translation>
|
||||
<source>SSH request was denied</source>
|
||||
<translation>SSH request was denied</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="26"/>
|
||||
<source>Ssh request was interrupted</source>
|
||||
<translation>Ssh request was interrupted</translation>
|
||||
<source>SSH request was interrupted</source>
|
||||
<translation>SSH request was interrupted</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="27"/>
|
||||
<source>Ssh internal error</source>
|
||||
<translation>Ssh internal error</translation>
|
||||
<source>SSH internal error</source>
|
||||
<translation>SSH internal error</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="28"/>
|
||||
|
@ -2895,7 +2895,7 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="33"/>
|
||||
<source>Scp error: Generic failure</source>
|
||||
<source>SCP error: Generic failure</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2991,8 +2991,8 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="41"/>
|
||||
<source>ShadowSocks (ss-local) executable missing</source>
|
||||
<translation>ShadowSocks (ss-local) executable missing</translation>
|
||||
<source>Shadowsocks (ss-local) executable missing</source>
|
||||
<translation>Shadowsocks (ss-local) executable missing</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="42"/>
|
||||
|
@ -3071,13 +3071,13 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="107"/>
|
||||
<source>ShadowSocks - masks VPN traffic, making it similar to normal web traffic, but it may be recognized by analysis systems in some highly censored regions.</source>
|
||||
<translation type="unfinished">ShadowSocks - маскує VPN-трафік під звичайний веб-трафік, але розпізнається системами аналізу трафіка в деяких регіонах з високим рівнем цензури.</translation>
|
||||
<source>Shadowsocks - masks VPN traffic, making it similar to normal web traffic, but it may be recognized by analysis systems in some highly censored regions.</source>
|
||||
<translation type="unfinished">Shadowsocks - маскує VPN-трафік під звичайний веб-трафік, але розпізнається системами аналізу трафіка в деяких регіонах з високим рівнем цензури.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="110"/>
|
||||
<source>OpenVPN over Cloak - OpenVPN with VPN masquerading as web traffic and protection against active-probing detection. Ideal for bypassing blocking in regions with the highest levels of censorship.</source>
|
||||
<translation type="unfinished">OpenVPN over Cloak - OpenVPN з маскуванням VPN під HTTPS трафік і захистом від active-probbing. Підходить для регіонів з самим високим рівнем цензури.</translation>
|
||||
<translation type="unfinished">OpenVPN over Cloak - OpenVPN з маскуванням VPN під HTTPS трафік і захистом від active-probing. Підходить для регіонів з самим високим рівнем цензури.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="131"/>
|
||||
|
@ -3142,7 +3142,7 @@ While it offers a blend of security, stability, and speed, it's essential t
|
|||
Він може швидко переключись між мережами та пристроями, що робить його осболиво адаптованим під динамічні мережеві середовища.
|
||||
Потрібно зазначити, що незважаючи на стабільність та швидкість, IKEv2 легко розпізнається та вразливий до блокувань.
|
||||
|
||||
* IKEv2 в AmneziaVPN тільки для Windows.
|
||||
* IKEv2/IPsec в AmneziaVPN тільки для Windows.
|
||||
* Низьке енергоспоживання, на мобільних пристроях
|
||||
* Мінімальна конфігурація
|
||||
* Розпізнається системами DPI-анализу
|
||||
|
@ -3155,8 +3155,8 @@ While it offers a blend of security, stability, and speed, it's essential t
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="98"/>
|
||||
<source>Sftp file sharing service</source>
|
||||
<translation>Сервіс обміну файлами Sftp</translation>
|
||||
<source>SFTP file sharing service</source>
|
||||
<translation>Сервіс обміну файлами SFTP</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="96"/>
|
||||
|
@ -3166,8 +3166,8 @@ While it offers a blend of security, stability, and speed, it's essential t
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="97"/>
|
||||
<source>Amnezia DNS</source>
|
||||
<translation>Amnezia DNS</translation>
|
||||
<source>AmneziaDNS</source>
|
||||
<translation>AmneziaDNS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="104"/>
|
||||
|
@ -3191,8 +3191,8 @@ While it offers a blend of security, stability, and speed, it's essential t
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="124"/>
|
||||
<source>IKEv2 - Modern stable protocol, a bit faster than others, restores connection after signal loss.</source>
|
||||
<translation>IKEv2 сучасний стабільний протокол, трішки швидше за інших відновлює підключення.</translation>
|
||||
<source>IKEv2/IPsec - Modern stable protocol, a bit faster than others, restores connection after signal loss.</source>
|
||||
<translation>IKEv2/IPsec сучасний стабільний протокол, трішки швидше за інших відновлює підключення.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="127"/>
|
||||
|
@ -3202,7 +3202,7 @@ While it offers a blend of security, stability, and speed, it's essential t
|
|||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="129"/>
|
||||
<source>Replace the current DNS server with your own. This will increase your privacy level.</source>
|
||||
<translation>Замініть DNS-сервер на Amnezia DNS. Це підвищить вашу рівень захищеності в інтернеті.</translation>
|
||||
<translation>Замініть DNS-сервер на AmneziaDNS. Це підвищить вашу рівень захищеності в інтернеті.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="138"/>
|
||||
|
@ -3228,8 +3228,6 @@ It employs its unique security protocol, leveraging the strength of SSL/TLS for
|
|||
<source>Shadowsocks, inspired by the SOCKS5 protocol, safeguards the connection using the AEAD cipher. Although Shadowsocks is designed to be discreet and challenging to identify, it isn't identical to a standard HTTPS connection.However, certain traffic analysis systems might still detect a Shadowsocks connection. Due to limited support in Amnezia, it's recommended to use AmneziaWG protocol.
|
||||
|
||||
* Available in the AmneziaVPN only on desktop platforms
|
||||
* Normal power consumption on mobile devices
|
||||
|
||||
* Configurable encryption protocol
|
||||
* Detectable by some DPI systems
|
||||
* Works over TCP network protocol.</source>
|
||||
|
@ -3340,7 +3338,7 @@ This means that AmneziaWG keeps the fast performance of the original while addin
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../protocols/protocols_defs.cpp" line="78"/>
|
||||
<source>Sftp service</source>
|
||||
<source>SFTP service</source>
|
||||
<translation>Сервіс SFTP</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
|
|
@ -85,7 +85,7 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/controllers/connectionController.cpp" line="162"/>
|
||||
<source>Settings updated successfully, Reconnnection...</source>
|
||||
<source>Settings updated successfully, reconnnection...</source>
|
||||
<translation>ترتیب ک ھوگی،دوبارہ جوڑنےکی کوشش...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -711,7 +711,7 @@ Already installed containers were found on the server. All installed containers
|
|||
<name>PageProtocolShadowSocksSettings</name>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolShadowSocksSettings.qml" line="95"/>
|
||||
<source>ShadowSocks settings</source>
|
||||
<source>Shadowsocks settings</source>
|
||||
<translation>شیڈو ساکس ترتیبات</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1057,13 +1057,13 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="140"/>
|
||||
<source>Github</source>
|
||||
<source>GitHub</source>
|
||||
<translation>گِٹ ہَب</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="147"/>
|
||||
<source>https://github.com/amnezia-vpn/amnezia-client</source>
|
||||
<translation></translation>
|
||||
<translation>https://github.com/amnezia-vpn/amnezia-client</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="158"/>
|
||||
|
@ -1373,7 +1373,7 @@ Already installed containers were found on the server. All installed containers
|
|||
<name>PageSettingsDns</name>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsDns.qml" line="46"/>
|
||||
<source>Default server does not support custom dns</source>
|
||||
<source>Default server does not support custom DNS</source>
|
||||
<translation>افتراضی سرور کا مخصوص DNS کو سپورٹ نہیں کرتا ہے</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1446,7 +1446,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsLogging.qml" line="69"/>
|
||||
<source>Enabling this function will save application's logs automatically, By default, logging functionality is disabled. Enable log saving in case of application malfunction.</source>
|
||||
<source>Enabling this function will save application's logs automatically. By default, logging functionality is disabled. Enable log saving in case of application malfunction.</source>
|
||||
<translation>اس فعل کو فعال کرنے سے، ایپلیکیشن کے لاگ خود بخود محفوظ ہوجائیں گے۔ پہلے سے، لاگنگ کی فعالیت غیر فعال ہوتی ہے۔ اگر ایپلیکیشن میں کوئی خرابی ہو، تو لاگ کو بچانا فعال کریں.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1855,7 +1855,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSetupWizardConfigSource.qml" line="102"/>
|
||||
<source>QR-code</source>
|
||||
<source>QR code</source>
|
||||
<translation>QR کوڈ</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2151,7 +2151,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="81"/>
|
||||
<source>Save ShadowSocks config</source>
|
||||
<source>Save Shadowsocks config</source>
|
||||
<translation>شیڈو ساکس کی ترتیبات کو محفوظ کریں</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2186,7 +2186,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="140"/>
|
||||
<source>ShadowSocks native format</source>
|
||||
<source>Shadowsocks native format</source>
|
||||
<translation>شیڈو ساکس کا اصل فارمیٹ</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2631,7 +2631,7 @@ Already installed containers were found on the server. All installed containers
|
|||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../protocols/protocols_defs.cpp" line="78"/>
|
||||
<source>Sftp service</source>
|
||||
<source>SFTP service</source>
|
||||
<translation>ایس ایف ٹی پی سروس</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2641,7 +2641,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="12"/>
|
||||
<source>Unknown Error</source>
|
||||
<source>Unknown error</source>
|
||||
<translation>نامعلوم خامی</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2681,18 +2681,18 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="25"/>
|
||||
<source>Ssh request was denied</source>
|
||||
<translation>Ssh درخواست مسترد کر دی گئی</translation>
|
||||
<source>SSH request was denied</source>
|
||||
<translation>SSH درخواست مسترد کر دی گئی</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="26"/>
|
||||
<source>Ssh request was interrupted</source>
|
||||
<translation>Ssh درخواست میں خلل پڑ</translation>
|
||||
<source>SSH request was interrupted</source>
|
||||
<translation>SSH درخواست میں خلل پڑ</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="27"/>
|
||||
<source>Ssh internal error</source>
|
||||
<translation>Ssh اندرونی خرابی</translation>
|
||||
<source>SSH internal error</source>
|
||||
<translation>SSH اندرونی خرابی</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="28"/>
|
||||
|
@ -2741,7 +2741,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="33"/>
|
||||
<source>Scp error: Generic failure</source>
|
||||
<source>SCP error: Generic failure</source>
|
||||
<translation>ایس سی پی کی خرابی: عام ناکامی</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2756,7 +2756,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="41"/>
|
||||
<source>ShadowSocks (ss-local) executable missing</source>
|
||||
<source>Shadowsocks (ss-local) executable missing</source>
|
||||
<translation>شیڈو ساکس (ss-local) قابل عمل غائب</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2842,13 +2842,13 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="97"/>
|
||||
<source>Amnezia DNS</source>
|
||||
<source>AmneziaDNS</source>
|
||||
<translation>ایمنیزیا ڈی این ایس</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="98"/>
|
||||
<source>Sftp file sharing service</source>
|
||||
<translation>Sftp فائل شیئرنگ سروس</translation>
|
||||
<source>SFTP file sharing service</source>
|
||||
<translation>SFTP فائل شیئرنگ سروس</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="104"/>
|
||||
|
@ -2857,7 +2857,7 @@ Already installed containers were found on the server. All installed containers
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="107"/>
|
||||
<source>ShadowSocks - masks VPN traffic, making it similar to normal web traffic, but it may be recognized by analysis systems in some highly censored regions.</source>
|
||||
<source>Shadowsocks - masks VPN traffic, making it similar to normal web traffic, but it may be recognized by analysis systems in some highly censored regions.</source>
|
||||
<translation>شیڈو ساکس - VPN ٹریفک کو ماسک کرتا ہے، جو اسے عام ویب ٹریفک جیسا بناتا ہے، لیکن اسے کچھ انتہائی سنسر والے علاقوں میں تجزیہ کے نظام کے ذریعے پہچانا جا سکتا ہے.</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2947,8 +2947,8 @@ For more detailed information, you can
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="124"/>
|
||||
<source>IKEv2 - Modern stable protocol, a bit faster than others, restores connection after signal loss.</source>
|
||||
<translation>IKEv2 - جدید مستحکم پروٹوکول، دوسروں کے مقابلے میں تھوڑا تیز، سگنل ضائع ہونے کے بعد کنکشن بحال کرتا ہے۔</translation>
|
||||
<source>IKEv2/IPsec - Modern stable protocol, a bit faster than others, restores connection after signal loss.</source>
|
||||
<translation>IKEv2/IPsec - جدید مستحکم پروٹوکول، دوسروں کے مقابلے میں تھوڑا تیز، سگنل ضائع ہونے کے بعد کنکشن بحال کرتا ہے۔</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="127"/>
|
||||
|
@ -2977,12 +2977,10 @@ It employs its unique security protocol, leveraging the strength of SSL/TLS for
|
|||
<source>Shadowsocks, inspired by the SOCKS5 protocol, safeguards the connection using the AEAD cipher. Although Shadowsocks is designed to be discreet and challenging to identify, it isn't identical to a standard HTTPS connection.However, certain traffic analysis systems might still detect a Shadowsocks connection. Due to limited support in Amnezia, it's recommended to use AmneziaWG protocol.
|
||||
|
||||
* Available in the AmneziaVPN only on desktop platforms
|
||||
* Normal power consumption on mobile devices
|
||||
|
||||
* Configurable encryption protocol
|
||||
* Detectable by some DPI systems
|
||||
* Works over TCP network protocol.</source>
|
||||
<translation>شیڈو ساکس، SOCKS5 پروٹوکول سے متاثر، AEAD سائفر کا استعمال کرتے ہوئے کنکشن کی حفاظت کرتا ہے۔ اگرچہ شیڈو ساکس کو سمجھدار اور شناخت کرنے کے لیے چیلنج کرنے کے لیے ڈیزائن کیا گیا ہے، لیکن یہ معیاری HTTPS کنکشن سے مماثل نہیں ہے۔ تاہم، کچھ ٹریفک تجزیہ نظام اب بھی شیڈو ساکس کنکشن کا پتہ لگا سکتے ہیں۔ Amnezia میں محدود تعاون کی وجہ سے، AmneziaWG پروٹوکول استعمال کرنے کی سفارش کی جاتی ہے۔ * صرف ڈیسک ٹاپ پلیٹ فارمز پر AmneziaVPN میں دستیاب ہے * موبائل آلات پر بجلی کی عام کھپت * قابل ترتیب انکرپشن پروٹوکول * کچھ DPI سسٹمز کے ذریعے قابل شناخت * TCP نیٹ ورک پروٹوکول پر کام کرتا ہے.</translation>
|
||||
<translation>شیڈو ساکس، SOCKS5 پروٹوکول سے متاثر، AEAD سائفر کا استعمال کرتے ہوئے کنکشن کی حفاظت کرتا ہے۔ اگرچہ شیڈو ساکس کو سمجھدار اور شناخت کرنے کے لیے چیلنج کرنے کے لیے ڈیزائن کیا گیا ہے، لیکن یہ معیاری HTTPS کنکشن سے مماثل نہیں ہے۔ تاہم، کچھ ٹریفک تجزیہ نظام اب بھی شیڈو ساکس کنکشن کا پتہ لگا سکتے ہیں۔ Amnezia میں محدود تعاون کی وجہ سے، AmneziaWG پروٹوکول استعمال کرنے کی سفارش کی جاتی ہے۔ * صرف ڈیسک ٹاپ پلیٹ فارمز پر AmneziaVPN میں دستیاب ہے * قابل ترتیب انکرپشن پروٹوکول * کچھ DPI سسٹمز کے ذریعے قابل شناخت * TCP نیٹ ورک پروٹوکول پر کام کرتا ہے.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="196"/>
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/controllers/connectionController.cpp" line="115"/>
|
||||
<source>Settings updated successfully, Reconnnection...</source>
|
||||
<source>Settings updated successfully, reconnnection...</source>
|
||||
<translation>配置已更新, 重连中...</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -698,8 +698,8 @@ Already installed containers were found on the server. All installed containers
|
|||
<name>PageProtocolShadowSocksSettings</name>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolShadowSocksSettings.qml" line="80"/>
|
||||
<source>ShadowSocks settings</source>
|
||||
<translation>ShadowSocks 配置</translation>
|
||||
<source>Shadowsocks settings</source>
|
||||
<translation>Shadowsocks 配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageProtocolShadowSocksSettings.qml" line="89"/>
|
||||
|
@ -1039,13 +1039,13 @@ And if you don't like the app, all the more support it - the donation will
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="115"/>
|
||||
<source>Github</source>
|
||||
<translation></translation>
|
||||
<source>GitHub</source>
|
||||
<translation>GitHub</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="119"/>
|
||||
<source>https://github.com/amnezia-vpn/amnezia-client</source>
|
||||
<translation></translation>
|
||||
<translation>https://github.com/amnezia-vpn/amnezia-client</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsAbout.qml" line="128"/>
|
||||
|
@ -1323,8 +1323,8 @@ And if you don't like the app, all the more support it - the donation will
|
|||
<name>PageSettingsDns</name>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsDns.qml" line="39"/>
|
||||
<source>Default server does not support custom dns</source>
|
||||
<translation>默认服务器不支持自定义 dns</translation>
|
||||
<source>Default server does not support custom DNS</source>
|
||||
<translation>默认服务器不支持自定义 DNS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsDns.qml" line="57"/>
|
||||
|
@ -1396,7 +1396,7 @@ And if you don't like the app, all the more support it - the donation will
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSettingsLogging.qml" line="64"/>
|
||||
<source>Enabling this function will save application's logs automatically, By default, logging functionality is disabled. Enable log saving in case of application malfunction.</source>
|
||||
<source>Enabling this function will save application's logs automatically. By default, logging functionality is disabled. Enable log saving in case of application malfunction.</source>
|
||||
<translation>默认情况下,日志功能是禁用的。如果应用程序出现故障,则启用日志保存功能。</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -1834,7 +1834,7 @@ It's okay as long as it's from someone you trust.</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageSetupWizardConfigSource.qml" line="89"/>
|
||||
<source>QR-code</source>
|
||||
<source>QR code</source>
|
||||
<translation>二维码</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2167,8 +2167,8 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="79"/>
|
||||
<source>Save ShadowSocks config</source>
|
||||
<translation>保存 ShadowSocks 配置</translation>
|
||||
<source>Save Shadowsocks config</source>
|
||||
<translation>保存 Shadowsocks 配置</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="86"/>
|
||||
|
@ -2197,8 +2197,8 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="131"/>
|
||||
<source>ShadowSocks native format</source>
|
||||
<translation>ShadowSocks原生格式</translation>
|
||||
<source>Shadowsocks native format</source>
|
||||
<translation>Shadowsocks原生格式</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../ui/qml/Pages2/PageShare.qml" line="136"/>
|
||||
|
@ -2681,8 +2681,8 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
<name>QObject</name>
|
||||
<message>
|
||||
<location filename="../protocols/protocols_defs.cpp" line="77"/>
|
||||
<source>Sftp service</source>
|
||||
<translation>Sftp 服务</translation>
|
||||
<source>SFTP service</source>
|
||||
<translation>SFTP 服务</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="11"/>
|
||||
|
@ -2691,7 +2691,7 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="12"/>
|
||||
<source>Unknown Error</source>
|
||||
<source>Unknown error</source>
|
||||
<translation>未知错误</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2731,18 +2731,18 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="24"/>
|
||||
<source>Ssh request was denied</source>
|
||||
<translation>ssh请求被拒绝</translation>
|
||||
<source>SSH request was denied</source>
|
||||
<translation>SSH请求被拒绝</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="25"/>
|
||||
<source>Ssh request was interrupted</source>
|
||||
<translation>ssh请求中断</translation>
|
||||
<source>SSH request was interrupted</source>
|
||||
<translation>SSH请求中断</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="26"/>
|
||||
<source>Ssh internal error</source>
|
||||
<translation>ssh内部错误</translation>
|
||||
<source>SSH internal error</source>
|
||||
<translation>SSH内部错误</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="27"/>
|
||||
|
@ -2761,7 +2761,7 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="32"/>
|
||||
<source>Scp error: Generic failure</source>
|
||||
<source>SCP error: Generic failure</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2887,8 +2887,8 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="40"/>
|
||||
<source>ShadowSocks (ss-local) executable missing</source>
|
||||
<translation>ShadowSocks (ss-local) 执行文件丢失</translation>
|
||||
<source>Shadowsocks (ss-local) executable missing</source>
|
||||
<translation>Shadowsocks (ss-local) 执行文件丢失</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../core/errorstrings.cpp" line="41"/>
|
||||
|
@ -2947,12 +2947,12 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="91"/>
|
||||
<source>Amnezia DNS</source>
|
||||
<translation></translation>
|
||||
<source>AmneziaDNS</source>
|
||||
<translation>AmneziaDNS</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="92"/>
|
||||
<source>Sftp file sharing service</source>
|
||||
<source>SFTP file sharing service</source>
|
||||
<translation>SFTP文件共享服务</translation>
|
||||
</message>
|
||||
<message>
|
||||
|
@ -2962,8 +2962,8 @@ and will not be shared or disclosed to the Amnezia or any third parties</source>
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="101"/>
|
||||
<source>ShadowSocks - masks VPN traffic, making it similar to normal web traffic, but it may be recognized by analysis systems in some highly censored regions.</source>
|
||||
<translation>ShadowSocks - 掩盖VPN流量,使其类似于正常的网络流量,但在一些高度审查的地区可能会被分析系统识别.</translation>
|
||||
<source>Shadowsocks - masks VPN traffic, making it similar to normal web traffic, but it may be recognized by analysis systems in some highly censored regions.</source>
|
||||
<translation>Shadowsocks - 掩盖VPN流量,使其类似于正常的网络流量,但在一些高度审查的地区可能会被分析系统识别.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="217"/>
|
||||
|
@ -3037,8 +3037,8 @@ WireGuard非常容易被阻挡,因为其独特的数据包签名。与一些
|
|||
通过UDP网络协议运行。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>ShadowSocks - masks VPN traffic, making it similar to normal web traffic, but is recognised by analysis systems in some highly censored regions.</source>
|
||||
<translation type="vanished">ShadowSocks - 混淆 VPN 流量,使其与正常的 Web 流量相似,但在一些审查力度高的地区可以被分析系统识别。</translation>
|
||||
<source>Shadowsocks - masks VPN traffic, making it similar to normal web traffic, but is recognised by analysis systems in some highly censored regions.</source>
|
||||
<translation type="vanished">Shadowsocks - 混淆 VPN 流量,使其与正常的 Web 流量相似,但在一些审查力度高的地区可以被分析系统识别。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="104"/>
|
||||
|
@ -3057,8 +3057,8 @@ WireGuard非常容易被阻挡,因为其独特的数据包签名。与一些
|
|||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="115"/>
|
||||
<source>IKEv2 - Modern stable protocol, a bit faster than others, restores connection after signal loss.</source>
|
||||
<translation>IKEv2 - 现代稳定协议,相比其他协议较快一些,在信号丢失后恢复连接。</translation>
|
||||
<source>IKEv2/IPsec - Modern stable protocol, a bit faster than others, restores connection after signal loss.</source>
|
||||
<translation>IKEv2/IPsec - 现代稳定协议,相比其他协议较快一些,在信号丢失后恢复连接。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<location filename="../containers/containers_defs.cpp" line="118"/>
|
||||
|
@ -3098,16 +3098,12 @@ It employs its unique security protocol, leveraging the strength of SSL/TLS for
|
|||
<source>Shadowsocks, inspired by the SOCKS5 protocol, safeguards the connection using the AEAD cipher. Although Shadowsocks is designed to be discreet and challenging to identify, it isn't identical to a standard HTTPS connection.However, certain traffic analysis systems might still detect a Shadowsocks connection. Due to limited support in Amnezia, it's recommended to use AmneziaWG protocol.
|
||||
|
||||
* Available in the AmneziaVPN only on desktop platforms
|
||||
* Normal power consumption on mobile devices
|
||||
|
||||
* Configurable encryption protocol
|
||||
* Detectable by some DPI systems
|
||||
* Works over TCP network protocol.</source>
|
||||
<translation>Shadowsocks 受到 SOCKS5 协议的启发,使用 AEAD 密码保护连接。尽管 Shadowsocks 设计得谨慎且难以识别,但它与标准 HTTPS 连接并不相同。但是,某些流量分析系统可能仍会检测到 Shadowsocks 连接。由于Amnezia支持有限,建议使用AmneziaWG协议。
|
||||
|
||||
* 仅在桌面平台上的 AmneziaVPN 中可用
|
||||
* 移动设备的正常功耗
|
||||
|
||||
* 可配置的加密协议
|
||||
* 可以被某些 DPI 系统检测到
|
||||
* 通过 TCP 网络协议工作。</translation>
|
||||
|
|
|
@ -123,7 +123,7 @@ void ConnectionController::onConnectionStateChanged(Vpn::ConnectionState state)
|
|||
void ConnectionController::onCurrentContainerUpdated()
|
||||
{
|
||||
if (m_isConnected || m_isConnectionInProgress) {
|
||||
emit reconnectWithUpdatedContainer(tr("Settings updated successfully, Reconnnection..."));
|
||||
emit reconnectWithUpdatedContainer(tr("Settings updated successfully, reconnnection..."));
|
||||
openConnection();
|
||||
} else {
|
||||
emit reconnectWithUpdatedContainer(tr("Settings updated successfully"));
|
||||
|
|
|
@ -92,7 +92,7 @@ PageType {
|
|||
HeaderType {
|
||||
Layout.fillWidth: true
|
||||
|
||||
headerText: qsTr("ShadowSocks settings")
|
||||
headerText: qsTr("Shadowsocks settings")
|
||||
}
|
||||
|
||||
TextFieldWithHeaderType {
|
||||
|
|
|
@ -137,7 +137,7 @@ PageType {
|
|||
id: githubButton
|
||||
Layout.fillWidth: true
|
||||
|
||||
text: qsTr("Github")
|
||||
text: qsTr("GitHub")
|
||||
leftImageSource: "qrc:/images/controls/github.svg"
|
||||
|
||||
KeyNavigation.tab: websiteButton
|
||||
|
|
|
@ -43,7 +43,7 @@ PageType {
|
|||
|
||||
Component.onCompleted: {
|
||||
if (isServerFromApi) {
|
||||
PageController.showNotificationMessage(qsTr("Default server does not support custom dns"))
|
||||
PageController.showNotificationMessage(qsTr("Default server does not support custom DNS"))
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -66,7 +66,7 @@ disabled after 14 days, and all log files will be deleted.")
|
|||
Layout.fillWidth: true
|
||||
|
||||
headerText: qsTr("Logging")
|
||||
descriptionText: qsTr("Enabling this function will save application's logs automatically, " +
|
||||
descriptionText: qsTr("Enabling this function will save application's logs automatically. " +
|
||||
"By default, logging functionality is disabled. Enable log saving in case of application malfunction.")
|
||||
}
|
||||
|
||||
|
|
|
@ -99,7 +99,7 @@ PageType {
|
|||
Layout.fillWidth: true
|
||||
visible: SettingsController.isCameraPresent()
|
||||
|
||||
text: qsTr("QR-code")
|
||||
text: qsTr("QR code")
|
||||
rightImageSource: "qrc:/images/controls/chevron-right.svg"
|
||||
leftImageSource: "qrc:/images/controls/qr-code.svg"
|
||||
|
||||
|
|
|
@ -78,7 +78,7 @@ PageType {
|
|||
}
|
||||
case PageShare.ConfigType.ShadowSocks: {
|
||||
ExportController.generateShadowSocksConfig()
|
||||
shareConnectionDrawer.configCaption = qsTr("Save ShadowSocks config")
|
||||
shareConnectionDrawer.configCaption = qsTr("Save Shadowsocks config")
|
||||
shareConnectionDrawer.configExtension = ".json"
|
||||
shareConnectionDrawer.configFileName = "amnezia_for_shadowsocks"
|
||||
break
|
||||
|
@ -138,7 +138,7 @@ PageType {
|
|||
}
|
||||
QtObject {
|
||||
id: shadowSocksConnectionFormat
|
||||
property string name: qsTr("ShadowSocks native format")
|
||||
property string name: qsTr("Shadowsocks native format")
|
||||
property var type: PageShare.ConfigType.ShadowSocks
|
||||
}
|
||||
QtObject {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue