localisation: fix messages

This commit is contained in:
ThomasV 2012-06-23 13:58:32 +02:00
parent 54e0be41e8
commit 849c80eda7
2 changed files with 4 additions and 4 deletions

View File

@ -1184,7 +1184,7 @@ class ElectrumWindow(QMainWindow):
grid.addWidget(fee_e, 2, 1)
msg = _('Fee per transaction input. Transactions involving multiple inputs tend to require a higher fee.') + ' ' \
+ _('Recommended value') + ': 0.001'
grid.addWidget(HelpButton(msg, 2, 2))
grid.addWidget(HelpButton(msg), 2, 2)
fee_e.textChanged.connect(lambda: numbify(fee_e,False))
nz_e = QLineEdit()
@ -1259,14 +1259,14 @@ class ElectrumWindow(QMainWindow):
try:
n = int(gap_e.text())
except:
QMessageBox.warning(self, _('Error'), _('Invalid Value'), _('OK'))
QMessageBox.warning(self, _('Error'), _('Invalid value'), _('OK'))
return
if self.wallet.gap_limit != n:
r = self.wallet.change_gap_limit(n)
if r:
self.update_receive_tab()
else:
QMessageBox.warning(self, _('Error'), _('Invalid Value'), _('OK'))
QMessageBox.warning(self, _('Error'), _('Invalid value'), _('OK'))
self.set_expert_mode(cb.isChecked())

View File

@ -1,3 +1,3 @@
ELECTRUM_VERSION = "0.60"
SEED_VERSION = 4 # bump this everytime the seed generation is modified
TRANSLATION_ID = 28047 # version of the wiki page
TRANSLATION_ID = 28079 # version of the wiki page