Skip to content

Commit

Permalink
Merge pull request #561 from ppvnf/f-string-store-name
Browse files Browse the repository at this point in the history
Fix: Steam and MSStore aren't displayed in error message
  • Loading branch information
marticliment committed Dec 30, 2022
2 parents 9133d64 + e9c7b63 commit 2560029
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wingetui/uiSections.py
Original file line number Diff line number Diff line change
Expand Up @@ -1438,7 +1438,7 @@ def showInfo():
"mainTitle": _("Unable to load informarion"),
"mainText": _("We could not load detailed information about this package, because it was not installed neither from Winget nor Scoop."),
"buttonTitle": _("Ok"),
"errorDetails": _("Uninstallable packages with the origin listed as \"Local PC\" are not published on any package manager, so there's no information available to show about them."),
"errorDetails": _("Uninstallable packages with the origin listed as \"{0}\" are not published on any package manager, so there's no information available to show about them.").format(item.text(4)),
"icon": QIcon(getMedia("notif_warn")),
}
self.err.showErrorMessage(errorData, showNotification=False)
Expand Down

0 comments on commit 2560029

Please sign in to comment.