Skip to content

Commit

Permalink
Namecoin: Rebrand UI strings
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyRand committed Feb 4, 2020
1 parent 4e27c28 commit 6ff22a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion electrum_nmc/electrum/gui/kivy/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,7 @@ def toggle_lightning(self):
else:
self.show_info('This wallet has channels')
else:
warning1 = _("Lightning support in Electrum is experimental. Do not put large amounts in lightning channels.")
warning1 = _("Lightning support in Electrum-NMC is experimental. Do not put large amounts in lightning channels.")
warning2 = _("Funds stored in lightning channels are not recoverable from your seed. You must backup your wallet file everytime you create a new channel.")
d = Question(_('Enable Lightning?') + '\n\n' + warning1 + '\n\n' + warning2, self._enable_lightning)
d.open()
Expand Down
2 changes: 1 addition & 1 deletion electrum_nmc/electrum/gui/qt/main_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -2410,7 +2410,7 @@ def disable_lightning(self):
self.close()

def enable_lightning(self):
warning1 = _("Lightning support in Electrum is experimental. Do not put large amounts in lightning channels.")
warning1 = _("Lightning support in Electrum-NMC is experimental. Do not put large amounts in lightning channels.")
warning2 = _("Funds stored in lightning channels are not recoverable from your seed. You must backup your wallet file everytime you create a new channel.")
r = self.question(_('Enable Lightning payments?') + '\n\n' + _('WARNINGS') + ': ' + '\n\n' + warning1 + '\n\n' + warning2)
if not r:
Expand Down

0 comments on commit 6ff22a2

Please sign in to comment.