From dd679ccb27b4843794b45ee0d8d7e082a5916d97 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Wed, 30 Sep 2015 10:35:22 +0200 Subject: [PATCH] bug report guidelines --- gui/qt/main_window.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 2f61c2ee..1b1b7d4c 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -412,8 +412,13 @@ class ElectrumWindow(QMainWindow, PrintError): _("Version")+" %s" % (self.wallet.electrum_version) + "\n\n" + _("Electrum's focus is speed, with low resource usage and simplifying Bitcoin. You do not need to perform regular backups, because your wallet can be recovered from a secret phrase that you can memorize or write on paper. Startup times are instant because it operates in conjunction with high-performance servers that handle the most complicated parts of the Bitcoin system.")) def show_report_bug(self): - QMessageBox.information(self, "Electrum - " + _("Reporting Bugs"), - _("Please report any bugs as issues on github:")+" https://github.com/spesmilo/electrum/issues") + msg = ' '.join([ + _("Please report any bugs as issues on github:
"), + "https://github.com/spesmilo/electrum/issues

", + _("Before reporting a bug, upgrade to the most recent version of Electrum (latest release or git HEAD), and include the version number in your report."), + _("Try to explain not only what the bug is, but how it occurs.") + ]) + QMessageBox.information(self, "Electrum - " + _("Reporting Bugs"), msg) def new_transaction(self, tx):