chiark / gitweb /
Remove some more references to GCode and Slice.
authordaid303 <daid303@gmail.com>
Tue, 9 Oct 2012 07:00:19 +0000 (09:00 +0200)
committerdaid303 <daid303@gmail.com>
Tue, 9 Oct 2012 07:00:19 +0000 (09:00 +0200)
Cura/gui/printWindow.py
Cura/gui/projectPlanner.py

index 1eed725f225179f319c185aead89a204ebcbfdf9..3ddc820c8f94f6712ea444d3e7853ac86227c382 100644 (file)
@@ -114,8 +114,8 @@ class printWindow(wx.Frame):
                self.sizer.Add(boxsizer, pos=(0,0), span=(6,1), flag=wx.EXPAND)\r
                \r
                self.connectButton = wx.Button(self.panel, -1, 'Connect')\r
-               #self.loadButton = wx.Button(self.panel, -1, 'Load GCode')\r
-               self.printButton = wx.Button(self.panel, -1, 'Print GCode')\r
+               #self.loadButton = wx.Button(self.panel, -1, 'Load')\r
+               self.printButton = wx.Button(self.panel, -1, 'Print')\r
                self.pauseButton = wx.Button(self.panel, -1, 'Pause')\r
                self.cancelButton = wx.Button(self.panel, -1, 'Cancel print')\r
                self.machineLogButton = wx.Button(self.panel, -1, 'Error log')\r
index 3e414e3fc67d9e783e888fc7719e753e1c5752b8..5d8731f3d9980845171011edc4777110422119fc 100644 (file)
@@ -193,10 +193,10 @@ class projectPlanner(wx.Frame):
                toolbarUtil.NormalButton(self.toolbar2, self.OnMoveUp, 'move-up.png', 'Move model up in print list')\r
                toolbarUtil.NormalButton(self.toolbar2, self.OnMoveDown, 'move-down.png', 'Move model down in print list')\r
                toolbarUtil.NormalButton(self.toolbar2, self.OnCopy, 'copy.png', 'Make a copy of the current selected object')\r
-               toolbarUtil.NormalButton(self.toolbar2, self.OnSetCustomProfile, 'set-profile.png', 'Set a custom profile to be used to slice a specific object.')\r
+               toolbarUtil.NormalButton(self.toolbar2, self.OnSetCustomProfile, 'set-profile.png', 'Set a custom profile to be used to prepare a specific object.')\r
                self.toolbar2.AddSeparator()\r
                toolbarUtil.NormalButton(self.toolbar2, self.OnAutoPlace, 'autoplace.png', 'Automaticly organize the objects on the platform.')\r
-               toolbarUtil.NormalButton(self.toolbar2, self.OnSlice, 'slice.png', 'Slice to project into a gcode file.')\r
+               toolbarUtil.NormalButton(self.toolbar2, self.OnSlice, 'slice.png', 'Prepare to project into a gcode file.')\r
                self.toolbar2.Realize()\r
 \r
                self.toolbar3 = toolbarUtil.Toolbar(self.panel)\r
@@ -216,7 +216,7 @@ class projectPlanner(wx.Frame):
                self.listbox = wx.ListBox(self.panel, -1, choices=[])\r
                self.addButton = wx.Button(self.panel, -1, "Add")\r
                self.remButton = wx.Button(self.panel, -1, "Remove")\r
-               self.sliceButton = wx.Button(self.panel, -1, "Slice")\r
+               self.sliceButton = wx.Button(self.panel, -1, "Prepare")\r
                self.autoPlaceButton = wx.Button(self.panel, -1, "Auto Place")\r
                \r
                sizer.Add(self.toolbar, (0,0), span=(1,1), flag=wx.EXPAND|wx.LEFT|wx.RIGHT)\r
@@ -639,7 +639,7 @@ class projectPlanner(wx.Frame):
                        action.usePreviousSlice = False\r
 \r
                        actionList.append(action)\r
-                       \r
+               \r
                #Restore the old profile.\r
                profile.resetTempOverride()\r
                \r