chiark / gitweb /
Remove the reference to slicing from the popup message.
authordaid303 <daid303@gmail.com>
Wed, 3 Oct 2012 13:24:35 +0000 (15:24 +0200)
committerdaid303 <daid303@gmail.com>
Wed, 3 Oct 2012 13:24:35 +0000 (15:24 +0200)
Cura/gui/mainWindow.py
Cura/gui/simpleMode.py

index 925cced9ecbc6d7fd4ca10fa50f8c506eb3f6115..08afb5561bddc38584bd789ba61a874429c0b48c 100644 (file)
@@ -386,7 +386,7 @@ class mainWindow(configBase.configWindowBase):
        
        def OnSlice(self, e):
                if len(self.filelist) < 1:
-                       wx.MessageBox('You need to load a file before you can slice it.', 'Print error', wx.OK | wx.ICON_INFORMATION)
+                       wx.MessageBox('You need to load a file before you can prepare it.', 'Print error', wx.OK | wx.ICON_INFORMATION)
                        return
                #Create a progress panel and add it to the window. The progress panel will start the Skein operation.
                spp = sliceProgessPanel.sliceProgessPanel(self, self, self.filelist)
@@ -399,7 +399,7 @@ class mainWindow(configBase.configWindowBase):
        
        def OnPrint(self, e):
                if len(self.filelist) < 1:
-                       wx.MessageBox('You need to load a file and prepare it before you can print it.', 'Print error', wx.OK | wx.ICON_INFORMATION)
+                       wx.MessageBox('You need to load a file and prepare it before you can print.', 'Print error', wx.OK | wx.ICON_INFORMATION)
                        return
                if not os.path.exists(sliceRun.getExportFilename(self.filelist[0])):
                        wx.MessageBox('You need to prepare a print before you can run the actual print.', 'Print error', wx.OK | wx.ICON_INFORMATION)
index 8e5b4823b8eaf97510d8768969983ed644447f84..71eace9ec11abc1e1dd99e404220e6c0beceaf6b 100644 (file)
@@ -161,7 +161,7 @@ class simpleModeWindow(configBase.configWindowBase):
        
        def OnSlice(self, e):
                if len(self.filelist) < 1:
-                       wx.MessageBox('You need to load a file before you can slice it.', 'Print error', wx.OK | wx.ICON_INFORMATION)
+                       wx.MessageBox('You need to load a file before you can prepare it.', 'Print error', wx.OK | wx.ICON_INFORMATION)
                        return
                #save the current profile so we can put it back latter
                oldProfile = profile.getGlobalProfileString()
@@ -275,10 +275,10 @@ class simpleModeWindow(configBase.configWindowBase):
        
        def OnPrint(self, e):
                if len(self.filelist) < 1:
-                       wx.MessageBox('You need to load a file and slice it before you can print it.', 'Print error', wx.OK | wx.ICON_INFORMATION)
+                       wx.MessageBox('You need to load a file and prepare it before you can print.', 'Print error', wx.OK | wx.ICON_INFORMATION)
                        return
                if not os.path.exists(sliceRun.getExportFilename(self.filelist[0])):
-                       wx.MessageBox('You need to slice the file to GCode before you can print it.', 'Print error', wx.OK | wx.ICON_INFORMATION)
+                       wx.MessageBox('You need to prepare the file before you can print.', 'Print error', wx.OK | wx.ICON_INFORMATION)
                        return
                printWindow.printFile(sliceRun.getExportFilename(self.filelist[0]))