diff --git a/example/example_en.ts b/example/example_en.ts
index 3dc816f4..dd51edfa 100644
--- a/example/example_en.ts
+++ b/example/example_en.ts
@@ -396,7 +396,6 @@
Presents information from different sources in a tabbed view.
- Presents information from different sources in atabbed view.
@@ -529,7 +528,6 @@
Scatter Chart
- Lang Scatter Chart
@@ -613,7 +611,6 @@
Please enter the account
- Please enter the account number
@@ -1339,7 +1336,6 @@ Updated content:
Green
- Greeb
@@ -1497,6 +1493,12 @@ Updated content:
Click the OK Button
+
+
+
+ Show Triple Button Dialog
+
+
@@ -1624,7 +1626,7 @@ My only desire is to be permitted to drive out the traitors and restore the Han.
- FluentUI Initializr is a FluentUI tool that helps you create and customize Fluent UI projects with various options.
+ FluentUI Initializr is a Tool that helps you create and customize Fluent UI projects with various options.
@@ -1767,7 +1769,9 @@ My only desire is to be permitted to drive out the traitors and restore the Han.
+
+ Search
@@ -1963,7 +1967,6 @@ My only desire is to be permitted to drive out the traitors and restore the Han.
Pie Chart
- Doughnut and Pie Chart
@@ -2030,7 +2033,6 @@ My only desire is to be permitted to drive out the traitors and restore the Han.
Polar Area Chart
- PolarArea Chart
diff --git a/example/example_zh.ts b/example/example_zh.ts
index f5f64a70..3fd4fadb 100644
--- a/example/example_zh.ts
+++ b/example/example_zh.ts
@@ -1497,6 +1497,12 @@ Updated content:
Click the OK Button单击确定按钮
+
+
+
+ Show Triple Button Dialog
+ 显示三个按钮对话框
+
@@ -1558,13 +1564,13 @@ Updated content:
Open a radio box
-
+ 打开一个单选框Open a sliding text box
-
+ 打开一个滑动文本框
@@ -1632,7 +1638,7 @@ My only desire is to be permitted to drive out the traitors and restore the Han.
- FluentUI Initializr is a FluentUI tool that helps you create and customize Fluent UI projects with various options.
+ FluentUI Initializr is a Tool that helps you create and customize Fluent UI projects with various options.FluentUI 脚手架是一个快速创建项目工具,可帮助您创建和自定义具有各种选项的 Fluent UI 项目
@@ -1775,7 +1781,9 @@ My only desire is to be permitted to drive out the traitors and restore the Han.
+
+ Search搜索
@@ -1793,7 +1801,7 @@ My only desire is to be permitted to drive out the traitors and restore the Han.
Check
- Check
+ 复选
@@ -1823,13 +1831,13 @@ My only desire is to be permitted to drive out the traitors and restore the Han.
Show Menu Popup
-
+ 打开菜单弹框MenuBar
-
+ 菜单栏
diff --git a/example/qml-Qt6/page/T_Dialog.qml b/example/qml-Qt6/page/T_Dialog.qml
index a8ba2ed0..23bef093 100644
--- a/example/qml-Qt6/page/T_Dialog.qml
+++ b/example/qml-Qt6/page/T_Dialog.qml
@@ -64,7 +64,7 @@ FluScrollablePage{
Layout.topMargin: 20
FluButton{
anchors.verticalCenter: parent.verticalCenter
- text:"Show Triple Button Dialog"
+ text: qsTr("Show Triple Button Dialog")
onClicked: {
triple_btn_dialog.open()
}
diff --git a/example/qml-Qt6/page/T_Home.qml b/example/qml-Qt6/page/T_Home.qml
index 23fa8339..5a850dc4 100644
--- a/example/qml-Qt6/page/T_Home.qml
+++ b/example/qml-Qt6/page/T_Home.qml
@@ -24,7 +24,7 @@ FluScrollablePage{
ListElement{
icon: "qrc:/example/res/image/favicon.ico"
title: qsTr("FluentUI Initalizr")
- desc: qsTr("FluentUI Initializr is a FluentUI tool that helps you create and customize Fluent UI projects with various options.")
+ desc: qsTr("FluentUI Initializr is a Tool that helps you create and customize Fluent UI projects with various options.")
url: "https://github.com/zhuzichu520/FluentUI"
clicked: function(model){
FluApp.navigate("/fluentInitalizr")
diff --git a/example/qml-Qt6/page/T_Menu.qml b/example/qml-Qt6/page/T_Menu.qml
index 5f6e51da..56b5ef09 100644
--- a/example/qml-Qt6/page/T_Menu.qml
+++ b/example/qml-Qt6/page/T_Menu.qml
@@ -27,7 +27,7 @@ FluScrollablePage{
iconSource: FluentIcons.Zoom
iconSpacing: 3
onTriggered: {
- showError("Search")
+ showError(qsTr("Search"))
}
}
Action {
diff --git a/example/qml/page/T_Dialog.qml b/example/qml/page/T_Dialog.qml
index 6df1221b..33ffd56d 100644
--- a/example/qml/page/T_Dialog.qml
+++ b/example/qml/page/T_Dialog.qml
@@ -64,7 +64,7 @@ FluScrollablePage{
Layout.topMargin: 20
FluButton{
anchors.verticalCenter: parent.verticalCenter
- text:"Show Triple Button Dialog"
+ text: qsTr("Show Triple Button Dialog")
onClicked: {
triple_btn_dialog.open()
}
diff --git a/example/qml/page/T_Home.qml b/example/qml/page/T_Home.qml
index 6c7ac4b7..e1195786 100644
--- a/example/qml/page/T_Home.qml
+++ b/example/qml/page/T_Home.qml
@@ -24,7 +24,7 @@ FluScrollablePage{
ListElement{
icon: "qrc:/example/res/image/favicon.ico"
title: qsTr("FluentUI Initalizr")
- desc: qsTr("FluentUI Initializr is a FluentUI tool that helps you create and customize Fluent UI projects with various options.")
+ desc: qsTr("FluentUI Initializr is a Tool that helps you create and customize Fluent UI projects with various options.")
url: "https://github.com/zhuzichu520/FluentUI"
clicked: function(model){
FluApp.navigate("/fluentInitalizr")
diff --git a/example/qml/page/T_Menu.qml b/example/qml/page/T_Menu.qml
index e98dfcfe..b7c3e32a 100644
--- a/example/qml/page/T_Menu.qml
+++ b/example/qml/page/T_Menu.qml
@@ -27,7 +27,7 @@ FluScrollablePage{
iconSource: FluentIcons.Zoom
iconSpacing: 3
onTriggered: {
- showError("Search")
+ showError(qsTr("Search"))
}
}
Action {