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 b8eb40e4f1ba0c7aafb2f3d7246060e27cc704f6..7dbc9376a397a32269d17e3a8333b56638432b21 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 6eace58a5b15ba58f288861c7d5dd6e221b61c7d..71c3ea11cefa4d3596d0b7eb81bc1d56683f6e15 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.