mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-09-03 12:30:07 +00:00
Qt: (minor) clean up "about" message
This commit is contained in:
parent
f3d2831db7
commit
db91618a44
1 changed files with 7 additions and 3 deletions
|
@ -562,9 +562,13 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError):
|
|||
|
||||
def show_about(self):
|
||||
QMessageBox.about(self, "Electrum",
|
||||
_("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." + "\n\n" +
|
||||
_("Uses icons from the Icons8 icon pack (icons8.com).")))
|
||||
(_("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.") + "\n\n" +
|
||||
_("Uses icons from the Icons8 icon pack (icons8.com).")))
|
||||
|
||||
def show_report_bug(self):
|
||||
msg = ' '.join([
|
||||
|
|
Loading…
Add table
Reference in a new issue