Fix various typos

This commit is contained in:
luzpaz
2023-01-20 03:02:30 +00:00
committed by Chris Hennes
parent 729685316e
commit edfc993b7f
21 changed files with 22 additions and 22 deletions

View File

@@ -354,7 +354,7 @@
</font>
</property>
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Complete the operation in a single pass at depth, or mulitiple passes to final depth.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Complete the operation in a single pass at depth, or multiple passes to final depth.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<item>
<property name="text">

View File

@@ -95,7 +95,7 @@
<item row="2" column="1" colspan="2">
<widget class="QComboBox" name="layerMode">
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Complete the operation in a single pass at depth, or mulitiple passes to final depth.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Complete the operation in a single pass at depth, or multiple passes to final depth.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>

View File

@@ -107,7 +107,7 @@
</font>
</property>
<property name="toolTip">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Complete the operation in a single pass at depth, or mulitiple passes to final depth.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Complete the operation in a single pass at depth, or multiple passes to final depth.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
</widget>
</item>

View File

@@ -635,7 +635,7 @@ class TaskPanelBaseGeometryPage(TaskPanelPage):
opLabel = str(self.form.geometryImportList.currentText())
ops = FreeCAD.ActiveDocument.getObjectsByLabel(opLabel)
if len(ops) > 1:
msg = translate("PathOp", "Mulitiple operations are labeled as")
msg = translate("PathOp", "Multiple operations are labeled as")
msg += " {}\n".format(opLabel)
FreeCAD.Console.PrintWarning(msg)
(base, subList) = ops[0].Base[0]

View File

@@ -139,7 +139,7 @@ class TaskPanelOpPage(PathOpGui.TaskPanelPage):
return FreeCADGui.PySideUic.loadUi(":/panels/PageOpEngraveEdit.ui")
def getFields(self, obj):
"""getFields(obj) ... transfers values from UI to obj's proprties"""
"""getFields(obj) ... transfers values from UI to obj's properties"""
if obj.StartVertex != self.form.startVertex.value():
obj.StartVertex = self.form.startVertex.value()
self.updateToolController(obj, self.form.toolController)

View File

@@ -60,7 +60,7 @@ class TaskPanelOpPage(PathCircularHoleBaseGui.TaskPanelOpPage):
return form
def getFields(self, obj):
"""getFields(obj) ... transfers values from UI to obj's proprties"""
"""getFields(obj) ... transfers values from UI to obj's properties"""
Path.Log.track()
if obj.Direction != str(self.form.direction.currentData()):
obj.Direction = str(self.form.direction.currentData())

View File

@@ -115,7 +115,7 @@ class TaskPanelOpPage(PathOpGui.TaskPanelPage):
PathGuiUtil.updateInputField(obj, "ZigZagAngle", self.form.zigZagAngle)
def getFields(self, obj):
"""getFields(obj) ... transfers values from UI to obj's proprties"""
"""getFields(obj) ... transfers values from UI to obj's properties"""
if obj.CutMode != str(self.form.cutMode.currentData()):
obj.CutMode = str(self.form.cutMode.currentData())
if obj.StepOver != self.form.stepOverPercent.value():

View File

@@ -54,7 +54,7 @@ class TaskPanelOpPage(PathOpGui.TaskPanelPage):
return FreeCADGui.PySideUic.loadUi(":/panels/PageOpProbeEdit.ui")
def getFields(self, obj):
"""getFields(obj) ... transfers values from UI to obj's proprties"""
"""getFields(obj) ... transfers values from UI to obj's properties"""
self.updateToolController(obj, self.form.toolController)
PathGuiUtil.updateInputField(obj, "Xoffset", self.form.Xoffset)
PathGuiUtil.updateInputField(obj, "Yoffset", self.form.Yoffset)

View File

@@ -68,7 +68,7 @@ class TaskPanelOpPage(PathOpGui.TaskPanelPage):
return form
def getFields(self, obj):
"""getFields(obj) ... transfers values from UI to obj's proprties"""
"""getFields(obj) ... transfers values from UI to obj's properties"""
self.updateToolController(obj, self.form.toolController)
self.updateCoolant(obj, self.form.coolantController)

View File

@@ -111,7 +111,7 @@ class TaskPanelOpPage(PathOpGui.TaskPanelPage):
self.geo2Extension.updateSpinBox()
def getFields(self, obj):
"""getFields(obj) ... transfers values from UI to obj's proprties"""
"""getFields(obj) ... transfers values from UI to obj's properties"""
debugMsg("getFields()")
self.updateToolController(obj, self.form.toolController)
self.updateCoolant(obj, self.form.coolantController)

View File

@@ -71,7 +71,7 @@ class TaskPanelOpPage(PathOpGui.TaskPanelPage):
return form
def getFields(self, obj):
"""getFields(obj) ... transfers values from UI to obj's proprties"""
"""getFields(obj) ... transfers values from UI to obj's properties"""
self.updateToolController(obj, self.form.toolController)
self.updateCoolant(obj, self.form.coolantController)

View File

@@ -129,7 +129,7 @@ class TaskPanelOpPage(PathOpGui.TaskPanelPage):
return FreeCADGui.PySideUic.loadUi(":/panels/PageOpVcarveEdit.ui")
def getFields(self, obj):
"""getFields(obj) ... transfers values from UI to obj's proprties"""
"""getFields(obj) ... transfers values from UI to obj's properties"""
if obj.Discretize != self.form.discretize.value():
obj.Discretize = self.form.discretize.value()
if obj.Colinear != self.form.colinearFilter.value():

View File

@@ -65,7 +65,7 @@ class TaskPanelOpPage(PathOpGui.TaskPanelPage):
return form
def getFields(self, obj):
"""getFields(obj) ... transfers values from UI to obj's proprties"""
"""getFields(obj) ... transfers values from UI to obj's properties"""
self.updateToolController(obj, self.form.toolController)
self.updateCoolant(obj, self.form.coolantController)

View File

@@ -172,7 +172,7 @@ class ObjectSlot(PathOp.ObjectOp):
"Slot",
QtCore.QT_TRANSLATE_NOOP(
"App::Property",
"Complete the operation in a single pass at depth, or mulitiple passes to final depth.",
"Complete the operation in a single pass at depth, or multiple passes to final depth.",
),
),
(

View File

@@ -324,7 +324,7 @@ class ObjectSurface(PathOp.ObjectOp):
"Clearing Options",
QT_TRANSLATE_NOOP(
"App::Property",
"Complete the operation in a single pass at depth, or mulitiple passes to final depth.",
"Complete the operation in a single pass at depth, or multiple passes to final depth.",
),
),
(

View File

@@ -369,7 +369,7 @@ class ObjectWaterline(PathOp.ObjectOp):
"Clearing Options",
QT_TRANSLATE_NOOP(
"App::Property",
"Complete the operation in a single pass at depth, or mulitiple passes to final depth.",
"Complete the operation in a single pass at depth, or multiple passes to final depth.",
),
),
(