mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-01-04 17:17:56 -08:00
cleaned up translations
removed tr() tag from hidden strings
This commit is contained in:
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user