diff --git a/src/plugins/qt4projectmanager/wizards/qtquickappwizard.cpp b/src/plugins/qt4projectmanager/wizards/qtquickappwizard.cpp
index 6d55fb82025..66b67f11937 100644
--- a/src/plugins/qt4projectmanager/wizards/qtquickappwizard.cpp
+++ b/src/plugins/qt4projectmanager/wizards/qtquickappwizard.cpp
@@ -144,7 +144,7 @@ void QtQuickAppWizard::createInstances(ExtensionSystem::IPlugin *plugin)
basicFeatures = Core::Feature(QtSupport::Constants::FEATURE_QT_QUICK_1);
parameter = base;
- parameter.setDisplayName(tr("Qt Quick Application (Built-in elements)"));
+ parameter.setDisplayName(tr("Qt Quick Application (Built-in Elements)"));
parameter.setDescription(basicDescription + tr("The built-in elements in the QtQuick namespace allow "
"you to write cross-platform applications with "
"a custom look and feel.\n\nRequires Qt 4.7.0 or newer."));
@@ -163,10 +163,10 @@ void QtQuickAppWizard::createInstances(ExtensionSystem::IPlugin *plugin)
list << parameter;
parameter = base;
- parameter.setDisplayName(tr("Qt Quick Application for MeeGo/Harmattan"));
- parameter.setDescription(basicDescription + tr("The Qt Quick Components for MeeGo/Harmattan are "
+ parameter.setDisplayName(tr("Qt Quick Application for MeeGo Harmattan"));
+ parameter.setDescription(basicDescription + tr("The Qt Quick Components for MeeGo Harmattan are "
"a set of ready-made components that are designed "
- "with specific native appearance for the MeeGo/Harmattan "
+ "with specific native appearance for the MeeGo Harmattan "
"platform.\n\nRequires Qt 4.7.4 or newer, and the "
"component set installed for your Qt version."));
parameter.setRequiredFeatures(basicFeatures | Core::Feature(QtSupport::Constants::FEATURE_QTQUICK_COMPONENTS_MEEGO)
@@ -174,10 +174,10 @@ void QtQuickAppWizard::createInstances(ExtensionSystem::IPlugin *plugin)
list << parameter;
parameter = base;
- parameter.setDisplayName(tr("Qt Quick Application (from existing .qml file)"));
+ parameter.setDisplayName(tr("Qt Quick Application (from Existing QML File)"));
parameter.setDescription(basicDescription + tr("Creates a deployable Qt Quick application from "
"existing QML files. All files and directories that "
- "reside in the same directory as the main QML file "
+ "reside in the same directory as the main .qml file "
"are deployed. You can modify the contents of the "
"directory any time before deploying.\n\nRequires Qt 4.7.0 or newer."));
parameter.setRequiredFeatures(basicFeatures);