From 5a968f99434bca6c5cb53350b7cef8a4e8fd1a64 Mon Sep 17 00:00:00 2001 From: Chris Hennes Date: Fri, 26 May 2023 10:20:16 -0500 Subject: [PATCH] Path: Conform 'post processor' --- src/Mod/Path/Gui/Resources/panels/PathEdit.ui | 4 ++-- src/Mod/Path/Gui/Resources/preferences/PathJob.ui | 4 ++-- src/Mod/Path/Path/Main/Gui/Inspect.py | 2 +- src/Mod/Path/Path/Main/Job.py | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Mod/Path/Gui/Resources/panels/PathEdit.ui b/src/Mod/Path/Gui/Resources/panels/PathEdit.ui index 25b51edaeb..968dca7e82 100644 --- a/src/Mod/Path/Gui/Resources/panels/PathEdit.ui +++ b/src/Mod/Path/Gui/Resources/panels/PathEdit.ui @@ -139,7 +139,7 @@ Enter a path and optionally file name (see below) to be used as the default for the post processor export. -The following substitutions are performed before the name is resolved at the time of the post-processing: +The following substitutions are performed before the name is resolved at the time of the post processing: Substitution allows the following: %D ... directory of the active document %d ... name of the active document (with extension) @@ -397,7 +397,7 @@ FreeCAD has no knowledge of where a particular coordinate system exists within t If multiple coordinate systems are in use, setting this to TRUE will cause the gcode to be written to multiple output files as controlled by the 'order by' property. For example, if ordering by Fixture, the first output file will be for the first fixture and separate file for the second. - <html><head/><body><p>If True, post-processing will create multiple output files based on the <span style=" font-style:italic;">order by</span> setting. + <html><head/><body><p>If True, post processing will create multiple output files based on the <span style=" font-style:italic;">order by</span> setting. For example, if <span style=" font-style:italic;">order by</span> is set to Tool, the first output file will contain the first tool change and all operations, in all coordinate systems, that can be done with that tool before the next tool change is called. diff --git a/src/Mod/Path/Gui/Resources/preferences/PathJob.ui b/src/Mod/Path/Gui/Resources/preferences/PathJob.ui index 600af530d5..86f5d8c5e0 100644 --- a/src/Mod/Path/Gui/Resources/preferences/PathJob.ui +++ b/src/Mod/Path/Gui/Resources/preferences/PathJob.ui @@ -185,8 +185,8 @@ If left empty no template will be preselected. - Enter a path and optionally file name (see below) to be used as the default for the post-processor export. -The following substitutions are performed before the name is resolved at the time of the post-processing: + Enter a path and optionally file name (see below) to be used as the default for the post processor export. +The following substitutions are performed before the name is resolved at the time of the post processing: Substitution allows the following: %D ... directory of the active document %d ... name of the active document (with extension) diff --git a/src/Mod/Path/Path/Main/Gui/Inspect.py b/src/Mod/Path/Path/Main/Gui/Inspect.py index 5074c7807a..3648674744 100644 --- a/src/Mod/Path/Path/Main/Gui/Inspect.py +++ b/src/Mod/Path/Path/Main/Gui/Inspect.py @@ -140,7 +140,7 @@ class GCodeEditorDialog(QtGui.QDialog): lab.setText( translate( "Path_Inspect", - "Note: This dialog shows Path Commands in FreeCAD base units (mm/s). \n Values will be converted to the desired unit during post-processing.", + "Note: This dialog shows Path Commands in FreeCAD base units (mm/s). \n Values will be converted to the desired unit during post processing.", ) ) lab.setWordWrap(True) diff --git a/src/Mod/Path/Path/Main/Job.py b/src/Mod/Path/Path/Main/Job.py index 16731669d1..ff1acd87f4 100644 --- a/src/Mod/Path/Path/Main/Job.py +++ b/src/Mod/Path/Path/Main/Job.py @@ -133,14 +133,14 @@ class ObjectJob: "App::PropertyString", "LastPostProcessDate", "Output", - QT_TRANSLATE_NOOP("App::Property", "Last Time the Job was post-processed"), + QT_TRANSLATE_NOOP("App::Property", "Last Time the Job was post processed"), ) obj.setEditorMode("LastPostProcessDate", 2) # Hide obj.addProperty( "App::PropertyString", "LastPostProcessOutput", "Output", - QT_TRANSLATE_NOOP("App::Property", "Last Time the Job was post-processed"), + QT_TRANSLATE_NOOP("App::Property", "Last Time the Job was post processed"), ) obj.setEditorMode("LastPostProcessOutput", 2) # Hide