From c32e6a1f87b5a1bfec0fb8395e8d4a7c7014c183 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann <Thomas.Hartmann@nokia.com> Date: Thu, 29 Apr 2010 08:48:50 +0200 Subject: [PATCH] QmlDesigner.propertyEditor: fix qsTr --- share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml index f6550e98677..32574ec5e2c 100644 --- a/share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml +++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml @@ -18,7 +18,7 @@ QFrame { checkable: true; checked: true; id: standardMode; - toolTip: "special properties"; + toolTip: qsTr(""special properties"); //iconFromFile: "images/rect-icon.png"; text: backendValues === undefined || backendValues.className === undefined || backendValues.className == "empty" ? "empty" : backendValues.className.value onClicked: { @@ -49,7 +49,7 @@ QFrame { QPushButton { id: extendedMode; - toolTip: "advanced properties"; + toolTip: qsTr("advanced properties"); checkable: true; checked: false; text: qsTr("Advanced") -- GitLab