From 9e9a67240348e5ec7db74114c63738421ca26177 Mon Sep 17 00:00:00 2001 From: Calin Culianu Date: Thu, 4 Feb 2021 22:52:23 +0200 Subject: [PATCH] Follow-up for #2129: Fixed up the langugae of the text Also modified the formattng a little bit. --- electroncash_gui/qt/main_window.py | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/electroncash_gui/qt/main_window.py b/electroncash_gui/qt/main_window.py index 39c2287588c3..2a7d931818ae 100644 --- a/electroncash_gui/qt/main_window.py +++ b/electroncash_gui/qt/main_window.py @@ -2805,19 +2805,13 @@ def _warn_if_legacy_address(self): msg1 = ( _("You are about to send BCH to a legacy address.") + "

" - + _( - "Legacy addresses are deprecated for Bitcoin Cash " - "(BCH), and used by Bitcoin (BTC)." - ) - ) - msg2 = _( - "Proceed if what you are intending to do is sending BCH." - ) - msg3 = _( - "If you are intending to send BTC, close the " - "application and use a BTC wallet instead. Electron " - "Cash is a BCH wallet, not a BTC wallet." + + _("Legacy addresses are deprecated for Bitcoin Cash " + "(BCH), but they are used by Bitcoin (BTC).") ) + msg2 = _("Proceed if what you intend to do is to send BCH.") + msg3 = _("If you intend to send BTC, close the application " + "and use a BTC wallet instead. Electron Cash is a " + "BCH wallet, not a BTC wallet.") res = self.msg_box( parent=self, icon=QMessageBox.Warning,