Skip to content
Snippets Groups Projects
Commit 794de624 authored by Thomas Hartmann's avatar Thomas Hartmann
Browse files

QmlDesigner.propertyEditor: adding missing qsTr()

parent 3f31c5ba
No related merge requests found
......@@ -3,7 +3,7 @@ import Bauhaus 1.0
GroupBox {
finished: finishedNotify;
caption: "Transformation"
caption: qsTr("Transformation")
maximumHeight: 200;
id: transformation;
......@@ -12,7 +12,7 @@ GroupBox {
layout: HorizontalLayout {
Label {
text: "Origin";
text: qsTr("Origin")
}
ComboBox {
minimumWidth: 20
......@@ -35,7 +35,7 @@ GroupBox {
layout: HorizontalLayout {
Label {
text: "Scale"
text: qsTr("Scale")
}
DoubleSpinBox {
......@@ -67,7 +67,7 @@ GroupBox {
}
IntEditor {
backendValue: backendValues.rotation
caption: "Rotation"
caption: qsTr("Rotation")
baseStateFlag: isBaseState;
step: 10;
minimumValue: 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment