From 111bdd466519d7d6c40e0c9dc0694d4828d05905 Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Thu, 26 Jun 2014 18:14:26 +0200 Subject: [PATCH] QmlDesigner: Adjusting text Step into describes better what the operation does. Change-Id: Ia3da0b68b9d1e2b572dfa591124704e7c9ef336c Reviewed-by: Leena Miettinen --- .../qmldesigner/componentsplugin/entertabdesigneraction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/qmldesigner/componentsplugin/entertabdesigneraction.cpp b/src/plugins/qmldesigner/componentsplugin/entertabdesigneraction.cpp index fd3c689ea7d..6894e5df23f 100644 --- a/src/plugins/qmldesigner/componentsplugin/entertabdesigneraction.cpp +++ b/src/plugins/qmldesigner/componentsplugin/entertabdesigneraction.cpp @@ -56,7 +56,7 @@ public /*slots*/: }; EnterTabDesignerAction::EnterTabDesignerAction() - : AbstractActionGroup(QCoreApplication::translate("TabViewToolAction", "Edit Tab")) + : AbstractActionGroup(QCoreApplication::translate("TabViewToolAction", "Step into Tab")) { } @@ -126,7 +126,7 @@ void EnterTabDesignerAction::createActionForTab(const ModelNode &modelNode) QmlDesigner::QmlItemNode itemNode(modelNode); if (itemNode.isValid()) { - QString what = QString(QT_TRANSLATE_NOOP("QmlDesignerContextMenu", "Edit: %1")). + QString what = QString(QT_TRANSLATE_NOOP("QmlDesignerContextMenu", "Step into: %1")). arg(itemNode.instanceValue("title").toString()); EnterTabAction *selectionAction = new EnterTabAction(what);