QmlDesigner.propertyEditor: add missing qsTr()

This commit is contained in:
Thomas Hartmann
2010-04-29 09:53:29 +02:00
parent d3cb00e75d
commit 14a29e07c0
4 changed files with 4 additions and 4 deletions

View File

@@ -25,7 +25,7 @@ GroupBox {
visible: showIsWrapping
layout: HorizontalLayout {
Label {
text: "Wrap Mode"
text: qsTr("Wrap Mode")
}
ComboBox {
baseStateFlag: isBaseState

View File

@@ -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: {

View File

@@ -26,7 +26,7 @@ GroupBox {
visible: isTextInput
layout: HorizontalLayout {
Label {text: "Echo Mode"}
Label {text: qsTr("Echo Mode") }
ComboBox {
baseStateFlag: isBaseState

View File

@@ -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";
}
}