I18n: tr-fixes.

This commit is contained in:
Friedemann Kleint
2010-09-13 16:51:18 +02:00
parent 947f0f3a30
commit 66ad76de4f
11 changed files with 25 additions and 22 deletions

View File

@@ -346,10 +346,12 @@ void Qt4ProjectConfigWidget::updateImportLabel()
QString type;
switch (task.type) {
case ProjectExplorer::Task::Error:
type = tr("Error: ");
type = tr("Error:");
type += QLatin1Char(' ');
break;
case ProjectExplorer::Task::Warning:
type = tr("Warning: ");
type = tr("Warning:");
type += QLatin1Char(' ');
break;
case ProjectExplorer::Task::Unknown:
default: