commit 0f34dece4cd97b4272e7ce1730214fe15799fbbc
parent 9e22d34d9b075c694c3af40777080adda51da970
Author: ThomasV <thomasv1@gmx.de>
Date: Mon, 21 Jan 2013 04:20:04 -0800
Merge pull request #129 from rdymac/patch-22
Text strings to appear translated
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git 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")))