i18n fix to pronterface.py

master
Guillaume Seguin 2012-08-04 21:51:07 +02:00
parent ea3ea4e975
commit 8e9a09a70d
1 changed files with 3 additions and 3 deletions

View File

@ -325,7 +325,7 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
else: else:
print _("You cannot set negative temperatures. To turn the hotend off entirely, set its temperature to 0.") print _("You cannot set negative temperatures. To turn the hotend off entirely, set its temperature to 0.")
except Exception, x: except Exception, x:
print _("You must enter a temperature. (%s)" % (repr(x),)) print _("You must enter a temperature. (%s)") % (repr(x),)
if self.webInterface: if self.webInterface:
self.webInterface.AddLog("You must enter a temperature. (%s)" % (repr(x),)) self.webInterface.AddLog("You must enter a temperature. (%s)" % (repr(x),))
@ -350,8 +350,8 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
print _("You cannot set negative temperatures. To turn the bed off entirely, set its temperature to 0.") print _("You cannot set negative temperatures. To turn the bed off entirely, set its temperature to 0.")
if self.webInterface: if self.webInterface:
self.webInterface.AddLog("You cannot set negative temperatures. To turn the bed off entirely, set its temperature to 0.") self.webInterface.AddLog("You cannot set negative temperatures. To turn the bed off entirely, set its temperature to 0.")
except: except Exception, x:
print _("You must enter a temperature.") print _("You must enter a temperature. (%s)") % (repr(x),)
if self.webInterface: if self.webInterface:
self.webInterface.AddLog("You must enter a temperature.") self.webInterface.AddLog("You must enter a temperature.")