From fd160f7523de1cf1c5e300ef9b20a6b9c8201df4 Mon Sep 17 00:00:00 2001 From: Henning Gruendl Date: Fri, 23 Aug 2019 15:33:00 +0200 Subject: [PATCH] QmlDesigner: Add missing qsTr() to AnchorRow label Change-Id: I8c5c164c5d66548d6e574360bc38991ccdc750fd Reviewed-by: Thomas Hartmann --- .../qmldesigner/propertyEditorQmlSources/QtQuick/AnchorRow.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnchorRow.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnchorRow.qml index 2800f89539e..2514fde1d30 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnchorRow.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/AnchorRow.qml @@ -89,7 +89,7 @@ RowLayout { } Label { - text: "Margin" + text: qsTr("Margin") color: __defaultTextColor elide: Text.ElideRight Layout.minimumWidth: Math.min(60, Layout.preferredWidth + 10)