GroupchatControl: Switch encrypted symbol to symbolic
This commit is contained in:
parent
245cecf1a9
commit
04717274b3
|
@ -1044,11 +1044,11 @@ class GroupchatControl(ChatControlBase):
|
||||||
if authenticated:
|
if authenticated:
|
||||||
authenticated_string = _('and authenticated')
|
authenticated_string = _('and authenticated')
|
||||||
self.lock_image.set_from_icon_name(
|
self.lock_image.set_from_icon_name(
|
||||||
'security-high', Gtk.IconSize.MENU)
|
'security-high-symbolic', Gtk.IconSize.MENU)
|
||||||
else:
|
else:
|
||||||
authenticated_string = _('and NOT authenticated')
|
authenticated_string = _('and NOT authenticated')
|
||||||
self.lock_image.set_from_icon_name(
|
self.lock_image.set_from_icon_name(
|
||||||
'security-low', Gtk.IconSize.MENU)
|
'security-low-symbolic', Gtk.IconSize.MENU)
|
||||||
|
|
||||||
tooltip = _('%(type)s encryption is active %(authenticated)s.') % {
|
tooltip = _('%(type)s encryption is active %(authenticated)s.') % {
|
||||||
'type': enc_type, 'authenticated': authenticated_string}
|
'type': enc_type, 'authenticated': authenticated_string}
|
||||||
|
|
Loading…
Reference in New Issue