diff --git a/EM_About.py b/EM_About.py index c1036ff..db32034 100644 --- a/EM_About.py +++ b/EM_About.py @@ -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_() diff --git a/EM_FHPlane.py b/EM_FHPlane.py index c444990..999e27b 100644 --- a/EM_FHPlane.py +++ b/EM_FHPlane.py @@ -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. diff --git a/EM_FHSegment.py b/EM_FHSegment.py index af49196..9ad08d2 100644 --- a/EM_FHSegment.py +++ b/EM_FHSegment.py @@ -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 diff --git a/Export_mesh.py b/Export_mesh.py index 4c15b8f..5ab3151 100644 --- a/Export_mesh.py +++ b/Export_mesh.py @@ -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 diff --git a/import_fastercap.py b/import_fastercap.py index 10a6d15..15b8e66 100644 --- a/import_fastercap.py +++ b/import_fastercap.py @@ -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