Browse Source

Merge pull request #129 from rdymac/patch-22

Text strings to appear translated
283
ThomasV 12 years ago
parent
commit
0f34dece4c
  1. 6
      lib/history_widget.py

6
lib/history_widget.py

@ -14,11 +14,11 @@ class HistoryWidget(QTreeWidget):
def append(self, address, amount, date): def append(self, address, amount, date):
if address is None: if address is None:
address = "Unknown" address = _("Unknown")
if amount is None: if amount is None:
amount = "Unknown" amount = _("Unknown")
if date is None: if date is None:
date = "Unknown" date = _("Unknown")
item = QTreeWidgetItem([amount, address, date]) item = QTreeWidgetItem([amount, address, date])
if float(amount) < 0: if float(amount) < 0:
item.setForeground(0, QBrush(QColor("#BC1E1E"))) item.setForeground(0, QBrush(QColor("#BC1E1E")))

Loading…
Cancel
Save