Fix various typos

Found via `codespell -q 3 -L aci,ake,aline,alle,alledges,alocation,als,ang,anid,apoints,ba,beginn,behaviour,bloaded,bottome,byteorder,calculater,cancelled,cancelling,cas,cascade,centimetre,childrens,childs,colour,colours,commen,connexion,currenty,dof,doubleclick,dum,eiter,elemente,ende,feld,finde,findf,freez,hist,iff,indicies,initialisation,initialise,initialised,initialises,initialisiert,inout,ist,kilometre,lod,mantatory,methode,metres,millimetre,modell,nd,noe,normale,normaly,nto,numer,oce,oder,ontop,orgin,orginx,orginy,ot,pard,parm,parms,pres,programm,que,rady,recurrance,rougly,seperator,serie,sinc,strack,substraction,te,thist,thru,tread,uint,unter,vertexes,wallthickness,whitespaces -S ./.git,*.po,*.ts,./ChangeLog.txt,./src/3rdParty,./src/Mod/Assembly/App/opendcm,./src/CXX,./src/zipios++,./src/Base/swig*,./src/Mod/Robot/App/kdl_cp,./src/Mod/Import/App/SCL,./src/WindowsInstaller,./src/Doc/FreeCAD.uml,./build/doc/SourceDocu`
This commit is contained in:
luz paz
2022-01-11 11:21:02 -05:00
committed by Chris Hennes
parent 29ae8b0502
commit 19e984f8c9
10 changed files with 11 additions and 11 deletions

View File

@@ -1258,7 +1258,7 @@ class CommandAddonManager:
with open(stopfile, "w", encoding="utf8") as f:
f.write(
"This file indicates that a cache operation was interrupted, and "
"the cache is in an unkown state. It will be deleted next time "
"the cache is in an unknown state. It will be deleted next time "
"AddonManager recaches."
)

View File

@@ -74,7 +74,7 @@ namespace dcm {
* A property of kind @ref vertex_property will added to vertices, a property of kind @ref object_property to all
* objects and so on.
*
* If the property type is a standart c++ type like int or bool, the defualt value can't be set by using its
* If the property type is a standart c++ type like int or bool, the default value can't be set by using its
* constructor. Therefore a interface for setting default values is added to the property. If you want
* to assign a default value you just need to add a struct default_value which returns the wanted default
* value with the operator(). If you don't want a default value, just don't add the struct. The implementation

View File

@@ -253,7 +253,7 @@ App::DocumentObjectExecReturn* Helix::execute(void)
mkPS.SetTransitionMode(BRepBuilderAPI_Transformed);
//mkPS.SetMode(true); //This is for frenet
mkPS.SetMode(TopoDS::Wire(auxpath), true); // this is for auxilliary
mkPS.SetMode(TopoDS::Wire(auxpath), true); // this is for auxiliary
for (TopoDS_Wire& wire : wires) {
wire.Move(invObjLoc);

View File

@@ -314,7 +314,7 @@ class ObjectSlot(PathOp.ObjectOp):
obj.OpStartDepth.Value = 10
PathLog.debug('Default OpFinalDepth: {}'.format(obj.OpFinalDepth.Value))
PathLog.debug('Defualt OpStartDepth: {}'.format(obj.OpStartDepth.Value))
PathLog.debug('Default OpStartDepth: {}'.format(obj.OpStartDepth.Value))
def opApplyPropertyLimits(self, obj):
'''opApplyPropertyLimits(obj) ... Apply necessary limits to user input property values before performing main operation.'''

View File

@@ -621,7 +621,7 @@ class ObjectSurface(PathOp.ObjectOp):
obj.OpStartDepth.Value = 10
PathLog.debug("Default OpFinalDepth: {}".format(obj.OpFinalDepth.Value))
PathLog.debug("Defualt OpStartDepth: {}".format(obj.OpStartDepth.Value))
PathLog.debug("Default OpStartDepth: {}".format(obj.OpStartDepth.Value))
def opApplyPropertyLimits(self, obj):
"""opApplyPropertyLimits(obj) ... Apply necessary limits to user input property values before performing main operation."""

View File

@@ -597,7 +597,7 @@ class ObjectWaterline(PathOp.ObjectOp):
obj.OpStartDepth.Value = 10
PathLog.debug("Default OpFinalDepth: {}".format(obj.OpFinalDepth.Value))
PathLog.debug("Defualt OpStartDepth: {}".format(obj.OpStartDepth.Value))
PathLog.debug("Default OpStartDepth: {}".format(obj.OpStartDepth.Value))
def opApplyPropertyLimits(self, obj):
"""opApplyPropertyLimits(obj) ... Apply necessary limits to user input property values before performing main operation."""

View File

@@ -1267,7 +1267,7 @@ void EditModeConstraintCoinManager::updateConstraintColor(const std::vector<Sket
Sketcher::Constraint* constraint = constraints[i];
ConstraintType type = constraint->Type;
// It may happen that color updates are triggered by programatic selection changes before a command final update. Then
// It may happen that color updates are triggered by programmatic selection changes before a command final update. Then
// constraints may have been changed and the color will be updated as part
if (type != vConstrType[i])
break;

View File

@@ -958,7 +958,7 @@ CmdTechDrawExtensionCascadeObliqueDimension::CmdTechDrawExtensionCascadeObliqueD
sMenuText = QT_TR_NOOP("Cascade Oblique Dimensions");
sToolTipText = QT_TR_NOOP("Cascade oblique dimensions\n\
- select some parallel oblique measures\n\
- the first selected maesure defines the position\n\
- the first selected measure defines the position\n\
- click this button");
sWhatsThis = "TechDraw_ExtensionCascadeObliqueDimension";
sStatusTip = sToolTipText;
@@ -1082,7 +1082,7 @@ void CmdTechDrawExtensionCascadeDimensionGroup::languageChange()
arc3->setToolTip(QApplication::translate("TechDraw_Extension",
"Cascade oblique dimensions\n\
- select some parallel oblique measures\n\
- the first selected maesure defines the position\n\
- the first selected measure defines the position\n\
- click this button"));
arc3->setStatusTip(arc3->toolTip());
}

View File

@@ -520,7 +520,7 @@ void MDIViewPage::fixOrphans(bool force)
}
}
if (!found) {
//none of the parent Pages for View coorespond to this Page
//none of the parent Pages for View correspond to this Page
m_view->removeQView(qv);
}
}

View File

@@ -71,7 +71,7 @@ def TestText(s):
# Flushing to make sure the stream is written to the console
# before the wrapping process stops executing. Without this line
# executing the tests from command line did not show stats
# and proper tarceback in some cases.
# and proper traceback in some cases.
sys.stdout.flush()
return retval