From aee1c342db5ed556962ea025a69c306ad6a81287 Mon Sep 17 00:00:00 2001 From: Satoshi Kodama Date: Wed, 20 Feb 2013 23:54:44 +0900 Subject: [PATCH] added translation text string in gui_lite.py Added gettext _() to the "public key has been copied" text string to be translated. --- lib/gui_lite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gui_lite.py b/lib/gui_lite.py index 21d81466..e7de6d2d 100644 --- a/lib/gui_lite.py +++ b/lib/gui_lite.py @@ -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):