[fix][arch] wrong uninstall dialog title

This commit is contained in:
Vinícius Moreira
2020-04-17 16:48:01 -03:00
parent f6a8ea78f0
commit 3e73797090
3 changed files with 7 additions and 2 deletions

View File

@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [0.9.1]
### Fixes
- Arch
- wrong dialog titles
## [0.9.0] - 2020-04-15
### Features
- Backup

View File

@@ -1,4 +1,4 @@
__version__ = '0.9.0'
__version__ = '0.9.1'
__app_name__ = 'bauh'
import os

View File

@@ -804,7 +804,7 @@ class ArchManager(SoftwareManager):
msg = '<p>{}</p><p>{}</p>'.format(self.i18n['arch.uninstall.required_by'].format(bold(context.name), bold(str(len(reqs)))),
self.i18n['arch.uninstall.required_by.advice'])
if not context.watcher.request_confirmation(title=self.i18n['action.not_allowed'].capitalize(),
if not context.watcher.request_confirmation(title=self.i18n['confirmation'].capitalize(),
body=msg,
components=[reqs_select],
confirmation_label=self.i18n['proceed'].capitalize(),