added translation text string in gui_lite.py
authorSatoshi Kodama <snipsnipsnip@users.sourceforge.jp>
Wed, 20 Feb 2013 14:54:44 +0000 (23:54 +0900)
committersnipsnipsnip <snipsnipsnip@users.sourceforge.jp>
Wed, 20 Feb 2013 16:15:28 +0000 (01:15 +0900)
Added gettext _() to the "public key has been copied" text string to be translated.

lib/gui_lite.py

index 21d8146..e7de6d2 100644 (file)
@@ -905,7 +905,7 @@ class MiniActuator:
     def copy_master_public_key(self):
         master_pubkey = self.wallet.master_public_key
         qApp.clipboard().setText(master_pubkey)
-        QMessageBox.information(None,"Copy successful", "Your master public key has been copied to your clipboard.")
+        QMessageBox.information(None, _("Copy successful"), _("Your master public key has been copied to your clipboard."))
         
 
     def acceptbit(self, currency):