diff --git a/CHANGELOG.md b/CHANGELOG.md index 96ecd293..54df4785 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Improvements - AUR: - Optional dependencies are not checked by default in their installation popup. +- Minor UI improvements + +### AppImage support +- Search, install, uninstall applications available in [AppImageHub](https://appimage.github.io) +- Adds desktop entries (menu shortcuts) for the installed applications ### AppImage support diff --git a/bauh/view/qt/root.py b/bauh/view/qt/root.py index f3250253..1948590e 100644 --- a/bauh/view/qt/root.py +++ b/bauh/view/qt/root.py @@ -20,7 +20,7 @@ def ask_root_password(locale_keys: dict): diag.setTextEchoMode(QLineEdit.Password) diag.setWindowIcon(QIcon(resource.get_path('img/lock.svg'))) diag.setWindowTitle(locale_keys['popup.root.title']) - diag.setLabelText(locale_keys['popup.root.password'] + ':') + diag.setLabelText('') diag.setCancelButtonText(locale_keys['popup.button.cancel']) diag.resize(400, 200) diff --git a/bauh/view/resources/locale/en b/bauh/view/resources/locale/en index edb145ed..c1cd934f 100644 --- a/bauh/view/resources/locale/en +++ b/bauh/view/resources/locale/en @@ -34,8 +34,7 @@ manage_window.bt.upgrade.tooltip=Upgrade all checked applications manage_window.bt.installed.text=installed manage_window.bt.installed.tooltip=Click here to show the installed applications manage_window.checkbox.show_details=Show details -popup.root.title=Requires root privileges -popup.root.password=Password +popup.root.title=Requires your password to continue popup.root.bad_password.title=Error popup.root.bad_password.body=Wrong password popup.history.title=History diff --git a/bauh/view/resources/locale/es b/bauh/view/resources/locale/es index 24d77102..56c34e6d 100644 --- a/bauh/view/resources/locale/es +++ b/bauh/view/resources/locale/es @@ -36,8 +36,7 @@ manage_window.bt.upgrade.tooltip=Actualiza todos los aplicativos marcados manage_window.bt.installed.text=instalados manage_window.bt.installed.tooltip==Haces clic aqui para mostrar los aplicativos instalados manage_window.checkbox.show_details=Mostrar detalles -popup.root.title=Requiere privilegios de root -popup.root.password=Contraseña +popup.root.title=Requiere tu contraseña para continuar popup.root.bad_password.title=Error popup.root.bad_password.body=Contraseña incorrecta popup.history.title=Historia diff --git a/bauh/view/resources/locale/pt b/bauh/view/resources/locale/pt index 3a5657b6..a05cbf85 100644 --- a/bauh/view/resources/locale/pt +++ b/bauh/view/resources/locale/pt @@ -36,8 +36,7 @@ manage_window.bt.upgrade.tooltip=Atualiza todos os aplicativos marcados manage_window.bt.installed.text=instalados manage_window.bt.installed.tooltip=Clique aqui para exibir os aplicativos instalados manage_window.checkbox.show_details=Mostrar detalhes -popup.root.title=Requer privilégios de root -popup.root.password=Senha +popup.root.title=Requer sua senha para prosseguir popup.root.bad_password.title=Erro popup.root.bad_password.body=Senha incorreta popup.history.title=Histórico