From 47ae1e61d30b479f26ee9dc2650ce214b0dcf9bb Mon Sep 17 00:00:00 2001 From: rdymac Date: Fri, 29 Mar 2013 19:59:07 +0100 Subject: [PATCH 1/4] Added plugins files to be able to translate them Added plugins files to be able to translate them --- app.fil | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app.fil b/app.fil index 3ebc5174d..1eaee6cfc 100644 --- a/app.fil +++ b/app.fil @@ -2,3 +2,8 @@ gui/gui_gtk.py gui/gui_classic.py gui/gui_lite.py gui/history_widget.py +plugins/aliases.py +plugins/pointofsale.py +plugins/labels.py +plugins/qrscanner.py +plugins/virtualkeyboard.py From c145b69b3bd07613d87718d90737600b6266b705 Mon Sep 17 00:00:00 2001 From: rdymac Date: Fri, 29 Mar 2013 20:01:00 +0100 Subject: [PATCH 2/4] Latest version of the wikia Latest version of the wikia --- lib/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/version.py b/lib/version.py index bfd43c5e8..b6dfd3186 100644 --- a/lib/version.py +++ b/lib/version.py @@ -1,4 +1,4 @@ ELECTRUM_VERSION = "1.7.2" # version of the client package PROTOCOL_VERSION = '0.6' # protocol version requested SEED_VERSION = 4 # bump this every time the seed generation is modified -TRANSLATION_ID = 3992 # version of the wiki page +TRANSLATION_ID = 4012 # version of the wiki page From a8a267a7dc80905964552caee4928f8985ee9c43 Mon Sep 17 00:00:00 2001 From: slush Date: Mon, 1 Apr 2013 04:24:02 +0200 Subject: [PATCH 3/4] Added link to zbar download page --- plugins/qrscanner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/qrscanner.py b/plugins/qrscanner.py index 6e327a27c..e159c3a81 100644 --- a/plugins/qrscanner.py +++ b/plugins/qrscanner.py @@ -12,7 +12,7 @@ from electrum_gui import BasePlugin class Plugin(BasePlugin): def __init__(self, gui): - BasePlugin.__init__(self, gui, 'qrscans', 'QR scans', "QR Scans.\nInstall the zbar package to enable this plugin") + BasePlugin.__init__(self, gui, 'qrscans', 'QR scans', "QR Scans.\nInstall the zbar package (http://zbar.sourceforge.net/download.html) to enable this plugin") self._is_available = self._init() def _init(self): From dd630a8bb7d482cb83cc875f74baa7d6d2855ce1 Mon Sep 17 00:00:00 2001 From: slush Date: Mon, 1 Apr 2013 05:20:58 +0200 Subject: [PATCH 4/4] Fixed copy_master_public_key() --- gui/gui_lite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/gui_lite.py b/gui/gui_lite.py index 329cb396f..f996fec30 100644 --- a/gui/gui_lite.py +++ b/gui/gui_lite.py @@ -912,7 +912,7 @@ class MiniActuator: def copy_master_public_key(self): - master_pubkey = self.wallet.master_public_key + master_pubkey = self.wallet.get_master_public_key() qApp.clipboard().setText(master_pubkey) QMessageBox.information(None, _("Copy successful"), _("Your master public key has been copied to your clipboard."))