From e252811ad5f03dbbf836923dbb076a957058c966 Mon Sep 17 00:00:00 2001
From: Nico Alt <nicoalt@posteo.org>
Date: Fri, 4 Feb 2022 16:22:22 +0100
Subject: [PATCH] Make clear that deleting single messages is just about our
 side

Related to #286
---
 .../briar/desktop/conversation/ConversationItemView.kt          | 2 +-
 src/main/resources/strings/BriarDesktop.properties              | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationItemView.kt b/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationItemView.kt
index b8eb40e4f1..7dbc9376a3 100644
--- a/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationItemView.kt
+++ b/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationItemView.kt
@@ -185,7 +185,7 @@ fun ConversationItemView(
             ContextMenuArea(
                 items = {
                     listOf(
-                        ContextMenuItem(i18n("delete")) { onDelete(item.id) }
+                        ContextMenuItem(i18n("conversation.delete.single")) { onDelete(item.id) }
                     )
                 }
             ) {
diff --git a/src/main/resources/strings/BriarDesktop.properties b/src/main/resources/strings/BriarDesktop.properties
index 6eace58a5b..71c3ea11ce 100644
--- a/src/main/resources/strings/BriarDesktop.properties
+++ b/src/main/resources/strings/BriarDesktop.properties
@@ -39,6 +39,7 @@ conversation.message.unread=Unread messages
 conversation.message.new=New Message
 conversation.delete.all.dialog.title=Confirm Message Deletion
 conversation.delete.all.dialog.message=Are you sure that you want to delete all messages?
+conversation.delete.single=Delete message for me
 conversation.delete.failed.dialog.title=Could not delete all messages
 conversation.delete.failed.dialog.message.ongoing_both=Messages related to ongoing invitations and introductions cannot be deleted until they conclude.
 conversation.delete.failed.dialog.message.ongoing_introductions=Messages related to ongoing introductions cannot be deleted until they conclude.
-- 
GitLab