Text strings to appear translated
Another word to be shown translated from the Lite GUI
This commit is contained in:
@@ -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")))
|
||||||
|
|||||||
Reference in New Issue
Block a user