URI: 
       tlocalize 3 more messages - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit a5152462135b6e132c6776a50675eed15e0c46a2
   DIR parent d163f135af8ed92f29683fd07cee24cae61155a0
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Mon, 21 May 2012 22:49:50 +0200
       
       localize 3 more messages
       
       Diffstat:
         M lib/gui_qt.py                       |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/lib/gui_qt.py b/lib/gui_qt.py
       t@@ -533,8 +533,8 @@ class ElectrumWindow(QMainWindow):
                l = self.receive_list
                hbox = self.receive_buttons_hbox
        
       -        hbox.addWidget(EnterButton("QR",lambda: self.show_address_qrcode(self.get_current_addr(True))))
       -        hbox.addWidget(EnterButton("Copy to Clipboard", lambda: self.app.clipboard().setText(self.get_current_addr(True))))
       +        hbox.addWidget(EnterButton(_("QR"),lambda: self.show_address_qrcode(self.get_current_addr(True))))
       +        hbox.addWidget(EnterButton(_("Copy to Clipboard"), lambda: self.app.clipboard().setText(self.get_current_addr(True))))
        
                def toggle_freeze():
                    addr = self.get_current_addr(True)
       t@@ -546,7 +546,7 @@ class ElectrumWindow(QMainWindow):
                    self.wallet.save()
                    self.update_receive_tab()
        
       -        self.freezeButton = b = EnterButton("Freeze", toggle_freeze)
       +        self.freezeButton = b = EnterButton(_("Freeze"), toggle_freeze)
                hbox.addWidget(b)
                hbox.addStretch(1)