summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Loehning <robert.loehning@nokia.com>2010-08-17 12:48:32 +0200
committerRobert Loehning <robert.loehning@nokia.com>2010-08-17 14:14:18 +0200
commited0bed351a0edbf55521c21848e1b12f692be7fa (patch)
tree5009d2448460552aa773d30de2ba7f3666452f0b
parent0da16a8a703461fbb3287ee4b3a9458d63f7aae0 (diff)
downloadqt-creator-ed0bed351a0edbf55521c21848e1b12f692be7fa.tar.gz
Fixed untranslated string
-rw-r--r--src/plugins/qmljseditor/qmljseditorplugin.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmljseditor/qmljseditorplugin.cpp b/src/plugins/qmljseditor/qmljseditorplugin.cpp
index e9d7926182..4afe4310e1 100644
--- a/src/plugins/qmljseditor/qmljseditorplugin.cpp
+++ b/src/plugins/qmljseditor/qmljseditorplugin.cpp
@@ -126,7 +126,7 @@ bool QmlJSEditorPlugin::initialize(const QStringList & /*arguments*/, QString *e
Core::ActionContainer *menuQtQuick = am->createMenu(Constants::M_QTQUICK);
menuQtQuick->menu()->setTitle(tr("Qt Quick"));
mtools->addMenu(menuQtQuick);
- m_actionPreview = new QAction("&Preview", this);
+ m_actionPreview = new QAction(tr("&Preview"), this);
QList<int> toolsMenuContext = QList<int>()
<< core->uniqueIDManager()->uniqueIdentifier(QmlDesigner::Constants::C_QT_QUICK_TOOLS_MENU);