You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
defwaiting_dialog(self, task, msg=_("Electrum is generating your addresses, please wait.")):
247
+
defwaiting_dialog(self, task, msg=_("Electrum-DASH is generating your addresses, please wait.")):
248
248
deftarget():
249
249
task()
250
250
self.emit(QtCore.SIGNAL('accept'))
@@ -268,7 +268,7 @@ def network_dialog(self):
268
268
grid=QGridLayout()
269
269
grid.setSpacing(5)
270
270
271
-
label=QLabel(_("Electrum communicates with remote servers to get information about your transactions and addresses. The servers all fulfil the same purpose only differing in hardware. In most cases you simply want to let Electrum pick one at random if you have a preference though feel free to select a server manually.") +"\n\n" \
271
+
label=QLabel(_("Electrum-DASH communicates with remote servers to get information about your transactions and addresses. The servers all fulfil the same purpose only differing in hardware. In most cases you simply want to let Electrum-DASH pick one at random if you have a preference though feel free to select a server manually.") +"\n\n" \
272
272
+_("How do you want to connect to a server:")+" ")
QMessageBox.information(None,"Wallet backup created", _("A copy of your wallet file was created in")+" '%s'"%str(new_path))
329
329
except (IOError, os.error), reason:
330
-
QMessageBox.critical(None,"Unable to create backup", _("Electrum was unable to copy your wallet file to the specified location.")+"\n"+str(reason))
330
+
QMessageBox.critical(None,"Unable to create backup", _("Electrum-DASH was unable to copy your wallet file to the specified location.")+"\n"+str(reason))
331
331
332
332
333
333
defnew_wallet(self):
@@ -399,7 +399,7 @@ def init_menubar(self):
399
399
tools_menu=menubar.addMenu(_("&Tools"))
400
400
401
401
# Settings / Preferences are all reserved keywords in OSX using this as work around
_("Version")+" %s"% (self.wallet.electrum_version) +"\n\n"+_("Electrum's focus is speed, with low resource usage and simplifying Dash. 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 Dash system."))
429
+
QMessageBox.about(self, "Electrum-DASH",
430
+
_("Version")+" %s"% (self.wallet.electrum_version) +"\n\n"+_("Electrum-DASH's focus is speed, with low resource usage and simplifying Dash. 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 Dash system."))
_("Please report any bugs as issues on github:")+" <a href=\"https://github.com/spesmilo/electrum/issues\">https://github.com/spesmilo/electrum/issues</a>")
QMessageBox.critical(None, _("Unable to read file or no transaction found"), _("Electrum was unable to open your transaction file") +"\n"+str(reason))
2230
+
QMessageBox.critical(None, _("Unable to read file or no transaction found"), _("Electrum-DASH was unable to open your transaction file") +"\n"+str(reason))
export_error_label=_("Electrum was unable to produce a transaction export.")
2398
+
export_error_label=_("Electrum-DASH was unable to produce a transaction export.")
2399
2399
QMessageBox.critical(self, _("Unable to export history"), export_error_label+"\n"+str(reason))
2400
2400
return
2401
2401
QMessageBox.information(self,_("History exported"), _("Your wallet history has been successfully exported."))
@@ -2733,13 +2733,13 @@ def on_editfees(x):
2733
2733
2734
2734
run_hook('close_settings_dialog')
2735
2735
ifself.need_restart:
2736
-
QMessageBox.warning(self, _('Success'), _('Please restart Electrum to activate the new GUI settings'), _('OK'))
2736
+
QMessageBox.warning(self, _('Success'), _('Please restart Electrum-DASH to activate the new GUI settings'), _('OK'))
2737
2737
2738
2738
2739
2739
2740
2740
defrun_network_dialog(self):
2741
2741
ifnotself.network:
2742
-
QMessageBox.warning(self, _('Offline'), _('You are using Electrum in offline mode.\nRestart Electrum if you want to get connected.'), _('OK'))
2742
+
QMessageBox.warning(self, _('Offline'), _('You are using Electrum-DASH in offline mode.\nRestart Electrum-DASH if you want to get connected.'), _('OK'))
0 commit comments