forked from qt-creator/qt-creator
QmlDesigner.propertyEditor: adding missing qsTr()
This commit is contained in:
@@ -3,7 +3,7 @@ import Bauhaus 1.0
|
|||||||
|
|
||||||
GroupBox {
|
GroupBox {
|
||||||
finished: finishedNotify;
|
finished: finishedNotify;
|
||||||
caption: "Transformation"
|
caption: qsTr("Transformation")
|
||||||
maximumHeight: 200;
|
maximumHeight: 200;
|
||||||
id: transformation;
|
id: transformation;
|
||||||
|
|
||||||
@@ -12,7 +12,7 @@ GroupBox {
|
|||||||
layout: HorizontalLayout {
|
layout: HorizontalLayout {
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
text: "Origin";
|
text: qsTr("Origin")
|
||||||
}
|
}
|
||||||
ComboBox {
|
ComboBox {
|
||||||
minimumWidth: 20
|
minimumWidth: 20
|
||||||
@@ -35,7 +35,7 @@ GroupBox {
|
|||||||
layout: HorizontalLayout {
|
layout: HorizontalLayout {
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
text: "Scale"
|
text: qsTr("Scale")
|
||||||
}
|
}
|
||||||
|
|
||||||
DoubleSpinBox {
|
DoubleSpinBox {
|
||||||
@@ -67,7 +67,7 @@ GroupBox {
|
|||||||
}
|
}
|
||||||
IntEditor {
|
IntEditor {
|
||||||
backendValue: backendValues.rotation
|
backendValue: backendValues.rotation
|
||||||
caption: "Rotation"
|
caption: qsTr("Rotation")
|
||||||
baseStateFlag: isBaseState;
|
baseStateFlag: isBaseState;
|
||||||
step: 10;
|
step: 10;
|
||||||
minimumValue: 0;
|
minimumValue: 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user