aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorHenrik Ullman <henrik@ullman.com>2019-07-28 07:42:54 -0700
committerfiaxh <fiaxh@users.noreply.github.com>2019-07-28 16:42:54 +0200
commit432074ff1b2cf912b350b82332a7993b6e58cd6f (patch)
treef8b3cf91acd6f468745c6740aa8425e92a338b77 /plugins
parent0c8a14a2efb75c6e3b9d2e250aa3d52e9f4def12 (diff)
downloaddino-432074ff1b2cf912b350b82332a7993b6e58cd6f.tar.gz
dino-432074ff1b2cf912b350b82332a7993b6e58cd6f.zip
Fix Manage Key dialog string for verified keys (#588)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/omemo/src/ui/manage_key_dialog.vala2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/omemo/src/ui/manage_key_dialog.vala b/plugins/omemo/src/ui/manage_key_dialog.vala
index 51dcbad0..bf003c41 100644
--- a/plugins/omemo/src/ui/manage_key_dialog.vala
+++ b/plugins/omemo/src/ui/manage_key_dialog.vala
@@ -122,7 +122,7 @@ public class ManageKeyDialog : Gtk.Dialog {
main_action_list.add(reject_row);
break;
case TrustLevel.VERIFIED:
- main_desc_label.set_markup(_("This key is currently %s.").printf("<span color='#1A63D9'>"+_("verified")+"</span>")+" "+_("This means it can be used by %s to receive and send messages.") + " " + _("Additionally it has been verified to match the key on the contact's device.").printf(@"<b>$(device[db.identity_meta.address_name])</b>"));
+ main_desc_label.set_markup(_("This key is currently %s.").printf("<span color='#1A63D9'>"+_("verified")+"</span>")+" "+_("This means it can be used by %s to receive and send messages.").printf(@"<b>$(device[db.identity_meta.address_name])</b>") + " " + _("Additionally it has been verified to match the key on the contact's device."));
main_action_list.add(reject_row);
break;
case TrustLevel.UNTRUSTED: