cleaned up translations
removed tr() tag from hidden strings
This commit is contained in:
parent
f6d0b5216b
commit
f83ddf48fd
1 changed files with 2 additions and 2 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue