Make source code comments use gender neutral pronouns

The changes also include some grammatical fixes as well.
This commit is contained in:
luz paz
2021-12-02 16:18:04 -05:00
parent d4f0eb5bfb
commit d877ee4d47
59 changed files with 77 additions and 77 deletions

View File

@@ -56,7 +56,7 @@ using namespace Gui;
FreeCAD provides the possibility to have one or more workbenches for a module.
A workbench changes the appearance of the main window in that way that it defines toolbars, items in the toolbox, menus or the context menu and dockable windows that are shown to the user.
The idea behind this concept is that the user should see only the functions that are required for the task that he is doing at this moment and not to show dozens of unneeded functions which the user never uses.
The idea behind this concept is that the user should see only the functions that are required for the task that they are doing at this moment and not to show dozens of unneeded functions which the user never uses.
\section stepbystep Step by step
Here follows a short description of how your own workbench can be added to a module.
@@ -181,8 +181,8 @@ using namespace Gui;
* At startup FreeCAD scans all module directories and invokes InitGui.py. So an item for a workbench gets created. If the user
* clicks on such an item the matching module gets loaded, the C++ workbench gets registered and activated.
*
* The user is able to modify a workbench (Edit|Customize). E.g. he can add new toolbars or items for the toolbox and add his preferred
* functions to them. But he has only full control over "his" toolbars, the default workbench items cannot be modified or even removed.
* The user is able to modify a workbench (Edit|Customize). E.g. they can add new toolbars or items for the toolbox and add their preferred
* functions to them. But the user only has full control over "their" own toolbars, the default workbench items cannot be modified or even removed.
*
* FreeCAD provides also the possibility to define pure Python workbenches. Such workbenches are temporarily only and are lost after exiting
* the FreeCAD session. But if you want to keep your Python workbench you can write a macro and attach it with a user defined button or just