diff --git a/lib/history_widget.py b/lib/history_widget.py index 3a6caf96..027a9ae9 100644 --- a/lib/history_widget.py +++ b/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")))