electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 6df9eb491ab1432c4033ca36dd126fa249c5594d
parent f40ca9efa6a3ee3db26ecb42bbbf82591c19a784
Author: ThomasV <thomasv@gitorious>
Date:   Sun, 28 Oct 2012 07:49:15 +0100

revert label change: this was breaking i18n translations.

Diffstat:
Mlib/gui_qt.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/gui_qt.py b/lib/gui_qt.py @@ -311,7 +311,7 @@ class ElectrumWindow(QMainWindow): l.setColumnWidth(2, 350) l.setColumnWidth(3, 140) l.setColumnWidth(4, 140) - l.setHeaderLabels( [ '', _( 'Date' ), _( 'To / From' ) , _('Amount'), _('Balance')] ) + l.setHeaderLabels( [ '', _( 'Date' ), _( 'Description' ) , _('Amount'), _('Balance')] ) self.connect(l, SIGNAL('itemDoubleClicked(QTreeWidgetItem*, int)'), self.tx_label_clicked) self.connect(l, SIGNAL('itemChanged(QTreeWidgetItem*, int)'), self.tx_label_changed) l.setContextMenuPolicy(Qt.CustomContextMenu)