From: nickthetait Date: Mon, 3 Aug 2015 15:52:24 +0000 (-0600) Subject: Labeling update 'nozzle size' ---> 'nozzle diameter' X-Git-Tag: lulzbot-15.02.1-2.01~47 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=33fca3257c1301e63c947c0e58d788d2c3d0f10f;p=cura.git Labeling update 'nozzle size' ---> 'nozzle diameter' --- diff --git a/Cura/gui/configWizard.py b/Cura/gui/configWizard.py index e623e43e..999ed584 100644 --- a/Cura/gui/configWizard.py +++ b/Cura/gui/configWizard.py @@ -1135,7 +1135,7 @@ class LulzbotMachineSelectPage(InfoPage): def StoreData(self): if self.LulzbotTaz4.GetValue() or self.LulzbotTaz5.GetValue() or self.LulzbotMini.GetValue(): if self.LulzbotTaz4.GetValue(): - # Nozzle size will be set in the toolhead selection page + # Nozzle diameter will be set in the toolhead selection page # We set the machine_type here so later pages can differenciate between TAZ 4 and 5 profile.putMachineSetting('machine_width', '290') profile.putMachineSetting('machine_depth', '275') @@ -1144,7 +1144,7 @@ class LulzbotMachineSelectPage(InfoPage): profile.putMachineSetting('machine_name', 'LulzBot TAZ 4') profile.putMachineSetting('serial_baud', '115200') elif self.LulzbotTaz5.GetValue(): - # Nozzle size will be set in the toolhead selection page + # Nozzle diameter will be set in the toolhead selection page # We set the machine_type here so later pages can differenciate between TAZ 4 and 5 profile.putMachineSetting('machine_type', 'lulzbot_TAZ_5') profile.putMachineSetting('machine_name', 'LulzBot TAZ 5') @@ -1153,7 +1153,7 @@ class LulzbotMachineSelectPage(InfoPage): profile.putMachineSetting('machine_height', '250') profile.putMachineSetting('serial_baud', '115200') else: - # Nozzle size and machine type will be set in the toolhead selection page + # Nozzle diameter and machine type will be set in the toolhead selection page profile.putMachineSetting('machine_name', 'LulzBot Mini') profile.putMachineSetting('machine_width', '155') profile.putMachineSetting('machine_depth', '155') @@ -1344,14 +1344,14 @@ class LulzbotTaz5NozzleSelectPage(LulzbotToolheadSelectPage): def __init__(self, parent): super(LulzbotTaz5NozzleSelectPage, self).__init__(parent, _("LulzBot TAZ Single V2 Nozzle Selection")) - self.AddText(_('Please select your Hexagon hotend\'s nozzle size:')) + self.AddText(_('Please select your Hexagon hotend\'s nozzle diameter:')) self.Nozzle35Radio = self.AddRadioButton("0.35 mm", style=wx.RB_GROUP) self.Nozzle35Radio.SetValue(True) self.Nozzle50Radio = self.AddRadioButton("0.5 mm") self.AddText(_(' ')) self.AddSeperator() - self.AddText(_('If you are not sure which nozzle size you have')) + self.AddText(_('If you are not sure which nozzle diameter you have')) self.AddText(_('please check this webpage: ')) button = self.AddButton(LulzbotTaz5NozzleSelectPage.url2) button.Bind(wx.EVT_BUTTON, self.OnUrlClick)