From df15b42748b28da53a32df7a7c3eaf3d748ab2ca Mon Sep 17 00:00:00 2001 From: rdymac Date: Mon, 21 Jan 2013 12:05:31 +0100 Subject: [PATCH] Text strings to appear translated Another word to be shown translated from the Lite GUI --- lib/history_widget.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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")))