Skip to content
Snippets Groups Projects
Commit bc7d8532 authored by mae's avatar mae
Browse files

Labelling consistency

Reviewed-by: Oswald Buddenhagen
parent 495b7bff
No related branches found
No related tags found
No related merge requests found
......@@ -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<int>() << Constants::C_GLOBAL_ID);
d->m_modeShortcuts.insert(index, cmd);
......
......@@ -91,7 +91,7 @@ void FormEditorFactory::updateEditorInfoBar(Core::IEditor *editor)
if (qobject_cast<FormWindowEditor *>(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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment