Skip to content

Commit

Permalink
Merge pull request #724 from MisterEvans78/fix-latest-combo-untranslated
Browse files Browse the repository at this point in the history
Use translation for "Latest" in Version combo
  • Loading branch information
marticliment authored Feb 19, 2023
2 parents fc1a50a + 6c12cbb commit f01440d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wingetui/storeEngine.py
Original file line number Diff line number Diff line change
Expand Up @@ -1144,7 +1144,7 @@ def printData(self, appInfo: dict, progId) -> None:
while self.versionCombo.count()>0:
self.versionCombo.removeItem(0)
try:
self.versionCombo.addItems(["Latest"] + appInfo["versions"])
self.versionCombo.addItems([_("Latest")] + appInfo["versions"])
except KeyError:
pass
if "…" in self.givenPackageId:
Expand Down

0 comments on commit f01440d

Please sign in to comment.