From 05672b84c97a036a56d9c18d58d988c2c7f6a789 Mon Sep 17 00:00:00 2001 From: Maran Date: Mon, 30 Sep 2013 17:40:05 +0200 Subject: [PATCH] Fix line break in translation --- gui/qt/installwizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index d8d6555a..e8eccce6 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -88,7 +88,7 @@ class InstallWizard(QDialog): vbox = QVBoxLayout(self) if is_restore: - msg = _("Please enter your wallet seed.\n" + ' ') + msg = _("Please enter your wallet seed.") + "\n" msg += _("Your seed can be entered as a sequence of words, or as a hexadecimal string."+ ' \n') else: msg = _("Your seed is important!") \