Browse Source

Text strings to appear translated

Another word to be shown translated from the Lite GUI
283
rdymac 12 years ago
parent
commit
df15b42748
  1. 6
      lib/history_widget.py

6
lib/history_widget.py

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

Loading…
Cancel
Save