From 6d049a30f24bcacfc89c83224f5ba734c1392708 Mon Sep 17 00:00:00 2001 From: Rogach Date: Tue, 26 Apr 2022 00:35:42 +0300 Subject: [PATCH] fix typo in warning message shown when enabling lightning (#7782) --- electrum/gui/kivy/main_window.py | 2 +- electrum/gui/qt/main_window.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/electrum/gui/kivy/main_window.py b/electrum/gui/kivy/main_window.py index ae9f82f0a..a785c715b 100644 --- a/electrum/gui/kivy/main_window.py +++ b/electrum/gui/kivy/main_window.py @@ -1461,7 +1461,7 @@ class ElectrumWindow(App, Logger): else: msg = _( "Warning: this wallet type does not support channel recovery from seed. " - "You will need to backup your wallet everytime you create a new wallet. " + "You will need to backup your wallet everytime you create a new channel. " "Create lightning keys?") d = Question(msg, self._enable_lightning, title=_('Enable Lightning?')) d.open() diff --git a/electrum/gui/qt/main_window.py b/electrum/gui/qt/main_window.py index 0d2a740ba..a049d6f72 100644 --- a/electrum/gui/qt/main_window.py +++ b/electrum/gui/qt/main_window.py @@ -2608,7 +2608,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger): else: msg = _( "Warning: this wallet type does not support channel recovery from seed. " - "You will need to backup your wallet everytime you create a new wallet. " + "You will need to backup your wallet everytime you create a new channel. " "Create lightning keys?") if self.question(msg): self._init_lightning_dialog(dialog=dialog)