diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml index 9704bdc530ebb59da85bf416a62086248f3f8299..29c498bac286868a3bb85c539f3a78913c268cc9 100644 --- a/share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml +++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/StandardTextGroupBox.qml @@ -25,7 +25,7 @@ GroupBox { visible: showIsWrapping layout: HorizontalLayout { Label { - text: "Wrap Mode" + text: qsTr("Wrap Mode") } ComboBox { baseStateFlag: isBaseState diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/Switches.qml index 32574ec5e2cc6054ce02a727b2379ac35b521870..3c4b95f95e66427a94ee2157e33ab5cf5182059c 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: qsTr(""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: { diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/TextInputGroupBox.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/TextInputGroupBox.qml index ecdc849b7c2f17e2b6468e337bed0c06ab098402..a5ad08b38338fd00455206f4d36006a4859d8282 100644 --- a/share/qtcreator/qmldesigner/propertyeditor/Qt/TextInputGroupBox.qml +++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/TextInputGroupBox.qml @@ -26,7 +26,7 @@ GroupBox { visible: isTextInput layout: HorizontalLayout { - Label {text: "Echo Mode"} + Label {text: qsTr("Echo Mode") } ComboBox { baseStateFlag: isBaseState diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/emptyPane.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/emptyPane.qml index dab550c9a568dd3ab99ca6a803690385e5cdf156..b1a1a2b7822fd9e9f0c0ab8b78024a593caf631e 100644 --- a/share/qtcreator/qmldesigner/propertyeditor/Qt/emptyPane.qml +++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/emptyPane.qml @@ -35,7 +35,7 @@ PropertyFrame { bottomMargin: 2; QLabel { minimumHeight: 20; - text: "none or multiple items selected"; + text: qsTr("none or multiple items selected"); alignment: "AlignHCenter"; } }