1
0

i18n template improvements

This commit is contained in:
Johann Bauer
2018-05-31 11:05:15 +02:00
parent ec5931ae54
commit d288999036
2 changed files with 2 additions and 2 deletions

View File

@@ -238,7 +238,7 @@ class TxDialog(QDialog, MessageBoxMixin):
self.date_label.show()
elif exp_n:
text = '%.2f MB'%(exp_n/1000000)
self.date_label.setText(_('Position in mempool') + ': ' + text + ' ' + _('from tip'))
self.date_label.setText(_('Position in mempool: {} from tip').format(text))
self.date_label.show()
else:
self.date_label.hide()