Browse Source

fix typo

note: "everytime" even appears in the old_mnemonic wordlist, but it is a misspelling.
master
SomberNight 2 years ago
parent
commit
db5f1a11a5
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 4
      electrum/gui/qml/components/OpenChannelDialog.qml

4
electrum/gui/qml/components/OpenChannelDialog.qml

@ -45,12 +45,12 @@ ElDialog {
visible: !Daemon.currentWallet.lightningHasDeterministicNodeId visible: !Daemon.currentWallet.lightningHasDeterministicNodeId
iconStyle: InfoTextArea.IconStyle.Warn iconStyle: InfoTextArea.IconStyle.Warn
text: Daemon.currentWallet.seedType == 'segwit' text: Daemon.currentWallet.seedType == 'segwit'
? [ qsTr('Your channels cannot be recovered from seed, because they were created with an old version of Electrum.'), ? [ qsTr('Your channels cannot be recovered from seed, because they were created with an old version of Electrum.'), ' ',
qsTr('This means that you must save a backup of your wallet every time you create a new channel.'), qsTr('This means that you must save a backup of your wallet every time you create a new channel.'),
'\n\n', '\n\n',
qsTr('If you want this wallet to have recoverable channels, you must close your existing channels and restore this wallet from seed.') qsTr('If you want this wallet to have recoverable channels, you must close your existing channels and restore this wallet from seed.')
].join('') ].join('')
: [ qsTr('Your channels cannot be recovered from seed.'), : [ qsTr('Your channels cannot be recovered from seed.'), ' ',
qsTr('This means that you must save a backup of your wallet every time you create a new channel.'), qsTr('This means that you must save a backup of your wallet every time you create a new channel.'),
'\n\n', '\n\n',
qsTr('If you want to have recoverable channels, you must create a new wallet with an Electrum seed') qsTr('If you want to have recoverable channels, you must create a new wallet with an Electrum seed')

Loading…
Cancel
Save