10n: Fix tr() issues.

This commit is contained in:
Friedemann Kleint
2011-01-19 16:50:03 +01:00
parent 94411bfaef
commit 808408eeea
13 changed files with 61 additions and 46 deletions

View File

@@ -536,7 +536,7 @@ bool DebuggerRunControlFactory::canRun(RunConfiguration *runConfiguration, const
QString DebuggerRunControlFactory::displayName() const
{
return tr("Debug");
return DebuggerRunControl::tr("Debug");
}
// Find Qt installation by running qmake
@@ -638,7 +638,7 @@ DebuggerRunControl *DebuggerRunControlFactory::create
if (!check) {
//appendMessage(errorMessage, true);
Core::ICore::instance()->showWarningWithOptions(tr("Debugger"),
Core::ICore::instance()->showWarningWithOptions(DebuggerRunControl::tr("Debugger"),
check.errorMessage, QString(), check.settingsCategory, check.settingsPage);
return 0;
}