Commit f83ddf48 authored by tooomm's avatar tooomm
Browse files

cleaned up translations

removed tr() tag from hidden strings
parent f6d0b521
......@@ -62,8 +62,8 @@ QVariant SetsModel::headerData(int section, Qt::Orientation orientation, int rol
if ((role != Qt::DisplayRole) || (orientation != Qt::Horizontal))
return QVariant();
switch (section) {
case SortKeyCol: return tr("Key");
case IsKnownCol: return tr("Is known");
case SortKeyCol: return QString("Key"); /* no tr() for translations needed, column just used for sorting --> hidden */
case IsKnownCol: return QString("Is known"); /* no tr() for translations needed, column is just used for sorting --> hidden */
case EnabledCol: return tr("Enabled");
case SetTypeCol: return tr("Set type");
case ShortNameCol: return tr("Set code");
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment