[openpgp] Port to new confirmation dialog

This commit is contained in:
Philipp Hörist
2025-01-25 13:11:58 +01:00
parent e2de8dc09b
commit 9138bb540c
2 changed files with 4 additions and 5 deletions

View File

@@ -122,14 +122,13 @@ class KeyRow(Gtk.ListBoxRow):
self.destroy() self.destroy()
ConfirmationDialog( ConfirmationDialog(
_('Delete'), _('Delete Public Key?'),
_('Delete Public Key'),
_('This will permanently delete this public key'), _('This will permanently delete this public key'),
[DialogButton.make('Cancel'), [DialogButton.make('Cancel'),
DialogButton.make('Remove', DialogButton.make('Remove',
text=_('Delete'), text=_('Delete'),
callback=_remove)], callback=_remove)],
transient_for=self.get_toplevel()).show() ).show()
def set_trust(self, trust): def set_trust(self, trust):
icon_name, tooltip, css_class = TRUST_DATA[trust] icon_name, tooltip, css_class = TRUST_DATA[trust]

View File

@@ -27,7 +27,7 @@ from gajim.common import ged
from gajim.common import configpaths from gajim.common import configpaths
from gajim.common.const import CSSPriority from gajim.common.const import CSSPriority
from gajim.gtk.dialogs import ErrorDialog from gajim.gtk.dialogs import SimpleDialog
from gajim.plugins import GajimPlugin from gajim.plugins import GajimPlugin
from gajim.plugins.plugins_i18n import _ from gajim.plugins.plugins_i18n import _
@@ -169,7 +169,7 @@ class OpenPGPPlugin(GajimPlugin):
keys = client.get_module('OpenPGP').get_keys(jid) keys = client.get_module('OpenPGP').get_keys(jid)
if not keys: if not keys:
ErrorDialog( SimpleDialog(
_('Not Trusted'), _('Not Trusted'),
_('There was no trusted and active key found')) _('There was no trusted and active key found'))
chat_control.sendmessage = False chat_control.sendmessage = False