Text strings to appear translated

Another word to be shown translated from the Lite GUI
This commit is contained in:
rdymac 2013-01-21 12:05:31 +01:00
parent d971374669
commit df15b42748
1 changed files with 3 additions and 3 deletions

View File

@ -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")))