Skip to content

Commit

Permalink
Follow-up for Electron-Cash#2129: Fixed up the langugae of the text
Browse files Browse the repository at this point in the history
Also modified the formattng a little bit.
  • Loading branch information
cculianu authored and EchterAgo committed Mar 11, 2021
1 parent 8c15cda commit 001ff9a
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions electroncash_gui/qt/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -2805,19 +2805,13 @@ def _warn_if_legacy_address(self):
msg1 = (
_("You are about to send BCH to a legacy address.")
+ "<br><br>"
+ _(
"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,
Expand Down

0 comments on commit 001ff9a

Please sign in to comment.