From a5a59ff2e3ce7af26d8f790b62b82adcb054a849 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Tue, 12 Aug 2025 16:19:00 +0000 Subject: [PATCH] Fix various typos --- src/Mod/CAM/Roadmap/Functionality/Job Management.md | 2 +- src/Mod/CAM/Roadmap/Functionality/Output Generation.md | 2 +- .../CAM/Roadmap/Functionality/Simulation and Verification.md | 2 +- src/Mod/Draft/draftguitools/gui_groups.py | 2 +- src/Mod/Measure/App/Measurement.h | 2 +- src/Mod/PartDesign/Gui/CommandBody.cpp | 2 +- src/Mod/TechDraw/App/DrawComplexSection.cpp | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Mod/CAM/Roadmap/Functionality/Job Management.md b/src/Mod/CAM/Roadmap/Functionality/Job Management.md index 0c0cf5a659..3df70ada25 100644 --- a/src/Mod/CAM/Roadmap/Functionality/Job Management.md +++ b/src/Mod/CAM/Roadmap/Functionality/Job Management.md @@ -24,7 +24,7 @@ | Stock Clearing/Reset | Allow stock clearing and reset while other fixture is active | COMPLETE | | Inter-Op Inspection | Allow for inspection between operations | COMPLETE | | job templates | Work spent configuring a job should be reusable on future jobs | Existing functionality is very good but is not apparent to users.
The functionality is under utilized. Good examples are not shipped with FreeCAD. | -| Job Defaults | Experienced users want certain values to always default in particular ways.
Example: "I always want my drilling retract depth to be 2mm above the start depth" | opDefaults allow full customizaton. The functionality is very good but poorly exposed to users.
The SetupSheet is confusing and the functionality overlaps with OpDefaults in Job setup.
The functionality doesn't appear where users might prefer it - in CAM preferences. | +| Job Defaults | Experienced users want certain values to always default in particular ways.
Example: "I always want my drilling retract depth to be 2mm above the start depth" | opDefaults allow full customization. The functionality is very good but poorly exposed to users.
The SetupSheet is confusing and the functionality overlaps with OpDefaults in Job setup.
The functionality doesn't appear where users might prefer it - in CAM preferences. | | Feature Arrays| There are numerous cases where the user wants to create the same toolpath or set of toolpaths in multiple locations. There are several different use cases that overlap. | INCOMPLETE. Some uses-cases can be achieved with Array op. Others with Array dressup and still others with fixtures. The functionality is confusing and buggy.| --- diff --git a/src/Mod/CAM/Roadmap/Functionality/Output Generation.md b/src/Mod/CAM/Roadmap/Functionality/Output Generation.md index 433b28e02d..b41d13cccd 100644 --- a/src/Mod/CAM/Roadmap/Functionality/Output Generation.md +++ b/src/Mod/CAM/Roadmap/Functionality/Output Generation.md @@ -17,7 +17,7 @@ | ---------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------- | | Preflight Checks | Catch and flag obvious problems before generating output | Sanity check can catch some errors. Requires running the check manually. | | Post-Processor Customization | Control modal vs explicit axes, tool change blocks, headers/footers | Customization with flags in the Job output tab. Posts are inconsistent. | -| Advanced Customizatoin | Allow customization of output beyond the trivial. Allow customizing the post with an editing/customization tool | Requires editing the python file.
Requires copying the post file to a specific location. Clunky and unintuitive | +| Advanced Customization | Allow customization of output beyond the trivial. Allow customizing the post with an editing/customization tool | Requires editing the python file.
Requires copying the post file to a specific location. Clunky and unintuitive | | Subprogram Support | Generate G-code with subprograms and subroutines | NONE | | Setup Page Generation | Instructions, checklists, warnings, and errors for the operator | DONE | | G-code Decomposition | Break arcs/canned cycles into linear segments or explicit moves | NONE | diff --git a/src/Mod/CAM/Roadmap/Functionality/Simulation and Verification.md b/src/Mod/CAM/Roadmap/Functionality/Simulation and Verification.md index 074cf137a2..da3a0d316e 100644 --- a/src/Mod/CAM/Roadmap/Functionality/Simulation and Verification.md +++ b/src/Mod/CAM/Roadmap/Functionality/Simulation and Verification.md @@ -4,7 +4,7 @@ | Feature | Description | Assessment | | ---------------------- | ------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | Toolpath Visualization | Display toolpath in context of model and stock | Done. Arrow indicators on segments are too small to be useful. | -| Toolpath Inspection | Allow user to inspect/explore segments of the toolpath | Done.
Inspection shows the raw internal comands for the segments. These commands are not in the correct unit schema and do not reflect the postprocessed code. | +| Toolpath Inspection | Allow user to inspect/explore segments of the toolpath | Done.
Inspection shows the raw internal commands for the segments. These commands are not in the correct unit schema and do not reflect the postprocessed code. | | | | | --- diff --git a/src/Mod/Draft/draftguitools/gui_groups.py b/src/Mod/Draft/draftguitools/gui_groups.py index 89f8ff295d..76cd89fcc5 100644 --- a/src/Mod/Draft/draftguitools/gui_groups.py +++ b/src/Mod/Draft/draftguitools/gui_groups.py @@ -167,7 +167,7 @@ class SelectGroup(gui_base.GuiCommandNeedsSelection): """Set icon, menu and tooltip.""" return {"Pixmap": "Draft_SelectGroup", "MenuText": QT_TRANSLATE_NOOP("Draft_SelectGroup", "Select Group"), - "ToolTip": QT_TRANSLATE_NOOP("Draft_SelectGroup", "Selects the contents of selected groups. For selected non-group objects, the contents of the goup they are in are selected.")} + "ToolTip": QT_TRANSLATE_NOOP("Draft_SelectGroup", "Selects the contents of selected groups. For selected non-group objects, the contents of the group they are in are selected.")} def Activated(self): """Execute when the command is called.""" diff --git a/src/Mod/Measure/App/Measurement.h b/src/Mod/Measure/App/Measurement.h index ad587d34fd..5e3b619b95 100644 --- a/src/Mod/Measure/App/Measurement.h +++ b/src/Mod/Measure/App/Measurement.h @@ -116,7 +116,7 @@ public: bool linesAreParallel() const; protected: - // Hint parameter helps sort out coumpound shapes by specifying a subelement type + // Hint parameter helps sort out compound shapes by specifying a subelement type // use hint = TopAbs_COMPOUND to give no hint TopoDS_Shape getShape(App::DocumentObject* obj, const char* subName, diff --git a/src/Mod/PartDesign/Gui/CommandBody.cpp b/src/Mod/PartDesign/Gui/CommandBody.cpp index 4973734f7c..945a9dddf3 100644 --- a/src/Mod/PartDesign/Gui/CommandBody.cpp +++ b/src/Mod/PartDesign/Gui/CommandBody.cpp @@ -86,7 +86,7 @@ CmdPartDesignBody::CmdPartDesignBody() sAppModule = "PartDesign"; sGroup = QT_TR_NOOP("PartDesign"); sMenuText = QT_TR_NOOP("New Body"); - sToolTipText = QT_TR_NOOP("Creates a new body and activtes it"); + sToolTipText = QT_TR_NOOP("Creates a new body and activates it"); sWhatsThis = "PartDesign_Body"; sStatusTip = sToolTipText; sPixmap = "PartDesign_Body"; diff --git a/src/Mod/TechDraw/App/DrawComplexSection.cpp b/src/Mod/TechDraw/App/DrawComplexSection.cpp index 55e96c83ba..c58f1a14b4 100644 --- a/src/Mod/TechDraw/App/DrawComplexSection.cpp +++ b/src/Mod/TechDraw/App/DrawComplexSection.cpp @@ -1709,7 +1709,7 @@ TopoDS_Wire DrawComplexSection::closeProfileForCut(const TopoDS_Wire& profileWir TopoDS_Edge circleEdge = BRepBuilderAPI_MakeEdge(circleArc); - // replace first and last edges and add cicular arc + // replace first and last edges and add circular arc std::vector oldProfileEdges = DU::shapeToVector(flatWire); std::vector newProfileEdges; newProfileEdges.emplace_back(firstReplacementEdge);