super(FirstInfoPage, self).__init__(parent, _("First time run wizard"))
self.AddText(_("Welcome, and thanks for trying Cura!"))
self.AddSeperator()
- self.AddText(_("This wizard will help you with the following steps:"))
- self.AddText(_("* Configure Cura for your machine"))
- self.AddText(_("* Optionally upgrade your firmware"))
- self.AddText(_("* Optionally check if your machine is working safely"))
- self.AddText(_("* Optionally level your printer bed"))
+ self.AddText(_("This wizard will help you in setting up Cura for your machine."))
+ # self.AddText(_("This wizard will help you with the following steps:"))
+ # self.AddText(_("* Configure Cura for your machine"))
+ # self.AddText(_("* Optionally upgrade your firmware"))
+ # self.AddText(_("* Optionally check if your machine is working safely"))
+ # self.AddText(_("* Optionally level your printer bed"))
#self.AddText('* Calibrate your machine')
#self.AddText('* Do your first print')
def __init__(self, parent):
super(OtherMachineSelectPage, self).__init__(parent, "Other machine information")
self.AddText(_("The following pre-defined machine profiles are available"))
- self.AddText(_("Note that these profiles are not guaranteed to give good results,\nor work at all. Extra tweaks might be required."))
+ self.AddText(_("Note that these profiles are not guaranteed to give good results,\nor work at all. Extra tweaks might be required.\nIf you find issues with the predefined profiles,\nor want an extra profile.\nPlease report it at the github issue tracker."))
self.options = []
machines = resources.getDefaultMachineProfiles()
machines.sort()
skipUpgradeButton.Bind(wx.EVT_BUTTON, self.OnSkipClick)
self.AddHiddenSeperator()
self.AddText(_("Do not upgrade to this firmware if:"))
- self.AddText(_("* You have an older machine based on ATMega1280"))
+ self.AddText(_("* You have an older machine based on ATMega1280 (Rev 1 machine)"))
self.AddText(_("* Have other changes in the firmware"))
# button = self.AddButton('Goto this page for a custom firmware')
# button.Bind(wx.EVT_BUTTON, self.OnUrlClick)