forked from qt-creator/qt-creator
		
	QmlDesigner.propertyEditor: add missing qsTr()
This commit is contained in:
		@@ -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";
 | 
			
		||||
                            }
 | 
			
		||||
                        }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user