diff options
| author | Kenneth Chew <kenneth.c0@protonmail.com> | 2022-04-17 17:58:51 -0400 |
|---|---|---|
| committer | Kenneth Chew <kenneth.c0@protonmail.com> | 2022-04-17 17:58:51 -0400 |
| commit | fcbf37f60fd872884a59fc11233e87e47029e1c9 (patch) | |
| tree | cbb532e44528cf02d3c46d095afa571ec73023fb /launcher/ui/pages/modplatform/atlauncher | |
| parent | 56ce7f5dcd5b6aa89ac23ad80c2e7ba058bc256d (diff) | |
| download | PrismLauncher-fcbf37f60fd872884a59fc11233e87e47029e1c9.tar.gz PrismLauncher-fcbf37f60fd872884a59fc11233e87e47029e1c9.tar.bz2 PrismLauncher-fcbf37f60fd872884a59fc11233e87e47029e1c9.zip | |
Fix typos and inconsistent capitalization in sort options
Diffstat (limited to 'launcher/ui/pages/modplatform/atlauncher')
| -rw-r--r-- | launcher/ui/pages/modplatform/atlauncher/AtlFilterModel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/launcher/ui/pages/modplatform/atlauncher/AtlFilterModel.cpp b/launcher/ui/pages/modplatform/atlauncher/AtlFilterModel.cpp index 3a97d477..c1ab166b 100644 --- a/launcher/ui/pages/modplatform/atlauncher/AtlFilterModel.cpp +++ b/launcher/ui/pages/modplatform/atlauncher/AtlFilterModel.cpp @@ -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 = ""; } |
