aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml
diff options
context:
space:
mode:
authorThomas Hartmann <Thomas.Hartmann@nokia.com>2010-04-29 08:48:50 +0200
committerThomas Hartmann <Thomas.Hartmann@nokia.com>2010-04-29 08:49:42 +0200
commitc32e6a1f87b5a1bfec0fb8395e8d4a7c7014c183 (patch)
tree9d977fe32439fa0b3f0ea1a63c6e33ce5efdc8df /share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml
parentca14299790646284fbb660b11bb30de503f76a79 (diff)
QmlDesigner.propertyEditor: fix qsTr
Diffstat (limited to 'share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml')
-rw-r--r--share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml
index f6550e9867..32574ec5e2 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")