From e3c19b12e3f0184160ff51387127e492bea188ca Mon Sep 17 00:00:00 2001 From: rdymac <1rdymac@MacBook-Air-de-Randy.local> Date: Thu, 10 Oct 2013 03:54:13 +0200 Subject: [PATCH 1/3] typo typo --- gui/qt/network_dialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/network_dialog.py b/gui/qt/network_dialog.py index 7b09a817..fa0fbaa0 100644 --- a/gui/qt/network_dialog.py +++ b/gui/qt/network_dialog.py @@ -104,7 +104,7 @@ class NetworkDialog(QDialog): self.autocycle_cb.setChecked(self.config.get('auto_cycle', True)) grid.addWidget(self.autocycle_cb, 0, 1) if not self.config.is_modifiable('auto_cycle'): self.autocycle_cb.setEnabled(False) - msg = _("If auto-connect is enabled, Electrum will always use a server that is on the the longest blockchain.") + " " \ + msg = _("If auto-connect is enabled, Electrum will always use a server that is on the longest blockchain.") + " " \ + _("If it is disabled, Electrum will warn you if your server is lagging.") grid.addWidget(HelpButton(msg), 0, 4) From e85d7b8fee6df575ecb04153957d312040bb6f08 Mon Sep 17 00:00:00 2001 From: rdymac <1rdymac@MacBook-Air-de-Randy.local> Date: Thu, 10 Oct 2013 03:54:52 +0200 Subject: [PATCH 2/3] Line breaks and blank spaces Moved line breaks and blank spaces out of text strings --- gui/qt/installwizard.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index e99b3efd..81b10725 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -30,7 +30,7 @@ class InstallWizard(QDialog): grid = QGridLayout() grid.setSpacing(5) - msg = _("Electrum could not find an existing wallet.")+"\n\n"+_("Did you use Electrum before and want to restore a previous wallet or is this your first time and do you want to create a new wallet?"+"\n") + msg = _("Electrum could not find an existing wallet.")+"\n\n"+_("Did you use Electrum before and want to restore a previous wallet or is this your first time and do you want to create a new wallet?")+"\n" label = QLabel(msg) label.setWordWrap(True) grid.addWidget(label, 0, 0) @@ -89,10 +89,10 @@ class InstallWizard(QDialog): vbox = QVBoxLayout(self) if is_restore: msg = _("Please enter your wallet seed.") + "\n" - msg += _("Your seed can be entered as a sequence of words, or as a hexadecimal string."+ ' \n') + msg += _("Your seed can be entered as a sequence of words, or as a hexadecimal string.")+ ' \n' else: msg = _("Your seed is important!") \ - + "\n" + _("To make sure that you have properly saved your seed, please retype it here." + ' ') + + "\n" + _("To make sure that you have properly saved your seed, please retype it here.") + ' ' logo = QLabel() logo.setPixmap(QPixmap(":icons/seed.png").scaledToWidth(56)) @@ -195,7 +195,7 @@ class InstallWizard(QDialog): grid.setSpacing(5) label = QLabel(_("Electrum communicates with remote servers to get information about your transactions and addresses. The servers all fulfil the same purpose only differing in hardware. In most cases you simply want to let Electrum pick one at random if you have a preference though feel free to select a server manually.") + "\n\n" \ - + _("How do you want to connect to a server: ")) + + _("How do you want to connect to a server:")+" ") label.setWordWrap(True) grid.addWidget(label, 0, 0) From c558d1b6129ef8947cdabdf05e47cf28b323fbc8 Mon Sep 17 00:00:00 2001 From: rdymac <1rdymac@MacBook-Air-de-Randy.local> Date: Thu, 10 Oct 2013 03:56:52 +0200 Subject: [PATCH 3/3] latest wikia version need to be checked before release pump the wikia version to the latest strings added for translation, this need to be checked again for futher editions before release +45 new text strings added --- lib/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/version.py b/lib/version.py index 7021da1a..ee6ecad6 100644 --- a/lib/version.py +++ b/lib/version.py @@ -1,4 +1,4 @@ ELECTRUM_VERSION = "1.9" # version of the client package PROTOCOL_VERSION = '0.6' # protocol version requested SEED_VERSION = 5 # bump this every time the seed generation is modified -TRANSLATION_ID = 4118 # version of the wiki page +TRANSLATION_ID = 4127 # version of the wiki page