diff --git a/client/translations/amneziavpn_ru.ts b/client/translations/amneziavpn_ru.ts
index 000e0907..e0bab018 100644
--- a/client/translations/amneziavpn_ru.ts
+++ b/client/translations/amneziavpn_ru.ts
@@ -4,7 +4,7 @@
AmneziaApplication
-
+ Split tunneling for WireGuard is not implemented, the option was disabled
@@ -173,7 +173,7 @@ Already installed containers were found on the server. All installed containers
- 1% has been removed from the server '%2'
+ %1 has been removed from the server '%2'
@@ -224,12 +224,12 @@ Already installed containers were found on the server. All installed containers
-
+ AmneziaVPN notification
-
+ Unsecured network detected:
@@ -1588,7 +1588,7 @@ It's okay as long as it's from someone you trust.
PageSetupWizardProtocolSettings
- Installing
+ Installing %1
@@ -2559,27 +2559,32 @@ It's okay as long as it's from someone you trust.
SystemTrayNotificationHandler
-
+
+ Show
-
+
+ Connect
-
+
+ Disconnect
-
+
+ Visit Website
-
+
+ Quit
diff --git a/client/translations/amneziavpn_zh_CN.ts b/client/translations/amneziavpn_zh_CN.ts
index e7171ce2..b89674e5 100644
--- a/client/translations/amneziavpn_zh_CN.ts
+++ b/client/translations/amneziavpn_zh_CN.ts
@@ -4,7 +4,7 @@
AmneziaApplication
-
+ Split tunneling for WireGuard is not implemented, the option was disabled未启用选项,还未实现基于WireGuard协议的VPN分流
@@ -182,8 +182,12 @@ Already installed containers were found on the server. All installed containers
+ %1 has been removed from the server '%2'
+ %1 已从服务器 '%2' 上移除
+
+ 1% has been removed from the server '%2'
- 容器 1% 已从服务器 '%2' 上移除
+ %1 已从服务器 '%2' 上移除Server '
@@ -245,12 +249,12 @@ Already installed containers were found on the server. All installed containers
已从VPN断开
-
+ AmneziaVPN notificationAmneziaVPN 提示
-
+ Unsecured network detected: 发现不安全网络
@@ -1620,13 +1624,13 @@ It's okay as long as it's from someone you trust.
PageSetupWizardProtocolSettings
- Installing
-
+ Installing %1
+ 正在安装 %1More detailed
-
+ 更多细节
@@ -1646,7 +1650,7 @@ It's okay as long as it's from someone you trust.
Install
-
+ 安装
@@ -2318,7 +2322,7 @@ It's okay as long as it's from someone you trust.
Website in Tor network
-
+ 在 Tor 网络中架设网站
@@ -2358,7 +2362,7 @@ It's okay as long as it's from someone you trust.
Deploy a WordPress site on the Tor network in two clicks.
- 只需点两次即可架设 WordPress 网站到 Tor 网络
+ 只需点击两次即可架设 WordPress 网站到 Tor 网络
@@ -2591,27 +2595,32 @@ It's okay as long as it's from someone you trust.
SystemTrayNotificationHandler
-
+
+ Show界面
-
+
+ Connect连接
-
+
+ Disconnect断开
-
+
+ Visit Website官网
-
+
+ Quit退出
diff --git a/client/ui/controllers/installController.cpp b/client/ui/controllers/installController.cpp
index b03a45d8..c25a3129 100644
--- a/client/ui/controllers/installController.cpp
+++ b/client/ui/controllers/installController.cpp
@@ -303,7 +303,7 @@ void InstallController::removeCurrentlyProcessedContainer()
ErrorCode errorCode = m_containersModel->removeCurrentlyProcessedContainer();
if (errorCode == ErrorCode::NoError) {
- emit removeCurrentlyProcessedContainerFinished(tr("1% has been removed from the server '%2'").arg(containerName).arg(serverName));
+ emit removeCurrentlyProcessedContainerFinished(tr("%1 has been removed from the server '%2'").arg(containerName).arg(serverName));
return;
}
emit installationErrorOccurred(errorString(errorCode));
diff --git a/client/ui/qml/Pages2/PageSetupWizardProtocolSettings.qml b/client/ui/qml/Pages2/PageSetupWizardProtocolSettings.qml
index 07eef177..7535464a 100644
--- a/client/ui/qml/Pages2/PageSetupWizardProtocolSettings.qml
+++ b/client/ui/qml/Pages2/PageSetupWizardProtocolSettings.qml
@@ -72,7 +72,7 @@ PageType {
Layout.fillWidth: true
- headerText: qsTr("Installing ") + name
+ headerText: qsTr("Installing %1").arg(name)
descriptionText: description
}