tMerge pull request #129 from rdymac/patch-22 - electrum - Electrum Bitcoin wallet
 (HTM) git clone https://git.parazyd.org/electrum
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
       ---
 (DIR) commit 0f34dece4cd97b4272e7ce1730214fe15799fbbc
 (DIR) parent 9e22d34d9b075c694c3af40777080adda51da970
 (HTM) 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:
         M lib/history_widget.py               |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
 (DIR) diff --git a/lib/history_widget.py b/lib/history_widget.py
       t@@ -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")))