1
0
mirror of https://github.com/jaredtao/TaoQuick.git synced 2025-01-19 20:22:56 +08:00

update trans

This commit is contained in:
jared 2020-07-11 00:37:07 +08:00
parent c6a981dceb
commit dee3147509
4 changed files with 45 additions and 8 deletions

View File

@ -50,7 +50,7 @@ Rectangle {
ToolTip {
id: tip
delay: 800
text: String("Component Name: %1, Count: %2").arg(name).arg(count)
text: trans.trans(String("Component Name: %1, Count: %2")).arg(trans.trans(name)).arg(count) + trans.transString
visible: area.containsMouse
}
MouseArea {

View File

@ -13,7 +13,7 @@ Background {
top: parent.top
topMargin: 60
}
text: "Component List"
text: trans.trans("Component List") + trans.transString
}
GridView {
id: gridView
@ -30,7 +30,7 @@ Background {
height: 100
CompCard {
anchors.centerIn: parent
name: modelData.name
name: trans.trans(modelData.name) + trans.transString
count: modelData.count
icon: modelData.icon
onClicked: {

View File

@ -23,7 +23,7 @@ const LONG border_width = 6;
TaoView::TaoView(QWindow* parent)
: QQuickView(parent)
{
setFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowSystemMenuHint | Qt::WindowMinMaxButtonsHint);
setFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowMinMaxButtonsHint);
setResizeMode(SizeRootObjectToView);
setColor(QColor(Qt::transparent));
resize(1440, 900);

View File

@ -181,10 +181,7 @@
"key": "Menu",
"value": "菜单"
},
{
"key": "Green",
"value": " 清爽绿"
},
{
"key": "QRcode",
"value": "二维码"
@ -213,6 +210,10 @@
"key": "Cool",
"value": "酷炫组件"
},
{
"key": "Green",
"value": " 清爽绿"
},
{
"key": "Pink",
"value": "淑女粉"
@ -388,6 +389,42 @@
{
"key": "FadeInOut",
"value": "淡入淡出"
},
{
"key": "Component List",
"value":"组件列表"
},
{
"key": "Animation",
"value":"动画"
},
{
"key": "BaseComponent",
"value":"基础组件"
},
{
"key": "Buttons",
"value":"按钮"
},
{
"key": "Effect",
"value":"效果"
},
{
"key": "PageSwitch",
"value":"页面切换"
},
{
"key": "ShaderEffect",
"value":"着色器特效"
},
{
"key": "Shape",
"value":"图元"
},
{
"key": "Component Name: %1, Count: %2",
"value":"组件名称: %1, 数量: %2"
}
]