mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 00:04:15 +02:00
[fix][arch] wrong uninstall dialog title
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
__version__ = '0.9.0'
|
||||
__version__ = '0.9.1'
|
||||
__app_name__ = 'bauh'
|
||||
|
||||
import os
|
||||
|
||||
@@ -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(),
|
||||
|
||||
Reference in New Issue
Block a user