diff --git a/CMakeLists.txt b/CMakeLists.txt index 9e7461d84a..77e9c8090c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -194,7 +194,7 @@ endif(MSVC) OPTION(BUILD_QT5 "Build with Qt5." OFF) OPTION(BUILD_QT5_WEBKIT "Build with Qt5." ON) OPTION(BUILD_GUI "Build FreeCAD Gui. Otherwise you have only the command line and the Python import module." ON) -OPTION(FREECAD_MAINTAINERS_BUILD "Build FreeCAD for Maintainers, with Docu and 3rd party libs. On Windows the Installer is build." OFF) +OPTION(FREECAD_MAINTAINERS_BUILD "Build FreeCAD for Maintainers, with Docu and 3rd party libs. On Windows the Installer is built." OFF) OPTION(FREECAD_USE_EXTERNAL_ZIPIOS "Use system installed zipios++ instead of the bundled." OFF) OPTION(FREECAD_USE_EXTERNAL_SMESH "Use system installed smesh instead of the bundled." OFF) OPTION(FREECAD_USE_EXTERNAL_KDL "Use system installed orocos-kdl instead of the bundled." OFF) diff --git a/src/Gui/ExpressionCompleter.cpp b/src/Gui/ExpressionCompleter.cpp index e3f1cb926d..db8c502f80 100644 --- a/src/Gui/ExpressionCompleter.cpp +++ b/src/Gui/ExpressionCompleter.cpp @@ -253,7 +253,7 @@ void ExpressionCompleter::slotUpdate(const QString & prefix) return; } - // Extract last tokens that can be rebuild to a variable + // Extract last tokens that can be rebuilt to a variable ssize_t i = static_cast(tokens.size()) - 1; while (i >= 0) { if (get<0>(tokens[i]) != ExpressionParser::IDENTIFIER && diff --git a/src/Mod/Draft/DraftTools.py b/src/Mod/Draft/DraftTools.py index d0dfb8898e..dc5d3e627a 100644 --- a/src/Mod/Draft/DraftTools.py +++ b/src/Mod/Draft/DraftTools.py @@ -5107,8 +5107,8 @@ class Draft_Slope(): def GetResources(self): return {'Pixmap' : 'Draft_Slope', - 'MenuText': QtCore.QT_TRANSLATE_NOOP("Draft_Slope", "Set slope"), - 'ToolTip' : QtCore.QT_TRANSLATE_NOOP("Draft_Slope", "Sets the slope of a selected line or wire")} + 'MenuText': QtCore.QT_TRANSLATE_NOOP("Draft_Slope", "Set Slope"), + 'ToolTip' : QtCore.QT_TRANSLATE_NOOP("Draft_Slope", "Sets the slope of a selected Line or Wire")} def Activated(self): if not FreeCADGui.Selection.getSelection(): diff --git a/src/Mod/Fem/Gui/Command.cpp b/src/Mod/Fem/Gui/Command.cpp index 6dbd561074..6891b04940 100644 --- a/src/Mod/Fem/Gui/Command.cpp +++ b/src/Mod/Fem/Gui/Command.cpp @@ -118,7 +118,7 @@ void CmdFemCreateAnalysis::activated(int) { #ifndef FCWithNetgen QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Wrong selection"), - QObject::tr("Your FreeCAD is build without NETGEN support. Meshing will not work....")); + QObject::tr("Your FreeCAD is built without NETGEN support. Meshing will not work....")); return; #endif @@ -180,7 +180,7 @@ void CmdFemAddPart::activated(int) { #ifndef FCWithNetgen QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Wrong selection"), - QObject::tr("Your FreeCAD is build without NETGEN support. Meshing will not work....")); + QObject::tr("Your FreeCAD is built without NETGEN support. Meshing will not work....")); return; #endif @@ -243,7 +243,7 @@ void CmdFemCreateSolver::activated(int) { #ifndef FCWithNetgen QMessageBox::warning(Gui::getMainWindow(), QObject::tr("Wrong selection"), - QObject::tr("Your FreeCAD is build without NETGEN support. Meshing will not work....")); + QObject::tr("Your FreeCAD is built without NETGEN support. Meshing will not work....")); return; #endif @@ -401,7 +401,7 @@ CmdFemConstraintContact::CmdFemConstraintContact() { sAppModule = "Fem"; sGroup = QT_TR_NOOP("Fem"); - sMenuText = QT_TR_NOOP("Constraint contact "); + sMenuText = QT_TR_NOOP("Constraint contact"); sToolTipText = QT_TR_NOOP("Creates a FEM constraint for contact between faces"); sWhatsThis = "FEM_ConstraintContact"; sStatusTip = sToolTipText; @@ -489,7 +489,7 @@ CmdFemConstraintHeatflux::CmdFemConstraintHeatflux() { sAppModule = "Fem"; sGroup = QT_TR_NOOP("Fem"); - sMenuText = QT_TR_NOOP("Constraint heatflux "); + sMenuText = QT_TR_NOOP("Constraint heatflux"); sToolTipText = QT_TR_NOOP("Creates a FEM constraint for a heatflux acting on a face"); sWhatsThis = "FEM_ConstraintHeatflux"; sStatusTip = sToolTipText; @@ -797,7 +797,7 @@ CmdFemConstraintTemperature::CmdFemConstraintTemperature() { sAppModule = "Fem"; sGroup = QT_TR_NOOP("Fem"); - sMenuText = QT_TR_NOOP("Constraint temperature "); + sMenuText = QT_TR_NOOP("Constraint temperature"); sToolTipText = QT_TR_NOOP("Creates a FEM constraint for a temperature/concentrated heat flux acting on a face"); sWhatsThis = "FEM_ConstraintTemperature"; sStatusTip = sToolTipText; diff --git a/src/Mod/Robot/App/kdl_cp/chain.hpp b/src/Mod/Robot/App/kdl_cp/chain.hpp index 7758c79c99..283f803493 100644 --- a/src/Mod/Robot/App/kdl_cp/chain.hpp +++ b/src/Mod/Robot/App/kdl_cp/chain.hpp @@ -28,7 +28,7 @@ namespace KDL { /** * \brief This class encapsulates a serial kinematic - * interconnection structure. It is build out of segments. + * interconnection structure. It is built out of segments. * * @ingroup KinematicFamily */ diff --git a/src/Mod/Robot/App/kdl_cp/tree.hpp b/src/Mod/Robot/App/kdl_cp/tree.hpp index 424eb309f5..624aa0e7c3 100644 --- a/src/Mod/Robot/App/kdl_cp/tree.hpp +++ b/src/Mod/Robot/App/kdl_cp/tree.hpp @@ -93,7 +93,7 @@ namespace KDL /** * \brief This class encapsulates a tree - * kinematic interconnection structure. It is build out of segments. + * kinematic interconnection structure. It is built out of segments. * * @ingroup KinematicFamily */ diff --git a/src/Mod/Spreadsheet/importXLSX.py b/src/Mod/Spreadsheet/importXLSX.py index 880b6241e3..e3d6dcc0d4 100644 --- a/src/Mod/Spreadsheet/importXLSX.py +++ b/src/Mod/Spreadsheet/importXLSX.py @@ -158,7 +158,7 @@ tokenDic = { class exprNode(object): ''' This defines a tree class for expression parsing. - A tree is build, to step down into the levels of the expression.''' + A tree is built, to step down into the levels of the expression.''' def __init__(self, parent, state, actIndex): self.state = state #see comment: State used for Angle-functions and IF-function self.parent = parent # Parent tree node