tadd safety notice - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 337675d134f41aa6fcf7f0288cff0cc670b998a9 DIR parent a00203d374c58a4b89b9c3d585ec9af584adb7fe HTML Author: ThomasV <thomasv@electrum.org> Date: Thu, 26 Oct 2017 18:21:24 +0200 add safety notice Diffstat: M gui/qt/main_window.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py t@@ -1860,7 +1860,10 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): dialog.exec_() def remove_wallet(self): - if self.question(_('Delete wallet file') + "\n'%s'"%self.wallet.storage.path): + if self.question('\n'.join([ + _('Delete wallet file?'), + "%s"%self.wallet.storage.path, + _('If your wallet contains funds, make sure you have saved its seed.')])): self._delete_wallet() @protected