fix guistove warning string

This commit is contained in:
Steffen Schaumburg 2010-12-28 16:00:16 +01:00
parent b861b7e8e9
commit b3b17feb71

View File

@ -55,9 +55,9 @@ class GuiStove():
if DEBUG == False:
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")
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")
self.warning_box(warning_string)