Skip to content

Commit

Permalink
Change string to non-translatable
Browse files Browse the repository at this point in the history
This is the "title" of an invisible column. But in case we make it
translatable in the future, the title now contains full English words.
  • Loading branch information
erikjv committed Aug 31, 2023
1 parent 7113c91 commit add636a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/spaces/spacesmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ QVariant SpacesModel::headerData(int section, Qt::Orientation orientation, int r
case Columns::Enabled:
return tr("Enabled");
case Columns::SpaceId:
return tr("SpaceId");
return QStringLiteral("Space Id"); // Hidden column, no need for a translatable string.
case Columns::ColumnCount:
Q_UNREACHABLE();
}
Expand Down

0 comments on commit add636a

Please sign in to comment.