Cosmetic change to a translated string

This change is free as I already changed this string before pushing :)
master
Guillaume Seguin 2013-05-18 23:29:37 +02:00
parent 5b572c167f
commit 3fe969e536
1 changed files with 1 additions and 1 deletions

View File

@ -1317,7 +1317,7 @@ class PronterWindow(MainWindow, pronsole.pronsole):
print _("the print goes from %f mm to %f mm in X\nand is %f mm wide\n") % (gcode.xmin, gcode.xmax, gcode.width)
print _("the print goes from %f mm to %f mm in Y\nand is %f mm wide\n") % (gcode.ymin, gcode.ymax, gcode.depth)
print _("the print goes from %f mm to %f mm in Z\nand is %f mm high\n") % (gcode.zmin, gcode.zmax, gcode.height)
print _("Estimated duration: "), gcode.estimate_duration()
print _("Estimated duration: %s") % gcode.estimate_duration()
self.gviz.clear()
self.gwindow.p.clear()
self.gviz.addfile(gcode)