diff --git a/qml/AppItem.qml b/qml/AppItem.qml
index bef288f..a870ca2 100644
--- a/qml/AppItem.qml
+++ b/qml/AppItem.qml
@@ -71,8 +71,9 @@ DockItem {
}
MenuItem {
- text: qsTr("Close All")
visible: windowCount !== 0
+ text: windowCount === 1 ? qsTr("Close window")
+ : qsTr("Close %1 windows").arg(windowCount)
onTriggered: appModel.closeAllByAppId(model.appId)
}
}
diff --git a/translations/zh_CN.ts b/translations/zh_CN.ts
index 1689d0e..636a687 100644
--- a/translations/zh_CN.ts
+++ b/translations/zh_CN.ts
@@ -4,24 +4,29 @@
AppItem
-
+
打开
-
+
取消固定
-
+
固定
-
-
- 关闭所有
+
+
+ 关闭窗口
+
+
+
+
+ 关闭%1个窗口