change menu name for macros plugin

Merge-request: 240
Reviewed-by: con <qtc-committer@nokia.com>
This commit is contained in:
Nicolas Arnaud-Cormos
2011-02-07 11:34:00 +01:00
committed by con
parent 6fc21c3416
commit 0444335aba
2 changed files with 6 additions and 6 deletions

View File

@@ -253,7 +253,7 @@ bool MacroManager::MacroManagerPrivate::executeMacro(Macro *macro)
if (error) {
QMessageBox::warning(Core::ICore::instance()->mainWindow(),
tr("Executing Macro"),
tr("Playing Macro"),
tr("An error occured while replaying the macro, execution stopped."));
}
@@ -355,12 +355,12 @@ void MacroManager::startMacro()
QString endShortcut = am->command(Constants::END_MACRO)->defaultKeySequence().toString();
QString executeShortcut = am->command(Constants::EXECUTE_LAST_MACRO)->defaultKeySequence().toString();
QString help = tr("Macro mode. Type \"%1\" to stop recording and \"%2\" to execute it")
QString help = tr("Macro mode. Type \"%1\" to stop recording and \"%2\" to play it")
.arg(endShortcut).arg(executeShortcut);
Core::EditorManager::instance()->showEditorStatusBar(
QLatin1String(Constants::M_STATUS_BUFFER),
help,
tr("End Macro"), this, SLOT(endMacro()));
tr("Stop Recording Macro"), this, SLOT(endMacro()));
}
void MacroManager::endMacro()