Fix typos and inconsistent capitalization in sort options

This commit is contained in:
Kenneth Chew
2022-04-17 17:58:51 -04:00
parent 56ce7f5dcd
commit fcbf37f60f
6 changed files with 19 additions and 19 deletions

View File

@ -27,9 +27,9 @@ namespace Atl {
FilterModel::FilterModel(QObject *parent) : QSortFilterProxyModel(parent)
{
currentSorting = Sorting::ByPopularity;
sortings.insert(tr("Sort by popularity"), Sorting::ByPopularity);
sortings.insert(tr("Sort by name"), Sorting::ByName);
sortings.insert(tr("Sort by game version"), Sorting::ByGameVersion);
sortings.insert(tr("Sort by Popularity"), Sorting::ByPopularity);
sortings.insert(tr("Sort by Name"), Sorting::ByName);
sortings.insert(tr("Sort by Game Version"), Sorting::ByGameVersion);
searchTerm = "";
}