diff --git a/src/plugins/coreplugin/modemanager.cpp b/src/plugins/coreplugin/modemanager.cpp index ff0ce2c1571..1fc743245d8 100644 --- a/src/plugins/coreplugin/modemanager.cpp +++ b/src/plugins/coreplugin/modemanager.cpp @@ -177,7 +177,7 @@ void ModeManager::objectAdded(QObject *obj) ActionManager *am = d->m_mainWindow->actionManager(); const QString shortcutId = QLatin1String("QtCreator.Mode.") + mode->id(); QShortcut *shortcut = new QShortcut(d->m_mainWindow); - shortcut->setWhatsThis(tr("Switch to %1 mode").arg(mode->displayName())); + shortcut->setWhatsThis(tr("Switch to %1 Mode").arg(mode->displayName())); Command *cmd = am->registerShortcut(shortcut, shortcutId, QList() << Constants::C_GLOBAL_ID); d->m_modeShortcuts.insert(index, cmd); diff --git a/src/plugins/designer/formeditorfactory.cpp b/src/plugins/designer/formeditorfactory.cpp index 6b39e50fee8..155a9a4bbc1 100644 --- a/src/plugins/designer/formeditorfactory.cpp +++ b/src/plugins/designer/formeditorfactory.cpp @@ -91,7 +91,7 @@ void FormEditorFactory::updateEditorInfoBar(Core::IEditor *editor) if (qobject_cast(editor)) { Core::EditorManager::instance()->showEditorInfoBar(Constants::INFO_READ_ONLY, tr("This file can only be edited in Design Mode."), - tr("Open Designer"), this, SLOT(designerModeClicked())); + tr("Switch to Design Mode"), this, SLOT(designerModeClicked())); } else { Core::EditorManager::instance()->hideEditorInfoBar(Constants::INFO_READ_ONLY); }