Remove most leading/trailing blanks from translated messages.

They are a hassle for translators and reviewers alike.

Change-Id: I363138212b692cf75fe1605df8af3721315d37e1
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Friedemann Kleint
2013-10-17 14:52:10 +02:00
parent 4de3b94840
commit 119548a0ff
35 changed files with 71 additions and 57 deletions
@@ -117,11 +117,11 @@ QVariant CppIncludeHierarchyModel::data(const QModelIndex &index, int role) cons
if (role == Qt::DisplayRole) {
if ((item == m_includesItem && m_includesItem->childCount() == 0)
|| (item == m_includedByItem && m_includedByItem->childCount() == 0)) {
return QString(item->fileName() + tr(" (none)"));
return QString(item->fileName() + QLatin1Char(' ') + tr("(none)"));
}
if (item->isCyclic())
return QString(item->fileName() + tr(" (cyclic)"));
return QString(item->fileName() + QLatin1Char(' ') + tr("(cyclic)"));
return item->fileName();
}