Merge pull request #2 from luzpaz/misc-typos

Fix misc. typos
This commit is contained in:
ediloren 2020-03-03 20:42:02 +01:00 committed by GitHub
commit 1c1deb2789
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View File

@ -71,7 +71,7 @@ class _CommandAbout:
msg = translate("EM","ElectroMagnetic Workbench version ") + EM_VERSION + "\n\n" + EM_AUTHOR + "\n" + EM_LICENSE
if FreeCAD.GuiUp:
# Simple QMessageBox providing "about" informaiton
# Simple QMessageBox providing "about" information
diag = QtGui.QMessageBox(QtGui.QMessageBox.Information, translate("EM_About","About ElectroMagnetic workbench"), msg)
diag.setWindowModality(QtCore.Qt.ApplicationModal)
diag.exec_()

View File

@ -254,7 +254,7 @@ class _FHPath:
self.ww = [Vector(0,0,0)]
else:
# transform 'obj.ww' according to the 'Base' Placement
# (transation is don't care, we worry about rotation)
# (translation is don't care, we worry about rotation)
self.ww = [obj.Base.Placement.multVec(obj.ww)]
shapes = []
# get node positions in absolute coordinates (at least two nodes exist, checked above)

View File

@ -420,7 +420,7 @@ class _FHPlane:
'x_coord' and 'y_coord' are the point coordinates, of type Base.Quantity
'obj' is the FHPlane object
'seg1len' and 'seg2len' are the lengths of the segments along the lenght and width, respectively
'seg1len' and 'seg2len' are the lengths of the segments along the length and width, respectively
The function returns a tuple containing two integers corresponding to the node
position within the plane array of internal nodes.

View File

@ -186,7 +186,7 @@ class _FHSegment:
obj.Width = EMFHSEGMENT_DEF_SEGWIDTH
if obj.Height == None or obj.Height <= 0:
obj.Height = EMFHSEGMENT_DEF_SEGHEIGHT
# and finally, if everything is ok, make and assing the shape
# and finally, if everything is ok, make and assign the shape
self.assignShape(obj)
#FreeCAD.Console.PrintWarning("_FHSegment execute() ends\n") #debug

View File

@ -83,7 +83,7 @@ def export_mesh(filename, meshobj=None, isDiel=False, showNormals=False, folder=
elif len(facet.Points) == 4:
fid.write("Q " + condName)
else:
FreeCAD.Console.PrintMessage("Unforseen number of mesh facet points: " + len(facet.Points) + ", skipping facet")
FreeCAD.Console.PrintMessage("Unforeseen number of mesh facet points: " + len(facet.Points) + ", skipping facet")
continue
center = Vector(0.0, 0.0, 0.0)
avgSideLen = 0.0
@ -234,7 +234,7 @@ def export_faces(filename, isDiel=False, name="", showNormals=False, forceMesh=F
elif pointsNum == 4:
fid.write("Q " + condName)
else:
FreeCAD.Console.PrintMessage("Unforseen number of panel vertexes: " + pointsNum + ", skipping panel")
FreeCAD.Console.PrintMessage("Unforeseen number of panel vertexes: " + pointsNum + ", skipping panel")
continue
center = Vector(0.0, 0.0, 0.0)
avgSideLen = 0.0

View File

@ -141,7 +141,7 @@ def parse_3D_input_file(fileinname, parentFid, parentFilePosMap, isdiel = False,
m_iParseLevel = m_iParseLevel + 1
if m_iParseLevel >= AUTOREFINE_MAX_PARSE_LEVEL:
FreeCAD.Console.PrintMessage("Warning: maxumum number (" + format(AUTOREFINE_MAX_PARSE_LEVEL) +
FreeCAD.Console.PrintMessage("Warning: maximum number (" + format(AUTOREFINE_MAX_PARSE_LEVEL) +
") of recursive files exceeded, skipping file " + fileinname + "\n")
return True