aboutsummaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorAllan Nordhøy <epost@anotheragency.no>2018-11-11 05:53:27 +0100
committerfiaxh <fiaxh@users.noreply.github.com>2018-11-11 06:33:50 -0600
commit57c6708e2d05aab374386edbdb5b02a5fb28afea (patch)
treeeb1035ba879bff42cee6c19d182fa5cc6644c545 /plugins
parent2e2141422526f62839d0ee397356d1e38b435b53 (diff)
downloaddino-57c6708e2d05aab374386edbdb5b02a5fb28afea.tar.gz
dino-57c6708e2d05aab374386edbdb5b02a5fb28afea.zip
Spelling, added comma and ending dot.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/omemo/src/manage_key_dialog.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/omemo/src/manage_key_dialog.vala b/plugins/omemo/src/manage_key_dialog.vala
index d1d8fefd..3eaaaa72 100644
--- a/plugins/omemo/src/manage_key_dialog.vala
+++ b/plugins/omemo/src/manage_key_dialog.vala
@@ -57,7 +57,7 @@ public class ManageKeyDialog : Gtk.Dialog {
return_to_main = false;
confirm_image.set_from_icon_name("dialog-warning-symbolic", IconSize.DIALOG);
confirm_title_label.label = _("Fingerprints do not match");
- confirm_desc_label.set_markup(_("Please verify that you are comparing the correct fingerprint. If fingerprints do not match %s's account may be compromised and you should consider rejecting this key.").printf(@"<b>$(device[db.identity_meta.address_name])</b>"));
+ confirm_desc_label.set_markup(_("Please verify that you are comparing the correct fingerprint. If fingerprints do not match, %s's account may be compromised and you should consider rejecting this key.").printf(@"<b>$(device[db.identity_meta.address_name])</b>"));
manage_stack.set_visible_child_name("confirm");
});
}
@@ -126,7 +126,7 @@ public class ManageKeyDialog : Gtk.Dialog {
main_action_list.add(reject_row);
break;
case Database.IdentityMetaTable.TrustLevel.UNTRUSTED:
- main_desc_label.set_markup(_("This key is currently %s.").printf("<span color='#D91900'>"+_("rejected")+"</span>")+" "+_("This means it cannot be used by %s to receive messages, and any messages sent by it will be ignored").printf(@"<b>$(device[db.identity_meta.address_name])</b>"));
+ main_desc_label.set_markup(_("This key is currently %s.").printf("<span color='#D91900'>"+_("rejected")+"</span>")+" "+_("This means it cannot be used by %s to receive messages, and any messages sent by it will be ignored.").printf(@"<b>$(device[db.identity_meta.address_name])</b>"));
main_action_list.add(accept_row);
break;
}