From 43911a49e8620fe4e43bb97f5c721d2d4965ccf8 Mon Sep 17 00:00:00 2001 From: Steffen Schaumburg Date: Fri, 17 Dec 2010 19:16:11 +0100 Subject: [PATCH] split warning into several strings for easier translation --- pyfpdb/GuiStove.py | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/pyfpdb/GuiStove.py b/pyfpdb/GuiStove.py index f238e503..b600c81e 100644 --- a/pyfpdb/GuiStove.py +++ b/pyfpdb/GuiStove.py @@ -54,15 +54,10 @@ class GuiStove(): self.mainHBox.show_all() if DEBUG == False: - warning_string = _(""" -Stove is a GUI mockup of a EV calculation page, and completely non functional. - -Unless you are interested in developing this feature, please ignore this page. - -If you are interested in developing the code further see GuiStove.py and Stove.py - -Thankyou -""") + warning_string = _("Stove is a GUI mockup of a EV calculation page, and completely non functional.\n") + warning_string = _("Unless you are interested in developing this feature, please ignore this page.\n") + warning_string = _("If you are interested in developing the code further see GuiStove.py and Stove.py\n") + warning_string = _("Thank you\n") self.warning_box(warning_string)