From 794de624c78ff5849ca74abfc52c1eb996aab25e Mon Sep 17 00:00:00 2001 From: Thomas Hartmann <Thomas.Hartmann@nokia.com> Date: Thu, 25 Mar 2010 16:51:09 +0100 Subject: [PATCH] QmlDesigner.propertyEditor: adding missing qsTr() --- .../qmldesigner/propertyeditor/Qt/Transformation.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/Transformation.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/Transformation.qml index dbaeb5ef769..b9cdefe756c 100644 --- a/share/qtcreator/qmldesigner/propertyeditor/Qt/Transformation.qml +++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/Transformation.qml @@ -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; -- GitLab