diff --git a/electrum/gui/qml/components/ChannelDetails.qml b/electrum/gui/qml/components/ChannelDetails.qml index 243f033a5..22d5b75f3 100644 --- a/electrum/gui/qml/components/ChannelDetails.qml +++ b/electrum/gui/qml/components/ChannelDetails.qml @@ -242,7 +242,9 @@ Pane { visible: channeldetails.canDelete onClicked: { var dialog = app.messageDialog.createObject(root, { - text: qsTr('Are you sure you want to delete this channel? This will purge associated transactions from your wallet history.'), + text: channeldetails.isBackup + ? qsTr('Are you sure you want to delete this channel backup?') + : qsTr('Are you sure you want to delete this channel? This will purge associated transactions from your wallet history.'), yesno: true }) dialog.yesClicked.connect(function() {