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

QmlDesigner.propertyEditor: add missing qsTr()

parent d3cb00e7
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ GroupBox {
visible: showIsWrapping
layout: HorizontalLayout {
Label {
text: "Wrap Mode"
text: qsTr("Wrap Mode")
}
ComboBox {
baseStateFlag: isBaseState
......
......@@ -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: {
......
......@@ -26,7 +26,7 @@ GroupBox {
visible: isTextInput
layout: HorizontalLayout {
Label {text: "Echo Mode"}
Label {text: qsTr("Echo Mode") }
ComboBox {
baseStateFlag: isBaseState
......
......@@ -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";
}
}
......
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