Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions wingetui/storeEngine.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def cancel(self):
if not self.finishedInstallation:
subprocess.Popen("taskkill /im winget.exe /f", stdout=subprocess.PIPE, stderr=subprocess.STDOUT, stdin=subprocess.PIPE, shell=True, cwd=os.getcwd(), env=os.environ).wait()
self.finishedInstallation = True
self.info.setText(_("Installation canceled by user!"))
self.info.setText(_("Installation canceled by the user!"))
self.cancelButton.setEnabled(True)
self.cancelButton.setText(_("Close"))
self.cancelButton.setIcon(QIcon(realpath+"/resources/warn.png"))
Expand Down Expand Up @@ -401,7 +401,7 @@ def cancel(self):
self.leftFast.stop()
self.rightSlow.stop()
self.rightFast.stop()
self.info.setText(_("Uninstall canceled by user!"))
self.info.setText(_("Uninstall canceled by the user!"))
if not self.finishedInstallation:
subprocess.Popen("taskkill /im winget.exe /f", stdout=subprocess.PIPE, stderr=subprocess.STDOUT, stdin=subprocess.PIPE, shell=True, cwd=os.getcwd(), env=os.environ).wait()
self.finishedInstallation = True
Expand Down