Commit cab37b39 authored by Mitchell Rosen's avatar Mitchell Rosen
Browse files

Capitalize game columns

parent 03bdbe2c
...@@ -126,10 +126,10 @@ QVariant GamesModel::headerData(int section, Qt::Orientation orientation, int ro ...@@ -126,10 +126,10 @@ QVariant GamesModel::headerData(int section, Qt::Orientation orientation, int ro
return QVariant(); return QVariant();
switch (section) { switch (section) {
case 0: return tr("Room"); case 0: return tr("Room");
case 1: return tr("Game created"); case 1: return tr("Game Created");
case 2: return tr("Description"); case 2: return tr("Description");
case 3: return tr("Creator"); case 3: return tr("Creator");
case 4: return tr("Game type"); case 4: return tr("Game Type");
case 5: return tr("Password"); case 5: return tr("Password");
case 6: return tr("Restrictions"); case 6: return tr("Restrictions");
case 7: return tr("Players"); case 7: return tr("Players");
......
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