spelling fixes (#18688)

* Fixes spelling of "Allow to" to "Allow one to"

and those variants:
Allows to -> Allows one to
allow to -> allow one to
allows to -> allows one to

* Fix "Let's -> Lets"

(and lower case variant.)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Update src/3rdParty/salomesmesh/inc/MED_Wrapper.hxx

Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>

* Update src/Base/PyObjectBase.cpp
Update src/App/ExtensionContainer.h
Update src/App/PropertyContainer.h

Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>

* Use gerund in user-facing texts.

* Use gerund for two more user-facing strings.

Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>

* Update src/Mod/Fem/App/FemMeshShapeNetgenObject.cpp

Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>

* Update src/Mod/Fem/App/FemMeshShapeNetgenObject.cpp

Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>

* Update src/Mod/Fem/App/FemMeshShapeNetgenObject.cpp

Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>

---------

Co-authored-by: Tobias Frost <tobi@debian.org>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>
This commit is contained in:
Tobias Frost
2025-01-13 18:22:20 +01:00
committed by GitHub
parent f30139367a
commit 7a5a3d1ffc
104 changed files with 149 additions and 148 deletions

View File

@@ -94,7 +94,7 @@ class Proxy(equation.Proxy):
obj.LinearPreconditioning = "ILU0"
# we must set an expression because we don't have a UI, the user has to
# view and edit the tolerance via the property editor and this does not
# yet allow to view and edit small numbers in scientific notation
# yet allow one to view and edit small numbers in scientific notation
# forum thread: https://forum.freecad.org/viewtopic.php?p=613897#p613897
obj.setExpression("LinearTolerance", "1e-10")
obj.LinearSolverType = LINEAR_SOLVER

View File

@@ -72,7 +72,7 @@ class Proxy(linear.Proxy):
obj.NonlinearNewtonAfterIterations = (3, 1, 500, 1)
# for small numbers we must set an expression because we don't have a UI,
# the user has to view and edit the tolerance via the property editor and
# this does not yet allow to view and edit small numbers in scientific notation
# this does not yet allow one to view and edit small numbers in scientific notation
# forum thread: https://forum.freecad.org/viewtopic.php?p=613897#p613897
obj.setExpression("NonlinearTolerance", "1e-7")
obj.setExpression("NonlinearNewtonAfterTolerance", "1e-3")