From 0eb47603497a9cbffedad2f9bab889b3265da8d7 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Tue, 22 Jan 2019 09:48:22 -0800 Subject: [PATCH] Show contact name on 'send anyway' dialog instead of $name$ Partial fix for #1914 --- js/views/conversation_view.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/js/views/conversation_view.js b/js/views/conversation_view.js index dfbfd11cc..8aec0734a 100644 --- a/js/views/conversation_view.js +++ b/js/views/conversation_view.js @@ -1133,7 +1133,10 @@ forceSend({ contact, message }) { const dialog = new Whisper.ConfirmationDialogView({ - message: i18n('identityKeyErrorOnSend'), + message: i18n('identityKeyErrorOnSend', [ + contact.getTitle(), + contact.getTitle(), + ]), okText: i18n('sendAnyway'), resolve: async () => { await contact.updateVerified();